< prev index next >

src/share/vm/gc_implementation/g1/g1CollectedHeap.inline.hpp

Print this page

        

*** 46,56 **** return NULL; // Keep some compilers happy } } size_t G1CollectedHeap::desired_plab_sz(InCSetState dest) { ! size_t gclab_word_size = alloc_buffer_stats(dest)->desired_plab_sz(); // Prevent humongous PLAB sizes for two reasons: // * PLABs are allocated using a similar paths as oops, but should // never be in a humongous region // * Allowing humongous PLABs needlessly churns the region free lists return MIN2(_humongous_object_threshold_in_words, gclab_word_size); --- 46,56 ---- return NULL; // Keep some compilers happy } } size_t G1CollectedHeap::desired_plab_sz(InCSetState dest) { ! size_t gclab_word_size = alloc_buffer_stats(dest)->desired_plab_sz(G1CollectedHeap::heap()->workers()->active_workers()); // Prevent humongous PLAB sizes for two reasons: // * PLABs are allocated using a similar paths as oops, but should // never be in a humongous region // * Allowing humongous PLABs needlessly churns the region free lists return MIN2(_humongous_object_threshold_in_words, gclab_word_size);
< prev index next >