hotspot/src/share/vm/compiler/compileBroker.cpp
changeset 16611 6807a703dd6b
parent 16372 20c2c4dc8b77
child 16689 efce070b8d42
--- a/hotspot/src/share/vm/compiler/compileBroker.cpp	Wed Mar 20 17:04:45 2013 -0700
+++ b/hotspot/src/share/vm/compiler/compileBroker.cpp	Thu Mar 21 09:27:54 2013 +0100
@@ -2166,6 +2166,9 @@
     comp->print_timers();
   }
   tty->cr();
+  tty->print_cr("  Total compiled methods   : %6d methods", CompileBroker::_total_compile_count);
+  tty->print_cr("    Standard compilation   : %6d methods", CompileBroker::_total_standard_compile_count);
+  tty->print_cr("    On stack replacement   : %6d methods", CompileBroker::_total_osr_compile_count);
   int tcb = CompileBroker::_sum_osr_bytes_compiled + CompileBroker::_sum_standard_bytes_compiled;
   tty->print_cr("  Total compiled bytecodes : %6d bytes", tcb);
   tty->print_cr("    Standard compilation   : %6d bytes", CompileBroker::_sum_standard_bytes_compiled);