-
Bug
-
Resolution: Fixed
-
P4
-
23
-
b15
It is called from print_statistics() in java.cpp:
if (PrintCodeCache2) {
MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
CodeCache::print_internals();
}
This is incorrect. However, with optimization turned on, PrintCodeCache2 resolves to a constant "false" and the compiler optimizes away the entire block.
if (PrintCodeCache2) {
MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
CodeCache::print_internals();
}
This is incorrect. However, with optimization turned on, PrintCodeCache2 resolves to a constant "false" and the compiler optimizes away the entire block.
- relates to
-
JDK-8327682 Cannot just add /GL to the Windows build and get whole program optimization
-
- Closed
-