comparison src/share/vm/runtime/arguments.cpp @ 14420:abe03600372a

8024468: PPC64 (part 201): cppInterpreter: implement bytecode profiling Summary: Implement profiling for c2 jit compilation. Also enable new cppInterpreter features. Reviewed-by: kvn
author goetz
date Sun, 15 Sep 2013 15:28:58 +0200
parents e2722a66aba7
children 2b8e28fdf503
comparison
equal deleted inserted replaced
14419:7373e44fa207 14420:abe03600372a
3590 "; ignoring UseBiasedLocking flag." ); 3590 "; ignoring UseBiasedLocking flag." );
3591 } 3591 }
3592 UseBiasedLocking = false; 3592 UseBiasedLocking = false;
3593 } 3593 }
3594 3594
3595 #ifdef CC_INTERP 3595 #ifdef ZERO
3596 // Clear flags not supported by the C++ interpreter 3596 // Clear flags not supported on zero.
3597 FLAG_SET_DEFAULT(ProfileInterpreter, false); 3597 FLAG_SET_DEFAULT(ProfileInterpreter, false);
3598 FLAG_SET_DEFAULT(UseBiasedLocking, false); 3598 FLAG_SET_DEFAULT(UseBiasedLocking, false);
3599 LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false)); 3599 LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
3600 LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedKlassPointers, false)); 3600 LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedKlassPointers, false));
3601 #endif // CC_INTERP 3601 #endif // CC_INTERP