< prev index next >

src/share/vm/gc/g1/g1DefaultPolicy.hpp

Print this page
rev 11906 : [mq]: 8164936-age-table-print-wrong

*** 358,367 **** --- 358,369 ---- // The limit on the number of regions allocated for survivors. uint _max_survivor_regions; AgeTable _survivors_age_table; + protected: + size_t desired_survivor_size() const; public: uint tenuring_threshold() const { return _tenuring_threshold; } uint max_survivor_regions() { return _max_survivor_regions;
*** 377,386 **** --- 379,390 ---- void record_age_table(AgeTable* age_table) { _survivors_age_table.merge(age_table); } + void print_age_table(); + void update_max_gc_locker_expansion(); void update_survivors_policy(); };
< prev index next >