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