hotspot/src/share/vm/runtime/synchronizer.cpp
author dcubed
Wed, 10 Sep 2014 11:52:16 -0600
changeset 26684 d1221849ea3d
parent 26683 a02753d5a0b2
child 27165 785a8d56024c
permissions -rw-r--r--
8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket Reviewed-by: fparain, sspitsyn, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
22743
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
     2
 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2526
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2526
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2526
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    26
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    27
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    28
#include "oops/markOop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    29
#include "oops/oop.inline.hpp"
25351
7c198a690050 8044775: Improve usage of umbrella header atomic.inline.hpp.
goetz
parents: 25064
diff changeset
    30
#include "runtime/atomic.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    31
#include "runtime/biasedLocking.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    32
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    33
#include "runtime/interfaceSupport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    34
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    35
#include "runtime/objectMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    36
#include "runtime/objectMonitor.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    37
#include "runtime/osThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    38
#include "runtime/stubRoutines.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    39
#include "runtime/synchronizer.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14488
diff changeset
    40
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    41
#include "utilities/dtrace.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    42
#include "utilities/events.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    43
#include "utilities/preserveException.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
22819
f88b9c394e42 8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
goetz
parents: 18025
diff changeset
    45
#if defined(__GNUC__) && !defined(PPC64)
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
    46
// Need to inhibit inlining for older versions of GCC to avoid build-time failures
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
    47
  #define NOINLINE __attribute__((noinline))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#else
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
    49
  #define NOINLINE
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22881
diff changeset
    52
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 22881
diff changeset
    53
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// The "core" versions of monitor enter and exit reside in this file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// The interpreter and compilers contain specialized transliterated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// variants of the enter-exit fast-path operations.  See i486.ad fast_lock(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// for instance.  If you make changes here, make sure to modify the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// interpreter, and both C1 and C2 fast-path inline locking code emission.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// -----------------------------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#ifdef DTRACE_ENABLED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Only bother with this argument setup if dtrace is available
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// TODO-FIXME: probes should not fire when caller is _blocked.  assert() accordingly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    67
#define DTRACE_MONITOR_PROBE_COMMON(obj, thread)                           \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  char* bytes = NULL;                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  int len = 0;                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  jlong jtid = SharedRuntime::get_java_tid(thread);                        \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    71
  Symbol* klassname = ((oop)(obj))->klass()->name();                       \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (klassname != NULL) {                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    bytes = (char*)klassname->bytes();                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    len = klassname->utf8_length();                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    77
#define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis)            \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    78
  {                                                                        \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    79
    if (DTraceMonitorProbes) {                                             \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    80
      DTRACE_MONITOR_PROBE_COMMON(obj, thread);                            \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    81
      HOTSPOT_MONITOR_WAIT(jtid,                                           \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    82
                           (uintptr_t)(monitor), bytes, len, (millis));    \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    83
    }                                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    84
  }
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    85
22190
d306a75a70d3 8029726: On OS X some dtrace probe names are mismatched with Solaris
sla
parents: 20282
diff changeset
    86
#define HOTSPOT_MONITOR_PROBE_waited HOTSPOT_MONITOR_WAITED
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    87
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    88
#define DTRACE_MONITOR_PROBE(probe, monitor, obj, thread)                  \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    89
  {                                                                        \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    90
    if (DTraceMonitorProbes) {                                             \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    91
      DTRACE_MONITOR_PROBE_COMMON(obj, thread);                            \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    92
      HOTSPOT_MONITOR_PROBE_##probe(jtid, /* probe = waited */             \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    93
                                    (uintptr_t)(monitor), bytes, len);     \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    94
    }                                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    95
  }
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    96
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#else //  ndef DTRACE_ENABLED
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    99
#define DTRACE_MONITOR_WAIT_PROBE(obj, thread, millis, mon)    {;}
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
   100
#define DTRACE_MONITOR_PROBE(probe, obj, thread, mon)          {;}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
#endif // ndef DTRACE_ENABLED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   104
// This exists only as a workaround of dtrace bug 6254741
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   105
int dtrace_waited_probe(ObjectMonitor* monitor, Handle obj, Thread* thr) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   106
  DTRACE_MONITOR_PROBE(waited, monitor, obj(), thr);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   107
  return 0;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   108
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   109
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   110
#define NINFLATIONLOCKS 256
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   111
static volatile intptr_t InflationLocks[NINFLATIONLOCKS];
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   112
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   113
ObjectMonitor * ObjectSynchronizer::gBlockList = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   114
ObjectMonitor * volatile ObjectSynchronizer::gFreeList  = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   115
ObjectMonitor * volatile ObjectSynchronizer::gOmInUseList  = NULL;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   116
int ObjectSynchronizer::gOmInUseCount = 0;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   117
static volatile intptr_t ListLock = 0;      // protects global monitor free-list cache
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   118
static volatile int MonitorFreeCount  = 0;  // # on gFreeList
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   119
static volatile int MonitorPopulation = 0;  // # Extant -- in circulation
20282
7f9cbdf89af2 7195622: CheckUnhandledOops has limited usefulness now
hseigel
parents: 18025
diff changeset
   120
