< prev index next >

src/hotspot/share/runtime/java.cpp

Print this page
rev 54096 : 8214526: Change CodeHeap State Analytics control from UL to Print*
Reviewed-by: coleenp, kvn, stuefe, thartmann

*** 315,326 **** 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); } --- 315,325 ---- CodeCache::print(); } // CodeHeap State Analytics. // Does also call NMethodSweeper::print(tty) ! if (PrintCodeHeapAnalytics) { CompileBroker::print_heapinfo(NULL, "all", 4096); // details } else if (PrintMethodFlushingStatistics) { NMethodSweeper::print(tty); }
*** 383,394 **** 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); } --- 382,392 ---- CodeCache::print(); } // CodeHeap State Analytics. // Does also call NMethodSweeper::print(tty) ! if (PrintCodeHeapAnalytics) { CompileBroker::print_heapinfo(NULL, "all", 4096); // details } else if (PrintMethodFlushingStatistics) { NMethodSweeper::print(tty); }
< prev index next >