Skip to content

Commit 18cea82

Browse files
xmas92stefankfisk
committedFeb 16, 2024
8319801: Recursive lightweight locking: aarch64 implementation
Co-authored-by: Stefan Karlsson <stefank@openjdk.org> Co-authored-by: Erik Österlund <eosterlund@openjdk.org> Reviewed-by: rkennke, coleenp, dcubed, aph
1 parent 9029bf6 commit 18cea82

9 files changed

+412
-138
lines changed
 

‎src/hotspot/cpu/aarch64/aarch64.ad

+34-3
Original file line numberDiff line numberDiff line change
@@ -16433,13 +16433,12 @@ instruct branchLoopEnd(cmpOp cmp, rFlagsReg cr, label lbl)
1643316433

1643416434
instruct cmpFastLock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegPNoSp tmp2, iRegPNoSp tmp3)
1643516435
%{
16436+
predicate(LockingMode != LM_LIGHTWEIGHT);
1643616437
match(Set cr (FastLock object box));
1643716438
effect(TEMP tmp, TEMP tmp2, TEMP tmp3);
1643816439

16439-
// TODO
16440-
// identify correct cost
1644116440
ins_cost(5 * INSN_COST);
16442-
format %{ "fastlock $object,$box\t! kills $tmp,$tmp2" %}
16441+
format %{ "fastlock $object,$box\t! kills $tmp,$tmp2,$tmp3" %}
1644316442

1644416443
ins_encode %{
1644516444
__ fast_lock($object$$Register, $box$$Register, $tmp$$Register, $tmp2$$Register, $tmp3$$Register);
@@ -16450,6 +16449,7 @@ instruct cmpFastLock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegP
1645016449

1645116450
instruct cmpFastUnlock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegPNoSp tmp2)
1645216451
%{
16452+
predicate(LockingMode != LM_LIGHTWEIGHT);
1645316453
match(Set cr (FastUnlock object box));
1645416454
effect(TEMP tmp, TEMP tmp2);
1645516455

@@ -16463,6 +16463,37 @@ instruct cmpFastUnlock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRe
1646316463
ins_pipe(pipe_serial);
1646416464
%}
1646516465

16466+
instruct cmpFastLockLightweight(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegPNoSp tmp2)
16467+
%{
16468+
predicate(LockingMode == LM_LIGHTWEIGHT);
16469+
match(Set cr (FastLock object box));
16470+
effect(TEMP tmp, TEMP tmp2);
16471+
16472+
ins_cost(5 * INSN_COST);
16473+
format %{ "fastlock $object,$box\t! kills $tmp,$tmp2" %}
16474+
16475+
ins_encode %{
16476+
__ fast_lock_lightweight($object$$Register, $box$$Register, $tmp$$Register, $tmp2$$Register);
16477+
%}
16478+
16479+
ins_pipe(pipe_serial);
16480+
%}
16481+
16482+
instruct cmpFastUnlockLightweight(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegPNoSp tmp2)
16483+
%{
16484+
predicate(LockingMode == LM_LIGHTWEIGHT);
16485+
match(Set cr (FastUnlock object box));
16486+
effect(TEMP tmp, TEMP tmp2);
16487+
16488+
ins_cost(5 * INSN_COST);
16489+
format %{ "fastunlock $object,$box\t! kills $tmp, $tmp2" %}
16490+
16491+
ins_encode %{
16492+
__ fast_unlock_lightweight($object$$Register, $box$$Register, $tmp$$Register, $tmp2$$Register);
16493+
%}
16494+
16495+
ins_pipe(pipe_serial);
16496+
%}
1646616497

1646716498
// ============================================================================
1646816499
// Safepoint Instructions

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

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2021, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -80,12 +80,12 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
8080
br(Assembler::NE, slow_case);
8181
}
8282

83-
// Load object header
84-
ldr(hdr, Address(obj, hdr_offset));
8583
if (LockingMode == LM_LIGHTWEIGHT) {
8684
lightweight_lock(obj, hdr, temp, rscratch2, slow_case);
8785
} else if (LockingMode == LM_LEGACY) {
8886
Label done;
87+
// Load object header
88+
ldr(hdr, Address(obj, hdr_offset));
8989
// and mark it as unlocked
9090
orr(hdr, hdr, markWord::unlocked_value);
9191
// save unlocked object header into the displaced header location on the stack
@@ -144,11 +144,6 @@ void C1_MacroAssembler::unlock_object(Register hdr, Register obj, Register disp_
144144
verify_oop(obj);
145145

146146
if (LockingMode == LM_LIGHTWEIGHT) {
147-
ldr(hdr, Address(obj, oopDesc::mark_offset_in_bytes()));
148-
// We cannot use tbnz here, the target might be too far away and cannot
149-
// be encoded.
150-
tst(hdr, markWord::monitor_value);
151-
br(Assembler::NE, slow_case);
152147
lightweight_unlock(obj, hdr, temp, rscratch2, slow_case);
153148
} else if (LockingMode == LM_LEGACY) {
154149
// test if object header is pointing to the displaced header, and if so, restore

0 commit comments

Comments
 (0)
Please sign in to comment.