src/hotspot/share/runtime/mutex.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 52913 bf2f2560dd53
child 53646 043ae846819f
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52913
diff changeset
     2
 * Copyright (c) 1998, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52913
diff changeset
    25
#ifndef SHARE_RUNTIME_MUTEX_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52913
diff changeset
    26
#define SHARE_RUNTIME_MUTEX_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    29
#include "runtime/os.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    30
#include "utilities/histogram.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// The SplitWord construct allows us to colocate the contention queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// (cxq) with the lock-byte.  The queue elements are ParkEvents, which are
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// always aligned on 256-byte addresses - the least significant byte of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// a ParkEvent is always 0.  Colocating the lock-byte with the queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// allows us to easily avoid what would otherwise be a race in lock()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// if we were to use two completely separate fields for the contention queue
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// and the lock indicator.  Specifically, colocation renders us immune
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// from the race where a thread might enqueue itself in the lock() slow-path
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// immediately after the lock holder drops the outer lock in the unlock()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// fast-path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// Colocation allows us to use a fast-path unlock() form that uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// A MEMBAR instead of a CAS.  MEMBAR has lower local latency than CAS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// on many platforms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// See:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// +  http://blogs.sun.com/dave/entry/biased_locking_in_hotspot
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// +  http://blogs.sun.com/dave/resource/synchronization-public2.pdf
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// Note that we're *not* using word-tearing the classic sense.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
// The lock() fast-path will CAS the lockword and the unlock()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// fast-path will store into the lock-byte colocated within the lockword.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// We depend on the fact that all our reference platforms have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// coherent and atomic byte accesses.  More precisely, byte stores
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// interoperate in a safe, sane, and expected manner with respect to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// CAS, ST and LDs to the full-word containing the byte.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// If you're porting HotSpot to a platform where that isn't the case
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// then you'll want change the unlock() fast path from:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
//    STB;MEMBAR #storeload; LDN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// to a full-word CAS of the lockword.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
union SplitWord {   // full-word with separately addressable LSB
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  volatile intptr_t FullWord ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  volatile void * Address ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  volatile jbyte Bytes [sizeof(intptr_t)] ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
} ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
class ParkEvent ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// See orderAccess.hpp.  We assume throughout the VM that mutex lock and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// try_lock do fence-lock-acquire, and that unlock does a release-unlock,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// *in that order*.  If their implementations change such that these
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// assumptions are violated, a whole lot of code will break.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
    77
// The default length of monitor name was originally chosen to be 64 to avoid
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
    78
// false sharing. Now, PaddedMonitor is available for this purpose.
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
    79
// TODO: Check if _name[MONITOR_NAME_LEN] should better get replaced by const char*.
228
69939fa91efd 6610420: Debug VM crashes during monitor lock rank checking
xlu
parents: 1
diff changeset
    80
static const int MONITOR_NAME_LEN = 64;
69939fa91efd 6610420: Debug VM crashes during monitor lock rank checking
xlu
parents: 1
diff changeset
    81
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    82
class Monitor : public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // A special lock: Is a lock where you are guaranteed not to block while you are
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    86
  // holding it, i.e., no vm operation can happen, taking other (blocking) locks, etc.
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    87
  // The rank 'access' is similar to 'special' and has the same restrictions on usage.
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    88
  // It is reserved for locks that may be required in order to perform memory accesses
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    89
  // that require special barriers, e.g. SATB GC barriers, that in turn uses locks.
52913
bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0
kbarrett
parents: 52555
diff changeset
    90
  // The rank 'tty' is also similar to 'special' and has the same restrictions.
bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0
kbarrett
parents: 52555
diff changeset
    91
  // It is reserved for the tty_lock.
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    92
  // Since memory accesses should be able to be performed pretty much anywhere
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    93
  // in the code, that requires locks required for performing accesses being
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    94
  // inherently a bit more special than even locks of the 'special' rank.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // NOTE: It is critical that the rank 'special' be the lowest (earliest)
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
    96
  // (except for "event" and "access") for the deadlock detection to work correctly.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // The rank native is only for use in Mutex's created by JVM_RawMonitorCreate,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // which being external to the VM are not subject to deadlock detection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // The rank safepoint is used only for synchronization in reaching a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // safepoint and leaving a safepoint.  It is only used for the Safepoint_lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // currently.  While at a safepoint no mutexes of rank safepoint are held
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // by any thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // The rank named "leaf" is probably historical (and should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // be changed) -- mutexes of this rank aren't really leaf mutexes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // at all.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  enum lock_types {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
       event,
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   108
       access         = event          +   1,
52913
bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0
kbarrett
parents: 52555
diff changeset
   109
       tty            = access         +   2,
bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0
kbarrett
parents: 52555
diff changeset
   110
       special        = tty            +   1,
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   111
       suspend_resume = special        +   1,
49818
e57e6addb978 8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents: 47634
diff changeset
   112
       vmweak         = suspend_resume +   2,
