Searched defs:tlab (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThread.java95 public ThreadLocalAllocBuffer tlab() { method in class:Thread
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DPointerLocation.java56 ThreadLocalAllocBuffer tlab; field in class:PointerLocation
124 return tlab;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DvmGCOperations.hpp162 bool _tlab; // alloc is of a tlab.
165 bool tlab,
169 _tlab(tlab) {
164 VM_GenCollectForAllocation(size_t size, bool tlab, unsigned int gc_count_before) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp1004 bool tlab) {
1008 return have_lock_and_allocate(size, tlab);
1012 bool tlab /* ignored */) {
1470 bool tlab)
1474 return full || should_allocate(size, tlab); // FIX ME !!!
1648 bool tlab)
1650 collector()->collect(full, clear_all_soft_refs, size, tlab);
1656 bool tlab)
3315 bool tlab,
3318 assert(!tlab, "Ca
1003 allocate(size_t size, bool tlab) argument
[all...]
H A DconcurrentMarkSweepGeneration.hpp902 // XXXPERM bool should_collect(bool full, size_t size, bool tlab);
908 bool tlab);
1203 HeapWord* allocate(size_t size, bool tlab);
1204 HeapWord* have_lock_and_allocate(size_t size, bool tlab);
1206 HeapWord* par_allocate(size_t size, bool tlab) { argument
1207 return allocate(size, tlab);
1235 bool should_collect(bool full, size_t size, bool tlab);
1241 bool tlab);
1244 bool tlab,
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp422 ThreadLocalAllocBuffer& tlab() { return _tlab; } function in class:Thread
425 tlab().initialize();
435 size_t used_bytes = tlab().used_bytes();
437 // More-or-less valid tlab. The load_acquire above should ensure

Completed in 69 milliseconds