comparison src/share/vm/runtime/java.cpp @ 3841:0f34fdee809e

7071427: AdapterFingerPrint can hold 8 entries per int Reviewed-by: kvn
author never
date Wed, 27 Jul 2011 15:06:35 -0700
parents ef2d1b8f2dd4
children eca1193ca245
comparison
equal deleted inserted replaced
3840:4e761e7e6e12 3841:0f34fdee809e
241 #ifdef COMPILER1 241 #ifdef COMPILER1
242 if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) { 242 if ((PrintC1Statistics || LogVMOutput || LogCompilation) && UseCompiler) {
243 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics); 243 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintC1Statistics);
244 Runtime1::print_statistics(); 244 Runtime1::print_statistics();
245 Deoptimization::print_statistics(); 245 Deoptimization::print_statistics();
246 SharedRuntime::print_statistics();
246 nmethod::print_statistics(); 247 nmethod::print_statistics();
247 } 248 }
248 #endif /* COMPILER1 */ 249 #endif /* COMPILER1 */
249 250
250 #ifdef COMPILER2 251 #ifdef COMPILER2
252 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics); 253 FlagSetting fs(DisplayVMOutput, DisplayVMOutput && PrintOptoStatistics);
253 Compile::print_statistics(); 254 Compile::print_statistics();
254 #ifndef COMPILER1 255 #ifndef COMPILER1
255 Deoptimization::print_statistics(); 256 Deoptimization::print_statistics();
256 nmethod::print_statistics(); 257 nmethod::print_statistics();
258 SharedRuntime::print_statistics();
257 #endif //COMPILER1 259 #endif //COMPILER1
258 SharedRuntime::print_statistics();
259 os::print_statistics(); 260 os::print_statistics();
260 } 261 }
261 262
262 if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics) { 263 if (PrintLockStatistics || PrintPreciseBiasedLockingStatistics) {
263 OptoRuntime::print_named_counters(); 264 OptoRuntime::print_named_counters();