src/share/vm/runtime/arguments.cpp

Print this page
rev 4810 : 8017317: PPC64 (part 7): cppInterpreter: implement support for biased locking
Summary: Also add a memory ordering operation in revoke_bias() needed without TSO.

@@ -3575,12 +3575,14 @@
     UseBiasedLocking = false;
   }
 
 #ifdef CC_INTERP
   // Clear flags not supported by the C++ interpreter
-  FLAG_SET_DEFAULT(ProfileInterpreter, false);
+#if !defined(PPC64)
   FLAG_SET_DEFAULT(UseBiasedLocking, false);
+#endif // !PPC64
+  FLAG_SET_DEFAULT(ProfileInterpreter, false);
   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
   LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedKlassPointers, false));
 #endif // CC_INTERP
 
 #ifdef COMPILER2