< prev index next >

src/hotspot/share/runtime/java.cpp

Print this page
rev 49465 : [mq]: 8198691.patch

*** 314,325 **** if (PrintCodeCache) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } ! if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(); } if (PrintCodeCache2) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print_internals(); --- 314,330 ---- if (PrintCodeCache) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } ! // CodeHeap State Analytics. ! // Does also call NMethodSweeper::print(tty) ! LogTarget(Trace, codecache) lt; ! if (lt.is_enabled()) { ! CompileBroker::print_heapinfo(NULL, "all", "4096"); // details ! } else if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(tty); } if (PrintCodeCache2) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print_internals();
*** 377,388 **** if (PrintCodeCache) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } ! if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(); } #ifdef COMPILER2 if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) { OptoRuntime::print_named_counters(); --- 382,398 ---- if (PrintCodeCache) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } ! // CodeHeap State Analytics. ! // Does also call NMethodSweeper::print(tty) ! LogTarget(Trace, codecache) lt; ! if (lt.is_enabled()) { ! CompileBroker::print_heapinfo(NULL, "all", "4096"); // details ! } else if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(tty); } #ifdef COMPILER2 if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) { OptoRuntime::print_named_counters();
< prev index next >