src/share/vm/runtime/objectMonitor.cpp

Mon, 28 May 2018 10:33:52 +0800

author
aoqi
date
Mon, 28 May 2018 10:33:52 +0800
changeset 9041
95a08233f46c
parent 8887
b55756ea22d8
parent 8856
ac27a9c85bea
child 9931
fd44df5e3bc3
permissions
-rw-r--r--

Merge

aoqi@0 1 /*
dbuck@8067 2 * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "classfile/vmSymbols.hpp"
aoqi@0 27 #include "memory/resourceArea.hpp"
aoqi@0 28 #include "oops/markOop.hpp"
aoqi@0 29 #include "oops/oop.inline.hpp"
aoqi@0 30 #include "runtime/handles.inline.hpp"
aoqi@0 31 #include "runtime/interfaceSupport.hpp"
aoqi@0 32 #include "runtime/mutexLocker.hpp"
aoqi@0 33 #include "runtime/objectMonitor.hpp"
aoqi@0 34 #include "runtime/objectMonitor.inline.hpp"
goetz@6911 35 #include "runtime/orderAccess.inline.hpp"
aoqi@0 36 #include "runtime/osThread.hpp"
aoqi@0 37 #include "runtime/stubRoutines.hpp"
aoqi@0 38 #include "runtime/thread.inline.hpp"
aoqi@0 39 #include "services/threadService.hpp"
aoqi@0 40 #include "trace/tracing.hpp"
aoqi@0 41 #include "trace/traceMacros.hpp"
aoqi@0 42 #include "utilities/dtrace.hpp"
aoqi@0 43 #include "utilities/macros.hpp"
aoqi@0 44 #include "utilities/preserveException.hpp"
aoqi@0 45 #ifdef TARGET_OS_FAMILY_linux
aoqi@0 46 # include "os_linux.inline.hpp"
aoqi@0 47 #endif
aoqi@0 48 #ifdef TARGET_OS_FAMILY_solaris
aoqi@0 49 # include "os_solaris.inline.hpp"
aoqi@0 50 #endif
aoqi@0 51 #ifdef TARGET_OS_FAMILY_windows
aoqi@0 52 # include "os_windows.inline.hpp"
aoqi@0 53 #endif
aoqi@0 54 #ifdef TARGET_OS_FAMILY_bsd
aoqi@0 55 # include "os_bsd.inline.hpp"
aoqi@0 56 #endif
aoqi@0 57
aoqi@0 58 #if defined(__GNUC__) && !defined(IA64) && !defined(PPC64)
aoqi@0 59 // Need to inhibit inlining for older versions of GCC to avoid build-time failures
aoqi@0 60 #define ATTR __attribute__((noinline))
aoqi@0 61 #else
aoqi@0 62 #define ATTR
aoqi@0 63 #endif
aoqi@0 64
aoqi@0 65
aoqi@0 66 #ifdef DTRACE_ENABLED
aoqi@0 67
aoqi@0 68 // Only bother with this argument setup if dtrace is available
aoqi@0 69 // TODO-FIXME: probes should not fire when caller is _blocked. assert() accordingly.
aoqi@0 70
aoqi@0 71
aoqi@0 72 #define DTRACE_MONITOR_PROBE_COMMON(obj, thread) \
aoqi@0 73 char* bytes = NULL; \
aoqi@0 74 int len = 0; \
aoqi@0 75 jlong jtid = SharedRuntime::get_java_tid(thread); \
aoqi@0 76 Symbol* klassname = ((oop)obj)->klass()->name(); \
aoqi@0 77 if (klassname != NULL) { \
aoqi@0 78 bytes = (char*)klassname->bytes(); \
aoqi@0 79 len = klassname->utf8_length(); \
aoqi@0 80 }
aoqi@0 81
aoqi@0 82 #ifndef USDT2
aoqi@0 83
aoqi@0 84 HS_DTRACE_PROBE_DECL4(hotspot, monitor__notify,
aoqi@0 85 jlong, uintptr_t, char*, int);
aoqi@0 86 HS_DTRACE_PROBE_DECL4(hotspot, monitor__notifyAll,
aoqi@0 87 jlong, uintptr_t, char*, int);
aoqi@0 88 HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__enter,
aoqi@0 89 jlong, uintptr_t, char*, int);
aoqi@0 90 HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__entered,
aoqi@0 91 jlong, uintptr_t, char*, int);
aoqi@0 92 HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__exit,
aoqi@0 93 jlong, uintptr_t, char*, int);
aoqi@0 94
aoqi@0 95 #define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis) \
aoqi@0 96 { \
aoqi@0 97 if (DTraceMonitorProbes) { \
aoqi@0 98 DTRACE_MONITOR_PROBE_COMMON(obj, thread); \
aoqi@0 99 HS_DTRACE_PROBE5(hotspot, monitor__wait, jtid, \
aoqi@0 100 (monitor), bytes, len, (millis)); \
aoqi@0 101 } \
aoqi@0 102 }
aoqi@0 103
aoqi@0 104 #define DTRACE_MONITOR_PROBE(probe, monitor, obj, thread) \
aoqi@0 105 { \
aoqi@0 106 if (DTraceMonitorProbes) { \
aoqi@0 107 DTRACE_MONITOR_PROBE_COMMON(obj, thread); \
aoqi@0 108 HS_DTRACE_PROBE4(hotspot, monitor__##probe, jtid, \
aoqi@0 109 (uintptr_t)(monitor), bytes, len); \
aoqi@0 110 } \
aoqi@0 111 }
aoqi@0 112
aoqi@0 113 #else /* USDT2 */
aoqi@0 114
aoqi@0 115 #define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis) \
aoqi@0 116 { \
aoqi@0 117 if (DTraceMonitorProbes) { \
aoqi@0 118 DTRACE_MONITOR_PROBE_COMMON(obj, thread); \
aoqi@0 119 HOTSPOT_MONITOR_WAIT(jtid, \
aoqi@0 120 (monitor), bytes, len, (millis)); \
aoqi@0 121 } \
aoqi@0 122 }
aoqi@0 123
aoqi@0 124 #define HOTSPOT_MONITOR_contended__enter HOTSPOT_MONITOR_CONTENDED_ENTER
aoqi@0 125 #define HOTSPOT_MONITOR_contended__entered HOTSPOT_MONITOR_CONTENDED_ENTERED
aoqi@0 126 #define HOTSPOT_MONITOR_contended__exit HOTSPOT_MONITOR_CONTENDED_EXIT
aoqi@0 127 #define HOTSPOT_MONITOR_notify HOTSPOT_MONITOR_NOTIFY
aoqi@0 128 #define HOTSPOT_MONITOR_notifyAll HOTSPOT_MONITOR_NOTIFYALL
aoqi@0 129
aoqi@0 130 #define DTRACE_MONITOR_PROBE(probe, monitor, obj, thread) \
aoqi@0 131 { \
aoqi@0 132 if (DTraceMonitorProbes) { \
aoqi@0 133 DTRACE_MONITOR_PROBE_COMMON(obj, thread); \
aoqi@0 134 HOTSPOT_MONITOR_##probe(jtid, \
aoqi@0 135 (uintptr_t)(monitor), bytes, len); \
aoqi@0 136 } \
aoqi@0 137 }
aoqi@0 138
aoqi@0 139 #endif /* USDT2 */
aoqi@0 140 #else // ndef DTRACE_ENABLED
aoqi@0 141
aoqi@0 142 #define DTRACE_MONITOR_WAIT_PROBE(obj, thread, millis, mon) {;}
aoqi@0 143 #define DTRACE_MONITOR_PROBE(probe, obj, thread, mon) {;}
aoqi@0 144
aoqi@0 145 #endif // ndef DTRACE_ENABLED
aoqi@0 146
aoqi@0 147 // Tunables ...
aoqi@0 148 // The knob* variables are effectively final. Once set they should
aoqi@0 149 // never be modified hence. Consider using __read_mostly with GCC.
aoqi@0 150
aoqi@0 151 int ObjectMonitor::Knob_Verbose = 0 ;
aoqi@0 152 int ObjectMonitor::Knob_SpinLimit = 5000 ; // derived by an external tool -
aoqi@0 153 static int Knob_LogSpins = 0 ; // enable jvmstat tally for spins
aoqi@0 154 static int Knob_HandOff = 0 ;
aoqi@0 155 static int Knob_ReportSettings = 0 ;
aoqi@0 156
aoqi@0 157 static int Knob_SpinBase = 0 ; // Floor AKA SpinMin
aoqi@0 158 static int Knob_SpinBackOff = 0 ; // spin-loop backoff
aoqi@0 159 static int Knob_CASPenalty = -1 ; // Penalty for failed CAS
aoqi@0 160 static int Knob_OXPenalty = -1 ; // Penalty for observed _owner change
aoqi@0 161 static int Knob_SpinSetSucc = 1 ; // spinners set the _succ field
aoqi@0 162 static int Knob_SpinEarly = 1 ;
aoqi@0 163 static int Knob_SuccEnabled = 1 ; // futile wake throttling
aoqi@0 164 static int Knob_SuccRestrict = 0 ; // Limit successors + spinners to at-most-one
aoqi@0 165 static int Knob_MaxSpinners = -1 ; // Should be a function of # CPUs
aoqi@0 166 static int Knob_Bonus = 100 ; // spin success bonus
aoqi@0 167 static int Knob_BonusB = 100 ; // spin success bonus
aoqi@0 168 static int Knob_Penalty = 200 ; // spin failure penalty
aoqi@0 169 static int Knob_Poverty = 1000 ;
aoqi@0 170 static int Knob_SpinAfterFutile = 1 ; // Spin after returning from park()
aoqi@0 171 static int Knob_FixedSpin = 0 ;
aoqi@0 172 static int Knob_OState = 3 ; // Spinner checks thread state of _owner
aoqi@0 173 static int Knob_UsePause = 1 ;
aoqi@0 174 static int Knob_ExitPolicy = 0 ;
aoqi@0 175 static int Knob_PreSpin = 10 ; // 20-100 likely better
aoqi@0 176 static int Knob_ResetEvent = 0 ;
aoqi@0 177 static int BackOffMask = 0 ;
aoqi@0 178
aoqi@0 179 static int Knob_FastHSSEC = 0 ;
aoqi@0 180 static int Knob_MoveNotifyee = 2 ; // notify() - disposition of notifyee
aoqi@0 181 static int Knob_QMode = 0 ; // EntryList-cxq policy - queue discipline
aoqi@0 182 static volatile int InitDone = 0 ;
aoqi@0 183
aoqi@0 184 #define TrySpin TrySpin_VaryDuration
aoqi@0 185
aoqi@0 186 // -----------------------------------------------------------------------------
aoqi@0 187 // Theory of operations -- Monitors lists, thread residency, etc:
aoqi@0 188 //
aoqi@0 189 // * A thread acquires ownership of a monitor by successfully
aoqi@0 190 // CAS()ing the _owner field from null to non-null.
aoqi@0 191 //
aoqi@0 192 // * Invariant: A thread appears on at most one monitor list --
aoqi@0 193 // cxq, EntryList or WaitSet -- at any one time.
aoqi@0 194 //
aoqi@0 195 // * Contending threads "push" themselves onto the cxq with CAS
aoqi@0 196 // and then spin/park.
aoqi@0 197 //
aoqi@0 198 // * After a contending thread eventually acquires the lock it must
aoqi@0 199 // dequeue itself from either the EntryList or the cxq.
aoqi@0 200 //
aoqi@0 201 // * The exiting thread identifies and unparks an "heir presumptive"
aoqi@0 202 // tentative successor thread on the EntryList. Critically, the
aoqi@0 203 // exiting thread doesn't unlink the successor thread from the EntryList.
aoqi@0 204 // After having been unparked, the wakee will recontend for ownership of
aoqi@0 205 // the monitor. The successor (wakee) will either acquire the lock or
aoqi@0 206 // re-park itself.
aoqi@0 207 //
aoqi@0 208 // Succession is provided for by a policy of competitive handoff.
aoqi@0 209 // The exiting thread does _not_ grant or pass ownership to the
aoqi@0 210 // successor thread. (This is also referred to as "handoff" succession").
aoqi@0 211 // Instead the exiting thread releases ownership and possibly wakes
aoqi@0 212 // a successor, so the successor can (re)compete for ownership of the lock.
aoqi@0 213 // If the EntryList is empty but the cxq is populated the exiting
aoqi@0 214 // thread will drain the cxq into the EntryList. It does so by
aoqi@0 215 // by detaching the cxq (installing null with CAS) and folding
aoqi@0 216 // the threads from the cxq into the EntryList. The EntryList is
aoqi@0 217 // doubly linked, while the cxq is singly linked because of the
aoqi@0 218 // CAS-based "push" used to enqueue recently arrived threads (RATs).
aoqi@0 219 //
aoqi@0 220 // * Concurrency invariants:
aoqi@0 221 //
aoqi@0 222 // -- only the monitor owner may access or mutate the EntryList.
aoqi@0 223 // The mutex property of the monitor itself protects the EntryList
aoqi@0 224 // from concurrent interference.
aoqi@0 225 // -- Only the monitor owner may detach the cxq.
aoqi@0 226 //
aoqi@0 227 // * The monitor entry list operations avoid locks, but strictly speaking
aoqi@0 228 // they're not lock-free. Enter is lock-free, exit is not.
dbuck@8067 229 // For a description of 'Methods and apparatus providing non-blocking access
dbuck@8067 230 // to a resource,' see U.S. Pat. No. 7844973.
aoqi@0 231 //
aoqi@0 232 // * The cxq can have multiple concurrent "pushers" but only one concurrent
aoqi@0 233 // detaching thread. This mechanism is immune from the ABA corruption.
aoqi@0 234 // More precisely, the CAS-based "push" onto cxq is ABA-oblivious.
aoqi@0 235 //
aoqi@0 236 // * Taken together, the cxq and the EntryList constitute or form a
aoqi@0 237 // single logical queue of threads stalled trying to acquire the lock.
aoqi@0 238 // We use two distinct lists to improve the odds of a constant-time
aoqi@0 239 // dequeue operation after acquisition (in the ::enter() epilog) and
aoqi@0 240 // to reduce heat on the list ends. (c.f. Michael Scott's "2Q" algorithm).
aoqi@0 241 // A key desideratum is to minimize queue & monitor metadata manipulation
aoqi@0 242 // that occurs while holding the monitor lock -- that is, we want to
aoqi@0 243 // minimize monitor lock holds times. Note that even a small amount of
aoqi@0 244 // fixed spinning will greatly reduce the # of enqueue-dequeue operations
aoqi@0 245 // on EntryList|cxq. That is, spinning relieves contention on the "inner"
aoqi@0 246 // locks and monitor metadata.
aoqi@0 247 //
aoqi@0 248 // Cxq points to the the set of Recently Arrived Threads attempting entry.
aoqi@0 249 // Because we push threads onto _cxq with CAS, the RATs must take the form of
aoqi@0 250 // a singly-linked LIFO. We drain _cxq into EntryList at unlock-time when
aoqi@0 251 // the unlocking thread notices that EntryList is null but _cxq is != null.
aoqi@0 252 //
aoqi@0 253 // The EntryList is ordered by the prevailing queue discipline and
aoqi@0 254 // can be organized in any convenient fashion, such as a doubly-linked list or
aoqi@0 255 // a circular doubly-linked list. Critically, we want insert and delete operations
aoqi@0 256 // to operate in constant-time. If we need a priority queue then something akin
aoqi@0 257 // to Solaris' sleepq would work nicely. Viz.,
aoqi@0 258 // http://agg.eng/ws/on10_nightly/source/usr/src/uts/common/os/sleepq.c.
aoqi@0 259 // Queue discipline is enforced at ::exit() time, when the unlocking thread
aoqi@0 260 // drains the cxq into the EntryList, and orders or reorders the threads on the
aoqi@0 261 // EntryList accordingly.
aoqi@0 262 //
aoqi@0 263 // Barring "lock barging", this mechanism provides fair cyclic ordering,
aoqi@0 264 // somewhat similar to an elevator-scan.
aoqi@0 265 //
aoqi@0 266 // * The monitor synchronization subsystem avoids the use of native
aoqi@0 267 // synchronization primitives except for the narrow platform-specific
aoqi@0 268 // park-unpark abstraction. See the comments in os_solaris.cpp regarding
aoqi@0 269 // the semantics of park-unpark. Put another way, this monitor implementation
aoqi@0 270 // depends only on atomic operations and park-unpark. The monitor subsystem
aoqi@0 271 // manages all RUNNING->BLOCKED and BLOCKED->READY transitions while the
aoqi@0 272 // underlying OS manages the READY<->RUN transitions.
aoqi@0 273 //
aoqi@0 274 // * Waiting threads reside on the WaitSet list -- wait() puts
aoqi@0 275 // the caller onto the WaitSet.
aoqi@0 276 //
aoqi@0 277 // * notify() or notifyAll() simply transfers threads from the WaitSet to
aoqi@0 278 // either the EntryList or cxq. Subsequent exit() operations will
aoqi@0 279 // unpark the notifyee. Unparking a notifee in notify() is inefficient -
aoqi@0 280 // it's likely the notifyee would simply impale itself on the lock held
aoqi@0 281 // by the notifier.
aoqi@0 282 //
aoqi@0 283 // * An interesting alternative is to encode cxq as (List,LockByte) where
aoqi@0 284 // the LockByte is 0 iff the monitor is owned. _owner is simply an auxiliary
aoqi@0 285 // variable, like _recursions, in the scheme. The threads or Events that form
aoqi@0 286 // the list would have to be aligned in 256-byte addresses. A thread would
aoqi@0 287 // try to acquire the lock or enqueue itself with CAS, but exiting threads
aoqi@0 288 // could use a 1-0 protocol and simply STB to set the LockByte to 0.
aoqi@0 289 // Note that is is *not* word-tearing, but it does presume that full-word
aoqi@0 290 // CAS operations are coherent with intermix with STB operations. That's true
aoqi@0 291 // on most common processors.
aoqi@0 292 //
aoqi@0 293 // * See also http://blogs.sun.com/dave
aoqi@0 294
aoqi@0 295
aoqi@0 296 // -----------------------------------------------------------------------------
aoqi@0 297 // Enter support
aoqi@0 298
aoqi@0 299 bool ObjectMonitor::try_enter(Thread* THREAD) {
aoqi@0 300 if (THREAD != _owner) {
aoqi@0 301 if (THREAD->is_lock_owned ((address)_owner)) {
aoqi@0 302 assert(_recursions == 0, "internal state error");
aoqi@0 303 _owner = THREAD ;
aoqi@0 304 _recursions = 1 ;
aoqi@0 305 OwnerIsThread = 1 ;
aoqi@0 306 return true;
aoqi@0 307 }
aoqi@0 308 if (Atomic::cmpxchg_ptr (THREAD, &_owner, NULL) != NULL) {
aoqi@0 309 return false;
aoqi@0 310 }
aoqi@0 311 return true;
aoqi@0 312 } else {
aoqi@0 313 _recursions++;
aoqi@0 314 return true;
aoqi@0 315 }
aoqi@0 316 }
aoqi@0 317
aoqi@0 318 void ATTR ObjectMonitor::enter(TRAPS) {
aoqi@0 319 // The following code is ordered to check the most common cases first
aoqi@0 320 // and to reduce RTS->RTO cache line upgrades on SPARC and IA32 processors.
aoqi@0 321 Thread * const Self = THREAD ;
aoqi@0 322 void * cur ;
aoqi@0 323
aoqi@0 324 cur = Atomic::cmpxchg_ptr (Self, &_owner, NULL) ;
aoqi@0 325 if (cur == NULL) {
aoqi@0 326 // Either ASSERT _recursions == 0 or explicitly set _recursions = 0.
aoqi@0 327 assert (_recursions == 0 , "invariant") ;
aoqi@0 328 assert (_owner == Self, "invariant") ;
aoqi@0 329 // CONSIDER: set or assert OwnerIsThread == 1
aoqi@0 330 return ;
aoqi@0 331 }
aoqi@0 332
aoqi@0 333 if (cur == Self) {
aoqi@0 334 // TODO-FIXME: check for integer overflow! BUGID 6557169.
aoqi@0 335 _recursions ++ ;
aoqi@0 336 return ;
aoqi@0 337 }
aoqi@0 338
aoqi@0 339 if (Self->is_lock_owned ((address)cur)) {
aoqi@0 340 assert (_recursions == 0, "internal state error");
aoqi@0 341 _recursions = 1 ;
aoqi@0 342 // Commute owner from a thread-specific on-stack BasicLockObject address to
aoqi@0 343 // a full-fledged "Thread *".
aoqi@0 344 _owner = Self ;
aoqi@0 345 OwnerIsThread = 1 ;
aoqi@0 346 return ;
aoqi@0 347 }
aoqi@0 348
aoqi@0 349 // We've encountered genuine contention.
aoqi@0 350 assert (Self->_Stalled == 0, "invariant") ;
aoqi@0 351 Self->_Stalled = intptr_t(this) ;
aoqi@0 352
aoqi@0 353 // Try one round of spinning *before* enqueueing Self
aoqi@0 354 // and before going through the awkward and expensive state
aoqi@0 355 // transitions. The following spin is strictly optional ...
aoqi@0 356 // Note that if we acquire the monitor from an initial spin
aoqi@0 357 // we forgo posting JVMTI events and firing DTRACE probes.
aoqi@0 358 if (Knob_SpinEarly && TrySpin (Self) > 0) {
aoqi@0 359 assert (_owner == Self , "invariant") ;
aoqi@0 360 assert (_recursions == 0 , "invariant") ;
aoqi@0 361 assert (((oop)(object()))->mark() == markOopDesc::encode(this), "invariant") ;
aoqi@0 362 Self->_Stalled = 0 ;
aoqi@0 363 return ;
aoqi@0 364 }
aoqi@0 365
aoqi@0 366 assert (_owner != Self , "invariant") ;
aoqi@0 367 assert (_succ != Self , "invariant") ;
aoqi@0 368 assert (Self->is_Java_thread() , "invariant") ;
aoqi@0 369 JavaThread * jt = (JavaThread *) Self ;
aoqi@0 370 assert (!SafepointSynchronize::is_at_safepoint(), "invariant") ;
aoqi@0 371 assert (jt->thread_state() != _thread_blocked , "invariant") ;
aoqi@0 372 assert (this->object() != NULL , "invariant") ;
aoqi@0 373 assert (_count >= 0, "invariant") ;
aoqi@0 374
aoqi@0 375 // Prevent deflation at STW-time. See deflate_idle_monitors() and is_busy().
aoqi@0 376 // Ensure the object-monitor relationship remains stable while there's contention.
aoqi@0 377 Atomic::inc_ptr(&_count);
aoqi@0 378
aoqi@0 379 EventJavaMonitorEnter event;
aoqi@0 380
aoqi@0 381 { // Change java thread status to indicate blocked on monitor enter.
aoqi@0 382 JavaThreadBlockedOnMonitorEnterState jtbmes(jt, this);
aoqi@0 383
dbuck@8887 384 Self->set_current_pending_monitor(this);
dbuck@8887 385
aoqi@0 386 DTRACE_MONITOR_PROBE(contended__enter, this, object(), jt);
aoqi@0 387 if (JvmtiExport::should_post_monitor_contended_enter()) {
aoqi@0 388 JvmtiExport::post_monitor_contended_enter(jt, this);
aoqi@0 389
aoqi@0 390 // The current thread does not yet own the monitor and does not
aoqi@0 391 // yet appear on any queues that would get it made the successor.
aoqi@0 392 // This means that the JVMTI_EVENT_MONITOR_CONTENDED_ENTER event
aoqi@0 393 // handler cannot accidentally consume an unpark() meant for the
aoqi@0 394 // ParkEvent associated with this ObjectMonitor.
aoqi@0 395 }
aoqi@0 396
aoqi@0 397 OSThreadContendState osts(Self->osthread());
aoqi@0 398 ThreadBlockInVM tbivm(jt);
aoqi@0 399
aoqi@0 400 // TODO-FIXME: change the following for(;;) loop to straight-line code.
aoqi@0 401 for (;;) {
aoqi@0 402 jt->set_suspend_equivalent();
aoqi@0 403 // cleared by handle_special_suspend_equivalent_condition()
aoqi@0 404 // or java_suspend_self()
aoqi@0 405
aoqi@0 406 EnterI (THREAD) ;
aoqi@0 407
aoqi@0 408 if (!ExitSuspendEquivalent(jt)) break ;
aoqi@0 409
aoqi@0 410 //
aoqi@0 411 // We have acquired the contended monitor, but while we were
aoqi@0 412 // waiting another thread suspended us. We don't want to enter
aoqi@0 413 // the monitor while suspended because that would surprise the
aoqi@0 414 // thread that suspended us.
aoqi@0 415 //
aoqi@0 416 _recursions = 0 ;
aoqi@0 417 _succ = NULL ;
aoqi@0 418 exit (false, Self) ;
aoqi@0 419
aoqi@0 420 jt->java_suspend_self();
aoqi@0 421 }
aoqi@0 422 Self->set_current_pending_monitor(NULL);
aoqi@0 423
aoqi@0 424 // We cleared the pending monitor info since we've just gotten past
aoqi@0 425 // the enter-check-for-suspend dance and we now own the monitor free
aoqi@0 426 // and clear, i.e., it is no longer pending. The ThreadBlockInVM
aoqi@0 427 // destructor can go to a safepoint at the end of this block. If we
aoqi@0 428 // do a thread dump during that safepoint, then this thread will show
aoqi@0 429 // as having "-locked" the monitor, but the OS and java.lang.Thread
aoqi@0 430 // states will still report that the thread is blocked trying to
aoqi@0 431 // acquire it.
aoqi@0 432 }
aoqi@0 433
aoqi@0 434 Atomic::dec_ptr(&_count);
aoqi@0 435 assert (_count >= 0, "invariant") ;
aoqi@0 436 Self->_Stalled = 0 ;
aoqi@0 437
aoqi@0 438 // Must either set _recursions = 0 or ASSERT _recursions == 0.
aoqi@0 439 assert (_recursions == 0 , "invariant") ;
aoqi@0 440 assert (_owner == Self , "invariant") ;
aoqi@0 441 assert (_succ != Self , "invariant") ;
aoqi@0 442 assert (((oop)(object()))->mark() == markOopDesc::encode(this), "invariant") ;
aoqi@0 443
aoqi@0 444 // The thread -- now the owner -- is back in vm mode.
aoqi@0 445 // Report the glorious news via TI,DTrace and jvmstat.
aoqi@0 446 // The probe effect is non-trivial. All the reportage occurs
aoqi@0 447 // while we hold the monitor, increasing the length of the critical
aoqi@0 448 // section. Amdahl's parallel speedup law comes vividly into play.
aoqi@0 449 //
aoqi@0 450 // Another option might be to aggregate the events (thread local or
aoqi@0 451 // per-monitor aggregation) and defer reporting until a more opportune
aoqi@0 452 // time -- such as next time some thread encounters contention but has
aoqi@0 453 // yet to acquire the lock. While spinning that thread could
aoqi@0 454 // spinning we could increment JVMStat counters, etc.
aoqi@0 455
aoqi@0 456 DTRACE_MONITOR_PROBE(contended__entered, this, object(), jt);
aoqi@0 457 if (JvmtiExport::should_post_monitor_contended_entered()) {
aoqi@0 458 JvmtiExport::post_monitor_contended_entered(jt, this);
aoqi@0 459
aoqi@0 460 // The current thread already owns the monitor and is not going to
aoqi@0 461 // call park() for the remainder of the monitor enter protocol. So
aoqi@0 462 // it doesn't matter if the JVMTI_EVENT_MONITOR_CONTENDED_ENTERED
aoqi@0 463 // event handler consumed an unpark() issued by the thread that
aoqi@0 464 // just exited the monitor.
aoqi@0 465 }
aoqi@0 466
aoqi@0 467 if (event.should_commit()) {
aoqi@0 468 event.set_klass(((oop)this->object())->klass());
aoqi@0 469 event.set_previousOwner((TYPE_JAVALANGTHREAD)_previous_owner_tid);
aoqi@0 470 event.set_address((TYPE_ADDRESS)(uintptr_t)(this->object_addr()));
aoqi@0 471 event.commit();
aoqi@0 472 }
aoqi@0 473
aoqi@0 474 if (ObjectMonitor::_sync_ContendedLockAttempts != NULL) {
aoqi@0 475 ObjectMonitor::_sync_ContendedLockAttempts->inc() ;
aoqi@0 476 }
aoqi@0 477 }
aoqi@0 478
aoqi@0 479
aoqi@0 480 // Caveat: TryLock() is not necessarily serializing if it returns failure.
aoqi@0 481 // Callers must compensate as needed.
aoqi@0 482
aoqi@0 483 int ObjectMonitor::TryLock (Thread * Self) {
aoqi@0 484 for (;;) {
aoqi@0 485 void * own = _owner ;
aoqi@0 486 if (own != NULL) return 0 ;
aoqi@0 487 if (Atomic::cmpxchg_ptr (Self, &_owner, NULL) == NULL) {
aoqi@0 488 // Either guarantee _recursions == 0 or set _recursions = 0.
aoqi@0 489 assert (_recursions == 0, "invariant") ;
aoqi@0 490 assert (_owner == Self, "invariant") ;
aoqi@0 491 // CONSIDER: set or assert that OwnerIsThread == 1
aoqi@0 492 return 1 ;
aoqi@0 493 }
aoqi@0 494 // The lock had been free momentarily, but we lost the race to the lock.
aoqi@0 495 // Interference -- the CAS failed.
aoqi@0 496 // We can either return -1 or retry.
aoqi@0 497 // Retry doesn't make as much sense because the lock was just acquired.
aoqi@0 498 if (true) return -1 ;
aoqi@0 499 }
aoqi@0 500 }
aoqi@0 501
aoqi@0 502 void ATTR ObjectMonitor::EnterI (TRAPS) {
aoqi@0 503 Thread * Self = THREAD ;
aoqi@0 504 assert (Self->is_Java_thread(), "invariant") ;
aoqi@0 505 assert (((JavaThread *) Self)->thread_state() == _thread_blocked , "invariant") ;
aoqi@0 506
aoqi@0 507 // Try the lock - TATAS
aoqi@0 508 if (TryLock (Self) > 0) {
aoqi@0 509 assert (_succ != Self , "invariant") ;
aoqi@0 510 assert (_owner == Self , "invariant") ;
aoqi@0 511 assert (_Responsible != Self , "invariant") ;
aoqi@0 512 return ;
aoqi@0 513 }
aoqi@0 514
aoqi@0 515 DeferredInitialize () ;
aoqi@0 516
aoqi@0 517 // We try one round of spinning *before* enqueueing Self.
aoqi@0 518 //
aoqi@0 519 // If the _owner is ready but OFFPROC we could use a YieldTo()
aoqi@0 520 // operation to donate the remainder of this thread's quantum
aoqi@0 521 // to the owner. This has subtle but beneficial affinity
aoqi@0 522 // effects.
aoqi@0 523
aoqi@0 524 if (TrySpin (Self) > 0) {
aoqi@0 525 assert (_owner == Self , "invariant") ;
aoqi@0 526 assert (_succ != Self , "invariant") ;
aoqi@0 527 assert (_Responsible != Self , "invariant") ;
aoqi@0 528 return ;
aoqi@0 529 }
aoqi@0 530
aoqi@0 531 // The Spin failed -- Enqueue and park the thread ...
aoqi@0 532 assert (_succ != Self , "invariant") ;
aoqi@0 533 assert (_owner != Self , "invariant") ;
aoqi@0 534 assert (_Responsible != Self , "invariant") ;
aoqi@0 535
aoqi@0 536 // Enqueue "Self" on ObjectMonitor's _cxq.
aoqi@0 537 //
aoqi@0 538 // Node acts as a proxy for Self.
aoqi@0 539 // As an aside, if were to ever rewrite the synchronization code mostly
aoqi@0 540 // in Java, WaitNodes, ObjectMonitors, and Events would become 1st-class
aoqi@0 541 // Java objects. This would avoid awkward lifecycle and liveness issues,
aoqi@0 542 // as well as eliminate a subset of ABA issues.
aoqi@0 543 // TODO: eliminate ObjectWaiter and enqueue either Threads or Events.
aoqi@0 544 //
aoqi@0 545
aoqi@0 546 ObjectWaiter node(Self) ;
aoqi@0 547 Self->_ParkEvent->reset() ;
aoqi@0 548 node._prev = (ObjectWaiter *) 0xBAD ;
aoqi@0 549 node.TState = ObjectWaiter::TS_CXQ ;
aoqi@0 550
aoqi@0 551 // Push "Self" onto the front of the _cxq.
aoqi@0 552 // Once on cxq/EntryList, Self stays on-queue until it acquires the lock.
aoqi@0 553 // Note that spinning tends to reduce the rate at which threads
aoqi@0 554 // enqueue and dequeue on EntryList|cxq.
aoqi@0 555 ObjectWaiter * nxt ;
aoqi@0 556 for (;;) {
aoqi@0 557 node._next = nxt = _cxq ;
aoqi@0 558 if (Atomic::cmpxchg_ptr (&node, &_cxq, nxt) == nxt) break ;
aoqi@0 559
aoqi@0 560 // Interference - the CAS failed because _cxq changed. Just retry.
aoqi@0 561 // As an optional optimization we retry the lock.
aoqi@0 562 if (TryLock (Self) > 0) {
aoqi@0 563 assert (_succ != Self , "invariant") ;
aoqi@0 564 assert (_owner == Self , "invariant") ;
aoqi@0 565 assert (_Responsible != Self , "invariant") ;
aoqi@0 566 return ;
aoqi@0 567 }
aoqi@0 568 }
aoqi@0 569
aoqi@0 570 // Check for cxq|EntryList edge transition to non-null. This indicates
aoqi@0 571 // the onset of contention. While contention persists exiting threads
aoqi@0 572 // will use a ST:MEMBAR:LD 1-1 exit protocol. When contention abates exit
aoqi@0 573 // operations revert to the faster 1-0 mode. This enter operation may interleave
aoqi@0 574 // (race) a concurrent 1-0 exit operation, resulting in stranding, so we
aoqi@0 575 // arrange for one of the contending thread to use a timed park() operations
aoqi@0 576 // to detect and recover from the race. (Stranding is form of progress failure
aoqi@0 577 // where the monitor is unlocked but all the contending threads remain parked).
aoqi@0 578 // That is, at least one of the contended threads will periodically poll _owner.
aoqi@0 579 // One of the contending threads will become the designated "Responsible" thread.
aoqi@0 580 // The Responsible thread uses a timed park instead of a normal indefinite park
aoqi@0 581 // operation -- it periodically wakes and checks for and recovers from potential
aoqi@0 582 // strandings admitted by 1-0 exit operations. We need at most one Responsible
aoqi@0 583 // thread per-monitor at any given moment. Only threads on cxq|EntryList may
aoqi@0 584 // be responsible for a monitor.
aoqi@0 585 //
aoqi@0 586 // Currently, one of the contended threads takes on the added role of "Responsible".
aoqi@0 587 // A viable alternative would be to use a dedicated "stranding checker" thread
aoqi@0 588 // that periodically iterated over all the threads (or active monitors) and unparked
aoqi@0 589 // successors where there was risk of stranding. This would help eliminate the
aoqi@0 590 // timer scalability issues we see on some platforms as we'd only have one thread
aoqi@0 591 // -- the checker -- parked on a timer.
aoqi@0 592
aoqi@0 593 if ((SyncFlags & 16) == 0 && nxt == NULL && _EntryList == NULL) {
aoqi@0 594 // Try to assume the role of responsible thread for the monitor.
aoqi@0 595 // CONSIDER: ST vs CAS vs { if (Responsible==null) Responsible=Self }
aoqi@0 596 Atomic::cmpxchg_ptr (Self, &_Responsible, NULL) ;
aoqi@0 597 }
aoqi@0 598
aoqi@0 599 // The lock have been released while this thread was occupied queueing
aoqi@0 600 // itself onto _cxq. To close the race and avoid "stranding" and
aoqi@0 601 // progress-liveness failure we must resample-retry _owner before parking.
aoqi@0 602 // Note the Dekker/Lamport duality: ST cxq; MEMBAR; LD Owner.
aoqi@0 603 // In this case the ST-MEMBAR is accomplished with CAS().
aoqi@0 604 //
aoqi@0 605 // TODO: Defer all thread state transitions until park-time.
aoqi@0 606 // Since state transitions are heavy and inefficient we'd like
aoqi@0 607 // to defer the state transitions until absolutely necessary,
aoqi@0 608 // and in doing so avoid some transitions ...
aoqi@0 609
aoqi@0 610 TEVENT (Inflated enter - Contention) ;
aoqi@0 611 int nWakeups = 0 ;
aoqi@0 612 int RecheckInterval = 1 ;
aoqi@0 613
aoqi@0 614 for (;;) {
aoqi@0 615
aoqi@0 616 if (TryLock (Self) > 0) break ;
aoqi@0 617 assert (_owner != Self, "invariant") ;
aoqi@0 618
aoqi@0 619 if ((SyncFlags & 2) && _Responsible == NULL) {
aoqi@0 620 Atomic::cmpxchg_ptr (Self, &_Responsible, NULL) ;
aoqi@0 621 }
aoqi@0 622
aoqi@0 623 // park self
aoqi@0 624 if (_Responsible == Self || (SyncFlags & 1)) {
aoqi@0 625 TEVENT (Inflated enter - park TIMED) ;
aoqi@0 626 Self->_ParkEvent->park ((jlong) RecheckInterval) ;
aoqi@0 627 // Increase the RecheckInterval, but clamp the value.
aoqi@0 628 RecheckInterval *= 8 ;
aoqi@0 629 if (RecheckInterval > 1000) RecheckInterval = 1000 ;
aoqi@0 630 } else {
aoqi@0 631 TEVENT (Inflated enter - park UNTIMED) ;
aoqi@0 632 Self->_ParkEvent->park() ;
aoqi@0 633 }
aoqi@0 634
aoqi@0 635 if (TryLock(Self) > 0) break ;
aoqi@0 636
aoqi@0 637 // The lock is still contested.
aoqi@0 638 // Keep a tally of the # of futile wakeups.
aoqi@0 639 // Note that the counter is not protected by a lock or updated by atomics.
aoqi@0 640 // That is by design - we trade "lossy" counters which are exposed to
aoqi@0 641 // races during updates for a lower probe effect.
aoqi@0 642 TEVENT (Inflated enter - Futile wakeup) ;
aoqi@0 643 if (ObjectMonitor::_sync_FutileWakeups != NULL) {
aoqi@0 644 ObjectMonitor::_sync_FutileWakeups->inc() ;
aoqi@0 645 }
aoqi@0 646 ++ nWakeups ;
aoqi@0 647
aoqi@0 648 // Assuming this is not a spurious wakeup we'll normally find _succ == Self.
aoqi@0 649 // We can defer clearing _succ until after the spin completes
aoqi@0 650 // TrySpin() must tolerate being called with _succ == Self.
aoqi@0 651 // Try yet another round of adaptive spinning.
aoqi@0 652 if ((Knob_SpinAfterFutile & 1) && TrySpin (Self) > 0) break ;
aoqi@0 653
aoqi@0 654 // We can find that we were unpark()ed and redesignated _succ while
aoqi@0 655 // we were spinning. That's harmless. If we iterate and call park(),
aoqi@0 656 // park() will consume the event and return immediately and we'll
aoqi@0 657 // just spin again. This pattern can repeat, leaving _succ to simply
aoqi@0 658 // spin on a CPU. Enable Knob_ResetEvent to clear pending unparks().
aoqi@0 659 // Alternately, we can sample fired() here, and if set, forgo spinning
aoqi@0 660 // in the next iteration.
aoqi@0 661
aoqi@0 662 if ((Knob_ResetEvent & 1) && Self->_ParkEvent->fired()) {
aoqi@0 663 Self->_ParkEvent->reset() ;
aoqi@0 664 OrderAccess::fence() ;
aoqi@0 665 }
aoqi@0 666 if (_succ == Self) _succ = NULL ;
aoqi@0 667
aoqi@0 668 // Invariant: after clearing _succ a thread *must* retry _owner before parking.
aoqi@0 669 OrderAccess::fence() ;
aoqi@0 670 }
aoqi@0 671
aoqi@0 672 // Egress :
aoqi@0 673 // Self has acquired the lock -- Unlink Self from the cxq or EntryList.
aoqi@0 674 // Normally we'll find Self on the EntryList .
aoqi@0 675 // From the perspective of the lock owner (this thread), the
aoqi@0 676 // EntryList is stable and cxq is prepend-only.
aoqi@0 677 // The head of cxq is volatile but the interior is stable.
aoqi@0 678 // In addition, Self.TState is stable.
aoqi@0 679
aoqi@0 680 assert (_owner == Self , "invariant") ;
aoqi@0 681 assert (object() != NULL , "invariant") ;
aoqi@0 682 // I'd like to write:
aoqi@0 683 // guarantee (((oop)(object()))->mark() == markOopDesc::encode(this), "invariant") ;
aoqi@0 684 // but as we're at a safepoint that's not safe.
aoqi@0 685
aoqi@0 686 UnlinkAfterAcquire (Self, &node) ;
aoqi@0 687 if (_succ == Self) _succ = NULL ;
aoqi@0 688
aoqi@0 689 assert (_succ != Self, "invariant") ;
aoqi@0 690 if (_Responsible == Self) {
aoqi@0 691 _Responsible = NULL ;
aoqi@0 692 OrderAccess::fence(); // Dekker pivot-point
aoqi@0 693
aoqi@0 694 // We may leave threads on cxq|EntryList without a designated
aoqi@0 695 // "Responsible" thread. This is benign. When this thread subsequently
aoqi@0 696 // exits the monitor it can "see" such preexisting "old" threads --
aoqi@0 697 // threads that arrived on the cxq|EntryList before the fence, above --
aoqi@0 698 // by LDing cxq|EntryList. Newly arrived threads -- that is, threads
aoqi@0 699 // that arrive on cxq after the ST:MEMBAR, above -- will set Responsible
aoqi@0 700 // non-null and elect a new "Responsible" timer thread.
aoqi@0 701 //
aoqi@0 702 // This thread executes:
aoqi@0 703 // ST Responsible=null; MEMBAR (in enter epilog - here)
aoqi@0 704 // LD cxq|EntryList (in subsequent exit)
aoqi@0 705 //
aoqi@0 706 // Entering threads in the slow/contended path execute:
aoqi@0 707 // ST cxq=nonnull; MEMBAR; LD Responsible (in enter prolog)
aoqi@0 708 // The (ST cxq; MEMBAR) is accomplished with CAS().
aoqi@0 709 //
aoqi@0 710 // The MEMBAR, above, prevents the LD of cxq|EntryList in the subsequent
aoqi@0 711 // exit operation from floating above the ST Responsible=null.
aoqi@0 712 }
aoqi@0 713
aoqi@0 714 // We've acquired ownership with CAS().
aoqi@0 715 // CAS is serializing -- it has MEMBAR/FENCE-equivalent semantics.
aoqi@0 716 // But since the CAS() this thread may have also stored into _succ,
aoqi@0 717 // EntryList, cxq or Responsible. These meta-data updates must be
aoqi@0 718 // visible __before this thread subsequently drops the lock.
aoqi@0 719 // Consider what could occur if we didn't enforce this constraint --
aoqi@0 720 // STs to monitor meta-data and user-data could reorder with (become
aoqi@0 721 // visible after) the ST in exit that drops ownership of the lock.
aoqi@0 722 // Some other thread could then acquire the lock, but observe inconsistent
aoqi@0 723 // or old monitor meta-data and heap data. That violates the JMM.
aoqi@0 724 // To that end, the 1-0 exit() operation must have at least STST|LDST
aoqi@0 725 // "release" barrier semantics. Specifically, there must be at least a
aoqi@0 726 // STST|LDST barrier in exit() before the ST of null into _owner that drops
aoqi@0 727 // the lock. The barrier ensures that changes to monitor meta-data and data
aoqi@0 728 // protected by the lock will be visible before we release the lock, and
aoqi@0 729 // therefore before some other thread (CPU) has a chance to acquire the lock.
aoqi@0 730 // See also: http://gee.cs.oswego.edu/dl/jmm/cookbook.html.
aoqi@0 731 //
aoqi@0 732 // Critically, any prior STs to _succ or EntryList must be visible before
aoqi@0 733 // the ST of null into _owner in the *subsequent* (following) corresponding
aoqi@0 734 // monitorexit. Recall too, that in 1-0 mode monitorexit does not necessarily
aoqi@0 735 // execute a serializing instruction.
aoqi@0 736
aoqi@0 737 if (SyncFlags & 8) {
aoqi@0 738 OrderAccess::fence() ;
aoqi@0 739 }
aoqi@0 740 return ;
aoqi@0 741 }
aoqi@0 742
aoqi@0 743 // ReenterI() is a specialized inline form of the latter half of the
aoqi@0 744 // contended slow-path from EnterI(). We use ReenterI() only for
aoqi@0 745 // monitor reentry in wait().
aoqi@0 746 //
aoqi@0 747 // In the future we should reconcile EnterI() and ReenterI(), adding
aoqi@0 748 // Knob_Reset and Knob_SpinAfterFutile support and restructuring the
aoqi@0 749 // loop accordingly.
aoqi@0 750
aoqi@0 751 void ATTR ObjectMonitor::ReenterI (Thread * Self, ObjectWaiter * SelfNode) {
aoqi@0 752 assert (Self != NULL , "invariant") ;
aoqi@0 753 assert (SelfNode != NULL , "invariant") ;
aoqi@0 754 assert (SelfNode->_thread == Self , "invariant") ;
aoqi@0 755 assert (_waiters > 0 , "invariant") ;
aoqi@0 756 assert (((oop)(object()))->mark() == markOopDesc::encode(this) , "invariant") ;
aoqi@0 757 assert (((JavaThread *)Self)->thread_state() != _thread_blocked, "invariant") ;
aoqi@0 758 JavaThread * jt = (JavaThread *) Self ;
aoqi@0 759
aoqi@0 760 int nWakeups = 0 ;
aoqi@0 761 for (;;) {
aoqi@0 762 ObjectWaiter::TStates v = SelfNode->TState ;
aoqi@0 763 guarantee (v == ObjectWaiter::TS_ENTER || v == ObjectWaiter::TS_CXQ, "invariant") ;
aoqi@0 764 assert (_owner != Self, "invariant") ;
aoqi@0 765
aoqi@0 766 if (TryLock (Self) > 0) break ;
aoqi@0 767 if (TrySpin (Self) > 0) break ;
aoqi@0 768
aoqi@0 769 TEVENT (Wait Reentry - parking) ;
aoqi@0 770
aoqi@0 771 // State transition wrappers around park() ...
aoqi@0 772 // ReenterI() wisely defers state transitions until
aoqi@0 773 // it's clear we must park the thread.
aoqi@0 774 {
aoqi@0 775 OSThreadContendState osts(Self->osthread());
aoqi@0 776 ThreadBlockInVM tbivm(jt);
aoqi@0 777
aoqi@0 778 // cleared by handle_special_suspend_equivalent_condition()
aoqi@0 779 // or java_suspend_self()
aoqi@0 780 jt->set_suspend_equivalent();
aoqi@0 781 if (SyncFlags & 1) {
aoqi@0 782 Self->_ParkEvent->park ((jlong)1000) ;
aoqi@0 783 } else {
aoqi@0 784 Self->_ParkEvent->park () ;
aoqi@0 785 }
aoqi@0 786
aoqi@0 787 // were we externally suspended while we were waiting?
aoqi@0 788 for (;;) {
aoqi@0 789 if (!ExitSuspendEquivalent (jt)) break ;
aoqi@0 790 if (_succ == Self) { _succ = NULL; OrderAccess::fence(); }
aoqi@0 791 jt->java_suspend_self();
aoqi@0 792 jt->set_suspend_equivalent();
aoqi@0 793 }
aoqi@0 794 }
aoqi@0 795
aoqi@0 796 // Try again, but just so we distinguish between futile wakeups and
aoqi@0 797 // successful wakeups. The following test isn't algorithmically
aoqi@0 798 // necessary, but it helps us maintain sensible statistics.
aoqi@0 799 if (TryLock(Self) > 0) break ;
aoqi@0 800
aoqi@0 801 // The lock is still contested.
aoqi@0 802 // Keep a tally of the # of futile wakeups.
aoqi@0 803 // Note that the counter is not protected by a lock or updated by atomics.
aoqi@0 804 // That is by design - we trade "lossy" counters which are exposed to
aoqi@0 805 // races during updates for a lower probe effect.
aoqi@0 806 TEVENT (Wait Reentry - futile wakeup) ;
aoqi@0 807 ++ nWakeups ;
aoqi@0 808
aoqi@0 809 // Assuming this is not a spurious wakeup we'll normally
aoqi@0 810 // find that _succ == Self.
aoqi@0 811 if (_succ == Self) _succ = NULL ;
aoqi@0 812
aoqi@0 813 // Invariant: after clearing _succ a contending thread
aoqi@0 814 // *must* retry _owner before parking.
aoqi@0 815 OrderAccess::fence() ;
aoqi@0 816
aoqi@0 817 if (ObjectMonitor::_sync_FutileWakeups != NULL) {
aoqi@0 818 ObjectMonitor::_sync_FutileWakeups->inc() ;
aoqi@0 819 }
aoqi@0 820 }
aoqi@0 821
aoqi@0 822 // Self has acquired the lock -- Unlink Self from the cxq or EntryList .
aoqi@0 823 // Normally we'll find Self on the EntryList.
aoqi@0 824 // Unlinking from the EntryList is constant-time and atomic-free.
aoqi@0 825 // From the perspective of the lock owner (this thread), the
aoqi@0 826 // EntryList is stable and cxq is prepend-only.
aoqi@0 827 // The head of cxq is volatile but the interior is stable.
aoqi@0 828 // In addition, Self.TState is stable.
aoqi@0 829
aoqi@0 830 assert (_owner == Self, "invariant") ;
aoqi@0 831 assert (((oop)(object()))->mark() == markOopDesc::encode(this), "invariant") ;
aoqi@0 832 UnlinkAfterAcquire (Self, SelfNode) ;
aoqi@0 833 if (_succ == Self) _succ = NULL ;
aoqi@0 834 assert (_succ != Self, "invariant") ;
aoqi@0 835 SelfNode->TState = ObjectWaiter::TS_RUN ;
aoqi@0 836 OrderAccess::fence() ; // see comments at the end of EnterI()
aoqi@0 837 }
aoqi@0 838
aoqi@0 839 // after the thread acquires the lock in ::enter(). Equally, we could defer
aoqi@0 840 // unlinking the thread until ::exit()-time.
aoqi@0 841
aoqi@0 842 void ObjectMonitor::UnlinkAfterAcquire (Thread * Self, ObjectWaiter * SelfNode)
aoqi@0 843 {
aoqi@0 844 assert (_owner == Self, "invariant") ;
aoqi@0 845 assert (SelfNode->_thread == Self, "invariant") ;
aoqi@0 846
aoqi@0 847 if (SelfNode->TState == ObjectWaiter::TS_ENTER) {
aoqi@0 848 // Normal case: remove Self from the DLL EntryList .
aoqi@0 849 // This is a constant-time operation.
aoqi@0 850 ObjectWaiter * nxt = SelfNode->_next ;
aoqi@0 851 ObjectWaiter * prv = SelfNode->_prev ;
aoqi@0 852 if (nxt != NULL) nxt->_prev = prv ;
aoqi@0 853 if (prv != NULL) prv->_next = nxt ;
aoqi@0 854 if (SelfNode == _EntryList ) _EntryList = nxt ;
aoqi@0 855 assert (nxt == NULL || nxt->TState == ObjectWaiter::TS_ENTER, "invariant") ;
aoqi@0 856 assert (prv == NULL || prv->TState == ObjectWaiter::TS_ENTER, "invariant") ;
aoqi@0 857 TEVENT (Unlink from EntryList) ;
aoqi@0 858 } else {
aoqi@0 859 guarantee (SelfNode->TState == ObjectWaiter::TS_CXQ, "invariant") ;
aoqi@0 860 // Inopportune interleaving -- Self is still on the cxq.
aoqi@0 861 // This usually means the enqueue of self raced an exiting thread.
aoqi@0 862 // Normally we'll find Self near the front of the cxq, so
aoqi@0 863 // dequeueing is typically fast. If needbe we can accelerate
aoqi@0 864 // this with some MCS/CHL-like bidirectional list hints and advisory
aoqi@0 865 // back-links so dequeueing from the interior will normally operate
aoqi@0 866 // in constant-time.
aoqi@0 867 // Dequeue Self from either the head (with CAS) or from the interior
aoqi@0 868 // with a linear-time scan and normal non-atomic memory operations.
aoqi@0 869 // CONSIDER: if Self is on the cxq then simply drain cxq into EntryList
aoqi@0 870 // and then unlink Self from EntryList. We have to drain eventually,
aoqi@0 871 // so it might as well be now.
aoqi@0 872
aoqi@0 873 ObjectWaiter * v = _cxq ;
aoqi@0 874 assert (v != NULL, "invariant") ;
aoqi@0 875 if (v != SelfNode || Atomic::cmpxchg_ptr (SelfNode->_next, &_cxq, v) != v) {
aoqi@0 876 // The CAS above can fail from interference IFF a "RAT" arrived.
aoqi@0 877 // In that case Self must be in the interior and can no longer be
aoqi@0 878 // at the head of cxq.
aoqi@0 879 if (v == SelfNode) {
aoqi@0 880 assert (_cxq != v, "invariant") ;
aoqi@0 881 v = _cxq ; // CAS above failed - start scan at head of list
aoqi@0 882 }
aoqi@0 883 ObjectWaiter * p ;
aoqi@0 884 ObjectWaiter * q = NULL ;
aoqi@0 885 for (p = v ; p != NULL && p != SelfNode; p = p->_next) {
aoqi@0 886 q = p ;
aoqi@0 887 assert (p->TState == ObjectWaiter::TS_CXQ, "invariant") ;
aoqi@0 888 }
aoqi@0 889 assert (v != SelfNode, "invariant") ;
aoqi@0 890 assert (p == SelfNode, "Node not found on cxq") ;
aoqi@0 891 assert (p != _cxq, "invariant") ;
aoqi@0 892 assert (q != NULL, "invariant") ;
aoqi@0 893 assert (q->_next == p, "invariant") ;
aoqi@0 894 q->_next = p->_next ;
aoqi@0 895 }
aoqi@0 896 TEVENT (Unlink from cxq) ;
aoqi@0 897 }
aoqi@0 898
aoqi@0 899 // Diagnostic hygiene ...
aoqi@0 900 SelfNode->_prev = (ObjectWaiter *) 0xBAD ;
aoqi@0 901 SelfNode->_next = (ObjectWaiter *) 0xBAD ;
aoqi@0 902 SelfNode->TState = ObjectWaiter::TS_RUN ;
aoqi@0 903 }
aoqi@0 904
aoqi@0 905 // -----------------------------------------------------------------------------
aoqi@0 906 // Exit support
aoqi@0 907 //
aoqi@0 908 // exit()
aoqi@0 909 // ~~~~~~
aoqi@0 910 // Note that the collector can't reclaim the objectMonitor or deflate
aoqi@0 911 // the object out from underneath the thread calling ::exit() as the
aoqi@0 912 // thread calling ::exit() never transitions to a stable state.
aoqi@0 913 // This inhibits GC, which in turn inhibits asynchronous (and
aoqi@0 914 // inopportune) reclamation of "this".
aoqi@0 915 //
aoqi@0 916 // We'd like to assert that: (THREAD->thread_state() != _thread_blocked) ;
aoqi@0 917 // There's one exception to the claim above, however. EnterI() can call
aoqi@0 918 // exit() to drop a lock if the acquirer has been externally suspended.
aoqi@0 919 // In that case exit() is called with _thread_state as _thread_blocked,
aoqi@0 920 // but the monitor's _count field is > 0, which inhibits reclamation.
aoqi@0 921 //
aoqi@0 922 // 1-0 exit
aoqi@0 923 // ~~~~~~~~
aoqi@0 924 // ::exit() uses a canonical 1-1 idiom with a MEMBAR although some of
aoqi@0 925 // the fast-path operators have been optimized so the common ::exit()
aoqi@0 926 // operation is 1-0. See i486.ad fast_unlock(), for instance.
aoqi@0 927 // The code emitted by fast_unlock() elides the usual MEMBAR. This
aoqi@0 928 // greatly improves latency -- MEMBAR and CAS having considerable local
aoqi@0 929 // latency on modern processors -- but at the cost of "stranding". Absent the
aoqi@0 930 // MEMBAR, a thread in fast_unlock() can race a thread in the slow
aoqi@0 931 // ::enter() path, resulting in the entering thread being stranding
aoqi@0 932 // and a progress-liveness failure. Stranding is extremely rare.
aoqi@0 933 // We use timers (timed park operations) & periodic polling to detect
aoqi@0 934 // and recover from stranding. Potentially stranded threads periodically
aoqi@0 935 // wake up and poll the lock. See the usage of the _Responsible variable.
aoqi@0 936 //
aoqi@0 937 // The CAS() in enter provides for safety and exclusion, while the CAS or
aoqi@0 938 // MEMBAR in exit provides for progress and avoids stranding. 1-0 locking
aoqi@0 939 // eliminates the CAS/MEMBAR from the exist path, but it admits stranding.
aoqi@0 940 // We detect and recover from stranding with timers.
aoqi@0 941 //
aoqi@0 942 // If a thread transiently strands it'll park until (a) another
aoqi@0 943 // thread acquires the lock and then drops the lock, at which time the
aoqi@0 944 // exiting thread will notice and unpark the stranded thread, or, (b)
aoqi@0 945 // the timer expires. If the lock is high traffic then the stranding latency
aoqi@0 946 // will be low due to (a). If the lock is low traffic then the odds of
aoqi@0 947 // stranding are lower, although the worst-case stranding latency
aoqi@0 948 // is longer. Critically, we don't want to put excessive load in the
aoqi@0 949 // platform's timer subsystem. We want to minimize both the timer injection
aoqi@0 950 // rate (timers created/sec) as well as the number of timers active at
aoqi@0 951 // any one time. (more precisely, we want to minimize timer-seconds, which is
aoqi@0 952 // the integral of the # of active timers at any instant over time).
aoqi@0 953 // Both impinge on OS scalability. Given that, at most one thread parked on
aoqi@0 954 // a monitor will use a timer.
aoqi@0 955
aoqi@0 956 void ATTR ObjectMonitor::exit(bool not_suspended, TRAPS) {
aoqi@0 957 Thread * Self = THREAD ;
aoqi@0 958 if (THREAD != _owner) {
aoqi@0 959 if (THREAD->is_lock_owned((address) _owner)) {
aoqi@0 960 // Transmute _owner from a BasicLock pointer to a Thread address.
aoqi@0 961 // We don't need to hold _mutex for this transition.
aoqi@0 962 // Non-null to Non-null is safe as long as all readers can
aoqi@0 963 // tolerate either flavor.
aoqi@0 964 assert (_recursions == 0, "invariant") ;
aoqi@0 965 _owner = THREAD ;
aoqi@0 966 _recursions = 0 ;
aoqi@0 967 OwnerIsThread = 1 ;
aoqi@0 968 } else {
aoqi@0 969 // NOTE: we need to handle unbalanced monitor enter/exit
aoqi@0 970 // in native code by throwing an exception.
aoqi@0 971 // TODO: Throw an IllegalMonitorStateException ?
aoqi@0 972 TEVENT (Exit - Throw IMSX) ;
aoqi@0 973 assert(false, "Non-balanced monitor enter/exit!");
aoqi@0 974 if (false) {
aoqi@0 975 THROW(vmSymbols::java_lang_IllegalMonitorStateException());
aoqi@0 976 }
aoqi@0 977 return;
aoqi@0 978 }
aoqi@0 979 }
aoqi@0 980
aoqi@0 981 if (_recursions != 0) {
aoqi@0 982 _recursions--; // this is simple recursive enter
aoqi@0 983 TEVENT (Inflated exit - recursive) ;
aoqi@0 984 return ;
aoqi@0 985 }
aoqi@0 986
aoqi@0 987 // Invariant: after setting Responsible=null an thread must execute
aoqi@0 988 // a MEMBAR or other serializing instruction before fetching EntryList|cxq.
aoqi@0 989 if ((SyncFlags & 4) == 0) {
aoqi@0 990 _Responsible = NULL ;
aoqi@0 991 }
aoqi@0 992
aoqi@0 993 #if INCLUDE_TRACE
aoqi@0 994 // get the owner's thread id for the MonitorEnter event
aoqi@0 995 // if it is enabled and the thread isn't suspended
aoqi@0 996 if (not_suspended && Tracing::is_event_enabled(TraceJavaMonitorEnterEvent)) {
aoqi@0 997 _previous_owner_tid = SharedRuntime::get_java_tid(Self);
aoqi@0 998 }
aoqi@0 999 #endif
aoqi@0 1000
aoqi@0 1001 for (;;) {
aoqi@0 1002 assert (THREAD == _owner, "invariant") ;
aoqi@0 1003
aoqi@0 1004
aoqi@0 1005 if (Knob_ExitPolicy == 0) {
aoqi@0 1006 // release semantics: prior loads and stores from within the critical section
aoqi@0 1007 // must not float (reorder) past the following store that drops the lock.
aoqi@0 1008 // On SPARC that requires MEMBAR #loadstore|#storestore.
aoqi@0 1009 // But of course in TSO #loadstore|#storestore is not required.
aoqi@0 1010 // I'd like to write one of the following:
aoqi@0 1011 // A. OrderAccess::release() ; _owner = NULL
aoqi@0 1012 // B. OrderAccess::loadstore(); OrderAccess::storestore(); _owner = NULL;
aoqi@0 1013 // Unfortunately OrderAccess::release() and OrderAccess::loadstore() both
aoqi@0 1014 // store into a _dummy variable. That store is not needed, but can result
aoqi@0 1015 // in massive wasteful coherency traffic on classic SMP systems.
aoqi@0 1016 // Instead, I use release_store(), which is implemented as just a simple
aoqi@0 1017 // ST on x64, x86 and SPARC.
aoqi@0 1018 OrderAccess::release_store_ptr (&_owner, NULL) ; // drop the lock
aoqi@0 1019 OrderAccess::storeload() ; // See if we need to wake a successor
aoqi@0 1020 if ((intptr_t(_EntryList)|intptr_t(_cxq)) == 0 || _succ != NULL) {
aoqi@0 1021 TEVENT (Inflated exit - simple egress) ;
aoqi@0 1022 return ;
aoqi@0 1023 }
aoqi@0 1024 TEVENT (Inflated exit - complex egress) ;
aoqi@0 1025
aoqi@0 1026 // Normally the exiting thread is responsible for ensuring succession,
aoqi@0 1027 // but if other successors are ready or other entering threads are spinning
aoqi@0 1028 // then this thread can simply store NULL into _owner and exit without
aoqi@0 1029 // waking a successor. The existence of spinners or ready successors
aoqi@0 1030 // guarantees proper succession (liveness). Responsibility passes to the
aoqi@0 1031 // ready or running successors. The exiting thread delegates the duty.
aoqi@0 1032 // More precisely, if a successor already exists this thread is absolved
aoqi@0 1033 // of the responsibility of waking (unparking) one.
aoqi@0 1034 //
aoqi@0 1035 // The _succ variable is critical to reducing futile wakeup frequency.
aoqi@0 1036 // _succ identifies the "heir presumptive" thread that has been made
aoqi@0 1037 // ready (unparked) but that has not yet run. We need only one such
aoqi@0 1038 // successor thread to guarantee progress.
aoqi@0 1039 // See http://www.usenix.org/events/jvm01/full_papers/dice/dice.pdf
aoqi@0 1040 // section 3.3 "Futile Wakeup Throttling" for details.
aoqi@0 1041 //
aoqi@0 1042 // Note that spinners in Enter() also set _succ non-null.
aoqi@0 1043 // In the current implementation spinners opportunistically set
aoqi@0 1044 // _succ so that exiting threads might avoid waking a successor.
aoqi@0 1045 // Another less appealing alternative would be for the exiting thread
aoqi@0 1046 // to drop the lock and then spin briefly to see if a spinner managed
aoqi@0 1047 // to acquire the lock. If so, the exiting thread could exit
aoqi@0 1048 // immediately without waking a successor, otherwise the exiting
aoqi@0 1049 // thread would need to dequeue and wake a successor.
aoqi@0 1050 // (Note that we'd need to make the post-drop spin short, but no
aoqi@0 1051 // shorter than the worst-case round-trip cache-line migration time.
aoqi@0 1052 // The dropped lock needs to become visible to the spinner, and then
aoqi@0 1053 // the acquisition of the lock by the spinner must become visible to
aoqi@0 1054 // the exiting thread).
aoqi@0 1055 //
aoqi@0 1056
aoqi@0 1057 // It appears that an heir-presumptive (successor) must be made ready.
aoqi@0 1058 // Only the current lock owner can manipulate the EntryList or
aoqi@0 1059 // drain _cxq, so we need to reacquire the lock. If we fail
aoqi@0 1060 // to reacquire the lock the responsibility for ensuring succession
aoqi@0 1061 // falls to the new owner.
aoqi@0 1062 //
aoqi@0 1063 if (Atomic::cmpxchg_ptr (THREAD, &_owner, NULL) != NULL) {
aoqi@0 1064 return ;
aoqi@0 1065 }
aoqi@0 1066 TEVENT (Exit - Reacquired) ;
aoqi@0 1067 } else {
aoqi@0 1068 if ((intptr_t(_EntryList)|intptr_t(_cxq)) == 0 || _succ != NULL) {
aoqi@0 1069 OrderAccess::release_store_ptr (&_owner, NULL) ; // drop the lock
aoqi@0 1070 OrderAccess::storeload() ;
aoqi@0 1071 // Ratify the previously observed values.
aoqi@0 1072 if (_cxq == NULL || _succ != NULL) {
aoqi@0 1073 TEVENT (Inflated exit - simple egress) ;
aoqi@0 1074 return ;
aoqi@0 1075 }
aoqi@0 1076
aoqi@0 1077 // inopportune interleaving -- the exiting thread (this thread)
aoqi@0 1078 // in the fast-exit path raced an entering thread in the slow-enter
aoqi@0 1079 // path.
aoqi@0 1080 // We have two choices:
aoqi@0 1081 // A. Try to reacquire the lock.
aoqi@0 1082 // If the CAS() fails return immediately, otherwise
aoqi@0 1083 // we either restart/rerun the exit operation, or simply
aoqi@0 1084 // fall-through into the code below which wakes a successor.
aoqi@0 1085 // B. If the elements forming the EntryList|cxq are TSM
aoqi@0 1086 // we could simply unpark() the lead thread and return
aoqi@0 1087 // without having set _succ.
aoqi@0 1088 if (Atomic::cmpxchg_ptr (THREAD, &_owner, NULL) != NULL) {
aoqi@0 1089 TEVENT (Inflated exit - reacquired succeeded) ;
aoqi@0 1090 return ;
aoqi@0 1091 }
aoqi@0 1092 TEVENT (Inflated exit - reacquired failed) ;
aoqi@0 1093 } else {
aoqi@0 1094 TEVENT (Inflated exit - complex egress) ;
aoqi@0 1095 }
aoqi@0 1096 }
aoqi@0 1097
aoqi@0 1098 guarantee (_owner == THREAD, "invariant") ;
aoqi@0 1099
aoqi@0 1100 ObjectWaiter * w = NULL ;
aoqi@0 1101 int QMode = Knob_QMode ;
aoqi@0 1102
aoqi@0 1103 if (QMode == 2 && _cxq != NULL) {
aoqi@0 1104 // QMode == 2 : cxq has precedence over EntryList.
aoqi@0 1105 // Try to directly wake a successor from the cxq.
aoqi@0 1106 // If successful, the successor will need to unlink itself from cxq.
aoqi@0 1107 w = _cxq ;
aoqi@0 1108 assert (w != NULL, "invariant") ;
aoqi@0 1109 assert (w->TState == ObjectWaiter::TS_CXQ, "Invariant") ;
aoqi@0 1110 ExitEpilog (Self, w) ;
aoqi@0 1111 return ;
aoqi@0 1112 }
aoqi@0 1113
aoqi@0 1114 if (QMode == 3 && _cxq != NULL) {
aoqi@0 1115 // Aggressively drain cxq into EntryList at the first opportunity.
aoqi@0 1116 // This policy ensure that recently-run threads live at the head of EntryList.
aoqi@0 1117 // Drain _cxq into EntryList - bulk transfer.
aoqi@0 1118 // First, detach _cxq.
aoqi@0 1119 // The following loop is tantamount to: w = swap (&cxq, NULL)
aoqi@0 1120 w = _cxq ;
aoqi@0 1121 for (;;) {
aoqi@0 1122 assert (w != NULL, "Invariant") ;
aoqi@0 1123 ObjectWaiter * u = (ObjectWaiter *) Atomic::cmpxchg_ptr (NULL, &_cxq, w) ;
aoqi@0 1124 if (u == w) break ;
aoqi@0 1125 w = u ;
aoqi@0 1126 }
aoqi@0 1127 assert (w != NULL , "invariant") ;
aoqi@0 1128
aoqi@0 1129 ObjectWaiter * q = NULL ;
aoqi@0 1130 ObjectWaiter * p ;
aoqi@0 1131 for (p = w ; p != NULL ; p = p->_next) {
aoqi@0 1132 guarantee (p->TState == ObjectWaiter::TS_CXQ, "Invariant") ;
aoqi@0 1133 p->TState = ObjectWaiter::TS_ENTER ;
aoqi@0 1134 p->_prev = q ;
aoqi@0 1135 q = p ;
aoqi@0 1136 }
aoqi@0 1137
aoqi@0 1138 // Append the RATs to the EntryList
aoqi@0 1139 // TODO: organize EntryList as a CDLL so we can locate the tail in constant-time.
aoqi@0 1140 ObjectWaiter * Tail ;
aoqi@0 1141 for (Tail = _EntryList ; Tail != NULL && Tail->_next != NULL ; Tail = Tail->_next) ;
aoqi@0 1142 if (Tail == NULL) {
aoqi@0 1143 _EntryList = w ;
aoqi@0 1144 } else {
aoqi@0 1145 Tail->_next = w ;
aoqi@0 1146 w->_prev = Tail ;
aoqi@0 1147 }
aoqi@0 1148
aoqi@0 1149 // Fall thru into code that tries to wake a successor from EntryList
aoqi@0 1150 }
aoqi@0 1151
aoqi@0 1152 if (QMode == 4 && _cxq != NULL) {
aoqi@0 1153 // Aggressively drain cxq into EntryList at the first opportunity.
aoqi@0 1154 // This policy ensure that recently-run threads live at the head of EntryList.
aoqi@0 1155
aoqi@0 1156 // Drain _cxq into EntryList - bulk transfer.
aoqi@0 1157 // First, detach _cxq.
aoqi@0 1158 // The following loop is tantamount to: w = swap (&cxq, NULL)
aoqi@0 1159 w = _cxq ;
aoqi@0 1160 for (;;) {
aoqi@0 1161 assert (w != NULL, "Invariant") ;
aoqi@0 1162 ObjectWaiter * u = (ObjectWaiter *) Atomic::cmpxchg_ptr (NULL, &_cxq, w) ;
aoqi@0 1163 if (u == w) break ;
aoqi@0 1164 w = u ;
aoqi@0 1165 }
aoqi@0 1166 assert (w != NULL , "invariant") ;
aoqi@0 1167
aoqi@0 1168 ObjectWaiter * q = NULL ;
aoqi@0 1169 ObjectWaiter * p ;
aoqi@0 1170 for (p = w ; p != NULL ; p = p->_next) {
aoqi@0 1171 guarantee (p->TState == ObjectWaiter::TS_CXQ, "Invariant") ;
aoqi@0 1172 p->TState = ObjectWaiter::TS_ENTER ;
aoqi@0 1173 p->_prev = q ;
aoqi@0 1174 q = p ;
aoqi@0 1175 }
aoqi@0 1176
aoqi@0 1177 // Prepend the RATs to the EntryList
aoqi@0 1178 if (_EntryList != NULL) {
aoqi@0 1179 q->_next = _EntryList ;
aoqi@0 1180 _EntryList->_prev = q ;
aoqi@0 1181 }
aoqi@0 1182 _EntryList = w ;
aoqi@0 1183
aoqi@0 1184 // Fall thru into code that tries to wake a successor from EntryList
aoqi@0 1185 }
aoqi@0 1186
aoqi@0 1187 w = _EntryList ;
aoqi@0 1188 if (w != NULL) {
aoqi@0 1189 // I'd like to write: guarantee (w->_thread != Self).
aoqi@0 1190 // But in practice an exiting thread may find itself on the EntryList.
aoqi@0 1191 // Lets say thread T1 calls O.wait(). Wait() enqueues T1 on O's waitset and
aoqi@0 1192 // then calls exit(). Exit release the lock by setting O._owner to NULL.
aoqi@0 1193 // Lets say T1 then stalls. T2 acquires O and calls O.notify(). The
aoqi@0 1194 // notify() operation moves T1 from O's waitset to O's EntryList. T2 then
aoqi@0 1195 // release the lock "O". T2 resumes immediately after the ST of null into
aoqi@0 1196 // _owner, above. T2 notices that the EntryList is populated, so it
aoqi@0 1197 // reacquires the lock and then finds itself on the EntryList.
aoqi@0 1198 // Given all that, we have to tolerate the circumstance where "w" is
aoqi@0 1199 // associated with Self.
aoqi@0 1200 assert (w->TState == ObjectWaiter::TS_ENTER, "invariant") ;
aoqi@0 1201 ExitEpilog (Self, w) ;
aoqi@0 1202 return ;
aoqi@0 1203 }
aoqi@0 1204
aoqi@0 1205 // If we find that both _cxq and EntryList are null then just
aoqi@0 1206 // re-run the exit protocol from the top.
aoqi@0 1207 w = _cxq ;
aoqi@0 1208 if (w == NULL) continue ;
aoqi@0 1209
aoqi@0 1210 // Drain _cxq into EntryList - bulk transfer.
aoqi@0 1211 // First, detach _cxq.
aoqi@0 1212 // The following loop is tantamount to: w = swap (&cxq, NULL)
aoqi@0 1213 for (;;) {
aoqi@0 1214 assert (w != NULL, "Invariant") ;
aoqi@0 1215 ObjectWaiter * u = (ObjectWaiter *) Atomic::cmpxchg_ptr (NULL, &_cxq, w) ;
aoqi@0 1216 if (u == w) break ;
aoqi@0 1217 w = u ;
aoqi@0 1218 }
aoqi@0 1219 TEVENT (Inflated exit - drain cxq into EntryList) ;
aoqi@0 1220
aoqi@0 1221 assert (w != NULL , "invariant") ;
aoqi@0 1222 assert (_EntryList == NULL , "invariant") ;
aoqi@0 1223
aoqi@0 1224 // Convert the LIFO SLL anchored by _cxq into a DLL.
aoqi@0 1225 // The list reorganization step operates in O(LENGTH(w)) time.
aoqi@0 1226 // It's critical that this step operate quickly as
aoqi@0 1227 // "Self" still holds the outer-lock, restricting parallelism
aoqi@0 1228 // and effectively lengthening the critical section.
aoqi@0 1229 // Invariant: s chases t chases u.
aoqi@0 1230 // TODO-FIXME: consider changing EntryList from a DLL to a CDLL so
aoqi@0 1231 // we have faster access to the tail.
aoqi@0 1232
aoqi@0 1233 if (QMode == 1) {
aoqi@0 1234 // QMode == 1 : drain cxq to EntryList, reversing order
aoqi@0 1235 // We also reverse the order of the list.
aoqi@0 1236 ObjectWaiter * s = NULL ;
aoqi@0 1237 ObjectWaiter * t = w ;
aoqi@0 1238 ObjectWaiter * u = NULL ;
aoqi@0 1239 while (t != NULL) {
aoqi@0 1240 guarantee (t->TState == ObjectWaiter::TS_CXQ, "invariant") ;
aoqi@0 1241 t->TState = ObjectWaiter::TS_ENTER ;
aoqi@0 1242 u = t->_next ;
aoqi@0 1243 t->_prev = u ;
aoqi@0 1244 t->_next = s ;
aoqi@0 1245 s = t;
aoqi@0 1246 t = u ;
aoqi@0 1247 }
aoqi@0 1248 _EntryList = s ;
aoqi@0 1249 assert (s != NULL, "invariant") ;
aoqi@0 1250 } else {
aoqi@0 1251 // QMode == 0 or QMode == 2
aoqi@0 1252 _EntryList = w ;
aoqi@0 1253 ObjectWaiter * q = NULL ;
aoqi@0 1254 ObjectWaiter * p ;
aoqi@0 1255 for (p = w ; p != NULL ; p = p->_next) {
aoqi@0 1256 guarantee (p->TState == ObjectWaiter::TS_CXQ, "Invariant") ;
aoqi@0 1257 p->TState = ObjectWaiter::TS_ENTER ;
aoqi@0 1258 p->_prev = q ;
aoqi@0 1259 q = p ;
aoqi@0 1260 }
aoqi@0 1261 }
aoqi@0 1262
aoqi@0 1263 // In 1-0 mode we need: ST EntryList; MEMBAR #storestore; ST _owner = NULL
aoqi@0 1264 // The MEMBAR is satisfied by the release_store() operation in ExitEpilog().
aoqi@0 1265
aoqi@0 1266 // See if we can abdicate to a spinner instead of waking a thread.
aoqi@0 1267 // A primary goal of the implementation is to reduce the
aoqi@0 1268 // context-switch rate.
aoqi@0 1269 if (_succ != NULL) continue;
aoqi@0 1270
aoqi@0 1271 w = _EntryList ;
aoqi@0 1272 if (w != NULL) {
aoqi@0 1273 guarantee (w->TState == ObjectWaiter::TS_ENTER, "invariant") ;
aoqi@0 1274 ExitEpilog (Self, w) ;
aoqi@0 1275 return ;
aoqi@0 1276 }
aoqi@0 1277 }
aoqi@0 1278 }
aoqi@0 1279
aoqi@0 1280 // ExitSuspendEquivalent:
aoqi@0 1281 // A faster alternate to handle_special_suspend_equivalent_condition()
aoqi@0 1282 //
aoqi@0 1283 // handle_special_suspend_equivalent_condition() unconditionally
aoqi@0 1284 // acquires the SR_lock. On some platforms uncontended MutexLocker()
aoqi@0 1285 // operations have high latency. Note that in ::enter() we call HSSEC
aoqi@0 1286 // while holding the monitor, so we effectively lengthen the critical sections.
aoqi@0 1287 //
aoqi@0 1288 // There are a number of possible solutions:
aoqi@0 1289 //
aoqi@0 1290 // A. To ameliorate the problem we might also defer state transitions
aoqi@0 1291 // to as late as possible -- just prior to parking.
aoqi@0 1292 // Given that, we'd call HSSEC after having returned from park(),
aoqi@0 1293 // but before attempting to acquire the monitor. This is only a
aoqi@0 1294 // partial solution. It avoids calling HSSEC while holding the
aoqi@0 1295 // monitor (good), but it still increases successor reacquisition latency --
aoqi@0 1296 // the interval between unparking a successor and the time the successor
aoqi@0 1297 // resumes and retries the lock. See ReenterI(), which defers state transitions.
aoqi@0 1298 // If we use this technique we can also avoid EnterI()-exit() loop
aoqi@0 1299 // in ::enter() where we iteratively drop the lock and then attempt
aoqi@0 1300 // to reacquire it after suspending.
aoqi@0 1301 //
aoqi@0 1302 // B. In the future we might fold all the suspend bits into a
aoqi@0 1303 // composite per-thread suspend flag and then update it with CAS().
aoqi@0 1304 // Alternately, a Dekker-like mechanism with multiple variables
aoqi@0 1305 // would suffice:
aoqi@0 1306 // ST Self->_suspend_equivalent = false
aoqi@0 1307 // MEMBAR
aoqi@0 1308 // LD Self_>_suspend_flags
aoqi@0 1309 //
aoqi@0 1310
aoqi@0 1311
aoqi@0 1312 bool ObjectMonitor::ExitSuspendEquivalent (JavaThread * jSelf) {
aoqi@0 1313 int Mode = Knob_FastHSSEC ;
aoqi@0 1314 if (Mode && !jSelf->is_external_suspend()) {
aoqi@0 1315 assert (jSelf->is_suspend_equivalent(), "invariant") ;
aoqi@0 1316 jSelf->clear_suspend_equivalent() ;
aoqi@0 1317 if (2 == Mode) OrderAccess::storeload() ;
aoqi@0 1318 if (!jSelf->is_external_suspend()) return false ;
aoqi@0 1319 // We raced a suspension -- fall thru into the slow path
aoqi@0 1320 TEVENT (ExitSuspendEquivalent - raced) ;
aoqi@0 1321 jSelf->set_suspend_equivalent() ;
aoqi@0 1322 }
aoqi@0 1323 return jSelf->handle_special_suspend_equivalent_condition() ;
aoqi@0 1324 }
aoqi@0 1325
aoqi@0 1326
aoqi@0 1327 void ObjectMonitor::ExitEpilog (Thread * Self, ObjectWaiter * Wakee) {
aoqi@0 1328 assert (_owner == Self, "invariant") ;
aoqi@0 1329
aoqi@0 1330 // Exit protocol:
aoqi@0 1331 // 1. ST _succ = wakee
aoqi@0 1332 // 2. membar #loadstore|#storestore;
aoqi@0 1333 // 2. ST _owner = NULL
aoqi@0 1334 // 3. unpark(wakee)
aoqi@0 1335
aoqi@0 1336 _succ = Knob_SuccEnabled ? Wakee->_thread : NULL ;
aoqi@0 1337 ParkEvent * Trigger = Wakee->_event ;
aoqi@0 1338
aoqi@0 1339 // Hygiene -- once we've set _owner = NULL we can't safely dereference Wakee again.
aoqi@0 1340 // The thread associated with Wakee may have grabbed the lock and "Wakee" may be
aoqi@0 1341 // out-of-scope (non-extant).
aoqi@0 1342 Wakee = NULL ;
aoqi@0 1343
aoqi@0 1344 // Drop the lock
aoqi@0 1345 OrderAccess::release_store_ptr (&_owner, NULL) ;
aoqi@0 1346 OrderAccess::fence() ; // ST _owner vs LD in unpark()
aoqi@0 1347
aoqi@0 1348 if (SafepointSynchronize::do_call_back()) {
aoqi@0 1349 TEVENT (unpark before SAFEPOINT) ;
aoqi@0 1350 }
aoqi@0 1351
aoqi@0 1352 DTRACE_MONITOR_PROBE(contended__exit, this, object(), Self);
aoqi@0 1353 Trigger->unpark() ;
aoqi@0 1354
aoqi@0 1355 // Maintain stats and report events to JVMTI
aoqi@0 1356 if (ObjectMonitor::_sync_Parks != NULL) {
aoqi@0 1357 ObjectMonitor::_sync_Parks->inc() ;
aoqi@0 1358 }
aoqi@0 1359 }
aoqi@0 1360
aoqi@0 1361
aoqi@0 1362 // -----------------------------------------------------------------------------
aoqi@0 1363 // Class Loader deadlock handling.
aoqi@0 1364 //
aoqi@0 1365 // complete_exit exits a lock returning recursion count
aoqi@0 1366 // complete_exit/reenter operate as a wait without waiting
aoqi@0 1367 // complete_exit requires an inflated monitor
aoqi@0 1368 // The _owner field is not always the Thread addr even with an
aoqi@0 1369 // inflated monitor, e.g. the monitor can be inflated by a non-owning
aoqi@0 1370 // thread due to contention.
aoqi@0 1371 intptr_t ObjectMonitor::complete_exit(TRAPS) {
aoqi@0 1372 Thread * const Self = THREAD;
aoqi@0 1373 assert(Self->is_Java_thread(), "Must be Java thread!");
aoqi@0 1374 JavaThread *jt = (JavaThread *)THREAD;
aoqi@0 1375
aoqi@0 1376 DeferredInitialize();
aoqi@0 1377
aoqi@0 1378 if (THREAD != _owner) {
aoqi@0 1379 if (THREAD->is_lock_owned ((address)_owner)) {
aoqi@0 1380 assert(_recursions == 0, "internal state error");
aoqi@0 1381 _owner = THREAD ; /* Convert from basiclock addr to Thread addr */
aoqi@0 1382 _recursions = 0 ;
aoqi@0 1383 OwnerIsThread = 1 ;
aoqi@0 1384 }
aoqi@0 1385 }
aoqi@0 1386
aoqi@0 1387 guarantee(Self == _owner, "complete_exit not owner");
aoqi@0 1388 intptr_t save = _recursions; // record the old recursion count
aoqi@0 1389 _recursions = 0; // set the recursion level to be 0
aoqi@0 1390 exit (true, Self) ; // exit the monitor
aoqi@0 1391 guarantee (_owner != Self, "invariant");
aoqi@0 1392 return save;
aoqi@0 1393 }
aoqi@0 1394
aoqi@0 1395 // reenter() enters a lock and sets recursion count
aoqi@0 1396 // complete_exit/reenter operate as a wait without waiting
aoqi@0 1397 void ObjectMonitor::reenter(intptr_t recursions, TRAPS) {
aoqi@0 1398 Thread * const Self = THREAD;
aoqi@0 1399 assert(Self->is_Java_thread(), "Must be Java thread!");
aoqi@0 1400 JavaThread *jt = (JavaThread *)THREAD;
aoqi@0 1401
aoqi@0 1402 guarantee(_owner != Self, "reenter already owner");
aoqi@0 1403 enter (THREAD); // enter the monitor
aoqi@0 1404 guarantee (_recursions == 0, "reenter recursion");
aoqi@0 1405 _recursions = recursions;
aoqi@0 1406 return;
aoqi@0 1407 }
aoqi@0 1408
aoqi@0 1409
aoqi@0 1410 // -----------------------------------------------------------------------------
aoqi@0 1411 // A macro is used below because there may already be a pending
aoqi@0 1412 // exception which should not abort the execution of the routines
aoqi@0 1413 // which use this (which is why we don't put this into check_slow and
aoqi@0 1414 // call it with a CHECK argument).
aoqi@0 1415
aoqi@0 1416 #define CHECK_OWNER() \
aoqi@0 1417 do { \
aoqi@0 1418 if (THREAD != _owner) { \
aoqi@0 1419 if (THREAD->is_lock_owned((address) _owner)) { \
aoqi@0 1420 _owner = THREAD ; /* Convert from basiclock addr to Thread addr */ \
aoqi@0 1421 _recursions = 0; \
aoqi@0 1422 OwnerIsThread = 1 ; \
aoqi@0 1423 } else { \
aoqi@0 1424 TEVENT (Throw IMSX) ; \
aoqi@0 1425 THROW(vmSymbols::java_lang_IllegalMonitorStateException()); \
aoqi@0 1426 } \
aoqi@0 1427 } \
aoqi@0 1428 } while (false)
aoqi@0 1429
aoqi@0 1430 // check_slow() is a misnomer. It's called to simply to throw an IMSX exception.
aoqi@0 1431 // TODO-FIXME: remove check_slow() -- it's likely dead.
aoqi@0 1432
aoqi@0 1433 void ObjectMonitor::check_slow(TRAPS) {
aoqi@0 1434 TEVENT (check_slow - throw IMSX) ;
aoqi@0 1435 assert(THREAD != _owner && !THREAD->is_lock_owned((address) _owner), "must not be owner");
aoqi@0 1436 THROW_MSG(vmSymbols::java_lang_IllegalMonitorStateException(), "current thread not owner");
aoqi@0 1437 }
aoqi@0 1438
aoqi@0 1439 static int Adjust (volatile int * adr, int dx) {
aoqi@0 1440 int v ;
aoqi@0 1441 for (v = *adr ; Atomic::cmpxchg (v + dx, adr, v) != v; v = *adr) ;
aoqi@0 1442 return v ;
aoqi@0 1443 }
aoqi@0 1444
aoqi@0 1445 // helper method for posting a monitor wait event
aoqi@0 1446 void ObjectMonitor::post_monitor_wait_event(EventJavaMonitorWait* event,
aoqi@0 1447 jlong notifier_tid,
aoqi@0 1448 jlong timeout,
aoqi@0 1449 bool timedout) {
aoqi@0 1450 event->set_klass(((oop)this->object())->klass());
aoqi@0 1451 event->set_timeout((TYPE_ULONG)timeout);
aoqi@0 1452 event->set_address((TYPE_ADDRESS)(uintptr_t)(this->object_addr()));
aoqi@0 1453 event->set_notifier((TYPE_OSTHREAD)notifier_tid);
aoqi@0 1454 event->set_timedOut((TYPE_BOOLEAN)timedout);
aoqi@0 1455 event->commit();
aoqi@0 1456 }
aoqi@0 1457
aoqi@0 1458 // -----------------------------------------------------------------------------
aoqi@0 1459 // Wait/Notify/NotifyAll
aoqi@0 1460 //
aoqi@0 1461 // Note: a subset of changes to ObjectMonitor::wait()
aoqi@0 1462 // will need to be replicated in complete_exit above
aoqi@0 1463 void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
aoqi@0 1464 Thread * const Self = THREAD ;
aoqi@0 1465 assert(Self->is_Java_thread(), "Must be Java thread!");
aoqi@0 1466 JavaThread *jt = (JavaThread *)THREAD;
aoqi@0 1467
aoqi@0 1468 DeferredInitialize () ;
aoqi@0 1469
aoqi@0 1470 // Throw IMSX or IEX.
aoqi@0 1471 CHECK_OWNER();
aoqi@0 1472
aoqi@0 1473 EventJavaMonitorWait event;
aoqi@0 1474
aoqi@0 1475 // check for a pending interrupt
aoqi@0 1476 if (interruptible && Thread::is_interrupted(Self, true) && !HAS_PENDING_EXCEPTION) {
aoqi@0 1477 // post monitor waited event. Note that this is past-tense, we are done waiting.
aoqi@0 1478 if (JvmtiExport::should_post_monitor_waited()) {
aoqi@0 1479 // Note: 'false' parameter is passed here because the
aoqi@0 1480 // wait was not timed out due to thread interrupt.
aoqi@0 1481 JvmtiExport::post_monitor_waited(jt, this, false);
aoqi@0 1482
aoqi@0 1483 // In this short circuit of the monitor wait protocol, the
aoqi@0 1484 // current thread never drops ownership of the monitor and
aoqi@0 1485 // never gets added to the wait queue so the current thread
aoqi@0 1486 // cannot be made the successor. This means that the
aoqi@0 1487 // JVMTI_EVENT_MONITOR_WAITED event handler cannot accidentally
aoqi@0 1488 // consume an unpark() meant for the ParkEvent associated with
aoqi@0 1489 // this ObjectMonitor.
aoqi@0 1490 }
aoqi@0 1491 if (event.should_commit()) {
aoqi@0 1492 post_monitor_wait_event(&event, 0, millis, false);
aoqi@0 1493 }
aoqi@0 1494 TEVENT (Wait - Throw IEX) ;
aoqi@0 1495 THROW(vmSymbols::java_lang_InterruptedException());
aoqi@0 1496 return ;
aoqi@0 1497 }
aoqi@0 1498
aoqi@0 1499 TEVENT (Wait) ;
aoqi@0 1500
aoqi@0 1501 assert (Self->_Stalled == 0, "invariant") ;
aoqi@0 1502 Self->_Stalled = intptr_t(this) ;
aoqi@0 1503 jt->set_current_waiting_monitor(this);
aoqi@0 1504
aoqi@0 1505 // create a node to be put into the queue
aoqi@0 1506 // Critically, after we reset() the event but prior to park(), we must check
aoqi@0 1507 // for a pending interrupt.
aoqi@0 1508 ObjectWaiter node(Self);
aoqi@0 1509 node.TState = ObjectWaiter::TS_WAIT ;
aoqi@0 1510 Self->_ParkEvent->reset() ;
aoqi@0 1511 OrderAccess::fence(); // ST into Event; membar ; LD interrupted-flag
aoqi@0 1512
aoqi@0 1513 // Enter the waiting queue, which is a circular doubly linked list in this case
aoqi@0 1514 // but it could be a priority queue or any data structure.
aoqi@0 1515 // _WaitSetLock protects the wait queue. Normally the wait queue is accessed only
aoqi@0 1516 // by the the owner of the monitor *except* in the case where park()
aoqi@0 1517 // returns because of a timeout of interrupt. Contention is exceptionally rare
aoqi@0 1518 // so we use a simple spin-lock instead of a heavier-weight blocking lock.
aoqi@0 1519
aoqi@0 1520 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - add") ;
aoqi@0 1521 AddWaiter (&node) ;
aoqi@0 1522 Thread::SpinRelease (&_WaitSetLock) ;
aoqi@0 1523
aoqi@0 1524 if ((SyncFlags & 4) == 0) {
aoqi@0 1525 _Responsible = NULL ;
aoqi@0 1526 }
aoqi@0 1527 intptr_t save = _recursions; // record the old recursion count
aoqi@0 1528 _waiters++; // increment the number of waiters
aoqi@0 1529 _recursions = 0; // set the recursion level to be 1
aoqi@0 1530 exit (true, Self) ; // exit the monitor
aoqi@0 1531 guarantee (_owner != Self, "invariant") ;
aoqi@0 1532
aoqi@0 1533 // The thread is on the WaitSet list - now park() it.
aoqi@0 1534 // On MP systems it's conceivable that a brief spin before we park
aoqi@0 1535 // could be profitable.
aoqi@0 1536 //
aoqi@0 1537 // TODO-FIXME: change the following logic to a loop of the form
aoqi@0 1538 // while (!timeout && !interrupted && _notified == 0) park()
aoqi@0 1539
aoqi@0 1540 int ret = OS_OK ;
aoqi@0 1541 int WasNotified = 0 ;
aoqi@0 1542 { // State transition wrappers
aoqi@0 1543 OSThread* osthread = Self->osthread();
aoqi@0 1544 OSThreadWaitState osts(osthread, true);
aoqi@0 1545 {
aoqi@0 1546 ThreadBlockInVM tbivm(jt);
aoqi@0 1547 // Thread is in thread_blocked state and oop access is unsafe.
aoqi@0 1548 jt->set_suspend_equivalent();
aoqi@0 1549
aoqi@0 1550 if (interruptible && (Thread::is_interrupted(THREAD, false) || HAS_PENDING_EXCEPTION)) {
aoqi@0 1551 // Intentionally empty
aoqi@0 1552 } else
aoqi@0 1553 if (node._notified == 0) {
aoqi@0 1554 if (millis <= 0) {
aoqi@0 1555 Self->_ParkEvent->park () ;
aoqi@0 1556 } else {
aoqi@0 1557 ret = Self->_ParkEvent->park (millis) ;
aoqi@0 1558 }
aoqi@0 1559 }
aoqi@0 1560
aoqi@0 1561 // were we externally suspended while we were waiting?
aoqi@0 1562 if (ExitSuspendEquivalent (jt)) {
aoqi@0 1563 // TODO-FIXME: add -- if succ == Self then succ = null.
aoqi@0 1564 jt->java_suspend_self();
aoqi@0 1565 }
aoqi@0 1566
aoqi@0 1567 } // Exit thread safepoint: transition _thread_blocked -> _thread_in_vm
aoqi@0 1568
aoqi@0 1569
aoqi@0 1570 // Node may be on the WaitSet, the EntryList (or cxq), or in transition
aoqi@0 1571 // from the WaitSet to the EntryList.
aoqi@0 1572 // See if we need to remove Node from the WaitSet.
aoqi@0 1573 // We use double-checked locking to avoid grabbing _WaitSetLock
aoqi@0 1574 // if the thread is not on the wait queue.
aoqi@0 1575 //
aoqi@0 1576 // Note that we don't need a fence before the fetch of TState.
aoqi@0 1577 // In the worst case we'll fetch a old-stale value of TS_WAIT previously
aoqi@0 1578 // written by the is thread. (perhaps the fetch might even be satisfied
aoqi@0 1579 // by a look-aside into the processor's own store buffer, although given
aoqi@0 1580 // the length of the code path between the prior ST and this load that's
aoqi@0 1581 // highly unlikely). If the following LD fetches a stale TS_WAIT value
aoqi@0 1582 // then we'll acquire the lock and then re-fetch a fresh TState value.
aoqi@0 1583 // That is, we fail toward safety.
aoqi@0 1584
aoqi@0 1585 if (node.TState == ObjectWaiter::TS_WAIT) {
aoqi@0 1586 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - unlink") ;
aoqi@0 1587 if (node.TState == ObjectWaiter::TS_WAIT) {
aoqi@0 1588 DequeueSpecificWaiter (&node) ; // unlink from WaitSet
aoqi@0 1589 assert(node._notified == 0, "invariant");
aoqi@0 1590 node.TState = ObjectWaiter::TS_RUN ;
aoqi@0 1591 }
aoqi@0 1592 Thread::SpinRelease (&_WaitSetLock) ;
aoqi@0 1593 }
aoqi@0 1594
aoqi@0 1595 // The thread is now either on off-list (TS_RUN),
aoqi@0 1596 // on the EntryList (TS_ENTER), or on the cxq (TS_CXQ).
aoqi@0 1597 // The Node's TState variable is stable from the perspective of this thread.
aoqi@0 1598 // No other threads will asynchronously modify TState.
aoqi@0 1599 guarantee (node.TState != ObjectWaiter::TS_WAIT, "invariant") ;
aoqi@0 1600 OrderAccess::loadload() ;
aoqi@0 1601 if (_succ == Self) _succ = NULL ;
aoqi@0 1602 WasNotified = node._notified ;
aoqi@0 1603
aoqi@0 1604 // Reentry phase -- reacquire the monitor.
aoqi@0 1605 // re-enter contended monitor after object.wait().
aoqi@0 1606 // retain OBJECT_WAIT state until re-enter successfully completes
aoqi@0 1607 // Thread state is thread_in_vm and oop access is again safe,
aoqi@0 1608 // although the raw address of the object may have changed.
aoqi@0 1609 // (Don't cache naked oops over safepoints, of course).
aoqi@0 1610
aoqi@0 1611 // post monitor waited event. Note that this is past-tense, we are done waiting.
aoqi@0 1612 if (JvmtiExport::should_post_monitor_waited()) {
aoqi@0 1613 JvmtiExport::post_monitor_waited(jt, this, ret == OS_TIMEOUT);
aoqi@0 1614
aoqi@0 1615 if (node._notified != 0 && _succ == Self) {
aoqi@0 1616 // In this part of the monitor wait-notify-reenter protocol it
aoqi@0 1617 // is possible (and normal) for another thread to do a fastpath
aoqi@0 1618 // monitor enter-exit while this thread is still trying to get
aoqi@0 1619 // to the reenter portion of the protocol.
aoqi@0 1620 //
aoqi@0 1621 // The ObjectMonitor was notified and the current thread is
aoqi@0 1622 // the successor which also means that an unpark() has already
aoqi@0 1623 // been done. The JVMTI_EVENT_MONITOR_WAITED event handler can
aoqi@0 1624 // consume the unpark() that was done when the successor was
aoqi@0 1625 // set because the same ParkEvent is shared between Java
aoqi@0 1626 // monitors and JVM/TI RawMonitors (for now).
aoqi@0 1627 //
aoqi@0 1628 // We redo the unpark() to ensure forward progress, i.e., we
aoqi@0 1629 // don't want all pending threads hanging (parked) with none
aoqi@0 1630 // entering the unlocked monitor.
aoqi@0 1631 node._event->unpark();
aoqi@0 1632 }
aoqi@0 1633 }
aoqi@0 1634
aoqi@0 1635 if (event.should_commit()) {
aoqi@0 1636 post_monitor_wait_event(&event, node._notifier_tid, millis, ret == OS_TIMEOUT);
aoqi@0 1637 }
aoqi@0 1638
aoqi@0 1639 OrderAccess::fence() ;
aoqi@0 1640
aoqi@0 1641 assert (Self->_Stalled != 0, "invariant") ;
aoqi@0 1642 Self->_Stalled = 0 ;
aoqi@0 1643
aoqi@0 1644 assert (_owner != Self, "invariant") ;
aoqi@0 1645 ObjectWaiter::TStates v = node.TState ;
aoqi@0 1646 if (v == ObjectWaiter::TS_RUN) {
aoqi@0 1647 enter (Self) ;
aoqi@0 1648 } else {
aoqi@0 1649 guarantee (v == ObjectWaiter::TS_ENTER || v == ObjectWaiter::TS_CXQ, "invariant") ;
aoqi@0 1650 ReenterI (Self, &node) ;
aoqi@0 1651 node.wait_reenter_end(this);
aoqi@0 1652 }
aoqi@0 1653
aoqi@0 1654 // Self has reacquired the lock.
aoqi@0 1655 // Lifecycle - the node representing Self must not appear on any queues.
aoqi@0 1656 // Node is about to go out-of-scope, but even if it were immortal we wouldn't
aoqi@0 1657 // want residual elements associated with this thread left on any lists.
aoqi@0 1658 guarantee (node.TState == ObjectWaiter::TS_RUN, "invariant") ;
aoqi@0 1659 assert (_owner == Self, "invariant") ;
aoqi@0 1660 assert (_succ != Self , "invariant") ;
aoqi@0 1661 } // OSThreadWaitState()
aoqi@0 1662
aoqi@0 1663 jt->set_current_waiting_monitor(NULL);
aoqi@0 1664
aoqi@0 1665 guarantee (_recursions == 0, "invariant") ;
aoqi@0 1666 _recursions = save; // restore the old recursion count
aoqi@0 1667 _waiters--; // decrement the number of waiters
aoqi@0 1668
aoqi@0 1669 // Verify a few postconditions
aoqi@0 1670 assert (_owner == Self , "invariant") ;
aoqi@0 1671 assert (_succ != Self , "invariant") ;
aoqi@0 1672 assert (((oop)(object()))->mark() == markOopDesc::encode(this), "invariant") ;
aoqi@0 1673
aoqi@0 1674 if (SyncFlags & 32) {
aoqi@0 1675 OrderAccess::fence() ;
aoqi@0 1676 }
aoqi@0 1677
aoqi@0 1678 // check if the notification happened
aoqi@0 1679 if (!WasNotified) {
aoqi@0 1680 // no, it could be timeout or Thread.interrupt() or both
aoqi@0 1681 // check for interrupt event, otherwise it is timeout
aoqi@0 1682 if (interruptible && Thread::is_interrupted(Self, true) && !HAS_PENDING_EXCEPTION) {
aoqi@0 1683 TEVENT (Wait - throw IEX from epilog) ;
aoqi@0 1684 THROW(vmSymbols::java_lang_InterruptedException());
aoqi@0 1685 }
aoqi@0 1686 }
aoqi@0 1687
aoqi@0 1688 // NOTE: Spurious wake up will be consider as timeout.
aoqi@0 1689 // Monitor notify has precedence over thread interrupt.
aoqi@0 1690 }
aoqi@0 1691
aoqi@0 1692
aoqi@0 1693 // Consider:
aoqi@0 1694 // If the lock is cool (cxq == null && succ == null) and we're on an MP system
aoqi@0 1695 // then instead of transferring a thread from the WaitSet to the EntryList
aoqi@0 1696 // we might just dequeue a thread from the WaitSet and directly unpark() it.
aoqi@0 1697
aoqi@0 1698 void ObjectMonitor::notify(TRAPS) {
aoqi@0 1699 CHECK_OWNER();
aoqi@0 1700 if (_WaitSet == NULL) {
aoqi@0 1701 TEVENT (Empty-Notify) ;
aoqi@0 1702 return ;
aoqi@0 1703 }
aoqi@0 1704 DTRACE_MONITOR_PROBE(notify, this, object(), THREAD);
aoqi@0 1705
aoqi@0 1706 int Policy = Knob_MoveNotifyee ;
aoqi@0 1707
aoqi@0 1708 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - notify") ;
aoqi@0 1709 ObjectWaiter * iterator = DequeueWaiter() ;
aoqi@0 1710 if (iterator != NULL) {
aoqi@0 1711 TEVENT (Notify1 - Transfer) ;
aoqi@0 1712 guarantee (iterator->TState == ObjectWaiter::TS_WAIT, "invariant") ;
aoqi@0 1713 guarantee (iterator->_notified == 0, "invariant") ;
aoqi@0 1714 if (Policy != 4) {
aoqi@0 1715 iterator->TState = ObjectWaiter::TS_ENTER ;
aoqi@0 1716 }
aoqi@0 1717 iterator->_notified = 1 ;
aoqi@0 1718 Thread * Self = THREAD;
aoqi@0 1719 iterator->_notifier_tid = Self->osthread()->thread_id();
aoqi@0 1720
aoqi@0 1721 ObjectWaiter * List = _EntryList ;
aoqi@0 1722 if (List != NULL) {
aoqi@0 1723 assert (List->_prev == NULL, "invariant") ;
aoqi@0 1724 assert (List->TState == ObjectWaiter::TS_ENTER, "invariant") ;
aoqi@0 1725 assert (List != iterator, "invariant") ;
aoqi@0 1726 }
aoqi@0 1727
aoqi@0 1728 if (Policy == 0) { // prepend to EntryList
aoqi@0 1729 if (List == NULL) {
aoqi@0 1730 iterator->_next = iterator->_prev = NULL ;
aoqi@0 1731 _EntryList = iterator ;
aoqi@0 1732 } else {
aoqi@0 1733 List->_prev = iterator ;
aoqi@0 1734 iterator->_next = List ;
aoqi@0 1735 iterator->_prev = NULL ;
aoqi@0 1736 _EntryList = iterator ;
aoqi@0 1737 }
aoqi@0 1738 } else
aoqi@0 1739 if (Policy == 1) { // append to EntryList
aoqi@0 1740 if (List == NULL) {
aoqi@0 1741 iterator->_next = iterator->_prev = NULL ;
aoqi@0 1742 _EntryList = iterator ;
aoqi@0 1743 } else {
aoqi@0 1744 // CONSIDER: finding the tail currently requires a linear-time walk of
aoqi@0 1745 // the EntryList. We can make tail access constant-time by converting to
aoqi@0 1746 // a CDLL instead of using our current DLL.
aoqi@0 1747 ObjectWaiter * Tail ;
aoqi@0 1748 for (Tail = List ; Tail->_next != NULL ; Tail = Tail->_next) ;
aoqi@0 1749 assert (Tail != NULL && Tail->_next == NULL, "invariant") ;
aoqi@0 1750 Tail->_next = iterator ;
aoqi@0 1751 iterator->_prev = Tail ;
aoqi@0 1752 iterator->_next = NULL ;
aoqi@0 1753 }
aoqi@0 1754 } else
aoqi@0 1755 if (Policy == 2) { // prepend to cxq
aoqi@0 1756 // prepend to cxq
aoqi@0 1757 if (List == NULL) {
aoqi@0 1758 iterator->_next = iterator->_prev = NULL ;
aoqi@0 1759 _EntryList = iterator ;
aoqi@0 1760 } else {
aoqi@0 1761 iterator->TState = ObjectWaiter::TS_CXQ ;
aoqi@0 1762 for (;;) {
aoqi@0 1763 ObjectWaiter * Front = _cxq ;
aoqi@0 1764 iterator->_next = Front ;
aoqi@0 1765 if (Atomic::cmpxchg_ptr (iterator, &_cxq, Front) == Front) {
aoqi@0 1766 break ;
aoqi@0 1767 }
aoqi@0 1768 }
aoqi@0 1769 }
aoqi@0 1770 } else
aoqi@0 1771 if (Policy == 3) { // append to cxq
aoqi@0 1772 iterator->TState = ObjectWaiter::TS_CXQ ;
aoqi@0 1773 for (;;) {
aoqi@0 1774 ObjectWaiter * Tail ;
aoqi@0 1775 Tail = _cxq ;
aoqi@0 1776 if (Tail == NULL) {
aoqi@0 1777 iterator->_next = NULL ;
aoqi@0 1778 if (Atomic::cmpxchg_ptr (iterator, &_cxq, NULL) == NULL) {
aoqi@0 1779 break ;
aoqi@0 1780 }
aoqi@0 1781 } else {
aoqi@0 1782 while (Tail->_next != NULL) Tail = Tail->_next ;
aoqi@0 1783 Tail->_next = iterator ;
aoqi@0 1784 iterator->_prev = Tail ;
aoqi@0 1785 iterator->_next = NULL ;
aoqi@0 1786 break ;
aoqi@0 1787 }
aoqi@0 1788 }
aoqi@0 1789 } else {
aoqi@0 1790 ParkEvent * ev = iterator->_event ;
aoqi@0 1791 iterator->TState = ObjectWaiter::TS_RUN ;
aoqi@0 1792 OrderAccess::fence() ;
aoqi@0 1793 ev->unpark() ;
aoqi@0 1794 }
aoqi@0 1795
aoqi@0 1796 if (Policy < 4) {
aoqi@0 1797 iterator->wait_reenter_begin(this);
aoqi@0 1798 }
aoqi@0 1799
aoqi@0 1800 // _WaitSetLock protects the wait queue, not the EntryList. We could
aoqi@0 1801 // move the add-to-EntryList operation, above, outside the critical section
aoqi@0 1802 // protected by _WaitSetLock. In practice that's not useful. With the
aoqi@0 1803 // exception of wait() timeouts and interrupts the monitor owner
aoqi@0 1804 // is the only thread that grabs _WaitSetLock. There's almost no contention
aoqi@0 1805 // on _WaitSetLock so it's not profitable to reduce the length of the
aoqi@0 1806 // critical section.
aoqi@0 1807 }
aoqi@0 1808
aoqi@0 1809 Thread::SpinRelease (&_WaitSetLock) ;
aoqi@0 1810
aoqi@0 1811 if (iterator != NULL && ObjectMonitor::_sync_Notifications != NULL) {
aoqi@0 1812 ObjectMonitor::_sync_Notifications->inc() ;
aoqi@0 1813 }
aoqi@0 1814 }
aoqi@0 1815
aoqi@0 1816
aoqi@0 1817 void ObjectMonitor::notifyAll(TRAPS) {
aoqi@0 1818 CHECK_OWNER();
aoqi@0 1819 ObjectWaiter* iterator;
aoqi@0 1820 if (_WaitSet == NULL) {
aoqi@0 1821 TEVENT (Empty-NotifyAll) ;
aoqi@0 1822 return ;
aoqi@0 1823 }
aoqi@0 1824 DTRACE_MONITOR_PROBE(notifyAll, this, object(), THREAD);
aoqi@0 1825
aoqi@0 1826 int Policy = Knob_MoveNotifyee ;
aoqi@0 1827 int Tally = 0 ;
aoqi@0 1828 Thread::SpinAcquire (&_WaitSetLock, "WaitSet - notifyall") ;
aoqi@0 1829
aoqi@0 1830 for (;;) {
aoqi@0 1831 iterator = DequeueWaiter () ;
aoqi@0 1832 if (iterator == NULL) break ;
aoqi@0 1833 TEVENT (NotifyAll - Transfer1) ;
aoqi@0 1834 ++Tally ;
aoqi@0 1835
aoqi@0 1836 // Disposition - what might we do with iterator ?
aoqi@0 1837 // a. add it directly to the EntryList - either tail or head.
aoqi@0 1838 // b. push it onto the front of the _cxq.
aoqi@0 1839 // For now we use (a).
aoqi@0 1840
aoqi@0 1841 guarantee (iterator->TState == ObjectWaiter::TS_WAIT, "invariant") ;
aoqi@0 1842 guarantee (iterator->_notified == 0, "invariant") ;
aoqi@0 1843 iterator->_notified = 1 ;
aoqi@0 1844 Thread * Self = THREAD;
aoqi@0 1845 iterator->_notifier_tid = Self->osthread()->thread_id();
aoqi@0 1846 if (Policy != 4) {
aoqi@0 1847 iterator->TState = ObjectWaiter::TS_ENTER ;
aoqi@0 1848 }
aoqi@0 1849
aoqi@0 1850 ObjectWaiter * List = _EntryList ;
aoqi@0 1851 if (List != NULL) {
aoqi@0 1852 assert (List->_prev == NULL, "invariant") ;
aoqi@0 1853 assert (List->TState == ObjectWaiter::TS_ENTER, "invariant") ;
aoqi@0 1854 assert (List != iterator, "invariant") ;
aoqi@0 1855 }
aoqi@0 1856
aoqi@0 1857 if (Policy == 0) { // prepend to EntryList
aoqi@0 1858 if (List == NULL) {
aoqi@0 1859 iterator->_next = iterator->_prev = NULL ;
aoqi@0 1860 _EntryList = iterator ;
aoqi@0 1861 } else {
aoqi@0 1862 List->_prev = iterator ;
aoqi@0 1863 iterator->_next = List ;
aoqi@0 1864 iterator->_prev = NULL ;
aoqi@0 1865 _EntryList = iterator ;
aoqi@0 1866 }
aoqi@0 1867 } else
aoqi@0 1868 if (Policy == 1) { // append to EntryList
aoqi@0 1869 if (List == NULL) {
aoqi@0 1870 iterator->_next = iterator->_prev = NULL ;
aoqi@0 1871 _EntryList = iterator ;
aoqi@0 1872 } else {
aoqi@0 1873 // CONSIDER: finding the tail currently requires a linear-time walk of
aoqi@0 1874 // the EntryList. We can make tail access constant-time by converting to
aoqi@0 1875 // a CDLL instead of using our current DLL.
aoqi@0 1876 ObjectWaiter * Tail ;
aoqi@0 1877 for (Tail = List ; Tail->_next != NULL ; Tail = Tail->_next) ;
aoqi@0 1878 assert (Tail != NULL && Tail->_next == NULL, "invariant") ;
aoqi@0 1879 Tail->_next = iterator ;
aoqi@0 1880 iterator->_prev = Tail ;
aoqi@0 1881 iterator->_next = NULL ;
aoqi@0 1882 }
aoqi@0 1883 } else
aoqi@0 1884 if (Policy == 2) { // prepend to cxq
aoqi@0 1885 // prepend to cxq
aoqi@0 1886 iterator->TState = ObjectWaiter::TS_CXQ ;
aoqi@0 1887 for (;;) {
aoqi@0 1888 ObjectWaiter * Front = _cxq ;
aoqi@0 1889 iterator->_next = Front ;
aoqi@0 1890 if (Atomic::cmpxchg_ptr (iterator, &_cxq, Front) == Front) {
aoqi@0 1891 break ;
aoqi@0 1892 }
aoqi@0 1893 }
aoqi@0 1894 } else
aoqi@0 1895 if (Policy == 3) { // append to cxq
aoqi@0 1896 iterator->TState = ObjectWaiter::TS_CXQ ;
aoqi@0 1897 for (;;) {
aoqi@0 1898 ObjectWaiter * Tail ;
aoqi@0 1899 Tail = _cxq ;
aoqi@0 1900 if (Tail == NULL) {
aoqi@0 1901 iterator->_next = NULL ;
aoqi@0 1902 if (Atomic::cmpxchg_ptr (iterator, &_cxq, NULL) == NULL) {
aoqi@0 1903 break ;
aoqi@0 1904 }
aoqi@0 1905 } else {
aoqi@0 1906 while (Tail->_next != NULL) Tail = Tail->_next ;
aoqi@0 1907 Tail->_next = iterator ;
aoqi@0 1908 iterator->_prev = Tail ;
aoqi@0 1909 iterator->_next = NULL ;
aoqi@0 1910 break ;
aoqi@0 1911 }
aoqi@0 1912 }
aoqi@0 1913 } else {
aoqi@0 1914 ParkEvent * ev = iterator->_event ;
aoqi@0 1915 iterator->TState = ObjectWaiter::TS_RUN ;
aoqi@0 1916 OrderAccess::fence() ;
aoqi@0 1917 ev->unpark() ;
aoqi@0 1918 }
aoqi@0 1919
aoqi@0 1920 if (Policy < 4) {
aoqi@0 1921 iterator->wait_reenter_begin(this);
aoqi@0 1922 }
aoqi@0 1923
aoqi@0 1924 // _WaitSetLock protects the wait queue, not the EntryList. We could
aoqi@0 1925 // move the add-to-EntryList operation, above, outside the critical section
aoqi@0 1926 // protected by _WaitSetLock. In practice that's not useful. With the
aoqi@0 1927 // exception of wait() timeouts and interrupts the monitor owner
aoqi@0 1928 // is the only thread that grabs _WaitSetLock. There's almost no contention
aoqi@0 1929 // on _WaitSetLock so it's not profitable to reduce the length of the
aoqi@0 1930 // critical section.
aoqi@0 1931 }
aoqi@0 1932
aoqi@0 1933 Thread::SpinRelease (&_WaitSetLock) ;
aoqi@0 1934
aoqi@0 1935 if (Tally != 0 && ObjectMonitor::_sync_Notifications != NULL) {
aoqi@0 1936 ObjectMonitor::_sync_Notifications->inc(Tally) ;
aoqi@0 1937 }
aoqi@0 1938 }
aoqi@0 1939
aoqi@0 1940 // -----------------------------------------------------------------------------
aoqi@0 1941 // Adaptive Spinning Support
aoqi@0 1942 //
aoqi@0 1943 // Adaptive spin-then-block - rational spinning
aoqi@0 1944 //
aoqi@0 1945 // Note that we spin "globally" on _owner with a classic SMP-polite TATAS
aoqi@0 1946 // algorithm. On high order SMP systems it would be better to start with
aoqi@0 1947 // a brief global spin and then revert to spinning locally. In the spirit of MCS/CLH,
aoqi@0 1948 // a contending thread could enqueue itself on the cxq and then spin locally
aoqi@0 1949 // on a thread-specific variable such as its ParkEvent._Event flag.
aoqi@0 1950 // That's left as an exercise for the reader. Note that global spinning is
aoqi@0 1951 // not problematic on Niagara, as the L2$ serves the interconnect and has both
aoqi@0 1952 // low latency and massive bandwidth.
aoqi@0 1953 //
aoqi@0 1954 // Broadly, we can fix the spin frequency -- that is, the % of contended lock
aoqi@0 1955 // acquisition attempts where we opt to spin -- at 100% and vary the spin count
aoqi@0 1956 // (duration) or we can fix the count at approximately the duration of
aoqi@0 1957 // a context switch and vary the frequency. Of course we could also
aoqi@0 1958 // vary both satisfying K == Frequency * Duration, where K is adaptive by monitor.
dbuck@8067 1959 // For a description of 'Adaptive spin-then-block mutual exclusion in
dbuck@8067 1960 // multi-threaded processing,' see U.S. Pat. No. 8046758.
aoqi@0 1961 //
aoqi@0 1962 // This implementation varies the duration "D", where D varies with
aoqi@0 1963 // the success rate of recent spin attempts. (D is capped at approximately
aoqi@0 1964 // length of a round-trip context switch). The success rate for recent
aoqi@0 1965 // spin attempts is a good predictor of the success rate of future spin
aoqi@0 1966 // attempts. The mechanism adapts automatically to varying critical
aoqi@0 1967 // section length (lock modality), system load and degree of parallelism.
aoqi@0 1968 // D is maintained per-monitor in _SpinDuration and is initialized
aoqi@0 1969 // optimistically. Spin frequency is fixed at 100%.
aoqi@0 1970 //
aoqi@0 1971 // Note that _SpinDuration is volatile, but we update it without locks
aoqi@0 1972 // or atomics. The code is designed so that _SpinDuration stays within
aoqi@0 1973 // a reasonable range even in the presence of races. The arithmetic
aoqi@0 1974 // operations on _SpinDuration are closed over the domain of legal values,
aoqi@0 1975 // so at worst a race will install and older but still legal value.
aoqi@0 1976 // At the very worst this introduces some apparent non-determinism.
aoqi@0 1977 // We might spin when we shouldn't or vice-versa, but since the spin
aoqi@0 1978 // count are relatively short, even in the worst case, the effect is harmless.
aoqi@0 1979 //
aoqi@0 1980 // Care must be taken that a low "D" value does not become an
aoqi@0 1981 // an absorbing state. Transient spinning failures -- when spinning
aoqi@0 1982 // is overall profitable -- should not cause the system to converge
aoqi@0 1983 // on low "D" values. We want spinning to be stable and predictable
aoqi@0 1984 // and fairly responsive to change and at the same time we don't want
aoqi@0 1985 // it to oscillate, become metastable, be "too" non-deterministic,
aoqi@0 1986 // or converge on or enter undesirable stable absorbing states.
aoqi@0 1987 //
aoqi@0 1988 // We implement a feedback-based control system -- using past behavior
aoqi@0 1989 // to predict future behavior. We face two issues: (a) if the
aoqi@0 1990 // input signal is random then the spin predictor won't provide optimal
aoqi@0 1991 // results, and (b) if the signal frequency is too high then the control
aoqi@0 1992 // system, which has some natural response lag, will "chase" the signal.
aoqi@0 1993 // (b) can arise from multimodal lock hold times. Transient preemption
aoqi@0 1994 // can also result in apparent bimodal lock hold times.
aoqi@0 1995 // Although sub-optimal, neither condition is particularly harmful, as
aoqi@0 1996 // in the worst-case we'll spin when we shouldn't or vice-versa.
aoqi@0 1997 // The maximum spin duration is rather short so the failure modes aren't bad.
aoqi@0 1998 // To be conservative, I've tuned the gain in system to bias toward
aoqi@0 1999 // _not spinning. Relatedly, the system can sometimes enter a mode where it
aoqi@0 2000 // "rings" or oscillates between spinning and not spinning. This happens
aoqi@0 2001 // when spinning is just on the cusp of profitability, however, so the
aoqi@0 2002 // situation is not dire. The state is benign -- there's no need to add
aoqi@0 2003 // hysteresis control to damp the transition rate between spinning and
aoqi@0 2004 // not spinning.
aoqi@0 2005 //
aoqi@0 2006
aoqi@0 2007 intptr_t ObjectMonitor::SpinCallbackArgument = 0 ;
aoqi@0 2008 int (*ObjectMonitor::SpinCallbackFunction)(intptr_t, int) = NULL ;
aoqi@0 2009
aoqi@0 2010 // Spinning: Fixed frequency (100%), vary duration
aoqi@0 2011
aoqi@0 2012
aoqi@0 2013 int ObjectMonitor::TrySpin_VaryDuration (Thread * Self) {
aoqi@0 2014
aoqi@0 2015 // Dumb, brutal spin. Good for comparative measurements against adaptive spinning.
aoqi@0 2016 int ctr = Knob_FixedSpin ;
aoqi@0 2017 if (ctr != 0) {
aoqi@0 2018 while (--ctr >= 0) {
aoqi@0 2019 if (TryLock (Self) > 0) return 1 ;
aoqi@0 2020 SpinPause () ;
aoqi@0 2021 }
aoqi@0 2022 return 0 ;
aoqi@0 2023 }
aoqi@0 2024
aoqi@0 2025 for (ctr = Knob_PreSpin + 1; --ctr >= 0 ; ) {
aoqi@0 2026 if (TryLock(Self) > 0) {
aoqi@0 2027 // Increase _SpinDuration ...
aoqi@0 2028 // Note that we don't clamp SpinDuration precisely at SpinLimit.
aoqi@0 2029 // Raising _SpurDuration to the poverty line is key.
aoqi@0 2030 int x = _SpinDuration ;
aoqi@0 2031 if (x < Knob_SpinLimit) {
aoqi@0 2032 if (x < Knob_Poverty) x = Knob_Poverty ;
aoqi@0 2033 _SpinDuration = x + Knob_BonusB ;
aoqi@0 2034 }
aoqi@0 2035 return 1 ;
aoqi@0 2036 }
aoqi@0 2037 SpinPause () ;
aoqi@0 2038 }
aoqi@0 2039
aoqi@0 2040 // Admission control - verify preconditions for spinning
aoqi@0 2041 //
aoqi@0 2042 // We always spin a little bit, just to prevent _SpinDuration == 0 from
aoqi@0 2043 // becoming an absorbing state. Put another way, we spin briefly to
aoqi@0 2044 // sample, just in case the system load, parallelism, contention, or lock
aoqi@0 2045 // modality changed.
aoqi@0 2046 //
aoqi@0 2047 // Consider the following alternative:
aoqi@0 2048 // Periodically set _SpinDuration = _SpinLimit and try a long/full
aoqi@0 2049 // spin attempt. "Periodically" might mean after a tally of
aoqi@0 2050 // the # of failed spin attempts (or iterations) reaches some threshold.
aoqi@0 2051 // This takes us into the realm of 1-out-of-N spinning, where we
aoqi@0 2052 // hold the duration constant but vary the frequency.
aoqi@0 2053
aoqi@0 2054 ctr = _SpinDuration ;
aoqi@0 2055 if (ctr < Knob_SpinBase) ctr = Knob_SpinBase ;
aoqi@0 2056 if (ctr <= 0) return 0 ;
aoqi@0 2057
aoqi@0 2058 if (Knob_SuccRestrict && _succ != NULL) return 0 ;
aoqi@0 2059 if (Knob_OState && NotRunnable (Self, (Thread *) _owner)) {
aoqi@0 2060 TEVENT (Spin abort - notrunnable [TOP]);
aoqi@0 2061 return 0 ;
aoqi@0 2062 }
aoqi@0 2063
aoqi@0 2064 int MaxSpin = Knob_MaxSpinners ;
aoqi@0 2065 if (MaxSpin >= 0) {
aoqi@0 2066 if (_Spinner > MaxSpin) {
aoqi@0 2067 TEVENT (Spin abort -- too many spinners) ;
aoqi@0 2068 return 0 ;
aoqi@0 2069 }
aoqi@0 2070 // Slighty racy, but benign ...
aoqi@0 2071 Adjust (&_Spinner, 1) ;
aoqi@0 2072 }
aoqi@0 2073
aoqi@0 2074 // We're good to spin ... spin ingress.
aoqi@0 2075 // CONSIDER: use Prefetch::write() to avoid RTS->RTO upgrades
aoqi@0 2076 // when preparing to LD...CAS _owner, etc and the CAS is likely
aoqi@0 2077 // to succeed.
aoqi@0 2078 int hits = 0 ;
aoqi@0 2079 int msk = 0 ;
aoqi@0 2080 int caspty = Knob_CASPenalty ;
aoqi@0 2081 int oxpty = Knob_OXPenalty ;
aoqi@0 2082 int sss = Knob_SpinSetSucc ;
aoqi@0 2083 if (sss && _succ == NULL ) _succ = Self ;
aoqi@0 2084 Thread * prv = NULL ;
aoqi@0 2085
aoqi@0 2086 // There are three ways to exit the following loop:
aoqi@0 2087 // 1. A successful spin where this thread has acquired the lock.
aoqi@0 2088 // 2. Spin failure with prejudice
aoqi@0 2089 // 3. Spin failure without prejudice
aoqi@0 2090
aoqi@0 2091 while (--ctr >= 0) {
aoqi@0 2092
aoqi@0 2093 // Periodic polling -- Check for pending GC
aoqi@0 2094 // Threads may spin while they're unsafe.
aoqi@0 2095 // We don't want spinning threads to delay the JVM from reaching
aoqi@0 2096 // a stop-the-world safepoint or to steal cycles from GC.
aoqi@0 2097 // If we detect a pending safepoint we abort in order that
aoqi@0 2098 // (a) this thread, if unsafe, doesn't delay the safepoint, and (b)
aoqi@0 2099 // this thread, if safe, doesn't steal cycles from GC.
aoqi@0 2100 // This is in keeping with the "no loitering in runtime" rule.
aoqi@0 2101 // We periodically check to see if there's a safepoint pending.
aoqi@0 2102 if ((ctr & 0xFF) == 0) {
aoqi@0 2103 if (SafepointSynchronize::do_call_back()) {
aoqi@0 2104 TEVENT (Spin: safepoint) ;
aoqi@0 2105 goto Abort ; // abrupt spin egress
aoqi@0 2106 }
aoqi@0 2107 if (Knob_UsePause & 1) SpinPause () ;
aoqi@0 2108
aoqi@0 2109 int (*scb)(intptr_t,int) = SpinCallbackFunction ;
aoqi@0 2110 if (hits > 50 && scb != NULL) {
aoqi@0 2111 int abend = (*scb)(SpinCallbackArgument, 0) ;
aoqi@0 2112 }
aoqi@0 2113 }
aoqi@0 2114
aoqi@0 2115 if (Knob_UsePause & 2) SpinPause() ;
aoqi@0 2116
aoqi@0 2117 // Exponential back-off ... Stay off the bus to reduce coherency traffic.
aoqi@0 2118 // This is useful on classic SMP systems, but is of less utility on
aoqi@0 2119 // N1-style CMT platforms.
aoqi@0 2120 //
aoqi@0 2121 // Trade-off: lock acquisition latency vs coherency bandwidth.
aoqi@0 2122 // Lock hold times are typically short. A histogram
aoqi@0 2123 // of successful spin attempts shows that we usually acquire
aoqi@0 2124 // the lock early in the spin. That suggests we want to
aoqi@0 2125 // sample _owner frequently in the early phase of the spin,
aoqi@0 2126 // but then back-off and sample less frequently as the spin
aoqi@0 2127 // progresses. The back-off makes a good citizen on SMP big
aoqi@0 2128 // SMP systems. Oversampling _owner can consume excessive
aoqi@0 2129 // coherency bandwidth. Relatedly, if we _oversample _owner we
aoqi@0 2130 // can inadvertently interfere with the the ST m->owner=null.
aoqi@0 2131 // executed by the lock owner.
aoqi@0 2132 if (ctr & msk) continue ;
aoqi@0 2133 ++hits ;
aoqi@0 2134 if ((hits & 0xF) == 0) {
aoqi@0 2135 // The 0xF, above, corresponds to the exponent.
aoqi@0 2136 // Consider: (msk+1)|msk
aoqi@0 2137 msk = ((msk << 2)|3) & BackOffMask ;
aoqi@0 2138 }
aoqi@0 2139
aoqi@0 2140 // Probe _owner with TATAS
aoqi@0 2141 // If this thread observes the monitor transition or flicker
aoqi@0 2142 // from locked to unlocked to locked, then the odds that this
aoqi@0 2143 // thread will acquire the lock in this spin attempt go down
aoqi@0 2144 // considerably. The same argument applies if the CAS fails
aoqi@0 2145 // or if we observe _owner change from one non-null value to
aoqi@0 2146 // another non-null value. In such cases we might abort
aoqi@0 2147 // the spin without prejudice or apply a "penalty" to the
aoqi@0 2148 // spin count-down variable "ctr", reducing it by 100, say.
aoqi@0 2149
aoqi@0 2150 Thread * ox = (Thread *) _owner ;
aoqi@0 2151 if (ox == NULL) {
aoqi@0 2152 ox = (Thread *) Atomic::cmpxchg_ptr (Self, &_owner, NULL) ;
aoqi@0 2153 if (ox == NULL) {
aoqi@0 2154 // The CAS succeeded -- this thread acquired ownership
aoqi@0 2155 // Take care of some bookkeeping to exit spin state.
aoqi@0 2156 if (sss && _succ == Self) {
aoqi@0 2157 _succ = NULL ;
aoqi@0 2158 }
aoqi@0 2159 if (MaxSpin > 0) Adjust (&_Spinner, -1) ;
aoqi@0 2160
aoqi@0 2161 // Increase _SpinDuration :
aoqi@0 2162 // The spin was successful (profitable) so we tend toward
aoqi@0 2163 // longer spin attempts in the future.
aoqi@0 2164 // CONSIDER: factor "ctr" into the _SpinDuration adjustment.
aoqi@0 2165 // If we acquired the lock early in the spin cycle it
aoqi@0 2166 // makes sense to increase _SpinDuration proportionally.
aoqi@0 2167 // Note that we don't clamp SpinDuration precisely at SpinLimit.
aoqi@0 2168 int x = _SpinDuration ;
aoqi@0 2169 if (x < Knob_SpinLimit) {
aoqi@0 2170 if (x < Knob_Poverty) x = Knob_Poverty ;
aoqi@0 2171 _SpinDuration = x + Knob_Bonus ;
aoqi@0 2172 }
aoqi@0 2173 return 1 ;
aoqi@0 2174 }
aoqi@0 2175
aoqi@0 2176 // The CAS failed ... we can take any of the following actions:
aoqi@0 2177 // * penalize: ctr -= Knob_CASPenalty
aoqi@0 2178 // * exit spin with prejudice -- goto Abort;
aoqi@0 2179 // * exit spin without prejudice.
aoqi@0 2180 // * Since CAS is high-latency, retry again immediately.
aoqi@0 2181 prv = ox ;
aoqi@0 2182 TEVENT (Spin: cas failed) ;
aoqi@0 2183 if (caspty == -2) break ;
aoqi@0 2184 if (caspty == -1) goto Abort ;
aoqi@0 2185 ctr -= caspty ;
aoqi@0 2186 continue ;
aoqi@0 2187 }
aoqi@0 2188
aoqi@0 2189 // Did lock ownership change hands ?
aoqi@0 2190 if (ox != prv && prv != NULL ) {
aoqi@0 2191 TEVENT (spin: Owner changed)
aoqi@0 2192 if (oxpty == -2) break ;
aoqi@0 2193 if (oxpty == -1) goto Abort ;
aoqi@0 2194 ctr -= oxpty ;
aoqi@0 2195 }
aoqi@0 2196 prv = ox ;
aoqi@0 2197
aoqi@0 2198 // Abort the spin if the owner is not executing.
aoqi@0 2199 // The owner must be executing in order to drop the lock.
aoqi@0 2200 // Spinning while the owner is OFFPROC is idiocy.
aoqi@0 2201 // Consider: ctr -= RunnablePenalty ;
aoqi@0 2202 if (Knob_OState && NotRunnable (Self, ox)) {
aoqi@0 2203 TEVENT (Spin abort - notrunnable);
aoqi@0 2204 goto Abort ;
aoqi@0 2205 }
aoqi@0 2206 if (sss && _succ == NULL ) _succ = Self ;
aoqi@0 2207 }
aoqi@0 2208
aoqi@0 2209 // Spin failed with prejudice -- reduce _SpinDuration.
aoqi@0 2210 // TODO: Use an AIMD-like policy to adjust _SpinDuration.
aoqi@0 2211 // AIMD is globally stable.
aoqi@0 2212 TEVENT (Spin failure) ;
aoqi@0 2213 {
aoqi@0 2214 int x = _SpinDuration ;
aoqi@0 2215 if (x > 0) {
aoqi@0 2216 // Consider an AIMD scheme like: x -= (x >> 3) + 100
aoqi@0 2217 // This is globally sample and tends to damp the response.
aoqi@0 2218 x -= Knob_Penalty ;
aoqi@0 2219 if (x < 0) x = 0 ;
aoqi@0 2220 _SpinDuration = x ;
aoqi@0 2221 }
aoqi@0 2222 }
aoqi@0 2223
aoqi@0 2224 Abort:
aoqi@0 2225 if (MaxSpin >= 0) Adjust (&_Spinner, -1) ;
aoqi@0 2226 if (sss && _succ == Self) {
aoqi@0 2227 _succ = NULL ;
aoqi@0 2228 // Invariant: after setting succ=null a contending thread
aoqi@0 2229 // must recheck-retry _owner before parking. This usually happens
aoqi@0 2230 // in the normal usage of TrySpin(), but it's safest
aoqi@0 2231 // to make TrySpin() as foolproof as possible.
aoqi@0 2232 OrderAccess::fence() ;
aoqi@0 2233 if (TryLock(Self) > 0) return 1 ;
aoqi@0 2234 }
aoqi@0 2235 return 0 ;
aoqi@0 2236 }
aoqi@0 2237
aoqi@0 2238 // NotRunnable() -- informed spinning
aoqi@0 2239 //
aoqi@0 2240 // Don't bother spinning if the owner is not eligible to drop the lock.
aoqi@0 2241 // Peek at the owner's schedctl.sc_state and Thread._thread_values and
aoqi@0 2242 // spin only if the owner thread is _thread_in_Java or _thread_in_vm.
aoqi@0 2243 // The thread must be runnable in order to drop the lock in timely fashion.
aoqi@0 2244 // If the _owner is not runnable then spinning will not likely be
aoqi@0 2245 // successful (profitable).
aoqi@0 2246 //
aoqi@0 2247 // Beware -- the thread referenced by _owner could have died
aoqi@0 2248 // so a simply fetch from _owner->_thread_state might trap.
aoqi@0 2249 // Instead, we use SafeFetchXX() to safely LD _owner->_thread_state.
aoqi@0 2250 // Because of the lifecycle issues the schedctl and _thread_state values
aoqi@0 2251 // observed by NotRunnable() might be garbage. NotRunnable must
aoqi@0 2252 // tolerate this and consider the observed _thread_state value
aoqi@0 2253 // as advisory.
aoqi@0 2254 //
aoqi@0 2255 // Beware too, that _owner is sometimes a BasicLock address and sometimes
aoqi@0 2256 // a thread pointer. We differentiate the two cases with OwnerIsThread.
aoqi@0 2257 // Alternately, we might tag the type (thread pointer vs basiclock pointer)
aoqi@0 2258 // with the LSB of _owner. Another option would be to probablistically probe
aoqi@0 2259 // the putative _owner->TypeTag value.
aoqi@0 2260 //
aoqi@0 2261 // Checking _thread_state isn't perfect. Even if the thread is
aoqi@0 2262 // in_java it might be blocked on a page-fault or have been preempted
aoqi@0 2263 // and sitting on a ready/dispatch queue. _thread state in conjunction
aoqi@0 2264 // with schedctl.sc_state gives us a good picture of what the
aoqi@0 2265 // thread is doing, however.
aoqi@0 2266 //
aoqi@0 2267 // TODO: check schedctl.sc_state.
aoqi@0 2268 // We'll need to use SafeFetch32() to read from the schedctl block.
aoqi@0 2269 // See RFE #5004247 and http://sac.sfbay.sun.com/Archives/CaseLog/arc/PSARC/2005/351/
aoqi@0 2270 //
aoqi@0 2271 // The return value from NotRunnable() is *advisory* -- the
aoqi@0 2272 // result is based on sampling and is not necessarily coherent.
aoqi@0 2273 // The caller must tolerate false-negative and false-positive errors.
aoqi@0 2274 // Spinning, in general, is probabilistic anyway.
aoqi@0 2275
aoqi@0 2276
aoqi@0 2277 int ObjectMonitor::NotRunnable (Thread * Self, Thread * ox) {
aoqi@0 2278 // Check either OwnerIsThread or ox->TypeTag == 2BAD.
aoqi@0 2279 if (!OwnerIsThread) return 0 ;
aoqi@0 2280
aoqi@0 2281 if (ox == NULL) return 0 ;
aoqi@0 2282
aoqi@0 2283 // Avoid transitive spinning ...
aoqi@0 2284 // Say T1 spins or blocks trying to acquire L. T1._Stalled is set to L.
aoqi@0 2285 // Immediately after T1 acquires L it's possible that T2, also
aoqi@0 2286 // spinning on L, will see L.Owner=T1 and T1._Stalled=L.
aoqi@0 2287 // This occurs transiently after T1 acquired L but before
aoqi@0 2288 // T1 managed to clear T1.Stalled. T2 does not need to abort
aoqi@0 2289 // its spin in this circumstance.
aoqi@0 2290 intptr_t BlockedOn = SafeFetchN ((intptr_t *) &ox->_Stalled, intptr_t(1)) ;
aoqi@0 2291
aoqi@0 2292 if (BlockedOn == 1) return 1 ;
aoqi@0 2293 if (BlockedOn != 0) {
aoqi@0 2294 return BlockedOn != intptr_t(this) && _owner == ox ;
aoqi@0 2295 }
aoqi@0 2296
aoqi@0 2297 assert (sizeof(((JavaThread *)ox)->_thread_state == sizeof(int)), "invariant") ;
aoqi@0 2298 int jst = SafeFetch32 ((int *) &((JavaThread *) ox)->_thread_state, -1) ; ;
aoqi@0 2299 // consider also: jst != _thread_in_Java -- but that's overspecific.
aoqi@0 2300 return jst == _thread_blocked || jst == _thread_in_native ;
aoqi@0 2301 }
aoqi@0 2302
aoqi@0 2303
aoqi@0 2304 // -----------------------------------------------------------------------------
aoqi@0 2305 // WaitSet management ...
aoqi@0 2306
aoqi@0 2307 ObjectWaiter::ObjectWaiter(Thread* thread) {
aoqi@0 2308 _next = NULL;
aoqi@0 2309 _prev = NULL;
aoqi@0 2310 _notified = 0;
aoqi@0 2311 TState = TS_RUN ;
aoqi@0 2312 _thread = thread;
aoqi@0 2313 _event = thread->_ParkEvent ;
aoqi@0 2314 _active = false;
aoqi@0 2315 assert (_event != NULL, "invariant") ;
aoqi@0 2316 }
aoqi@0 2317
aoqi@0 2318 void ObjectWaiter::wait_reenter_begin(ObjectMonitor *mon) {
aoqi@0 2319 JavaThread *jt = (JavaThread *)this->_thread;
aoqi@0 2320 _active = JavaThreadBlockedOnMonitorEnterState::wait_reenter_begin(jt, mon);
aoqi@0 2321 }
aoqi@0 2322
aoqi@0 2323 void ObjectWaiter::wait_reenter_end(ObjectMonitor *mon) {
aoqi@0 2324 JavaThread *jt = (JavaThread *)this->_thread;
aoqi@0 2325 JavaThreadBlockedOnMonitorEnterState::wait_reenter_end(jt, _active);
aoqi@0 2326 }
aoqi@0 2327
aoqi@0 2328 inline void ObjectMonitor::AddWaiter(ObjectWaiter* node) {
aoqi@0 2329 assert(node != NULL, "should not dequeue NULL node");
aoqi@0 2330 assert(node->_prev == NULL, "node already in list");
aoqi@0 2331 assert(node->_next == NULL, "node already in list");
aoqi@0 2332 // put node at end of queue (circular doubly linked list)
aoqi@0 2333 if (_WaitSet == NULL) {
aoqi@0 2334 _WaitSet = node;
aoqi@0 2335 node->_prev = node;
aoqi@0 2336 node->_next = node;
aoqi@0 2337 } else {
aoqi@0 2338 ObjectWaiter* head = _WaitSet ;
aoqi@0 2339 ObjectWaiter* tail = head->_prev;
aoqi@0 2340 assert(tail->_next == head, "invariant check");
aoqi@0 2341 tail->_next = node;
aoqi@0 2342 head->_prev = node;
aoqi@0 2343 node->_next = head;
aoqi@0 2344 node->_prev = tail;
aoqi@0 2345 }
aoqi@0 2346 }
aoqi@0 2347
aoqi@0 2348 inline ObjectWaiter* ObjectMonitor::DequeueWaiter() {
aoqi@0 2349 // dequeue the very first waiter
aoqi@0 2350 ObjectWaiter* waiter = _WaitSet;
aoqi@0 2351 if (waiter) {
aoqi@0 2352 DequeueSpecificWaiter(waiter);
aoqi@0 2353 }
aoqi@0 2354 return waiter;
aoqi@0 2355 }
aoqi@0 2356
aoqi@0 2357 inline void ObjectMonitor::DequeueSpecificWaiter(ObjectWaiter* node) {
aoqi@0 2358 assert(node != NULL, "should not dequeue NULL node");
aoqi@0 2359 assert(node->_prev != NULL, "node already removed from list");
aoqi@0 2360 assert(node->_next != NULL, "node already removed from list");
aoqi@0 2361 // when the waiter has woken up because of interrupt,
aoqi@0 2362 // timeout or other spurious wake-up, dequeue the
aoqi@0 2363 // waiter from waiting list
aoqi@0 2364 ObjectWaiter* next = node->_next;
aoqi@0 2365 if (next == node) {
aoqi@0 2366 assert(node->_prev == node, "invariant check");
aoqi@0 2367 _WaitSet = NULL;
aoqi@0 2368 } else {
aoqi@0 2369 ObjectWaiter* prev = node->_prev;
aoqi@0 2370 assert(prev->_next == node, "invariant check");
aoqi@0 2371 assert(next->_prev == node, "invariant check");
aoqi@0 2372 next->_prev = prev;
aoqi@0 2373 prev->_next = next;
aoqi@0 2374 if (_WaitSet == node) {
aoqi@0 2375 _WaitSet = next;
aoqi@0 2376 }
aoqi@0 2377 }
aoqi@0 2378 node->_next = NULL;
aoqi@0 2379 node->_prev = NULL;
aoqi@0 2380 }
aoqi@0 2381
aoqi@0 2382 // -----------------------------------------------------------------------------
aoqi@0 2383 // PerfData support
aoqi@0 2384 PerfCounter * ObjectMonitor::_sync_ContendedLockAttempts = NULL ;
aoqi@0 2385 PerfCounter * ObjectMonitor::_sync_FutileWakeups = NULL ;
aoqi@0 2386 PerfCounter * ObjectMonitor::_sync_Parks = NULL ;
aoqi@0 2387 PerfCounter * ObjectMonitor::_sync_EmptyNotifications = NULL ;
aoqi@0 2388 PerfCounter * ObjectMonitor::_sync_Notifications = NULL ;
aoqi@0 2389 PerfCounter * ObjectMonitor::_sync_PrivateA = NULL ;
aoqi@0 2390 PerfCounter * ObjectMonitor::_sync_PrivateB = NULL ;
aoqi@0 2391 PerfCounter * ObjectMonitor::_sync_SlowExit = NULL ;
aoqi@0 2392 PerfCounter * ObjectMonitor::_sync_SlowEnter = NULL ;
aoqi@0 2393 PerfCounter * ObjectMonitor::_sync_SlowNotify = NULL ;
aoqi@0 2394 PerfCounter * ObjectMonitor::_sync_SlowNotifyAll = NULL ;
aoqi@0 2395 PerfCounter * ObjectMonitor::_sync_FailedSpins = NULL ;
aoqi@0 2396 PerfCounter * ObjectMonitor::_sync_SuccessfulSpins = NULL ;
aoqi@0 2397 PerfCounter * ObjectMonitor::_sync_MonInCirculation = NULL ;
aoqi@0 2398 PerfCounter * ObjectMonitor::_sync_MonScavenged = NULL ;
aoqi@0 2399 PerfCounter * ObjectMonitor::_sync_Inflations = NULL ;
aoqi@0 2400 PerfCounter * ObjectMonitor::_sync_Deflations = NULL ;
aoqi@0 2401 PerfLongVariable * ObjectMonitor::_sync_MonExtant = NULL ;
aoqi@0 2402
aoqi@0 2403 // One-shot global initialization for the sync subsystem.
aoqi@0 2404 // We could also defer initialization and initialize on-demand
aoqi@0 2405 // the first time we call inflate(). Initialization would
aoqi@0 2406 // be protected - like so many things - by the MonitorCache_lock.
aoqi@0 2407
aoqi@0 2408 void ObjectMonitor::Initialize () {
aoqi@0 2409 static int InitializationCompleted = 0 ;
aoqi@0 2410 assert (InitializationCompleted == 0, "invariant") ;
aoqi@0 2411 InitializationCompleted = 1 ;
aoqi@0 2412 if (UsePerfData) {
aoqi@0 2413 EXCEPTION_MARK ;
aoqi@0 2414 #define NEWPERFCOUNTER(n) {n = PerfDataManager::create_counter(SUN_RT, #n, PerfData::U_Events,CHECK); }
aoqi@0 2415 #define NEWPERFVARIABLE(n) {n = PerfDataManager::create_variable(SUN_RT, #n, PerfData::U_Events,CHECK); }
aoqi@0 2416 NEWPERFCOUNTER(_sync_Inflations) ;
aoqi@0 2417 NEWPERFCOUNTER(_sync_Deflations) ;
aoqi@0 2418 NEWPERFCOUNTER(_sync_ContendedLockAttempts) ;
aoqi@0 2419 NEWPERFCOUNTER(_sync_FutileWakeups) ;
aoqi@0 2420 NEWPERFCOUNTER(_sync_Parks) ;
aoqi@0 2421 NEWPERFCOUNTER(_sync_EmptyNotifications) ;
aoqi@0 2422 NEWPERFCOUNTER(_sync_Notifications) ;
aoqi@0 2423 NEWPERFCOUNTER(_sync_SlowEnter) ;
aoqi@0 2424 NEWPERFCOUNTER(_sync_SlowExit) ;
aoqi@0 2425 NEWPERFCOUNTER(_sync_SlowNotify) ;
aoqi@0 2426 NEWPERFCOUNTER(_sync_SlowNotifyAll) ;
aoqi@0 2427 NEWPERFCOUNTER(_sync_FailedSpins) ;
aoqi@0 2428 NEWPERFCOUNTER(_sync_SuccessfulSpins) ;
aoqi@0 2429 NEWPERFCOUNTER(_sync_PrivateA) ;
aoqi@0 2430 NEWPERFCOUNTER(_sync_PrivateB) ;
aoqi@0 2431 NEWPERFCOUNTER(_sync_MonInCirculation) ;
aoqi@0 2432 NEWPERFCOUNTER(_sync_MonScavenged) ;
aoqi@0 2433 NEWPERFVARIABLE(_sync_MonExtant) ;
aoqi@0 2434 #undef NEWPERFCOUNTER
aoqi@0 2435 }
aoqi@0 2436 }
aoqi@0 2437
aoqi@0 2438
aoqi@0 2439 // Compile-time asserts
aoqi@0 2440 // When possible, it's better to catch errors deterministically at
aoqi@0 2441 // compile-time than at runtime. The down-side to using compile-time
aoqi@0 2442 // asserts is that error message -- often something about negative array
aoqi@0 2443 // indices -- is opaque.
aoqi@0 2444
aoqi@0 2445 #define CTASSERT(x) { int tag[1-(2*!(x))]; printf ("Tag @" INTPTR_FORMAT "\n", (intptr_t)tag); }
aoqi@0 2446
aoqi@0 2447 void ObjectMonitor::ctAsserts() {
aoqi@0 2448 CTASSERT(offset_of (ObjectMonitor, _header) == 0);
aoqi@0 2449 }
aoqi@0 2450
aoqi@0 2451
aoqi@0 2452 static char * kvGet (char * kvList, const char * Key) {
aoqi@0 2453 if (kvList == NULL) return NULL ;
aoqi@0 2454 size_t n = strlen (Key) ;
aoqi@0 2455 char * Search ;
aoqi@0 2456 for (Search = kvList ; *Search ; Search += strlen(Search) + 1) {
aoqi@0 2457 if (strncmp (Search, Key, n) == 0) {
aoqi@0 2458 if (Search[n] == '=') return Search + n + 1 ;
aoqi@0 2459 if (Search[n] == 0) return (char *) "1" ;
aoqi@0 2460 }
aoqi@0 2461 }
aoqi@0 2462 return NULL ;
aoqi@0 2463 }
aoqi@0 2464
aoqi@0 2465 static int kvGetInt (char * kvList, const char * Key, int Default) {
aoqi@0 2466 char * v = kvGet (kvList, Key) ;
aoqi@0 2467 int rslt = v ? ::strtol (v, NULL, 0) : Default ;
aoqi@0 2468 if (Knob_ReportSettings && v != NULL) {
aoqi@0 2469 ::printf (" SyncKnob: %s %d(%d)\n", Key, rslt, Default) ;
aoqi@0 2470 ::fflush (stdout) ;
aoqi@0 2471 }
aoqi@0 2472 return rslt ;
aoqi@0 2473 }
aoqi@0 2474
aoqi@0 2475 void ObjectMonitor::DeferredInitialize () {
aoqi@0 2476 if (InitDone > 0) return ;
aoqi@0 2477 if (Atomic::cmpxchg (-1, &InitDone, 0) != 0) {
aoqi@0 2478 while (InitDone != 1) ;
aoqi@0 2479 return ;
aoqi@0 2480 }
aoqi@0 2481
aoqi@0 2482 // One-shot global initialization ...
aoqi@0 2483 // The initialization is idempotent, so we don't need locks.
aoqi@0 2484 // In the future consider doing this via os::init_2().
aoqi@0 2485 // SyncKnobs consist of <Key>=<Value> pairs in the style
aoqi@0 2486 // of environment variables. Start by converting ':' to NUL.
aoqi@0 2487
aoqi@0 2488 if (SyncKnobs == NULL) SyncKnobs = "" ;
aoqi@0 2489
aoqi@0 2490 size_t sz = strlen (SyncKnobs) ;
aoqi@0 2491 char * knobs = (char *) malloc (sz + 2) ;
aoqi@0 2492 if (knobs == NULL) {
aoqi@0 2493 vm_exit_out_of_memory (sz + 2, OOM_MALLOC_ERROR, "Parse SyncKnobs") ;
aoqi@0 2494 guarantee (0, "invariant") ;
aoqi@0 2495 }
aoqi@0 2496 strcpy (knobs, SyncKnobs) ;
aoqi@0 2497 knobs[sz+1] = 0 ;
aoqi@0 2498 for (char * p = knobs ; *p ; p++) {
aoqi@0 2499 if (*p == ':') *p = 0 ;
aoqi@0 2500 }
aoqi@0 2501
aoqi@0 2502 #define SETKNOB(x) { Knob_##x = kvGetInt (knobs, #x, Knob_##x); }
aoqi@0 2503 SETKNOB(ReportSettings) ;
aoqi@0 2504 SETKNOB(Verbose) ;
aoqi@0 2505 SETKNOB(FixedSpin) ;
aoqi@0 2506 SETKNOB(SpinLimit) ;
aoqi@0 2507 SETKNOB(SpinBase) ;
aoqi@0 2508 SETKNOB(SpinBackOff);
aoqi@0 2509 SETKNOB(CASPenalty) ;
aoqi@0 2510 SETKNOB(OXPenalty) ;
aoqi@0 2511 SETKNOB(LogSpins) ;
aoqi@0 2512 SETKNOB(SpinSetSucc) ;
aoqi@0 2513 SETKNOB(SuccEnabled) ;
aoqi@0 2514 SETKNOB(SuccRestrict) ;
aoqi@0 2515 SETKNOB(Penalty) ;
aoqi@0 2516 SETKNOB(Bonus) ;
aoqi@0 2517 SETKNOB(BonusB) ;
aoqi@0 2518 SETKNOB(Poverty) ;
aoqi@0 2519 SETKNOB(SpinAfterFutile) ;
aoqi@0 2520 SETKNOB(UsePause) ;
aoqi@0 2521 SETKNOB(SpinEarly) ;
aoqi@0 2522 SETKNOB(OState) ;
aoqi@0 2523 SETKNOB(MaxSpinners) ;
aoqi@0 2524 SETKNOB(PreSpin) ;
aoqi@0 2525 SETKNOB(ExitPolicy) ;
aoqi@0 2526 SETKNOB(QMode);
aoqi@0 2527 SETKNOB(ResetEvent) ;
aoqi@0 2528 SETKNOB(MoveNotifyee) ;
aoqi@0 2529 SETKNOB(FastHSSEC) ;
aoqi@0 2530 #undef SETKNOB
aoqi@0 2531
kevinw@8729 2532 if (Knob_Verbose) {
kevinw@8729 2533 sanity_checks();
kevinw@8729 2534 }
kevinw@8729 2535
aoqi@0 2536 if (os::is_MP()) {
aoqi@0 2537 BackOffMask = (1 << Knob_SpinBackOff) - 1 ;
aoqi@0 2538 if (Knob_ReportSettings) ::printf ("BackOffMask=%X\n", BackOffMask) ;
aoqi@0 2539 // CONSIDER: BackOffMask = ROUNDUP_NEXT_POWER2 (ncpus-1)
aoqi@0 2540 } else {
aoqi@0 2541 Knob_SpinLimit = 0 ;
aoqi@0 2542 Knob_SpinBase = 0 ;
aoqi@0 2543 Knob_PreSpin = 0 ;
aoqi@0 2544 Knob_FixedSpin = -1 ;
aoqi@0 2545 }
aoqi@0 2546
aoqi@0 2547 if (Knob_LogSpins == 0) {
aoqi@0 2548 ObjectMonitor::_sync_FailedSpins = NULL ;
aoqi@0 2549 }
aoqi@0 2550
aoqi@0 2551 free (knobs) ;
aoqi@0 2552 OrderAccess::fence() ;
aoqi@0 2553 InitDone = 1 ;
aoqi@0 2554 }
aoqi@0 2555
kevinw@8729 2556 void ObjectMonitor::sanity_checks() {
kevinw@8729 2557 int error_cnt = 0;
kevinw@8729 2558 int warning_cnt = 0;
kevinw@8729 2559 bool verbose = Knob_Verbose != 0 NOT_PRODUCT(|| VerboseInternalVMTests);
kevinw@8729 2560
kevinw@8729 2561 if (verbose) {
kevinw@8729 2562 tty->print_cr("INFO: sizeof(ObjectMonitor)=" SIZE_FORMAT,
kevinw@8729 2563 sizeof(ObjectMonitor));
kevinw@8729 2564 }
kevinw@8729 2565
kevinw@8729 2566 uint cache_line_size = VM_Version::L1_data_cache_line_size();
kevinw@8729 2567 if (verbose) {
kevinw@8729 2568 tty->print_cr("INFO: L1_data_cache_line_size=%u", cache_line_size);
kevinw@8729 2569 }
kevinw@8729 2570
kevinw@8729 2571 ObjectMonitor dummy;
kevinw@8729 2572 u_char *addr_begin = (u_char*)&dummy;
kevinw@8729 2573 u_char *addr_header = (u_char*)&dummy._header;
kevinw@8729 2574 u_char *addr_owner = (u_char*)&dummy._owner;
kevinw@8729 2575
kevinw@8729 2576 uint offset_header = (uint)(addr_header - addr_begin);
kevinw@8729 2577 if (verbose) tty->print_cr("INFO: offset(_header)=%u", offset_header);
kevinw@8729 2578
kevinw@8729 2579 uint offset_owner = (uint)(addr_owner - addr_begin);
kevinw@8729 2580 if (verbose) tty->print_cr("INFO: offset(_owner)=%u", offset_owner);
kevinw@8729 2581
kevinw@8729 2582 if ((uint)(addr_header - addr_begin) != 0) {
kevinw@8729 2583 tty->print_cr("ERROR: offset(_header) must be zero (0).");
kevinw@8729 2584 error_cnt++;
kevinw@8729 2585 }
kevinw@8729 2586
kevinw@8729 2587 if (cache_line_size != 0) {
kevinw@8729 2588 // We were able to determine the L1 data cache line size so
kevinw@8729 2589 // do some cache line specific sanity checks
kevinw@8729 2590
kevinw@8729 2591 if ((offset_owner - offset_header) < cache_line_size) {
kevinw@8729 2592 tty->print_cr("WARNING: the _header and _owner fields are closer "
kevinw@8729 2593 "than a cache line which permits false sharing.");
kevinw@8729 2594 warning_cnt++;
kevinw@8729 2595 }
kevinw@8729 2596
kevinw@8729 2597 if ((sizeof(ObjectMonitor) % cache_line_size) != 0) {
kevinw@8729 2598 tty->print_cr("WARNING: ObjectMonitor size is not a multiple of "
kevinw@8729 2599 "a cache line which permits false sharing.");
kevinw@8729 2600 warning_cnt++;
kevinw@8729 2601 }
kevinw@8729 2602 }
kevinw@8729 2603
kevinw@8729 2604 ObjectSynchronizer::sanity_checks(verbose, cache_line_size, &error_cnt,
kevinw@8729 2605 &warning_cnt);
kevinw@8729 2606
kevinw@8729 2607 if (verbose || error_cnt != 0 || warning_cnt != 0) {
kevinw@8729 2608 tty->print_cr("INFO: error_cnt=%d", error_cnt);
kevinw@8729 2609 tty->print_cr("INFO: warning_cnt=%d", warning_cnt);
kevinw@8729 2610 }
kevinw@8729 2611
kevinw@8729 2612 guarantee(error_cnt == 0,
kevinw@8729 2613 "Fatal error(s) found in ObjectMonitor::sanity_checks()");
kevinw@8729 2614 }
kevinw@8729 2615
aoqi@0 2616 #ifndef PRODUCT
aoqi@0 2617 void ObjectMonitor::verify() {
aoqi@0 2618 }
aoqi@0 2619
aoqi@0 2620 void ObjectMonitor::print() {
aoqi@0 2621 }
aoqi@0 2622 #endif

mercurial