author | rkennke |
Wed, 03 Oct 2018 15:22:16 +0200 | |
changeset 52070 | e4d72440d60e |
parent 51625 | c265860d5d45 |
child 52131 | e9727e6b5fc1 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48787
7638bf98a312
8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents:
47778
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "runtime/mutexLocker.hpp" |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
24839
diff
changeset
|
27 |
#include "runtime/os.inline.hpp" |
7397 | 28 |
#include "runtime/safepoint.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14390
diff
changeset
|
29 |
#include "runtime/thread.inline.hpp" |
7397 | 30 |
#include "runtime/vmThread.hpp" |
1 | 31 |
|
32 |
// Mutexes used in the VM (see comment in mutexLocker.hpp): |
|
33 |
// |
|
34 |
// Note that the following pointers are effectively final -- after having been |
|
35 |
// set at JVM startup-time, they should never be subsequently mutated. |
|
36 |
// Instead of using pointers to malloc()ed monitors and mutexes we should consider |
|
37 |
// eliminating the indirection and using instances instead. |
|
38 |
// Consider using GCC's __read_mostly. |
|
39 |
||
40 |
Mutex* Patching_lock = NULL; |
|
41 |
Monitor* SystemDictionary_lock = NULL; |
|
50152
b5023063346d
8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents:
50113
diff
changeset
|
42 |
Mutex* SharedDictionary_lock = NULL; |
36508 | 43 |
Mutex* Module_lock = NULL; |
1 | 44 |
Mutex* CompiledIC_lock = NULL; |
45 |
Mutex* InlineCacheBuffer_lock = NULL; |
|
46 |
Mutex* VMStatistic_lock = NULL; |
|
48787
7638bf98a312
8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents:
47778
diff
changeset
|
47 |
Mutex* JNIGlobalAlloc_lock = NULL; |
7638bf98a312
8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents:
47778
diff
changeset
|
48 |
Mutex* JNIGlobalActive_lock = NULL; |
7638bf98a312
8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents:
47778
diff
changeset
|
49 |
Mutex* JNIWeakAlloc_lock = NULL; |
7638bf98a312
8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents:
47778
diff
changeset
|
50 |
Mutex* JNIWeakActive_lock = NULL; |
50445
bd6b78feb6a3
8195097: Make it possible to process StringTable outside safepoint
rehn
parents:
50152
diff
changeset
|
51 |
Mutex* StringTableWeakAlloc_lock = NULL; |
bd6b78feb6a3
8195097: Make it possible to process StringTable outside safepoint
rehn
parents:
50152
diff
changeset
|
52 |
Mutex* StringTableWeakActive_lock = NULL; |
1 | 53 |
Mutex* JNIHandleBlockFreeList_lock = NULL; |
49738
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49632
diff
changeset
|
54 |
Mutex* VMWeakAlloc_lock = NULL; |
a7bc87a63dd8
8198313: Wrap holder object for ClassLoaderData in a WeakHandle
coleenp
parents:
49632
diff
changeset
|
55 |
Mutex* VMWeakActive_lock = NULL; |
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46384
diff
changeset
|
56 |
Mutex* ResolvedMethodTable_lock = NULL; |
1 | 57 |
Mutex* JmethodIdCreation_lock = NULL; |
58 |
Mutex* JfieldIdCreation_lock = NULL; |
|
59 |
Monitor* JNICritical_lock = NULL; |
|
60 |
Mutex* JvmtiThreadState_lock = NULL; |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
61 |
Monitor* Heap_lock = NULL; |
1 | 62 |
Mutex* ExpandHeap_lock = NULL; |
63 |
Mutex* AdapterHandlerLibrary_lock = NULL; |
|
64 |
Mutex* SignatureHandlerLibrary_lock = NULL; |
|
65 |
Mutex* VtableStubs_lock = NULL; |
|
51520
ef7852ece52b
8209622: applications/kitchensink/Kitchensink.java failed with Kitchensink failed with exit code = 138
gziemski
parents:
51511
diff
changeset
|
66 |
Mutex* SymbolArena_lock = NULL; |
1 | 67 |
Mutex* StringTable_lock = NULL; |
23472 | 68 |
Monitor* StringDedupQueue_lock = NULL; |
69 |
Mutex* StringDedupTable_lock = NULL; |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
25468
diff
changeset
|
70 |
Monitor* CodeCache_lock = NULL; |
1 | 71 |
Mutex* MethodData_lock = NULL; |
31790 | 72 |
Mutex* TouchedMethodLog_lock = NULL; |
1 | 73 |
Mutex* RetData_lock = NULL; |
74 |
Monitor* VMOperationQueue_lock = NULL; |
|
75 |
Monitor* VMOperationRequest_lock = NULL; |
|
76 |
Monitor* Safepoint_lock = NULL; |
|
77 |
Monitor* SerializePage_lock = NULL; |
|
78 |
Monitor* Threads_lock = NULL; |
|
51548 | 79 |
Mutex* NonJavaThreadsList_lock = NULL; |
1 | 80 |
Monitor* CGC_lock = NULL; |
24094 | 81 |
Monitor* STS_lock = NULL; |
1 | 82 |
Monitor* FullGCCount_lock = NULL; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
83 |
Mutex* SATB_Q_FL_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
84 |
Monitor* SATB_Q_CBL_mon = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
85 |
Mutex* Shared_SATB_Q_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
86 |
Mutex* DirtyCardQ_FL_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
87 |
Monitor* DirtyCardQ_CBL_mon = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
88 |
Mutex* Shared_DirtyCardQ_lock = NULL; |
41176
ff9f64534cff
8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents:
39208
diff
changeset
|
89 |
Mutex* MarkStackFreeList_lock = NULL; |
ff9f64534cff
8159422: Very high Concurrent Mark mark stack contention
tschatzl
parents:
39208
diff
changeset
|
90 |
Mutex* MarkStackChunkList_lock = NULL; |
51625
c265860d5d45
8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents:
51608
diff
changeset
|
91 |
Mutex* MonitoringSupport_lock = NULL; |
1 | 92 |
Mutex* ParGCRareEvent_lock = NULL; |
93 |
Mutex* DerivedPointerTableGC_lock = NULL; |
|
46384
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46369
diff
changeset
|
94 |
Monitor* CGCPhaseManager_lock = NULL; |
1 | 95 |
Mutex* Compile_lock = NULL; |
96 |
Monitor* MethodCompileQueue_lock = NULL; |
|
97 |
Monitor* CompileThread_lock = NULL; |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
98 |
Monitor* Compilation_lock = NULL; |
1 | 99 |
Mutex* CompileTaskAlloc_lock = NULL; |
100 |
Mutex* CompileStatistics_lock = NULL; |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33105
diff
changeset
|
101 |
Mutex* DirectivesStack_lock = NULL; |
1 | 102 |
Mutex* MultiArray_lock = NULL; |
103 |
Monitor* Terminator_lock = NULL; |
|
104 |
Monitor* BeforeExit_lock = NULL; |
|
105 |
Monitor* Notify_lock = NULL; |
|
106 |
Mutex* ProfilePrint_lock = NULL; |
|
107 |
Mutex* ExceptionCache_lock = NULL; |
|
108 |
Mutex* OsrList_lock = NULL; |
|
31608 | 109 |
|
1 | 110 |
#ifndef PRODUCT |
111 |
Mutex* FullGCALot_lock = NULL; |
|
112 |
#endif |
|
113 |
||
114 |
Mutex* Debug1_lock = NULL; |
|
115 |
Mutex* Debug2_lock = NULL; |
|
116 |
Mutex* Debug3_lock = NULL; |
|
117 |
||
118 |
Mutex* tty_lock = NULL; |
|
119 |
||
120 |
Mutex* RawMonitor_lock = NULL; |
|
121 |
Mutex* PerfDataMemAlloc_lock = NULL; |
|
122 |
Mutex* PerfDataManager_lock = NULL; |
|
123 |
Mutex* OopMapCacheAlloc_lock = NULL; |
|
124 |
||
7923 | 125 |
Mutex* FreeList_lock = NULL; |
126 |
Mutex* OldSets_lock = NULL; |
|
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
10565
diff
changeset
|
127 |
Monitor* RootRegionScan_lock = NULL; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
128 |
|
1 | 129 |
Monitor* GCTaskManager_lock = NULL; |
130 |
||
131 |
Mutex* Management_lock = NULL; |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
132 |
Monitor* Service_lock = NULL; |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
133 |
Monitor* PeriodicTask_lock = NULL; |
38309
9b8e9c373740
8155951: VM crash in nsk/jvmti/RedefineClasses/StressRedefine: assert failed: Corrupted constant pool
coleenp
parents:
37179
diff
changeset
|
134 |
Monitor* RedefineClasses_lock = NULL; |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
135 |
|
50578
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50445
diff
changeset
|
136 |
Mutex* ThreadHeapSampler_lock = NULL; |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50445
diff
changeset
|
137 |
|
50113 | 138 |
#if INCLUDE_JFR |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
139 |
Mutex* JfrStacktrace_lock = NULL; |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
140 |
Monitor* JfrMsg_lock = NULL; |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
141 |
Mutex* JfrBuffer_lock = NULL; |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
142 |
Mutex* JfrStream_lock = NULL; |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
143 |
#endif |
1 | 144 |
|
27874
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
145 |
#ifndef SUPPORTS_NATIVE_CX8 |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
146 |
Mutex* UnsafeJlong_lock = NULL; |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
147 |
#endif |
49611 | 148 |
Monitor* CodeHeapStateAnalytics_lock = NULL; |
27874
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
149 |
|
49601
bfc70d5d291a
8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents:
48886
diff
changeset
|
150 |
Mutex* MetaspaceExpand_lock = NULL; |
51608 | 151 |
Mutex* ClassLoaderDataGraph_lock = NULL; |
49601
bfc70d5d291a
8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents:
48886
diff
changeset
|
152 |
|
1 | 153 |
#define MAX_NUM_MUTEX 128 |
154 |
static Monitor * _mutex_array[MAX_NUM_MUTEX]; |
|
155 |
static int _num_mutex; |
|
156 |
||
157 |
#ifdef ASSERT |
|
158 |
void assert_locked_or_safepoint(const Monitor * lock) { |
|
159 |
// check if this thread owns the lock (common case) |
|
160 |
if (IgnoreLockingAssertions) return; |
|
161 |
assert(lock != NULL, "Need non-NULL lock"); |
|
162 |
if (lock->owned_by_self()) return; |
|
163 |
if (SafepointSynchronize::is_at_safepoint()) return; |
|
164 |
if (!Universe::is_fully_initialized()) return; |
|
165 |
// see if invoker of VM operation owns it |
|
166 |
VM_Operation* op = VMThread::vm_operation(); |
|
167 |
if (op != NULL && op->calling_thread() == lock->owner()) return; |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
33097
diff
changeset
|
168 |
fatal("must own lock %s", lock->name()); |
1 | 169 |
} |
170 |
||
171 |
// a stronger assertion than the above |
|
172 |
void assert_lock_strong(const Monitor * lock) { |
|
173 |
if (IgnoreLockingAssertions) return; |
|
174 |
assert(lock != NULL, "Need non-NULL lock"); |
|
175 |
if (lock->owned_by_self()) return; |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
33097
diff
changeset
|
176 |
fatal("must own lock %s", lock->name()); |
1 | 177 |
} |
178 |
#endif |
|
179 |
||
28163
322d55d167be
8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents:
27874
diff
changeset
|
180 |
#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
|
181 |
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
|
182 |
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
|
183 |
_mutex_array[_num_mutex++] = var; \ |
1 | 184 |
} |
185 |
||
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
186 |
// Using Padded subclasses to prevent false sharing of these global monitors and mutexes. |
1 | 187 |
void mutex_init() { |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
188 |
def(tty_lock , PaddedMutex , event, true, Monitor::_safepoint_check_never); // allow to lock in VM |
1 | 189 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
190 |
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
|
191 |
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
|
192 |
|
49818
e57e6addb978
8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents:
49738
diff
changeset
|
193 |
def(VMWeakAlloc_lock , PaddedMutex , vmweak, true, Monitor::_safepoint_check_never); |
e57e6addb978
8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents:
49738
diff
changeset
|
194 |
def(VMWeakActive_lock , PaddedMutex , vmweak-1, true, Monitor::_safepoint_check_never); |
e57e6addb978
8201505: Use WeakHandle for ProtectionDomainCacheTable and ResolvedMethodTable
coleenp
parents:
49738
diff
changeset
|
195 |
|
50445
bd6b78feb6a3
8195097: Make it possible to process StringTable outside safepoint
rehn
parents:
50152
diff
changeset
|
196 |
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
|
197 |
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
|
198 |
|
6058
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5707
diff
changeset
|
199 |
if (UseConcMarkSweepGC || UseG1GC) { |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
200 |
def(FullGCCount_lock , PaddedMonitor, leaf, true, Monitor::_safepoint_check_never); // in support of ExplicitGCInvokesConcurrent |
1 | 201 |
} |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
202 |
if (UseG1GC) { |
46685
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46505
diff
changeset
|
203 |
def(SATB_Q_FL_lock , PaddedMutex , access, true, Monitor::_safepoint_check_never); |
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46505
diff
changeset
|
204 |
def(SATB_Q_CBL_mon , PaddedMonitor, access, true, Monitor::_safepoint_check_never); |
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46505
diff
changeset
|
205 |
def(Shared_SATB_Q_lock , PaddedMutex , access + 1, true, Monitor::_safepoint_check_never); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
206 |
|
46685
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46505
diff
changeset
|
207 |
def(DirtyCardQ_FL_lock , PaddedMutex , access, true, Monitor::_safepoint_check_never); |
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46505
diff
changeset
|
208 |
def(DirtyCardQ_CBL_mon , PaddedMonitor, access, true, Monitor::_safepoint_check_never); |
b218dfc2853a
8182703: Correct G1 barrier queue lock orderings
eosterlund
parents:
46505
diff
changeset
|
209 |
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
|
210 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
211 |
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
|
212 |
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
|
213 |
def(RootRegionScan_lock , PaddedMonitor, leaf , true, Monitor::_safepoint_check_never); |
23472 | 214 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
215 |
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
|
216 |
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
|
217 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
218 |
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
|
219 |
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
|
220 |
|
c265860d5d45
8207200: Committed > max memory usage when getting MemoryUsage
tschatzl
parents:
51608
diff
changeset
|
221 |
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
|
222 |
} |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
223 |
def(ParGCRareEvent_lock , PaddedMutex , leaf , true, Monitor::_safepoint_check_sometimes); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
224 |
def(DerivedPointerTableGC_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_never); |
46384
dacebddcdea0
8169517: WhiteBox should provide concurrent GC phase control
kbarrett
parents:
46369
diff
changeset
|
225 |
def(CGCPhaseManager_lock , PaddedMonitor, leaf, false, Monitor::_safepoint_check_sometimes); |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
226 |
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
|
227 |
def(RawMonitor_lock , PaddedMutex , special, true, Monitor::_safepoint_check_never); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
228 |
def(OopMapCacheAlloc_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_always); // used for oop_map_cache allocation. |
1 | 229 |
|
49601
bfc70d5d291a
8198760: Move global lock SpaceManager::_expand_lock to MutexLocker.cpp
coleenp
parents:
48886
diff
changeset
|
230 |
def(MetaspaceExpand_lock , PaddedMutex , leaf-1, true, Monitor::_safepoint_check_never); |
51608 | 231 |
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
|
232 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
233 |
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
|
234 |
def(Service_lock , PaddedMonitor, special, true, Monitor::_safepoint_check_never); // used for service thread operations |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
235 |
def(JmethodIdCreation_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_always); // used for creating jmethodIDs. |
1 | 236 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
237 |
def(SystemDictionary_lock , PaddedMonitor, leaf, true, Monitor::_safepoint_check_always); // lookups done by VM thread |
50152
b5023063346d
8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents:
50113
diff
changeset
|
238 |
def(SharedDictionary_lock , PaddedMutex, leaf, true, Monitor::_safepoint_check_always); // lookups done by VM thread |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
239 |
def(Module_lock , PaddedMutex , leaf+2, true, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
240 |
def(InlineCacheBuffer_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
241 |
def(VMStatistic_lock , PaddedMutex , leaf, false, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
242 |
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
|
243 |
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
|
244 |
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
|
245 |
def(SymbolArena_lock , PaddedMutex , leaf+2, true, Monitor::_safepoint_check_never); |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
246 |
def(StringTable_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
247 |
def(ProfilePrint_lock , PaddedMutex , leaf, false, Monitor::_safepoint_check_always); // serial profile printing |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
248 |
def(ExceptionCache_lock , PaddedMutex , leaf, false, Monitor::_safepoint_check_always); // serial profile printing |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
249 |
def(OsrList_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_never); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
250 |
def(Debug1_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_never); |
1 | 251 |
#ifndef PRODUCT |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
252 |
def(FullGCALot_lock , PaddedMutex , leaf, false, Monitor::_safepoint_check_always); // a lock to make FullGCALot MT safe |
1 | 253 |
#endif |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
254 |
def(BeforeExit_lock , PaddedMonitor, leaf, true, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
255 |
def(PerfDataMemAlloc_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_always); // used for allocating PerfData memory for performance data |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
256 |
def(PerfDataManager_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_always); // used for synchronized access to PerfDataManager resources |
1 | 257 |
|
258 |
// 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
|
259 |
// 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
|
260 |
// CMS_freeList_lock leaf 2 |
1 | 261 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
262 |
def(Safepoint_lock , PaddedMonitor, safepoint, true, Monitor::_safepoint_check_sometimes); // locks SnippetCache_lock/Threads_lock |
1 | 263 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
264 |
def(Threads_lock , PaddedMonitor, barrier, true, Monitor::_safepoint_check_sometimes); |
51548 | 265 |
def(NonJavaThreadsList_lock , PaddedMutex, leaf, true, Monitor::_safepoint_check_never); |
1 | 266 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
267 |
def(VMOperationQueue_lock , PaddedMonitor, nonleaf, true, Monitor::_safepoint_check_sometimes); // VM_thread allowed to block on these |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
268 |
def(VMOperationRequest_lock , PaddedMonitor, nonleaf, true, Monitor::_safepoint_check_sometimes); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
269 |
def(RetData_lock , PaddedMutex , nonleaf, false, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
270 |
def(Terminator_lock , PaddedMonitor, nonleaf, true, Monitor::_safepoint_check_sometimes); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
271 |
def(VtableStubs_lock , PaddedMutex , nonleaf, true, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
272 |
def(Notify_lock , PaddedMonitor, nonleaf, true, Monitor::_safepoint_check_always); |
48886 | 273 |
def(JNIGlobalAlloc_lock , PaddedMutex , nonleaf, true, Monitor::_safepoint_check_never); |
274 |
def(JNIGlobalActive_lock , PaddedMutex , nonleaf-1, true, Monitor::_safepoint_check_never); |
|
275 |
def(JNIWeakAlloc_lock , PaddedMutex , nonleaf, true, Monitor::_safepoint_check_never); |
|
276 |
def(JNIWeakActive_lock , PaddedMutex , nonleaf-1, true, Monitor::_safepoint_check_never); |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
277 |
def(JNICritical_lock , PaddedMonitor, nonleaf, true, Monitor::_safepoint_check_always); // used for JNI critical regions |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
278 |
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
|
279 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
280 |
def(Heap_lock , PaddedMonitor, nonleaf+1, false, Monitor::_safepoint_check_sometimes); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
281 |
def(JfieldIdCreation_lock , PaddedMutex , nonleaf+1, true, Monitor::_safepoint_check_always); // jfieldID, Used in VM_Operation |
46505
fd4bc78630b1
8174749: Use hash table/oops for MemberName table
coleenp
parents:
46384
diff
changeset
|
282 |
def(ResolvedMethodTable_lock , PaddedMutex , nonleaf+1, false, Monitor::_safepoint_check_always); // Used to protect ResolvedMethodTable |
1 | 283 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
284 |
def(CompiledIC_lock , PaddedMutex , nonleaf+2, false, Monitor::_safepoint_check_always); // locks VtableStubs_lock, InlineCacheBuffer_lock |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
285 |
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
|
286 |
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
|
287 |
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
|
288 |
def(MultiArray_lock , PaddedMutex , nonleaf+2, false, Monitor::_safepoint_check_always); |
1 | 289 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
290 |
def(JvmtiThreadState_lock , PaddedMutex , nonleaf+2, false, Monitor::_safepoint_check_always); // Used by JvmtiThreadState/JvmtiEventController |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
291 |
def(Management_lock , PaddedMutex , nonleaf+2, false, Monitor::_safepoint_check_always); // used for JVM management |
1 | 292 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
293 |
def(Compile_lock , PaddedMutex , nonleaf+3, true, Monitor::_safepoint_check_sometimes); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
294 |
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
|
295 |
def(TouchedMethodLog_lock , PaddedMutex , nonleaf+3, false, Monitor::_safepoint_check_always); |
1 | 296 |
|
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
297 |
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
|
298 |
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
|
299 |
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
|
300 |
def(CompileThread_lock , PaddedMonitor, nonleaf+5, false, Monitor::_safepoint_check_always); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
301 |
def(PeriodicTask_lock , PaddedMonitor, nonleaf+5, true, Monitor::_safepoint_check_sometimes); |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
302 |
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
|
303 |
|
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50445
diff
changeset
|
304 |
def(ThreadHeapSampler_lock , PaddedMutex, nonleaf, false, Monitor::_safepoint_check_never); |
e2a7f431f65c
8203394: Implementation of JEP 331: Low-Overhead Heap Profiling
jcbeyler
parents:
50445
diff
changeset
|
305 |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
306 |
if (WhiteBoxAPI) { |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
307 |
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
|
308 |
} |
28163
322d55d167be
8047290: Make Mutex::_no_safepoint_check_flag locks verify that this lock never checks for safepoint
coleenp
parents:
27874
diff
changeset
|
309 |
|
50113 | 310 |
#if INCLUDE_JFR |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
311 |
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
|
312 |
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
|
313 |
def(JfrStream_lock , PaddedMutex , leaf+1, true, Monitor::_safepoint_check_never); // ensure to rank lower than 'safepoint' |
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
314 |
def(JfrStacktrace_lock , PaddedMutex , special, true, Monitor::_safepoint_check_sometimes); |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
315 |
#endif |
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
316 |
|
27874
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
317 |
#ifndef SUPPORTS_NATIVE_CX8 |
41710
b830f5141dbb
8166970: Adapt mutex padding according to DEFAULT_CACHE_LINE_SIZE
mdoerr
parents:
41176
diff
changeset
|
318 |
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
|
319 |
#endif |
49611 | 320 |
|
321 |
def(CodeHeapStateAnalytics_lock , PaddedMutex , leaf, true, Monitor::_safepoint_check_never); |
|
1 | 322 |
} |
323 |
||
324 |
GCMutexLocker::GCMutexLocker(Monitor * mutex) { |
|
325 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
326 |
_locked = false; |
|
327 |
} else { |
|
328 |
_mutex = mutex; |
|
329 |
_locked = true; |
|
330 |
_mutex->lock(); |
|
331 |
} |
|
332 |
} |
|
333 |
||
334 |
// Print all mutexes/monitors that are currently owned by a thread; called |
|
335 |
// by fatal error handler. |
|
336 |
void print_owned_locks_on_error(outputStream* st) { |
|
337 |
st->print("VM Mutex/Monitor currently owned by a thread: "); |
|
338 |
bool none = true; |
|
339 |
for (int i = 0; i < _num_mutex; i++) { |
|
340 |
// see if it has an owner |
|
341 |
if (_mutex_array[i]->owner() != NULL) { |
|
342 |
if (none) { |
|
343 |
// print format used by Mutex::print_on_error() |
|
344 |
st->print_cr(" ([mutex/lock_event])"); |
|
345 |
none = false; |
|
346 |
} |
|
347 |
_mutex_array[i]->print_on_error(st); |
|
348 |
st->cr(); |
|
349 |
} |
|
350 |
} |
|
351 |
if (none) st->print_cr("None"); |
|
352 |
} |