hotspot/src/share/vm/gc_implementation/parallelScavenge/psYoungGen.hpp
// Allocation
HeapWord* allocate(size_t word_size, bool is_tlab) {
{- -------------------------------------------
(1) MutableSpace::cas_allocate() を呼び出すだけ.
(なお, 第二引数である is_tlab は特に使っていない)
---------------------------------------- -}
HeapWord* result = eden_space()->cas_allocate(word_size);
return result;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.