src/share/vm/runtime/java.cpp

Print this page

        

*** 328,337 **** --- 328,341 ---- if (PrintSystemDictionaryAtExit) { SystemDictionary::print(); } + if (PrintMethodUsageAtExit) { + Method::print_usage(tty); + } + if (PrintBiasedLockingStatistics) { BiasedLocking::print_counters(); } #ifdef ENABLE_ZAP_DEAD_LOCALS
*** 380,389 **** --- 384,397 ---- // Native memory tracking data if (PrintNMTStatistics) { MemTracker::final_report(tty); } + + if (PrintMethodUsageAtExit) { + Method::print_usage(tty); + } } #endif // Note: before_exit() can be executed only once, if more than one threads