src/hotspot/share/runtime/objectMonitor.cpp
author stefank
Mon, 25 Nov 2019 12:22:13 +0100
changeset 59247 56bf71d64d51
parent 59156 14fa9e70ae71
child 59252 623722a6aeb9
permissions -rw-r--r--
8234562: Move OrderAccess::release_store*/load_acquire to Atomic Reviewed-by: rehn, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     1
/*
53557
4cfe0e5a3b79 8217658: baseline_cleanups from Async Monitor Deflation project
dcubed
parents: 52450
diff changeset
     2
 * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     4
 *
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     7
 * published by the Free Software Foundation.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     8
 *
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    13
 * accompanied this code).
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    14
 *
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    18
 *
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    21
 * questions.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    22
 *
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    23
 */
dc9b63952682 6988353: refactor contended sync subsystem
acorn
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"
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
    27
#include "jfr/jfrEvents.hpp"
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
    28
#include "jfr/support/jfrThreadId.hpp"
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
    29
#include "logging/log.hpp"
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
    30
#include "logging/logStream.hpp"
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
    31
#include "memory/allocation.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    32
#include "memory/resourceArea.hpp"
57811
947252a54b98 8229838: Rename markOop files to markWord
stefank
parents: 57777
diff changeset
    33
#include "oops/markWord.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    34
#include "oops/oop.inline.hpp"
40655
9f644073d3a0 8157907: Incorrect inclusion of atomic.hpp instead of atomic.inline.hpp
dholmes
parents: 39702
diff changeset
    35
#include "runtime/atomic.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    36
#include "runtime/handles.inline.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49038
diff changeset
    37
#include "runtime/interfaceSupport.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    38
#include "runtime/mutexLocker.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    39
#include "runtime/objectMonitor.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    40
#include "runtime/objectMonitor.inline.hpp"
50429
83aec1d357d4 8204301: Make OrderAccess functions available to hpp rather than inline.hpp files
coleenp
parents: 50113
diff changeset
    41
#include "runtime/orderAccess.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    42
#include "runtime/osThread.hpp"
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47634
diff changeset
    43
#include "runtime/safepointMechanism.inline.hpp"
49593
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49449
diff changeset
    44
#include "runtime/sharedRuntime.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    45
#include "runtime/stubRoutines.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 13728
diff changeset
    46
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    47
#include "services/threadService.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    48
#include "utilities/dtrace.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
    49
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    50
#include "utilities/preserveException.hpp"
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
    51
#if INCLUDE_JFR
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
    52
#include "jfr/support/jfrFlush.hpp"
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
    53
#endif
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    54
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    55
#ifdef DTRACE_ENABLED
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    56
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    57
// Only bother with this argument setup if dtrace is available
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    58
// TODO-FIXME: probes should not fire when caller is _blocked.  assert() accordingly.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    59
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    60
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    61
#define DTRACE_MONITOR_PROBE_COMMON(obj, thread)                           \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    62
  char* bytes = NULL;                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    63
  int len = 0;                                                             \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    64
  jlong jtid = SharedRuntime::get_java_tid(thread);                        \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    65
  Symbol* klassname = ((oop)obj)->klass()->name();                         \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    66
  if (klassname != NULL) {                                                 \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    67
    bytes = (char*)klassname->bytes();                                     \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    68
    len = klassname->utf8_length();                                        \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    69
  }
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    70
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    71
#define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis)            \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    72
  {                                                                        \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    73
    if (DTraceMonitorProbes) {                                             \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    74
      DTRACE_MONITOR_PROBE_COMMON(obj, thread);                            \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    75
      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
    76
                           (monitor), bytes, len, (millis));               \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    77
    }                                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    78
  }
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    79
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    80
#define HOTSPOT_MONITOR_contended__enter HOTSPOT_MONITOR_CONTENDED_ENTER
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    81
#define HOTSPOT_MONITOR_contended__entered HOTSPOT_MONITOR_CONTENDED_ENTERED
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    82
#define HOTSPOT_MONITOR_contended__exit HOTSPOT_MONITOR_CONTENDED_EXIT
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    83
#define HOTSPOT_MONITOR_notify HOTSPOT_MONITOR_NOTIFY
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    84
#define HOTSPOT_MONITOR_notifyAll HOTSPOT_MONITOR_NOTIFYALL
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    85
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    86
#define DTRACE_MONITOR_PROBE(probe, monitor, obj, thread)                  \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    87
  {                                                                        \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    88
    if (DTraceMonitorProbes) {                                             \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    89
      DTRACE_MONITOR_PROBE_COMMON(obj, thread);                            \
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    90
      HOTSPOT_MONITOR_##probe(jtid,                                        \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
    91
                              (uintptr_t)(monitor), bytes, len);           \
10739
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    92
    }                                                                      \
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    93
  }
91935236600e 7098194: integrate macosx-port changes
dcubed
parents: 10565
diff changeset
    94
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    95
#else //  ndef DTRACE_ENABLED
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    96
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10739
diff changeset
    97
#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
    98
#define DTRACE_MONITOR_PROBE(probe, obj, thread, mon)          {;}
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
    99
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   100
#endif // ndef DTRACE_ENABLED
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   101
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   102
// Tunables ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   103
// The knob* variables are effectively final.  Once set they should
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   104
// never be modified hence.  Consider using __read_mostly with GCC.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   105
50083
07015dd8157f 8132287: obsolete the "InlineNotify" flag option
dcubed
parents: 49593
diff changeset
   106
int ObjectMonitor::Knob_SpinLimit    = 5000;    // derived by an external tool -
07015dd8157f 8132287: obsolete the "InlineNotify" flag option
dcubed
parents: 49593
diff changeset
   107
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   108
static int Knob_Bonus               = 100;     // spin success bonus
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   109
static int Knob_BonusB              = 100;     // spin success bonus
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   110
static int Knob_Penalty             = 200;     // spin failure penalty
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   111
static int Knob_Poverty             = 1000;
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   112
static int Knob_FixedSpin           = 0;
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   113
static int Knob_PreSpin             = 10;      // 20-100 likely better
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   114
51960
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
   115
DEBUG_ONLY(static volatile bool InitDone = false;)
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   116
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   117
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   118
// Theory of operations -- Monitors lists, thread residency, etc:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   119
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   120
// * A thread acquires ownership of a monitor by successfully
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   121
//   CAS()ing the _owner field from null to non-null.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   122
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   123
// * Invariant: A thread appears on at most one monitor list --
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   124
//   cxq, EntryList or WaitSet -- at any one time.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   125
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   126
// * Contending threads "push" themselves onto the cxq with CAS
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   127
//   and then spin/park.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   128
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   129
// * After a contending thread eventually acquires the lock it must
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   130
//   dequeue itself from either the EntryList or the cxq.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   131
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   132
// * The exiting thread identifies and unparks an "heir presumptive"
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   133
//   tentative successor thread on the EntryList.  Critically, the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   134
//   exiting thread doesn't unlink the successor thread from the EntryList.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   135
//   After having been unparked, the wakee will recontend for ownership of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   136
//   the monitor.   The successor (wakee) will either acquire the lock or
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   137
//   re-park itself.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   138
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   139
//   Succession is provided for by a policy of competitive handoff.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   140
//   The exiting thread does _not_ grant or pass ownership to the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   141
//   successor thread.  (This is also referred to as "handoff" succession").
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   142
//   Instead the exiting thread releases ownership and possibly wakes
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   143
//   a successor, so the successor can (re)compete for ownership of the lock.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   144
//   If the EntryList is empty but the cxq is populated the exiting
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   145
//   thread will drain the cxq into the EntryList.  It does so by
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   146
//   by detaching the cxq (installing null with CAS) and folding
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   147
//   the threads from the cxq into the EntryList.  The EntryList is
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   148
//   doubly linked, while the cxq is singly linked because of the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   149
//   CAS-based "push" used to enqueue recently arrived threads (RATs).
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   150
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   151
// * Concurrency invariants:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   152
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   153
//   -- only the monitor owner may access or mutate the EntryList.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   154
//      The mutex property of the monitor itself protects the EntryList
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   155
//      from concurrent interference.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   156
//   -- Only the monitor owner may detach the cxq.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   157
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   158
// * The monitor entry list operations avoid locks, but strictly speaking
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   159
//   they're not lock-free.  Enter is lock-free, exit is not.
32622
7ed47d0b888a 8135002: Fix or remove broken links in objectMonitor.cpp comments
dbuck
parents: 32614
diff changeset
   160
//   For a description of 'Methods and apparatus providing non-blocking access
7ed47d0b888a 8135002: Fix or remove broken links in objectMonitor.cpp comments
dbuck
parents: 32614
diff changeset
   161
//   to a resource,' see U.S. Pat. No. 7844973.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   162
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   163
// * The cxq can have multiple concurrent "pushers" but only one concurrent
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   164
//   detaching thread.  This mechanism is immune from the ABA corruption.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   165
//   More precisely, the CAS-based "push" onto cxq is ABA-oblivious.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   166
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   167
// * Taken together, the cxq and the EntryList constitute or form a
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   168
//   single logical queue of threads stalled trying to acquire the lock.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   169
//   We use two distinct lists to improve the odds of a constant-time
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 18025
diff changeset
   170
//   dequeue operation after acquisition (in the ::enter() epilogue) and
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   171
//   to reduce heat on the list ends.  (c.f. Michael Scott's "2Q" algorithm).
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   172
//   A key desideratum is to minimize queue & monitor metadata manipulation
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   173
//   that occurs while holding the monitor lock -- that is, we want to
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   174
//   minimize monitor lock holds times.  Note that even a small amount of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   175
//   fixed spinning will greatly reduce the # of enqueue-dequeue operations
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   176
//   on EntryList|cxq.  That is, spinning relieves contention on the "inner"
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   177
//   locks and monitor metadata.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   178
//
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   179
//   Cxq points to the set of Recently Arrived Threads attempting entry.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   180
//   Because we push threads onto _cxq with CAS, the RATs must take the form of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   181
//   a singly-linked LIFO.  We drain _cxq into EntryList  at unlock-time when
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   182
//   the unlocking thread notices that EntryList is null but _cxq is != null.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   183
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   184
//   The EntryList is ordered by the prevailing queue discipline and
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   185
//   can be organized in any convenient fashion, such as a doubly-linked list or
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   186
//   a circular doubly-linked list.  Critically, we want insert and delete operations
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   187
//   to operate in constant-time.  If we need a priority queue then something akin
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   188
//   to Solaris' sleepq would work nicely.  Viz.,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   189
//   http://agg.eng/ws/on10_nightly/source/usr/src/uts/common/os/sleepq.c.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   190
//   Queue discipline is enforced at ::exit() time, when the unlocking thread
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   191
//   drains the cxq into the EntryList, and orders or reorders the threads on the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   192
//   EntryList accordingly.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   193
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   194
//   Barring "lock barging", this mechanism provides fair cyclic ordering,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   195
//   somewhat similar to an elevator-scan.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   196
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   197
// * The monitor synchronization subsystem avoids the use of native
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   198
//   synchronization primitives except for the narrow platform-specific
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   199
//   park-unpark abstraction.  See the comments in os_solaris.cpp regarding
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   200
//   the semantics of park-unpark.  Put another way, this monitor implementation
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   201
//   depends only on atomic operations and park-unpark.  The monitor subsystem
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   202
//   manages all RUNNING->BLOCKED and BLOCKED->READY transitions while the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   203
//   underlying OS manages the READY<->RUN transitions.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   204
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   205
// * Waiting threads reside on the WaitSet list -- wait() puts
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   206
//   the caller onto the WaitSet.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   207
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   208
// * notify() or notifyAll() simply transfers threads from the WaitSet to
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   209
//   either the EntryList or cxq.  Subsequent exit() operations will
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   210
//   unpark the notifyee.  Unparking a notifee in notify() is inefficient -
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   211
//   it's likely the notifyee would simply impale itself on the lock held
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   212
//   by the notifier.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   213
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   214
// * An interesting alternative is to encode cxq as (List,LockByte) where
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   215
//   the LockByte is 0 iff the monitor is owned.  _owner is simply an auxiliary
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   216
//   variable, like _recursions, in the scheme.  The threads or Events that form
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   217
//   the list would have to be aligned in 256-byte addresses.  A thread would
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   218
//   try to acquire the lock or enqueue itself with CAS, but exiting threads
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   219
//   could use a 1-0 protocol and simply STB to set the LockByte to 0.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   220
//   Note that is is *not* word-tearing, but it does presume that full-word
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   221
//   CAS operations are coherent with intermix with STB operations.  That's true
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   222
//   on most common processors.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   223
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   224
// * See also http://blogs.sun.com/dave
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   225
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   226
48157
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   227
void* ObjectMonitor::operator new (size_t size) throw() {
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   228
  return AllocateHeap(size, mtInternal);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   229
}
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   230
void* ObjectMonitor::operator new[] (size_t size) throw() {
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   231
  return operator new (size);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   232
}
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   233
void ObjectMonitor::operator delete(void* p) {
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   234
  FreeHeap(p);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   235
}
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   236
void ObjectMonitor::operator delete[] (void *p) {
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   237
  operator delete(p);
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   238
}
7c4d43c26352 8192061: Clean up allocation.inline.hpp includes
stefank
parents: 47881
diff changeset
   239
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   240
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   241
// Enter support
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   242
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 36384
diff changeset
   243
