src/hotspot/share/runtime/mutexLocker.hpp
author dtitov
Wed, 25 Sep 2019 11:10:05 -0700
changeset 58340 f4abe950c3b0
parent 58291 a013100f7a35
child 58481 48a73ec3a817
permissions -rw-r--r--
8185005: Improve performance of ThreadMXBean.getThreadInfo(long ids[], int maxDepth) Reviewed-by: sspitsyn, dholmes, dcubed, rehn
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: 52581
diff changeset
     2
 * Copyright (c) 1997, 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: 5242
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5242
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: 5242
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: 52581
diff changeset
    25
#ifndef SHARE_RUNTIME_MUTEXLOCKER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52581
diff changeset
    26
#define SHARE_RUNTIME_MUTEXLOCKER_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5707
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5707
diff changeset
    28
#include "memory/allocation.hpp"
49902
3661f31c6df4 8202150: [REDO] Split globals.hpp to factor out the Flag class
gziemski
parents: 49860
diff changeset
    29
#include "runtime/flags/flagSetting.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5707
diff changeset
    30
#include "runtime/mutex.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5707
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// Mutexes used in the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
extern Mutex*   Patching_lock;                   // a lock used to guard code patching of compiled code
58226
408c445d04e8 8226705: [REDO] Deoptimize with handshakes
rehn
parents: 57840
diff changeset
    35
extern Mutex*   CompiledMethod_lock;             // a lock used to guard a compiled method and OSR queues
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20017
diff changeset
    36
extern Monitor* SystemDictionary_lock;           // a lock on the system dictionary
53962
2653e078b057 8218266: G1 crash in AccessInternal::PostRuntimeDispatch
coleenp
parents: 53884
diff changeset
    37
extern Mutex*   ProtectionDomainSet_lock;        // a lock on the pd_set list in the system dictionary
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50113
diff changeset
    38
extern Mutex*   SharedDictionary_lock;           // a lock on the CDS shared dictionary
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36357
diff changeset
    39
extern Mutex*   Module_lock;                     // a lock on module and package related data structures
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
extern Mutex*   CompiledIC_lock;                 // a lock used to guard compiled IC patching and access
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
extern Mutex*   InlineCacheBuffer_lock;          // a lock used to guard the InlineCacheBuffer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
extern Mutex*   VMStatistic_lock;                // a lock used to guard statistics count increment
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
extern Mutex*   JNIHandleBlockFreeList_lock;     // a lock on the JNI handle block free list
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
extern Mutex*   JmethodIdCreation_lock;          // a lock on creating JNI method identifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
extern Mutex*   JfieldIdCreation_lock;           // a lock on creating JNI static field identifiers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
extern Monitor* JNICritical_lock;                // a lock used while entering and exiting JNI critical regions, allows GC to sometimes get in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
extern Mutex*   JvmtiThreadState_lock;           // a lock on modification of JVMTI thread data
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    48
extern Monitor* Heap_lock;                       // a lock on the heap
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
extern Mutex*   ExpandHeap_lock;                 // a lock on expanding the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
extern Mutex*   AdapterHandlerLibrary_lock;      // a lock on the AdapterHandlerLibrary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
extern Mutex*   SignatureHandlerLibrary_lock;    // a lock on the SignatureHandlerLibrary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
extern Mutex*   VtableStubs_lock;                // a lock on the VtableStubs
51520
ef7852ece52b 8209622: applications/kitchensink/Kitchensink.java failed with Kitchensink failed with exit code = 138
gziemski
parents: 51511
diff changeset
    53
extern Mutex*   SymbolArena_lock;                // a lock on the symbol table arena
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22876
diff changeset
    54
extern Monitor* StringDedupQueue_lock;           // a lock on the string deduplication queue
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 22876
diff changeset
    55
extern Mutex*   StringDedupTable_lock;           // a lock on the string deduplication table
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
    56
extern Monitor* CodeCache_lock;                  // a lock on the CodeCache, rank is special
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
extern Mutex*   MethodData_lock;                 // a lock on installation of method data
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31608
diff changeset
    58
extern Mutex*   TouchedMethodLog_lock;           // a lock on allocation of LogExecutedMethods info
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
extern Mutex*   RetData_lock;                    // a lock on installation of RetData inside method data
46384
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46304
diff changeset
    60
extern Monitor* CGCPhaseManager_lock;            // a lock to protect a concurrent GC's phase management
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
extern Monitor* VMOperationQueue_lock;           // a lock on queue of vm_operations waiting to execute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
extern Monitor* VMOperationRequest_lock;         // a lock on Threads waiting for a vm_operation to terminate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
extern Monitor* Threads_lock;                    // a lock on the Threads table of active Java threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
                                                 // (also used by Safepoints too to block threads creation/destruction)
51548
35a6956f4243 8209976: Improve iteration over non-JavaThreads
kbarrett
parents: 51520
diff changeset
    65
extern Mutex*   NonJavaThreadsList_lock;         // a lock on the NonJavaThreads list
54366
2b48cedce327 8220671: Initialization race for non-JavaThread PtrQueues
kbarrett
parents: 54301
diff changeset
    66
extern Mutex*   NonJavaThreadsListSync_lock;     // a lock for NonJavaThreads list synchronization
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
extern Monitor* CGC_lock;                        // used for coordination between
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                                 // fore- & background GC threads.
24094
5dbf1f44de18 8039147: Cleanup SuspendibleThreadSet
pliden
parents: 23472
diff changeset
    69
extern Monitor* STS_lock;                        // used for joining/leaving SuspendibleThreadSet.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
extern Monitor* FullGCCount_lock;                // in support of "concurrent" full gc
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    71
extern Monitor* DirtyCardQ_CBL_mon;              // Protects dirty card Q
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    72
                                                 // completed buffer queue.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    73
extern Mutex*   Shared_DirtyCardQ_lock;          // Lock protecting dirty card
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    74
                                                 // queue shared by
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    75
                                                 // non-Java threads.
41176
ff9f64534cff 8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents: 38309
diff changeset
    76
extern Mutex*   MarkStackFreeList_lock;          // Protects access to the global mark stack free list.
ff9f64534cff 8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents: 38309
diff changeset
    77
extern Mutex*   MarkStackChunkList_lock;         // Protects access to the global mark stack chunk list.
51625
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 51608
diff changeset
    78
extern Mutex*   MonitoringSupport_lock;          // Protects updates to the serviceability memory pools.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
extern Mutex*   ParGCRareEvent_lock;             // Synchronizes various (rare) parallel GC ops.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
extern Mutex*   Compile_lock;                    // a lock held when Compilation is updating code (used to block CodeCache traversal, CHA updates, etc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
extern Monitor* MethodCompileQueue_lock;         // a lock held when method compilations are enqueued, dequeued
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
extern Monitor* CompileThread_lock;              // a lock held by compile threads during compilation system initialization
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
    83
extern Monitor* Compilation_lock;                // a lock used to pause compilation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
extern Mutex*   CompileTaskAlloc_lock;           // a lock held when CompileTasks are allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
extern Mutex*   CompileStatistics_lock;          // a lock held when updating compilation statistics
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33097
diff changeset
    86
extern Mutex*   DirectivesStack_lock;            // a lock held when mutating the dirstack and ref counting directives
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
extern Mutex*   MultiArray_lock;                 // a lock used to guard allocation of multi-dim arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
extern Monitor* Terminator_lock;                 // a lock used to guard termination of the vm
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 54006
diff changeset
    89
extern Monitor* InitCompleted_lock;              // a lock used to signal threads waiting on init completed
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
extern Monitor* BeforeExit_lock;                 // a lock used to guard cleanups and shutdown hooks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
extern Monitor* Notify_lock;                     // a lock used to synchronize the start-up of the vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
extern Mutex*   ProfilePrint_lock;               // a lock used to serialize the printing of profiles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
extern Mutex*   ExceptionCache_lock;             // a lock used to synchronize exception cache updates
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52384
diff changeset
    94
extern Mutex*   NMethodSweeperStats_lock;        // a lock used to serialize access to sweeper statistics
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
extern Mutex*   FullGCALot_lock;                 // a lock to make FullGCALot MT safe
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 10565
diff changeset
    98
#endif // PRODUCT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
extern Mutex*   Debug1_lock;                     // A bunch of pre-allocated locks that can be used for tracing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
extern Mutex*   Debug2_lock;                     // down synchronization related bugs!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
extern Mutex*   Debug3_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
extern Mutex*   RawMonitor_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
extern Mutex*   PerfDataMemAlloc_lock;           // a lock on the allocator for PerfData memory for performance data
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
extern Mutex*   PerfDataManager_lock;            // a long on access to PerfDataManager resources
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
extern Mutex*   ParkerFreeList_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
extern Mutex*   OopMapCacheAlloc_lock;           // protects allocation of oop_map caches
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
7923
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7397
diff changeset
   109
extern Mutex*   FreeList_lock;                   // protects the free region list during safepoints
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7397
diff changeset
   110
extern Mutex*   OldSets_lock;                    // protects the old region sets
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 10565
diff changeset
   111
extern Monitor* RootRegionScan_lock;             // used to notify that the CM threads have finished scanning the IM snapshot regions
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
   112
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
extern Mutex*   Management_lock;                 // a lock used to serialize JVM management
8110
c992c8d52344 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 7923
diff changeset
   114
extern Monitor* Service_lock;                    // a lock used for service thread operation
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 17029
diff changeset
   115
extern Monitor* PeriodicTask_lock;               // protects the periodic task structure
38309
9b8e9c373740 8155951: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37179
diff changeset
   116
extern Monitor* RedefineClasses_lock;            // locks classes from parallel redefinition
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52384
diff changeset
   117
extern Monitor* ThreadsSMRDelete_lock;           // Used by ThreadsSMRSupport to take pressure off the Threads_lock
58340
f4abe950c3b0 8185005: Improve performance of ThreadMXBean.getThreadInfo(long ids[], int maxDepth)
dtitov
parents: 58291
diff changeset
   118
extern Mutex*   ThreadIdTableCreate_lock;        // Used by ThreadIdTable to lazily create the thread id table
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52384
diff changeset
   119
extern Mutex*   SharedDecoder_lock;              // serializes access to the decoder during normal (not error reporting) use
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52384
diff changeset
   120
extern Mutex*   DCmdFactory_lock;                // serialize access to DCmdFactory information
52581
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   121
#if INCLUDE_NMT
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   122
extern Mutex*   NMTQuery_lock;                   // serialize NMT Dcmd queries
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   123
#endif
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   124
#if INCLUDE_CDS
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   125
#if INCLUDE_JVMTI
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53775
diff changeset
   126
extern Mutex*   CDSClassFileStream_lock;         // FileMapInfo::open_stream_for_jvmti
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53775
diff changeset
   127
#endif
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   128
extern Mutex*   DumpTimeTable_lock;              // SystemDictionaryShared::find_or_allocate_info_for
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   129
#endif // INCLUDE_CDS
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49902
diff changeset
   130
#if INCLUDE_JFR
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 17029
diff changeset
   131
extern Mutex*   JfrStacktrace_lock;              // used to guard access to the JFR stacktrace table
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   132
extern Monitor* JfrMsg_lock;                     // protects JFR messaging
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   133
extern Mutex*   JfrBuffer_lock;                  // protects JFR buffer operations
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   134
extern Mutex*   JfrStream_lock;                  // protects JFR stream access
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52384
diff changeset
   135
extern Monitor* JfrThreadSampler_lock;           // used to suspend/resume JFR thread sampler
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 17029
diff changeset
   136
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
27874
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   138
#ifndef SUPPORTS_NATIVE_CX8
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   139
extern Mutex*   UnsafeJlong_lock;                // provides Unsafe atomic updates to jlongs on platforms that don't support cx8
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   140
#endif
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   141
49601
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48787
diff changeset
   142
extern Mutex*   MetaspaceExpand_lock;            // protects Metaspace virtualspace and chunk expansions
51608
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51548
diff changeset
   143
extern Mutex*   ClassLoaderDataGraph_lock;       // protects CLDG list, needed for concurrent unloading
49601
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48787
diff changeset
   144
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48787
diff changeset
   145
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   146
extern Mutex*   CodeHeapStateAnalytics_lock;     // lock print functions against concurrent analyze functions.
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49601
diff changeset
   147
                                                 // Only used locally in PrintCodeCacheLayout processing.
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49601
diff changeset
   148
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   149
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   150
extern Monitor* JVMCI_lock;                      // Monitor to control initialization of JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   151
#endif
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54645
diff changeset
   152
58291
a013100f7a35 8213150: Add verification for locking by VMThread
coleenp
parents: 58226
diff changeset
   153
extern Mutex* tty_lock;                          // lock to synchronize output.
a013100f7a35 8213150: Add verification for locking by VMThread
coleenp
parents: 58226
diff changeset
   154
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
// A MutexLocker provides mutual exclusion with respect to a given mutex
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// for the scope which contains the locker.  The lock is an OS lock, not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// an object lock, and the two do not interoperate.  Do not use Mutex-based
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
// locks to lock on Java objects, because they will not be respected if a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// that object is locked using the Java locking mechanism.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
//                NOTE WELL!!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
// See orderAccess.hpp.  We assume throughout the VM that MutexLocker's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
// and friends constructors do a fence, a lock and an acquire *in that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// order*.  And that their destructors do a release and unlock, in *that*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// order.  If their implementations change such that these assumptions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// are violated, a whole lot of code will break.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
// Print all mutexes/monitors that are currently owned by a thread; called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
// by fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
void print_owned_locks_on_error(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
char *lock_name(Mutex *mutex);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// for debugging: check that we're already owning this lock (or are at a safepoint)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
#ifdef ASSERT
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   177
void assert_locked_or_safepoint(const Mutex* lock);
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   178
void assert_locked_or_safepoint_weak(const Mutex* lock);
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   179
void assert_lock_strong(const Mutex* lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
#define assert_locked_or_safepoint(lock)
52140
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   182
#define assert_locked_or_safepoint_weak(lock)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
#define assert_lock_strong(lock)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   186
class MutexLocker: public StackObj {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   187
 protected:
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   188
  Mutex* _mutex;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
 public:
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   191
  MutexLocker(Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   192
    _mutex(mutex) {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   193
    bool no_safepoint_check = flag == Mutex::_no_safepoint_check_flag;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    if (_mutex != NULL) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   195
      assert(_mutex->rank() > Mutex::special || no_safepoint_check,
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   196
             "Mutexes with rank special or lower should not do safepoint checks");
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   197
      if (no_safepoint_check) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
        _mutex->lock_without_safepoint_check();
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   199
      } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        _mutex->lock();
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   201
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   205
  MutexLocker(Mutex* mutex, Thread* thread, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   206
    _mutex(mutex) {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   207
    bool no_safepoint_check = flag == Mutex::_no_safepoint_check_flag;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    if (_mutex != NULL) {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   209
      assert(_mutex->rank() > Mutex::special || no_safepoint_check,
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   210
             "Mutexes with rank special or lower should not do safepoint checks");
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   211
      if (no_safepoint_check) {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   212
        _mutex->lock_without_safepoint_check(thread);
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   213
      } else {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   214
        _mutex->lock(thread);
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   215
      }
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   216
    }
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   217
  }
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   218
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   219
  ~MutexLocker() {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   220
    if (_mutex != NULL) {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   221
      assert_lock_strong(_mutex);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
      _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   227
// A MonitorLocker is like a MutexLocker above, except it allows
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   228
// wait/notify as well which are delegated to the underlying Monitor.
54645
05aaccf7d558 8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents: 54623
diff changeset
   229
// It also disallows NULL.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   231
class MonitorLocker: public MutexLocker {
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   232
  Mutex::SafepointCheckFlag _flag;
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   233
  Monitor* _monitor;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
 public:
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   235
  MonitorLocker(Monitor* monitor, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   236
    MutexLocker(monitor, flag), _flag(flag), _monitor(monitor) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    // Superclass constructor did locking
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   238
    assert(_monitor != NULL, "NULL monitor not allowed");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   241
  MonitorLocker(Monitor* monitor, Thread* thread, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   242
    MutexLocker(monitor, thread, flag), _flag(flag), _monitor(monitor)  {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   243
    // Superclass constructor did locking
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   244
    assert(_monitor != NULL, "NULL monitor not allowed");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   247
  bool wait(long timeout = 0,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
            bool as_suspend_equivalent = !Mutex::_as_suspend_equivalent_flag) {
54645
05aaccf7d558 8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents: 54623
diff changeset
   249
    if (_flag == Mutex::_safepoint_check_flag) {
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   250
      return _monitor->wait(timeout, as_suspend_equivalent);
54645
05aaccf7d558 8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents: 54623
diff changeset
   251
    } else {
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   252
      return _monitor->wait_without_safepoint_check(timeout);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53404
diff changeset
   257
  void notify_all() {
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   258
    _monitor->notify_all();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
53646
043ae846819f 8210832: Remove sneaky locking in class Monitor
pchilanomate
parents: 53404
diff changeset
   261
  void notify() {
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   262
    _monitor->notify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
// A GCMutexLocker is usually initialized with a mutex that is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
// automatically acquired in order to do GC.  The function that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
// synchronizes using a GCMutexLocker may be called both during and between
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
// GC's.  Thus, it must acquire the mutex if GC is not in progress, but not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// if GC is in progress (since the mutex is already held on its behalf.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
class GCMutexLocker: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
private:
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   275
  Mutex* _mutex;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  bool _locked;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
public:
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   278
  GCMutexLocker(Mutex* mutex);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  ~GCMutexLocker() { if (_locked) _mutex->unlock(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
// A MutexUnlocker temporarily exits a previously
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
// entered mutex for the scope which contains the unlocker.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
class MutexUnlocker: StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
 private:
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   287
  Mutex* _mutex;
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   288
  bool _no_safepoint_check;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
 public:
57840
4863a802a7c1 8230003: Make Monitor inherit from Mutex
coleenp
parents: 57828
diff changeset
   291
  MutexUnlocker(Mutex* mutex, Mutex::SafepointCheckFlag flag = Mutex::_safepoint_check_flag) :
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   292
    _mutex(mutex),
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   293
    _no_safepoint_check(flag) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    _mutex->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  ~MutexUnlocker() {
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 54511
diff changeset
   298
    if (_no_safepoint_check) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
      _mutex->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
      _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52581
diff changeset
   306
#endif // SHARE_RUNTIME_MUTEXLOCKER_HPP