@@ -16433,13 +16433,12 @@ instruct branchLoopEnd(cmpOp cmp, rFlagsReg cr, label lbl)
16433
16433
16434
16434
instruct cmpFastLock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegPNoSp tmp2, iRegPNoSp tmp3)
16435
16435
%{
16436
+ predicate(LockingMode != LM_LIGHTWEIGHT);
16436
16437
match(Set cr (FastLock object box));
16437
16438
effect(TEMP tmp, TEMP tmp2, TEMP tmp3);
16438
16439
16439
- // TODO
16440
- // identify correct cost
16441
16440
ins_cost(5 * INSN_COST);
16442
- format %{ "fastlock $object,$box\t! kills $tmp,$tmp2" %}
16441
+ format %{ "fastlock $object,$box\t! kills $tmp,$tmp2,$tmp3 " %}
16443
16442
16444
16443
ins_encode %{
16445
16444
__ 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
16450
16449
16451
16450
instruct cmpFastUnlock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRegPNoSp tmp2)
16452
16451
%{
16452
+ predicate(LockingMode != LM_LIGHTWEIGHT);
16453
16453
match(Set cr (FastUnlock object box));
16454
16454
effect(TEMP tmp, TEMP tmp2);
16455
16455
@@ -16463,6 +16463,37 @@ instruct cmpFastUnlock(rFlagsReg cr, iRegP object, iRegP box, iRegPNoSp tmp, iRe
16463
16463
ins_pipe(pipe_serial);
16464
16464
%}
16465
16465
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
+ %}
16466
16497
16467
16498
// ============================================================================
16468
16499
// Safepoint Instructions
0 commit comments