comparison src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp @ 17727:cfd4aac53239

8030177: G1: Enable TLAB resizing Reviewed-by: tschatzl, stefank, jmasa
author brutisso
date Mon, 27 Jan 2014 13:14:53 +0100
parents 8f07aa079343
children 52b4284cb496 c02ec279b062
comparison
equal deleted inserted replaced
17726:085b304a1cc5 17727:cfd4aac53239
818 _short_lived_surv_rate_group->finished_recalculating_age_indexes(); 818 _short_lived_surv_rate_group->finished_recalculating_age_indexes();
819 } 819 }
820 // do that for any other surv rate groups 820 // do that for any other surv rate groups
821 } 821 }
822 822
823 size_t young_list_target_length() const { return _young_list_target_length; }
824
823 bool is_young_list_full() { 825 bool is_young_list_full() {
824 uint young_list_length = _g1->young_list()->length(); 826 uint young_list_length = _g1->young_list()->length();
825 uint young_list_target_length = _young_list_target_length; 827 uint young_list_target_length = _young_list_target_length;
826 return young_list_length >= young_list_target_length; 828 return young_list_length >= young_list_target_length;
827 } 829 }