diff -r c5103d0b37bf src/share/vm/gc/cms/parNewGeneration.cpp --- a/src/share/vm/gc/cms/parNewGeneration.cpp Mon Oct 05 20:24:59 2015 -0700 +++ b/src/share/vm/gc/cms/parNewGeneration.cpp Wed Oct 07 13:05:14 2015 -0400 @@ -968,6 +968,8 @@ _gc_timer, _gc_tracer.gc_id()); } _gc_tracer.report_gc_reference_stats(stats); + _gc_tracer.report_tenuring_threshold(tenuring_threshold()); + if (!promotion_failed()) { // Swap the survivor spaces. eden()->clear(SpaceDecorator::Mangle); @@ -1030,7 +1032,6 @@ rp->verify_no_references_recorded(); gch->trace_heap_after_gc(gc_tracer()); - _gc_tracer.report_tenuring_threshold(tenuring_threshold()); _gc_timer->register_gc_end(); diff -r c5103d0b37bf src/share/vm/gc/parallel/psScavenge.cpp --- a/src/share/vm/gc/parallel/psScavenge.cpp Mon Oct 05 20:24:59 2015 -0700 +++ b/src/share/vm/gc/parallel/psScavenge.cpp Wed Oct 07 13:05:14 2015 -0400 @@ -473,6 +473,8 @@ } } + _gc_tracer.report_tenuring_threshold(tenuring_threshold()); + // Let the size policy know we're done. Note that we count promotion // failure cleanup time as part of the collection (otherwise, we're // implicitly saying it's mutator time). @@ -672,7 +674,6 @@ heap->print_heap_after_gc(); heap->trace_heap_after_gc(&_gc_tracer); - _gc_tracer.report_tenuring_threshold(tenuring_threshold()); if (ZapUnusedHeapArea) { young_gen->eden_space()->check_mangled_unused_area_complete(); diff -r c5103d0b37bf src/share/vm/gc/serial/defNewGeneration.cpp --- a/src/share/vm/gc/serial/defNewGeneration.cpp Mon Oct 05 20:24:59 2015 -0700 +++ b/src/share/vm/gc/serial/defNewGeneration.cpp Wed Oct 07 13:05:14 2015 -0400 @@ -648,6 +648,7 @@ rp->process_discovered_references(&is_alive, &keep_alive, &evacuate_followers, NULL, _gc_timer, gc_tracer.gc_id()); gc_tracer.report_gc_reference_stats(stats); + gc_tracer.report_tenuring_threshold(tenuring_threshold()); if (!_promotion_failed) { // Swap the survivor spaces. @@ -712,7 +713,6 @@ update_time_of_last_gc(now); gch->trace_heap_after_gc(&gc_tracer); - gc_tracer.report_tenuring_threshold(tenuring_threshold()); _gc_timer->register_gc_end();