comparison src/share/vm/runtime/java.cpp @ 7595:9deda4d8e126

8005204: Code Cache Reduction: command line options implementation Summary: Adding more detailed output on CodeCache usage Reviewed-by: kvn, vladidan Contributed-by: Alexander Harlap <alexander.harlap@oracle.com>
author vladidan
date Mon, 14 Jan 2013 13:52:08 -0500
parents f34d701e952e
children 212c5b9c38e7
comparison
equal deleted inserted replaced
7594:94fa3c4e7643 7595:9deda4d8e126
366 void print_statistics() { 366 void print_statistics() {
367 367
368 if (CITime) { 368 if (CITime) {
369 CompileBroker::print_times(); 369 CompileBroker::print_times();
370 } 370 }
371
372 if (PrintCodeCache) {
373 MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
374 CodeCache::print();
375 }
376
371 #ifdef COMPILER2 377 #ifdef COMPILER2
372 if (PrintPreciseBiasedLockingStatistics) { 378 if (PrintPreciseBiasedLockingStatistics) {
373 OptoRuntime::print_named_counters(); 379 OptoRuntime::print_named_counters();
374 } 380 }
375 #endif 381 #endif