--- old/src/share/vm/gc_implementation/g1/g1ParScanThreadState.cpp 2015-04-20 17:36:08.472746605 +0300 +++ new/src/share/vm/gc_implementation/g1/g1ParScanThreadState.cpp 2015-04-20 17:36:08.396745427 +0300 @@ -95,8 +95,9 @@ const double elapsed_ms = elapsed_time() * 1000.0; const double s_roots_ms = strong_roots_time() * 1000.0; const double term_ms = term_time() * 1000.0; - const size_t alloc_buffer_waste = _g1_par_allocator->alloc_buffer_waste(); - const size_t undo_waste = _g1_par_allocator->undo_waste(); + size_t alloc_buffer_waste = 0; + size_t undo_waste = 0; + _g1_par_allocator->waste(alloc_buffer_waste, undo_waste); st->print_cr("%3d %9.2f %9.2f %6.2f " "%9.2f %6.2f " SIZE_FORMAT_W(8) " " SIZE_FORMAT_W(7) " " SIZE_FORMAT_W(7) " " SIZE_FORMAT_W(7),