Searched defs:lab_base (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionManager.inline.hpp103 HeapWord* lab_base = young_space()->cas_allocate(YoungPLABSize); local
104 if (lab_base != NULL) {
105 _young_lab.initialize(MemRegion(lab_base, YoungPLABSize));
137 HeapWord* lab_base = old_gen()->cas_allocate(OldPLABSize); local
138 if(lab_base != NULL) {
139 _old_lab.initialize(MemRegion(lab_base, OldPLABSize));
H A DpsPromotionManager.cpp190 HeapWord* lab_base = young_space()->top(); local
191 _young_lab.initialize(MemRegion(lab_base, (size_t)0));
194 lab_base = old_gen()->object_space()->top();
195 _old_lab.initialize(MemRegion(lab_base, (size_t)0));

Completed in 36 milliseconds