--- old/src/share/vm/gc/shared/ageTable.hpp 2016-08-30 15:41:25.472606745 +0200 +++ new/src/share/vm/gc/shared/ageTable.hpp 2016-08-30 15:41:25.344602796 +0200 @@ -67,10 +67,12 @@ // for parallel young generation gc. void merge(AgeTable* subTable); - // calculate new tenuring threshold based on age information - uint compute_tenuring_threshold(size_t survivor_capacity, GCPolicyCounters* gc_counters); + // Calculate new tenuring threshold based on age information. + uint compute_tenuring_threshold(size_t desired_survivor_size); + void print_age_table(uint tenuring_threshold); private: + PerfVariable* _perf_sizes[table_size]; };