e57e6addb978 8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents: 47634
diff changeset
   113
       leaf           = vmweak         +   2,
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   114
       safepoint      = leaf           +  10,
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   115
       barrier        = safepoint      +   1,
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   116
       nonleaf        = barrier        +   1,
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   117
       max_nonleaf    = nonleaf        + 900,
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 41710
diff changeset
   118
       native         = max_nonleaf    +   1
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // The WaitSet and EntryList linked lists are composed of ParkEvents.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // I use ParkEvent instead of threads as ParkEvents are immortal and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // type-stable, meaning we can safely unpark() a possibly stale
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // list element in the unlock()-path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
 protected:                              // Monitor-Mutex metadata
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  SplitWord _LockWord ;                  // Contention queue (cxq) colocated with Lock-byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  Thread * volatile _owner;              // The owner of the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
                                         // Consider sequestering _owner on its own $line
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
                                         // to aid future synchronization mechanisms.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  ParkEvent * volatile _EntryList ;      // List of threads waiting for entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  ParkEvent * volatile _OnDeck ;         // heir-presumptive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  volatile intptr_t _WaitLock [1] ;      // Protects _WaitSet
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  ParkEvent * volatile  _WaitSet ;       // LL of ParkEvents
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  volatile bool     _snuck;              // Used for sneaky locking (evil).
228
69939fa91efd 6610420: Debug VM crashes during monitor lock rank checking
xlu
parents: 1
diff changeset
   136
  char _name[MONITOR_NAME_LEN];          // Name of mutex
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Debugging fields for naming, deadlock detection, etc. (some only used in debug mode)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bool      _allow_vm_block;
52555
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   141
  DEBUG_ONLY(int _rank;)                 // rank (to avoid/detect potential deadlocks)
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   142
  DEBUG_ONLY(Monitor * _next;)           // Used by a Thread to link up owned locks
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   143
  DEBUG_ONLY(Thread* _last_owner;)       // the last thread to own the lock
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   144
  DEBUG_ONLY(static bool contains(Monitor * locks, Monitor * lock);)
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   145
  DEBUG_ONLY(static Monitor * get_least_ranked_lock(Monitor * locks);)
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   146
  DEBUG_ONLY(Monitor * get_least_ranked_lock_besides_this(Monitor * locks);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  void set_owner_implementation(Thread* owner)                        PRODUCT_RETURN;
50280
5aaf3a471172 8203817: Monitor::try_lock() should not call check_prelock_state()
pliden
parents: 50203
diff changeset
   150
  void check_prelock_state     (Thread* thread, bool safepoint_check) PRODUCT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void check_block_state       (Thread* thread)                       PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // platform-dependent support code can go here (in os_<os_family>.cpp)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    _no_safepoint_check_flag    = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    _allow_vm_block_flag        = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    _as_suspend_equivalent_flag = true
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   161
  // Locks can be acquired with or without safepoint check.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   162
  // Monitor::lock and Monitor::lock_without_safepoint_check
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   163
  // checks these flags when acquiring a lock to ensure
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   164
  // consistent checking for each lock.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   165
  // A few existing locks will sometimes have a safepoint check and
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   166
  // sometimes not, but these locks are set up in such a way to avoid deadlocks.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   167
  enum SafepointCheckRequired {
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   168
    _safepoint_check_never,       // Monitors with this value will cause errors
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   169
                                  // when acquired with a safepoint check.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   170
    _safepoint_check_sometimes,   // Certain locks are called sometimes with and
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   171
                                  // sometimes without safepoint checks. These
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   172
                                  // locks will not produce errors when locked.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   173
    _safepoint_check_always       // Causes error if locked without a safepoint
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   174
                                  // check.
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   175
  };
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   176
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   177
  NOT_PRODUCT(SafepointCheckRequired _safepoint_check_required;)
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   178
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  enum WaitResults {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    CONDVAR_EVENT,         // Wait returned because of condition variable notification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    INTERRUPT_EVENT,       // Wait returned because waiting thread was interrupted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    NUMBER_WAIT_RESULTS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
   int  TrySpin (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
   int  TryLock () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
   int  TryFast () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
   int  AcquireOrPush (ParkEvent * ev) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
   void IUnlock (bool RelaxAssert) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
   void ILock (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
   int  IWait (Thread * Self, jlong timo);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
   int  ILocked () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
 protected:
228
69939fa91efd 6610420: Debug VM crashes during monitor lock rank checking
xlu
parents: 1
diff changeset
   196
   static void ClearMonitor (Monitor * m, const char* name = NULL) ;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
   Monitor() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
 public:
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   200
  Monitor(int rank, const char *name, bool allow_vm_block = false,
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   201
          SafepointCheckRequired safepoint_check_required = _safepoint_check_always);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  ~Monitor();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Wait until monitor is notified (or times out).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Defaults are to make safepoint checks, wait time is forever (i.e.,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // zero), and not a suspend-equivalent condition. Returns true if wait
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // times out; otherwise returns false.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  bool wait(bool no_safepoint_check = !_no_safepoint_check_flag,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
            long timeout = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
            bool as_suspend_equivalent = !_as_suspend_equivalent_flag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  bool notify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  bool notify_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void lock(); // prints out warning if VM thread blocks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  void lock(Thread *thread); // overloaded with current thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  bool is_locked() const                     { return _owner != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool try_lock(); // Like lock(), but unblocking. It returns false instead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // Lock without safepoint check. Should ONLY be used by safepoint code and other code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // that is guaranteed not to block while running inside the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void lock_without_safepoint_check (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Current owner - not not MT-safe. Can only be used to guarantee that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // the current running thread owns the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  Thread* owner() const         { return _owner; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  bool owned_by_self() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // Support for JVM_RawMonitorEnter & JVM_RawMonitorExit. These can be called by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // non-Java thread. (We should really have a RawMonitor abstraction)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  void jvm_raw_lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  void jvm_raw_unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  const char *name() const                  { return _name; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void print_on_error(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    void print_on(outputStream* st) const;
52913
bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0
kbarrett
parents: 52555
diff changeset
   242
    void print() const                      { print_on(::tty); }
52555
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   243
    DEBUG_ONLY(int    rank() const          { return _rank; })
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    bool   allow_vm_block()                 { return _allow_vm_block; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
52555
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   246
    DEBUG_ONLY(Monitor *next()  const         { return _next; })
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   247
    DEBUG_ONLY(void   set_next(Monitor *next) { _next = next; })
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void set_owner(Thread* owner) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    set_owner_implementation(owner);
52555
3b2d22602c16 8213708: Different #ifdef guards cause incorrect use of Monitor::check_block_state()
pchilanomate
parents: 50280
diff changeset
   253
    DEBUG_ONLY(void verify_Monitor(Thread* thr);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  #else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    _owner = owner;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   261
class PaddedMonitor : public Monitor {
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   262
  enum {
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   263
    CACHE_LINE_PADDING = (int)DEFAULT_CACHE_LINE_SIZE - (int)sizeof(Monitor),
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   264
    PADDING_LEN = CACHE_LINE_PADDING > 0 ? CACHE_LINE_PADDING : 1
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   265
  };
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   266
  char _padding[PADDING_LEN];
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   267
 public:
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   268
  PaddedMonitor(int rank, const char *name, bool allow_vm_block = false,
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   269
               SafepointCheckRequired safepoint_check_required = _safepoint_check_always) :
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   270
    Monitor(rank, name, allow_vm_block, safepoint_check_required) {};
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   271
};
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   272
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
// Normally we'd expect Monitor to extend Mutex in the sense that a monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
// constructed from pthreads primitives might extend a mutex by adding
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
// a condvar and some extra metadata.  In fact this was the case until J2SE7.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
// Currently, however, the base object is a monitor.  Monitor contains all the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
// logic for wait(), notify(), etc.   Mutex extends monitor and restricts the
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 13963
diff changeset
   279
// visibility of wait(), notify(), and notify_all().
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
// Another viable alternative would have been to have Monitor extend Mutex and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
// implement all the normal mutex and wait()-notify() logic in Mutex base class.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
// The wait()-notify() facility would be exposed via special protected member functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
// (e.g., _Wait() and _Notify()) in Mutex.  Monitor would extend Mutex and expose wait()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
// as a call to _Wait().  That is, the public wait() would be a wrapper for the protected
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
// _Wait().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
// An even better alternative is to simply eliminate Mutex:: and use Monitor:: instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
// After all, monitors are sufficient for Java-level synchronization.   At one point in time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
// there may have been some benefit to having distinct mutexes and monitors, but that time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
// has past.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
// The Mutex/Monitor design parallels that of Java-monitors, being based on
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
// thread-specific park-unpark platform-specific primitives.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
class Mutex : public Monitor {      // degenerate Monitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
 public:
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   299
   Mutex(int rank, const char *name, bool allow_vm_block = false,
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 22551
diff changeset
   300
         SafepointCheckRequired safepoint_check_required = _safepoint_check_always);
46767
e2bb2b8ff65a 8185746: Remove Mutex destructor assertion
kbarrett
parents: 46685
diff changeset
   301
  // default destructor
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
   bool notify ()    { ShouldNotReachHere(); return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
   bool notify_all() { ShouldNotReachHere(); return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
   bool wait (bool no_safepoint_check, long timeout, bool as_suspend_equivalent) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
     ShouldNotReachHere() ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
     return false ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   311
class PaddedMutex : public Mutex {
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   312
  enum {
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   313
    CACHE_LINE_PADDING = (int)DEFAULT_CACHE_LINE_SIZE - (int)sizeof(Mutex),
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   314
    PADDING_LEN = CACHE_LINE_PADDING > 0 ? CACHE_LINE_PADDING : 1
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   315
  };
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   316
  char _padding[PADDING_LEN];
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   317
public:
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   318
  PaddedMutex(int rank, const char *name, bool allow_vm_block = false,
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   319
              SafepointCheckRequired safepoint_check_required = _safepoint_check_always) :
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   320
    Mutex(rank, name, allow_vm_block, safepoint_check_required) {};
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 28163
diff changeset
   321
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
   322
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52913
diff changeset
   323
#endif // SHARE_RUNTIME_MUTEX_HPP