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