Skip to content

Commit 34f7974

Browse files
author
David Holmes
committedApr 5, 2024
8325303: Replace markWord.is_neutral() with markWord.is_unlocked()
Reviewed-by: stefank, dcubed
1 parent 27cfcef commit 34f7974

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed
 

‎src/hotspot/share/oops/markWord.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -80,8 +80,8 @@ void markWord::print_on(outputStream* st, bool print_monitor_info) const {
8080
st->print(" locked(" INTPTR_FORMAT ")", value());
8181
} else {
8282
st->print(" mark(");
83-
if (is_neutral()) { // last bits = 01
84-
st->print("is_neutral");
83+
if (is_unlocked()) { // last bits = 01
84+
st->print("is_unlocked");
8585
if (has_no_hash()) {
8686
st->print(" no_hash");
8787
} else {

‎src/hotspot/share/oops/markWord.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -143,7 +143,7 @@ class markWord {
143143
bool is_marked() const {
144144
return (mask_bits(value(), lock_mask_in_place) == marked_value);
145145
}
146-
bool is_neutral() const {
146+
bool is_neutral() const { // Not locked, or marked - a "clean" neutral state
147147
return (mask_bits(value(), lock_mask_in_place) == unlocked_value);
148148
}
149149

‎src/hotspot/share/runtime/basicLock.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -40,10 +40,10 @@ void BasicLock::print_on(outputStream* st, oop owner) const {
4040
void BasicLock::move_to(oop obj, BasicLock* dest) {
4141
// Check to see if we need to inflate the lock. This is only needed
4242
// if an object is locked using "this" lightweight monitor. In that
43-
// case, the displaced_header() is unlocked/is_neutral, because the
43+
// case, the displaced_header() is unlocked/neutral, because the
4444
// displaced_header() contains the header for the originally unlocked
4545
// object. However the lock could have already been inflated. But it
46-
// does not matter, this inflation will just a no-op. For other cases,
46+
// does not matter, this inflation will just be a no-op. For other cases,
4747
// the displaced header will be either 0x0 or 0x3, which are location
4848
// independent, therefore the BasicLock is free to move.
4949
//
@@ -63,11 +63,11 @@ void BasicLock::move_to(oop obj, BasicLock* dest) {
6363
// one stack location to another. This avoids inflation. Obviously,
6464
// we need to ensure that both locations refer to the current thread's stack.
6565
// There are some subtle concurrency issues, however, and since the benefit is
66-
// is small (given the support for inflated fast-path locking in the fast_lock, etc)
66+
// small (given the support for inflated fast-path locking in the fast_lock, etc)
6767
// we'll leave that optimization for another time.
6868

6969
if (LockingMode == LM_LEGACY) {
70-
if (displaced_header().is_neutral()) {
70+
if (displaced_header().is_unlocked()) {
7171
// The object is locked and the resulting ObjectMonitor* will also be
7272
// locked so it can't be async deflated until ownership is dropped.
7373
ObjectSynchronizer::inflate_helper(obj);

‎src/hotspot/share/runtime/basicLock.hpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -34,6 +34,8 @@ class BasicLock {
3434
friend class VMStructs;
3535
friend class JVMCIVMStructs;
3636
private:
37+
// This is either the actual displaced header from a locked object, or
38+
// a sentinel zero value indicating a recursive stack-lock.
3739
volatile markWord _displaced_header;
3840
public:
3941
markWord displaced_header() const {
@@ -46,7 +48,7 @@ class BasicLock {
4648

4749
void print_on(outputStream* st, oop owner) const;
4850

49-
// move a basic lock (used during deoptimization
51+
// move a basic lock (used during deoptimization)
5052
void move_to(oop obj, BasicLock* dest);
5153

5254
static int displaced_header_offset_in_bytes() { return (int)offset_of(BasicLock, _displaced_header); }

‎src/hotspot/share/runtime/synchronizer.cpp

+10-12
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ bool ObjectSynchronizer::enter_fast_impl(Handle obj, BasicLock* lock, JavaThread
602602
}
603603

604604
markWord mark = obj()->mark_acquire();
605-
while (mark.is_neutral()) {
605+
while (mark.is_unlocked()) {
606606
// Retry until a lock state change has been observed. cas_set_mark() may collide with non lock bits modifications.
607607
// Try to swing into 'fast-locked' state.
608608
assert(!lock_stack.contains(obj()), "thread must not already hold the lock");
@@ -625,7 +625,7 @@ bool ObjectSynchronizer::enter_fast_impl(Handle obj, BasicLock* lock, JavaThread
625625
return false;
626626
} else if (LockingMode == LM_LEGACY) {
627627
markWord mark = obj->mark();
628-
if (mark.is_neutral()) {
628+
if (mark.is_unlocked()) {
629629
// Anticipate successful CAS -- the ST of the displaced mark must
630630
// be visible <= the ST performed by the CAS.
631631
lock->set_displaced_header(mark);
@@ -696,7 +696,7 @@ void ObjectSynchronizer::exit(oop object, BasicLock* lock, JavaThread* current)
696696
// Only do diagnostics if we are not racing an inflation. Simply
697697
// exiting a recursive enter of a Java Monitor that is being
698698
// inflated is safe; see the has_monitor() comment below.
699-
assert(!mark.is_neutral(), "invariant");
699+
assert(!mark.is_unlocked(), "invariant");
700700
assert(!mark.has_locker() ||
701701
current->is_lock_owned((address)mark.locker()), "invariant");
702702
if (mark.has_monitor()) {
@@ -1009,7 +1009,7 @@ intptr_t ObjectSynchronizer::FastHashCode(Thread* current, oop obj) {
10091009
assert(LockingMode == LM_MONITOR, "+VerifyHeavyMonitors requires LockingMode == 0 (LM_MONITOR)");
10101010
guarantee((obj->mark().value() & markWord::lock_mask_in_place) != markWord::locked_value, "must not be lightweight/stack-locked");
10111011
}
1012-
if (mark.is_neutral() || (LockingMode == LM_LIGHTWEIGHT && mark.is_fast_locked())) {
1012+
if (mark.is_unlocked() || (LockingMode == LM_LIGHTWEIGHT && mark.is_fast_locked())) {
10131013
hash = mark.hash();
10141014
if (hash != 0) { // if it has a hash, just return it
10151015
return hash;
@@ -1139,7 +1139,7 @@ bool ObjectSynchronizer::current_thread_holds_lock(JavaThread* current,
11391139
return monitor->is_entered(current) != 0;
11401140
}
11411141
// Unlocked case, header in place
1142-
assert(mark.is_neutral(), "sanity check");
1142+
assert(mark.is_unlocked(), "sanity check");
11431143
return false;
11441144
}
11451145

@@ -1172,7 +1172,7 @@ JavaThread* ObjectSynchronizer::get_lock_owner(ThreadsList * t_list, Handle h_ob
11721172
// Unlocked case, header in place
11731173
// Cannot have assertion since this object may have been
11741174
// locked by another thread when reaching here.
1175-
// assert(mark.is_neutral(), "sanity check");
1175+
// assert(mark.is_unlocked(), "sanity check");
11761176

11771177
return nullptr;
11781178
}
@@ -1423,7 +1423,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
14231423
// * stack-locked - Coerce it to inflated from stack-locked.
14241424
// * INFLATING - Busy wait for conversion from stack-locked to
14251425
// inflated.
1426-
// * neutral - Aggressively inflate the object.
1426+
// * unlocked - Aggressively inflate the object.
14271427

14281428
// CASE: inflated
14291429
if (mark.has_monitor()) {
@@ -1601,7 +1601,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
16011601
return m;
16021602
}
16031603

1604-
// CASE: neutral
1604+
// CASE: unlocked
16051605
// TODO-FIXME: for entry we currently inflate and then try to CAS _owner.
16061606
// If we know we're inflating for entry it's better to inflate by swinging a
16071607
// pre-locked ObjectMonitor pointer into the object header. A successful
@@ -1610,9 +1610,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
16101610
// to inflate and then CAS() again to try to swing _owner from null to current.
16111611
// An inflateTry() method that we could call from enter() would be useful.
16121612

1613-
// Catch if the object's header is not neutral (not locked and
1614-
// not marked is what we care about here).
1615-
assert(mark.is_neutral(), "invariant: header=" INTPTR_FORMAT, mark.value());
1613+
assert(mark.is_unlocked(), "invariant: header=" INTPTR_FORMAT, mark.value());
16161614
ObjectMonitor* m = new ObjectMonitor(object);
16171615
// prepare m for installation - set monitor to initial state
16181616
m->set_header(mark);
@@ -1635,7 +1633,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
16351633
OM_PERFDATA_OP(Inflations, inc());
16361634
if (log_is_enabled(Trace, monitorinflation)) {
16371635
ResourceMark rm;
1638-
lsh.print_cr("inflate(neutral): object=" INTPTR_FORMAT ", mark="
1636+
lsh.print_cr("inflate(unlocked): object=" INTPTR_FORMAT ", mark="
16391637
INTPTR_FORMAT ", type='%s'", p2i(object),
16401638
object->mark().value(), object->klass()->external_name());
16411639
}

0 commit comments

Comments
 (0)
Please sign in to comment.