1 /*
   2  * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "classfile/vmSymbols.hpp"
  27 #include "logging/log.hpp"
  28 #include "logging/logStream.hpp"
  29 #include "jfr/jfrEvents.hpp"
  30 #include "memory/allocation.inline.hpp"
  31 #include "memory/metaspaceShared.hpp"
  32 #include "memory/padded.hpp"
  33 #include "memory/resourceArea.hpp"
  34 #include "oops/markOop.hpp"
  35 #include "oops/oop.inline.hpp"
  36 #include "runtime/atomic.hpp"
  37 #include "runtime/biasedLocking.hpp"
  38 #include "runtime/handles.inline.hpp"
  39 #include "runtime/interfaceSupport.inline.hpp"
  40 #include "runtime/mutexLocker.hpp"
  41 #include "runtime/objectMonitor.hpp"
  42 #include "runtime/objectMonitor.inline.hpp"
  43 #include "runtime/osThread.hpp"
  44 #include "runtime/safepointVerifiers.hpp"
  45 #include "runtime/sharedRuntime.hpp"
  46 #include "runtime/stubRoutines.hpp"
  47 #include "runtime/synchronizer.hpp"
  48 #include "runtime/thread.inline.hpp"
  49 #include "runtime/timer.hpp"
  50 #include "runtime/vframe.hpp"
  51 #include "runtime/vmThread.hpp"
  52 #include "utilities/align.hpp"
  53 #include "utilities/dtrace.hpp"
  54 #include "utilities/events.hpp"
  55 #include "utilities/preserveException.hpp"
  56 
  57 // The "core" versions of monitor enter and exit reside in this file.
  58 // The interpreter and compilers contain specialized transliterated
  59 // variants of the enter-exit fast-path operations.  See i486.ad fast_lock(),
  60 // for instance.  If you make changes here, make sure to modify the
  61 // interpreter, and both C1 and C2 fast-path inline locking code emission.
  62 //
  63 // -----------------------------------------------------------------------------
  64 
  65 #ifdef DTRACE_ENABLED
  66 
  67 // Only bother with this argument setup if dtrace is available
  68 // TODO-FIXME: probes should not fire when caller is _blocked.  assert() accordingly.
  69 
  70 #define DTRACE_MONITOR_PROBE_COMMON(obj, thread)                           \
  71   char* bytes = NULL;                                                      \
  72   int len = 0;                                                             \
  73   jlong jtid = SharedRuntime::get_java_tid(thread);                        \
  74   Symbol* klassname = ((oop)(obj))->klass()->name();                       \
  75   if (klassname != NULL) {                                                 \
  76     bytes = (char*)klassname->bytes();                                     \
  77     len = klassname->utf8_length();                                        \
  78   }
  79 
  80 #define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis)            \
  81   {                                                                        \
  82     if (DTraceMonitorProbes) {                                             \
  83       DTRACE_MONITOR_PROBE_COMMON(obj, thread);                            \
  84       HOTSPOT_MONITOR_WAIT(jtid,                                           \
  85                            (uintptr_t)(monitor), bytes, len, (millis));    \
  86     }                                                                      \
  87   }
  88 
  89 #define HOTSPOT_MONITOR_PROBE_notify HOTSPOT_MONITOR_NOTIFY
  90 #define HOTSPOT_MONITOR_PROBE_notifyAll HOTSPOT_MONITOR_NOTIFYALL
  91 #define HOTSPOT_MONITOR_PROBE_waited HOTSPOT_MONITOR_WAITED
  92 
  93 #define DTRACE_MONITOR_PROBE(probe, monitor, obj, thread)                  \
  94   {                                                                        \
  95     if (DTraceMonitorProbes) {                                             \
  96       DTRACE_MONITOR_PROBE_COMMON(obj, thread);                            \
  97       HOTSPOT_MONITOR_PROBE_##probe(jtid, /* probe = waited */             \
  98                                     (uintptr_t)(monitor), bytes, len);     \
  99     }                                                                      \
 100   }
 101 
 102 #else //  ndef DTRACE_ENABLED
 103 
 104 #define DTRACE_MONITOR_WAIT_PROBE(obj, thread, millis, mon)    {;}
 105 #define DTRACE_MONITOR_PROBE(probe, obj, thread, mon)          {;}
 106 
 107 #endif // ndef DTRACE_ENABLED
 108 
 109 // This exists only as a workaround of dtrace bug 6254741
 110 int dtrace_waited_probe(ObjectMonitor* monitor, Handle obj, Thread* thr) {
 111   DTRACE_MONITOR_PROBE(waited, monitor, obj(), thr);
 112   return 0;
 113 }
 114 
 115 #define NINFLATIONLOCKS 256
 116 static volatile intptr_t gInflationLocks[NINFLATIONLOCKS];
 117 
 118 // global list of blocks of monitors
 119 PaddedEnd<ObjectMonitor> * volatile ObjectSynchronizer::gBlockList = NULL;
 120 // global monitor free list
 121 ObjectMonitor * volatile ObjectSynchronizer::gFreeList  = NULL;
 122 // global monitor in-use list, for moribund threads,
 123 // monitors they inflated need to be scanned for deflation
 124 ObjectMonitor * volatile ObjectSynchronizer::gOmInUseList  = NULL;
 125 // count of entries in gOmInUseList
 126 int ObjectSynchronizer::gOmInUseCount = 0;
 127 
 128 static volatile intptr_t gListLock = 0;      // protects global monitor lists
 129 static volatile int gMonitorFreeCount  = 0;  // # on gFreeList
 130 static volatile int gMonitorPopulation = 0;  // # Extant -- in circulation
 131 
 132 #define CHAINMARKER (cast_to_oop<intptr_t>(-1))
 133 
 134 
 135 // =====================> Quick functions
 136 
 137 // The quick_* forms are special fast-path variants used to improve
 138 // performance.  In the simplest case, a "quick_*" implementation could
 139 // simply return false, in which case the caller will perform the necessary
 140 // state transitions and call the slow-path form.
 141 // The fast-path is designed to handle frequently arising cases in an efficient
 142 // manner and is just a degenerate "optimistic" variant of the slow-path.
 143 // returns true  -- to indicate the call was satisfied.
 144 // returns false -- to indicate the call needs the services of the slow-path.
 145 // A no-loitering ordinance is in effect for code in the quick_* family
 146 // operators: safepoints or indefinite blocking (blocking that might span a
 147 // safepoint) are forbidden. Generally the thread_state() is _in_Java upon
 148 // entry.
 149 //
 150 // Consider: An interesting optimization is to have the JIT recognize the
 151 // following common idiom:
 152 //   synchronized (someobj) { .... ; notify(); }
 153 // That is, we find a notify() or notifyAll() call that immediately precedes
 154 // the monitorexit operation.  In that case the JIT could fuse the operations
 155 // into a single notifyAndExit() runtime primitive.
 156 
 157 bool ObjectSynchronizer::quick_notify(oopDesc * obj, Thread * self, bool all) {
 158   assert(!SafepointSynchronize::is_at_safepoint(), "invariant");
 159   assert(self->is_Java_thread(), "invariant");
 160   assert(((JavaThread *) self)->thread_state() == _thread_in_Java, "invariant");
 161   NoSafepointVerifier nsv;
 162   if (obj == NULL) return false;  // slow-path for invalid obj
 163   const markOop mark = obj->mark();
 164 
 165   if (mark->has_locker() && self->is_lock_owned((address)mark->locker())) {
 166     // Degenerate notify
 167     // stack-locked by caller so by definition the implied waitset is empty.
 168     return true;
 169   }
 170 
 171   if (mark->has_monitor()) {
 172     ObjectMonitor * const mon = mark->monitor();
 173     assert(oopDesc::equals((oop) mon->object(), obj), "invariant");
 174     if (mon->owner() != self) return false;  // slow-path for IMS exception
 175 
 176     if (mon->first_waiter() != NULL) {
 177       // We have one or more waiters. Since this is an inflated monitor
 178       // that we own, we can transfer one or more threads from the waitset
 179       // to the entrylist here and now, avoiding the slow-path.
 180       if (all) {
 181         DTRACE_MONITOR_PROBE(notifyAll, mon, obj, self);
 182       } else {
 183         DTRACE_MONITOR_PROBE(notify, mon, obj, self);
 184       }
 185       int tally = 0;
 186       do {
 187         mon->INotify(self);
 188         ++tally;
 189       } while (mon->first_waiter() != NULL && all);
 190       OM_PERFDATA_OP(Notifications, inc(tally));
 191     }
 192     return true;
 193   }
 194 
 195   // biased locking and any other IMS exception states take the slow-path
 196   return false;
 197 }
 198 
 199 
 200 // The LockNode emitted directly at the synchronization site would have
 201 // been too big if it were to have included support for the cases of inflated
 202 // recursive enter and exit, so they go here instead.
 203 // Note that we can't safely call AsyncPrintJavaStack() from within
 204 // quick_enter() as our thread state remains _in_Java.
 205 
 206 bool ObjectSynchronizer::quick_enter(oop obj, Thread * Self,
 207                                      BasicLock * lock) {
 208   assert(!SafepointSynchronize::is_at_safepoint(), "invariant");
 209   assert(Self->is_Java_thread(), "invariant");
 210   assert(((JavaThread *) Self)->thread_state() == _thread_in_Java, "invariant");
 211   NoSafepointVerifier nsv;
 212   if (obj == NULL) return false;       // Need to throw NPE
 213   const markOop mark = obj->mark();
 214 
 215   if (mark->has_monitor()) {
 216     ObjectMonitor * const m = mark->monitor();
 217     assert(oopDesc::equals((oop) m->object(), obj), "invariant");
 218     Thread * const owner = (Thread *) m->_owner;
 219 
 220     // Lock contention and Transactional Lock Elision (TLE) diagnostics
 221     // and observability
 222     // Case: light contention possibly amenable to TLE
 223     // Case: TLE inimical operations such as nested/recursive synchronization
 224 
 225     if (owner == Self) {
 226       m->_recursions++;
 227       return true;
 228     }
 229 
 230     // This Java Monitor is inflated so obj's header will never be
 231     // displaced to this thread's BasicLock. Make the displaced header
 232     // non-NULL so this BasicLock is not seen as recursive nor as
 233     // being locked. We do this unconditionally so that this thread's
 234     // BasicLock cannot be mis-interpreted by any stack walkers. For
 235     // performance reasons, stack walkers generally first check for
 236     // Biased Locking in the object's header, the second check is for
 237     // stack-locking in the object's header, the third check is for
 238     // recursive stack-locking in the displaced header in the BasicLock,
 239     // and last are the inflated Java Monitor (ObjectMonitor) checks.
 240     lock->set_displaced_header(markOopDesc::unused_mark());
 241 
 242     if (owner == NULL && Atomic::replace_if_null(Self, &(m->_owner))) {
 243       assert(m->_recursions == 0, "invariant");
 244       assert(m->_owner == Self, "invariant");
 245       return true;
 246     }
 247   }
 248 
 249   // Note that we could inflate in quick_enter.
 250   // This is likely a useful optimization
 251   // Critically, in quick_enter() we must not:
 252   // -- perform bias revocation, or
 253   // -- block indefinitely, or
 254   // -- reach a safepoint
 255 
 256   return false;        // revert to slow-path
 257 }
 258 
 259 // -----------------------------------------------------------------------------
 260 //  Fast Monitor Enter/Exit
 261 // This the fast monitor enter. The interpreter and compiler use
 262 // some assembly copies of this code. Make sure update those code
 263 // if the following function is changed. The implementation is
 264 // extremely sensitive to race condition. Be careful.
 265 
 266 void ObjectSynchronizer::fast_enter(Handle obj, BasicLock* lock,
 267                                     bool attempt_rebias, TRAPS) {
 268   if (UseBiasedLocking) {
 269     if (!SafepointSynchronize::is_at_safepoint()) {
 270       BiasedLocking::Condition cond = BiasedLocking::revoke_and_rebias(obj, attempt_rebias, THREAD);
 271       if (cond == BiasedLocking::BIAS_REVOKED_AND_REBIASED) {
 272         return;
 273       }
 274     } else {
 275       assert(!attempt_rebias, "can not rebias toward VM thread");
 276       BiasedLocking::revoke_at_safepoint(obj);
 277     }
 278     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 279   }
 280 
 281   slow_enter(obj, lock, THREAD);
 282 }
 283 
 284 void ObjectSynchronizer::fast_exit(oop object, BasicLock* lock, TRAPS) {
 285   markOop mark = object->mark();
 286   // We cannot check for Biased Locking if we are racing an inflation.
 287   assert(mark == markOopDesc::INFLATING() ||
 288          !mark->has_bias_pattern(), "should not see bias pattern here");
 289 
 290   markOop dhw = lock->displaced_header();
 291   if (dhw == NULL) {
 292     // If the displaced header is NULL, then this exit matches up with
 293     // a recursive enter. No real work to do here except for diagnostics.
 294 #ifndef PRODUCT
 295     if (mark != markOopDesc::INFLATING()) {
 296       // Only do diagnostics if we are not racing an inflation. Simply
 297       // exiting a recursive enter of a Java Monitor that is being
 298       // inflated is safe; see the has_monitor() comment below.
 299       assert(!mark->is_neutral(), "invariant");
 300       assert(!mark->has_locker() ||
 301              THREAD->is_lock_owned((address)mark->locker()), "invariant");
 302       if (mark->has_monitor()) {
 303         // The BasicLock's displaced_header is marked as a recursive
 304         // enter and we have an inflated Java Monitor (ObjectMonitor).
 305         // This is a special case where the Java Monitor was inflated
 306         // after this thread entered the stack-lock recursively. When a
 307         // Java Monitor is inflated, we cannot safely walk the Java
 308         // Monitor owner's stack and update the BasicLocks because a
 309         // Java Monitor can be asynchronously inflated by a thread that
 310         // does not own the Java Monitor.
 311         ObjectMonitor * m = mark->monitor();
 312         assert(((oop)(m->object()))->mark() == mark, "invariant");
 313         assert(m->is_entered(THREAD), "invariant");
 314       }
 315     }
 316 #endif
 317     return;
 318   }
 319 
 320   if (mark == (markOop) lock) {
 321     // If the object is stack-locked by the current thread, try to
 322     // swing the displaced header from the BasicLock back to the mark.
 323     assert(dhw->is_neutral(), "invariant");
 324     if (object->cas_set_mark(dhw, mark) == mark) {
 325       return;
 326     }
 327   }
 328 
 329   // We have to take the slow-path of possible inflation and then exit.
 330   inflate(THREAD, object, inflate_cause_vm_internal)->exit(true, THREAD);
 331 }
 332 
 333 // -----------------------------------------------------------------------------
 334 // Interpreter/Compiler Slow Case
 335 // This routine is used to handle interpreter/compiler slow case
 336 // We don't need to use fast path here, because it must have been
 337 // failed in the interpreter/compiler code.
 338 void ObjectSynchronizer::slow_enter(Handle obj, BasicLock* lock, TRAPS) {
 339   markOop mark = obj->mark();
 340   assert(!mark->has_bias_pattern(), "should not see bias pattern here");
 341 
 342   if (mark->is_neutral()) {
 343     // Anticipate successful CAS -- the ST of the displaced mark must
 344     // be visible <= the ST performed by the CAS.
 345     lock->set_displaced_header(mark);
 346     if (mark == obj()->cas_set_mark((markOop) lock, mark)) {
 347       return;
 348     }
 349     // Fall through to inflate() ...
 350   } else if (mark->has_locker() &&
 351              THREAD->is_lock_owned((address)mark->locker())) {
 352     assert(lock != mark->locker(), "must not re-lock the same lock");
 353     assert(lock != (BasicLock*)obj->mark(), "don't relock with same BasicLock");
 354     lock->set_displaced_header(NULL);
 355     return;
 356   }
 357 
 358   // The object header will never be displaced to this lock,
 359   // so it does not matter what the value is, except that it
 360   // must be non-zero to avoid looking like a re-entrant lock,
 361   // and must not look locked either.
 362   lock->set_displaced_header(markOopDesc::unused_mark());
 363   inflate(THREAD, obj(), inflate_cause_monitor_enter)->enter(THREAD);
 364 }
 365 
 366 // This routine is used to handle interpreter/compiler slow case
 367 // We don't need to use fast path here, because it must have
 368 // failed in the interpreter/compiler code. Simply use the heavy
 369 // weight monitor should be ok, unless someone find otherwise.
 370 void ObjectSynchronizer::slow_exit(oop object, BasicLock* lock, TRAPS) {
 371   fast_exit(object, lock, THREAD);
 372 }
 373 
 374 // -----------------------------------------------------------------------------
 375 // Class Loader  support to workaround deadlocks on the class loader lock objects
 376 // Also used by GC
 377 // complete_exit()/reenter() are used to wait on a nested lock
 378 // i.e. to give up an outer lock completely and then re-enter
 379 // Used when holding nested locks - lock acquisition order: lock1 then lock2
 380 //  1) complete_exit lock1 - saving recursion count
 381 //  2) wait on lock2
 382 //  3) when notified on lock2, unlock lock2
 383 //  4) reenter lock1 with original recursion count
 384 //  5) lock lock2
 385 // NOTE: must use heavy weight monitor to handle complete_exit/reenter()
 386 intptr_t ObjectSynchronizer::complete_exit(Handle obj, TRAPS) {
 387   if (UseBiasedLocking) {
 388     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 389     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 390   }
 391 
 392   ObjectMonitor* monitor = inflate(THREAD, obj(), inflate_cause_vm_internal);
 393 
 394   return monitor->complete_exit(THREAD);
 395 }
 396 
 397 // NOTE: must use heavy weight monitor to handle complete_exit/reenter()
 398 void ObjectSynchronizer::reenter(Handle obj, intptr_t recursion, TRAPS) {
 399   if (UseBiasedLocking) {
 400     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 401     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 402   }
 403 
 404   ObjectMonitor* monitor = inflate(THREAD, obj(), inflate_cause_vm_internal);
 405 
 406   monitor->reenter(recursion, THREAD);
 407 }
 408 // -----------------------------------------------------------------------------
 409 // JNI locks on java objects
 410 // NOTE: must use heavy weight monitor to handle jni monitor enter
 411 void ObjectSynchronizer::jni_enter(Handle obj, TRAPS) {
 412   // the current locking is from JNI instead of Java code
 413   if (UseBiasedLocking) {
 414     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 415     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 416   }
 417   THREAD->set_current_pending_monitor_is_from_java(false);
 418   inflate(THREAD, obj(), inflate_cause_jni_enter)->enter(THREAD);
 419   THREAD->set_current_pending_monitor_is_from_java(true);
 420 }
 421 
 422 // NOTE: must use heavy weight monitor to handle jni monitor exit
 423 void ObjectSynchronizer::jni_exit(oop obj, Thread* THREAD) {
 424   if (UseBiasedLocking) {
 425     Handle h_obj(THREAD, obj);
 426     BiasedLocking::revoke_and_rebias(h_obj, false, THREAD);
 427     obj = h_obj();
 428   }
 429   assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 430 
 431   ObjectMonitor* monitor = inflate(THREAD, obj, inflate_cause_jni_exit);
 432   // If this thread has locked the object, exit the monitor.  Note:  can't use
 433   // monitor->check(CHECK); must exit even if an exception is pending.
 434   if (monitor->check(THREAD)) {
 435     monitor->exit(true, THREAD);
 436   }
 437 }
 438 
 439 // -----------------------------------------------------------------------------
 440 // Internal VM locks on java objects
 441 // standard constructor, allows locking failures
 442 ObjectLocker::ObjectLocker(Handle obj, Thread* thread, bool doLock) {
 443   _dolock = doLock;
 444   _thread = thread;
 445   debug_only(if (StrictSafepointChecks) _thread->check_for_valid_safepoint_state(false);)
 446   _obj = obj;
 447 
 448   if (_dolock) {
 449     ObjectSynchronizer::fast_enter(_obj, &_lock, false, _thread);
 450   }
 451 }
 452 
 453 ObjectLocker::~ObjectLocker() {
 454   if (_dolock) {
 455     ObjectSynchronizer::fast_exit(_obj(), &_lock, _thread);
 456   }
 457 }
 458 
 459 
 460 // -----------------------------------------------------------------------------
 461 //  Wait/Notify/NotifyAll
 462 // NOTE: must use heavy weight monitor to handle wait()
 463 int ObjectSynchronizer::wait(Handle obj, jlong millis, TRAPS) {
 464   if (UseBiasedLocking) {
 465     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 466     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 467   }
 468   if (millis < 0) {
 469     THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "timeout value is negative");
 470   }
 471   ObjectMonitor* monitor = inflate(THREAD, obj(), inflate_cause_wait);
 472 
 473   DTRACE_MONITOR_WAIT_PROBE(monitor, obj(), THREAD, millis);
 474   monitor->wait(millis, true, THREAD);
 475 
 476   // This dummy call is in place to get around dtrace bug 6254741.  Once
 477   // that's fixed we can uncomment the following line, remove the call
 478   // and change this function back into a "void" func.
 479   // DTRACE_MONITOR_PROBE(waited, monitor, obj(), THREAD);
 480   return dtrace_waited_probe(monitor, obj, THREAD);
 481 }
 482 
 483 void ObjectSynchronizer::waitUninterruptibly(Handle obj, jlong millis, TRAPS) {
 484   if (UseBiasedLocking) {
 485     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 486     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 487   }
 488   if (millis < 0) {
 489     THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "timeout value is negative");
 490   }
 491   inflate(THREAD, obj(), inflate_cause_wait)->wait(millis, false, THREAD);
 492 }
 493 
 494 void ObjectSynchronizer::notify(Handle obj, TRAPS) {
 495   if (UseBiasedLocking) {
 496     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 497     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 498   }
 499 
 500   markOop mark = obj->mark();
 501   if (mark->has_locker() && THREAD->is_lock_owned((address)mark->locker())) {
 502     return;
 503   }
 504   inflate(THREAD, obj(), inflate_cause_notify)->notify(THREAD);
 505 }
 506 
 507 // NOTE: see comment of notify()
 508 void ObjectSynchronizer::notifyall(Handle obj, TRAPS) {
 509   if (UseBiasedLocking) {
 510     BiasedLocking::revoke_and_rebias(obj, false, THREAD);
 511     assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 512   }
 513 
 514   markOop mark = obj->mark();
 515   if (mark->has_locker() && THREAD->is_lock_owned((address)mark->locker())) {
 516     return;
 517   }
 518   inflate(THREAD, obj(), inflate_cause_notify)->notifyAll(THREAD);
 519 }
 520 
 521 // -----------------------------------------------------------------------------
 522 // Hash Code handling
 523 //
 524 // Performance concern:
 525 // OrderAccess::storestore() calls release() which at one time stored 0
 526 // into the global volatile OrderAccess::dummy variable. This store was
 527 // unnecessary for correctness. Many threads storing into a common location
 528 // causes considerable cache migration or "sloshing" on large SMP systems.
 529 // As such, I avoided using OrderAccess::storestore(). In some cases
 530 // OrderAccess::fence() -- which incurs local latency on the executing
 531 // processor -- is a better choice as it scales on SMP systems.
 532 //
 533 // See http://blogs.oracle.com/dave/entry/biased_locking_in_hotspot for
 534 // a discussion of coherency costs. Note that all our current reference
 535 // platforms provide strong ST-ST order, so the issue is moot on IA32,
 536 // x64, and SPARC.
 537 //
 538 // As a general policy we use "volatile" to control compiler-based reordering
 539 // and explicit fences (barriers) to control for architectural reordering
 540 // performed by the CPU(s) or platform.
 541 
 542 struct SharedGlobals {
 543   char         _pad_prefix[DEFAULT_CACHE_LINE_SIZE];
 544   // These are highly shared mostly-read variables.
 545   // To avoid false-sharing they need to be the sole occupants of a cache line.
 546   volatile int stwRandom;
 547   volatile int stwCycle;
 548   DEFINE_PAD_MINUS_SIZE(1, DEFAULT_CACHE_LINE_SIZE, sizeof(volatile int) * 2);
 549   // Hot RW variable -- Sequester to avoid false-sharing
 550   volatile int hcSequence;
 551   DEFINE_PAD_MINUS_SIZE(2, DEFAULT_CACHE_LINE_SIZE, sizeof(volatile int));
 552 };
 553 
 554 static SharedGlobals GVars;
 555 static int MonitorScavengeThreshold = 1000000;
 556 static volatile int ForceMonitorScavenge = 0; // Scavenge required and pending
 557 
 558 static markOop ReadStableMark(oop obj) {
 559   markOop mark = obj->mark();
 560   if (!mark->is_being_inflated()) {
 561     return mark;       // normal fast-path return
 562   }
 563 
 564   int its = 0;
 565   for (;;) {
 566     markOop mark = obj->mark();
 567     if (!mark->is_being_inflated()) {
 568       return mark;    // normal fast-path return
 569     }
 570 
 571     // The object is being inflated by some other thread.
 572     // The caller of ReadStableMark() must wait for inflation to complete.
 573     // Avoid live-lock
 574     // TODO: consider calling SafepointSynchronize::do_call_back() while
 575     // spinning to see if there's a safepoint pending.  If so, immediately
 576     // yielding or blocking would be appropriate.  Avoid spinning while
 577     // there is a safepoint pending.
 578     // TODO: add inflation contention performance counters.
 579     // TODO: restrict the aggregate number of spinners.
 580 
 581     ++its;
 582     if (its > 10000 || !os::is_MP()) {
 583       if (its & 1) {
 584         os::naked_yield();
 585       } else {
 586         // Note that the following code attenuates the livelock problem but is not
 587         // a complete remedy.  A more complete solution would require that the inflating
 588         // thread hold the associated inflation lock.  The following code simply restricts
 589         // the number of spinners to at most one.  We'll have N-2 threads blocked
 590         // on the inflationlock, 1 thread holding the inflation lock and using
 591         // a yield/park strategy, and 1 thread in the midst of inflation.
 592         // A more refined approach would be to change the encoding of INFLATING
 593         // to allow encapsulation of a native thread pointer.  Threads waiting for
 594         // inflation to complete would use CAS to push themselves onto a singly linked
 595         // list rooted at the markword.  Once enqueued, they'd loop, checking a per-thread flag
 596         // and calling park().  When inflation was complete the thread that accomplished inflation
 597         // would detach the list and set the markword to inflated with a single CAS and
 598         // then for each thread on the list, set the flag and unpark() the thread.
 599         // This is conceptually similar to muxAcquire-muxRelease, except that muxRelease
 600         // wakes at most one thread whereas we need to wake the entire list.
 601         int ix = (cast_from_oop<intptr_t>(obj) >> 5) & (NINFLATIONLOCKS-1);
 602         int YieldThenBlock = 0;
 603         assert(ix >= 0 && ix < NINFLATIONLOCKS, "invariant");
 604         assert((NINFLATIONLOCKS & (NINFLATIONLOCKS-1)) == 0, "invariant");
 605         Thread::muxAcquire(gInflationLocks + ix, "gInflationLock");
 606         while (obj->mark() == markOopDesc::INFLATING()) {
 607           // Beware: NakedYield() is advisory and has almost no effect on some platforms
 608           // so we periodically call Self->_ParkEvent->park(1).
 609           // We use a mixed spin/yield/block mechanism.
 610           if ((YieldThenBlock++) >= 16) {
 611             Thread::current()->_ParkEvent->park(1);
 612           } else {
 613             os::naked_yield();
 614           }
 615         }
 616         Thread::muxRelease(gInflationLocks + ix);
 617       }
 618     } else {
 619       SpinPause();       // SMP-polite spinning
 620     }
 621   }
 622 }
 623 
 624 // hashCode() generation :
 625 //
 626 // Possibilities:
 627 // * MD5Digest of {obj,stwRandom}
 628 // * CRC32 of {obj,stwRandom} or any linear-feedback shift register function.
 629 // * A DES- or AES-style SBox[] mechanism
 630 // * One of the Phi-based schemes, such as:
 631 //   2654435761 = 2^32 * Phi (golden ratio)
 632 //   HashCodeValue = ((uintptr_t(obj) >> 3) * 2654435761) ^ GVars.stwRandom ;
 633 // * A variation of Marsaglia's shift-xor RNG scheme.
 634 // * (obj ^ stwRandom) is appealing, but can result
 635 //   in undesirable regularity in the hashCode values of adjacent objects
 636 //   (objects allocated back-to-back, in particular).  This could potentially
 637 //   result in hashtable collisions and reduced hashtable efficiency.
 638 //   There are simple ways to "diffuse" the middle address bits over the
 639 //   generated hashCode values:
 640 
 641 static inline intptr_t get_next_hash(Thread * Self, oop obj) {
 642   intptr_t value = 0;
 643   if (hashCode == 0) {
 644     // This form uses global Park-Miller RNG.
 645     // On MP system we'll have lots of RW access to a global, so the
 646     // mechanism induces lots of coherency traffic.
 647     value = os::random();
 648   } else if (hashCode == 1) {
 649     // This variation has the property of being stable (idempotent)
 650     // between STW operations.  This can be useful in some of the 1-0
 651     // synchronization schemes.
 652     intptr_t addrBits = cast_from_oop<intptr_t>(obj) >> 3;
 653     value = addrBits ^ (addrBits >> 5) ^ GVars.stwRandom;
 654   } else if (hashCode == 2) {
 655     value = 1;            // for sensitivity testing
 656   } else if (hashCode == 3) {
 657     value = ++GVars.hcSequence;
 658   } else if (hashCode == 4) {
 659     value = cast_from_oop<intptr_t>(obj);
 660   } else {
 661     // Marsaglia's xor-shift scheme with thread-specific state
 662     // This is probably the best overall implementation -- we'll
 663     // likely make this the default in future releases.
 664     unsigned t = Self->_hashStateX;
 665     t ^= (t << 11);
 666     Self->_hashStateX = Self->_hashStateY;
 667     Self->_hashStateY = Self->_hashStateZ;
 668     Self->_hashStateZ = Self->_hashStateW;
 669     unsigned v = Self->_hashStateW;
 670     v = (v ^ (v >> 19)) ^ (t ^ (t >> 8));
 671     Self->_hashStateW = v;
 672     value = v;
 673   }
 674 
 675   value &= markOopDesc::hash_mask;
 676   if (value == 0) value = 0xBAD;
 677   assert(value != markOopDesc::no_hash, "invariant");
 678   return value;
 679 }
 680 
 681 intptr_t ObjectSynchronizer::FastHashCode(Thread * Self, oop obj) {
 682   if (UseBiasedLocking) {
 683     // NOTE: many places throughout the JVM do not expect a safepoint
 684     // to be taken here, in particular most operations on perm gen
 685     // objects. However, we only ever bias Java instances and all of
 686     // the call sites of identity_hash that might revoke biases have
 687     // been checked to make sure they can handle a safepoint. The
 688     // added check of the bias pattern is to avoid useless calls to
 689     // thread-local storage.
 690     if (obj->mark()->has_bias_pattern()) {
 691       // Handle for oop obj in case of STW safepoint
 692       Handle hobj(Self, obj);
 693       // Relaxing assertion for bug 6320749.
 694       assert(Universe::verify_in_progress() ||
 695              !SafepointSynchronize::is_at_safepoint(),
 696              "biases should not be seen by VM thread here");
 697       BiasedLocking::revoke_and_rebias(hobj, false, JavaThread::current());
 698       obj = hobj();
 699       assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 700     }
 701   }
 702 
 703   // hashCode() is a heap mutator ...
 704   // Relaxing assertion for bug 6320749.
 705   assert(Universe::verify_in_progress() || DumpSharedSpaces ||
 706          !SafepointSynchronize::is_at_safepoint(), "invariant");
 707   assert(Universe::verify_in_progress() || DumpSharedSpaces ||
 708          Self->is_Java_thread() , "invariant");
 709   assert(Universe::verify_in_progress() || DumpSharedSpaces ||
 710          ((JavaThread *)Self)->thread_state() != _thread_blocked, "invariant");
 711 
 712   ObjectMonitor* monitor = NULL;
 713   markOop temp, test;
 714   intptr_t hash;
 715   markOop mark = ReadStableMark(obj);
 716 
 717   // object should remain ineligible for biased locking
 718   assert(!mark->has_bias_pattern(), "invariant");
 719 
 720   if (mark->is_neutral()) {
 721     hash = mark->hash();              // this is a normal header
 722     if (hash != 0) {                  // if it has hash, just return it
 723       return hash;
 724     }
 725     hash = get_next_hash(Self, obj);  // allocate a new hash code
 726     temp = mark->copy_set_hash(hash); // merge the hash code into header
 727     // use (machine word version) atomic operation to install the hash
 728     test = obj->cas_set_mark(temp, mark);
 729     if (test == mark) {
 730       return hash;
 731     }
 732     // If atomic operation failed, we must inflate the header
 733     // into heavy weight monitor. We could add more code here
 734     // for fast path, but it does not worth the complexity.
 735   } else if (mark->has_monitor()) {
 736     monitor = mark->monitor();
 737     temp = monitor->header();
 738     assert(temp->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(temp));
 739     hash = temp->hash();
 740     if (hash != 0) {
 741       return hash;
 742     }
 743     // Skip to the following code to reduce code size
 744   } else if (Self->is_lock_owned((address)mark->locker())) {
 745     temp = mark->displaced_mark_helper(); // this is a lightweight monitor owned
 746     assert(temp->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(temp));
 747     hash = temp->hash();              // by current thread, check if the displaced
 748     if (hash != 0) {                  // header contains hash code
 749       return hash;
 750     }
 751     // WARNING:
 752     // The displaced header in the BasicLock on a thread's stack
 753     // is strictly immutable. It CANNOT be changed in ANY cases.
 754     // So we have to inflate the stack lock into an ObjectMonitor
 755     // even if the current thread owns the lock. The BasicLock on
 756     // a thread's stack can be asynchronously read by other threads
 757     // during an inflate() call so any change to that stack memory
 758     // may not propagate to other threads correctly.
 759   }
 760 
 761   // Inflate the monitor to set hash code
 762   monitor = inflate(Self, obj, inflate_cause_hash_code);
 763   // Load displaced header and check it has hash code
 764   mark = monitor->header();
 765   assert(mark->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(mark));
 766   hash = mark->hash();
 767   if (hash == 0) {
 768     hash = get_next_hash(Self, obj);
 769     temp = mark->copy_set_hash(hash); // merge hash code into header
 770     assert(temp->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(temp));
 771     test = Atomic::cmpxchg(temp, monitor->header_addr(), mark);
 772     if (test != mark) {
 773       // The only update to the ObjectMonitor's header/dmw field
 774       // is to merge in the hash code. If someone adds a new usage
 775       // of the header/dmw field, please update this code.
 776       hash = test->hash();
 777       assert(test->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(test));
 778       assert(hash != 0, "Trivial unexpected object/monitor header usage.");
 779     }
 780   }
 781   // We finally get the hash
 782   return hash;
 783 }
 784 
 785 // Deprecated -- use FastHashCode() instead.
 786 
 787 intptr_t ObjectSynchronizer::identity_hash_value_for(Handle obj) {
 788   return FastHashCode(Thread::current(), obj());
 789 }
 790 
 791 
 792 bool ObjectSynchronizer::current_thread_holds_lock(JavaThread* thread,
 793                                                    Handle h_obj) {
 794   if (UseBiasedLocking) {
 795     BiasedLocking::revoke_and_rebias(h_obj, false, thread);
 796     assert(!h_obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 797   }
 798 
 799   assert(thread == JavaThread::current(), "Can only be called on current thread");
 800   oop obj = h_obj();
 801 
 802   markOop mark = ReadStableMark(obj);
 803 
 804   // Uncontended case, header points to stack
 805   if (mark->has_locker()) {
 806     return thread->is_lock_owned((address)mark->locker());
 807   }
 808   // Contended case, header points to ObjectMonitor (tagged pointer)
 809   if (mark->has_monitor()) {
 810     ObjectMonitor* monitor = mark->monitor();
 811     return monitor->is_entered(thread) != 0;
 812   }
 813   // Unlocked case, header in place
 814   assert(mark->is_neutral(), "sanity check");
 815   return false;
 816 }
 817 
 818 // Be aware of this method could revoke bias of the lock object.
 819 // This method queries the ownership of the lock handle specified by 'h_obj'.
 820 // If the current thread owns the lock, it returns owner_self. If no
 821 // thread owns the lock, it returns owner_none. Otherwise, it will return
 822 // owner_other.
 823 ObjectSynchronizer::LockOwnership ObjectSynchronizer::query_lock_ownership
 824 (JavaThread *self, Handle h_obj) {
 825   // The caller must beware this method can revoke bias, and
 826   // revocation can result in a safepoint.
 827   assert(!SafepointSynchronize::is_at_safepoint(), "invariant");
 828   assert(self->thread_state() != _thread_blocked, "invariant");
 829 
 830   // Possible mark states: neutral, biased, stack-locked, inflated
 831 
 832   if (UseBiasedLocking && h_obj()->mark()->has_bias_pattern()) {
 833     // CASE: biased
 834     BiasedLocking::revoke_and_rebias(h_obj, false, self);
 835     assert(!h_obj->mark()->has_bias_pattern(),
 836            "biases should be revoked by now");
 837   }
 838 
 839   assert(self == JavaThread::current(), "Can only be called on current thread");
 840   oop obj = h_obj();
 841   markOop mark = ReadStableMark(obj);
 842 
 843   // CASE: stack-locked.  Mark points to a BasicLock on the owner's stack.
 844   if (mark->has_locker()) {
 845     return self->is_lock_owned((address)mark->locker()) ?
 846       owner_self : owner_other;
 847   }
 848 
 849   // CASE: inflated. Mark (tagged pointer) points to an ObjectMonitor.
 850   // The Object:ObjectMonitor relationship is stable as long as we're
 851   // not at a safepoint.
 852   if (mark->has_monitor()) {
 853     void * owner = mark->monitor()->_owner;
 854     if (owner == NULL) return owner_none;
 855     return (owner == self ||
 856             self->is_lock_owned((address)owner)) ? owner_self : owner_other;
 857   }
 858 
 859   // CASE: neutral
 860   assert(mark->is_neutral(), "sanity check");
 861   return owner_none;           // it's unlocked
 862 }
 863 
 864 // FIXME: jvmti should call this
 865 JavaThread* ObjectSynchronizer::get_lock_owner(ThreadsList * t_list, Handle h_obj) {
 866   if (UseBiasedLocking) {
 867     if (SafepointSynchronize::is_at_safepoint()) {
 868       BiasedLocking::revoke_at_safepoint(h_obj);
 869     } else {
 870       BiasedLocking::revoke_and_rebias(h_obj, false, JavaThread::current());
 871     }
 872     assert(!h_obj->mark()->has_bias_pattern(), "biases should be revoked by now");
 873   }
 874 
 875   oop obj = h_obj();
 876   address owner = NULL;
 877 
 878   markOop mark = ReadStableMark(obj);
 879 
 880   // Uncontended case, header points to stack
 881   if (mark->has_locker()) {
 882     owner = (address) mark->locker();
 883   }
 884 
 885   // Contended case, header points to ObjectMonitor (tagged pointer)
 886   else if (mark->has_monitor()) {
 887     ObjectMonitor* monitor = mark->monitor();
 888     assert(monitor != NULL, "monitor should be non-null");
 889     owner = (address) monitor->owner();
 890   }
 891 
 892   if (owner != NULL) {
 893     // owning_thread_from_monitor_owner() may also return NULL here
 894     return Threads::owning_thread_from_monitor_owner(t_list, owner);
 895   }
 896 
 897   // Unlocked case, header in place
 898   // Cannot have assertion since this object may have been
 899   // locked by another thread when reaching here.
 900   // assert(mark->is_neutral(), "sanity check");
 901 
 902   return NULL;
 903 }
 904 
 905 // Visitors ...
 906 
 907 void ObjectSynchronizer::monitors_iterate(MonitorClosure* closure) {
 908   PaddedEnd<ObjectMonitor> * block = OrderAccess::load_acquire(&gBlockList);
 909   while (block != NULL) {
 910     assert(block->object() == CHAINMARKER, "must be a block header");
 911     for (int i = _BLOCKSIZE - 1; i > 0; i--) {
 912       ObjectMonitor* mid = (ObjectMonitor *)(block + i);
 913       oop object = (oop)mid->object();
 914       if (object != NULL) {
 915         closure->do_monitor(mid);
 916       }
 917     }
 918     block = (PaddedEnd<ObjectMonitor> *)block->FreeNext;
 919   }
 920 }
 921 
 922 // Get the next block in the block list.
 923 static inline PaddedEnd<ObjectMonitor>* next(PaddedEnd<ObjectMonitor>* block) {
 924   assert(block->object() == CHAINMARKER, "must be a block header");
 925   block = (PaddedEnd<ObjectMonitor>*) block->FreeNext;
 926   assert(block == NULL || block->object() == CHAINMARKER, "must be a block header");
 927   return block;
 928 }
 929 
 930 static bool monitors_used_above_threshold() {
 931   if (gMonitorPopulation == 0) {
 932     return false;
 933   }
 934   int monitors_used = gMonitorPopulation - gMonitorFreeCount;
 935   int monitor_usage = (monitors_used * 100LL) / gMonitorPopulation;
 936   return monitor_usage > MonitorUsedDeflationThreshold;
 937 }
 938 
 939 bool ObjectSynchronizer::is_cleanup_needed() {
 940   if (MonitorUsedDeflationThreshold > 0) {
 941     return monitors_used_above_threshold();
 942   }
 943   return false;
 944 }
 945 
 946 void ObjectSynchronizer::oops_do(OopClosure* f) {
 947   // We only scan the global used list here (for moribund threads), and
 948   // the thread-local monitors in Thread::oops_do().
 949   global_used_oops_do(f);
 950 }
 951 
 952 void ObjectSynchronizer::global_used_oops_do(OopClosure* f) {
 953   assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
 954   list_oops_do(gOmInUseList, f);
 955 }
 956 
 957 void ObjectSynchronizer::thread_local_used_oops_do(Thread* thread, OopClosure* f) {
 958   assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
 959   list_oops_do(thread->omInUseList, f);
 960 }
 961 
 962 void ObjectSynchronizer::list_oops_do(ObjectMonitor* list, OopClosure* f) {
 963   assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
 964   ObjectMonitor* mid;
 965   for (mid = list; mid != NULL; mid = mid->FreeNext) {
 966     if (mid->object() != NULL) {
 967       f->do_oop((oop*)mid->object_addr());
 968     }
 969   }
 970 }
 971 
 972 
 973 // -----------------------------------------------------------------------------
 974 // ObjectMonitor Lifecycle
 975 // -----------------------
 976 // Inflation unlinks monitors from the global gFreeList and
 977 // associates them with objects.  Deflation -- which occurs at
 978 // STW-time -- disassociates idle monitors from objects.  Such
 979 // scavenged monitors are returned to the gFreeList.
 980 //
 981 // The global list is protected by gListLock.  All the critical sections
 982 // are short and operate in constant-time.
 983 //
 984 // ObjectMonitors reside in type-stable memory (TSM) and are immortal.
 985 //
 986 // Lifecycle:
 987 // --   unassigned and on the global free list
 988 // --   unassigned and on a thread's private omFreeList
 989 // --   assigned to an object.  The object is inflated and the mark refers
 990 //      to the objectmonitor.
 991 
 992 
 993 // Constraining monitor pool growth via MonitorBound ...
 994 //
 995 // The monitor pool is grow-only.  We scavenge at STW safepoint-time, but the
 996 // the rate of scavenging is driven primarily by GC.  As such,  we can find
 997 // an inordinate number of monitors in circulation.
 998 // To avoid that scenario we can artificially induce a STW safepoint
 999 // if the pool appears to be growing past some reasonable bound.
1000 // Generally we favor time in space-time tradeoffs, but as there's no
1001 // natural back-pressure on the # of extant monitors we need to impose some
1002 // type of limit.  Beware that if MonitorBound is set to too low a value
1003 // we could just loop. In addition, if MonitorBound is set to a low value
1004 // we'll incur more safepoints, which are harmful to performance.
1005 // See also: GuaranteedSafepointInterval
1006 //
1007 // The current implementation uses asynchronous VM operations.
1008 
1009 static void InduceScavenge(Thread * Self, const char * Whence) {
1010   // Induce STW safepoint to trim monitors
1011   // Ultimately, this results in a call to deflate_idle_monitors() in the near future.
1012   // More precisely, trigger an asynchronous STW safepoint as the number
1013   // of active monitors passes the specified threshold.
1014   // TODO: assert thread state is reasonable
1015 
1016   if (ForceMonitorScavenge == 0 && Atomic::xchg (1, &ForceMonitorScavenge) == 0) {
1017     // Induce a 'null' safepoint to scavenge monitors
1018     // Must VM_Operation instance be heap allocated as the op will be enqueue and posted
1019     // to the VMthread and have a lifespan longer than that of this activation record.
1020     // The VMThread will delete the op when completed.
1021     VMThread::execute(new VM_ScavengeMonitors());
1022   }
1023 }
1024 
1025 ObjectMonitor* ObjectSynchronizer::omAlloc(Thread * Self) {
1026   // A large MAXPRIVATE value reduces both list lock contention
1027   // and list coherency traffic, but also tends to increase the
1028   // number of objectMonitors in circulation as well as the STW
1029   // scavenge costs.  As usual, we lean toward time in space-time
1030   // tradeoffs.
1031   const int MAXPRIVATE = 1024;
1032   for (;;) {
1033     ObjectMonitor * m;
1034 
1035     // 1: try to allocate from the thread's local omFreeList.
1036     // Threads will attempt to allocate first from their local list, then
1037     // from the global list, and only after those attempts fail will the thread
1038     // attempt to instantiate new monitors.   Thread-local free lists take
1039     // heat off the gListLock and improve allocation latency, as well as reducing
1040     // coherency traffic on the shared global list.
1041     m = Self->omFreeList;
1042     if (m != NULL) {
1043       Self->omFreeList = m->FreeNext;
1044       Self->omFreeCount--;
1045       guarantee(m->object() == NULL, "invariant");
1046       m->FreeNext = Self->omInUseList;
1047       Self->omInUseList = m;
1048       Self->omInUseCount++;
1049       return m;
1050     }
1051 
1052     // 2: try to allocate from the global gFreeList
1053     // CONSIDER: use muxTry() instead of muxAcquire().
1054     // If the muxTry() fails then drop immediately into case 3.
1055     // If we're using thread-local free lists then try
1056     // to reprovision the caller's free list.
1057     if (gFreeList != NULL) {
1058       // Reprovision the thread's omFreeList.
1059       // Use bulk transfers to reduce the allocation rate and heat
1060       // on various locks.
1061       Thread::muxAcquire(&gListLock, "omAlloc(1)");
1062       for (int i = Self->omFreeProvision; --i >= 0 && gFreeList != NULL;) {
1063         gMonitorFreeCount--;
1064         ObjectMonitor * take = gFreeList;
1065         gFreeList = take->FreeNext;
1066         guarantee(take->object() == NULL, "invariant");
1067         guarantee(!take->is_busy(), "invariant");
1068         take->Recycle();
1069         omRelease(Self, take, false);
1070       }
1071       Thread::muxRelease(&gListLock);
1072       Self->omFreeProvision += 1 + (Self->omFreeProvision/2);
1073       if (Self->omFreeProvision > MAXPRIVATE) Self->omFreeProvision = MAXPRIVATE;
1074 
1075       const int mx = MonitorBound;
1076       if (mx > 0 && (gMonitorPopulation-gMonitorFreeCount) > mx) {
1077         // We can't safely induce a STW safepoint from omAlloc() as our thread
1078         // state may not be appropriate for such activities and callers may hold
1079         // naked oops, so instead we defer the action.
1080         InduceScavenge(Self, "omAlloc");
1081       }
1082       continue;
1083     }
1084 
1085     // 3: allocate a block of new ObjectMonitors
1086     // Both the local and global free lists are empty -- resort to malloc().
1087     // In the current implementation objectMonitors are TSM - immortal.
1088     // Ideally, we'd write "new ObjectMonitor[_BLOCKSIZE], but we want
1089     // each ObjectMonitor to start at the beginning of a cache line,
1090     // so we use align_up().
1091     // A better solution would be to use C++ placement-new.
1092     // BEWARE: As it stands currently, we don't run the ctors!
1093     assert(_BLOCKSIZE > 1, "invariant");
1094     size_t neededsize = sizeof(PaddedEnd<ObjectMonitor>) * _BLOCKSIZE;
1095     PaddedEnd<ObjectMonitor> * temp;
1096     size_t aligned_size = neededsize + (DEFAULT_CACHE_LINE_SIZE - 1);
1097     void* real_malloc_addr = (void *)NEW_C_HEAP_ARRAY(char, aligned_size,
1098                                                       mtInternal);
1099     temp = (PaddedEnd<ObjectMonitor> *)
1100              align_up(real_malloc_addr, DEFAULT_CACHE_LINE_SIZE);
1101 
1102     // NOTE: (almost) no way to recover if allocation failed.
1103     // We might be able to induce a STW safepoint and scavenge enough
1104     // objectMonitors to permit progress.
1105     if (temp == NULL) {
1106       vm_exit_out_of_memory(neededsize, OOM_MALLOC_ERROR,
1107                             "Allocate ObjectMonitors");
1108     }
1109     (void)memset((void *) temp, 0, neededsize);
1110 
1111     // Format the block.
1112     // initialize the linked list, each monitor points to its next
1113     // forming the single linked free list, the very first monitor
1114     // will points to next block, which forms the block list.
1115     // The trick of using the 1st element in the block as gBlockList
1116     // linkage should be reconsidered.  A better implementation would
1117     // look like: class Block { Block * next; int N; ObjectMonitor Body [N] ; }
1118 
1119     for (int i = 1; i < _BLOCKSIZE; i++) {
1120       temp[i].FreeNext = (ObjectMonitor *)&temp[i+1];
1121     }
1122 
1123     // terminate the last monitor as the end of list
1124     temp[_BLOCKSIZE - 1].FreeNext = NULL;
1125 
1126     // Element [0] is reserved for global list linkage
1127     temp[0].set_object(CHAINMARKER);
1128 
1129     // Consider carving out this thread's current request from the
1130     // block in hand.  This avoids some lock traffic and redundant
1131     // list activity.
1132 
1133     // Acquire the gListLock to manipulate gBlockList and gFreeList.
1134     // An Oyama-Taura-Yonezawa scheme might be more efficient.
1135     Thread::muxAcquire(&gListLock, "omAlloc(2)");
1136     gMonitorPopulation += _BLOCKSIZE-1;
1137     gMonitorFreeCount += _BLOCKSIZE-1;
1138 
1139     // Add the new block to the list of extant blocks (gBlockList).
1140     // The very first objectMonitor in a block is reserved and dedicated.
1141     // It serves as blocklist "next" linkage.
1142     temp[0].FreeNext = gBlockList;
1143     // There are lock-free uses of gBlockList so make sure that
1144     // the previous stores happen before we update gBlockList.
1145     OrderAccess::release_store(&gBlockList, temp);
1146 
1147     // Add the new string of objectMonitors to the global free list
1148     temp[_BLOCKSIZE - 1].FreeNext = gFreeList;
1149     gFreeList = temp + 1;
1150     Thread::muxRelease(&gListLock);
1151   }
1152 }
1153 
1154 // Place "m" on the caller's private per-thread omFreeList.
1155 // In practice there's no need to clamp or limit the number of
1156 // monitors on a thread's omFreeList as the only time we'll call
1157 // omRelease is to return a monitor to the free list after a CAS
1158 // attempt failed.  This doesn't allow unbounded #s of monitors to
1159 // accumulate on a thread's free list.
1160 //
1161 // Key constraint: all ObjectMonitors on a thread's free list and the global
1162 // free list must have their object field set to null. This prevents the
1163 // scavenger -- deflate_monitor_list() -- from reclaiming them.
1164 
1165 void ObjectSynchronizer::omRelease(Thread * Self, ObjectMonitor * m,
1166                                    bool fromPerThreadAlloc) {
1167   guarantee(m->header() == NULL, "invariant");
1168   guarantee(m->object() == NULL, "invariant");
1169   guarantee(((m->is_busy()|m->_recursions) == 0), "freeing in-use monitor");
1170   // Remove from omInUseList
1171   if (fromPerThreadAlloc) {
1172     ObjectMonitor* cur_mid_in_use = NULL;
1173     bool extracted = false;
1174     for (ObjectMonitor* mid = Self->omInUseList; mid != NULL; cur_mid_in_use = mid, mid = mid->FreeNext) {
1175       if (m == mid) {
1176         // extract from per-thread in-use list
1177         if (mid == Self->omInUseList) {
1178           Self->omInUseList = mid->FreeNext;
1179         } else if (cur_mid_in_use != NULL) {
1180           cur_mid_in_use->FreeNext = mid->FreeNext; // maintain the current thread in-use list
1181         }
1182         extracted = true;
1183         Self->omInUseCount--;
1184         break;
1185       }
1186     }
1187     assert(extracted, "Should have extracted from in-use list");
1188   }
1189 
1190   // FreeNext is used for both omInUseList and omFreeList, so clear old before setting new
1191   m->FreeNext = Self->omFreeList;
1192   Self->omFreeList = m;
1193   Self->omFreeCount++;
1194 }
1195 
1196 // Return the monitors of a moribund thread's local free list to
1197 // the global free list.  Typically a thread calls omFlush() when
1198 // it's dying.  We could also consider having the VM thread steal
1199 // monitors from threads that have not run java code over a few
1200 // consecutive STW safepoints.  Relatedly, we might decay
1201 // omFreeProvision at STW safepoints.
1202 //
1203 // Also return the monitors of a moribund thread's omInUseList to
1204 // a global gOmInUseList under the global list lock so these
1205 // will continue to be scanned.
1206 //
1207 // We currently call omFlush() from Threads::remove() _before the thread
1208 // has been excised from the thread list and is no longer a mutator.
1209 // This means that omFlush() cannot run concurrently with a safepoint and
1210 // interleave with the deflate_idle_monitors scavenge operator. In particular,
1211 // this ensures that the thread's monitors are scanned by a GC safepoint,
1212 // either via Thread::oops_do() (if safepoint happens before omFlush()) or via
1213 // ObjectSynchronizer::oops_do() (if it happens after omFlush() and the thread's
1214 // monitors have been transferred to the global in-use list).
1215 
1216 void ObjectSynchronizer::omFlush(Thread * Self) {
1217   ObjectMonitor * list = Self->omFreeList;  // Null-terminated SLL
1218   ObjectMonitor * tail = NULL;
1219   int tally = 0;
1220   if (list != NULL) {
1221     ObjectMonitor * s;
1222     // The thread is going away, the per-thread free monitors
1223     // are freed via set_owner(NULL)
1224     // Link them to tail, which will be linked into the global free list
1225     // gFreeList below, under the gListLock
1226     for (s = list; s != NULL; s = s->FreeNext) {
1227       tally++;
1228       tail = s;
1229       guarantee(s->object() == NULL, "invariant");
1230       guarantee(!s->is_busy(), "invariant");
1231       s->set_owner(NULL);   // redundant but good hygiene
1232     }
1233     guarantee(tail != NULL, "invariant");
1234     assert(Self->omFreeCount == tally, "free-count off");
1235     Self->omFreeList = NULL;
1236     Self->omFreeCount = 0;
1237   }
1238 
1239   ObjectMonitor * inUseList = Self->omInUseList;
1240   ObjectMonitor * inUseTail = NULL;
1241   int inUseTally = 0;
1242   if (inUseList != NULL) {
1243     ObjectMonitor *cur_om;
1244     // The thread is going away, however the omInUseList inflated
1245     // monitors may still be in-use by other threads.
1246     // Link them to inUseTail, which will be linked into the global in-use list
1247     // gOmInUseList below, under the gListLock
1248     for (cur_om = inUseList; cur_om != NULL; cur_om = cur_om->FreeNext) {
1249       inUseTail = cur_om;
1250       inUseTally++;
1251     }
1252     guarantee(inUseTail != NULL, "invariant");
1253     assert(Self->omInUseCount == inUseTally, "in-use count off");
1254     Self->omInUseList = NULL;
1255     Self->omInUseCount = 0;
1256   }
1257 
1258   Thread::muxAcquire(&gListLock, "omFlush");
1259   if (tail != NULL) {
1260     tail->FreeNext = gFreeList;
1261     gFreeList = list;
1262     gMonitorFreeCount += tally;
1263   }
1264 
1265   if (inUseTail != NULL) {
1266     inUseTail->FreeNext = gOmInUseList;
1267     gOmInUseList = inUseList;
1268     gOmInUseCount += inUseTally;
1269   }
1270 
1271   Thread::muxRelease(&gListLock);
1272 
1273   LogStreamHandle(Debug, monitorinflation) lsh_debug;
1274   LogStreamHandle(Info, monitorinflation) lsh_info;
1275   LogStream * ls = NULL;
1276   if (log_is_enabled(Debug, monitorinflation)) {
1277     ls = &lsh_debug;
1278   } else if ((tally != 0 || inUseTally != 0) &&
1279              log_is_enabled(Info, monitorinflation)) {
1280     ls = &lsh_info;
1281   }
1282   if (ls != NULL) {
1283     ls->print_cr("omFlush: jt=" INTPTR_FORMAT ", free_monitor_tally=%d"
1284                  ", in_use_monitor_tally=%d" ", omFreeProvision=%d",
1285                  p2i(Self), tally, inUseTally, Self->omFreeProvision);
1286   }
1287 }
1288 
1289 static void post_monitor_inflate_event(EventJavaMonitorInflate* event,
1290                                        const oop obj,
1291                                        ObjectSynchronizer::InflateCause cause) {
1292   assert(event != NULL, "invariant");
1293   assert(event->should_commit(), "invariant");
1294   event->set_monitorClass(obj->klass());
1295   event->set_address((uintptr_t)(void*)obj);
1296   event->set_cause((u1)cause);
1297   event->commit();
1298 }
1299 
1300 // Fast path code shared by multiple functions
1301 void ObjectSynchronizer::inflate_helper(oop obj) {
1302   markOop mark = obj->mark();
1303   if (mark->has_monitor()) {
1304     assert(ObjectSynchronizer::verify_objmon_isinpool(mark->monitor()), "monitor is invalid");
1305     assert(mark->monitor()->header()->is_neutral(), "monitor must record a good object header");
1306     return;
1307   }
1308   inflate(Thread::current(), obj, inflate_cause_vm_internal);
1309 }
1310 
1311 ObjectMonitor* ObjectSynchronizer::inflate(Thread * Self,
1312                                            oop object,
1313                                            const InflateCause cause) {
1314   // Inflate mutates the heap ...
1315   // Relaxing assertion for bug 6320749.
1316   assert(Universe::verify_in_progress() ||
1317          !SafepointSynchronize::is_at_safepoint(), "invariant");
1318 
1319   EventJavaMonitorInflate event;
1320 
1321   for (;;) {
1322     const markOop mark = object->mark();
1323     assert(!mark->has_bias_pattern(), "invariant");
1324 
1325     // The mark can be in one of the following states:
1326     // *  Inflated     - just return
1327     // *  Stack-locked - coerce it to inflated
1328     // *  INFLATING    - busy wait for conversion to complete
1329     // *  Neutral      - aggressively inflate the object.
1330     // *  BIASED       - Illegal.  We should never see this
1331 
1332     // CASE: inflated
1333     if (mark->has_monitor()) {
1334       ObjectMonitor * inf = mark->monitor();
1335       markOop dmw = inf->header();
1336       assert(dmw->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(dmw));
1337       assert(oopDesc::equals((oop) inf->object(), object), "invariant");
1338       assert(ObjectSynchronizer::verify_objmon_isinpool(inf), "monitor is invalid");
1339       return inf;
1340     }
1341 
1342     // CASE: inflation in progress - inflating over a stack-lock.
1343     // Some other thread is converting from stack-locked to inflated.
1344     // Only that thread can complete inflation -- other threads must wait.
1345     // The INFLATING value is transient.
1346     // Currently, we spin/yield/park and poll the markword, waiting for inflation to finish.
1347     // We could always eliminate polling by parking the thread on some auxiliary list.
1348     if (mark == markOopDesc::INFLATING()) {
1349       ReadStableMark(object);
1350       continue;
1351     }
1352 
1353     // CASE: stack-locked
1354     // Could be stack-locked either by this thread or by some other thread.
1355     //
1356     // Note that we allocate the objectmonitor speculatively, _before_ attempting
1357     // to install INFLATING into the mark word.  We originally installed INFLATING,
1358     // allocated the objectmonitor, and then finally STed the address of the
1359     // objectmonitor into the mark.  This was correct, but artificially lengthened
1360     // the interval in which INFLATED appeared in the mark, thus increasing
1361     // the odds of inflation contention.
1362     //
1363     // We now use per-thread private objectmonitor free lists.
1364     // These list are reprovisioned from the global free list outside the
1365     // critical INFLATING...ST interval.  A thread can transfer
1366     // multiple objectmonitors en-mass from the global free list to its local free list.
1367     // This reduces coherency traffic and lock contention on the global free list.
1368     // Using such local free lists, it doesn't matter if the omAlloc() call appears
1369     // before or after the CAS(INFLATING) operation.
1370     // See the comments in omAlloc().
1371 
1372     LogStreamHandle(Trace, monitorinflation) lsh;
1373 
1374     if (mark->has_locker()) {
1375       ObjectMonitor * m = omAlloc(Self);
1376       // Optimistically prepare the objectmonitor - anticipate successful CAS
1377       // We do this before the CAS in order to minimize the length of time
1378       // in which INFLATING appears in the mark.
1379       m->Recycle();
1380       m->_Responsible  = NULL;
1381       m->_recursions   = 0;
1382       m->_SpinDuration = ObjectMonitor::Knob_SpinLimit;   // Consider: maintain by type/class
1383 
1384       markOop cmp = object->cas_set_mark(markOopDesc::INFLATING(), mark);
1385       if (cmp != mark) {
1386         omRelease(Self, m, true);
1387         continue;       // Interference -- just retry
1388       }
1389 
1390       // We've successfully installed INFLATING (0) into the mark-word.
1391       // This is the only case where 0 will appear in a mark-word.
1392       // Only the singular thread that successfully swings the mark-word
1393       // to 0 can perform (or more precisely, complete) inflation.
1394       //
1395       // Why do we CAS a 0 into the mark-word instead of just CASing the
1396       // mark-word from the stack-locked value directly to the new inflated state?
1397       // Consider what happens when a thread unlocks a stack-locked object.
1398       // It attempts to use CAS to swing the displaced header value from the
1399       // on-stack basiclock back into the object header.  Recall also that the
1400       // header value (hash code, etc) can reside in (a) the object header, or
1401       // (b) a displaced header associated with the stack-lock, or (c) a displaced
1402       // header in an objectMonitor.  The inflate() routine must copy the header
1403       // value from the basiclock on the owner's stack to the objectMonitor, all
1404       // the while preserving the hashCode stability invariants.  If the owner
1405       // decides to release the lock while the value is 0, the unlock will fail
1406       // and control will eventually pass from slow_exit() to inflate.  The owner
1407       // will then spin, waiting for the 0 value to disappear.   Put another way,
1408       // the 0 causes the owner to stall if the owner happens to try to
1409       // drop the lock (restoring the header from the basiclock to the object)
1410       // while inflation is in-progress.  This protocol avoids races that might
1411       // would otherwise permit hashCode values to change or "flicker" for an object.
1412       // Critically, while object->mark is 0 mark->displaced_mark_helper() is stable.
1413       // 0 serves as a "BUSY" inflate-in-progress indicator.
1414 
1415 
1416       // fetch the displaced mark from the owner's stack.
1417       // The owner can't die or unwind past the lock while our INFLATING
1418       // object is in the mark.  Furthermore the owner can't complete
1419       // an unlock on the object, either.
1420       markOop dmw = mark->displaced_mark_helper();
1421       // Catch if the object's header is not neutral (not locked and
1422       // not marked is what we care about here).
1423       assert(dmw->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(dmw));
1424 
1425       // Setup monitor fields to proper values -- prepare the monitor
1426       m->set_header(dmw);
1427 
1428       // Optimization: if the mark->locker stack address is associated
1429       // with this thread we could simply set m->_owner = Self.
1430       // Note that a thread can inflate an object
1431       // that it has stack-locked -- as might happen in wait() -- directly
1432       // with CAS.  That is, we can avoid the xchg-NULL .... ST idiom.
1433       m->set_owner(mark->locker());
1434       m->set_object(object);
1435       // TODO-FIXME: assert BasicLock->dhw != 0.
1436 
1437       // Must preserve store ordering. The monitor state must
1438       // be stable at the time of publishing the monitor address.
1439       guarantee(object->mark() == markOopDesc::INFLATING(), "invariant");
1440       object->release_set_mark(markOopDesc::encode(m));
1441 
1442       // Hopefully the performance counters are allocated on distinct cache lines
1443       // to avoid false sharing on MP systems ...
1444       OM_PERFDATA_OP(Inflations, inc());
1445       if (log_is_enabled(Trace, monitorinflation)) {
1446         ResourceMark rm(Self);
1447         lsh.print_cr("inflate(has_locker): object=" INTPTR_FORMAT ", mark="
1448                      INTPTR_FORMAT ", type='%s'", p2i(object),
1449                      p2i(object->mark()), object->klass()->external_name());
1450       }
1451       if (event.should_commit()) {
1452         post_monitor_inflate_event(&event, object, cause);
1453       }
1454       return m;
1455     }
1456 
1457     // CASE: neutral
1458     // TODO-FIXME: for entry we currently inflate and then try to CAS _owner.
1459     // If we know we're inflating for entry it's better to inflate by swinging a
1460     // pre-locked objectMonitor pointer into the object header.   A successful
1461     // CAS inflates the object *and* confers ownership to the inflating thread.
1462     // In the current implementation we use a 2-step mechanism where we CAS()
1463     // to inflate and then CAS() again to try to swing _owner from NULL to Self.
1464     // An inflateTry() method that we could call from fast_enter() and slow_enter()
1465     // would be useful.
1466 
1467     // Catch if the object's header is not neutral (not locked and
1468     // not marked is what we care about here).
1469     assert(mark->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(mark));
1470     ObjectMonitor * m = omAlloc(Self);
1471     // prepare m for installation - set monitor to initial state
1472     m->Recycle();
1473     m->set_header(mark);
1474     m->set_owner(NULL);
1475     m->set_object(object);
1476     m->_recursions   = 0;
1477     m->_Responsible  = NULL;
1478     m->_SpinDuration = ObjectMonitor::Knob_SpinLimit;       // consider: keep metastats by type/class
1479 
1480     if (object->cas_set_mark(markOopDesc::encode(m), mark) != mark) {
1481       m->set_header(NULL);
1482       m->set_object(NULL);
1483       m->Recycle();
1484       omRelease(Self, m, true);
1485       m = NULL;
1486       continue;
1487       // interference - the markword changed - just retry.
1488       // The state-transitions are one-way, so there's no chance of
1489       // live-lock -- "Inflated" is an absorbing state.
1490     }
1491 
1492     // Hopefully the performance counters are allocated on distinct
1493     // cache lines to avoid false sharing on MP systems ...
1494     OM_PERFDATA_OP(Inflations, inc());
1495     if (log_is_enabled(Trace, monitorinflation)) {
1496       ResourceMark rm(Self);
1497       lsh.print_cr("inflate(neutral): object=" INTPTR_FORMAT ", mark="
1498                    INTPTR_FORMAT ", type='%s'", p2i(object),
1499                    p2i(object->mark()), object->klass()->external_name());
1500     }
1501     if (event.should_commit()) {
1502       post_monitor_inflate_event(&event, object, cause);
1503     }
1504     return m;
1505   }
1506 }
1507 
1508 
1509 // We maintain a list of in-use monitors for each thread.
1510 //
1511 // deflate_thread_local_monitors() scans a single thread's in-use list, while
1512 // deflate_idle_monitors() scans only a global list of in-use monitors which
1513 // is populated only as a thread dies (see omFlush()).
1514 //
1515 // These operations are called at all safepoints, immediately after mutators
1516 // are stopped, but before any objects have moved. Collectively they traverse
1517 // the population of in-use monitors, deflating where possible. The scavenged
1518 // monitors are returned to the global monitor free list.
1519 //
1520 // Beware that we scavenge at *every* stop-the-world point. Having a large
1521 // number of monitors in-use could negatively impact performance. We also want
1522 // to minimize the total # of monitors in circulation, as they incur a small
1523 // footprint penalty.
1524 //
1525 // Perversely, the heap size -- and thus the STW safepoint rate --
1526 // typically drives the scavenge rate.  Large heaps can mean infrequent GC,
1527 // which in turn can mean large(r) numbers of ObjectMonitors in circulation.
1528 // This is an unfortunate aspect of this design.
1529 
1530 // Deflate a single monitor if not in-use
1531 // Return true if deflated, false if in-use
1532 bool ObjectSynchronizer::deflate_monitor(ObjectMonitor* mid, oop obj,
1533                                          ObjectMonitor** freeHeadp,
1534                                          ObjectMonitor** freeTailp) {
1535   bool deflated;
1536   // Normal case ... The monitor is associated with obj.
1537   const markOop mark = obj->mark();
1538   guarantee(mark == markOopDesc::encode(mid), "should match: mark="
1539             INTPTR_FORMAT ", encoded mid=" INTPTR_FORMAT, p2i(mark),
1540             p2i(markOopDesc::encode(mid)));
1541   // Make sure that mark->monitor() and markOopDesc::encode() agree:
1542   guarantee(mark->monitor() == mid, "should match: monitor()=" INTPTR_FORMAT
1543             ", mid=" INTPTR_FORMAT, p2i(mark->monitor()), p2i(mid));
1544   const markOop dmw = mid->header();
1545   guarantee(dmw->is_neutral(), "invariant: header=" INTPTR_FORMAT, p2i(dmw));
1546 
1547   if (mid->is_busy()) {
1548     deflated = false;
1549   } else {
1550     // Deflate the monitor if it is no longer being used
1551     // It's idle - scavenge and return to the global free list
1552     // plain old deflation ...
1553     if (log_is_enabled(Trace, monitorinflation)) {
1554       ResourceMark rm;
1555       log_trace(monitorinflation)("deflate_monitor: "
1556                                   "object=" INTPTR_FORMAT ", mark="
1557                                   INTPTR_FORMAT ", type='%s'", p2i(obj),
1558                                   p2i(mark), obj->klass()->external_name());
1559     }
1560 
1561     // Restore the header back to obj
1562     obj->release_set_mark(dmw);
1563     mid->clear();
1564 
1565     assert(mid->object() == NULL, "invariant: object=" INTPTR_FORMAT,
1566            p2i(mid->object()));
1567 
1568     // Move the object to the working free list defined by freeHeadp, freeTailp
1569     if (*freeHeadp == NULL) *freeHeadp = mid;
1570     if (*freeTailp != NULL) {
1571       ObjectMonitor * prevtail = *freeTailp;
1572       assert(prevtail->FreeNext == NULL, "cleaned up deflated?");
1573       prevtail->FreeNext = mid;
1574     }
1575     *freeTailp = mid;
1576     deflated = true;
1577   }
1578   return deflated;
1579 }
1580 
1581 // Walk a given monitor list, and deflate idle monitors
1582 // The given list could be a per-thread list or a global list
1583 // Caller acquires gListLock as needed.
1584 //
1585 // In the case of parallel processing of thread local monitor lists,
1586 // work is done by Threads::parallel_threads_do() which ensures that
1587 // each Java thread is processed by exactly one worker thread, and
1588 // thus avoid conflicts that would arise when worker threads would
1589 // process the same monitor lists concurrently.
1590 //
1591 // See also ParallelSPCleanupTask and
1592 // SafepointSynchronize::do_cleanup_tasks() in safepoint.cpp and
1593 // Threads::parallel_java_threads_do() in thread.cpp.
1594 int ObjectSynchronizer::deflate_monitor_list(ObjectMonitor** listHeadp,
1595                                              ObjectMonitor** freeHeadp,
1596                                              ObjectMonitor** freeTailp) {
1597   ObjectMonitor* mid;
1598   ObjectMonitor* next;
1599   ObjectMonitor* cur_mid_in_use = NULL;
1600   int deflated_count = 0;
1601 
1602   for (mid = *listHeadp; mid != NULL;) {
1603     oop obj = (oop) mid->object();
1604     if (obj != NULL && deflate_monitor(mid, obj, freeHeadp, freeTailp)) {
1605       // if deflate_monitor succeeded,
1606       // extract from per-thread in-use list
1607       if (mid == *listHeadp) {
1608         *listHeadp = mid->FreeNext;
1609       } else if (cur_mid_in_use != NULL) {
1610         cur_mid_in_use->FreeNext = mid->FreeNext; // maintain the current thread in-use list
1611       }
1612       next = mid->FreeNext;
1613       mid->FreeNext = NULL;  // This mid is current tail in the freeHeadp list
1614       mid = next;
1615       deflated_count++;
1616     } else {
1617       cur_mid_in_use = mid;
1618       mid = mid->FreeNext;
1619     }
1620   }
1621   return deflated_count;
1622 }
1623 
1624 void ObjectSynchronizer::prepare_deflate_idle_monitors(DeflateMonitorCounters* counters) {
1625   counters->nInuse = 0;              // currently associated with objects
1626   counters->nInCirculation = 0;      // extant
1627   counters->nScavenged = 0;          // reclaimed (global and per-thread)
1628   counters->perThreadScavenged = 0;  // per-thread scavenge total
1629   counters->perThreadTimes = 0.0;    // per-thread scavenge times
1630 }
1631 
1632 void ObjectSynchronizer::deflate_idle_monitors(DeflateMonitorCounters* counters) {
1633   assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
1634   bool deflated = false;
1635 
1636   ObjectMonitor * freeHeadp = NULL;  // Local SLL of scavenged monitors
1637   ObjectMonitor * freeTailp = NULL;
1638   elapsedTimer timer;
1639 
1640   if (log_is_enabled(Info, monitorinflation)) {
1641     timer.start();
1642   }
1643 
1644   // Prevent omFlush from changing mids in Thread dtor's during deflation
1645   // And in case the vm thread is acquiring a lock during a safepoint
1646   // See e.g. 6320749
1647   Thread::muxAcquire(&gListLock, "deflate_idle_monitors");
1648 
1649   // Note: the thread-local monitors lists get deflated in
1650   // a separate pass. See deflate_thread_local_monitors().
1651 
1652   // For moribund threads, scan gOmInUseList
1653   int deflated_count = 0;
1654   if (gOmInUseList) {
1655     counters->nInCirculation += gOmInUseCount;
1656     deflated_count = deflate_monitor_list((ObjectMonitor **)&gOmInUseList, &freeHeadp, &freeTailp);
1657     gOmInUseCount -= deflated_count;
1658     counters->nScavenged += deflated_count;
1659     counters->nInuse += gOmInUseCount;
1660   }
1661 
1662   // Move the scavenged monitors back to the global free list.
1663   if (freeHeadp != NULL) {
1664     guarantee(freeTailp != NULL && counters->nScavenged > 0, "invariant");
1665     assert(freeTailp->FreeNext == NULL, "invariant");
1666     // constant-time list splice - prepend scavenged segment to gFreeList
1667     freeTailp->FreeNext = gFreeList;
1668     gFreeList = freeHeadp;
1669   }
1670   Thread::muxRelease(&gListLock);
1671   timer.stop();
1672 
1673   LogStreamHandle(Debug, monitorinflation) lsh_debug;
1674   LogStreamHandle(Info, monitorinflation) lsh_info;
1675   LogStream * ls = NULL;
1676   if (log_is_enabled(Debug, monitorinflation)) {
1677     ls = &lsh_debug;
1678   } else if (deflated_count != 0 && log_is_enabled(Info, monitorinflation)) {
1679     ls = &lsh_info;
1680   }
1681   if (ls != NULL) {
1682     ls->print_cr("deflating global idle monitors, %3.7f secs, %d monitors", timer.seconds(), deflated_count);
1683   }
1684 }
1685 
1686 void ObjectSynchronizer::finish_deflate_idle_monitors(DeflateMonitorCounters* counters) {
1687   // Report the cumulative time for deflating each thread's idle
1688   // monitors. Note: if the work is split among more than one
1689   // worker thread, then the reported time will likely be more
1690   // than a beginning to end measurement of the phase.
1691   log_info(safepoint, cleanup)("deflating per-thread idle monitors, %3.7f secs, monitors=%d", counters->perThreadTimes, counters->perThreadScavenged);
1692 
1693   gMonitorFreeCount += counters->nScavenged;
1694 
1695   if (log_is_enabled(Debug, monitorinflation)) {
1696     // exit_globals()'s call to audit_and_print_stats() is done
1697     // at the Info level.
1698     ObjectSynchronizer::audit_and_print_stats(false /* on_exit */);
1699   } else if (log_is_enabled(Info, monitorinflation)) {
1700     Thread::muxAcquire(&gListLock, "finish_deflate_idle_monitors");
1701     log_info(monitorinflation)("gMonitorPopulation=%d, gOmInUseCount=%d, "
1702                                "gMonitorFreeCount=%d", gMonitorPopulation,
1703                                gOmInUseCount, gMonitorFreeCount);
1704     Thread::muxRelease(&gListLock);
1705   }
1706 
1707   ForceMonitorScavenge = 0;    // Reset
1708 
1709   OM_PERFDATA_OP(Deflations, inc(counters->nScavenged));
1710   OM_PERFDATA_OP(MonExtant, set_value(counters->nInCirculation));
1711 
1712   GVars.stwRandom = os::random();
1713   GVars.stwCycle++;
1714 }
1715 
1716 void ObjectSynchronizer::deflate_thread_local_monitors(Thread* thread, DeflateMonitorCounters* counters) {
1717   assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
1718 
1719   ObjectMonitor * freeHeadp = NULL;  // Local SLL of scavenged monitors
1720   ObjectMonitor * freeTailp = NULL;
1721   elapsedTimer timer;
1722 
1723   if (log_is_enabled(Info, safepoint, cleanup) ||
1724       log_is_enabled(Info, monitorinflation)) {
1725     timer.start();
1726   }
1727 
1728   int deflated_count = deflate_monitor_list(thread->omInUseList_addr(), &freeHeadp, &freeTailp);
1729 
1730   Thread::muxAcquire(&gListLock, "deflate_thread_local_monitors");
1731 
1732   // Adjust counters
1733   counters->nInCirculation += thread->omInUseCount;
1734   thread->omInUseCount -= deflated_count;
1735   counters->nScavenged += deflated_count;
1736   counters->nInuse += thread->omInUseCount;
1737   counters->perThreadScavenged += deflated_count;
1738 
1739   // Move the scavenged monitors back to the global free list.
1740   if (freeHeadp != NULL) {
1741     guarantee(freeTailp != NULL && deflated_count > 0, "invariant");
1742     assert(freeTailp->FreeNext == NULL, "invariant");
1743 
1744     // constant-time list splice - prepend scavenged segment to gFreeList
1745     freeTailp->FreeNext = gFreeList;
1746     gFreeList = freeHeadp;
1747   }
1748 
1749   timer.stop();
1750   // Safepoint logging cares about cumulative perThreadTimes and
1751   // we'll capture most of the cost, but not the muxRelease() which
1752   // should be cheap.
1753   counters->perThreadTimes += timer.seconds();
1754 
1755   Thread::muxRelease(&gListLock);
1756 
1757   LogStreamHandle(Debug, monitorinflation) lsh_debug;
1758   LogStreamHandle(Info, monitorinflation) lsh_info;
1759   LogStream * ls = NULL;
1760   if (log_is_enabled(Debug, monitorinflation)) {
1761     ls = &lsh_debug;
1762   } else if (deflated_count != 0 && log_is_enabled(Info, monitorinflation)) {
1763     ls = &lsh_info;
1764   }
1765   if (ls != NULL) {
1766     ls->print_cr("jt=" INTPTR_FORMAT ": deflating per-thread idle monitors, %3.7f secs, %d monitors", p2i(thread), timer.seconds(), deflated_count);
1767   }
1768 }
1769 
1770 // Monitor cleanup on JavaThread::exit
1771 
1772 // Iterate through monitor cache and attempt to release thread's monitors
1773 // Gives up on a particular monitor if an exception occurs, but continues
1774 // the overall iteration, swallowing the exception.
1775 class ReleaseJavaMonitorsClosure: public MonitorClosure {
1776  private:
1777   TRAPS;
1778 
1779  public:
1780   ReleaseJavaMonitorsClosure(Thread* thread) : THREAD(thread) {}
1781   void do_monitor(ObjectMonitor* mid) {
1782     if (mid->owner() == THREAD) {
1783       (void)mid->complete_exit(CHECK);
1784     }
1785   }
1786 };
1787 
1788 // Release all inflated monitors owned by THREAD.  Lightweight monitors are
1789 // ignored.  This is meant to be called during JNI thread detach which assumes
1790 // all remaining monitors are heavyweight.  All exceptions are swallowed.
1791 // Scanning the extant monitor list can be time consuming.
1792 // A simple optimization is to add a per-thread flag that indicates a thread
1793 // called jni_monitorenter() during its lifetime.
1794 //
1795 // Instead of No_Savepoint_Verifier it might be cheaper to
1796 // use an idiom of the form:
1797 //   auto int tmp = SafepointSynchronize::_safepoint_counter ;
1798 //   <code that must not run at safepoint>
1799 //   guarantee (((tmp ^ _safepoint_counter) | (tmp & 1)) == 0) ;
1800 // Since the tests are extremely cheap we could leave them enabled
1801 // for normal product builds.
1802 
1803 void ObjectSynchronizer::release_monitors_owned_by_thread(TRAPS) {
1804   assert(THREAD == JavaThread::current(), "must be current Java thread");
1805   NoSafepointVerifier nsv;
1806   ReleaseJavaMonitorsClosure rjmc(THREAD);
1807   Thread::muxAcquire(&gListLock, "release_monitors_owned_by_thread");
1808   ObjectSynchronizer::monitors_iterate(&rjmc);
1809   Thread::muxRelease(&gListLock);
1810   THREAD->clear_pending_exception();
1811 }
1812 
1813 const char* ObjectSynchronizer::inflate_cause_name(const InflateCause cause) {
1814   switch (cause) {
1815     case inflate_cause_vm_internal:    return "VM Internal";
1816     case inflate_cause_monitor_enter:  return "Monitor Enter";
1817     case inflate_cause_wait:           return "Monitor Wait";
1818     case inflate_cause_notify:         return "Monitor Notify";
1819     case inflate_cause_hash_code:      return "Monitor Hash Code";
1820     case inflate_cause_jni_enter:      return "JNI Monitor Enter";
1821     case inflate_cause_jni_exit:       return "JNI Monitor Exit";
1822     default:
1823       ShouldNotReachHere();
1824   }
1825   return "Unknown";
1826 }
1827 
1828 //------------------------------------------------------------------------------
1829 // Debugging code
1830 
1831 u_char* ObjectSynchronizer::get_gvars_addr() {
1832   return (u_char*)&GVars;
1833 }
1834 
1835 u_char* ObjectSynchronizer::get_gvars_hcSequence_addr() {
1836   return (u_char*)&GVars.hcSequence;
1837 }
1838 
1839 size_t ObjectSynchronizer::get_gvars_size() {
1840   return sizeof(SharedGlobals);
1841 }
1842 
1843 u_char* ObjectSynchronizer::get_gvars_stwRandom_addr() {
1844   return (u_char*)&GVars.stwRandom;
1845 }
1846 
1847 void ObjectSynchronizer::audit_and_print_stats(bool on_exit) {
1848   assert(on_exit || SafepointSynchronize::is_at_safepoint(), "invariant");
1849 
1850   LogStreamHandle(Debug, monitorinflation) lsh_debug;
1851   LogStreamHandle(Info, monitorinflation) lsh_info;
1852   LogStreamHandle(Trace, monitorinflation) lsh_trace;
1853   LogStream * ls = NULL;
1854   if (log_is_enabled(Trace, monitorinflation)) {
1855     ls = &lsh_trace;
1856   } else if (log_is_enabled(Debug, monitorinflation)) {
1857     ls = &lsh_debug;
1858   } else if (log_is_enabled(Info, monitorinflation)) {
1859     ls = &lsh_info;
1860   }
1861   assert(ls != NULL, "sanity check");
1862 
1863   if (!on_exit) {
1864     // Not at VM exit so grab the global list lock.
1865     Thread::muxAcquire(&gListLock, "audit_and_print_stats");
1866   }
1867 
1868   // Log counts for the global and per-thread monitor lists:
1869   int chkMonitorPopulation = log_monitor_list_counts(ls);
1870   int error_cnt = 0;
1871 
1872   ls->print_cr("Checking global lists:");
1873 
1874   // Check gMonitorPopulation:
1875   if (gMonitorPopulation == chkMonitorPopulation) {
1876     ls->print_cr("gMonitorPopulation=%d equals chkMonitorPopulation=%d",
1877                  gMonitorPopulation, chkMonitorPopulation);
1878   } else {
1879     ls->print_cr("ERROR: gMonitorPopulation=%d is not equal to "
1880                  "chkMonitorPopulation=%d", gMonitorPopulation,
1881                  chkMonitorPopulation);
1882     error_cnt++;
1883   }
1884 
1885   // Check gOmInUseList and gOmInUseCount:
1886   chk_global_in_use_list_and_count(ls, &error_cnt);
1887 
1888   // Check gFreeList and gMonitorFreeCount:
1889   chk_global_free_list_and_count(ls, &error_cnt);
1890 
1891   if (!on_exit) {
1892     Thread::muxRelease(&gListLock);
1893   }
1894 
1895   ls->print_cr("Checking per-thread lists:");
1896 
1897   for (JavaThreadIteratorWithHandle jtiwh; JavaThread *jt = jtiwh.next(); ) {
1898     // Check omInUseList and omInUseCount:
1899     chk_per_thread_in_use_list_and_count(jt, ls, &error_cnt);
1900 
1901     // Check omFreeList and omFreeCount:
1902     chk_per_thread_free_list_and_count(jt, ls, &error_cnt);
1903   }
1904 
1905   if (error_cnt == 0) {
1906     ls->print_cr("No errors found in monitor list checks.");
1907   } else {
1908     log_error(monitorinflation)("found monitor list errors: error_cnt=%d", error_cnt);
1909   }
1910 
1911   if ((on_exit && log_is_enabled(Info, monitorinflation)) ||
1912       (!on_exit && log_is_enabled(Trace, monitorinflation))) {
1913     // When exiting this log output is at the Info level. When called
1914     // at a safepoint, this log output is at the Trace level since
1915     // there can be a lot of it.
1916     log_in_use_monitor_details(ls, on_exit);
1917   }
1918 
1919   ls->flush();
1920 
1921   guarantee(error_cnt == 0, "ERROR: found monitor list errors: error_cnt=%d", error_cnt);
1922 }
1923 
1924 // Check a free monitor entry; log any errors.
1925 void ObjectSynchronizer::chk_free_entry(JavaThread * jt, ObjectMonitor * n,
1926                                         outputStream * out, int *error_cnt_p) {
1927   if (n->is_busy()) {
1928     if (jt != NULL) {
1929       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
1930                     ": free per-thread monitor must not be busy.", p2i(jt),
1931                     p2i(n));
1932     } else {
1933       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": free global monitor "
1934                     "must not be busy.", p2i(n));
1935     }
1936     *error_cnt_p = *error_cnt_p + 1;
1937   }
1938   if (n->header() != NULL) {
1939     if (jt != NULL) {
1940       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
1941                     ": free per-thread monitor must have NULL _header "
1942                     "field: _header=" INTPTR_FORMAT, p2i(jt), p2i(n),
1943                     p2i(n->header()));
1944     } else {
1945       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": free global monitor "
1946                     "must have NULL _header field: _header=" INTPTR_FORMAT,
1947                     p2i(n), p2i(n->header()));
1948     }
1949     *error_cnt_p = *error_cnt_p + 1;
1950   }
1951   if (n->object() != NULL) {
1952     if (jt != NULL) {
1953       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
1954                     ": free per-thread monitor must have NULL _object "
1955                     "field: _object=" INTPTR_FORMAT, p2i(jt), p2i(n),
1956                     p2i(n->object()));
1957     } else {
1958       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": free global monitor "
1959                     "must have NULL _object field: _object=" INTPTR_FORMAT,
1960                     p2i(n), p2i(n->object()));
1961     }
1962     *error_cnt_p = *error_cnt_p + 1;
1963   }
1964 }
1965 
1966 // Check the global free list and count; log the results of the checks.
1967 void ObjectSynchronizer::chk_global_free_list_and_count(outputStream * out,
1968                                                         int *error_cnt_p) {
1969   int chkMonitorFreeCount = 0;
1970   for (ObjectMonitor * n = gFreeList; n != NULL; n = n->FreeNext) {
1971     chk_free_entry(NULL /* jt */, n, out, error_cnt_p);
1972     chkMonitorFreeCount++;
1973   }
1974   if (gMonitorFreeCount == chkMonitorFreeCount) {
1975     out->print_cr("gMonitorFreeCount=%d equals chkMonitorFreeCount=%d",
1976                   gMonitorFreeCount, chkMonitorFreeCount);
1977   } else {
1978     out->print_cr("ERROR: gMonitorFreeCount=%d is not equal to "
1979                   "chkMonitorFreeCount=%d", gMonitorFreeCount,
1980                   chkMonitorFreeCount);
1981     *error_cnt_p = *error_cnt_p + 1;
1982   }
1983 }
1984 
1985 // Check the global in-use list and count; log the results of the checks.
1986 void ObjectSynchronizer::chk_global_in_use_list_and_count(outputStream * out,
1987                                                           int *error_cnt_p) {
1988   int chkOmInUseCount = 0;
1989   for (ObjectMonitor * n = gOmInUseList; n != NULL; n = n->FreeNext) {
1990     chk_in_use_entry(NULL /* jt */, n, out, error_cnt_p);
1991     chkOmInUseCount++;
1992   }
1993   if (gOmInUseCount == chkOmInUseCount) {
1994     out->print_cr("gOmInUseCount=%d equals chkOmInUseCount=%d", gOmInUseCount,
1995                   chkOmInUseCount);
1996   } else {
1997     out->print_cr("ERROR: gOmInUseCount=%d is not equal to chkOmInUseCount=%d",
1998                   gOmInUseCount, chkOmInUseCount);
1999     *error_cnt_p = *error_cnt_p + 1;
2000   }
2001 }
2002 
2003 // Check an in-use monitor entry; log any errors.
2004 void ObjectSynchronizer::chk_in_use_entry(JavaThread * jt, ObjectMonitor * n,
2005                                           outputStream * out, int *error_cnt_p) {
2006   if (n->header() == NULL) {
2007     if (jt != NULL) {
2008       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
2009                     ": in-use per-thread monitor must have non-NULL _header "
2010                     "field.", p2i(jt), p2i(n));
2011     } else {
2012       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": in-use global monitor "
2013                     "must have non-NULL _header field.", p2i(n));
2014     }
2015     *error_cnt_p = *error_cnt_p + 1;
2016   }
2017   if (n->object() == NULL) {
2018     if (jt != NULL) {
2019       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
2020                     ": in-use per-thread monitor must have non-NULL _object "
2021                     "field.", p2i(jt), p2i(n));
2022     } else {
2023       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": in-use global monitor "
2024                     "must have non-NULL _object field.", p2i(n));
2025     }
2026     *error_cnt_p = *error_cnt_p + 1;
2027   }
2028   const oop obj = (oop)n->object();
2029   const markOop mark = obj->mark();
2030   if (!mark->has_monitor()) {
2031     if (jt != NULL) {
2032       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
2033                     ": in-use per-thread monitor's object does not think "
2034                     "it has a monitor: obj=" INTPTR_FORMAT ", mark="
2035                     INTPTR_FORMAT,  p2i(jt), p2i(n), p2i(obj), p2i(mark));
2036     } else {
2037       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": in-use global "
2038                     "monitor's object does not think it has a monitor: obj="
2039                     INTPTR_FORMAT ", mark=" INTPTR_FORMAT, p2i(n),
2040                     p2i(obj), p2i(mark));
2041     }
2042     *error_cnt_p = *error_cnt_p + 1;
2043   }
2044   ObjectMonitor * const obj_mon = mark->monitor();
2045   if (n != obj_mon) {
2046     if (jt != NULL) {
2047       out->print_cr("ERROR: jt=" INTPTR_FORMAT ", monitor=" INTPTR_FORMAT
2048                     ": in-use per-thread monitor's object does not refer "
2049                     "to the same monitor: obj=" INTPTR_FORMAT ", mark="
2050                     INTPTR_FORMAT ", obj_mon=" INTPTR_FORMAT, p2i(jt),
2051                     p2i(n), p2i(obj), p2i(mark), p2i(obj_mon));
2052     } else {
2053       out->print_cr("ERROR: monitor=" INTPTR_FORMAT ": in-use global "
2054                     "monitor's object does not refer to the same monitor: obj="
2055                     INTPTR_FORMAT ", mark=" INTPTR_FORMAT ", obj_mon="
2056                     INTPTR_FORMAT, p2i(n), p2i(obj), p2i(mark), p2i(obj_mon));
2057     }
2058     *error_cnt_p = *error_cnt_p + 1;
2059   }
2060 }
2061 
2062 // Check the thread's free list and count; log the results of the checks.
2063 void ObjectSynchronizer::chk_per_thread_free_list_and_count(JavaThread *jt,
2064                                                             outputStream * out,
2065                                                             int *error_cnt_p) {
2066   int chkOmFreeCount = 0;
2067   for (ObjectMonitor * n = jt->omFreeList; n != NULL; n = n->FreeNext) {
2068     chk_free_entry(jt, n, out, error_cnt_p);
2069     chkOmFreeCount++;
2070   }
2071   if (jt->omFreeCount == chkOmFreeCount) {
2072     out->print_cr("jt=" INTPTR_FORMAT ": omFreeCount=%d equals "
2073                   "chkOmFreeCount=%d", p2i(jt), jt->omFreeCount, chkOmFreeCount);
2074   } else {
2075     out->print_cr("ERROR: jt=" INTPTR_FORMAT ": omFreeCount=%d is not "
2076                   "equal to chkOmFreeCount=%d", p2i(jt), jt->omFreeCount,
2077                   chkOmFreeCount);
2078     *error_cnt_p = *error_cnt_p + 1;
2079   }
2080 }
2081 
2082 // Check the thread's in-use list and count; log the results of the checks.
2083 void ObjectSynchronizer::chk_per_thread_in_use_list_and_count(JavaThread *jt,
2084                                                               outputStream * out,
2085                                                               int *error_cnt_p) {
2086   int chkOmInUseCount = 0;
2087   for (ObjectMonitor * n = jt->omInUseList; n != NULL; n = n->FreeNext) {
2088     chk_in_use_entry(jt, n, out, error_cnt_p);
2089     chkOmInUseCount++;
2090   }
2091   if (jt->omInUseCount == chkOmInUseCount) {
2092     out->print_cr("jt=" INTPTR_FORMAT ": omInUseCount=%d equals "
2093                   "chkOmInUseCount=%d", p2i(jt), jt->omInUseCount,
2094                   chkOmInUseCount);
2095   } else {
2096     out->print_cr("ERROR: jt=" INTPTR_FORMAT ": omInUseCount=%d is not "
2097                   "equal to chkOmInUseCount=%d", p2i(jt), jt->omInUseCount,
2098                   chkOmInUseCount);
2099     *error_cnt_p = *error_cnt_p + 1;
2100   }
2101 }
2102 
2103 // Log details about ObjectMonitors on the in-use lists. The 'BHL'
2104 // flags indicate why the entry is in-use, 'object' and 'object type'
2105 // indicate the associated object and its type.
2106 void ObjectSynchronizer::log_in_use_monitor_details(outputStream * out,
2107                                                     bool on_exit) {
2108   if (!on_exit) {
2109     // Not at VM exit so grab the global list lock.
2110     Thread::muxAcquire(&gListLock, "log_in_use_monitor_details");
2111   }
2112 
2113   if (gOmInUseCount > 0) {
2114     out->print_cr("In-use global monitor info:");
2115     out->print_cr("(B -> is_busy, H -> has hash code, L -> lock status)");
2116     out->print_cr("%18s  %s  %18s  %18s",
2117                   "monitor", "BHL", "object", "object type");
2118     out->print_cr("==================  ===  ==================  ==================");
2119     for (ObjectMonitor * n = gOmInUseList; n != NULL; n = n->FreeNext) {
2120       const oop obj = (oop) n->object();
2121       const markOop mark = n->header();
2122       ResourceMark rm;
2123       out->print_cr(INTPTR_FORMAT "  %d%d%d  " INTPTR_FORMAT "  %s", p2i(n),
2124                     n->is_busy() != 0, mark->hash() != 0, n->owner() != NULL,
2125                     p2i(obj), obj->klass()->external_name());
2126     }
2127   }
2128 
2129   if (!on_exit) {
2130     Thread::muxRelease(&gListLock);
2131   }
2132 
2133   out->print_cr("In-use per-thread monitor info:");
2134   out->print_cr("(B -> is_busy, H -> has hash code, L -> lock status)");
2135   out->print_cr("%18s  %18s  %s  %18s  %18s",
2136                 "jt", "monitor", "BHL", "object", "object type");
2137   out->print_cr("==================  ==================  ===  ==================  ==================");
2138   for (JavaThreadIteratorWithHandle jtiwh; JavaThread *jt = jtiwh.next(); ) {
2139     for (ObjectMonitor * n = jt->omInUseList; n != NULL; n = n->FreeNext) {
2140       const oop obj = (oop) n->object();
2141       const markOop mark = n->header();
2142       ResourceMark rm;
2143       out->print_cr(INTPTR_FORMAT "  " INTPTR_FORMAT "  %d%d%d  " INTPTR_FORMAT
2144                     "  %s", p2i(jt), p2i(n), n->is_busy() != 0,
2145                     mark->hash() != 0, n->owner() != NULL, p2i(obj),
2146                     obj->klass()->external_name());
2147     }
2148   }
2149 
2150   out->flush();
2151 }
2152 
2153 // Log counts for the global and per-thread monitor lists and return
2154 // the population count.
2155 int ObjectSynchronizer::log_monitor_list_counts(outputStream * out) {
2156   int popCount = 0;
2157   out->print_cr("%18s  %10s  %10s  %10s",
2158                 "Global Lists:", "InUse", "Free", "Total");
2159   out->print_cr("==================  ==========  ==========  ==========");
2160   out->print_cr("%18s  %10d  %10d  %10d", "",
2161                 gOmInUseCount, gMonitorFreeCount, gMonitorPopulation);
2162   popCount += gOmInUseCount + gMonitorFreeCount;
2163 
2164   out->print_cr("%18s  %10s  %10s  %10s",
2165                 "Per-Thread Lists:", "InUse", "Free", "Provision");
2166   out->print_cr("==================  ==========  ==========  ==========");
2167 
2168   for (JavaThreadIteratorWithHandle jtiwh; JavaThread *jt = jtiwh.next(); ) {
2169     out->print_cr(INTPTR_FORMAT "  %10d  %10d  %10d", p2i(jt),
2170                   jt->omInUseCount, jt->omFreeCount, jt->omFreeProvision);
2171     popCount += jt->omInUseCount + jt->omFreeCount;
2172   }
2173   return popCount;
2174 }
2175 
2176 #ifndef PRODUCT
2177 
2178 // Check if monitor belongs to the monitor cache
2179 // The list is grow-only so it's *relatively* safe to traverse
2180 // the list of extant blocks without taking a lock.
2181 
2182 int ObjectSynchronizer::verify_objmon_isinpool(ObjectMonitor *monitor) {
2183   PaddedEnd<ObjectMonitor> * block = OrderAccess::load_acquire(&gBlockList);
2184   while (block != NULL) {
2185     assert(block->object() == CHAINMARKER, "must be a block header");
2186     if (monitor > &block[0] && monitor < &block[_BLOCKSIZE]) {
2187       address mon = (address)monitor;
2188       address blk = (address)block;
2189       size_t diff = mon - blk;
2190       assert((diff % sizeof(PaddedEnd<ObjectMonitor>)) == 0, "must be aligned");
2191       return 1;
2192     }
2193     block = (PaddedEnd<ObjectMonitor> *)block->FreeNext;
2194   }
2195   return 0;
2196 }
2197 
2198 #endif