annotate src/share/vm/runtime/mutexLocker.cpp @ 13212:eb03a7335eb0

Use fixed instead of virtual register for target in far foreign call, since the register allocator does not support virtual registers to be used at call sites.
author Christian Wimmer <christian.wimmer@oracle.com>
date Mon, 02 Dec 2013 14:20:32 -0800
parents 359f7e70ae7f
children beea13269eab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10133
diff changeset
2 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1490
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
26 #include "runtime/mutexLocker.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
27 #include "runtime/safepoint.hpp"
7180
f34d701e952e 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 6939
diff changeset
28 #include "runtime/thread.inline.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
29 #include "runtime/threadLocalStorage.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
30 #include "runtime/vmThread.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Mutexes used in the VM (see comment in mutexLocker.hpp):
a61af66fc99e Initial load
duke
parents:
diff changeset
33 //
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Note that the following pointers are effectively final -- after having been
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // set at JVM startup-time, they should never be subsequently mutated.
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Instead of using pointers to malloc()ed monitors and mutexes we should consider
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // eliminating the indirection and using instances instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // Consider using GCC's __read_mostly.
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 Mutex* Patching_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Monitor* SystemDictionary_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 Mutex* PackageTable_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Mutex* CompiledIC_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Mutex* InlineCacheBuffer_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Mutex* VMStatistic_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 Mutex* JNIGlobalHandle_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 Mutex* JNIHandleBlockFreeList_lock = NULL;
10133
6337ca4dcad8 8008511: JSR 292: MemberName vmtarget refs to methods must be updated at class redefinition
sspitsyn
parents: 7180
diff changeset
48 Mutex* MemberNameTable_lock = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Mutex* JmethodIdCreation_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 Mutex* JfieldIdCreation_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 Monitor* JNICritical_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Mutex* JvmtiThreadState_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 Monitor* JvmtiPendingEvent_lock = NULL;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
54 Monitor* Heap_lock = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
55 Mutex* ExpandHeap_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 Mutex* AdapterHandlerLibrary_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Mutex* SignatureHandlerLibrary_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 Mutex* VtableStubs_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 Mutex* SymbolTable_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 Mutex* StringTable_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 Mutex* CodeCache_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 Mutex* MethodData_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Mutex* RetData_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 Monitor* VMOperationQueue_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 Monitor* VMOperationRequest_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 Monitor* Safepoint_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 Monitor* SerializePage_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 Monitor* Threads_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 Monitor* CGC_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 Mutex* STS_init_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 Monitor* SLT_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 Monitor* iCMS_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 Monitor* FullGCCount_lock = NULL;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
74 Monitor* CMark_lock = NULL;
1358
72f725c5a7be 6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop()
tonyp
parents: 844
diff changeset
75 Mutex* CMRegionStack_lock = NULL;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
76 Mutex* SATB_Q_FL_lock = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
77 Monitor* SATB_Q_CBL_mon = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
78 Mutex* Shared_SATB_Q_lock = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
79 Mutex* DirtyCardQ_FL_lock = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
80 Monitor* DirtyCardQ_CBL_mon = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
81 Mutex* Shared_DirtyCardQ_lock = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 Mutex* ParGCRareEvent_lock = NULL;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
83 Mutex* EvacFailureStack_lock = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 Mutex* DerivedPointerTableGC_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 Mutex* Compile_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 Monitor* MethodCompileQueue_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 Monitor* CompileThread_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 Mutex* CompileTaskAlloc_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 Mutex* CompileStatistics_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 Mutex* MultiArray_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 Monitor* Terminator_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 Monitor* BeforeExit_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 Monitor* Notify_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 Monitor* Interrupt_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 Monitor* ProfileVM_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 Mutex* ProfilePrint_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 Mutex* ExceptionCache_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 Monitor* ObjAllocPost_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 Mutex* OsrList_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
101 Mutex* FullGCALot_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 Mutex* Debug1_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 Mutex* Debug2_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 Mutex* Debug3_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 Mutex* tty_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 Mutex* RawMonitor_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 Mutex* PerfDataMemAlloc_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 Mutex* PerfDataManager_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 Mutex* OopMapCacheAlloc_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
114
2152
0fa27f37d4d4 6977804: G1: remove the zero-filling thread
tonyp
parents: 1972
diff changeset
115 Mutex* FreeList_lock = NULL;
0fa27f37d4d4 6977804: G1: remove the zero-filling thread
tonyp
parents: 1972
diff changeset
116 Monitor* SecondaryFreeList_lock = NULL;
0fa27f37d4d4 6977804: G1: remove the zero-filling thread
tonyp
parents: 1972
diff changeset
117 Mutex* OldSets_lock = NULL;
4837
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 3960
diff changeset
118 Monitor* RootRegionScan_lock = NULL;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
119 Mutex* MMUTracker_lock = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
120 Mutex* HotCardCache_lock = NULL;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
121
0
a61af66fc99e Initial load
duke
parents:
diff changeset
122 Monitor* GCTaskManager_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 Mutex* Management_lock = NULL;
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 3960
diff changeset
125 Monitor* Service_lock = NULL;
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
126 Monitor* PeriodicTask_lock = NULL;
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 3960
diff changeset
127
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
128 #ifdef INCLUDE_TRACE
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
129 Mutex* JfrStacktrace_lock = NULL;
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 3960
diff changeset
130 Monitor* JfrMsg_lock = NULL;
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 3960
diff changeset
131 Mutex* JfrBuffer_lock = NULL;
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 3960
diff changeset
132 Mutex* JfrStream_lock = NULL;
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
133 Mutex* JfrThreadGroups_lock = NULL;
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
134 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135
5129
51111665eda6 Support for recording a leaf graph id for each deoptimization point in the debug info.
Lukas Stadler <lukas.stadler@jku.at>
parents: 4840
diff changeset
136 #ifdef GRAAL
51111665eda6 Support for recording a leaf graph id for each deoptimization point in the debug info.
Lukas Stadler <lukas.stadler@jku.at>
parents: 4840
diff changeset
137 Mutex* GraalDeoptLeafGraphIds_lock = NULL;
51111665eda6 Support for recording a leaf graph id for each deoptimization point in the debug info.
Lukas Stadler <lukas.stadler@jku.at>
parents: 4840
diff changeset
138 #endif // GRAAL
51111665eda6 Support for recording a leaf graph id for each deoptimization point in the debug info.
Lukas Stadler <lukas.stadler@jku.at>
parents: 4840
diff changeset
139
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 #define MAX_NUM_MUTEX 128
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static Monitor * _mutex_array[MAX_NUM_MUTEX];
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static int _num_mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
145 void assert_locked_or_safepoint(const Monitor * lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // check if this thread owns the lock (common case)
a61af66fc99e Initial load
duke
parents:
diff changeset
147 if (IgnoreLockingAssertions) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 assert(lock != NULL, "Need non-NULL lock");
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (lock->owned_by_self()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (SafepointSynchronize::is_at_safepoint()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
151 if (!Universe::is_fully_initialized()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // see if invoker of VM operation owns it
a61af66fc99e Initial load
duke
parents:
diff changeset
153 VM_Operation* op = VMThread::vm_operation();
a61af66fc99e Initial load
duke
parents:
diff changeset
154 if (op != NULL && op->calling_thread() == lock->owner()) return;
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1358
diff changeset
155 fatal(err_msg("must own lock %s", lock->name()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // a stronger assertion than the above
a61af66fc99e Initial load
duke
parents:
diff changeset
159 void assert_lock_strong(const Monitor * lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (IgnoreLockingAssertions) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
161 assert(lock != NULL, "Need non-NULL lock");
a61af66fc99e Initial load
duke
parents:
diff changeset
162 if (lock->owned_by_self()) return;
1490
f03d0a26bf83 6888954: argument formatting for assert() and friends
jcoomes
parents: 1358
diff changeset
163 fatal(err_msg("must own lock %s", lock->name()));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #define def(var, type, pri, vm_block) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
168 var = new type(Mutex::pri, #var, vm_block); \
a61af66fc99e Initial load
duke
parents:
diff changeset
169 assert(_num_mutex < MAX_NUM_MUTEX, \
a61af66fc99e Initial load
duke
parents:
diff changeset
170 "increase MAX_NUM_MUTEX"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _mutex_array[_num_mutex++] = var; \
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 void mutex_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 def(tty_lock , Mutex , event, true ); // allow to lock in VM
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 def(CGC_lock , Monitor, special, true ); // coordinate between fore- and background GC
a61af66fc99e Initial load
duke
parents:
diff changeset
178 def(STS_init_lock , Mutex, leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
179 if (UseConcMarkSweepGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 def(iCMS_lock , Monitor, special, true ); // CMS incremental mode start/stop notification
1656
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1584
diff changeset
181 }
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1584
diff changeset
182 if (UseConcMarkSweepGC || UseG1GC) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 def(FullGCCount_lock , Monitor, leaf, true ); // in support of ExplicitGCInvokesConcurrent
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
185 if (UseG1GC) {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
186 def(CMark_lock , Monitor, nonleaf, true ); // coordinate concurrent mark thread
1358
72f725c5a7be 6940310: G1: MT-unsafe calls to CM::region_stack_push() / CM::region_stack_pop()
tonyp
parents: 844
diff changeset
187 def(CMRegionStack_lock , Mutex, leaf, true );
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
188 def(SATB_Q_FL_lock , Mutex , special, true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
189 def(SATB_Q_CBL_mon , Monitor, nonleaf, true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
190 def(Shared_SATB_Q_lock , Mutex, nonleaf, true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
191
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
192 def(DirtyCardQ_FL_lock , Mutex , special, true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
193 def(DirtyCardQ_CBL_mon , Monitor, nonleaf, true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
194 def(Shared_DirtyCardQ_lock , Mutex, nonleaf, true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
195
2152
0fa27f37d4d4 6977804: G1: remove the zero-filling thread
tonyp
parents: 1972
diff changeset
196 def(FreeList_lock , Mutex, leaf , true );
0fa27f37d4d4 6977804: G1: remove the zero-filling thread
tonyp
parents: 1972
diff changeset
197 def(SecondaryFreeList_lock , Monitor, leaf , true );
0fa27f37d4d4 6977804: G1: remove the zero-filling thread
tonyp
parents: 1972
diff changeset
198 def(OldSets_lock , Mutex , leaf , true );
4837
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 3960
diff changeset
199 def(RootRegionScan_lock , Monitor, leaf , true );
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
200 def(MMUTracker_lock , Mutex , leaf , true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
201 def(HotCardCache_lock , Mutex , special , true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
202 def(EvacFailureStack_lock , Mutex , nonleaf , true );
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
203 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204 def(ParGCRareEvent_lock , Mutex , leaf , true );
a61af66fc99e Initial load
duke
parents:
diff changeset
205 def(DerivedPointerTableGC_lock , Mutex, leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
206 def(CodeCache_lock , Mutex , special, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
207 def(Interrupt_lock , Monitor, special, true ); // used for interrupt processing
a61af66fc99e Initial load
duke
parents:
diff changeset
208 def(RawMonitor_lock , Mutex, special, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
209 def(OopMapCacheAlloc_lock , Mutex, leaf, true ); // used for oop_map_cache allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 def(Patching_lock , Mutex , special, true ); // used for safepointing and code patching.
a61af66fc99e Initial load
duke
parents:
diff changeset
212 def(ObjAllocPost_lock , Monitor, special, false);
2195
bf8517f4e4d0 6766644: Redefinition of compiled method fails with assertion "Can not load classes with the Compiler thread"
kamg
parents: 2152
diff changeset
213 def(Service_lock , Monitor, special, true ); // used for service thread operations
0
a61af66fc99e Initial load
duke
parents:
diff changeset
214 def(JmethodIdCreation_lock , Mutex , leaf, true ); // used for creating jmethodIDs.
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 def(SystemDictionary_lock , Monitor, leaf, true ); // lookups done by VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
217 def(PackageTable_lock , Mutex , leaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 def(InlineCacheBuffer_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
219 def(VMStatistic_lock , Mutex , leaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 def(ExpandHeap_lock , Mutex , leaf, true ); // Used during compilation by VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
221 def(JNIHandleBlockFreeList_lock , Mutex , leaf, true ); // handles are used by VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
222 def(SignatureHandlerLibrary_lock , Mutex , leaf, false);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4840
diff changeset
223 def(SymbolTable_lock , Mutex , leaf+2, true );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
224 def(StringTable_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
225 def(ProfilePrint_lock , Mutex , leaf, false); // serial profile printing
a61af66fc99e Initial load
duke
parents:
diff changeset
226 def(ExceptionCache_lock , Mutex , leaf, false); // serial profile printing
a61af66fc99e Initial load
duke
parents:
diff changeset
227 def(OsrList_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
228 def(Debug1_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
229 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
230 def(FullGCALot_lock , Mutex , leaf, false); // a lock to make FullGCALot MT safe
a61af66fc99e Initial load
duke
parents:
diff changeset
231 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
232 def(BeforeExit_lock , Monitor, leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
233 def(PerfDataMemAlloc_lock , Mutex , leaf, true ); // used for allocating PerfData memory for performance data
a61af66fc99e Initial load
duke
parents:
diff changeset
234 def(PerfDataManager_lock , Mutex , leaf, true ); // used for synchronized access to PerfDataManager resources
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // CMS_modUnionTable_lock leaf
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // CMS_bitMap_lock leaf + 1
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // CMS_freeList_lock leaf + 2
a61af66fc99e Initial load
duke
parents:
diff changeset
239
a61af66fc99e Initial load
duke
parents:
diff changeset
240 def(Safepoint_lock , Monitor, safepoint, true ); // locks SnippetCache_lock/Threads_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 def(Threads_lock , Monitor, barrier, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 def(VMOperationQueue_lock , Monitor, nonleaf, true ); // VM_thread allowed to block on these
a61af66fc99e Initial load
duke
parents:
diff changeset
245 def(VMOperationRequest_lock , Monitor, nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
246 def(RetData_lock , Mutex , nonleaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 def(Terminator_lock , Monitor, nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
248 def(VtableStubs_lock , Mutex , nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
249 def(Notify_lock , Monitor, nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
250 def(JNIGlobalHandle_lock , Mutex , nonleaf, true ); // locks JNIHandleBlockFreeList_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
251 def(JNICritical_lock , Monitor, nonleaf, true ); // used for JNI critical regions
a61af66fc99e Initial load
duke
parents:
diff changeset
252 def(AdapterHandlerLibrary_lock , Mutex , nonleaf, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 if (UseConcMarkSweepGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 def(SLT_lock , Monitor, nonleaf, false );
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // used in CMS GC for locking PLL lock
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 55
diff changeset
257 def(Heap_lock , Monitor, nonleaf+1, false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
258 def(JfieldIdCreation_lock , Mutex , nonleaf+1, true ); // jfieldID, Used in VM_Operation
10133
6337ca4dcad8 8008511: JSR 292: MemberName vmtarget refs to methods must be updated at class redefinition
sspitsyn
parents: 7180
diff changeset
259 def(MemberNameTable_lock , Mutex , nonleaf+1, false); // Used to protect MemberNameTable
0
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 def(CompiledIC_lock , Mutex , nonleaf+2, false); // locks VtableStubs_lock, InlineCacheBuffer_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
262 def(CompileTaskAlloc_lock , Mutex , nonleaf+2, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
263 def(CompileStatistics_lock , Mutex , nonleaf+2, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 def(MultiArray_lock , Mutex , nonleaf+2, false); // locks SymbolTable_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 def(JvmtiThreadState_lock , Mutex , nonleaf+2, false); // Used by JvmtiThreadState/JvmtiEventController
a61af66fc99e Initial load
duke
parents:
diff changeset
267 def(JvmtiPendingEvent_lock , Monitor, nonleaf, false); // Used by JvmtiCodeBlobEvents
a61af66fc99e Initial load
duke
parents:
diff changeset
268 def(Management_lock , Mutex , nonleaf+2, false); // used for JVM management
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 def(Compile_lock , Mutex , nonleaf+3, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
271 def(MethodData_lock , Mutex , nonleaf+3, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
272
a61af66fc99e Initial load
duke
parents:
diff changeset
273 def(MethodCompileQueue_lock , Monitor, nonleaf+4, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
274 def(Debug2_lock , Mutex , nonleaf+4, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
275 def(Debug3_lock , Mutex , nonleaf+4, true );
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10133
diff changeset
276 def(ProfileVM_lock , Monitor, special, false); // used for profiling of the VMThread
0
a61af66fc99e Initial load
duke
parents:
diff changeset
277 def(CompileThread_lock , Monitor, nonleaf+5, false );
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
278 def(PeriodicTask_lock , Monitor, nonleaf+5, true);
4800
94ec88ca68e2 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 3960
diff changeset
279
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
280 #ifdef INCLUDE_TRACE
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10133
diff changeset
281 def(JfrMsg_lock , Monitor, leaf, true);
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10133
diff changeset
282 def(JfrBuffer_lock , Mutex, nonleaf+1, true);
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
283 def(JfrThreadGroups_lock , Mutex, nonleaf+1, true);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 10133
diff changeset
284 def(JfrStream_lock , Mutex, nonleaf+2, true);
12106
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
285 def(JfrStacktrace_lock , Mutex, special, true );
739c309fd729 8023457: Event based tracing framework needs a mutex for thread groups
mgronlun
parents: 10405
diff changeset
286 #endif
12356
359f7e70ae7f Reduce HotSpot diff and fix previous merge
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 12355
diff changeset
287
5129
51111665eda6 Support for recording a leaf graph id for each deoptimization point in the debug info.
Lukas Stadler <lukas.stadler@jku.at>
parents: 4840
diff changeset
288 #ifdef GRAAL
7154
5d0bb7d52783 changes to support Graal co-existing with the other HotSpot compiler(s) and being used for explicit compilation requests and code installation via the Graal API
Doug Simon <doug.simon@oracle.com>
parents: 6948
diff changeset
289 def(GraalDeoptLeafGraphIds_lock , Mutex, special, true);
5129
51111665eda6 Support for recording a leaf graph id for each deoptimization point in the debug info.
Lukas Stadler <lukas.stadler@jku.at>
parents: 4840
diff changeset
290 #endif // GRAAL
0
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 GCMutexLocker::GCMutexLocker(Monitor * mutex) {
a61af66fc99e Initial load
duke
parents:
diff changeset
294 if (SafepointSynchronize::is_at_safepoint()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 _locked = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
296 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 _locked = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
300 }
a61af66fc99e Initial load
duke
parents:
diff changeset
301 }
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // Print all mutexes/monitors that are currently owned by a thread; called
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // by fatal error handler.
a61af66fc99e Initial load
duke
parents:
diff changeset
305 void print_owned_locks_on_error(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
306 st->print("VM Mutex/Monitor currently owned by a thread: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
307 bool none = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 for (int i = 0; i < _num_mutex; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // see if it has an owner
a61af66fc99e Initial load
duke
parents:
diff changeset
310 if (_mutex_array[i]->owner() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 if (none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // print format used by Mutex::print_on_error()
a61af66fc99e Initial load
duke
parents:
diff changeset
313 st->print_cr(" ([mutex/lock_event])");
a61af66fc99e Initial load
duke
parents:
diff changeset
314 none = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316 _mutex_array[i]->print_on_error(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320 if (none) st->print_cr("None");
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }