@@ -5423,14 +5423,14 @@ void MacroAssembler::spin_wait() {
5423
5423
}
5424
5424
}
5425
5425
5426
- // Implements fast -locking.
5426
+ // Implements lightweight -locking.
5427
5427
// Branches to slow upon failure to lock the object, with ZF cleared.
5428
5428
// Falls through upon success with ZF set.
5429
5429
//
5430
5430
// - obj: the object to be locked
5431
5431
// - hdr: the header, already loaded from obj, will be destroyed
5432
5432
// - t1, t2: temporary registers, will be destroyed
5433
- void MacroAssembler::fast_lock (Register obj, Register hdr, Register t1, Register t2, Label& slow) {
5433
+ void MacroAssembler::lightweight_lock (Register obj, Register hdr, Register t1, Register t2, Label& slow) {
5434
5434
assert (LockingMode == LM_LIGHTWEIGHT, " only used with new lightweight locking" );
5435
5435
assert_different_registers (obj, hdr, t1, t2);
5436
5436
@@ -5455,14 +5455,14 @@ void MacroAssembler::fast_lock(Register obj, Register hdr, Register t1, Register
5455
5455
strw (t1, Address (rthread, JavaThread::lock_stack_top_offset ()));
5456
5456
}
5457
5457
5458
- // Implements fast -unlocking.
5458
+ // Implements lightweight -unlocking.
5459
5459
// Branches to slow upon failure, with ZF cleared.
5460
5460
// Falls through upon success, with ZF set.
5461
5461
//
5462
5462
// - obj: the object to be unlocked
5463
5463
// - hdr: the (pre-loaded) header of the object
5464
5464
// - t1, t2: temporary registers
5465
- void MacroAssembler::fast_unlock (Register obj, Register hdr, Register t1, Register t2, Label& slow) {
5465
+ void MacroAssembler::lightweight_unlock (Register obj, Register hdr, Register t1, Register t2, Label& slow) {
5466
5466
assert (LockingMode == LM_LIGHTWEIGHT, " only used with new lightweight locking" );
5467
5467
assert_different_registers (obj, hdr, t1, t2);
5468
5468
0 commit comments