@@ -602,7 +602,7 @@ bool ObjectSynchronizer::enter_fast_impl(Handle obj, BasicLock* lock, JavaThread
602
602
}
603
603
604
604
markWord mark = obj ()->mark_acquire ();
605
- while (mark.is_neutral ()) {
605
+ while (mark.is_unlocked ()) {
606
606
// Retry until a lock state change has been observed. cas_set_mark() may collide with non lock bits modifications.
607
607
// Try to swing into 'fast-locked' state.
608
608
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
625
625
return false ;
626
626
} else if (LockingMode == LM_LEGACY) {
627
627
markWord mark = obj->mark ();
628
- if (mark.is_neutral ()) {
628
+ if (mark.is_unlocked ()) {
629
629
// Anticipate successful CAS -- the ST of the displaced mark must
630
630
// be visible <= the ST performed by the CAS.
631
631
lock->set_displaced_header (mark);
@@ -696,7 +696,7 @@ void ObjectSynchronizer::exit(oop object, BasicLock* lock, JavaThread* current)
696
696
// Only do diagnostics if we are not racing an inflation. Simply
697
697
// exiting a recursive enter of a Java Monitor that is being
698
698
// inflated is safe; see the has_monitor() comment below.
699
- assert (!mark.is_neutral (), " invariant" );
699
+ assert (!mark.is_unlocked (), " invariant" );
700
700
assert (!mark.has_locker () ||
701
701
current->is_lock_owned ((address)mark.locker ()), " invariant" );
702
702
if (mark.has_monitor ()) {
@@ -1009,7 +1009,7 @@ intptr_t ObjectSynchronizer::FastHashCode(Thread* current, oop obj) {
1009
1009
assert (LockingMode == LM_MONITOR, " +VerifyHeavyMonitors requires LockingMode == 0 (LM_MONITOR)" );
1010
1010
guarantee ((obj->mark ().value () & markWord::lock_mask_in_place) != markWord::locked_value, " must not be lightweight/stack-locked" );
1011
1011
}
1012
- if (mark.is_neutral () || (LockingMode == LM_LIGHTWEIGHT && mark.is_fast_locked ())) {
1012
+ if (mark.is_unlocked () || (LockingMode == LM_LIGHTWEIGHT && mark.is_fast_locked ())) {
1013
1013
hash = mark.hash ();
1014
1014
if (hash != 0 ) { // if it has a hash, just return it
1015
1015
return hash;
@@ -1139,7 +1139,7 @@ bool ObjectSynchronizer::current_thread_holds_lock(JavaThread* current,
1139
1139
return monitor->is_entered (current) != 0 ;
1140
1140
}
1141
1141
// Unlocked case, header in place
1142
- assert (mark.is_neutral (), " sanity check" );
1142
+ assert (mark.is_unlocked (), " sanity check" );
1143
1143
return false ;
1144
1144
}
1145
1145
@@ -1172,7 +1172,7 @@ JavaThread* ObjectSynchronizer::get_lock_owner(ThreadsList * t_list, Handle h_ob
1172
1172
// Unlocked case, header in place
1173
1173
// Cannot have assertion since this object may have been
1174
1174
// locked by another thread when reaching here.
1175
- // assert(mark.is_neutral (), "sanity check");
1175
+ // assert(mark.is_unlocked (), "sanity check");
1176
1176
1177
1177
return nullptr ;
1178
1178
}
@@ -1423,7 +1423,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
1423
1423
// * stack-locked - Coerce it to inflated from stack-locked.
1424
1424
// * INFLATING - Busy wait for conversion from stack-locked to
1425
1425
// inflated.
1426
- // * neutral - Aggressively inflate the object.
1426
+ // * unlocked - Aggressively inflate the object.
1427
1427
1428
1428
// CASE: inflated
1429
1429
if (mark.has_monitor ()) {
@@ -1601,7 +1601,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
1601
1601
return m;
1602
1602
}
1603
1603
1604
- // CASE: neutral
1604
+ // CASE: unlocked
1605
1605
// TODO-FIXME: for entry we currently inflate and then try to CAS _owner.
1606
1606
// If we know we're inflating for entry it's better to inflate by swinging a
1607
1607
// pre-locked ObjectMonitor pointer into the object header. A successful
@@ -1610,9 +1610,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
1610
1610
// to inflate and then CAS() again to try to swing _owner from null to current.
1611
1611
// An inflateTry() method that we could call from enter() would be useful.
1612
1612
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 ());
1616
1614
ObjectMonitor* m = new ObjectMonitor (object);
1617
1615
// prepare m for installation - set monitor to initial state
1618
1616
m->set_header (mark);
@@ -1635,7 +1633,7 @@ ObjectMonitor* ObjectSynchronizer::inflate_impl(JavaThread* inflating_thread, oo
1635
1633
OM_PERFDATA_OP (Inflations, inc ());
1636
1634
if (log_is_enabled (Trace, monitorinflation)) {
1637
1635
ResourceMark rm;
1638
- lsh.print_cr (" inflate(neutral ): object=" INTPTR_FORMAT " , mark="
1636
+ lsh.print_cr (" inflate(unlocked ): object=" INTPTR_FORMAT " , mark="
1639
1637
INTPTR_FORMAT " , type='%s'" , p2i (object),
1640
1638
object->mark ().value (), object->klass ()->external_name ());
1641
1639
}
0 commit comments