Skip to content

Commit fcd988d

Browse files
committedJul 30, 2024
remove LM_LEGACY support
1 parent ba90992 commit fcd988d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+401
-597
lines changed
 

‎src/hotspot/cpu/aarch64/c1_MacroAssembler_aarch64.cpp

+8-14
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
6565
const int hdr_offset = oopDesc::mark_offset_in_bytes();
6666
assert_different_registers(hdr, obj, disp_hdr, temp, rscratch2);
6767
int null_check_offset = -1;
68-
Label count_locking, done;
6968

7069
verify_oop(obj);
7170

@@ -83,8 +82,8 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
8382

8483
if (LockingMode == LM_LIGHTWEIGHT) {
8584
lightweight_lock(obj, hdr, temp, rscratch2, slow_case);
86-
b(done);
8785
} else if (LockingMode == LM_LEGACY) {
86+
Label done;
8887
// Load object header
8988
ldr(hdr, Address(obj, hdr_offset));
9089
// and mark it as unlocked
@@ -95,8 +94,7 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
9594
// displaced header address in the object header - if it is not the same, get the
9695
// object header instead
9796
lea(rscratch2, Address(obj, hdr_offset));
98-
// if the object header was the same, we're done
99-
cmpxchgptr(hdr, disp_hdr, rscratch2, rscratch1, count_locking, /*fallthough*/nullptr);
97+
cmpxchgptr(hdr, disp_hdr, rscratch2, rscratch1, done, /*fallthough*/nullptr);
10098
// if the object header was the same, we're done
10199
// if the object header was not the same, it is now in the hdr register
102100
// => test if it is a stack pointer into the same stack (recursive locking), i.e.:
@@ -120,11 +118,9 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
120118
// otherwise we don't care about the result and handle locking via runtime call
121119
cbnz(hdr, slow_case);
122120
// done
123-
b(done);
121+
bind(done);
122+
inc_held_monitor_count();
124123
}
125-
bind(count_locking);
126-
inc_held_monitor_count();
127-
bind(done);
128124
return null_check_offset;
129125
}
130126

@@ -133,7 +129,7 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
133129
const int aligned_mask = BytesPerWord -1;
134130
const int hdr_offset = oopDesc::mark_offset_in_bytes();
135131
assert_different_registers(hdr, obj, disp_hdr, temp, rscratch2);
136-
Label count_locking, done;
132+
Label done;
137133

138134
if (LockingMode != LM_LIGHTWEIGHT) {
139135
// load displaced header
@@ -149,7 +145,6 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
149145

150146
if (LockingMode == LM_LIGHTWEIGHT) {
151147
lightweight_unlock(obj, hdr, temp, rscratch2, slow_case);
152-
b(done);
153148
} else if (LockingMode == LM_LEGACY) {
154149
// test if object header is pointing to the displaced header, and if so, restore
155150
// the displaced header in the object - if the object header is not pointing to
@@ -158,15 +153,14 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
158153
// we do unlocking via runtime call
159154
if (hdr_offset) {
160155
lea(rscratch1, Address(obj, hdr_offset));
161-
cmpxchgptr(disp_hdr, hdr, rscratch1, rscratch2, count_locking, &slow_case);
156+
cmpxchgptr(disp_hdr, hdr, rscratch1, rscratch2, done, &slow_case);
162157
} else {
163-
cmpxchgptr(disp_hdr, hdr, obj, rscratch2, count_locking, &slow_case);
158+
cmpxchgptr(disp_hdr, hdr, obj, rscratch2, done, &slow_case);
164159
}
165160
// done
166-
bind(count_locking);
161+
bind(done);
167162
dec_held_monitor_count();
168163
}
169-
bind(done);
170164
}
171165

172166

‎src/hotspot/cpu/aarch64/c2_CodeStubs_aarch64.cpp

+9-13
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ int C2HandleAnonOMOwnerStub::max_size() const {
6868
// Max size of stub has been determined by testing with 0, in which case
6969
// C2CodeStubList::emit() will throw an assertion and report the actual size that
7070
// is needed.
71-
return 52;
71+
return 24;
7272
}
7373

7474
void C2HandleAnonOMOwnerStub::emit(C2_MacroAssembler& masm) {
@@ -81,18 +81,14 @@ void C2HandleAnonOMOwnerStub::emit(C2_MacroAssembler& masm) {
8181
__ ldr(t, Address(rthread, JavaThread::lock_id_offset()));
8282
__ str(t, Address(mon, ObjectMonitor::owner_offset()));
8383

84-
if (LockingMode == LM_LIGHTWEIGHT) {
85-
// Pop owner object from lock-stack.
86-
__ ldrw(t, Address(rthread, JavaThread::lock_stack_top_offset()));
87-
__ subw(t, t, oopSize);
88-
#ifdef ASSERT
89-
__ str(zr, Address(rthread, t));
90-
#endif
91-
__ strw(t, Address(rthread, JavaThread::lock_stack_top_offset()));
92-
} else {
93-
__ str(zr, Address(mon, ObjectMonitor::stack_locker_offset()));
94-
__ dec_held_monitor_count();
95-
}
84+
// Pop owner object from lock-stack.
85+
__ ldrw(t, Address(rthread, JavaThread::lock_stack_top_offset()));
86+
__ subw(t, t, oopSize);
87+
#ifdef ASSERT
88+
__ str(zr, Address(rthread, t));
89+
#endif
90+
__ strw(t, Address(rthread, JavaThread::lock_stack_top_offset()));
91+
9692
__ b(continuation());
9793
}
9894

0 commit comments

Comments
 (0)
Please sign in to comment.