comparison src/share/vm/runtime/arguments.cpp @ 420:a1980da045cc

6462850: generate biased locking code in C2 ideal graph Summary: Inline biased locking code in C2 ideal graph during macro nodes expansion Reviewed-by: never
author kvn
date Fri, 07 Nov 2008 09:29:38 -0800
parents b6cfd754403d
children 171e581e8161
comparison
equal deleted inserted replaced
419:0bf25c4807f9 420:a1980da045cc
2626 #ifdef CC_INTERP 2626 #ifdef CC_INTERP
2627 // Biased locking is not implemented with c++ interpreter 2627 // Biased locking is not implemented with c++ interpreter
2628 FLAG_SET_DEFAULT(UseBiasedLocking, false); 2628 FLAG_SET_DEFAULT(UseBiasedLocking, false);
2629 #endif /* CC_INTERP */ 2629 #endif /* CC_INTERP */
2630 2630
2631 #ifdef COMPILER2
2632 if (!UseBiasedLocking || EmitSync != 0) {
2633 UseOptoBiasInlining = false;
2634 }
2635 #endif
2636
2631 if (PrintCommandLineFlags) { 2637 if (PrintCommandLineFlags) {
2632 CommandLineFlags::printSetFlags(); 2638 CommandLineFlags::printSetFlags();
2633 } 2639 }
2634 2640
2635 #ifdef ASSERT 2641 #ifdef ASSERT