--- old/src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp 2015-03-13 14:21:56.343222303 -0400 +++ new/src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp 2015-03-13 14:21:56.275222306 -0400 @@ -2119,6 +2119,7 @@ _update_rs.add(phase_times->average_time_ms(G1GCPhaseTimes::UpdateRS)); _scan_rs.add(phase_times->average_time_ms(G1GCPhaseTimes::ScanRS)); _obj_copy.add(phase_times->average_time_ms(G1GCPhaseTimes::ObjCopy)); + _expand_heap.add(phase_times->cur_expand_heap_time_ms()); _termination.add(phase_times->average_time_ms(G1GCPhaseTimes::Termination)); double parallel_known_time = phase_times->average_time_ms(G1GCPhaseTimes::ExtRootScan) + @@ -2189,6 +2190,7 @@ print_summary(" Termination", &_termination); print_summary(" Parallel Other", &_parallel_other); print_summary(" Clear CT", &_clear_ct); + print_summary(" Expand Heap", &_expand_heap); print_summary(" Other", &_other); } gclog_or_tty->cr();