author | dholmes |
Tue, 25 Nov 2014 21:00:21 -0500 | |
changeset 27874 | e9b44eb1613f |
parent 27645 | 8fe155d119af |
child 28163 | 322d55d167be |
permissions | -rw-r--r-- |
1 | 1 |
/* |
23472 | 2 |
* Copyright (c) 1997, 2014, 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/threadLocalStorage.hpp" |
31 |
#include "runtime/vmThread.hpp" |
|
1 | 32 |
|
33 |
// Mutexes used in the VM (see comment in mutexLocker.hpp): |
|
34 |
// |
|
35 |
// Note that the following pointers are effectively final -- after having been |
|
36 |
// set at JVM startup-time, they should never be subsequently mutated. |
|
37 |
// Instead of using pointers to malloc()ed monitors and mutexes we should consider |
|
38 |
// eliminating the indirection and using instances instead. |
|
39 |
// Consider using GCC's __read_mostly. |
|
40 |
||
41 |
Mutex* Patching_lock = NULL; |
|
42 |
Monitor* SystemDictionary_lock = NULL; |
|
43 |
Mutex* PackageTable_lock = NULL; |
|
44 |
Mutex* CompiledIC_lock = NULL; |
|
45 |
Mutex* InlineCacheBuffer_lock = NULL; |
|
46 |
Mutex* VMStatistic_lock = NULL; |
|
47 |
Mutex* JNIGlobalHandle_lock = NULL; |
|
48 |
Mutex* JNIHandleBlockFreeList_lock = NULL; |
|
17029
9ff8d7c0ed79
8008511: JSR 292: MemberName vmtarget refs to methods must be updated at class redefinition
sspitsyn
parents:
14583
diff
changeset
|
49 |
Mutex* MemberNameTable_lock = NULL; |
1 | 50 |
Mutex* JmethodIdCreation_lock = NULL; |
51 |
Mutex* JfieldIdCreation_lock = NULL; |
|
52 |
Monitor* JNICritical_lock = NULL; |
|
53 |
Mutex* JvmtiThreadState_lock = NULL; |
|
54 |
Monitor* JvmtiPendingEvent_lock = NULL; |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
55 |
Monitor* Heap_lock = NULL; |
1 | 56 |
Mutex* ExpandHeap_lock = NULL; |
57 |
Mutex* AdapterHandlerLibrary_lock = NULL; |
|
58 |
Mutex* SignatureHandlerLibrary_lock = NULL; |
|
59 |
Mutex* VtableStubs_lock = NULL; |
|
60 |
Mutex* SymbolTable_lock = NULL; |
|
61 |
Mutex* StringTable_lock = NULL; |
|
23472 | 62 |
Monitor* StringDedupQueue_lock = NULL; |
63 |
Mutex* StringDedupTable_lock = NULL; |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
25468
diff
changeset
|
64 |
Monitor* CodeCache_lock = NULL; |
1 | 65 |
Mutex* MethodData_lock = NULL; |
66 |
Mutex* RetData_lock = NULL; |
|
67 |
Monitor* VMOperationQueue_lock = NULL; |
|
68 |
Monitor* VMOperationRequest_lock = NULL; |
|
69 |
Monitor* Safepoint_lock = NULL; |
|
70 |
Monitor* SerializePage_lock = NULL; |
|
71 |
Monitor* Threads_lock = NULL; |
|
72 |
Monitor* CGC_lock = NULL; |
|
24094 | 73 |
Monitor* STS_lock = NULL; |
1 | 74 |
Monitor* SLT_lock = NULL; |
75 |
Monitor* FullGCCount_lock = NULL; |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
76 |
Monitor* CMark_lock = NULL; |
5242
85cf92183e39
6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop()
tonyp
parents:
3261
diff
changeset
|
77 |
Mutex* CMRegionStack_lock = NULL; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
78 |
Mutex* SATB_Q_FL_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
79 |
Monitor* SATB_Q_CBL_mon = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
80 |
Mutex* Shared_SATB_Q_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
81 |
Mutex* DirtyCardQ_FL_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
82 |
Monitor* DirtyCardQ_CBL_mon = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
83 |
Mutex* Shared_DirtyCardQ_lock = NULL; |
1 | 84 |
Mutex* ParGCRareEvent_lock = NULL; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
85 |
Mutex* EvacFailureStack_lock = NULL; |
1 | 86 |
Mutex* DerivedPointerTableGC_lock = NULL; |
87 |
Mutex* Compile_lock = NULL; |
|
88 |
Monitor* MethodCompileQueue_lock = NULL; |
|
89 |
Monitor* CompileThread_lock = NULL; |
|
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
90 |
Monitor* Compilation_lock = NULL; |
1 | 91 |
Mutex* CompileTaskAlloc_lock = NULL; |
92 |
Mutex* CompileStatistics_lock = NULL; |
|
93 |
Mutex* MultiArray_lock = NULL; |
|
94 |
Monitor* Terminator_lock = NULL; |
|
95 |
Monitor* BeforeExit_lock = NULL; |
|
96 |
Monitor* Notify_lock = NULL; |
|
97 |
Monitor* Interrupt_lock = NULL; |
|
98 |
Monitor* ProfileVM_lock = NULL; |
|
99 |
Mutex* ProfilePrint_lock = NULL; |
|
100 |
Mutex* ExceptionCache_lock = NULL; |
|
101 |
Monitor* ObjAllocPost_lock = NULL; |
|
102 |
Mutex* OsrList_lock = NULL; |
|
103 |
#ifndef PRODUCT |
|
104 |
Mutex* FullGCALot_lock = NULL; |
|
105 |
#endif |
|
106 |
||
107 |
Mutex* Debug1_lock = NULL; |
|
108 |
Mutex* Debug2_lock = NULL; |
|
109 |
Mutex* Debug3_lock = NULL; |
|
110 |
||
111 |
Mutex* tty_lock = NULL; |
|
112 |
||
113 |
Mutex* RawMonitor_lock = NULL; |
|
114 |
Mutex* PerfDataMemAlloc_lock = NULL; |
|
115 |
Mutex* PerfDataManager_lock = NULL; |
|
116 |
Mutex* OopMapCacheAlloc_lock = NULL; |
|
117 |
||
7923 | 118 |
Mutex* FreeList_lock = NULL; |
119 |
Monitor* SecondaryFreeList_lock = NULL; |
|
120 |
Mutex* OldSets_lock = NULL; |
|
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
10565
diff
changeset
|
121 |
Monitor* RootRegionScan_lock = NULL; |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
122 |
Mutex* MMUTracker_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
123 |
Mutex* HotCardCache_lock = NULL; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
124 |
|
1 | 125 |
Monitor* GCTaskManager_lock = NULL; |
126 |
||
127 |
Mutex* Management_lock = NULL; |
|
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
128 |
Monitor* Service_lock = NULL; |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
129 |
Monitor* PeriodicTask_lock = NULL; |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
130 |
|
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
131 |
#ifdef INCLUDE_TRACE |
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
132 |
Mutex* JfrStacktrace_lock = NULL; |
11480
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
133 |
Monitor* JfrMsg_lock = NULL; |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
134 |
Mutex* JfrBuffer_lock = NULL; |
1bf714e8adb4
7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents:
10565
diff
changeset
|
135 |
Mutex* JfrStream_lock = NULL; |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
136 |
Mutex* JfrThreadGroups_lock = NULL; |
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
137 |
#endif |
1 | 138 |
|
27874
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
139 |
#ifndef SUPPORTS_NATIVE_CX8 |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
140 |
Mutex* UnsafeJlong_lock = NULL; |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
141 |
#endif |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
142 |
|
1 | 143 |
#define MAX_NUM_MUTEX 128 |
144 |
static Monitor * _mutex_array[MAX_NUM_MUTEX]; |
|
145 |
static int _num_mutex; |
|
146 |
||
147 |
#ifdef ASSERT |
|
148 |
void assert_locked_or_safepoint(const Monitor * lock) { |
|
149 |
// check if this thread owns the lock (common case) |
|
150 |
if (IgnoreLockingAssertions) return; |
|
151 |
assert(lock != NULL, "Need non-NULL lock"); |
|
152 |
if (lock->owned_by_self()) return; |
|
153 |
if (SafepointSynchronize::is_at_safepoint()) return; |
|
154 |
if (!Universe::is_fully_initialized()) return; |
|
155 |
// see if invoker of VM operation owns it |
|
156 |
VM_Operation* op = VMThread::vm_operation(); |
|
157 |
if (op != NULL && op->calling_thread() == lock->owner()) return; |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5242
diff
changeset
|
158 |
fatal(err_msg("must own lock %s", lock->name())); |
1 | 159 |
} |
160 |
||
161 |
// a stronger assertion than the above |
|
162 |
void assert_lock_strong(const Monitor * lock) { |
|
163 |
if (IgnoreLockingAssertions) return; |
|
164 |
assert(lock != NULL, "Need non-NULL lock"); |
|
165 |
if (lock->owned_by_self()) return; |
|
5403
6b0dd9c75dde
6888954: argument formatting for assert() and friends
jcoomes
parents:
5242
diff
changeset
|
166 |
fatal(err_msg("must own lock %s", lock->name())); |
1 | 167 |
} |
168 |
#endif |
|
169 |
||
170 |
#define def(var, type, pri, vm_block) { \ |
|
171 |
var = new type(Mutex::pri, #var, vm_block); \ |
|
172 |
assert(_num_mutex < MAX_NUM_MUTEX, \ |
|
173 |
"increase MAX_NUM_MUTEX"); \ |
|
174 |
_mutex_array[_num_mutex++] = var; \ |
|
175 |
} |
|
176 |
||
177 |
void mutex_init() { |
|
178 |
def(tty_lock , Mutex , event, true ); // allow to lock in VM |
|
179 |
||
180 |
def(CGC_lock , Monitor, special, true ); // coordinate between fore- and background GC |
|
24094 | 181 |
def(STS_lock , Monitor, leaf, true ); |
6058
9c9aec6ab47d
6944166: G1: explicit GCs are not always handled correctly
tonyp
parents:
5707
diff
changeset
|
182 |
if (UseConcMarkSweepGC || UseG1GC) { |
1 | 183 |
def(FullGCCount_lock , Monitor, leaf, true ); // in support of ExplicitGCInvokesConcurrent |
184 |
} |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
185 |
if (UseG1GC) { |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
186 |
def(CMark_lock , Monitor, nonleaf, true ); // coordinate concurrent mark thread |
5242
85cf92183e39
6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop()
tonyp
parents:
3261
diff
changeset
|
187 |
def(CMRegionStack_lock , Mutex, leaf, true ); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
188 |
def(SATB_Q_FL_lock , Mutex , special, true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
189 |
def(SATB_Q_CBL_mon , Monitor, nonleaf, true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
190 |
def(Shared_SATB_Q_lock , Mutex, nonleaf, true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
191 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
192 |
def(DirtyCardQ_FL_lock , Mutex , special, true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
193 |
def(DirtyCardQ_CBL_mon , Monitor, nonleaf, true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
194 |
def(Shared_DirtyCardQ_lock , Mutex, nonleaf, true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
195 |
|
7923 | 196 |
def(FreeList_lock , Mutex, leaf , true ); |
197 |
def(SecondaryFreeList_lock , Monitor, leaf , true ); |
|
198 |
def(OldSets_lock , Mutex , leaf , true ); |
|
11584
e1df4d08a1f4
7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents:
10565
diff
changeset
|
199 |
def(RootRegionScan_lock , Monitor, leaf , true ); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
200 |
def(MMUTracker_lock , Mutex , leaf , true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
201 |
def(HotCardCache_lock , Mutex , special , true ); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
202 |
def(EvacFailureStack_lock , Mutex , nonleaf , true ); |
23472 | 203 |
|
204 |
def(StringDedupQueue_lock , Monitor, leaf, true ); |
|
205 |
def(StringDedupTable_lock , Mutex , leaf, true ); |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
206 |
} |
1 | 207 |
def(ParGCRareEvent_lock , Mutex , leaf , true ); |
208 |
def(DerivedPointerTableGC_lock , Mutex, leaf, true ); |
|
27420
04e6f914cce1
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents:
25468
diff
changeset
|
209 |
def(CodeCache_lock , Monitor, special, true ); |
1 | 210 |
def(Interrupt_lock , Monitor, special, true ); // used for interrupt processing |
211 |
def(RawMonitor_lock , Mutex, special, true ); |
|
212 |
def(OopMapCacheAlloc_lock , Mutex, leaf, true ); // used for oop_map_cache allocation. |
|
213 |
||
214 |
def(Patching_lock , Mutex , special, true ); // used for safepointing and code patching. |
|
215 |
def(ObjAllocPost_lock , Monitor, special, false); |
|
8110
c992c8d52344
6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents:
7923
diff
changeset
|
216 |
def(Service_lock , Monitor, special, true ); // used for service thread operations |
1 | 217 |
def(JmethodIdCreation_lock , Mutex , leaf, true ); // used for creating jmethodIDs. |
218 |
||
219 |
def(SystemDictionary_lock , Monitor, leaf, true ); // lookups done by VM thread |
|
220 |
def(PackageTable_lock , Mutex , leaf, false); |
|
221 |
def(InlineCacheBuffer_lock , Mutex , leaf, true ); |
|
222 |
def(VMStatistic_lock , Mutex , leaf, false); |
|
223 |
def(ExpandHeap_lock , Mutex , leaf, true ); // Used during compilation by VM thread |
|
224 |
def(JNIHandleBlockFreeList_lock , Mutex , leaf, true ); // handles are used by VM thread |
|
225 |
def(SignatureHandlerLibrary_lock , Mutex , leaf, false); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
11587
diff
changeset
|
226 |
def(SymbolTable_lock , Mutex , leaf+2, true ); |
1 | 227 |
def(StringTable_lock , Mutex , leaf, true ); |
228 |
def(ProfilePrint_lock , Mutex , leaf, false); // serial profile printing |
|
229 |
def(ExceptionCache_lock , Mutex , leaf, false); // serial profile printing |
|
230 |
def(OsrList_lock , Mutex , leaf, true ); |
|
231 |
def(Debug1_lock , Mutex , leaf, true ); |
|
232 |
#ifndef PRODUCT |
|
233 |
def(FullGCALot_lock , Mutex , leaf, false); // a lock to make FullGCALot MT safe |
|
234 |
#endif |
|
235 |
def(BeforeExit_lock , Monitor, leaf, true ); |
|
236 |
def(PerfDataMemAlloc_lock , Mutex , leaf, true ); // used for allocating PerfData memory for performance data |
|
237 |
def(PerfDataManager_lock , Mutex , leaf, true ); // used for synchronized access to PerfDataManager resources |
|
238 |
||
239 |
// CMS_modUnionTable_lock leaf |
|
240 |
// CMS_bitMap_lock leaf + 1 |
|
241 |
// CMS_freeList_lock leaf + 2 |
|
242 |
||
243 |
def(Safepoint_lock , Monitor, safepoint, true ); // locks SnippetCache_lock/Threads_lock |
|
244 |
||
245 |
def(Threads_lock , Monitor, barrier, true ); |
|
246 |
||
247 |
def(VMOperationQueue_lock , Monitor, nonleaf, true ); // VM_thread allowed to block on these |
|
248 |
def(VMOperationRequest_lock , Monitor, nonleaf, true ); |
|
249 |
def(RetData_lock , Mutex , nonleaf, false); |
|
250 |
def(Terminator_lock , Monitor, nonleaf, true ); |
|
251 |
def(VtableStubs_lock , Mutex , nonleaf, true ); |
|
252 |
def(Notify_lock , Monitor, nonleaf, true ); |
|
253 |
def(JNIGlobalHandle_lock , Mutex , nonleaf, true ); // locks JNIHandleBlockFreeList_lock |
|
254 |
def(JNICritical_lock , Monitor, nonleaf, true ); // used for JNI critical regions |
|
255 |
def(AdapterHandlerLibrary_lock , Mutex , nonleaf, true); |
|
256 |
if (UseConcMarkSweepGC) { |
|
257 |
def(SLT_lock , Monitor, nonleaf, false ); |
|
258 |
// used in CMS GC for locking PLL lock |
|
259 |
} |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
228
diff
changeset
|
260 |
def(Heap_lock , Monitor, nonleaf+1, false); |
1 | 261 |
def(JfieldIdCreation_lock , Mutex , nonleaf+1, true ); // jfieldID, Used in VM_Operation |
17029
9ff8d7c0ed79
8008511: JSR 292: MemberName vmtarget refs to methods must be updated at class redefinition
sspitsyn
parents:
14583
diff
changeset
|
262 |
def(MemberNameTable_lock , Mutex , nonleaf+1, false); // Used to protect MemberNameTable |
1 | 263 |
|
264 |
def(CompiledIC_lock , Mutex , nonleaf+2, false); // locks VtableStubs_lock, InlineCacheBuffer_lock |
|
265 |
def(CompileTaskAlloc_lock , Mutex , nonleaf+2, true ); |
|
266 |
def(CompileStatistics_lock , Mutex , nonleaf+2, false); |
|
267 |
def(MultiArray_lock , Mutex , nonleaf+2, false); // locks SymbolTable_lock |
|
268 |
||
269 |
def(JvmtiThreadState_lock , Mutex , nonleaf+2, false); // Used by JvmtiThreadState/JvmtiEventController |
|
270 |
def(JvmtiPendingEvent_lock , Monitor, nonleaf, false); // Used by JvmtiCodeBlobEvents |
|
271 |
def(Management_lock , Mutex , nonleaf+2, false); // used for JVM management |
|
272 |
||
273 |
def(Compile_lock , Mutex , nonleaf+3, true ); |
|
274 |
def(MethodData_lock , Mutex , nonleaf+3, false); |
|
275 |
||
276 |
def(MethodCompileQueue_lock , Monitor, nonleaf+4, true ); |
|
277 |
def(Debug2_lock , Mutex , nonleaf+4, true ); |
|
278 |
def(Debug3_lock , Mutex , nonleaf+4, true ); |
|
18025 | 279 |
def(ProfileVM_lock , Monitor, special, false); // used for profiling of the VMThread |
1 | 280 |
def(CompileThread_lock , Monitor, nonleaf+5, false ); |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
281 |
def(PeriodicTask_lock , Monitor, nonleaf+5, true); |
27642
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
282 |
if (WhiteBoxAPI) { |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
283 |
def(Compilation_lock , Monitor, leaf, false ); |
8c9eff693145
8059624: Test task: WhiteBox API for testing segmented codecache feature
iignatyev
parents:
27420
diff
changeset
|
284 |
} |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
285 |
#ifdef INCLUDE_TRACE |
18025 | 286 |
def(JfrMsg_lock , Monitor, leaf, true); |
24839
109aa8e66829
8044531: Event based tracing locks to rank as leafs where possible
mgronlun
parents:
24094
diff
changeset
|
287 |
def(JfrBuffer_lock , Mutex, leaf, true); |
109aa8e66829
8044531: Event based tracing locks to rank as leafs where possible
mgronlun
parents:
24094
diff
changeset
|
288 |
def(JfrThreadGroups_lock , Mutex, leaf, true); |
109aa8e66829
8044531: Event based tracing locks to rank as leafs where possible
mgronlun
parents:
24094
diff
changeset
|
289 |
def(JfrStream_lock , Mutex, nonleaf, true); |
109aa8e66829
8044531: Event based tracing locks to rank as leafs where possible
mgronlun
parents:
24094
diff
changeset
|
290 |
def(JfrStacktrace_lock , Mutex, special, true); |
19542
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
291 |
#endif |
e55d447cc2a1
8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents:
18025
diff
changeset
|
292 |
|
27874
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
293 |
#ifndef SUPPORTS_NATIVE_CX8 |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
294 |
def(UnsafeJlong_lock , Mutex, special, false); |
e9b44eb1613f
8035663: Suspicious failure of test java/util/concurrent/Phaser/FickleRegister.java
dholmes
parents:
27645
diff
changeset
|
295 |
#endif |
1 | 296 |
} |
297 |
||
298 |
GCMutexLocker::GCMutexLocker(Monitor * mutex) { |
|
299 |
if (SafepointSynchronize::is_at_safepoint()) { |
|
300 |
_locked = false; |
|
301 |
} else { |
|
302 |
_mutex = mutex; |
|
303 |
_locked = true; |
|
304 |
_mutex->lock(); |
|
305 |
} |
|
306 |
} |
|
307 |
||
308 |
// Print all mutexes/monitors that are currently owned by a thread; called |
|
309 |
// by fatal error handler. |
|
310 |
void print_owned_locks_on_error(outputStream* st) { |
|
311 |
st->print("VM Mutex/Monitor currently owned by a thread: "); |
|
312 |
bool none = true; |
|
313 |
for (int i = 0; i < _num_mutex; i++) { |
|
314 |
// see if it has an owner |
|
315 |
if (_mutex_array[i]->owner() != NULL) { |
|
316 |
if (none) { |
|
317 |
// print format used by Mutex::print_on_error() |
|
318 |
st->print_cr(" ([mutex/lock_event])"); |
|
319 |
none = false; |
|
320 |
} |
|
321 |
_mutex_array[i]->print_on_error(st); |
|
322 |
st->cr(); |
|
323 |
} |
|
324 |
} |
|
325 |
if (none) st->print_cr("None"); |
|
326 |
} |