#define CHAINMARKER (cast_to_oop<intptr_t>(-1))
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   121
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   122
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   123
//  Fast Monitor Enter/Exit
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   124
// This the fast monitor enter. The interpreter and compiler use
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   125
// some assembly copies of this code. Make sure update those code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   126
// if the following function is changed. The implementation is
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   127
// extremely sensitive to race condition. Be careful.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   128
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   129
void ObjectSynchronizer::fast_enter(Handle obj, BasicLock* lock,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   130
                                    bool attempt_rebias, TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   131
  if (UseBiasedLocking) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   132
    if (!SafepointSynchronize::is_at_safepoint()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   133
      BiasedLocking::Condition cond = BiasedLocking::revoke_and_rebias(obj, attempt_rebias, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   134
      if (cond == BiasedLocking::BIAS_REVOKED_AND_REBIASED) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   135
        return;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   136
      }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   137
    } else {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   138
      assert(!attempt_rebias, "can not rebias toward VM thread");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   139
      BiasedLocking::revoke_at_safepoint(obj);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   140
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   141
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   142
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   143
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   144
  slow_enter(obj, lock, THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   145
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   146
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   147
void ObjectSynchronizer::fast_exit(oop object, BasicLock* lock, TRAPS) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   148
  assert(!object->mark()->has_bias_pattern(), "should not see bias pattern here");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   149
  // if displaced header is null, the previous enter is recursive enter, no-op
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   150
  markOop dhw = lock->displaced_header();
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   151
  markOop mark;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   152
  if (dhw == NULL) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   153
    // Recursive stack-lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   154
    // Diagnostics -- Could be: stack-locked, inflating, inflated.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   155
    mark = object->mark();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   156
    assert(!mark->is_neutral(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   157
    if (mark->has_locker() && mark != markOopDesc::INFLATING()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   158
      assert(THREAD->is_lock_owned((address)mark->locker()), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   159
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   160
    if (mark->has_monitor()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   161
      ObjectMonitor * m = mark->monitor();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   162
      assert(((oop)(m->object()))->mark() == mark, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   163
      assert(m->is_entered(THREAD), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   164
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   165
    return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   166
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   167
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   168
  mark = object->mark();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   170
  // If the object is stack-locked by the current thread, try to
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   171
  // swing the displaced header from the box back to the mark.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   172
  if (mark == (markOop) lock) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   173
    assert(dhw->is_neutral(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   174
    if ((markOop) Atomic::cmpxchg_ptr (dhw, object->mark_addr(), mark) == mark) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   175
      TEVENT(fast_exit: release stacklock);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   176
      return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   177
    }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   178
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   179
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   180
  ObjectSynchronizer::inflate(THREAD, object)->exit(true, THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   181
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   182
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   183
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   184
// Interpreter/Compiler Slow Case
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   185
// This routine is used to handle interpreter/compiler slow case
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   186
// We don't need to use fast path here, because it must have been
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   187
// failed in the interpreter/compiler code.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   188
void ObjectSynchronizer::slow_enter(Handle obj, BasicLock* lock, TRAPS) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   189
  markOop mark = obj->mark();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   190
  assert(!mark->has_bias_pattern(), "should not see bias pattern here");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   191
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   192
  if (mark->is_neutral()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   193
    // Anticipate successful CAS -- the ST of the displaced mark must
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   194
    // be visible <= the ST performed by the CAS.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   195
    lock->set_displaced_header(mark);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   196
    if (mark == (markOop) Atomic::cmpxchg_ptr(lock, obj()->mark_addr(), mark)) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   197
      TEVENT(slow_enter: release stacklock);
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   198
      return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   199
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   200
    // Fall through to inflate() ...
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   201
  } else if (mark->has_locker() &&
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   202
             THREAD->is_lock_owned((address)mark->locker())) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   203
    assert(lock != mark->locker(), "must not re-lock the same lock");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   204
    assert(lock != (BasicLock*)obj->mark(), "don't relock with same BasicLock");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   205
    lock->set_displaced_header(NULL);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   206
    return;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   207
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   208
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   209
  // The object header will never be displaced to this lock,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   210
  // so it does not matter what the value is, except that it
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   211
  // must be non-zero to avoid looking like a re-entrant lock,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   212
  // and must not look locked either.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   213
  lock->set_displaced_header(markOopDesc::unused_mark());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   214
  ObjectSynchronizer::inflate(THREAD, obj())->enter(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   215
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   216
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   217
// This routine is used to handle interpreter/compiler slow case
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   218
// We don't need to use fast path here, because it must have
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   219
// failed in the interpreter/compiler code. Simply use the heavy
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   220
// weight monitor should be ok, unless someone find otherwise.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   221
void ObjectSynchronizer::slow_exit(oop object, BasicLock* lock, TRAPS) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   222
  fast_exit(object, lock, THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   223
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   224
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   225
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   226
// Class Loader  support to workaround deadlocks on the class loader lock objects
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   227
// Also used by GC
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   228
// complete_exit()/reenter() are used to wait on a nested lock
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   229
// i.e. to give up an outer lock completely and then re-enter
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   230
// Used when holding nested locks - lock acquisition order: lock1 then lock2
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   231
//  1) complete_exit lock1 - saving recursion count
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   232
//  2) wait on lock2
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   233
//  3) when notified on lock2, unlock lock2
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   234
//  4) reenter lock1 with original recursion count
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   235
//  5) lock lock2
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   236
// NOTE: must use heavy weight monitor to handle complete_exit/reenter()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   237
intptr_t ObjectSynchronizer::complete_exit(Handle obj, TRAPS) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   238
  TEVENT(complete_exit);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   239
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   240
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   241
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   244
  ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   245
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   246
  return monitor->complete_exit(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   247
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   248
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   249
// NOTE: must use heavy weight monitor to handle complete_exit/reenter()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   250
void ObjectSynchronizer::reenter(Handle obj, intptr_t recursion, TRAPS) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   251
  TEVENT(reenter);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   252
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   253
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   254
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   255
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   256
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   257
  ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   258
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   259
  monitor->reenter(recursion, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   260
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   261
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   262
// JNI locks on java objects
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   263
// NOTE: must use heavy weight monitor to handle jni monitor enter
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   264
void ObjectSynchronizer::jni_enter(Handle obj, TRAPS) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   265
  // the current locking is from JNI instead of Java code
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   266
  TEVENT(jni_enter);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   267
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   268
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   269
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   270
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   271
  THREAD->set_current_pending_monitor_is_from_java(false);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   272
  ObjectSynchronizer::inflate(THREAD, obj())->enter(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   273
  THREAD->set_current_pending_monitor_is_from_java(true);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   274
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   275
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   276
// NOTE: must use heavy weight monitor to handle jni monitor enter
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   277
bool ObjectSynchronizer::jni_try_enter(Handle obj, Thread* THREAD) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   278
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   279
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   280
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   283
  ObjectMonitor* monitor = ObjectSynchronizer::inflate_helper(obj());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   284
  return monitor->try_enter(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   285
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   286
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   287
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   288
// NOTE: must use heavy weight monitor to handle jni monitor exit
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   289
void ObjectSynchronizer::jni_exit(oop obj, Thread* THREAD) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   290
  TEVENT(jni_exit);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   291
  if (UseBiasedLocking) {
15233
c06b129cf6c7 6444286: Possible naked oop related to biased locking revocation safepoint in jni_exit()
dcubed
parents: 14583
diff changeset
   292
    Handle h_obj(THREAD, obj);
c06b129cf6c7 6444286: Possible naked oop related to biased locking revocation safepoint in jni_exit()
dcubed
parents: 14583
diff changeset
   293
    BiasedLocking::revoke_and_rebias(h_obj, false, THREAD);
c06b129cf6c7 6444286: Possible naked oop related to biased locking revocation safepoint in jni_exit()
dcubed
parents: 14583
diff changeset
   294
    obj = h_obj();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   295
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   296
  assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   297
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   298
  ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   299
  // If this thread has locked the object, exit the monitor.  Note:  can't use
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   300
  // monitor->check(CHECK); must exit even if an exception is pending.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   301
  if (monitor->check(THREAD)) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   302
    monitor->exit(true, THREAD);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   304
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   305
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   306
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   307
// Internal VM locks on java objects
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   308
// standard constructor, allows locking failures
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   309
ObjectLocker::ObjectLocker(Handle obj, Thread* thread, bool doLock) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   310
  _dolock = doLock;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   311
  _thread = thread;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   312
  debug_only(if (StrictSafepointChecks) _thread->check_for_valid_safepoint_state(false);)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   313
  _obj = obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   315
  if (_dolock) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   316
    TEVENT(ObjectLocker);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   317
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   318
    ObjectSynchronizer::fast_enter(_obj, &_lock, false, _thread);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   319
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   320
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   321
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   322
ObjectLocker::~ObjectLocker() {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   323
  if (_dolock) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   324
    ObjectSynchronizer::fast_exit(_obj(), &_lock, _thread);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   325
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   326
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   329
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   330
//  Wait/Notify/NotifyAll
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   331
// NOTE: must use heavy weight monitor to handle wait()
22743
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
   332
int ObjectSynchronizer::wait(Handle obj, jlong millis, TRAPS) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   333
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   334
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   335
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   336
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   337
  if (millis < 0) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   338
    TEVENT(wait - throw IAX);
22743
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
   339
    THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "timeout value is negative");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   340
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   341
  ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   342
  DTRACE_MONITOR_WAIT_PROBE(monitor, obj(), THREAD, millis);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   343
  monitor->wait(millis, true, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   344
22743
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
   345
  // This dummy call is in place to get around dtrace bug 6254741.  Once
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
   346
  // that's fixed we can uncomment the following line, remove the call
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
   347
  // and change this function back into a "void" func.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   348
  // DTRACE_MONITOR_PROBE(waited, monitor, obj(), THREAD);
22743
e043208c9d93 8030808: dtrace/hotspot/Monitors/Monitors001 fails in product builds on solaris-sparc
fparain
parents: 22551
diff changeset
   349
  return dtrace_waited_probe(monitor, obj, THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   350
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   352
void ObjectSynchronizer::waitUninterruptibly(Handle obj, jlong millis, TRAPS) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   353
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   354
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   355
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   356
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   357
  if (millis < 0) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   358
    TEVENT(wait - throw IAX);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   359
    THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), "timeout value is negative");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   360
  }
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   361
  ObjectSynchronizer::inflate(THREAD, obj()) -> wait(millis, false, THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   362
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   363
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   364
void ObjectSynchronizer::notify(Handle obj, TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   365
  if (UseBiasedLocking) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   366
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   367
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   368
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   370
  markOop mark = obj->mark();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   371
  if (mark->has_locker() && THREAD->is_lock_owned((address)mark->locker())) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   372
    return;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   373
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   374
  ObjectSynchronizer::inflate(THREAD, obj())->notify(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   375
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   377
// NOTE: see comment of notify()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   378
void ObjectSynchronizer::notifyall(Handle obj, TRAPS) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   379
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   380
    BiasedLocking::revoke_and_rebias(obj, false, THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   381
    assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   382
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   383
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   384
  markOop mark = obj->mark();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   385
  if (mark->has_locker() && THREAD->is_lock_owned((address)mark->locker())) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   386
    return;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   387
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   388
  ObjectSynchronizer::inflate(THREAD, obj())->notifyAll(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   389
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   390
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   391
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   392
// Hash Code handling
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   393
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
// Performance concern:
25633
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   395
// OrderAccess::storestore() calls release() which at one time stored 0
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   396
// into the global volatile OrderAccess::dummy variable. This store was
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   397
// unnecessary for correctness. Many threads storing into a common location
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   398
// causes considerable cache migration or "sloshing" on large SMP systems.
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   399
// As such, I avoided using OrderAccess::storestore(). In some cases
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   400
// OrderAccess::fence() -- which incurs local latency on the executing
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   401
// processor -- is a better choice as it scales on SMP systems.
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   402
//
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   403
// See http://blogs.oracle.com/dave/entry/biased_locking_in_hotspot for
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   404
// a discussion of coherency costs. Note that all our current reference
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   405
// platforms provide strong ST-ST order, so the issue is moot on IA32,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   406
// x64, and SPARC.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
// As a general policy we use "volatile" to control compiler-based reordering
25633
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   409
// and explicit fences (barriers) to control for architectural reordering
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
   410
// performed by the CPU(s) or platform.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
struct SharedGlobals {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   413
  // These are highly shared mostly-read variables.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   414
  // To avoid false-sharing they need to be the sole occupants of a $ line.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   415
  double padPrefix[8];
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   416
  volatile int stwRandom;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   417
  volatile int stwCycle;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   419
  // Hot RW variables -- Sequester to avoid false-sharing
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   420
  double padSuffix[16];
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   421
  volatile int hcSequence;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   422
  double padFinal[8];
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   423
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   425
static SharedGlobals GVars;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   426
static int MonitorScavengeThreshold = 1000000;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   427
static volatile int ForceMonitorScavenge = 0; // Scavenge required and pending
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   429
static markOop ReadStableMark(oop obj) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   430
  markOop mark = obj->mark();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   431
  if (!mark->is_being_inflated()) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   432
    return mark;       // normal fast-path return
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   433
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   435
  int its = 0;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   436
  for (;;) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   437
    markOop mark = obj->mark();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   438
    if (!mark->is_being_inflated()) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   439
      return mark;    // normal fast-path return
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   440
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   441
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   442
    // The object is being inflated by some other thread.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   443
    // The caller of ReadStableMark() must wait for inflation to complete.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   444
    // Avoid live-lock
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   445
    // TODO: consider calling SafepointSynchronize::do_call_back() while
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   446
    // spinning to see if there's a safepoint pending.  If so, immediately
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   447
    // yielding or blocking would be appropriate.  Avoid spinning while
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   448
    // there is a safepoint pending.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   449
    // TODO: add inflation contention performance counters.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   450
    // TODO: restrict the aggregate number of spinners.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   452
    ++its;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   453
    if (its > 10000 || !os::is_MP()) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   454
      if (its & 1) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   455
        os::naked_yield();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   456
        TEVENT(Inflate: INFLATING - yield);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   457
      } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   458
        // Note that the following code attenuates the livelock problem but is not
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   459
        // a complete remedy.  A more complete solution would require that the inflating
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   460
        // thread hold the associated inflation lock.  The following code simply restricts
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   461
        // the number of spinners to at most one.  We'll have N-2 threads blocked
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   462
        // on the inflationlock, 1 thread holding the inflation lock and using
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   463
        // a yield/park strategy, and 1 thread in the midst of inflation.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   464
        // A more refined approach would be to change the encoding of INFLATING
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   465
        // to allow encapsulation of a native thread pointer.  Threads waiting for
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   466
        // inflation to complete would use CAS to push themselves onto a singly linked
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   467
        // list rooted at the markword.  Once enqueued, they'd loop, checking a per-thread flag
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   468
        // and calling park().  When inflation was complete the thread that accomplished inflation
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   469
        // would detach the list and set the markword to inflated with a single CAS and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   470
        // then for each thread on the list, set the flag and unpark() the thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   471
        // This is conceptually similar to muxAcquire-muxRelease, except that muxRelease
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   472
        // wakes at most one thread whereas we need to wake the entire list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   473
        int ix = (cast_from_oop<intptr_t>(obj) >> 5) & (NINFLATIONLOCKS-1);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   474
        int YieldThenBlock = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   475
        assert(ix >= 0 && ix < NINFLATIONLOCKS, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   476
        assert((NINFLATIONLOCKS & (NINFLATIONLOCKS-1)) == 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   477
        Thread::muxAcquire(InflationLocks + ix, "InflationLock");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   478
        while (obj->mark() == markOopDesc::INFLATING()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   479
          // Beware: NakedYield() is advisory and has almost no effect on some platforms
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   480
          // so we periodically call Self->_ParkEvent->park(1).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   481
          // We use a mixed spin/yield/block mechanism.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   482
          if ((YieldThenBlock++) >= 16) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   483
            Thread::current()->_ParkEvent->park(1);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   484
          } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   485
            os::naked_yield();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   486
          }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   487
        }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   488
        Thread::muxRelease(InflationLocks + ix);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   489
        TEVENT(Inflate: INFLATING - yield/park);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   490
      }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   491
    } else {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   492
      SpinPause();       // SMP-polite spinning
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   493
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   494
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   495
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
// hashCode() generation :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
// Possibilities:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
// * MD5Digest of {obj,stwRandom}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// * CRC32 of {obj,stwRandom} or any linear-feedback shift register function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
// * A DES- or AES-style SBox[] mechanism
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// * One of the Phi-based schemes, such as:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
//   2654435761 = 2^32 * Phi (golden ratio)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
//   HashCodeValue = ((uintptr_t(obj) >> 3) * 2654435761) ^ GVars.stwRandom ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
// * A variation of Marsaglia's shift-xor RNG scheme.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// * (obj ^ stwRandom) is appealing, but can result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
//   in undesirable regularity in the hashCode values of adjacent objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
//   (objects allocated back-to-back, in particular).  This could potentially
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
//   result in hashtable collisions and reduced hashtable efficiency.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
//   There are simple ways to "diffuse" the middle address bits over the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
//   generated hashCode values:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
static inline intptr_t get_next_hash(Thread * Self, oop obj) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   515
  intptr_t value = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  if (hashCode == 0) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   517
    // This form uses an unguarded global Park-Miller RNG,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   518
    // so it's possible for two threads to race and generate the same RNG.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   519
    // On MP system we'll have lots of RW access to a global, so the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   520
    // mechanism induces lots of coherency traffic.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   521
    value = os::random();
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   522
  } else if (hashCode == 1) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   523
    // This variation has the property of being stable (idempotent)
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   524
    // between STW operations.  This can be useful in some of the 1-0
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   525
    // synchronization schemes.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   526
    intptr_t addrBits = cast_from_oop<intptr_t>(obj) >> 3;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   527
    value = addrBits ^ (addrBits >> 5) ^ GVars.stwRandom;
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   528
  } else if (hashCode == 2) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   529
    value = 1;            // for sensitivity testing
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   530
  } else if (hashCode == 3) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   531
    value = ++GVars.hcSequence;
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   532
  } else if (hashCode == 4) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   533
    value = cast_from_oop<intptr_t>(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  } else {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   535
    // Marsaglia's xor-shift scheme with thread-specific state
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   536
    // This is probably the best overall implementation -- we'll
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   537
    // likely make this the default in future releases.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   538
    unsigned t = Self->_hashStateX;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   539
    t ^= (t << 11);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   540
    Self->_hashStateX = Self->_hashStateY;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   541
    Self->_hashStateY = Self->_hashStateZ;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   542
    Self->_hashStateZ = Self->_hashStateW;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   543
    unsigned v = Self->_hashStateW;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   544
    v = (v ^ (v >> 19)) ^ (t ^ (t >> 8));
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   545
    Self->_hashStateW = v;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   546
    value = v;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  value &= markOopDesc::hash_mask;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   550
  if (value == 0) value = 0xBAD;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   551
  assert(value != markOopDesc::no_hash, "invariant");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   552
  TEVENT(hashCode: GENERATE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  return value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
}
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   555
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   556
intptr_t ObjectSynchronizer::FastHashCode(Thread * Self, oop obj) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   557
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   558
    // NOTE: many places throughout the JVM do not expect a safepoint
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   559
    // to be taken here, in particular most operations on perm gen
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   560
    // objects. However, we only ever bias Java instances and all of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   561
    // the call sites of identity_hash that might revoke biases have
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   562
    // been checked to make sure they can handle a safepoint. The
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   563
    // added check of the bias pattern is to avoid useless calls to
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   564
    // thread-local storage.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   565
    if (obj->mark()->has_bias_pattern()) {
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   566
      // Handle for oop obj in case of STW safepoint
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   567
      Handle hobj(Self, obj);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   568
      // Relaxing assertion for bug 6320749.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   569
      assert(Universe::verify_in_progress() ||
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   570
             !SafepointSynchronize::is_at_safepoint(),
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   571
             "biases should not be seen by VM thread here");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   572
      BiasedLocking::revoke_and_rebias(hobj, false, JavaThread::current());
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   573
      obj = hobj();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   574
      assert(!obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   575
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   576
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   578
  // hashCode() is a heap mutator ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   579
  // Relaxing assertion for bug 6320749.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   580
  assert(Universe::verify_in_progress() ||
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   581
         !SafepointSynchronize::is_at_safepoint(), "invariant");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   582
  assert(Universe::verify_in_progress() ||
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   583
         Self->is_Java_thread() , "invariant");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   584
  assert(Universe::verify_in_progress() ||
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   585
         ((JavaThread *)Self)->thread_state() != _thread_blocked, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   586
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   587
  ObjectMonitor* monitor = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   588
  markOop temp, test;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   589
  intptr_t hash;
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   590
  markOop mark = ReadStableMark(obj);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   591
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   592
  // object should remain ineligible for biased locking
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   593
  assert(!mark->has_bias_pattern(), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   594
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   595
  if (mark->is_neutral()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   596
    hash = mark->hash();              // this is a normal header
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   597
    if (hash) {                       // if it has hash, just return it
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   598
      return hash;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   599
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   600
    hash = get_next_hash(Self, obj);  // allocate a new hash code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   601
    temp = mark->copy_set_hash(hash); // merge the hash code into header
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   602
    // use (machine word version) atomic operation to install the hash
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   603
    test = (markOop) Atomic::cmpxchg_ptr(temp, obj->mark_addr(), mark);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   604
    if (test == mark) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   605
      return hash;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   606
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   607
    // If atomic operation failed, we must inflate the header
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   608
    // into heavy weight monitor. We could add more code here
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   609
    // for fast path, but it does not worth the complexity.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   610
  } else if (mark->has_monitor()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   611
    monitor = mark->monitor();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   612
    temp = monitor->header();
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   613
    assert(temp->is_neutral(), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   614
    hash = temp->hash();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   615
    if (hash) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   616
      return hash;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   617
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   618
    // Skip to the following code to reduce code size
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   619
  } else if (Self->is_lock_owned((address)mark->locker())) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   620
    temp = mark->displaced_mark_helper(); // this is a lightweight monitor owned
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   621
    assert(temp->is_neutral(), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   622
    hash = temp->hash();              // by current thread, check if the displaced
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   623
    if (hash) {                       // header contains hash code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   624
      return hash;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   625
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   626
    // WARNING:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   627
    //   The displaced header is strictly immutable.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   628
    // It can NOT be changed in ANY cases. So we have
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   629
    // to inflate the header into heavyweight monitor
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   630
    // even the current thread owns the lock. The reason
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   631
    // is the BasicLock (stack slot) will be asynchronously
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   632
    // read by other threads during the inflate() function.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   633
    // Any change to stack may not propagate to other threads
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   634
    // correctly.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   635
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   636
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   637
  // Inflate the monitor to set hash code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   638
  monitor = ObjectSynchronizer::inflate(Self, obj);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   639
  // Load displaced header and check it has hash code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   640
  mark = monitor->header();
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   641
  assert(mark->is_neutral(), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   642
  hash = mark->hash();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   643
  if (hash == 0) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   644
    hash = get_next_hash(Self, obj);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   645
    temp = mark->copy_set_hash(hash); // merge hash code into header
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   646
    assert(temp->is_neutral(), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   647
    test = (markOop) Atomic::cmpxchg_ptr(temp, monitor, mark);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   648
    if (test != mark) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   649
      // The only update to the header in the monitor (outside GC)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   650
      // is install the hash code. If someone add new usage of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   651
      // displaced header, please update this code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   652
      hash = test->hash();
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   653
      assert(test->is_neutral(), "invariant");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   654
      assert(hash != 0, "Trivial unexpected object/monitor header usage.");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   655
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   656
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   657
  // We finally get the hash
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   658
  return hash;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   661
// Deprecated -- use FastHashCode() instead.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   663
intptr_t ObjectSynchronizer::identity_hash_value_for(Handle obj) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   664
  return FastHashCode(Thread::current(), obj());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   668
bool ObjectSynchronizer::current_thread_holds_lock(JavaThread* thread,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   669
                                                   Handle h_obj) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   670
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   671
    BiasedLocking::revoke_and_rebias(h_obj, false, thread);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   672
    assert(!h_obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   673
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   674
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   675
  assert(thread == JavaThread::current(), "Can only be called on current thread");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   676
  oop obj = h_obj();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   677
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   678
  markOop mark = ReadStableMark(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   680
  // Uncontended case, header points to stack
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   681
  if (mark->has_locker()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   682
    return thread->is_lock_owned((address)mark->locker());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   684
  // Contended case, header points to ObjectMonitor (tagged pointer)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   685
  if (mark->has_monitor()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   686
    ObjectMonitor* monitor = mark->monitor();
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   687
    return monitor->is_entered(thread) != 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   689
  // Unlocked case, header in place
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   690
  assert(mark->is_neutral(), "sanity check");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   691
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   694
// Be aware of this method could revoke bias of the lock object.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22190
diff changeset
   695
// This method queries the ownership of the lock handle specified by 'h_obj'.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   696
// If the current thread owns the lock, it returns owner_self. If no
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   697
// thread owns the lock, it returns owner_none. Otherwise, it will return
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22190
diff changeset
   698
// owner_other.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   699
ObjectSynchronizer::LockOwnership ObjectSynchronizer::query_lock_ownership
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   700
(JavaThread *self, Handle h_obj) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   701
  // The caller must beware this method can revoke bias, and
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   702
  // revocation can result in a safepoint.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   703
  assert(!SafepointSynchronize::is_at_safepoint(), "invariant");
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   704
  assert(self->thread_state() != _thread_blocked, "invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   706
  // Possible mark states: neutral, biased, stack-locked, inflated
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   707
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   708
  if (UseBiasedLocking && h_obj()->mark()->has_bias_pattern()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   709
    // CASE: biased
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   710
    BiasedLocking::revoke_and_rebias(h_obj, false, self);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   711
    assert(!h_obj->mark()->has_bias_pattern(),
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   712
           "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   713
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   715
  assert(self == JavaThread::current(), "Can only be called on current thread");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   716
  oop obj = h_obj();
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   717
  markOop mark = ReadStableMark(obj);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   718
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   719
  // CASE: stack-locked.  Mark points to a BasicLock on the owner's stack.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   720
  if (mark->has_locker()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   721
    return self->is_lock_owned((address)mark->locker()) ?
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   722
      owner_self : owner_other;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   723
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   725
  // CASE: inflated. Mark (tagged pointer) points to an objectMonitor.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   726
  // The Object:ObjectMonitor relationship is stable as long as we're
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   727
  // not at a safepoint.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   728
  if (mark->has_monitor()) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   729
    void * owner = mark->monitor()->_owner;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   730
    if (owner == NULL) return owner_none;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   731
    return (owner == self ||
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   732
            self->is_lock_owned((address)owner)) ? owner_self : owner_other;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   733
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   734
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   735
  // CASE: neutral
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   736
  assert(mark->is_neutral(), "sanity check");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   737
  return owner_none;           // it's unlocked
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   738
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   740
// FIXME: jvmti should call this
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   741
JavaThread* ObjectSynchronizer::get_lock_owner(Handle h_obj, bool doLock) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   742
  if (UseBiasedLocking) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   743
    if (SafepointSynchronize::is_at_safepoint()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   744
      BiasedLocking::revoke_at_safepoint(h_obj);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   745
    } else {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   746
      BiasedLocking::revoke_and_rebias(h_obj, false, JavaThread::current());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   747
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   748
    assert(!h_obj->mark()->has_bias_pattern(), "biases should be revoked by now");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   749
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   750
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   751
  oop obj = h_obj();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   752
  address owner = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   753
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   754
  markOop mark = ReadStableMark(obj);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   755
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   756
  // Uncontended case, header points to stack
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   757
  if (mark->has_locker()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   758
    owner = (address) mark->locker();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   759
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   760
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   761
  // Contended case, header points to ObjectMonitor (tagged pointer)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   762
  if (mark->has_monitor()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   763
    ObjectMonitor* monitor = mark->monitor();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   764
    assert(monitor != NULL, "monitor should be non-null");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   765
    owner = (address) monitor->owner();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   766
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   767
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   768
  if (owner != NULL) {
15853
1c4e16950e96 8007476: assert(the_owner != NULL) failed: Did not find owning Java thread for lock word address
dcubed
parents: 15475
diff changeset
   769
    // owning_thread_from_monitor_owner() may also return NULL here
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   770
    return Threads::owning_thread_from_monitor_owner(owner, doLock);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   771
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   772
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   773
  // Unlocked case, header in place
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   774
  // Cannot have assertion since this object may have been
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   775
  // locked by another thread when reaching here.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   776
  // assert(mark->is_neutral(), "sanity check");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   777
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   778
  return NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   779
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   780
// Visitors ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   781
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   782
void ObjectSynchronizer::monitors_iterate(MonitorClosure* closure) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   783
  ObjectMonitor* block = gBlockList;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   784
  ObjectMonitor* mid;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   785
  while (block) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   786
    assert(block->object() == CHAINMARKER, "must be a block header");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   787
    for (int i = _BLOCKSIZE - 1; i > 0; i--) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   788
      mid = block + i;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   789
      oop object = (oop) mid->object();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   790
      if (object != NULL) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   791
        closure->do_monitor(mid);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   792
      }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   793
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   794
    block = (ObjectMonitor*) block->FreeNext;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   798
// Get the next block in the block list.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   799
static inline ObjectMonitor* next(ObjectMonitor* block) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   800
  assert(block->object() == CHAINMARKER, "must be a block header");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   801
  block = block->FreeNext;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   802
  assert(block == NULL || block->object() == CHAINMARKER, "must be a block header");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   803
  return block;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   807
void ObjectSynchronizer::oops_do(OopClosure* f) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   808
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   809
  for (ObjectMonitor* block = gBlockList; block != NULL; block = next(block)) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   810
    assert(block->object() == CHAINMARKER, "must be a block header");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   811
    for (int i = 1; i < _BLOCKSIZE; i++) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   812
      ObjectMonitor* mid = &block[i];
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   813
      if (mid->object() != NULL) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   814
        f->do_oop((oop*)mid->object_addr());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   821
// -----------------------------------------------------------------------------
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
// ObjectMonitor Lifecycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
// -----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
// Inflation unlinks monitors from the global gFreeList and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
// associates them with objects.  Deflation -- which occurs at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
// STW-time -- disassociates idle monitors from objects.  Such
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
// scavenged monitors are returned to the gFreeList.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
// The global list is protected by ListLock.  All the critical sections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
// are short and operate in constant-time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
// ObjectMonitors reside in type-stable memory (TSM) and are immortal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
// Lifecycle:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
// --   unassigned and on the global free list
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
// --   unassigned and on a thread's private omFreeList
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
// --   assigned to an object.  The object is inflated and the mark refers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
//      to the objectmonitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   841
// Constraining monitor pool growth via MonitorBound ...
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   842
//
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   843
// The monitor pool is grow-only.  We scavenge at STW safepoint-time, but the
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   844
// the rate of scavenging is driven primarily by GC.  As such,  we can find
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   845
// an inordinate number of monitors in circulation.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   846
// To avoid that scenario we can artificially induce a STW safepoint
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   847
// if the pool appears to be growing past some reasonable bound.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   848
// Generally we favor time in space-time tradeoffs, but as there's no
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   849
// natural back-pressure on the # of extant monitors we need to impose some
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   850
// type of limit.  Beware that if MonitorBound is set to too low a value
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   851
// we could just loop. In addition, if MonitorBound is set to a low value
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   852
// we'll incur more safepoints, which are harmful to performance.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   853
// See also: GuaranteedSafepointInterval
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   854
//
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   855
// The current implementation uses asynchronous VM operations.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   856
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   857
static void InduceScavenge(Thread * Self, const char * Whence) {
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   858
  // Induce STW safepoint to trim monitors
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   859
  // Ultimately, this results in a call to deflate_idle_monitors() in the near future.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   860
  // More precisely, trigger an asynchronous STW safepoint as the number
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   861
  // of active monitors passes the specified threshold.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   862
  // TODO: assert thread state is reasonable
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   863
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   864
  if (ForceMonitorScavenge == 0 && Atomic::xchg (1, &ForceMonitorScavenge) == 0) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   865
    if (ObjectMonitor::Knob_Verbose) {
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   866
      ::printf ("Monitor scavenge - Induced STW @%s (%d)\n", Whence, ForceMonitorScavenge) ;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   867
      ::fflush(stdout);
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   868
    }
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   869
    // Induce a 'null' safepoint to scavenge monitors
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   870
    // Must VM_Operation instance be heap allocated as the op will be enqueue and posted
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   871
    // to the VMthread and have a lifespan longer than that of this activation record.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   872
    // The VMThread will delete the op when completed.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   873
    VMThread::execute(new VM_ForceAsyncSafepoint());
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   874
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
   875
    if (ObjectMonitor::Knob_Verbose) {
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   876
      ::printf ("Monitor scavenge - STW posted @%s (%d)\n", Whence, ForceMonitorScavenge) ;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
   877
      ::fflush(stdout);
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   878
    }
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   879
  }
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   880
}
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   881
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   882
void ObjectSynchronizer::verifyInUse(Thread *Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   883
  ObjectMonitor* mid;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   884
  int inusetally = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   885
  for (mid = Self->omInUseList; mid != NULL; mid = mid->FreeNext) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   886
    inusetally++;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   887
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   888
  assert(inusetally == Self->omInUseCount, "inuse count off");
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   889
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   890
  int freetally = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   891
  for (mid = Self->omFreeList; mid != NULL; mid = mid->FreeNext) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   892
    freetally++;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   893
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   894
  assert(freetally == Self->omFreeCount, "free count off");
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
   895
}
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   896
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   897
ObjectMonitor * NOINLINE ObjectSynchronizer::omAlloc(Thread * Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   898
  // A large MAXPRIVATE value reduces both list lock contention
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   899
  // and list coherency traffic, but also tends to increase the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   900
  // number of objectMonitors in circulation as well as the STW
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   901
  // scavenge costs.  As usual, we lean toward time in space-time
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   902
  // tradeoffs.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   903
  const int MAXPRIVATE = 1024;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   904
  for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   905
    ObjectMonitor * m;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   907
    // 1: try to allocate from the thread's local omFreeList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   908
    // Threads will attempt to allocate first from their local list, then
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   909
    // from the global list, and only after those attempts fail will the thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   910
    // attempt to instantiate new monitors.   Thread-local free lists take
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   911
    // heat off the ListLock and improve allocation latency, as well as reducing
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   912
    // coherency traffic on the shared global list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   913
    m = Self->omFreeList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   914
    if (m != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   915
      Self->omFreeList = m->FreeNext;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   916
      Self->omFreeCount--;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   917
      // CONSIDER: set m->FreeNext = BAD -- diagnostic hygiene
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   918
      guarantee(m->object() == NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   919
      if (MonitorInUseLists) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   920
        m->FreeNext = Self->omInUseList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   921
        Self->omInUseList = m;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   922
        Self->omInUseCount++;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   923
        if (ObjectMonitor::Knob_VerifyInUse) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   924
          verifyInUse(Self);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
        }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   926
      } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   927
        m->FreeNext = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   928
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   929
      return m;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   930
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   932
    // 2: try to allocate from the global gFreeList
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   933
    // CONSIDER: use muxTry() instead of muxAcquire().
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   934
    // If the muxTry() fails then drop immediately into case 3.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   935
    // If we're using thread-local free lists then try
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   936
    // to reprovision the caller's free list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   937
    if (gFreeList != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   938
      // Reprovision the thread's omFreeList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   939
      // Use bulk transfers to reduce the allocation rate and heat
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   940
      // on various locks.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   941
      Thread::muxAcquire(&ListLock, "omAlloc");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   942
      for (int i = Self->omFreeProvision; --i >= 0 && gFreeList != NULL;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   943
        MonitorFreeCount--;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   944
        ObjectMonitor * take = gFreeList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   945
        gFreeList = take->FreeNext;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   946
        guarantee(take->object() == NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   947
        guarantee(!take->is_busy(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   948
        take->Recycle();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   949
        omRelease(Self, take, false);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   950
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   951
      Thread::muxRelease(&ListLock);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   952
      Self->omFreeProvision += 1 + (Self->omFreeProvision/2);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   953
      if (Self->omFreeProvision > MAXPRIVATE) Self->omFreeProvision = MAXPRIVATE;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   954
      TEVENT(omFirst - reprovision);
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
   955
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   956
      const int mx = MonitorBound;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   957
      if (mx > 0 && (MonitorPopulation-MonitorFreeCount) > mx) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   958
        // We can't safely induce a STW safepoint from omAlloc() as our thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   959
        // state may not be appropriate for such activities and callers may hold
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   960
        // naked oops, so instead we defer the action.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   961
        InduceScavenge(Self, "omAlloc");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   962
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   963
      continue;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   964
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   966
    // 3: allocate a block of new ObjectMonitors
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   967
    // Both the local and global free lists are empty -- resort to malloc().
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   968
    // In the current implementation objectMonitors are TSM - immortal.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   969
    assert(_BLOCKSIZE > 1, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   970
    ObjectMonitor * temp = new ObjectMonitor[_BLOCKSIZE];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   972
    // NOTE: (almost) no way to recover if allocation failed.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   973
    // We might be able to induce a STW safepoint and scavenge enough
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   974
    // objectMonitors to permit progress.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   975
    if (temp == NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   976
      vm_exit_out_of_memory(sizeof (ObjectMonitor[_BLOCKSIZE]), OOM_MALLOC_ERROR,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   977
                            "Allocate ObjectMonitors");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   978
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   980
    // Format the block.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   981
    // initialize the linked list, each monitor points to its next
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   982
    // forming the single linked free list, the very first monitor
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   983
    // will points to next block, which forms the block list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   984
    // The trick of using the 1st element in the block as gBlockList
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   985
    // linkage should be reconsidered.  A better implementation would
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   986
    // look like: class Block { Block * next; int N; ObjectMonitor Body [N] ; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   988
    for (int i = 1; i < _BLOCKSIZE; i++) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   989
      temp[i].FreeNext = &temp[i+1];
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   990
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   992
    // terminate the last monitor as the end of list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   993
    temp[_BLOCKSIZE - 1].FreeNext = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   995
    // Element [0] is reserved for global list linkage
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   996
    temp[0].set_object(CHAINMARKER);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   998
    // Consider carving out this thread's current request from the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   999
    // block in hand.  This avoids some lock traffic and redundant
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1000
    // list activity.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1002
    // Acquire the ListLock to manipulate BlockList and FreeList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1003
    // An Oyama-Taura-Yonezawa scheme might be more efficient.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1004
    Thread::muxAcquire(&ListLock, "omAlloc [2]");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1005
    MonitorPopulation += _BLOCKSIZE-1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1006
    MonitorFreeCount += _BLOCKSIZE-1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1008
    // Add the new block to the list of extant blocks (gBlockList).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1009
    // The very first objectMonitor in a block is reserved and dedicated.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1010
    // It serves as blocklist "next" linkage.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1011
    temp[0].FreeNext = gBlockList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1012
    gBlockList = temp;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1014
    // Add the new string of objectMonitors to the global free list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1015
    temp[_BLOCKSIZE - 1].FreeNext = gFreeList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1016
    gFreeList = temp + 1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1017
    Thread::muxRelease(&ListLock);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1018
    TEVENT(Allocate block of monitors);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1019
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
// Place "m" on the caller's private per-thread omFreeList.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
// In practice there's no need to clamp or limit the number of
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
// monitors on a thread's omFreeList as the only time we'll call
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
// omRelease is to return a monitor to the free list after a CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
// attempt failed.  This doesn't allow unbounded #s of monitors to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
// accumulate on a thread's free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1029
void ObjectSynchronizer::omRelease(Thread * Self, ObjectMonitor * m,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1030
                                   bool fromPerThreadAlloc) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1031
  guarantee(m->object() == NULL, "invariant");
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1032
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1033
  // Remove from omInUseList
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1034
  if (MonitorInUseLists && fromPerThreadAlloc) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1035
    ObjectMonitor* curmidinuse = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1036
    for (ObjectMonitor* mid = Self->omInUseList; mid != NULL;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1037
      if (m == mid) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1038
        // extract from per-thread in-use-list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1039
        if (mid == Self->omInUseList) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1040
          Self->omInUseList = mid->FreeNext;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1041
        } else if (curmidinuse != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1042
          curmidinuse->FreeNext = mid->FreeNext; // maintain the current thread inuselist
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1043
        }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1044
        Self->omInUseCount--;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1045
        if (ObjectMonitor::Knob_VerifyInUse) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1046
          verifyInUse(Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1047
        }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1048
        break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1049
      } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1050
        curmidinuse = mid;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1051
        mid = mid->FreeNext;
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1052
      }
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1053
    }
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1054
  }
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1055
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1056
  // FreeNext is used for both omInUseList and omFreeList, so clear old before setting new
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1057
  m->FreeNext = Self->omFreeList;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1058
  Self->omFreeList = m;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1059
  Self->omFreeCount++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
// Return the monitors of a moribund thread's local free list to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
// the global free list.  Typically a thread calls omFlush() when
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
// it's dying.  We could also consider having the VM thread steal
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
// monitors from threads that have not run java code over a few
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
// consecutive STW safepoints.  Relatedly, we might decay
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
// omFreeProvision at STW safepoints.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
//
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1069
// Also return the monitors of a moribund thread's omInUseList to
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1070
// a global gOmInUseList under the global list lock so these
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1071
// will continue to be scanned.
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1072
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
// We currently call omFlush() from the Thread:: dtor _after the thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
// has been excised from the thread list and is no longer a mutator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
// That means that omFlush() can run concurrently with a safepoint and
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
// the scavenge operator.  Calling omFlush() from JavaThread::exit() might
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
// be a better choice as we could safely reason that that the JVM is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
// not at a safepoint at the time of the call, and thus there could
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
// be not inopportune interleavings between omFlush() and the scavenge
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
// operator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1082
void ObjectSynchronizer::omFlush(Thread * Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1083
  ObjectMonitor * List = Self->omFreeList;  // Null-terminated SLL
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1084
  Self->omFreeList = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1085
  ObjectMonitor * Tail = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1086
  int Tally = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1087
  if (List != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1088
    ObjectMonitor * s;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1089
    for (s = List; s != NULL; s = s->FreeNext) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1090
      Tally++;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1091
      Tail = s;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1092
      guarantee(s->object() == NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1093
      guarantee(!s->is_busy(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1094
      s->set_owner(NULL);   // redundant but good hygiene
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1095
      TEVENT(omFlush - Move one);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1097
    guarantee(Tail != NULL && List != NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1098
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1100
  ObjectMonitor * InUseList = Self->omInUseList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1101
  ObjectMonitor * InUseTail = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1102
  int InUseTally = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1103
  if (InUseList != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1104
    Self->omInUseList = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1105
    ObjectMonitor *curom;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1106
    for (curom = InUseList; curom != NULL; curom = curom->FreeNext) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1107
      InUseTail = curom;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1108
      InUseTally++;
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1109
    }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1110
    assert(Self->omInUseCount == InUseTally, "inuse count off");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1111
    Self->omInUseCount = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1112
    guarantee(InUseTail != NULL && InUseList != NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1113
  }
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1114
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1115
  Thread::muxAcquire(&ListLock, "omFlush");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1116
  if (Tail != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1117
    Tail->FreeNext = gFreeList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1118
    gFreeList = List;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1119
    MonitorFreeCount += Tally;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1120
  }
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1121
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1122
  if (InUseTail != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1123
    InUseTail->FreeNext = gOmInUseList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1124
    gOmInUseList = InUseList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1125
    gOmInUseCount += InUseTally;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1126
  }
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1127
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1128
  Thread::muxRelease(&ListLock);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1129
  TEVENT(omFlush);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
// Fast path code shared by multiple functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
ObjectMonitor* ObjectSynchronizer::inflate_helper(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  markOop mark = obj->mark();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  if (mark->has_monitor()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    assert(ObjectSynchronizer::verify_objmon_isinpool(mark->monitor()), "monitor is invalid");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    assert(mark->monitor()->header()->is_neutral(), "monitor must record a good object header");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    return mark->monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
  return ObjectSynchronizer::inflate(Thread::current(), obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1143
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
// Note that we could encounter some performance loss through false-sharing as
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
// multiple locks occupy the same $ line.  Padding might be appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1148
ObjectMonitor * NOINLINE ObjectSynchronizer::inflate(Thread * Self,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1149
                                                     oop object) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  // Inflate mutates the heap ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  // Relaxing assertion for bug 6320749.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1152
  assert(Universe::verify_in_progress() ||
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1153
         !SafepointSynchronize::is_at_safepoint(), "invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  for (;;) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1156
    const markOop mark = object->mark();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1157
    assert(!mark->has_bias_pattern(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1158
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1159
    // The mark can be in one of the following states:
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1160
    // *  Inflated     - just return
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1161
    // *  Stack-locked - coerce it to inflated
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1162
    // *  INFLATING    - busy wait for conversion to complete
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1163
    // *  Neutral      - aggressively inflate the object.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1164
    // *  BIASED       - Illegal.  We should never see this
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1166
    // CASE: inflated
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1167
    if (mark->has_monitor()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1168
      ObjectMonitor * inf = mark->monitor();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1169
      assert(inf->header()->is_neutral(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1170
      assert(inf->object() == object, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1171
      assert(ObjectSynchronizer::verify_objmon_isinpool(inf), "monitor is invalid");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1172
      return inf;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1173
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1174
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1175
    // CASE: inflation in progress - inflating over a stack-lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1176
    // Some other thread is converting from stack-locked to inflated.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1177
    // Only that thread can complete inflation -- other threads must wait.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1178
    // The INFLATING value is transient.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1179
    // Currently, we spin/yield/park and poll the markword, waiting for inflation to finish.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1180
    // We could always eliminate polling by parking the thread on some auxiliary list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1181
    if (mark == markOopDesc::INFLATING()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1182
      TEVENT(Inflate: spin while INFLATING);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1183
      ReadStableMark(object);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1184
      continue;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1185
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1187
    // CASE: stack-locked
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1188
    // Could be stack-locked either by this thread or by some other thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1189
    //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1190
    // Note that we allocate the objectmonitor speculatively, _before_ attempting
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1191
    // to install INFLATING into the mark word.  We originally installed INFLATING,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1192
    // allocated the objectmonitor, and then finally STed the address of the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1193
    // objectmonitor into the mark.  This was correct, but artificially lengthened
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1194
    // the interval in which INFLATED appeared in the mark, thus increasing
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1195
    // the odds of inflation contention.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1196
    //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1197
    // We now use per-thread private objectmonitor free lists.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1198
    // These list are reprovisioned from the global free list outside the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1199
    // critical INFLATING...ST interval.  A thread can transfer
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1200
    // multiple objectmonitors en-mass from the global free list to its local free list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1201
    // This reduces coherency traffic and lock contention on the global free list.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1202
    // Using such local free lists, it doesn't matter if the omAlloc() call appears
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1203
    // before or after the CAS(INFLATING) operation.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1204
    // See the comments in omAlloc().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1206
    if (mark->has_locker()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1207
      ObjectMonitor * m = omAlloc(Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1208
      // Optimistically prepare the objectmonitor - anticipate successful CAS
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1209
      // We do this before the CAS in order to minimize the length of time
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1210
      // in which INFLATING appears in the mark.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1211
      m->Recycle();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1212
      m->_Responsible  = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1213
      m->OwnerIsThread = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1214
      m->_recursions   = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1215
      m->_SpinDuration = ObjectMonitor::Knob_SpinLimit;   // Consider: maintain by type/class
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1216
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1217
      markOop cmp = (markOop) Atomic::cmpxchg_ptr(markOopDesc::INFLATING(), object->mark_addr(), mark);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1218
      if (cmp != mark) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1219
        omRelease(Self, m, true);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1220
        continue;       // Interference -- just retry
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1223
      // We've successfully installed INFLATING (0) into the mark-word.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1224
      // This is the only case where 0 will appear in a mark-work.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1225
      // Only the singular thread that successfully swings the mark-word
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1226
      // to 0 can perform (or more precisely, complete) inflation.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
      //
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1228
      // Why do we CAS a 0 into the mark-word instead of just CASing the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1229
      // mark-word from the stack-locked value directly to the new inflated state?
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1230
      // Consider what happens when a thread unlocks a stack-locked object.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1231
      // It attempts to use CAS to swing the displaced header value from the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1232
      // on-stack basiclock back into the object header.  Recall also that the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1233
      // header value (hashcode, etc) can reside in (a) the object header, or
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1234
      // (b) a displaced header associated with the stack-lock, or (c) a displaced
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1235
      // header in an objectMonitor.  The inflate() routine must copy the header
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1236
      // value from the basiclock on the owner's stack to the objectMonitor, all
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1237
      // the while preserving the hashCode stability invariants.  If the owner
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1238
      // decides to release the lock while the value is 0, the unlock will fail
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1239
      // and control will eventually pass from slow_exit() to inflate.  The owner
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1240
      // will then spin, waiting for the 0 value to disappear.   Put another way,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1241
      // the 0 causes the owner to stall if the owner happens to try to
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1242
      // drop the lock (restoring the header from the basiclock to the object)
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1243
      // while inflation is in-progress.  This protocol avoids races that might
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1244
      // would otherwise permit hashCode values to change or "flicker" for an object.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1245
      // Critically, while object->mark is 0 mark->displaced_mark_helper() is stable.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1246
      // 0 serves as a "BUSY" inflate-in-progress indicator.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1249
      // fetch the displaced mark from the owner's stack.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1250
      // The owner can't die or unwind past the lock while our INFLATING
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1251
      // object is in the mark.  Furthermore the owner can't complete
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1252
      // an unlock on the object, either.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1253
      markOop dmw = mark->displaced_mark_helper();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1254
      assert(dmw->is_neutral(), "invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1256
      // Setup monitor fields to proper values -- prepare the monitor
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1257
      m->set_header(dmw);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1259
      // Optimization: if the mark->locker stack address is associated
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1260
      // with this thread we could simply set m->_owner = Self and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1261
      // m->OwnerIsThread = 1. Note that a thread can inflate an object
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1262
      // that it has stack-locked -- as might happen in wait() -- directly
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1263
      // with CAS.  That is, we can avoid the xchg-NULL .... ST idiom.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1264
      m->set_owner(mark->locker());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
      m->set_object(object);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1266
      // TODO-FIXME: assert BasicLock->dhw != 0.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1268
      // Must preserve store ordering. The monitor state must
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1269
      // be stable at the time of publishing the monitor address.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1270
      guarantee(object->mark() == markOopDesc::INFLATING(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1271
      object->release_set_mark(markOopDesc::encode(m));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1273
      // Hopefully the performance counters are allocated on distinct cache lines
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1274
      // to avoid false sharing on MP systems ...
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1275
      if (ObjectMonitor::_sync_Inflations != NULL) ObjectMonitor::_sync_Inflations->inc();
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1276
      TEVENT(Inflate: overwrite stacklock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
      if (TraceMonitorInflation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
        if (object->is_instance()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
          ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
          tty->print_cr("Inflating object " INTPTR_FORMAT " , mark " INTPTR_FORMAT " , type %s",
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1281
                        (void *) object, (intptr_t) object->mark(),
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1282
                        object->klass()->external_name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
      }
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1285
      return m;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1286
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1287
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1288
    // CASE: neutral
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1289
    // TODO-FIXME: for entry we currently inflate and then try to CAS _owner.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1290
    // If we know we're inflating for entry it's better to inflate by swinging a
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1291
    // pre-locked objectMonitor pointer into the object header.   A successful
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1292
    // CAS inflates the object *and* confers ownership to the inflating thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1293
    // In the current implementation we use a 2-step mechanism where we CAS()
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1294
    // to inflate and then CAS() again to try to swing _owner from NULL to Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1295
    // An inflateTry() method that we could call from fast_enter() and slow_enter()
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1296
    // would be useful.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1297
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1298
    assert(mark->is_neutral(), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1299
    ObjectMonitor * m = omAlloc(Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1300
    // prepare m for installation - set monitor to initial state
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1301
    m->Recycle();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1302
    m->set_header(mark);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1303
    m->set_owner(NULL);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1304
    m->set_object(object);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1305
    m->OwnerIsThread = 1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1306
    m->_recursions   = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1307
    m->_Responsible  = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1308
    m->_SpinDuration = ObjectMonitor::Knob_SpinLimit;       // consider: keep metastats by type/class
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1309
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1310
    if (Atomic::cmpxchg_ptr (markOopDesc::encode(m), object->mark_addr(), mark) != mark) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1311
      m->set_object(NULL);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1312
      m->set_owner(NULL);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1313
      m->OwnerIsThread = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1314
      m->Recycle();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1315
      omRelease(Self, m, true);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1316
      m = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1317
      continue;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1318
      // interference - the markword changed - just retry.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1319
      // The state-transitions are one-way, so there's no chance of
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1320
      // live-lock -- "Inflated" is an absorbing state.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1321
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1322
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1323
    // Hopefully the performance counters are allocated on distinct
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1324
    // cache lines to avoid false sharing on MP systems ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1325
    if (ObjectMonitor::_sync_Inflations != NULL) ObjectMonitor::_sync_Inflations->inc();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1326
    TEVENT(Inflate: overwrite neutral);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1327
    if (TraceMonitorInflation) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1328
      if (object->is_instance()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1329
        ResourceMark rm;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1330
        tty->print_cr("Inflating object " INTPTR_FORMAT " , mark " INTPTR_FORMAT " , type %s",
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1331
                      (void *) object, (intptr_t) object->mark(),
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1332
                      object->klass()->external_name());
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1333
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1334
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1335
    return m;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1339
// Note that we could encounter some performance loss through false-sharing as
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1340
// multiple locks occupy the same $ line.  Padding might be appropriate.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
// Deflate_idle_monitors() is called at all safepoints, immediately
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
// after all mutators are stopped, but before any objects have moved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
// It traverses the list of known monitors, deflating where possible.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
// The scavenged monitor are returned to the monitor free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
// Beware that we scavenge at *every* stop-the-world point.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
// Having a large number of monitors in-circulation negatively
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
// impacts the performance of some applications (e.g., PointBase).
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
// Broadly, we want to minimize the # of monitors in circulation.
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1352
//
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1353
// We have added a flag, MonitorInUseLists, which creates a list
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1354
// of active monitors for each thread. deflate_idle_monitors()
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1355
// only scans the per-thread inuse lists. omAlloc() puts all
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1356
// assigned monitors on the per-thread list. deflate_idle_monitors()
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1357
// returns the non-busy monitors to the global free list.
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1358
// When a thread dies, omFlush() adds the list of active monitors for
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1359
// that thread to a global gOmInUseList acquiring the
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1360
// global list lock. deflate_idle_monitors() acquires the global
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1361
// list lock to scan for non-busy monitors to the global free list.
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1362
// An alternative could have used a single global inuse list. The
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1363
// downside would have been the additional cost of acquiring the global list lock
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1364
// for every omAlloc().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
// Perversely, the heap size -- and thus the STW safepoint rate --
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
// typically drives the scavenge rate.  Large heaps can mean infrequent GC,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
// which in turn can mean large(r) numbers of objectmonitors in circulation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
// This is an unfortunate aspect of this design.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1371
enum ManifestConstants {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1372
  ClearResponsibleAtSTW   = 0,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1373
  MaximumRecheckInterval  = 1000
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1374
};
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1375
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1376
// Deflate a single monitor if not in use
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1377
// Return true if deflated, false if in use
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1378
bool ObjectSynchronizer::deflate_monitor(ObjectMonitor* mid, oop obj,
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1379
                                         ObjectMonitor** freeHeadp,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1380
                                         ObjectMonitor** freeTailp) {
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1381
  bool deflated;
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1382
  // Normal case ... The monitor is associated with obj.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1383
  guarantee(obj->mark() == markOopDesc::encode(mid), "invariant");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1384
  guarantee(mid == obj->mark()->monitor(), "invariant");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1385
  guarantee(mid->header()->is_neutral(), "invariant");
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1386
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1387
  if (mid->is_busy()) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1388
    if (ClearResponsibleAtSTW) mid->_Responsible = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1389
    deflated = false;
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1390
  } else {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1391
    // Deflate the monitor if it is no longer being used
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1392
    // It's idle - scavenge and return to the global free list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1393
    // plain old deflation ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1394
    TEVENT(deflate_idle_monitors - scavenge1);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1395
    if (TraceMonitorInflation) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1396
      if (obj->is_instance()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1397
        ResourceMark rm;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1398
        tty->print_cr("Deflating object " INTPTR_FORMAT " , mark " INTPTR_FORMAT " , type %s",
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1399
                      (void *) obj, (intptr_t) obj->mark(), obj->klass()->external_name());
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1400
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1401
    }
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1402
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1403
    // Restore the header back to obj
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1404
    obj->release_set_mark(mid->header());
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1405
    mid->clear();
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1406
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1407
    assert(mid->object() == NULL, "invariant");
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1408
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1409
    // Move the object to the working free list defined by FreeHead,FreeTail.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1410
    if (*freeHeadp == NULL) *freeHeadp = mid;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1411
    if (*freeTailp != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1412
      ObjectMonitor * prevtail = *freeTailp;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1413
      assert(prevtail->FreeNext == NULL, "cleaned up deflated?"); // TODO KK
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1414
      prevtail->FreeNext = mid;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1415
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1416
    *freeTailp = mid;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1417
    deflated = true;
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1418
  }
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1419
  return deflated;
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1420
}
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1421
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1422
// Caller acquires ListLock
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1423
int ObjectSynchronizer::walk_monitor_list(ObjectMonitor** listheadp,
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1424
                                          ObjectMonitor** freeHeadp,
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1425
                                          ObjectMonitor** freeTailp) {
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1426
  ObjectMonitor* mid;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1427
  ObjectMonitor* next;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1428
  ObjectMonitor* curmidinuse = NULL;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1429
  int deflatedcount = 0;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1430
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1431
  for (mid = *listheadp; mid != NULL;) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1432
    oop obj = (oop) mid->object();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1433
    bool deflated = false;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1434
    if (obj != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1435
      deflated = deflate_monitor(mid, obj, freeHeadp, freeTailp);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1436
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1437
    if (deflated) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1438
      // extract from per-thread in-use-list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1439
      if (mid == *listheadp) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1440
        *listheadp = mid->FreeNext;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1441
      } else if (curmidinuse != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1442
        curmidinuse->FreeNext = mid->FreeNext; // maintain the current thread inuselist
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1443
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1444
      next = mid->FreeNext;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1445
      mid->FreeNext = NULL;  // This mid is current tail in the FreeHead list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1446
      mid = next;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1447
      deflatedcount++;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1448
    } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1449
      curmidinuse = mid;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1450
      mid = mid->FreeNext;
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1451
    }
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1452
  }
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1453
  return deflatedcount;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1454
}
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1455
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
void ObjectSynchronizer::deflate_idle_monitors() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
  assert(SafepointSynchronize::is_at_safepoint(), "must be at safepoint");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1458
  int nInuse = 0;              // currently associated with objects
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1459
  int nInCirculation = 0;      // extant
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1460
  int nScavenged = 0;          // reclaimed
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1461
  bool deflated = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1463
  ObjectMonitor * FreeHead = NULL;  // Local SLL of scavenged monitors
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1464
  ObjectMonitor * FreeTail = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1466
  TEVENT(deflate_idle_monitors);
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1467
  // Prevent omFlush from changing mids in Thread dtor's during deflation
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1468
  // And in case the vm thread is acquiring a lock during a safepoint
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1469
  // See e.g. 6320749
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1470
  Thread::muxAcquire(&ListLock, "scavenge - return");
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1471
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1472
  if (MonitorInUseLists) {
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1473
    int inUse = 0;
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1474
    for (JavaThread* cur = Threads::first(); cur != NULL; cur = cur->next()) {
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1475
      nInCirculation+= cur->omInUseCount;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1476
      int deflatedcount = walk_monitor_list(cur->omInUseList_addr(), &FreeHead, &FreeTail);
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1477
      cur->omInUseCount-= deflatedcount;
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1478
      if (ObjectMonitor::Knob_VerifyInUse) {
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1479
        verifyInUse(cur);
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1480
      }
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1481
      nScavenged += deflatedcount;
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1482
      nInuse += cur->omInUseCount;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1483
    }
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1484
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1485
    // For moribund threads, scan gOmInUseList
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1486
    if (gOmInUseList) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1487
      nInCirculation += gOmInUseCount;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1488
      int deflatedcount = walk_monitor_list((ObjectMonitor **)&gOmInUseList, &FreeHead, &FreeTail);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1489
      gOmInUseCount-= deflatedcount;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1490
      nScavenged += deflatedcount;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1491
      nInuse += gOmInUseCount;
5920
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1492
    }
8fdbb85e62d3 6964164: MonitorInUseLists leak of contended objects
acorn
parents: 5712
diff changeset
  1493
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1494
  } else for (ObjectMonitor* block = gBlockList; block != NULL; block = next(block)) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1495
    // Iterate over all extant monitors - Scavenge all idle monitors.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
    assert(block->object() == CHAINMARKER, "must be a block header");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1497
    nInCirculation += _BLOCKSIZE;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1498
    for (int i = 1; i < _BLOCKSIZE; i++) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
      ObjectMonitor* mid = &block[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
      oop obj = (oop) mid->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
      if (obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
        // The monitor is not associated with an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
        // The monitor should either be a thread-specific private
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
        // free list or the global free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
        // obj == NULL IMPLIES mid->is_busy() == 0
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1507
        guarantee(!mid->is_busy(), "invariant");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1508
        continue;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
      }
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1510
      deflated = deflate_monitor(mid, obj, &FreeHead, &FreeTail);
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1511
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1512
      if (deflated) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1513
        mid->FreeNext = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1514
        nScavenged++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
      } else {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1516
        nInuse++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1521
  MonitorFreeCount += nScavenged;
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1522
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1523
  // Consider: audit gFreeList to ensure that MonitorFreeCount and list agree.
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1524
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1525
  if (ObjectMonitor::Knob_Verbose) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1526
    ::printf("Deflate: InCirc=%d InUse=%d Scavenged=%d ForceMonitorScavenge=%d : pop=%d free=%d\n",
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1527
             nInCirculation, nInuse, nScavenged, ForceMonitorScavenge,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1528
             MonitorPopulation, MonitorFreeCount);
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1529
    ::fflush(stdout);
5710
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1530
  }
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1531
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1532
  ForceMonitorScavenge = 0;    // Reset
d664086c0add 6852873: Reduce safepoint cleanup time
acorn
parents: 2526
diff changeset
  1533
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
  // Move the scavenged monitors back to the global free list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
  if (FreeHead != NULL) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1536
    guarantee(FreeTail != NULL && nScavenged > 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1537
    assert(FreeTail->FreeNext == NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1538
    // constant-time list splice - prepend scavenged segment to gFreeList
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1539
    FreeTail->FreeNext = gFreeList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1540
    gFreeList = FreeHead;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
  }
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1542
  Thread::muxRelease(&ListLock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1544
  if (ObjectMonitor::_sync_Deflations != NULL) ObjectMonitor::_sync_Deflations->inc(nScavenged);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1545
  if (ObjectMonitor::_sync_MonExtant  != NULL) ObjectMonitor::_sync_MonExtant ->set_value(nInCirculation);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
  // TODO: Add objectMonitor leak detection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
  // Audit/inventory the objectMonitors -- make sure they're all accounted for.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1549
  GVars.stwRandom = os::random();
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1550
  GVars.stwCycle++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1553
// Monitor cleanup on JavaThread::exit
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1555
// Iterate through monitor cache and attempt to release thread's monitors
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1556
// Gives up on a particular monitor if an exception occurs, but continues
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1557
// the overall iteration, swallowing the exception.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1558
class ReleaseJavaMonitorsClosure: public MonitorClosure {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1559
 private:
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1560
  TRAPS;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1562
 public:
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1563
  ReleaseJavaMonitorsClosure(Thread* thread) : THREAD(thread) {}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1564
  void do_monitor(ObjectMonitor* mid) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1565
    if (mid->owner() == THREAD) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1566
      (void)mid->complete_exit(CHECK);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1567
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1568
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1569
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1571
// Release all inflated monitors owned by THREAD.  Lightweight monitors are
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1572
// ignored.  This is meant to be called during JNI thread detach which assumes
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1573
// all remaining monitors are heavyweight.  All exceptions are swallowed.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1574
// Scanning the extant monitor list can be time consuming.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1575
// A simple optimization is to add a per-thread flag that indicates a thread
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1576
// called jni_monitorenter() during its lifetime.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
//
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1578
// Instead of No_Savepoint_Verifier it might be cheaper to
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1579
// use an idiom of the form:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1580
//   auto int tmp = SafepointSynchronize::_safepoint_counter ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1581
//   <code that must not run at safepoint>
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1582
//   guarantee (((tmp ^ _safepoint_counter) | (tmp & 1)) == 0) ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1583
// Since the tests are extremely cheap we could leave them enabled
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1584
// for normal product builds.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1586
void ObjectSynchronizer::release_monitors_owned_by_thread(TRAPS) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1587
  assert(THREAD == JavaThread::current(), "must be current Java thread");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24424
diff changeset
  1588
  No_Safepoint_Verifier nsv;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1589
  ReleaseJavaMonitorsClosure rjmc(THREAD);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1590
  Thread::muxAcquire(&ListLock, "release_monitors_owned_by_thread");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1591
  ObjectSynchronizer::monitors_iterate(&rjmc);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1592
  Thread::muxRelease(&ListLock);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5920
diff changeset
  1593
  THREAD->clear_pending_exception();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
//------------------------------------------------------------------------------
25633
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1597
// Debugging code
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1598
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1599
void ObjectSynchronizer::sanity_checks(const bool verbose,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1600
                                       const uint cache_line_size,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1601
                                       int *error_cnt_ptr,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1602
                                       int *warning_cnt_ptr) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1603
  u_char *addr_begin      = (u_char*)&GVars;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1604
  u_char *addr_stwRandom  = (u_char*)&GVars.stwRandom;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1605
  u_char *addr_hcSequence = (u_char*)&GVars.hcSequence;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1606
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1607
  if (verbose) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1608
    tty->print_cr("INFO: sizeof(SharedGlobals)=" SIZE_FORMAT,
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1609
                  sizeof(SharedGlobals));
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1610
  }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1611
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1612
  uint offset_stwRandom = (uint)(addr_stwRandom - addr_begin);
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1613
  if (verbose) tty->print_cr("INFO: offset(stwRandom)=%u", offset_stwRandom);
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1614
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1615
  uint offset_hcSequence = (uint)(addr_hcSequence - addr_begin);
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1616
  if (verbose) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1617
    tty->print_cr("INFO: offset(_hcSequence)=%u", offset_hcSequence);
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1618
  }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1619
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1620
  if (cache_line_size != 0) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1621
    // We were able to determine the L1 data cache line size so
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1622
    // do some cache line specific sanity checks
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1623
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1624
    if (offset_stwRandom < cache_line_size) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1625
      tty->print_cr("WARNING: the SharedGlobals.stwRandom field is closer "
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1626
                    "to the struct beginning than a cache line which permits "
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1627
                    "false sharing.");
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1628
      (*warning_cnt_ptr)++;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1629
    }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1630
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1631
    if ((offset_hcSequence - offset_stwRandom) < cache_line_size) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1632
      tty->print_cr("WARNING: the SharedGlobals.stwRandom and "
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1633
                    "SharedGlobals.hcSequence fields are closer than a cache "
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1634
                    "line which permits false sharing.");
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1635
      (*warning_cnt_ptr)++;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1636
    }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1637
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1638
    if ((sizeof(SharedGlobals) - offset_hcSequence) < cache_line_size) {
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1639
      tty->print_cr("WARNING: the SharedGlobals.hcSequence field is closer "
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1640
                    "to the struct end than a cache line which permits false "
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1641
                    "sharing.");
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1642
      (*warning_cnt_ptr)++;
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1643
    }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1644
  }
4cd9c4622c8c 8049717: expose L1_data_cache_line_size for diagnostic/sanity checks
dcubed
parents: 25477
diff changeset
  1645
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
// Verify all monitors in the monitor cache, the verification is weak.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
void ObjectSynchronizer::verify() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
  ObjectMonitor* block = gBlockList;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
  ObjectMonitor* mid;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
  while (block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
    assert(block->object() == CHAINMARKER, "must be a block header");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
    for (int i = 1; i < _BLOCKSIZE; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
      mid = block + i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
      oop object = (oop) mid->object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
      if (object != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
        mid->verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
    block = (ObjectMonitor*) block->FreeNext;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
// Check if monitor belongs to the monitor cache
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
// The list is grow-only so it's *relatively* safe to traverse
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
// the list of extant blocks without taking a lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
int ObjectSynchronizer::verify_objmon_isinpool(ObjectMonitor *monitor) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
  ObjectMonitor* block = gBlockList;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
  while (block) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
    assert(block->object() == CHAINMARKER, "must be a block header");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
    if (monitor > &block[0] && monitor < &block[_BLOCKSIZE]) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
      address mon = (address) monitor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
      address blk = (address) block;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
      size_t diff = mon - blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
      assert((diff % sizeof(ObjectMonitor)) == 0, "check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
      return 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
    block = (ObjectMonitor*) block->FreeNext;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
#endif