@@ -2658,7 +2658,7 @@ void MacroAssembler::compiler_fast_lock_object(ConditionRegister flag, Register
2658
2658
andi_ (temp, displaced_header, markWord::monitor_value);
2659
2659
bne (CCR0, object_has_monitor);
2660
2660
2661
- if (!UseHeavyMonitors ) {
2661
+ if (LockingMode != LM_MONITOR ) {
2662
2662
// Set displaced_header to be (markWord of object | UNLOCK_VALUE).
2663
2663
ori (displaced_header, displaced_header, markWord::unlocked_value);
2664
2664
@@ -2776,7 +2776,7 @@ void MacroAssembler::compiler_fast_unlock_object(ConditionRegister flag, Registe
2776
2776
}
2777
2777
#endif
2778
2778
2779
- if (!UseHeavyMonitors ) {
2779
+ if (LockingMode != LM_MONITOR ) {
2780
2780
// Find the lock address and load the displaced header from the stack.
2781
2781
ld (displaced_header, BasicLock::displaced_header_offset_in_bytes (), box);
2782
2782
@@ -2792,7 +2792,7 @@ void MacroAssembler::compiler_fast_unlock_object(ConditionRegister flag, Registe
2792
2792
andi_ (R0, current_header, markWord::monitor_value);
2793
2793
bne (CCR0, object_has_monitor);
2794
2794
2795
- if (!UseHeavyMonitors ) {
2795
+ if (LockingMode != LM_MONITOR ) {
2796
2796
// Check if it is still a light weight lock, this is is true if we see
2797
2797
// the stack address of the basicLock in the markWord of the object.
2798
2798
// Cmpxchg sets flag to cmpd(current_header, box).
0 commit comments