--- old/src/share/vm/runtime/sweeper.cpp 2013-09-24 13:20:57.904554148 +0200 +++ new/src/share/vm/runtime/sweeper.cpp 2013-09-24 13:20:57.844554150 +0200 @@ -651,3 +651,11 @@ xtty->end_elem(); } } + +void NMethodSweeper::print() { + ttyLocker ttyl; + tty->print_cr("Method flushing statistics:"); + tty->print_cr(" Total sweep time: " INT64_FORMAT, _total_time_sweeping); + tty->print_cr(" Peak sweep time: " INT64_FORMAT, _peak_sweep_time); + tty->print_cr(" Peak sweep fraction time: " INT64_FORMAT, _peak_sweep_fraction_time); +}