mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
8005204: Code Cache Reduction: command line options implementation
Adding more detailed output on CodeCache usage Reviewed-by: kvn, vladidan
This commit is contained in:
parent
5613847626
commit
95cbed6639
6 changed files with 70 additions and 19 deletions
|
@ -368,6 +368,12 @@ void print_statistics() {
|
|||
if (CITime) {
|
||||
CompileBroker::print_times();
|
||||
}
|
||||
|
||||
if (PrintCodeCache) {
|
||||
MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
|
||||
CodeCache::print();
|
||||
}
|
||||
|
||||
#ifdef COMPILER2
|
||||
if (PrintPreciseBiasedLockingStatistics) {
|
||||
OptoRuntime::print_named_counters();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue