src/hotspot/share/runtime/mutexLocker.cpp
author kbarrett
Wed, 26 Jun 2019 13:18:38 -0400
changeset 55498 e64383344f14
parent 55479 80b27dc96ca3
child 55740 b3ff56f955c8
permissions -rw-r--r--
8225255: Make SATB qset lock-free Summary: Refactor PtrQueueSet, use lock-free stack for SATB completed buffers Reviewed-by: tschatzl, shade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53404
9ff1e6cacac3 8212826: Make PtrQueue free list lock-free
kbarrett
parents: 52925
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: 5403
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5403
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: 5403
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    25
#include "precompiled.hpp"
54786
ebf733a324d4 8223624: Cleanup includes of universe.hpp
stefank
parents: 54669
diff changeset
    26
#include "memory/universe.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    27
#include "runtime/mutexLocker.hpp"
25468
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 24839
diff changeset
    28
#include "runtime/os.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    29
#include "runtime/safepoint.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14390
diff changeset
    30
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6058
diff changeset
    31
#include "runtime/vmThread.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// Mutexes used in the VM (see comment in mutexLocker.hpp):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// Note that the following pointers are effectively final -- after having been
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// set at JVM startup-time, they should never be subsequently mutated.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Instead of using pointers to malloc()ed monitors and mutexes we should consider
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// eliminating the indirection and using instances instead.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Consider using GCC's __read_mostly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
Mutex*   Patching_lock                = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
Monitor* SystemDictionary_lock        = NULL;
53962
2653e078b057 8218266: G1 crash in AccessInternal::PostRuntimeDispatch
coleenp
parents: 53884
diff changeset
    43
Mutex*   ProtectionDomainSet_lock     = NULL;
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50113
diff changeset
    44
Mutex*   SharedDictionary_lock        = NULL;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36357
diff changeset
    45
Mutex*   Module_lock                  = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
Mutex*   CompiledIC_lock              = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
Mutex*   InlineCacheBuffer_lock       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
Mutex*   VMStatistic_lock             = NULL;
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47778
diff changeset
    49
Mutex*   JNIGlobalAlloc_lock          = NULL;
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47778
diff changeset
    50
Mutex*   JNIGlobalActive_lock         = NULL;
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47778
diff changeset
    51
Mutex*   JNIWeakAlloc_lock            = NULL;
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 47778
diff changeset
    52
Mutex*   JNIWeakActive_lock           = NULL;
50445
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50152
diff changeset
    53
Mutex*   StringTableWeakAlloc_lock    = NULL;
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50152
diff changeset
    54
Mutex*   StringTableWeakActive_lock   = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
Mutex*   JNIHandleBlockFreeList_lock  = NULL;
49738
a7bc87a63dd8 8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents: 49632
diff changeset
    56
Mutex*   VMWeakAlloc_lock             = NULL;
a7bc87a63dd8 8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents: 49632
diff changeset
    57
Mutex*   VMWeakActive_lock            = NULL;
54511
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 54366
diff changeset
    58
Mutex*   ResolvedMethodTableWeakAlloc_lock  = NULL;
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 54366
diff changeset
    59
Mutex*   ResolvedMethodTableWeakActive_lock = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
Mutex*   JmethodIdCreation_lock       = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
Mutex*   JfieldIdCreation_lock        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
Monitor* JNICritical_lock             = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
Mutex*   JvmtiThreadState_lock        = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    64
Monitor* Heap_lock                    = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
Mutex*   ExpandHeap_lock              = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
Mutex*   AdapterHandlerLibrary_lock   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
Mutex*   SignatureHandlerLibrary_lock = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
Mutex*   VtableStubs_lock             = NULL;
51520
ef7852ece52b 8209622: applications/kitchensink/Kitchensink.java failed with Kitchensink failed with exit code = 138
gziemski
parents: 51511
diff changeset
    69
Mutex*   SymbolArena_lock             = NULL;
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 20017
diff changeset
    70
Monitor* StringDedupQueue_lock        = NULL;
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 20017
diff changeset
    71
Mutex*   StringDedupTable_lock        = NULL;
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 25468
diff changeset
    72
Monitor* CodeCache_lock               = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
Mutex*   MethodData_lock              = NULL;
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31608
diff changeset
    74
Mutex*   TouchedMethodLog_lock        = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
Mutex*   RetData_lock                 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
Monitor* VMOperationQueue_lock        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
Monitor* VMOperationRequest_lock      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
Monitor* SerializePage_lock           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
Monitor* Threads_lock                 = NULL;
51548
35a6956f4243 8209976: Improve iteration over non-JavaThreads
kbarrett
parents: 51530
diff changeset
    80
Mutex*   NonJavaThreadsList_lock      = NULL;
54366
2b48cedce327 8220671: Initialization race for non-JavaThread PtrQueues
kbarrett
parents: 54301
diff changeset
    81
Mutex*   NonJavaThreadsListSync_lock  = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
Monitor* CGC_lock                     = NULL;
24094
5dbf1f44de18 8039147: Cleanup SuspendibleThreadSet
pliden
parents: 23472
diff changeset
    83
Monitor* STS_lock                     = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
Monitor* FullGCCount_lock             = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    85
Monitor* DirtyCardQ_CBL_mon           = NULL;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
    86
Mutex*   Shared_DirtyCardQ_lock       = NULL;
41176
ff9f64534cff 8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents: 39208
diff changeset
    87
Mutex*   MarkStackFreeList_lock       = NULL;
ff9f64534cff 8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents: 39208
diff changeset
    88
Mutex*   MarkStackChunkList_lock      = NULL;
51625
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 51608
diff changeset
    89
Mutex*   MonitoringSupport_lock       = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
Mutex*   ParGCRareEvent_lock          = NULL;
46384
dacebddcdea0 8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents: 46369
diff changeset
    91
Monitor* CGCPhaseManager_lock         = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
Mutex*   Compile_lock                 = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
Monitor* MethodCompileQueue_lock      = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
Monitor* CompileThread_lock           = NULL;
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
    95
Monitor* Compilation_lock             = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
Mutex*   CompileTaskAlloc_lock        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
Mutex*   CompileStatistics_lock       = NULL;
33451
0712796e4039 8137167: JEP165: Compiler Control: Implementation task
neliasso
parents: 33105
diff changeset
    98
Mutex*   DirectivesStack_lock         = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
Mutex*   MultiArray_lock              = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
Monitor* Terminator_lock              = NULL;
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 54006
diff changeset
   101
Monitor* InitCompleted_lock           = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
Monitor* BeforeExit_lock              = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
Monitor* Notify_lock                  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
Mutex*   ProfilePrint_lock            = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
Mutex*   ExceptionCache_lock          = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
Mutex*   OsrList_lock                 = NULL;
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   107
Mutex*   NMethodSweeperStats_lock     = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
Mutex*   FullGCALot_lock              = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
Mutex*   Debug1_lock                  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
Mutex*   Debug2_lock                  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
Mutex*   Debug3_lock                  = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
Mutex*   tty_lock                     = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
Mutex*   RawMonitor_lock              = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
Mutex*   PerfDataMemAlloc_lock        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
Mutex*   PerfDataManager_lock         = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
Mutex*   OopMapCacheAlloc_lock        = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
7923
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7397
diff changeset
   123
Mutex*   FreeList_lock                = NULL;
fc200fcd4e05 6977804: G1: remove the zero-filling thread
tonyp
parents: 7397
diff changeset
   124
Mutex*   OldSets_lock                 = NULL;
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 10565
diff changeset
   125
Monitor* RootRegionScan_lock          = NULL;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
   126
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
Monitor* GCTaskManager_lock           = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
Mutex*   Management_lock              = NULL;
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   130
Monitor* Service_lock                 = NULL;
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 18025
diff changeset
   131
Monitor* PeriodicTask_lock            = NULL;
38309
9b8e9c373740 8155951: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents: 37179
diff changeset
   132
Monitor* RedefineClasses_lock         = NULL;
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   133
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49982
diff changeset
   134
#if INCLUDE_JFR
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 18025
diff changeset
   135
Mutex*   JfrStacktrace_lock           = NULL;
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   136
Monitor* JfrMsg_lock                  = NULL;
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   137
Mutex*   JfrBuffer_lock               = NULL;
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 10565
diff changeset
   138
Mutex*   JfrStream_lock               = NULL;
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   139
Monitor* JfrThreadSampler_lock        = NULL;
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 18025
diff changeset
   140
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
27874
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   142
#ifndef SUPPORTS_NATIVE_CX8
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   143
Mutex*   UnsafeJlong_lock             = NULL;
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   144
#endif
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49601
diff changeset
   145
Monitor* CodeHeapStateAnalytics_lock  = NULL;
27874
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   146
49601
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48886
diff changeset
   147
Mutex*   MetaspaceExpand_lock         = NULL;
51608
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51548
diff changeset
   148
Mutex*   ClassLoaderDataGraph_lock    = NULL;
52581
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   149
Monitor* ThreadsSMRDelete_lock        = NULL;
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   150
Mutex*   SharedDecoder_lock           = NULL;
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   151
Mutex*   DCmdFactory_lock             = NULL;
52581
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   152
#if INCLUDE_NMT
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   153
Mutex*   NMTQuery_lock                = NULL;
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   154
#endif
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   155
#if INCLUDE_CDS
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   156
#if INCLUDE_JVMTI
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53775
diff changeset
   157
Mutex*   CDSClassFileStream_lock      = NULL;
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53775
diff changeset
   158
#endif
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   159
Mutex*   DumpTimeTable_lock           = NULL;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   160
#endif // INCLUDE_CDS
49601
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48886
diff changeset
   161
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   162
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   163
Monitor* JVMCI_lock                   = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   164
Mutex*   JVMCIGlobalAlloc_lock        = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   165
Mutex*   JVMCIGlobalActive_lock       = NULL;
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   166
#endif
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   167
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   168
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#define MAX_NUM_MUTEX 128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
static Monitor * _mutex_array[MAX_NUM_MUTEX];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
static int _num_mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
void assert_locked_or_safepoint(const Monitor * lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // check if this thread owns the lock (common case)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  if (IgnoreLockingAssertions) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  assert(lock != NULL, "Need non-NULL lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  if (lock->owned_by_self()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  if (SafepointSynchronize::is_at_safepoint()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (!Universe::is_fully_initialized()) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // see if invoker of VM operation owns it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  VM_Operation* op = VMThread::vm_operation();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  if (op != NULL && op->calling_thread() == lock->owner()) return;
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 33097
diff changeset
   184
  fatal("must own lock %s", lock->name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
52140
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   187
// a weaker assertion than the above
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   188
void assert_locked_or_safepoint_weak(const Monitor * lock) {
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   189
  if (IgnoreLockingAssertions) return;
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   190
  assert(lock != NULL, "Need non-NULL lock");
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   191
  if (lock->is_locked()) return;
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   192
  if (SafepointSynchronize::is_at_safepoint()) return;
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   193
  if (!Universe::is_fully_initialized()) return;
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   194
  fatal("must own lock %s", lock->name());
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   195
}
3a168f782e80 8210064: ZGC: Introduce ZConcurrentRootsIterator for scanning a subset of strong IN_NATIVE roots concurrently
eosterlund
parents: 52131
diff changeset
   196
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// a stronger assertion than the above
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
void assert_lock_strong(const Monitor * lock) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  if (IgnoreLockingAssertions) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  assert(lock != NULL, "Need non-NULL lock");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  if (lock->owned_by_self()) return;
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 33097
diff changeset
   202
  fatal("must own lock %s", lock->name());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   206
#define def(var, type, pri, vm_block, safepoint_check_allowed ) {      \
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   207
  var = new type(Mutex::pri, #var, vm_block, safepoint_check_allowed); \
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   208
  assert(_num_mutex < MAX_NUM_MUTEX, "increase MAX_NUM_MUTEX");        \
30108
fbe647bcbc25 8072128: mutexLocker.cpp _mutex_array[] initialization broken with safepoint check change
mockner
parents: 28831
diff changeset
   209
  _mutex_array[_num_mutex++] = var;                                      \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   212
// Using Padded subclasses to prevent false sharing of these global monitors and mutexes.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
void mutex_init() {
52913
bf2f2560dd53 8214315: G1: fatal error: acquiring lock SATB_Q_FL_lock/1 out of order with lock tty_lock/0
kbarrett
parents: 52857
diff changeset
   214
  def(tty_lock                     , PaddedMutex  , tty,         true,  Monitor::_safepoint_check_never);      // allow to lock in VM
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   216
  def(CGC_lock                     , PaddedMonitor, special,     true,  Monitor::_safepoint_check_never);      // coordinate between fore- and background GC
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   217
  def(STS_lock                     , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_never);
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   218
49818
e57e6addb978 8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents: 49738
diff changeset
   219
  def(VMWeakAlloc_lock             , PaddedMutex  , vmweak,      true,  Monitor::_safepoint_check_never);
e57e6addb978 8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents: 49738
diff changeset
   220
  def(VMWeakActive_lock            , PaddedMutex  , vmweak-1,    true,  Monitor::_safepoint_check_never);
e57e6addb978 8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents: 49738
diff changeset
   221
50445
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50152
diff changeset
   222
  def(StringTableWeakAlloc_lock    , PaddedMutex  , vmweak,      true,  Monitor::_safepoint_check_never);
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50152
diff changeset
   223
  def(StringTableWeakActive_lock   , PaddedMutex  , vmweak-1,    true,  Monitor::_safepoint_check_never);
bd6b78feb6a3 8195097: Make it possible to process StringTable outside safepoint
rehn
parents: 50152
diff changeset
   224
54511
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 54366
diff changeset
   225
  def(ResolvedMethodTableWeakAlloc_lock    , PaddedMutex  , vmweak,      true,  Monitor::_safepoint_check_never);
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 54366
diff changeset
   226
  def(ResolvedMethodTableWeakActive_lock   , PaddedMutex  , vmweak-1,    true,  Monitor::_safepoint_check_never);
fbfcebad8e66 8221393: ResolvedMethodTable too small for StackWalking applications
stefank
parents: 54366
diff changeset
   227
54645
05aaccf7d558 8222988: Use MonitorLocker rather than MutexLocker when wait/notify used
coleenp
parents: 54511
diff changeset
   228
  def(FullGCCount_lock             , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_never);      // in support of ExplicitGCInvokesConcurrent
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
   229
  if (UseG1GC) {
46685
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 46505
diff changeset
   230
    def(DirtyCardQ_CBL_mon         , PaddedMonitor, access,      true,  Monitor::_safepoint_check_never);
b218dfc2853a 8182703: Correct G1 barrier queue lock orderings
eosterlund
parents: 46505
diff changeset
   231
    def(Shared_DirtyCardQ_lock     , PaddedMutex  , access + 1,  true,  Monitor::_safepoint_check_never);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
   232
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   233
    def(FreeList_lock              , PaddedMutex  , leaf     ,   true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   234
    def(OldSets_lock               , PaddedMutex  , leaf     ,   true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   235
    def(RootRegionScan_lock        , PaddedMonitor, leaf     ,   true,  Monitor::_safepoint_check_never);
23472
35e93890ed88 8029075: String deduplication in G1
pliden
parents: 20017
diff changeset
   236
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   237
    def(StringDedupQueue_lock      , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   238
    def(StringDedupTable_lock      , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
41176
ff9f64534cff 8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents: 39208
diff changeset
   239
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   240
    def(MarkStackFreeList_lock     , PaddedMutex  , leaf     ,   true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   241
    def(MarkStackChunkList_lock    , PaddedMutex  , leaf     ,   true,  Monitor::_safepoint_check_never);
51625
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 51608
diff changeset
   242
c265860d5d45 8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents: 51608
diff changeset
   243
    def(MonitoringSupport_lock     , PaddedMutex  , native   ,   true,  Monitor::_safepoint_check_never);      // used for serviceability monitoring support
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 228
diff changeset
   244
  }
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52913
diff changeset
   245
  if (UseShenandoahGC) {
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52913
diff changeset
   246
    def(StringDedupQueue_lock      , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_never);
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52913
diff changeset
   247
    def(StringDedupTable_lock      , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52913
diff changeset
   248
  }
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   249
  def(ParGCRareEvent_lock          , PaddedMutex  , leaf     ,   true,  Monitor::_safepoint_check_always);
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   250
  def(CGCPhaseManager_lock         , PaddedMonitor, leaf,        false, Monitor::_safepoint_check_always);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   251
  def(CodeCache_lock               , PaddedMutex  , special,     true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   252
  def(RawMonitor_lock              , PaddedMutex  , special,     true,  Monitor::_safepoint_check_never);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   253
  def(OopMapCacheAlloc_lock        , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_always); // used for oop_map_cache allocation.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
49601
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48886
diff changeset
   255
  def(MetaspaceExpand_lock         , PaddedMutex  , leaf-1,      true,  Monitor::_safepoint_check_never);
51608
625a5bdde0c5 8210155: Lock ClassLoaderDataGraph
coleenp
parents: 51548
diff changeset
   256
  def(ClassLoaderDataGraph_lock    , PaddedMutex  , nonleaf,     true,  Monitor::_safepoint_check_always);
49601
bfc70d5d291a 8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents: 48886
diff changeset
   257
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   258
  def(Patching_lock                , PaddedMutex  , special,     true,  Monitor::_safepoint_check_never);      // used for safepointing and code patching.
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   259
  def(Service_lock                 , PaddedMonitor, special,     true,  Monitor::_safepoint_check_never);      // used for service thread operations
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   260
  def(JmethodIdCreation_lock       , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_always); // used for creating jmethodIDs.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   262
  def(SystemDictionary_lock        , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_always);
53962
2653e078b057 8218266: G1 crash in AccessInternal::PostRuntimeDispatch
coleenp
parents: 53884
diff changeset
   263
  def(ProtectionDomainSet_lock     , PaddedMutex  , leaf-1,      true,  Monitor::_safepoint_check_never);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   264
  def(SharedDictionary_lock        , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_always);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   265
  def(Module_lock                  , PaddedMutex  , leaf+2,      true,  Monitor::_safepoint_check_always);
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52581
diff changeset
   266
  def(InlineCacheBuffer_lock       , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   267
  def(VMStatistic_lock             , PaddedMutex  , leaf,        false, Monitor::_safepoint_check_always);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   268
  def(ExpandHeap_lock              , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_always); // Used during compilation by VM thread
51530
1f0b605bdc28 8209821: Make JVMTI GetClassLoaderClasses not walk CLDG
coleenp
parents: 51520
diff changeset
   269
  def(JNIHandleBlockFreeList_lock  , PaddedMutex  , leaf-1,      true,  Monitor::_safepoint_check_never);      // handles are used by VM thread
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   270
  def(SignatureHandlerLibrary_lock , PaddedMutex  , leaf,        false, Monitor::_safepoint_check_always);
51520
ef7852ece52b 8209622: applications/kitchensink/Kitchensink.java failed with Kitchensink failed with exit code = 138
gziemski
parents: 51511
diff changeset
   271
  def(SymbolArena_lock             , PaddedMutex  , leaf+2,      true,  Monitor::_safepoint_check_never);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   272
  def(ProfilePrint_lock            , PaddedMutex  , leaf,        false, Monitor::_safepoint_check_always); // serial profile printing
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   273
  def(ExceptionCache_lock          , PaddedMutex  , leaf,        false, Monitor::_safepoint_check_always); // serial profile printing
55479
80b27dc96ca3 8226699: [BACKOUT] JDK-8221734 Deoptimize with handshakes
dcubed
parents: 55005
diff changeset
   274
  def(OsrList_lock                 , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   275
  def(Debug1_lock                  , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
#ifndef PRODUCT
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   277
  def(FullGCALot_lock              , PaddedMutex  , leaf,        false, Monitor::_safepoint_check_always); // a lock to make FullGCALot MT safe
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
#endif
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   279
  def(BeforeExit_lock              , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_always);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   280
  def(PerfDataMemAlloc_lock        , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_always); // used for allocating PerfData memory for performance data
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   281
  def(PerfDataManager_lock         , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_always); // used for synchronized access to PerfDataManager resources
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // CMS_modUnionTable_lock                   leaf
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   284
  // CMS_bitMap_lock                          leaf 1
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   285
  // CMS_freeList_lock                        leaf 2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   287
  def(Threads_lock                 , PaddedMonitor, barrier,     true,  Monitor::_safepoint_check_sometimes);  // Used for safepoint protocol.
51548
35a6956f4243 8209976: Improve iteration over non-JavaThreads
kbarrett
parents: 51530
diff changeset
   288
  def(NonJavaThreadsList_lock      , PaddedMutex,   leaf,        true,  Monitor::_safepoint_check_never);
54366
2b48cedce327 8220671: Initialization race for non-JavaThread PtrQueues
kbarrett
parents: 54301
diff changeset
   289
  def(NonJavaThreadsListSync_lock  , PaddedMutex,   leaf,        true,  Monitor::_safepoint_check_never);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   291
  def(VMOperationQueue_lock        , PaddedMonitor, nonleaf,     true,  Monitor::_safepoint_check_never);  // VM_thread allowed to block on these
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   292
  def(VMOperationRequest_lock      , PaddedMonitor, nonleaf,     true,  Monitor::_safepoint_check_always);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   293
  def(RetData_lock                 , PaddedMutex  , nonleaf,     false, Monitor::_safepoint_check_always);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   294
  def(Terminator_lock              , PaddedMonitor, nonleaf,     true,  Monitor::_safepoint_check_always);
54301
2f522c487791 8221392: Reduce ConcurrentGCThreads spinning during start up
pliden
parents: 54006
diff changeset
   295
  def(InitCompleted_lock           , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_never);
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52581
diff changeset
   296
  def(VtableStubs_lock             , PaddedMutex  , nonleaf,     true,  Monitor::_safepoint_check_never);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   297
  def(Notify_lock                  , PaddedMonitor, nonleaf,     true,  Monitor::_safepoint_check_always);
48886
e1d09bd56d2d 8196083: Avoid locking in OopStorage::release
kbarrett
parents: 48812
diff changeset
   298
  def(JNIGlobalAlloc_lock          , PaddedMutex  , nonleaf,     true,  Monitor::_safepoint_check_never);
e1d09bd56d2d 8196083: Avoid locking in OopStorage::release
kbarrett
parents: 48812
diff changeset
   299
  def(JNIGlobalActive_lock         , PaddedMutex  , nonleaf-1,   true,  Monitor::_safepoint_check_never);
e1d09bd56d2d 8196083: Avoid locking in OopStorage::release
kbarrett
parents: 48812
diff changeset
   300
  def(JNIWeakAlloc_lock            , PaddedMutex  , nonleaf,     true,  Monitor::_safepoint_check_never);
e1d09bd56d2d 8196083: Avoid locking in OopStorage::release
kbarrett
parents: 48812
diff changeset
   301
  def(JNIWeakActive_lock           , PaddedMutex  , nonleaf-1,   true,  Monitor::_safepoint_check_never);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   302
  def(JNICritical_lock             , PaddedMonitor, nonleaf,     true,  Monitor::_safepoint_check_always); // used for JNI critical regions
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   303
  def(AdapterHandlerLibrary_lock   , PaddedMutex  , nonleaf,     true,  Monitor::_safepoint_check_always);
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   304
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   305
  def(Heap_lock                    , PaddedMonitor, nonleaf+1,   false, Monitor::_safepoint_check_sometimes);  // Doesn't safepoint check during termination.
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   306
  def(JfieldIdCreation_lock        , PaddedMutex  , nonleaf+1,   true,  Monitor::_safepoint_check_always); // jfieldID, Used in VM_Operation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
52857
7e268f863ff0 8214338: Move IC stub refilling out of IC cache transitions
eosterlund
parents: 52581
diff changeset
   308
  def(CompiledIC_lock              , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_never);      // locks VtableStubs_lock, InlineCacheBuffer_lock
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   309
  def(CompileTaskAlloc_lock        , PaddedMutex  , nonleaf+2,   true,  Monitor::_safepoint_check_always);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   310
  def(CompileStatistics_lock       , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   311
  def(DirectivesStack_lock         , PaddedMutex  , special,     true,  Monitor::_safepoint_check_never);
51520
ef7852ece52b 8209622: applications/kitchensink/Kitchensink.java failed with Kitchensink failed with exit code = 138
gziemski
parents: 51511
diff changeset
   312
  def(MultiArray_lock              , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   314
  def(JvmtiThreadState_lock        , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_always); // Used by JvmtiThreadState/JvmtiEventController
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   315
  def(Management_lock              , PaddedMutex  , nonleaf+2,   false, Monitor::_safepoint_check_always); // used for JVM management
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
53469
1d953ae4d39f 8216136: Take Compile_lock for SystemDictionary::_modification_counter with safepoint check
coleenp
parents: 53404
diff changeset
   317
  def(Compile_lock                 , PaddedMutex  , nonleaf+3,   true,  Monitor::_safepoint_check_always);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   318
  def(MethodData_lock              , PaddedMutex  , nonleaf+3,   false, Monitor::_safepoint_check_always);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   319
  def(TouchedMethodLog_lock        , PaddedMutex  , nonleaf+3,   false, Monitor::_safepoint_check_always);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   321
  def(MethodCompileQueue_lock      , PaddedMonitor, nonleaf+4,   true,  Monitor::_safepoint_check_always);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   322
  def(Debug2_lock                  , PaddedMutex  , nonleaf+4,   true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   323
  def(Debug3_lock                  , PaddedMutex  , nonleaf+4,   true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   324
  def(CompileThread_lock           , PaddedMonitor, nonleaf+5,   false, Monitor::_safepoint_check_always);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   325
  def(PeriodicTask_lock            , PaddedMonitor, nonleaf+5,   true,  Monitor::_safepoint_check_always);
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   326
  def(RedefineClasses_lock         , PaddedMonitor, nonleaf+5,   true,  Monitor::_safepoint_check_always);
50578
e2a7f431f65c 8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents: 50445
diff changeset
   327
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   328
  if (WhiteBoxAPI) {
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   329
    def(Compilation_lock           , PaddedMonitor, leaf,        false, Monitor::_safepoint_check_never);
27642
8c9eff693145 8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents: 27420
diff changeset
   330
  }
28163
322d55d167be 8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents: 27874
diff changeset
   331
50113
caf115bb98ad 8199712: Flight Recorder
egahlin
parents: 49982
diff changeset
   332
#if INCLUDE_JFR
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   333
  def(JfrMsg_lock                  , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_always);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   334
  def(JfrBuffer_lock               , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   335
  def(JfrStream_lock               , PaddedMutex  , leaf+1,      true,  Monitor::_safepoint_check_never);      // ensure to rank lower than 'safepoint'
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   336
  def(JfrStacktrace_lock           , PaddedMutex  , special,     true,  Monitor::_safepoint_check_never);
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   337
  def(JfrThreadSampler_lock        , PaddedMonitor, leaf,        true,  Monitor::_safepoint_check_never);
19542
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 18025
diff changeset
   338
#endif
e55d447cc2a1 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 18025
diff changeset
   339
27874
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   340
#ifndef SUPPORTS_NATIVE_CX8
41710
b830f5141dbb 8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents: 41176
diff changeset
   341
  def(UnsafeJlong_lock             , PaddedMutex  , special,     false, Monitor::_safepoint_check_never);
27874
e9b44eb1613f 8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents: 27645
diff changeset
   342
#endif
49611
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49601
diff changeset
   343
973c9504178e 8198691: CodeHeap State Analytics
lucy
parents: 49601
diff changeset
   344
  def(CodeHeapStateAnalytics_lock  , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
54663
f03d5a093093 8074355: make MutexLocker smarter about non-JavaThreads
coleenp
parents: 54645
diff changeset
   345
  def(NMethodSweeperStats_lock     , PaddedMutex  , special,     true,  Monitor::_safepoint_check_never);
52448
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   346
  def(ThreadsSMRDelete_lock        , PaddedMonitor, special,     false, Monitor::_safepoint_check_never);
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   347
  def(SharedDecoder_lock           , PaddedMutex  , native,      false, Monitor::_safepoint_check_never);
bc5c7f63dbae 8213137: Remove static initialization of monitor/mutex instances
dholmes
parents: 52140
diff changeset
   348
  def(DCmdFactory_lock             , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
52581
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   349
#if INCLUDE_NMT
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   350
  def(NMTQuery_lock                , PaddedMutex  , max_nonleaf, false, Monitor::_safepoint_check_always);
d402a406bbc3 8213723: More Monitor/mutex initialization management
dholmes
parents: 52448
diff changeset
   351
#endif
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   352
#if INCLUDE_CDS
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   353
#if INCLUDE_JVMTI
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53775
diff changeset
   354
  def(CDSClassFileStream_lock      , PaddedMutex  , max_nonleaf, false, Monitor::_safepoint_check_always);
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53775
diff changeset
   355
#endif
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   356
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   357
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   358
  def(JVMCI_lock                   , PaddedMonitor, nonleaf+2,   true,  Monitor::_safepoint_check_always);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   359
  def(JVMCIGlobalAlloc_lock        , PaddedMutex  , nonleaf,     true,  Monitor::_safepoint_check_never);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   360
  def(JVMCIGlobalActive_lock       , PaddedMutex  , nonleaf-1,   true,  Monitor::_safepoint_check_never);
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54663
diff changeset
   361
#endif
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   362
  def(DumpTimeTable_lock           , PaddedMutex  , leaf,        true,  Monitor::_safepoint_check_never);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54916
diff changeset
   363
#endif // INCLUDE_CDS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
GCMutexLocker::GCMutexLocker(Monitor * mutex) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  if (SafepointSynchronize::is_at_safepoint()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
    _locked = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    _mutex = mutex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    _locked = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    _mutex->lock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
// Print all mutexes/monitors that are currently owned by a thread; called
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
// by fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
void print_owned_locks_on_error(outputStream* st) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  st->print("VM Mutex/Monitor currently owned by a thread: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  bool none = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  for (int i = 0; i < _num_mutex; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
     // see if it has an owner
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
     if (_mutex_array[i]->owner() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
       if (none) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
          // print format used by Mutex::print_on_error()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
          st->print_cr(" ([mutex/lock_event])");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
          none = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
       _mutex_array[i]->print_on_error(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
       st->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  if (none) st->print_cr("None");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
}