Skip to content

Commit 984fbbb

Browse files
committedMay 11, 2023
8307810: Consistently use LockingMode instead of UseHeavyMonitors
Reviewed-by: dcubed, mdoerr, dholmes, amitkumar
1 parent 39f4e4d commit 984fbbb

5 files changed

+10
-10
lines changed
 

‎src/hotspot/cpu/ppc/c1_LIRAssembler_ppc.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2686,7 +2686,7 @@ void LIR_Assembler::emit_lock(LIR_OpLock* op) {
26862686
// Obj may not be an oop.
26872687
if (op->code() == lir_lock) {
26882688
MonitorEnterStub* stub = (MonitorEnterStub*)op->stub();
2689-
if (!UseHeavyMonitors) {
2689+
if (LockingMode != LM_MONITOR) {
26902690
assert(BasicLock::displaced_header_offset_in_bytes() == 0, "lock_reg must point to the displaced header");
26912691
// Add debug info for NullPointerException only if one is possible.
26922692
if (op->info() != nullptr) {
@@ -2712,7 +2712,7 @@ void LIR_Assembler::emit_lock(LIR_OpLock* op) {
27122712
}
27132713
} else {
27142714
assert (op->code() == lir_unlock, "Invalid code, expected lir_unlock");
2715-
if (!UseHeavyMonitors) {
2715+
if (LockingMode != LM_MONITOR) {
27162716
assert(BasicLock::displaced_header_offset_in_bytes() == 0, "lock_reg must point to the displaced header");
27172717
__ unlock_object(hdr, obj, lock, *op->stub()->entry());
27182718
} else {

‎src/hotspot/cpu/ppc/interp_masm_ppc_64.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ void InterpreterMacroAssembler::remove_activation(TosState state,
921921
// object - Address of the object to be locked.
922922
//
923923
void InterpreterMacroAssembler::lock_object(Register monitor, Register object) {
924-
if (UseHeavyMonitors) {
924+
if (LockingMode == LM_MONITOR) {
925925
call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), monitor);
926926
} else {
927927
// template code:
@@ -1037,7 +1037,7 @@ void InterpreterMacroAssembler::lock_object(Register monitor, Register object) {
10371037
//
10381038
// Throw IllegalMonitorException if object is not locked by current thread.
10391039
void InterpreterMacroAssembler::unlock_object(Register monitor) {
1040-
if (UseHeavyMonitors) {
1040+
if (LockingMode == LM_MONITOR) {
10411041
call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), monitor);
10421042
} else {
10431043

‎src/hotspot/cpu/ppc/macroAssembler_ppc.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2658,7 +2658,7 @@ void MacroAssembler::compiler_fast_lock_object(ConditionRegister flag, Register
26582658
andi_(temp, displaced_header, markWord::monitor_value);
26592659
bne(CCR0, object_has_monitor);
26602660

2661-
if (!UseHeavyMonitors) {
2661+
if (LockingMode != LM_MONITOR) {
26622662
// Set displaced_header to be (markWord of object | UNLOCK_VALUE).
26632663
ori(displaced_header, displaced_header, markWord::unlocked_value);
26642664

@@ -2776,7 +2776,7 @@ void MacroAssembler::compiler_fast_unlock_object(ConditionRegister flag, Registe
27762776
}
27772777
#endif
27782778

2779-
if (!UseHeavyMonitors) {
2779+
if (LockingMode != LM_MONITOR) {
27802780
// Find the lock address and load the displaced header from the stack.
27812781
ld(displaced_header, BasicLock::displaced_header_offset_in_bytes(), box);
27822782

@@ -2792,7 +2792,7 @@ void MacroAssembler::compiler_fast_unlock_object(ConditionRegister flag, Registe
27922792
andi_(R0, current_header, markWord::monitor_value);
27932793
bne(CCR0, object_has_monitor);
27942794

2795-
if (!UseHeavyMonitors) {
2795+
if (LockingMode != LM_MONITOR) {
27962796
// Check if it is still a light weight lock, this is is true if we see
27972797
// the stack address of the basicLock in the markWord of the object.
27982798
// Cmpxchg sets flag to cmpd(current_header, box).

‎src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2722,7 +2722,7 @@ void LIR_Assembler::emit_lock(LIR_OpLock* op) {
27222722
Register obj = op->obj_opr()->as_register(); // May not be an oop.
27232723
Register hdr = op->hdr_opr()->as_register();
27242724
Register lock = op->lock_opr()->as_register();
2725-
if (UseHeavyMonitors) {
2725+
if (LockingMode == LM_MONITOR) {
27262726
if (op->info() != nullptr) {
27272727
add_debug_info_for_null_check_here(op->info());
27282728
__ null_check(obj);

‎src/hotspot/cpu/s390/interp_masm_s390.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ void InterpreterMacroAssembler::remove_activation(TosState state,
982982
// object - Address of the object to be locked.
983983
void InterpreterMacroAssembler::lock_object(Register monitor, Register object) {
984984

985-
if (UseHeavyMonitors) {
985+
if (LockingMode == LM_MONITOR) {
986986
call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorenter), monitor);
987987
return;
988988
}
@@ -1086,7 +1086,7 @@ void InterpreterMacroAssembler::lock_object(Register monitor, Register object) {
10861086
// Throw IllegalMonitorException if object is not locked by current thread.
10871087
void InterpreterMacroAssembler::unlock_object(Register monitor, Register object) {
10881088

1089-
if (UseHeavyMonitors) {
1089+
if (LockingMode == LM_MONITOR) {
10901090
call_VM_leaf(CAST_FROM_FN_PTR(address, InterpreterRuntime::monitorexit), monitor);
10911091
return;
10921092
}

0 commit comments

Comments
 (0)
Please sign in to comment.