< prev index next >

src/hotspot/share/runtime/java.cpp

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

*** 315,325 **** 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(); --- 315,333 ---- MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(tty); ! } ! ! // CodeHeap State Analytics. ! LogTarget(Trace, codecache) lt; ! if (lt.is_enabled()) { ! // LogStream ls(lt); ! // CompileBroker::print_heapinfo(&ls, "all", "4096"); // details ! CompileBroker::print_heapinfo(NULL, "all", "4096"); // details } if (PrintCodeCache2) { MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print_internals();
*** 378,388 **** MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(); } #ifdef COMPILER2 if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) { OptoRuntime::print_named_counters(); --- 386,404 ---- MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag); CodeCache::print(); } if (PrintMethodFlushingStatistics) { ! NMethodSweeper::print(tty); ! } ! ! // CodeHeap State Analytics. ! LogTarget(Trace, codecache) lt; ! if (lt.is_enabled()) { ! // LogStream ls(lt); ! // CompileBroker::print_heapinfo(&ls, "all", "4096"); // details ! CompileBroker::print_heapinfo(NULL, "all", "4096"); // details } #ifdef COMPILER2 if (PrintPreciseBiasedLockingStatistics || PrintPreciseRTMLockingStatistics) { OptoRuntime::print_named_counters();
< prev index next >