void ObjectMonitor::enter(TRAPS) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   244
  // The following code is ordered to check the most common cases first
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   245
  // and to reduce RTS->RTO cache line upgrades on SPARC and IA32 processors.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   246
  Thread * const Self = THREAD;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   247
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   248
  void * cur = Atomic::cmpxchg(Self, &_owner, (void*)NULL);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   249
  if (cur == NULL) {
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   250
    assert(_recursions == 0, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   251
    return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   252
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   253
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   254
  if (cur == Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   255
    // TODO-FIXME: check for integer overflow!  BUGID 6557169.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   256
    _recursions++;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   257
    return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   258
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   259
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   260
  if (Self->is_lock_owned((address)cur)) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   261
    assert(_recursions == 0, "internal state error");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   262
    _recursions = 1;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   263
    // Commute owner from a thread-specific on-stack BasicLockObject address to
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   264
    // a full-fledged "Thread *".
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   265
    _owner = Self;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   266
    return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   267
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   268
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   269
  // We've encountered genuine contention.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   270
  assert(Self->_Stalled == 0, "invariant");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   271
  Self->_Stalled = intptr_t(this);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   272
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   273
  // Try one round of spinning *before* enqueueing Self
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   274
  // and before going through the awkward and expensive state
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   275
  // transitions.  The following spin is strictly optional ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   276
  // Note that if we acquire the monitor from an initial spin
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   277
  // we forgo posting JVMTI events and firing DTRACE probes.
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   278
  if (TrySpin(Self) > 0) {
54609
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   279
    assert(_owner == Self, "must be Self: owner=" INTPTR_FORMAT, p2i(_owner));
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   280
    assert(_recursions == 0, "must be 0: recursions=" INTX_FORMAT, _recursions);
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   281
    assert(((oop)object())->mark() == markWord::encode(this),
54609
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   282
           "object mark must match encoded this: mark=" INTPTR_FORMAT
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   283
           ", encoded this=" INTPTR_FORMAT, ((oop)object())->mark().value(),
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   284
           markWord::encode(this).value());
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   285
    Self->_Stalled = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   286
    return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   287
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   288
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   289
  assert(_owner != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   290
  assert(_succ != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   291
  assert(Self->is_Java_thread(), "invariant");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   292
  JavaThread * jt = (JavaThread *) Self;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   293
  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
   294
  assert(jt->thread_state() != _thread_blocked, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   295
  assert(this->object() != NULL, "invariant");
54609
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   296
  assert(_contentions >= 0, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   297
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   298
  // Prevent deflation at STW-time.  See deflate_idle_monitors() and is_busy().
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   299
  // Ensure the object-monitor relationship remains stable while there's contention.
54609
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   300
  Atomic::inc(&_contentions);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   301
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   302
  JFR_ONLY(JfrConditionalFlushWithStacktrace<EventJavaMonitorEnter> flush(jt);)
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   303
  EventJavaMonitorEnter event;
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   304
  if (event.should_commit()) {
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   305
    event.set_monitorClass(((oop)this->object())->klass());
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   306
    event.set_address((uintptr_t)(this->object_addr()));
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   307
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   308
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   309
  { // Change java thread status to indicate blocked on monitor enter.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   310
    JavaThreadBlockedOnMonitorEnterState jtbmes(jt, this);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   311
46765
07298ebd9367 8185164: GetOwnedMonitorInfo() returns incorrect owned monitor
ysuenaga
parents: 46630
diff changeset
   312
    Self->set_current_pending_monitor(this);
07298ebd9367 8185164: GetOwnedMonitorInfo() returns incorrect owned monitor
ysuenaga
parents: 46630
diff changeset
   313
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   314
    DTRACE_MONITOR_PROBE(contended__enter, this, object(), jt);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   315
    if (JvmtiExport::should_post_monitor_contended_enter()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   316
      JvmtiExport::post_monitor_contended_enter(jt, this);
22753
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   317
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   318
      // The current thread does not yet own the monitor and does not
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   319
      // yet appear on any queues that would get it made the successor.
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   320
      // This means that the JVMTI_EVENT_MONITOR_CONTENDED_ENTER event
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   321
      // handler cannot accidentally consume an unpark() meant for the
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   322
      // ParkEvent associated with this ObjectMonitor.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   323
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   324
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   325
    OSThreadContendState osts(Self->osthread());
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   326
    ThreadBlockInVM tbivm(jt);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   327
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   328
    // TODO-FIXME: change the following for(;;) loop to straight-line code.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   329
    for (;;) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   330
      jt->set_suspend_equivalent();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   331
      // cleared by handle_special_suspend_equivalent_condition()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   332
      // or java_suspend_self()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   333
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   334
      EnterI(THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   335
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   336
      if (!ExitSuspendEquivalent(jt)) break;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   337
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   338
      // We have acquired the contended monitor, but while we were
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   339
      // waiting another thread suspended us. We don't want to enter
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   340
      // the monitor while suspended because that would surprise the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   341
      // thread that suspended us.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   342
      //
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   343
      _recursions = 0;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   344
      _succ = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   345
      exit(false, Self);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   346
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   347
      jt->java_suspend_self();
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   348
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   349
    Self->set_current_pending_monitor(NULL);
24832
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   350
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   351
    // We cleared the pending monitor info since we've just gotten past
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   352
    // the enter-check-for-suspend dance and we now own the monitor free
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   353
    // and clear, i.e., it is no longer pending. The ThreadBlockInVM
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   354
    // destructor can go to a safepoint at the end of this block. If we
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   355
    // do a thread dump during that safepoint, then this thread will show
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   356
    // as having "-locked" the monitor, but the OS and java.lang.Thread
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   357
    // states will still report that the thread is blocked trying to
26a834fb508d 8036823: Stack trace sometimes shows 'locked' instead of 'waiting to lock'
dcubed
parents: 24351
diff changeset
   358
    // acquire it.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   359
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   360
54609
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   361
  Atomic::dec(&_contentions);
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   362
  assert(_contentions >= 0, "invariant");
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   363
  Self->_Stalled = 0;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   364
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   365
  // Must either set _recursions = 0 or ASSERT _recursions == 0.
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   366
  assert(_recursions == 0, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   367
  assert(_owner == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   368
  assert(_succ != Self, "invariant");
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   369
  assert(((oop)(object()))->mark() == markWord::encode(this), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   370
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   371
  // The thread -- now the owner -- is back in vm mode.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   372
  // Report the glorious news via TI,DTrace and jvmstat.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   373
  // The probe effect is non-trivial.  All the reportage occurs
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   374
  // while we hold the monitor, increasing the length of the critical
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   375
  // section.  Amdahl's parallel speedup law comes vividly into play.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   376
  //
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   377
  // Another option might be to aggregate the events (thread local or
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   378
  // per-monitor aggregation) and defer reporting until a more opportune
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   379
  // time -- such as next time some thread encounters contention but has
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   380
  // yet to acquire the lock.  While spinning that thread could
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   381
  // spinning we could increment JVMStat counters, etc.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   382
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   383
  DTRACE_MONITOR_PROBE(contended__entered, this, object(), jt);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   384
  if (JvmtiExport::should_post_monitor_contended_entered()) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   385
    JvmtiExport::post_monitor_contended_entered(jt, this);
22753
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   386
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   387
    // The current thread already owns the monitor and is not going to
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   388
    // call park() for the remainder of the monitor enter protocol. So
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   389
    // it doesn't matter if the JVMTI_EVENT_MONITOR_CONTENDED_ENTERED
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   390
    // event handler consumed an unpark() issued by the thread that
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
   391
    // just exited the monitor.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   392
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   393
  if (event.should_commit()) {
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   394
    event.set_previousOwner((uintptr_t)_previous_owner_tid);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   395
    event.commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   396
  }
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   397
  OM_PERFDATA_OP(ContendedLockAttempts, inc());
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   398
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   399
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   400
// Caveat: TryLock() is not necessarily serializing if it returns failure.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   401
// Callers must compensate as needed.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   402
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   403
int ObjectMonitor::TryLock(Thread * Self) {
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   404
  void * own = _owner;
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   405
  if (own != NULL) return 0;
48488
51825789dd89 8194406: Use Atomic::replace_if_null
kbarrett
parents: 48185
diff changeset
   406
  if (Atomic::replace_if_null(Self, &_owner)) {
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   407
    assert(_recursions == 0, "invariant");
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   408
    return 1;
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   409
  }
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   410
  // The lock had been free momentarily, but we lost the race to the lock.
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   411
  // Interference -- the CAS failed.
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   412
  // We can either return -1 or retry.
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   413
  // Retry doesn't make as much sense because the lock was just acquired.
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   414
  return -1;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   415
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   416
55345
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   417
// Convert the fields used by is_busy() to a string that can be
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   418
// used for diagnostic output.
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   419
const char* ObjectMonitor::is_busy_to_string(stringStream* ss) {
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   420
  ss->print("is_busy: contentions=%d, waiters=%d, owner=" INTPTR_FORMAT
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   421
            ", cxq=" INTPTR_FORMAT ", EntryList=" INTPTR_FORMAT, _contentions,
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   422
            _waiters, p2i(_owner), p2i(_cxq), p2i(_EntryList));
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   423
  return ss->base();
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   424
}
492b644bb9c2 8225453: is_busy diagnostics and other baseline cleanups from Async Monitor Deflation project
dcubed
parents: 54807
diff changeset
   425
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   426
#define MAX_RECHECK_INTERVAL 1000
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   427
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 36384
diff changeset
   428
void ObjectMonitor::EnterI(TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   429
  Thread * const Self = THREAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   430
  assert(Self->is_Java_thread(), "invariant");
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   431
  assert(((JavaThread *) Self)->thread_state() == _thread_blocked, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   432
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   433
  // Try the lock - TATAS
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   434
  if (TryLock (Self) > 0) {
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   435
    assert(_succ != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   436
    assert(_owner == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   437
    assert(_Responsible != Self, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   438
    return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   439
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   440
51960
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
   441
  assert(InitDone, "Unexpectedly not initialized");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   442
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   443
  // We try one round of spinning *before* enqueueing Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   444
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   445
  // If the _owner is ready but OFFPROC we could use a YieldTo()
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   446
  // operation to donate the remainder of this thread's quantum
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   447
  // to the owner.  This has subtle but beneficial affinity
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   448
  // effects.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   449
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   450
  if (TrySpin(Self) > 0) {
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   451
    assert(_owner == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   452
    assert(_succ != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   453
    assert(_Responsible != Self, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   454
    return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   455
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   456
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   457
  // The Spin failed -- Enqueue and park the thread ...
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   458
  assert(_succ != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   459
  assert(_owner != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   460
  assert(_Responsible != Self, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   461
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   462
  // Enqueue "Self" on ObjectMonitor's _cxq.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   463
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   464
  // Node acts as a proxy for Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   465
  // As an aside, if were to ever rewrite the synchronization code mostly
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   466
  // in Java, WaitNodes, ObjectMonitors, and Events would become 1st-class
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   467
  // Java objects.  This would avoid awkward lifecycle and liveness issues,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   468
  // as well as eliminate a subset of ABA issues.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   469
  // TODO: eliminate ObjectWaiter and enqueue either Threads or Events.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   470
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   471
  ObjectWaiter node(Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   472
  Self->_ParkEvent->reset();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   473
  node._prev   = (ObjectWaiter *) 0xBAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   474
  node.TState  = ObjectWaiter::TS_CXQ;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   475
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   476
  // Push "Self" onto the front of the _cxq.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   477
  // Once on cxq/EntryList, Self stays on-queue until it acquires the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   478
  // Note that spinning tends to reduce the rate at which threads
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   479
  // enqueue and dequeue on EntryList|cxq.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   480
  ObjectWaiter * nxt;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   481
  for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   482
    node._next = nxt = _cxq;
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   483
    if (Atomic::cmpxchg(&node, &_cxq, nxt) == nxt) break;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   484
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   485
    // Interference - the CAS failed because _cxq changed.  Just retry.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   486
    // As an optional optimization we retry the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   487
    if (TryLock (Self) > 0) {
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   488
      assert(_succ != Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   489
      assert(_owner == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   490
      assert(_Responsible != Self, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   491
      return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   492
    }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   493
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   494
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   495
  // Check for cxq|EntryList edge transition to non-null.  This indicates
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   496
  // the onset of contention.  While contention persists exiting threads
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   497
  // will use a ST:MEMBAR:LD 1-1 exit protocol.  When contention abates exit
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   498
  // operations revert to the faster 1-0 mode.  This enter operation may interleave
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   499
  // (race) a concurrent 1-0 exit operation, resulting in stranding, so we
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   500
  // arrange for one of the contending thread to use a timed park() operations
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   501
  // to detect and recover from the race.  (Stranding is form of progress failure
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   502
  // where the monitor is unlocked but all the contending threads remain parked).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   503
  // That is, at least one of the contended threads will periodically poll _owner.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   504
  // One of the contending threads will become the designated "Responsible" thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   505
  // The Responsible thread uses a timed park instead of a normal indefinite park
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   506
  // operation -- it periodically wakes and checks for and recovers from potential
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   507
  // strandings admitted by 1-0 exit operations.   We need at most one Responsible
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   508
  // thread per-monitor at any given moment.  Only threads on cxq|EntryList may
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   509
  // be responsible for a monitor.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   510
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   511
  // Currently, one of the contended threads takes on the added role of "Responsible".
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   512
  // A viable alternative would be to use a dedicated "stranding checker" thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   513
  // that periodically iterated over all the threads (or active monitors) and unparked
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   514
  // successors where there was risk of stranding.  This would help eliminate the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   515
  // timer scalability issues we see on some platforms as we'd only have one thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   516
  // -- the checker -- parked on a timer.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   517
51704
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
   518
  if (nxt == NULL && _EntryList == NULL) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   519
    // Try to assume the role of responsible thread for the monitor.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   520
    // CONSIDER:  ST vs CAS vs { if (Responsible==null) Responsible=Self }
48488
51825789dd89 8194406: Use Atomic::replace_if_null
kbarrett
parents: 48185
diff changeset
   521
    Atomic::replace_if_null(Self, &_Responsible);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   522
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   523
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   524
  // The lock might have been released while this thread was occupied queueing
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   525
  // itself onto _cxq.  To close the race and avoid "stranding" and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   526
  // progress-liveness failure we must resample-retry _owner before parking.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   527
  // Note the Dekker/Lamport duality: ST cxq; MEMBAR; LD Owner.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   528
  // In this case the ST-MEMBAR is accomplished with CAS().
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   529
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   530
  // TODO: Defer all thread state transitions until park-time.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   531
  // Since state transitions are heavy and inefficient we'd like
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   532
  // to defer the state transitions until absolutely necessary,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   533
  // and in doing so avoid some transitions ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   534
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   535
  int nWakeups = 0;
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   536
  int recheckInterval = 1;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   537
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   538
  for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   539
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   540
    if (TryLock(Self) > 0) break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   541
    assert(_owner != Self, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   542
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   543
    // park self
51704
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
   544
    if (_Responsible == Self) {
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   545
      Self->_ParkEvent->park((jlong) recheckInterval);
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   546
      // Increase the recheckInterval, but clamp the value.
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   547
      recheckInterval *= 8;
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   548
      if (recheckInterval > MAX_RECHECK_INTERVAL) {
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   549
        recheckInterval = MAX_RECHECK_INTERVAL;
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
   550
      }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   551
    } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   552
      Self->_ParkEvent->park();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   553
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   554
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   555
    if (TryLock(Self) > 0) break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   556
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   557
    // The lock is still contested.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   558
    // Keep a tally of the # of futile wakeups.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   559
    // Note that the counter is not protected by a lock or updated by atomics.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   560
    // That is by design - we trade "lossy" counters which are exposed to
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   561
    // races during updates for a lower probe effect.
51702
ebd5b1ad971a 8210514: Obsolete SyncVerbose
mikael
parents: 51376
diff changeset
   562
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   563
    // This PerfData object can be used in parallel with a safepoint.
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   564
    // See the work around in PerfDataManager::destroy().
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   565
    OM_PERFDATA_OP(FutileWakeups, inc());
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   566
    ++nWakeups;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   567
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   568
    // Assuming this is not a spurious wakeup we'll normally find _succ == Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   569
    // We can defer clearing _succ until after the spin completes
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   570
    // TrySpin() must tolerate being called with _succ == Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   571
    // Try yet another round of adaptive spinning.
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   572
    if (TrySpin(Self) > 0) break;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   573
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   574
    // We can find that we were unpark()ed and redesignated _succ while
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   575
    // we were spinning.  That's harmless.  If we iterate and call park(),
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   576
    // park() will consume the event and return immediately and we'll
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   577
    // just spin again.  This pattern can repeat, leaving _succ to simply
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   578
    // spin on a CPU.
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   579
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
   580
    if (_succ == Self) _succ = NULL;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   581
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   582
    // Invariant: after clearing _succ a thread *must* retry _owner before parking.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   583
    OrderAccess::fence();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   584
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   585
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   586
  // Egress :
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   587
  // Self has acquired the lock -- Unlink Self from the cxq or EntryList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   588
  // Normally we'll find Self on the EntryList .
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   589
  // From the perspective of the lock owner (this thread), the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   590
  // EntryList is stable and cxq is prepend-only.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   591
  // The head of cxq is volatile but the interior is stable.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   592
  // In addition, Self.TState is stable.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   593
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   594
  assert(_owner == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   595
  assert(object() != NULL, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   596
  // I'd like to write:
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   597
  //   guarantee (((oop)(object()))->mark() == markWord::encode(this), "invariant") ;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   598
  // but as we're at a safepoint that's not safe.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   599
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   600
  UnlinkAfterAcquire(Self, &node);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   601
  if (_succ == Self) _succ = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   602
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   603
  assert(_succ != Self, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   604
  if (_Responsible == Self) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   605
    _Responsible = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   606
    OrderAccess::fence(); // Dekker pivot-point
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   607
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   608
    // We may leave threads on cxq|EntryList without a designated
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   609
    // "Responsible" thread.  This is benign.  When this thread subsequently
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   610
    // exits the monitor it can "see" such preexisting "old" threads --
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   611
    // threads that arrived on the cxq|EntryList before the fence, above --
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   612
    // by LDing cxq|EntryList.  Newly arrived threads -- that is, threads
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   613
    // that arrive on cxq after the ST:MEMBAR, above -- will set Responsible
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   614
    // non-null and elect a new "Responsible" timer thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   615
    //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   616
    // This thread executes:
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   617
    //    ST Responsible=null; MEMBAR    (in enter epilogue - here)
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   618
    //    LD cxq|EntryList               (in subsequent exit)
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   619
    //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   620
    // Entering threads in the slow/contended path execute:
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   621
    //    ST cxq=nonnull; MEMBAR; LD Responsible (in enter prolog)
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   622
    //    The (ST cxq; MEMBAR) is accomplished with CAS().
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   623
    //
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   624
    // The MEMBAR, above, prevents the LD of cxq|EntryList in the subsequent
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   625
    // exit operation from floating above the ST Responsible=null.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   626
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   627
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   628
  // We've acquired ownership with CAS().
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   629
  // CAS is serializing -- it has MEMBAR/FENCE-equivalent semantics.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   630
  // But since the CAS() this thread may have also stored into _succ,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   631
  // EntryList, cxq or Responsible.  These meta-data updates must be
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   632
  // visible __before this thread subsequently drops the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   633
  // Consider what could occur if we didn't enforce this constraint --
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   634
  // STs to monitor meta-data and user-data could reorder with (become
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   635
  // visible after) the ST in exit that drops ownership of the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   636
  // Some other thread could then acquire the lock, but observe inconsistent
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   637
  // or old monitor meta-data and heap data.  That violates the JMM.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   638
  // To that end, the 1-0 exit() operation must have at least STST|LDST
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   639
  // "release" barrier semantics.  Specifically, there must be at least a
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   640
  // STST|LDST barrier in exit() before the ST of null into _owner that drops
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   641
  // the lock.   The barrier ensures that changes to monitor meta-data and data
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   642
  // protected by the lock will be visible before we release the lock, and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   643
  // therefore before some other thread (CPU) has a chance to acquire the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   644
  // See also: http://gee.cs.oswego.edu/dl/jmm/cookbook.html.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   645
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   646
  // Critically, any prior STs to _succ or EntryList must be visible before
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   647
  // the ST of null into _owner in the *subsequent* (following) corresponding
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   648
  // monitorexit.  Recall too, that in 1-0 mode monitorexit does not necessarily
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   649
  // execute a serializing instruction.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   650
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   651
  return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   652
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   653
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   654
// ReenterI() is a specialized inline form of the latter half of the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   655
// contended slow-path from EnterI().  We use ReenterI() only for
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   656
// monitor reentry in wait().
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   657
//
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   658
// In the future we should reconcile EnterI() and ReenterI().
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   659
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 36384
diff changeset
   660
void ObjectMonitor::ReenterI(Thread * Self, ObjectWaiter * SelfNode) {
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   661
  assert(Self != NULL, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   662
  assert(SelfNode != NULL, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   663
  assert(SelfNode->_thread == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   664
  assert(_waiters > 0, "invariant");
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   665
  assert(((oop)(object()))->mark() == markWord::encode(this), "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   666
  assert(((JavaThread *)Self)->thread_state() != _thread_blocked, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   667
  JavaThread * jt = (JavaThread *) Self;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   668
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   669
  int nWakeups = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   670
  for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   671
    ObjectWaiter::TStates v = SelfNode->TState;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   672
    guarantee(v == ObjectWaiter::TS_ENTER || v == ObjectWaiter::TS_CXQ, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   673
    assert(_owner != Self, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   674
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   675
    if (TryLock(Self) > 0) break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   676
    if (TrySpin(Self) > 0) break;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   677
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   678
    // State transition wrappers around park() ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   679
    // ReenterI() wisely defers state transitions until
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   680
    // it's clear we must park the thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   681
    {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   682
      OSThreadContendState osts(Self->osthread());
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   683
      ThreadBlockInVM tbivm(jt);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   684
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   685
      // cleared by handle_special_suspend_equivalent_condition()
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   686
      // or java_suspend_self()
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   687
      jt->set_suspend_equivalent();
51704
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
   688
      Self->_ParkEvent->park();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   689
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   690
      // were we externally suspended while we were waiting?
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   691
      for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   692
        if (!ExitSuspendEquivalent(jt)) break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   693
        if (_succ == Self) { _succ = NULL; OrderAccess::fence(); }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   694
        jt->java_suspend_self();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   695
        jt->set_suspend_equivalent();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   696
      }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   697
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   698
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   699
    // Try again, but just so we distinguish between futile wakeups and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   700
    // successful wakeups.  The following test isn't algorithmically
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   701
    // necessary, but it helps us maintain sensible statistics.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   702
    if (TryLock(Self) > 0) break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   703
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   704
    // The lock is still contested.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   705
    // Keep a tally of the # of futile wakeups.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   706
    // Note that the counter is not protected by a lock or updated by atomics.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   707
    // That is by design - we trade "lossy" counters which are exposed to
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   708
    // races during updates for a lower probe effect.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   709
    ++nWakeups;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   710
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   711
    // Assuming this is not a spurious wakeup we'll normally
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   712
    // find that _succ == Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   713
    if (_succ == Self) _succ = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   714
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   715
    // Invariant: after clearing _succ a contending thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   716
    // *must* retry  _owner before parking.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   717
    OrderAccess::fence();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   718
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   719
    // This PerfData object can be used in parallel with a safepoint.
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   720
    // See the work around in PerfDataManager::destroy().
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
   721
    OM_PERFDATA_OP(FutileWakeups, inc());
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   722
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   723
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   724
  // Self has acquired the lock -- Unlink Self from the cxq or EntryList .
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   725
  // Normally we'll find Self on the EntryList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   726
  // Unlinking from the EntryList is constant-time and atomic-free.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   727
  // From the perspective of the lock owner (this thread), the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   728
  // EntryList is stable and cxq is prepend-only.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   729
  // The head of cxq is volatile but the interior is stable.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   730
  // In addition, Self.TState is stable.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   731
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   732
  assert(_owner == Self, "invariant");
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
   733
  assert(((oop)(object()))->mark() == markWord::encode(this), "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   734
  UnlinkAfterAcquire(Self, SelfNode);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   735
  if (_succ == Self) _succ = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   736
  assert(_succ != Self, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   737
  SelfNode->TState = ObjectWaiter::TS_RUN;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   738
  OrderAccess::fence();      // see comments at the end of EnterI()
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   739
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   740
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   741
// By convention we unlink a contending thread from EntryList|cxq immediately
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   742
// after the thread acquires the lock in ::enter().  Equally, we could defer
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   743
// unlinking the thread until ::exit()-time.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   744
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   745
void ObjectMonitor::UnlinkAfterAcquire(Thread *Self, ObjectWaiter *SelfNode) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   746
  assert(_owner == Self, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   747
  assert(SelfNode->_thread == Self, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   748
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   749
  if (SelfNode->TState == ObjectWaiter::TS_ENTER) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   750
    // Normal case: remove Self from the DLL EntryList .
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   751
    // This is a constant-time operation.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   752
    ObjectWaiter * nxt = SelfNode->_next;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   753
    ObjectWaiter * prv = SelfNode->_prev;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   754
    if (nxt != NULL) nxt->_prev = prv;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   755
    if (prv != NULL) prv->_next = nxt;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   756
    if (SelfNode == _EntryList) _EntryList = nxt;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   757
    assert(nxt == NULL || nxt->TState == ObjectWaiter::TS_ENTER, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   758
    assert(prv == NULL || prv->TState == ObjectWaiter::TS_ENTER, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   759
  } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   760
    assert(SelfNode->TState == ObjectWaiter::TS_CXQ, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   761
    // Inopportune interleaving -- Self is still on the cxq.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   762
    // This usually means the enqueue of self raced an exiting thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   763
    // Normally we'll find Self near the front of the cxq, so
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   764
    // dequeueing is typically fast.  If needbe we can accelerate
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   765
    // this with some MCS/CHL-like bidirectional list hints and advisory
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   766
    // back-links so dequeueing from the interior will normally operate
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   767
    // in constant-time.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   768
    // Dequeue Self from either the head (with CAS) or from the interior
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   769
    // with a linear-time scan and normal non-atomic memory operations.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   770
    // CONSIDER: if Self is on the cxq then simply drain cxq into EntryList
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   771
    // and then unlink Self from EntryList.  We have to drain eventually,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   772
    // so it might as well be now.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   773
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   774
    ObjectWaiter * v = _cxq;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   775
    assert(v != NULL, "invariant");
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   776
    if (v != SelfNode || Atomic::cmpxchg(SelfNode->_next, &_cxq, v) != v) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   777
      // The CAS above can fail from interference IFF a "RAT" arrived.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   778
      // In that case Self must be in the interior and can no longer be
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   779
      // at the head of cxq.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   780
      if (v == SelfNode) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   781
        assert(_cxq != v, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   782
        v = _cxq;          // CAS above failed - start scan at head of list
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   783
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   784
      ObjectWaiter * p;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   785
      ObjectWaiter * q = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   786
      for (p = v; p != NULL && p != SelfNode; p = p->_next) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   787
        q = p;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   788
        assert(p->TState == ObjectWaiter::TS_CXQ, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   789
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   790
      assert(v != SelfNode, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   791
      assert(p == SelfNode, "Node not found on cxq");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   792
      assert(p != _cxq, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   793
      assert(q != NULL, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   794
      assert(q->_next == p, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   795
      q->_next = p->_next;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   796
    }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   797
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   798
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   799
#ifdef ASSERT
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   800
  // Diagnostic hygiene ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   801
  SelfNode->_prev  = (ObjectWaiter *) 0xBAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   802
  SelfNode->_next  = (ObjectWaiter *) 0xBAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   803
  SelfNode->TState = ObjectWaiter::TS_RUN;
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   804
#endif
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   805
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   806
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   807
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   808
// Exit support
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   809
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   810
// exit()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   811
// ~~~~~~
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   812
// Note that the collector can't reclaim the objectMonitor or deflate
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   813
// the object out from underneath the thread calling ::exit() as the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   814
// thread calling ::exit() never transitions to a stable state.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   815
// This inhibits GC, which in turn inhibits asynchronous (and
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   816
// inopportune) reclamation of "this".
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   817
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   818
// We'd like to assert that: (THREAD->thread_state() != _thread_blocked) ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   819
// There's one exception to the claim above, however.  EnterI() can call
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   820
// exit() to drop a lock if the acquirer has been externally suspended.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   821
// In that case exit() is called with _thread_state as _thread_blocked,
54609
04857e2cd509 8222295: more baseline cleanups from Async Monitor Deflation project
dcubed
parents: 53557
diff changeset
   822
// but the monitor's _contentions field is > 0, which inhibits reclamation.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   823
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   824
// 1-0 exit
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   825
// ~~~~~~~~
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   826
// ::exit() uses a canonical 1-1 idiom with a MEMBAR although some of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   827
// the fast-path operators have been optimized so the common ::exit()
37251
9fc139ad74b5 8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents: 37092
diff changeset
   828
// operation is 1-0, e.g., see macroAssembler_x86.cpp: fast_unlock().
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   829
// The code emitted by fast_unlock() elides the usual MEMBAR.  This
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   830
// greatly improves latency -- MEMBAR and CAS having considerable local
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   831
// latency on modern processors -- but at the cost of "stranding".  Absent the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   832
// MEMBAR, a thread in fast_unlock() can race a thread in the slow
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   833
// ::enter() path, resulting in the entering thread being stranding
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   834
// and a progress-liveness failure.   Stranding is extremely rare.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   835
// We use timers (timed park operations) & periodic polling to detect
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   836
// and recover from stranding.  Potentially stranded threads periodically
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   837
// wake up and poll the lock.  See the usage of the _Responsible variable.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   838
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   839
// The CAS() in enter provides for safety and exclusion, while the CAS or
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   840
// MEMBAR in exit provides for progress and avoids stranding.  1-0 locking
37251
9fc139ad74b5 8152358: code and comment cleanups found during the hunt for 8077392
dcubed
parents: 37092
diff changeset
   841
// eliminates the CAS/MEMBAR from the exit path, but it admits stranding.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   842
// We detect and recover from stranding with timers.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   843
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   844
// If a thread transiently strands it'll park until (a) another
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   845
// thread acquires the lock and then drops the lock, at which time the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   846
// exiting thread will notice and unpark the stranded thread, or, (b)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   847
// the timer expires.  If the lock is high traffic then the stranding latency
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   848
// will be low due to (a).  If the lock is low traffic then the odds of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   849
// stranding are lower, although the worst-case stranding latency
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   850
// is longer.  Critically, we don't want to put excessive load in the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   851
// platform's timer subsystem.  We want to minimize both the timer injection
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   852
// rate (timers created/sec) as well as the number of timers active at
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   853
// any one time.  (more precisely, we want to minimize timer-seconds, which is
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   854
// the integral of the # of active timers at any instant over time).
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   855
// Both impinge on OS scalability.  Given that, at most one thread parked on
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   856
// a monitor will use a timer.
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   857
//
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   858
// There is also the risk of a futile wake-up. If we drop the lock
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   859
// another thread can reacquire the lock immediately, and we can
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   860
// then wake a thread unnecessarily. This is benign, and we've
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   861
// structured the code so the windows are short and the frequency
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
   862
// of such futile wakups is low.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   863
37092
0e56e3c9d545 8151593: Cleanup definition/usage of INLINE/NOINLINE macros and add xlC support
simonis
parents: 36384
diff changeset
   864
void ObjectMonitor::exit(bool not_suspended, TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   865
  Thread * const Self = THREAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   866
  if (THREAD != _owner) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   867
    if (THREAD->is_lock_owned((address) _owner)) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   868
      // Transmute _owner from a BasicLock pointer to a Thread address.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   869
      // We don't need to hold _mutex for this transition.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   870
      // Non-null to Non-null is safe as long as all readers can
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   871
      // tolerate either flavor.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   872
      assert(_recursions == 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   873
      _owner = THREAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   874
      _recursions = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   875
    } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   876
      // Apparent unbalanced locking ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   877
      // Naively we'd like to throw IllegalMonitorStateException.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   878
      // As a practical matter we can neither allocate nor throw an
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   879
      // exception as ::exit() can be called from leaf routines.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   880
      // see x86_32.ad Fast_Unlock() and the I1 and I2 properties.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   881
      // Upon deeper reflection, however, in a properly run JVM the only
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   882
      // way we should encounter this situation is in the presence of
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   883
      // unbalanced JNI locking. TODO: CheckJNICalls.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   884
      // See also: CR4414101
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   885
#ifdef ASSERT
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   886
      LogStreamHandle(Error, monitorinflation) lsh;
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   887
      lsh.print_cr("ERROR: ObjectMonitor::exit(): thread=" INTPTR_FORMAT
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   888
                    " is exiting an ObjectMonitor it does not own.", p2i(THREAD));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   889
      lsh.print_cr("The imbalance is possibly caused by JNI locking.");
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   890
      print_debug_style_on(&lsh);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   891
#endif
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
   892
      assert(false, "Non-balanced monitor enter/exit!");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   893
      return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   894
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   895
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   896
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   897
  if (_recursions != 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   898
    _recursions--;        // this is simple recursive enter
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   899
    return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   900
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   901
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   902
  // Invariant: after setting Responsible=null an thread must execute
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   903
  // a MEMBAR or other serializing instruction before fetching EntryList|cxq.
51704
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
   904
  _Responsible = NULL;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   905
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   906
#if INCLUDE_JFR
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   907
  // get the owner's thread id for the MonitorEnter event
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   908
  // if it is enabled and the thread isn't suspended
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   909
  if (not_suspended && EventJavaMonitorEnter::is_enabled()) {
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
   910
    _previous_owner_tid = JFR_THREAD_ID(Self);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   911
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   912
#endif
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
   913
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   914
  for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   915
    assert(THREAD == _owner, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   916
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   917
    // release semantics: prior loads and stores from within the critical section
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   918
    // must not float (reorder) past the following store that drops the lock.
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 59156
diff changeset
   919
    Atomic::release_store(&_owner, (void*)NULL);   // drop the lock
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 59156
diff changeset
   920
    OrderAccess::storeload();                      // See if we need to wake a successor
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   921
    if ((intptr_t(_EntryList)|intptr_t(_cxq)) == 0 || _succ != NULL) {
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   922
      return;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   923
    }
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   924
    // Other threads are blocked trying to acquire the lock.
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   925
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   926
    // Normally the exiting thread is responsible for ensuring succession,
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   927
    // but if other successors are ready or other entering threads are spinning
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   928
    // then this thread can simply store NULL into _owner and exit without
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   929
    // waking a successor.  The existence of spinners or ready successors
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   930
    // guarantees proper succession (liveness).  Responsibility passes to the
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   931
    // ready or running successors.  The exiting thread delegates the duty.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   932
    // More precisely, if a successor already exists this thread is absolved
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   933
    // of the responsibility of waking (unparking) one.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   934
    //
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   935
    // The _succ variable is critical to reducing futile wakeup frequency.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   936
    // _succ identifies the "heir presumptive" thread that has been made
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   937
    // ready (unparked) but that has not yet run.  We need only one such
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   938
    // successor thread to guarantee progress.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   939
    // See http://www.usenix.org/events/jvm01/full_papers/dice/dice.pdf
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   940
    // section 3.3 "Futile Wakeup Throttling" for details.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   941
    //
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   942
    // Note that spinners in Enter() also set _succ non-null.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   943
    // In the current implementation spinners opportunistically set
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   944
    // _succ so that exiting threads might avoid waking a successor.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   945
    // Another less appealing alternative would be for the exiting thread
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   946
    // to drop the lock and then spin briefly to see if a spinner managed
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   947
    // to acquire the lock.  If so, the exiting thread could exit
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   948
    // immediately without waking a successor, otherwise the exiting
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   949
    // thread would need to dequeue and wake a successor.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   950
    // (Note that we'd need to make the post-drop spin short, but no
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   951
    // shorter than the worst-case round-trip cache-line migration time.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   952
    // The dropped lock needs to become visible to the spinner, and then
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   953
    // the acquisition of the lock by the spinner must become visible to
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   954
    // the exiting thread).
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   955
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   956
    // It appears that an heir-presumptive (successor) must be made ready.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   957
    // Only the current lock owner can manipulate the EntryList or
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   958
    // drain _cxq, so we need to reacquire the lock.  If we fail
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   959
    // to reacquire the lock the responsibility for ensuring succession
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   960
    // falls to the new owner.
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   961
    //
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   962
    if (!Atomic::replace_if_null(THREAD, &_owner)) {
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
   963
      return;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   964
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   965
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   966
    guarantee(_owner == THREAD, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   967
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   968
    ObjectWaiter * w = NULL;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
   969
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   970
    w = _EntryList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   971
    if (w != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   972
      // I'd like to write: guarantee (w->_thread != Self).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   973
      // But in practice an exiting thread may find itself on the EntryList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   974
      // Let's say thread T1 calls O.wait().  Wait() enqueues T1 on O's waitset and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   975
      // then calls exit().  Exit release the lock by setting O._owner to NULL.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   976
      // Let's say T1 then stalls.  T2 acquires O and calls O.notify().  The
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   977
      // notify() operation moves T1 from O's waitset to O's EntryList. T2 then
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   978
      // release the lock "O".  T2 resumes immediately after the ST of null into
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   979
      // _owner, above.  T2 notices that the EntryList is populated, so it
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   980
      // reacquires the lock and then finds itself on the EntryList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   981
      // Given all that, we have to tolerate the circumstance where "w" is
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   982
      // associated with Self.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   983
      assert(w->TState == ObjectWaiter::TS_ENTER, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   984
      ExitEpilog(Self, w);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   985
      return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   986
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   987
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   988
    // If we find that both _cxq and EntryList are null then just
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   989
    // re-run the exit protocol from the top.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   990
    w = _cxq;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   991
    if (w == NULL) continue;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   992
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   993
    // Drain _cxq into EntryList - bulk transfer.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   994
    // First, detach _cxq.
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
   995
    // The following loop is tantamount to: w = swap(&cxq, NULL)
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   996
    for (;;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   997
      assert(w != NULL, "Invariant");
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
   998
      ObjectWaiter * u = Atomic::cmpxchg((ObjectWaiter*)NULL, &_cxq, w);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
   999
      if (u == w) break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1000
      w = u;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1001
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1002
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1003
    assert(w != NULL, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1004
    assert(_EntryList == NULL, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1005
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1006
    // Convert the LIFO SLL anchored by _cxq into a DLL.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1007
    // The list reorganization step operates in O(LENGTH(w)) time.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1008
    // It's critical that this step operate quickly as
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1009
    // "Self" still holds the outer-lock, restricting parallelism
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1010
    // and effectively lengthening the critical section.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1011
    // Invariant: s chases t chases u.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1012
    // TODO-FIXME: consider changing EntryList from a DLL to a CDLL so
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1013
    // we have faster access to the tail.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1014
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1015
    _EntryList = w;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1016
    ObjectWaiter * q = NULL;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1017
    ObjectWaiter * p;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1018
    for (p = w; p != NULL; p = p->_next) {
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1019
      guarantee(p->TState == ObjectWaiter::TS_CXQ, "Invariant");
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1020
      p->TState = ObjectWaiter::TS_ENTER;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1021
      p->_prev = q;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1022
      q = p;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1023
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1024
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1025
    // In 1-0 mode we need: ST EntryList; MEMBAR #storestore; ST _owner = NULL
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1026
    // The MEMBAR is satisfied by the release_store() operation in ExitEpilog().
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1027
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1028
    // See if we can abdicate to a spinner instead of waking a thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1029
    // A primary goal of the implementation is to reduce the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1030
    // context-switch rate.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1031
    if (_succ != NULL) continue;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1032
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1033
    w = _EntryList;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1034
    if (w != NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1035
      guarantee(w->TState == ObjectWaiter::TS_ENTER, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1036
      ExitEpilog(Self, w);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1037
      return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1038
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1039
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1040
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1041
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1042
// ExitSuspendEquivalent:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1043
// A faster alternate to handle_special_suspend_equivalent_condition()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1044
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1045
// handle_special_suspend_equivalent_condition() unconditionally
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1046
// acquires the SR_lock.  On some platforms uncontended MutexLocker()
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1047
// operations have high latency.  Note that in ::enter() we call HSSEC
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1048
// while holding the monitor, so we effectively lengthen the critical sections.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1049
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1050
// There are a number of possible solutions:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1051
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1052
// A.  To ameliorate the problem we might also defer state transitions
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1053
//     to as late as possible -- just prior to parking.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1054
//     Given that, we'd call HSSEC after having returned from park(),
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1055
//     but before attempting to acquire the monitor.  This is only a
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1056
//     partial solution.  It avoids calling HSSEC while holding the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1057
//     monitor (good), but it still increases successor reacquisition latency --
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1058
//     the interval between unparking a successor and the time the successor
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1059
//     resumes and retries the lock.  See ReenterI(), which defers state transitions.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1060
//     If we use this technique we can also avoid EnterI()-exit() loop
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1061
//     in ::enter() where we iteratively drop the lock and then attempt
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1062
//     to reacquire it after suspending.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1063
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1064
// B.  In the future we might fold all the suspend bits into a
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1065
//     composite per-thread suspend flag and then update it with CAS().
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1066
//     Alternately, a Dekker-like mechanism with multiple variables
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1067
//     would suffice:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1068
//       ST Self->_suspend_equivalent = false
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1069
//       MEMBAR
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1070
//       LD Self_>_suspend_flags
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1071
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1072
bool ObjectMonitor::ExitSuspendEquivalent(JavaThread * jSelf) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1073
  return jSelf->handle_special_suspend_equivalent_condition();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1074
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1075
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1076
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1077
void ObjectMonitor::ExitEpilog(Thread * Self, ObjectWaiter * Wakee) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1078
  assert(_owner == Self, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1079
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1080
  // Exit protocol:
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1081
  // 1. ST _succ = wakee
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1082
  // 2. membar #loadstore|#storestore;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1083
  // 2. ST _owner = NULL
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1084
  // 3. unpark(wakee)
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1085
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1086
  _succ = Wakee->_thread;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1087
  ParkEvent * Trigger = Wakee->_event;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1088
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1089
  // Hygiene -- once we've set _owner = NULL we can't safely dereference Wakee again.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1090
  // The thread associated with Wakee may have grabbed the lock and "Wakee" may be
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1091
  // out-of-scope (non-extant).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1092
  Wakee  = NULL;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1093
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1094
  // Drop the lock
59247
56bf71d64d51 8234562: Move OrderAccess::release_store*/load_acquire to Atomic
stefank
parents: 59156
diff changeset
  1095
  Atomic::release_store(&_owner, (void*)NULL);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1096
  OrderAccess::fence();                               // ST _owner vs LD in unpark()
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1097
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1098
  DTRACE_MONITOR_PROBE(contended__exit, this, object(), Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1099
  Trigger->unpark();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1100
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1101
  // Maintain stats and report events to JVMTI
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
  1102
  OM_PERFDATA_OP(Parks, inc());
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1103
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1104
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1105
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1106
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1107
// Class Loader deadlock handling.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1108
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1109
// complete_exit exits a lock returning recursion count
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1110
// complete_exit/reenter operate as a wait without waiting
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1111
// complete_exit requires an inflated monitor
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1112
// The _owner field is not always the Thread addr even with an
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1113
// inflated monitor, e.g. the monitor can be inflated by a non-owning
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1114
// thread due to contention.
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1115
intx ObjectMonitor::complete_exit(TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1116
  Thread * const Self = THREAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1117
  assert(Self->is_Java_thread(), "Must be Java thread!");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1118
  JavaThread *jt = (JavaThread *)THREAD;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1119
51960
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1120
  assert(InitDone, "Unexpectedly not initialized");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1121
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1122
  if (THREAD != _owner) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1123
    if (THREAD->is_lock_owned ((address)_owner)) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1124
      assert(_recursions == 0, "internal state error");
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1125
      _owner = THREAD;   // Convert from basiclock addr to Thread addr
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1126
      _recursions = 0;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1127
    }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1128
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
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
  guarantee(Self == _owner, "complete_exit not owner");
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1131
  intx save = _recursions; // record the old recursion count
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1132
  _recursions = 0;        // set the recursion level to be 0
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1133
  exit(true, Self);           // exit the monitor
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1134
  guarantee(_owner != Self, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1135
  return save;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1136
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1137
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1138
// reenter() enters a lock and sets recursion count
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1139
// complete_exit/reenter operate as a wait without waiting
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1140
void ObjectMonitor::reenter(intx recursions, TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1141
  Thread * const Self = THREAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1142
  assert(Self->is_Java_thread(), "Must be Java thread!");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1143
  JavaThread *jt = (JavaThread *)THREAD;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1144
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1145
  guarantee(_owner != Self, "reenter already owner");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1146
  enter(THREAD);       // enter the monitor
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1147
  guarantee(_recursions == 0, "reenter recursion");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1148
  _recursions = recursions;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1149
  return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1150
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1151
57734
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1152
// Checks that the current THREAD owns this monitor and causes an
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1153
// immediate return if it doesn't. We don't use the CHECK macro
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1154
// because we want the IMSE to be the only exception that is thrown
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1155
// from the call site when false is returned. Any other pending
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1156
// exception is ignored.
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1157
#define CHECK_OWNER()                                                  \
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1158
  do {                                                                 \
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1159
    if (!check_owner(THREAD)) {                                        \
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1160
       assert(HAS_PENDING_EXCEPTION, "expected a pending IMSE here."); \
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1161
       return;                                                         \
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1162
     }                                                                 \
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1163
  } while (false)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1164
57734
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1165
// Returns true if the specified thread owns the ObjectMonitor.
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1166
// Otherwise returns false and throws IllegalMonitorStateException
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1167
// (IMSE). If there is a pending exception and the specified thread
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1168
// is not the owner, that exception will be replaced by the IMSE.
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1169
bool ObjectMonitor::check_owner(Thread* THREAD) {
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1170
  if (_owner == THREAD) {
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1171
    return true;
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1172
  }
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1173
  if (THREAD->is_lock_owned((address)_owner)) {
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1174
    _owner = THREAD;  // convert from BasicLock addr to Thread addr
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1175
    _recursions = 0;
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1176
    return true;
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1177
  }
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1178
  THROW_MSG_(vmSymbols::java_lang_IllegalMonitorStateException(),
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1179
             "current thread is not owner", false);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1180
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1181
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1182
static void post_monitor_wait_event(EventJavaMonitorWait* event,
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1183
                                    ObjectMonitor* monitor,
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1184
                                    jlong notifier_tid,
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1185
                                    jlong timeout,
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1186
                                    bool timedout) {
36384
b0b41336a9a8 8143226: Minor updates to Event Based tracing
mgronlun
parents: 35529
diff changeset
  1187
  assert(event != NULL, "invariant");
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1188
  assert(monitor != NULL, "invariant");
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1189
  event->set_monitorClass(((oop)monitor->object())->klass());
36384
b0b41336a9a8 8143226: Minor updates to Event Based tracing
mgronlun
parents: 35529
diff changeset
  1190
  event->set_timeout(timeout);
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1191
  event->set_address((uintptr_t)monitor->object_addr());
36384
b0b41336a9a8 8143226: Minor updates to Event Based tracing
mgronlun
parents: 35529
diff changeset
  1192
  event->set_notifier(notifier_tid);
b0b41336a9a8 8143226: Minor updates to Event Based tracing
mgronlun
parents: 35529
diff changeset
  1193
  event->set_timedOut(timedout);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1194
  event->commit();
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1195
}
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1196
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1197
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1198
// Wait/Notify/NotifyAll
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1199
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1200
// Note: a subset of changes to ObjectMonitor::wait()
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1201
// will need to be replicated in complete_exit
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1202
void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1203
  Thread * const Self = THREAD;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1204
  assert(Self->is_Java_thread(), "Must be Java thread!");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1205
  JavaThread *jt = (JavaThread *)THREAD;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1206
51960
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1207
  assert(InitDone, "Unexpectedly not initialized");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1208
57734
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1209
  CHECK_OWNER();  // Throws IMSE if not owner.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1210
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1211
  EventJavaMonitorWait event;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1212
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1213
  // check for a pending interrupt
58196
cea6839598e8 8230424: Use platform independent code for Thread.interrupt support
dholmes
parents: 57811
diff changeset
  1214
  if (interruptible && jt->is_interrupted(true) && !HAS_PENDING_EXCEPTION) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1215
    // post monitor waited event.  Note that this is past-tense, we are done waiting.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1216
    if (JvmtiExport::should_post_monitor_waited()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1217
      // Note: 'false' parameter is passed here because the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1218
      // wait was not timed out due to thread interrupt.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1219
      JvmtiExport::post_monitor_waited(jt, this, false);
22753
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
  1220
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1221
      // In this short circuit of the monitor wait protocol, the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1222
      // current thread never drops ownership of the monitor and
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1223
      // never gets added to the wait queue so the current thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1224
      // cannot be made the successor. This means that the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1225
      // JVMTI_EVENT_MONITOR_WAITED event handler cannot accidentally
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1226
      // consume an unpark() meant for the ParkEvent associated with
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1227
      // this ObjectMonitor.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1228
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1229
    if (event.should_commit()) {
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1230
      post_monitor_wait_event(&event, this, 0, millis, false);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1231
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1232
    THROW(vmSymbols::java_lang_InterruptedException());
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1233
    return;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1234
  }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1235
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1236
  assert(Self->_Stalled == 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1237
  Self->_Stalled = intptr_t(this);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1238
  jt->set_current_waiting_monitor(this);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1239
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1240
  // create a node to be put into the queue
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1241
  // Critically, after we reset() the event but prior to park(), we must check
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1242
  // for a pending interrupt.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1243
  ObjectWaiter node(Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1244
  node.TState = ObjectWaiter::TS_WAIT;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1245
  Self->_ParkEvent->reset();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1246
  OrderAccess::fence();          // ST into Event; membar ; LD interrupted-flag
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1247
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1248
  // Enter the waiting queue, which is a circular doubly linked list in this case
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1249
  // but it could be a priority queue or any data structure.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1250
  // _WaitSetLock protects the wait queue.  Normally the wait queue is accessed only
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1251
  // by the the owner of the monitor *except* in the case where park()
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1252
  // returns because of a timeout of interrupt.  Contention is exceptionally rare
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1253
  // so we use a simple spin-lock instead of a heavier-weight blocking lock.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1254
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1255
  Thread::SpinAcquire(&_WaitSetLock, "WaitSet - add");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1256
  AddWaiter(&node);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1257
  Thread::SpinRelease(&_WaitSetLock);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1258
51704
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
  1259
  _Responsible = NULL;
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
  1260
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1261
  intx save = _recursions;     // record the old recursion count
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1262
  _waiters++;                  // increment the number of waiters
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1263
  _recursions = 0;             // set the recursion level to be 1
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1264
  exit(true, Self);                    // exit the monitor
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1265
  guarantee(_owner != Self, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1266
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1267
  // The thread is on the WaitSet list - now park() it.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1268
  // On MP systems it's conceivable that a brief spin before we park
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1269
  // could be profitable.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1270
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1271
  // TODO-FIXME: change the following logic to a loop of the form
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1272
  //   while (!timeout && !interrupted && _notified == 0) park()
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1273
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1274
  int ret = OS_OK;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1275
  int WasNotified = 0;
59105
76ae9aa0e794 8233549: Thread interrupted state must only be accessed when not in a safepoint-safe state
dholmes
parents: 58196
diff changeset
  1276
76ae9aa0e794 8233549: Thread interrupted state must only be accessed when not in a safepoint-safe state
dholmes
parents: 58196
diff changeset
  1277
  // Need to check interrupt state whilst still _thread_in_vm
76ae9aa0e794 8233549: Thread interrupted state must only be accessed when not in a safepoint-safe state
dholmes
parents: 58196
diff changeset
  1278
  bool interrupted = interruptible && jt->is_interrupted(false);
76ae9aa0e794 8233549: Thread interrupted state must only be accessed when not in a safepoint-safe state
dholmes
parents: 58196
diff changeset
  1279
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1280
  { // State transition wrappers
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1281
    OSThread* osthread = Self->osthread();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1282
    OSThreadWaitState osts(osthread, true);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1283
    {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1284
      ThreadBlockInVM tbivm(jt);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1285
      // Thread is in thread_blocked state and oop access is unsafe.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1286
      jt->set_suspend_equivalent();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1287
59105
76ae9aa0e794 8233549: Thread interrupted state must only be accessed when not in a safepoint-safe state
dholmes
parents: 58196
diff changeset
  1288
      if (interrupted || HAS_PENDING_EXCEPTION) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1289
        // Intentionally empty
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1290
      } else if (node._notified == 0) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1291
        if (millis <= 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1292
          Self->_ParkEvent->park();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1293
        } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1294
          ret = Self->_ParkEvent->park(millis);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1295
        }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1296
      }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1297
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1298
      // were we externally suspended while we were waiting?
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1299
      if (ExitSuspendEquivalent (jt)) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1300
        // TODO-FIXME: add -- if succ == Self then succ = null.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1301
        jt->java_suspend_self();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1302
      }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1303
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1304
    } // Exit thread safepoint: transition _thread_blocked -> _thread_in_vm
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1305
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1306
    // Node may be on the WaitSet, the EntryList (or cxq), or in transition
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1307
    // from the WaitSet to the EntryList.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1308
    // See if we need to remove Node from the WaitSet.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1309
    // We use double-checked locking to avoid grabbing _WaitSetLock
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1310
    // if the thread is not on the wait queue.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1311
    //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1312
    // Note that we don't need a fence before the fetch of TState.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1313
    // In the worst case we'll fetch a old-stale value of TS_WAIT previously
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1314
    // written by the is thread. (perhaps the fetch might even be satisfied
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1315
    // by a look-aside into the processor's own store buffer, although given
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1316
    // the length of the code path between the prior ST and this load that's
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1317
    // highly unlikely).  If the following LD fetches a stale TS_WAIT value
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1318
    // then we'll acquire the lock and then re-fetch a fresh TState value.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1319
    // That is, we fail toward safety.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1320
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1321
    if (node.TState == ObjectWaiter::TS_WAIT) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1322
      Thread::SpinAcquire(&_WaitSetLock, "WaitSet - unlink");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1323
      if (node.TState == ObjectWaiter::TS_WAIT) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1324
        DequeueSpecificWaiter(&node);       // unlink from WaitSet
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1325
        assert(node._notified == 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1326
        node.TState = ObjectWaiter::TS_RUN;
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
      Thread::SpinRelease(&_WaitSetLock);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1329
    }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1330
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1331
    // The thread is now either on off-list (TS_RUN),
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1332
    // on the EntryList (TS_ENTER), or on the cxq (TS_CXQ).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1333
    // The Node's TState variable is stable from the perspective of this thread.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1334
    // No other threads will asynchronously modify TState.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1335
    guarantee(node.TState != ObjectWaiter::TS_WAIT, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1336
    OrderAccess::loadload();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1337
    if (_succ == Self) _succ = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1338
    WasNotified = node._notified;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1339
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1340
    // Reentry phase -- reacquire the monitor.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1341
    // re-enter contended monitor after object.wait().
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1342
    // retain OBJECT_WAIT state until re-enter successfully completes
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1343
    // Thread state is thread_in_vm and oop access is again safe,
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1344
    // although the raw address of the object may have changed.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1345
    // (Don't cache naked oops over safepoints, of course).
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1346
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1347
    // post monitor waited event. Note that this is past-tense, we are done waiting.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1348
    if (JvmtiExport::should_post_monitor_waited()) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1349
      JvmtiExport::post_monitor_waited(jt, this, ret == OS_TIMEOUT);
22753
749328896281 8028073: race condition in ObjectMonitor implementation causing deadlocks
dcubed
parents: 22551
diff changeset
  1350
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1351
      if (node._notified != 0 && _succ == Self) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1352
        // In this part of the monitor wait-notify-reenter protocol it
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1353
        // is possible (and normal) for another thread to do a fastpath
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1354
        // monitor enter-exit while this thread is still trying to get
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1355
        // to the reenter portion of the protocol.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1356
        //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1357
        // The ObjectMonitor was notified and the current thread is
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1358
        // the successor which also means that an unpark() has already
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1359
        // been done. The JVMTI_EVENT_MONITOR_WAITED event handler can
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1360
        // consume the unpark() that was done when the successor was
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1361
        // set because the same ParkEvent is shared between Java
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1362
        // monitors and JVM/TI RawMonitors (for now).
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1363
        //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1364
        // We redo the unpark() to ensure forward progress, i.e., we
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1365
        // don't want all pending threads hanging (parked) with none
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1366
        // entering the unlocked monitor.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1367
        node._event->unpark();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1368
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1369
    }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1370
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1371
    if (event.should_commit()) {
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1372
      post_monitor_wait_event(&event, this, node._notifier_tid, millis, ret == OS_TIMEOUT);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1373
    }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17087
diff changeset
  1374
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1375
    OrderAccess::fence();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1376
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1377
    assert(Self->_Stalled != 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1378
    Self->_Stalled = 0;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1379
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1380
    assert(_owner != Self, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1381
    ObjectWaiter::TStates v = node.TState;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1382
    if (v == ObjectWaiter::TS_RUN) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1383
      enter(Self);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1384
    } else {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1385
      guarantee(v == ObjectWaiter::TS_ENTER || v == ObjectWaiter::TS_CXQ, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1386
      ReenterI(Self, &node);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1387
      node.wait_reenter_end(this);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1388
    }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1389
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1390
    // Self has reacquired the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1391
    // Lifecycle - the node representing Self must not appear on any queues.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1392
    // Node is about to go out-of-scope, but even if it were immortal we wouldn't
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1393
    // want residual elements associated with this thread left on any lists.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1394
    guarantee(node.TState == ObjectWaiter::TS_RUN, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1395
    assert(_owner == Self, "invariant");
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1396
    assert(_succ != Self, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1397
  } // OSThreadWaitState()
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1398
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1399
  jt->set_current_waiting_monitor(NULL);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1400
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1401
  guarantee(_recursions == 0, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1402
  _recursions = save;     // restore the old recursion count
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1403
  _waiters--;             // decrement the number of waiters
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1404
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1405
  // Verify a few postconditions
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1406
  assert(_owner == Self, "invariant");
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1407
  assert(_succ != Self, "invariant");
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
  1408
  assert(((oop)(object()))->mark() == markWord::encode(this), "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1409
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1410
  // check if the notification happened
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1411
  if (!WasNotified) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1412
    // no, it could be timeout or Thread.interrupt() or both
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1413
    // check for interrupt event, otherwise it is timeout
58196
cea6839598e8 8230424: Use platform independent code for Thread.interrupt support
dholmes
parents: 57811
diff changeset
  1414
    if (interruptible && jt->is_interrupted(true) && !HAS_PENDING_EXCEPTION) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1415
      THROW(vmSymbols::java_lang_InterruptedException());
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1416
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1417
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1418
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1419
  // NOTE: Spurious wake up will be consider as timeout.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1420
  // Monitor notify has precedence over thread interrupt.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1421
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1422
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1423
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1424
// Consider:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1425
// If the lock is cool (cxq == null && succ == null) and we're on an MP system
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1426
// then instead of transferring a thread from the WaitSet to the EntryList
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1427
// we might just dequeue a thread from the WaitSet and directly unpark() it.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1428
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1429
void ObjectMonitor::INotify(Thread * Self) {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1430
  Thread::SpinAcquire(&_WaitSetLock, "WaitSet - notify");
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1431
  ObjectWaiter * iterator = DequeueWaiter();
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1432
  if (iterator != NULL) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1433
    guarantee(iterator->TState == ObjectWaiter::TS_WAIT, "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1434
    guarantee(iterator->_notified == 0, "invariant");
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1435
    // Disposition - what might we do with iterator ?
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1436
    // a.  add it directly to the EntryList - either tail (policy == 1)
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1437
    //     or head (policy == 0).
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1438
    // b.  push it onto the front of the _cxq (policy == 2).
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1439
    // For now we use (b).
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1440
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1441
    iterator->TState = ObjectWaiter::TS_ENTER;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1442
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1443
    iterator->_notified = 1;
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 50083
diff changeset
  1444
    iterator->_notifier_tid = JFR_THREAD_ID(Self);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1445
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1446
    ObjectWaiter * list = _EntryList;
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1447
    if (list != NULL) {
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1448
      assert(list->_prev == NULL, "invariant");
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1449
      assert(list->TState == ObjectWaiter::TS_ENTER, "invariant");
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1450
      assert(list != iterator, "invariant");
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1451
    }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1452
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1453
    // prepend to cxq
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1454
    if (list == NULL) {
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1455
      iterator->_next = iterator->_prev = NULL;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1456
      _EntryList = iterator;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1457
    } else {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1458
      iterator->TState = ObjectWaiter::TS_CXQ;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1459
      for (;;) {
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1460
        ObjectWaiter * front = _cxq;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1461
        iterator->_next = front;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1462
        if (Atomic::cmpxchg(iterator, &_cxq, front) == front) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1463
          break;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1464
        }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1465
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1466
    }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1467
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1468
    // _WaitSetLock protects the wait queue, not the EntryList.  We could
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1469
    // move the add-to-EntryList operation, above, outside the critical section
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1470
    // protected by _WaitSetLock.  In practice that's not useful.  With the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1471
    // exception of  wait() timeouts and interrupts the monitor owner
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1472
    // is the only thread that grabs _WaitSetLock.  There's almost no contention
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1473
    // on _WaitSetLock so it's not profitable to reduce the length of the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1474
    // critical section.
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1475
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1476
    iterator->wait_reenter_begin(this);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1477
  }
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1478
  Thread::SpinRelease(&_WaitSetLock);
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1479
}
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1480
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1481
// Consider: a not-uncommon synchronization bug is to use notify() when
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1482
// notifyAll() is more appropriate, potentially resulting in stranded
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1483
// threads; this is one example of a lost wakeup. A useful diagnostic
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1484
// option is to force all notify() operations to behave as notifyAll().
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1485
//
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1486
// Note: We can also detect many such problems with a "minimum wait".
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1487
// When the "minimum wait" is set to a small non-zero timeout value
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1488
// and the program does not hang whereas it did absent "minimum wait",
51704
2368e8e9cec6 8210513: Obsolete SyncFlags
mikael
parents: 51702
diff changeset
  1489
// that suggests a lost wakeup bug.
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1490
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1491
void ObjectMonitor::notify(TRAPS) {
57734
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1492
  CHECK_OWNER();  // Throws IMSE if not owner.
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1493
  if (_WaitSet == NULL) {
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1494
    return;
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1495
  }
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1496
  DTRACE_MONITOR_PROBE(notify, this, object(), THREAD);
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1497
  INotify(THREAD);
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
  1498
  OM_PERFDATA_OP(Notifications, inc(1));
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1499
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1500
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1501
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1502
// The current implementation of notifyAll() transfers the waiters one-at-a-time
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1503
// from the waitset to the EntryList. This could be done more efficiently with a
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1504
// single bulk transfer but in practice it's not time-critical. Beware too,
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1505
// that in prepend-mode we invert the order of the waiters. Let's say that the
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1506
// waitset is "ABCD" and the EntryList is "XYZ". After a notifyAll() in prepend
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1507
// mode the waitset will be empty and the EntryList will be "DCBAXYZ".
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1508
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1509
void ObjectMonitor::notifyAll(TRAPS) {
57734
18f4d3d46d54 8229212: clear up CHECK_OWNER confusion in objectMonitor.cpp
dcubed
parents: 55345
diff changeset
  1510
  CHECK_OWNER();  // Throws IMSE if not owner.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1511
  if (_WaitSet == NULL) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1512
    return;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1513
  }
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1514
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1515
  DTRACE_MONITOR_PROBE(notifyAll, this, object(), THREAD);
31856
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1516
  int tally = 0;
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1517
  while (_WaitSet != NULL) {
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1518
    tally++;
614d6786ba55 8075171: Contended Locking fast notify bucket
dcubed
parents: 31782
diff changeset
  1519
    INotify(THREAD);
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1520
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1521
32614
b7b2407bc7e5 8049304: race between VM_Exit and _sync_FutileWakeups->inc()
dcubed
parents: 31856
diff changeset
  1522
  OM_PERFDATA_OP(Notifications, inc(tally));
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1523
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1524
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1525
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1526
// Adaptive Spinning Support
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1527
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1528
// Adaptive spin-then-block - rational spinning
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1529
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1530
// Note that we spin "globally" on _owner with a classic SMP-polite TATAS
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1531
// algorithm.  On high order SMP systems it would be better to start with
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1532
// a brief global spin and then revert to spinning locally.  In the spirit of MCS/CLH,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1533
// a contending thread could enqueue itself on the cxq and then spin locally
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1534
// on a thread-specific variable such as its ParkEvent._Event flag.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1535
// That's left as an exercise for the reader.  Note that global spinning is
27165
785a8d56024c 8049737: Contended Locking reorder and cache line bucket
dcubed
parents: 26684
diff changeset
  1536
// not problematic on Niagara, as the L2 cache serves the interconnect and
785a8d56024c 8049737: Contended Locking reorder and cache line bucket
dcubed
parents: 26684
diff changeset
  1537
// has both low latency and massive bandwidth.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1538
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1539
// Broadly, we can fix the spin frequency -- that is, the % of contended lock
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1540
// acquisition attempts where we opt to spin --  at 100% and vary the spin count
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1541
// (duration) or we can fix the count at approximately the duration of
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1542
// a context switch and vary the frequency.   Of course we could also
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1543
// vary both satisfying K == Frequency * Duration, where K is adaptive by monitor.
32622
7ed47d0b888a 8135002: Fix or remove broken links in objectMonitor.cpp comments
dbuck
parents: 32614
diff changeset
  1544
// For a description of 'Adaptive spin-then-block mutual exclusion in
7ed47d0b888a 8135002: Fix or remove broken links in objectMonitor.cpp comments
dbuck
parents: 32614
diff changeset
  1545
// multi-threaded processing,' see U.S. Pat. No. 8046758.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1546
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1547
// This implementation varies the duration "D", where D varies with
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1548
// the success rate of recent spin attempts. (D is capped at approximately
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1549
// length of a round-trip context switch).  The success rate for recent
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1550
// spin attempts is a good predictor of the success rate of future spin
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1551
// attempts.  The mechanism adapts automatically to varying critical
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1552
// section length (lock modality), system load and degree of parallelism.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1553
// D is maintained per-monitor in _SpinDuration and is initialized
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1554
// optimistically.  Spin frequency is fixed at 100%.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1555
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1556
// Note that _SpinDuration is volatile, but we update it without locks
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1557
// or atomics.  The code is designed so that _SpinDuration stays within
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1558
// a reasonable range even in the presence of races.  The arithmetic
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1559
// operations on _SpinDuration are closed over the domain of legal values,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1560
// so at worst a race will install and older but still legal value.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1561
// At the very worst this introduces some apparent non-determinism.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1562
// We might spin when we shouldn't or vice-versa, but since the spin
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1563
// count are relatively short, even in the worst case, the effect is harmless.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1564
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1565
// Care must be taken that a low "D" value does not become an
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1566
// an absorbing state.  Transient spinning failures -- when spinning
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1567
// is overall profitable -- should not cause the system to converge
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1568
// on low "D" values.  We want spinning to be stable and predictable
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1569
// and fairly responsive to change and at the same time we don't want
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1570
// it to oscillate, become metastable, be "too" non-deterministic,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1571
// or converge on or enter undesirable stable absorbing states.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1572
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1573
// We implement a feedback-based control system -- using past behavior
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1574
// to predict future behavior.  We face two issues: (a) if the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1575
// input signal is random then the spin predictor won't provide optimal
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1576
// results, and (b) if the signal frequency is too high then the control
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1577
// system, which has some natural response lag, will "chase" the signal.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1578
// (b) can arise from multimodal lock hold times.  Transient preemption
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1579
// can also result in apparent bimodal lock hold times.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1580
// Although sub-optimal, neither condition is particularly harmful, as
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1581
// in the worst-case we'll spin when we shouldn't or vice-versa.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1582
// The maximum spin duration is rather short so the failure modes aren't bad.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1583
// To be conservative, I've tuned the gain in system to bias toward
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1584
// _not spinning.  Relatedly, the system can sometimes enter a mode where it
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1585
// "rings" or oscillates between spinning and not spinning.  This happens
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1586
// when spinning is just on the cusp of profitability, however, so the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1587
// situation is not dire.  The state is benign -- there's no need to add
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1588
// hysteresis control to damp the transition rate between spinning and
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1589
// not spinning.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1590
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1591
// Spinning: Fixed frequency (100%), vary duration
39702
ea7e9375bb93 8068592: Remove unused code in objectMonitor.hpp
dcubed
parents: 37251
diff changeset
  1592
int ObjectMonitor::TrySpin(Thread * Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1593
  // Dumb, brutal spin.  Good for comparative measurements against adaptive spinning.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1594
  int ctr = Knob_FixedSpin;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1595
  if (ctr != 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1596
    while (--ctr >= 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1597
      if (TryLock(Self) > 0) return 1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1598
      SpinPause();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1599
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1600
    return 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1601
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1602
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1603
  for (ctr = Knob_PreSpin + 1; --ctr >= 0;) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1604
    if (TryLock(Self) > 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1605
      // Increase _SpinDuration ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1606
      // Note that we don't clamp SpinDuration precisely at SpinLimit.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1607
      // Raising _SpurDuration to the poverty line is key.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1608
      int x = _SpinDuration;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1609
      if (x < Knob_SpinLimit) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1610
        if (x < Knob_Poverty) x = Knob_Poverty;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1611
        _SpinDuration = x + Knob_BonusB;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1612
      }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1613
      return 1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1614
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1615
    SpinPause();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1616
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1617
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1618
  // Admission control - verify preconditions for spinning
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1619
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1620
  // We always spin a little bit, just to prevent _SpinDuration == 0 from
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1621
  // becoming an absorbing state.  Put another way, we spin briefly to
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1622
  // sample, just in case the system load, parallelism, contention, or lock
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1623
  // modality changed.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1624
  //
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1625
  // Consider the following alternative:
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1626
  // Periodically set _SpinDuration = _SpinLimit and try a long/full
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1627
  // spin attempt.  "Periodically" might mean after a tally of
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1628
  // the # of failed spin attempts (or iterations) reaches some threshold.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1629
  // This takes us into the realm of 1-out-of-N spinning, where we
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1630
  // hold the duration constant but vary the frequency.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1631
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1632
  ctr = _SpinDuration;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1633
  if (ctr <= 0) return 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1634
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1635
  if (NotRunnable(Self, (Thread *) _owner)) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1636
    return 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1637
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1638
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1639
  // We're good to spin ... spin ingress.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1640
  // CONSIDER: use Prefetch::write() to avoid RTS->RTO upgrades
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1641
  // when preparing to LD...CAS _owner, etc and the CAS is likely
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1642
  // to succeed.
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1643
  if (_succ == NULL) {
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1644
    _succ = Self;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1645
  }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1646
  Thread * prv = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1647
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1648
  // There are three ways to exit the following loop:
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1649
  // 1.  A successful spin where this thread has acquired the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1650
  // 2.  Spin failure with prejudice
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1651
  // 3.  Spin failure without prejudice
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1652
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1653
  while (--ctr >= 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1654
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1655
    // Periodic polling -- Check for pending GC
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1656
    // Threads may spin while they're unsafe.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1657
    // We don't want spinning threads to delay the JVM from reaching
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1658
    // a stop-the-world safepoint or to steal cycles from GC.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1659
    // If we detect a pending safepoint we abort in order that
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1660
    // (a) this thread, if unsafe, doesn't delay the safepoint, and (b)
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1661
    // this thread, if safe, doesn't steal cycles from GC.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1662
    // This is in keeping with the "no loitering in runtime" rule.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1663
    // We periodically check to see if there's a safepoint pending.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1664
    if ((ctr & 0xFF) == 0) {
52450
2790da836dc3 8211403: Rename SafepointMechanism::poll(...)
rehn
parents: 51960
diff changeset
  1665
      if (SafepointMechanism::should_block(Self)) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1666
        goto Abort;           // abrupt spin egress
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1667
      }
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1668
      SpinPause();
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1669
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1670
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1671
    // Probe _owner with TATAS
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1672
    // If this thread observes the monitor transition or flicker
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1673
    // from locked to unlocked to locked, then the odds that this
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1674
    // thread will acquire the lock in this spin attempt go down
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1675
    // considerably.  The same argument applies if the CAS fails
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1676
    // or if we observe _owner change from one non-null value to
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1677
    // another non-null value.   In such cases we might abort
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1678
    // the spin without prejudice or apply a "penalty" to the
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1679
    // spin count-down variable "ctr", reducing it by 100, say.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1680
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1681
    Thread * ox = (Thread *) _owner;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1682
    if (ox == NULL) {
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47216
diff changeset
  1683
      ox = (Thread*)Atomic::cmpxchg(Self, &_owner, (void*)NULL);
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1684
      if (ox == NULL) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1685
        // The CAS succeeded -- this thread acquired ownership
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1686
        // Take care of some bookkeeping to exit spin state.
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1687
        if (_succ == Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1688
          _succ = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1689
        }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1690
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1691
        // Increase _SpinDuration :
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1692
        // The spin was successful (profitable) so we tend toward
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1693
        // longer spin attempts in the future.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1694
        // CONSIDER: factor "ctr" into the _SpinDuration adjustment.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1695
        // If we acquired the lock early in the spin cycle it
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1696
        // makes sense to increase _SpinDuration proportionally.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1697
        // Note that we don't clamp SpinDuration precisely at SpinLimit.
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1698
        int x = _SpinDuration;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1699
        if (x < Knob_SpinLimit) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1700
          if (x < Knob_Poverty) x = Knob_Poverty;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1701
          _SpinDuration = x + Knob_Bonus;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1702
        }
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1703
        return 1;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1704
      }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1705
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1706
      // The CAS failed ... we can take any of the following actions:
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1707
      // * penalize: ctr -= CASPenalty
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1708
      // * exit spin with prejudice -- goto Abort;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1709
      // * exit spin without prejudice.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1710
      // * Since CAS is high-latency, retry again immediately.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1711
      prv = ox;
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1712
      goto Abort;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1713
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1714
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1715
    // Did lock ownership change hands ?
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1716
    if (ox != prv && prv != NULL) {
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1717
      goto Abort;
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1718
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1719
    prv = ox;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1720
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1721
    // Abort the spin if the owner is not executing.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1722
    // The owner must be executing in order to drop the lock.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1723
    // Spinning while the owner is OFFPROC is idiocy.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1724
    // Consider: ctr -= RunnablePenalty ;
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1725
    if (NotRunnable(Self, ox)) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1726
      goto Abort;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1727
    }
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1728
    if (_succ == NULL) {
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1729
      _succ = Self;
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1730
    }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1731
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1732
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1733
  // Spin failed with prejudice -- reduce _SpinDuration.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1734
  // TODO: Use an AIMD-like policy to adjust _SpinDuration.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1735
  // AIMD is globally stable.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1736
  {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1737
    int x = _SpinDuration;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1738
    if (x > 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1739
      // Consider an AIMD scheme like: x -= (x >> 3) + 100
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1740
      // This is globally sample and tends to damp the response.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1741
      x -= Knob_Penalty;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1742
      if (x < 0) x = 0;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1743
      _SpinDuration = x;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1744
    }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1745
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1746
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1747
 Abort:
51860
54aafb3ba9ab 8210848: Obsolete SyncKnobs
mikael
parents: 51704
diff changeset
  1748
  if (_succ == Self) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1749
    _succ = NULL;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1750
    // Invariant: after setting succ=null a contending thread
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1751
    // must recheck-retry _owner before parking.  This usually happens
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1752
    // in the normal usage of TrySpin(), but it's safest
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1753
    // to make TrySpin() as foolproof as possible.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1754
    OrderAccess::fence();
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1755
    if (TryLock(Self) > 0) return 1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1756
  }
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1757
  return 0;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1758
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1759
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1760
// NotRunnable() -- informed spinning
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1761
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1762
// Don't bother spinning if the owner is not eligible to drop the lock.
51376
181e6a03249b 8164683: Solaris: JVM abuses thread preemption control
coleenp
parents: 51258
diff changeset
  1763
// Spin only if the owner thread is _thread_in_Java or _thread_in_vm.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1764
// The thread must be runnable in order to drop the lock in timely fashion.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1765
// If the _owner is not runnable then spinning will not likely be
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1766
// successful (profitable).
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1767
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1768
// Beware -- the thread referenced by _owner could have died
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1769
// so a simply fetch from _owner->_thread_state might trap.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1770
// Instead, we use SafeFetchXX() to safely LD _owner->_thread_state.
51376
181e6a03249b 8164683: Solaris: JVM abuses thread preemption control
coleenp
parents: 51258
diff changeset
  1771
// Because of the lifecycle issues, the _thread_state values
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1772
// observed by NotRunnable() might be garbage.  NotRunnable must
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1773
// tolerate this and consider the observed _thread_state value
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1774
// as advisory.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1775
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1776
// Beware too, that _owner is sometimes a BasicLock address and sometimes
27165
785a8d56024c 8049737: Contended Locking reorder and cache line bucket
dcubed
parents: 26684
diff changeset
  1777
// a thread pointer.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1778
// Alternately, we might tag the type (thread pointer vs basiclock pointer)
51376
181e6a03249b 8164683: Solaris: JVM abuses thread preemption control
coleenp
parents: 51258
diff changeset
  1779
// with the LSB of _owner.  Another option would be to probabilistically probe
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1780
// the putative _owner->TypeTag value.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1781
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1782
// Checking _thread_state isn't perfect.  Even if the thread is
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1783
// in_java it might be blocked on a page-fault or have been preempted
51376
181e6a03249b 8164683: Solaris: JVM abuses thread preemption control
coleenp
parents: 51258
diff changeset
  1784
// and sitting on a ready/dispatch queue.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1785
//
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1786
// The return value from NotRunnable() is *advisory* -- the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1787
// result is based on sampling and is not necessarily coherent.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1788
// The caller must tolerate false-negative and false-positive errors.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1789
// Spinning, in general, is probabilistic anyway.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1790
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1791
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1792
int ObjectMonitor::NotRunnable(Thread * Self, Thread * ox) {
27165
785a8d56024c 8049737: Contended Locking reorder and cache line bucket
dcubed
parents: 26684
diff changeset
  1793
  // Check ox->TypeTag == 2BAD.
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1794
  if (ox == NULL) return 0;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1795
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1796
  // Avoid transitive spinning ...
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1797
  // Say T1 spins or blocks trying to acquire L.  T1._Stalled is set to L.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1798
  // Immediately after T1 acquires L it's possible that T2, also
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1799
  // spinning on L, will see L.Owner=T1 and T1._Stalled=L.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1800
  // This occurs transiently after T1 acquired L but before
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1801
  // T1 managed to clear T1.Stalled.  T2 does not need to abort
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1802
  // its spin in this circumstance.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1803
  intptr_t BlockedOn = SafeFetchN((intptr_t *) &ox->_Stalled, intptr_t(1));
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1804
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1805
  if (BlockedOn == 1) return 1;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1806
  if (BlockedOn != 0) {
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1807
    return BlockedOn != intptr_t(this) && _owner == ox;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1808
  }
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1809
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1810
  assert(sizeof(((JavaThread *)ox)->_thread_state == sizeof(int)), "invariant");
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1811
  int jst = SafeFetch32((int *) &((JavaThread *) ox)->_thread_state, -1);;
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1812
  // consider also: jst != _thread_in_Java -- but that's overspecific.
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1813
  return jst == _thread_blocked || jst == _thread_in_native;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1814
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1815
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1816
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1817
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1818
// WaitSet management ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1819
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1820
ObjectWaiter::ObjectWaiter(Thread* thread) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1821
  _next     = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1822
  _prev     = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1823
  _notified = 0;
48185
d5610f86423f 8179083: Uninitialized notifier in Java Monitor Wait tracing event
egahlin
parents: 48157
diff changeset
  1824
  _notifier_tid = 0;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1825
  TState    = TS_RUN;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1826
  _thread   = thread;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1827
  _event    = thread->_ParkEvent;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1828
  _active   = false;
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1829
  assert(_event != NULL, "invariant");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1830
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1831
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1832
void ObjectWaiter::wait_reenter_begin(ObjectMonitor * const mon) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1833
  JavaThread *jt = (JavaThread *)this->_thread;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1834
  _active = JavaThreadBlockedOnMonitorEnterState::wait_reenter_begin(jt, mon);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1835
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1836
25472
381638db28e6 8047104: cleanup misc issues prior to Contended Locking reorder and cache
dcubed
parents: 25468
diff changeset
  1837
void ObjectWaiter::wait_reenter_end(ObjectMonitor * const mon) {
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1838
  JavaThread *jt = (JavaThread *)this->_thread;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1839
  JavaThreadBlockedOnMonitorEnterState::wait_reenter_end(jt, _active);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1840
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1841
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1842
inline void ObjectMonitor::AddWaiter(ObjectWaiter* node) {
31782
b23b74f8ae8d 8130448: thread dump improvements, comment additions, new diagnostics inspired by 8077392
dcubed
parents: 27165
diff changeset
  1843
  assert(node != NULL, "should not add NULL node");
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1844
  assert(node->_prev == NULL, "node already in list");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1845
  assert(node->_next == NULL, "node already in list");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1846
  // put node at end of queue (circular doubly linked list)
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1847
  if (_WaitSet == NULL) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1848
    _WaitSet = node;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1849
    node->_prev = node;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1850
    node->_next = node;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1851
  } else {
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1852
    ObjectWaiter* head = _WaitSet;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1853
    ObjectWaiter* tail = head->_prev;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1854
    assert(tail->_next == head, "invariant check");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1855
    tail->_next = node;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1856
    head->_prev = node;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1857
    node->_next = head;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1858
    node->_prev = tail;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1859
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1860
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1861
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1862
inline ObjectWaiter* ObjectMonitor::DequeueWaiter() {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1863
  // dequeue the very first waiter
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1864
  ObjectWaiter* waiter = _WaitSet;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1865
  if (waiter) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1866
    DequeueSpecificWaiter(waiter);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1867
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1868
  return waiter;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1869
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1870
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1871
inline void ObjectMonitor::DequeueSpecificWaiter(ObjectWaiter* node) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1872
  assert(node != NULL, "should not dequeue NULL node");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1873
  assert(node->_prev != NULL, "node already removed from list");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1874
  assert(node->_next != NULL, "node already removed from list");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1875
  // when the waiter has woken up because of interrupt,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1876
  // timeout or other spurious wake-up, dequeue the
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1877
  // waiter from waiting list
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1878
  ObjectWaiter* next = node->_next;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1879
  if (next == node) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1880
    assert(node->_prev == node, "invariant check");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1881
    _WaitSet = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1882
  } else {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1883
    ObjectWaiter* prev = node->_prev;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1884
    assert(prev->_next == node, "invariant check");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1885
    assert(next->_prev == node, "invariant check");
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1886
    next->_prev = prev;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1887
    prev->_next = next;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1888
    if (_WaitSet == node) {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1889
      _WaitSet = next;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1890
    }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1891
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1892
  node->_next = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1893
  node->_prev = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1894
}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1895
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1896
// -----------------------------------------------------------------------------
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1897
// PerfData support
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1898
PerfCounter * ObjectMonitor::_sync_ContendedLockAttempts       = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1899
PerfCounter * ObjectMonitor::_sync_FutileWakeups               = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1900
PerfCounter * ObjectMonitor::_sync_Parks                       = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1901
PerfCounter * ObjectMonitor::_sync_Notifications               = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1902
PerfCounter * ObjectMonitor::_sync_Inflations                  = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1903
PerfCounter * ObjectMonitor::_sync_Deflations                  = NULL;
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1904
PerfLongVariable * ObjectMonitor::_sync_MonExtant              = NULL;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1905
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1906
// One-shot global initialization for the sync subsystem.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1907
// We could also defer initialization and initialize on-demand
53557
4cfe0e5a3b79 8217658: baseline_cleanups from Async Monitor Deflation project
dcubed
parents: 52450
diff changeset
  1908
// the first time we call ObjectSynchronizer::inflate().
4cfe0e5a3b79 8217658: baseline_cleanups from Async Monitor Deflation project
dcubed
parents: 52450
diff changeset
  1909
// Initialization would be protected - like so many things - by
4cfe0e5a3b79 8217658: baseline_cleanups from Async Monitor Deflation project
dcubed
parents: 52450
diff changeset
  1910
// the MonitorCache_lock.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1911
25064
244218e6ec0a 8046758: cleanup non-indent white space issues prior to Contended Locking cleanup bucket
dcubed
parents: 24832
diff changeset
  1912
void ObjectMonitor::Initialize() {
51960
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1913
  assert(!InitDone, "invariant");
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1914
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1915
  if (!os::is_MP()) {
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1916
    Knob_SpinLimit = 0;
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1917
    Knob_PreSpin   = 0;
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1918
    Knob_FixedSpin = -1;
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1919
  }
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1920
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1921
  if (UsePerfData) {
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1922
    EXCEPTION_MARK;
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1923
#define NEWPERFCOUNTER(n)                                                \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1924
  {                                                                      \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1925
    n = PerfDataManager::create_counter(SUN_RT, #n, PerfData::U_Events,  \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1926
                                        CHECK);                          \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1927
  }
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1928
#define NEWPERFVARIABLE(n)                                                \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1929
  {                                                                       \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1930
    n = PerfDataManager::create_variable(SUN_RT, #n, PerfData::U_Events,  \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1931
                                         CHECK);                          \
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1932
  }
26683
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1933
    NEWPERFCOUNTER(_sync_Inflations);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1934
    NEWPERFCOUNTER(_sync_Deflations);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1935
    NEWPERFCOUNTER(_sync_ContendedLockAttempts);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1936
    NEWPERFCOUNTER(_sync_FutileWakeups);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1937
    NEWPERFCOUNTER(_sync_Parks);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1938
    NEWPERFCOUNTER(_sync_Notifications);
a02753d5a0b2 8057107: cleanup indent white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 25633
diff changeset
  1939
    NEWPERFVARIABLE(_sync_MonExtant);
26684
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1940
#undef NEWPERFCOUNTER
d1221849ea3d 8057109: manual cleanup of white space issues prior to Contended Locking reorder and cache line bucket
dcubed
parents: 26683
diff changeset
  1941
#undef NEWPERFVARIABLE
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1942
  }
51960
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1943
bb1d5dd64897 8211176: Initialize ObjectMonitor eagerly
mikael
parents: 51860
diff changeset
  1944
  DEBUG_ONLY(InitDone = true;)
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents:
diff changeset
  1945
}
54725
bfa52d3068f5 8222893: markOopDesc::print_on() is a bit confused
coleenp
parents: 54609
diff changeset
  1946
bfa52d3068f5 8222893: markOopDesc::print_on() is a bit confused
coleenp
parents: 54609
diff changeset
  1947
void ObjectMonitor::print_on(outputStream* st) const {
57777
90ead0febf56 8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents: 57734
diff changeset
  1948
  // The minimal things to print for markWord printing, more can be added for debugging and logging.
54725
bfa52d3068f5 8222893: markOopDesc::print_on() is a bit confused
coleenp
parents: 54609
diff changeset
  1949
  st->print("{contentions=0x%08x,waiters=0x%08x"
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1950
            ",recursions=" INTX_FORMAT ",owner=" INTPTR_FORMAT "}",
54725
bfa52d3068f5 8222893: markOopDesc::print_on() is a bit confused
coleenp
parents: 54609
diff changeset
  1951
            contentions(), waiters(), recursions(),
bfa52d3068f5 8222893: markOopDesc::print_on() is a bit confused
coleenp
parents: 54609
diff changeset
  1952
            p2i(owner()));
bfa52d3068f5 8222893: markOopDesc::print_on() is a bit confused
coleenp
parents: 54609
diff changeset
  1953
}
54807
33fe50b6d707 8223626: move print() functions to cpp files
coleenp
parents: 54725
diff changeset
  1954
void ObjectMonitor::print() const { print_on(tty); }
59156
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1955
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1956
#ifdef ASSERT
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1957
// Print the ObjectMonitor like a debugger would:
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1958
//
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1959
// (ObjectMonitor) 0x00007fdfb6012e40 = {
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1960
//   _header = 0x0000000000000001
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1961
//   _object = 0x000000070ff45fd0
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1962
//   _next_om = 0x0000000000000000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1963
//   _pad_buf0 = {
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1964
//     [0] = '\0'
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1965
//     ...
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1966
//     [103] = '\0'
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1967
//   }
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1968
//   _owner = 0x0000000000000000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1969
//   _previous_owner_tid = 0
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1970
//   _recursions = 0
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1971
//   _EntryList = 0x0000000000000000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1972
//   _cxq = 0x0000000000000000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1973
//   _succ = 0x0000000000000000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1974
//   _Responsible = 0x0000000000000000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1975
//   _Spinner = 0
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1976
//   _SpinDuration = 5000
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1977
//   _contentions = 0
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1978
//   _WaitSet = 0x0000700009756248
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1979
//   _waiters = 1
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1980
//   _WaitSetLock = 0
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1981
// }
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1982
//
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1983
void ObjectMonitor::print_debug_style_on(outputStream* st) const {
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1984
  st->print_cr("(ObjectMonitor*) " INTPTR_FORMAT " = {", p2i(this));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1985
  st->print_cr("  _header = " INTPTR_FORMAT, header().value());
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1986
  st->print_cr("  _object = " INTPTR_FORMAT, p2i(_object));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1987
  st->print_cr("  _next_om = " INTPTR_FORMAT, p2i(_next_om));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1988
  st->print_cr("  _pad_buf0 = {");
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1989
  st->print_cr("    [0] = '\\0'");
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1990
  st->print_cr("    ...");
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1991
  st->print_cr("    [%d] = '\\0'", (int)sizeof(_pad_buf0) - 1);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1992
  st->print_cr("  }");
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1993
  st->print_cr("  _owner = " INTPTR_FORMAT, p2i(_owner));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1994
  st->print_cr("  _previous_owner_tid = " JLONG_FORMAT, _previous_owner_tid);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1995
  st->print_cr("  _recursions = " INTX_FORMAT, _recursions);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1996
  st->print_cr("  _EntryList = " INTPTR_FORMAT, p2i(_EntryList));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1997
  st->print_cr("  _cxq = " INTPTR_FORMAT, p2i(_cxq));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1998
  st->print_cr("  _succ = " INTPTR_FORMAT, p2i(_succ));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  1999
  st->print_cr("  _Responsible = " INTPTR_FORMAT, p2i(_Responsible));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2000
  st->print_cr("  _Spinner = %d", _Spinner);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2001
  st->print_cr("  _SpinDuration = %d", _SpinDuration);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2002
  st->print_cr("  _contentions = %d", _contentions);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2003
  st->print_cr("  _WaitSet = " INTPTR_FORMAT, p2i(_WaitSet));
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2004
  st->print_cr("  _waiters = %d", _waiters);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2005
  st->print_cr("  _WaitSetLock = %d", _WaitSetLock);
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2006
  st->print_cr("}");
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2007
}
14fa9e70ae71 8230876: baseline cleanups from Async Monitor Deflation v2.0[789]
dcubed
parents: 59105
diff changeset
  2008
#endif