annotate src/share/vm/runtime/mutexLocker.cpp @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents 2a8eb116ebbe
children 1ee8caae33af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 55
diff changeset
2 * Copyright 1997-2008 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_mutexLocker.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Mutexes used in the VM (see comment in mutexLocker.hpp):
a61af66fc99e Initial load
duke
parents:
diff changeset
29 //
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Note that the following pointers are effectively final -- after having been
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // set at JVM startup-time, they should never be subsequently mutated.
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Instead of using pointers to malloc()ed monitors and mutexes we should consider
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // eliminating the indirection and using instances instead.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Consider using GCC's __read_mostly.
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Mutex* Patching_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Monitor* SystemDictionary_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 Mutex* PackageTable_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 Mutex* CompiledIC_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 Mutex* InlineCacheBuffer_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 Mutex* VMStatistic_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 Mutex* JNIGlobalHandle_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Mutex* JNIHandleBlockFreeList_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Mutex* JNICachedItableIndex_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Mutex* JmethodIdCreation_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 Mutex* JfieldIdCreation_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 Monitor* JNICritical_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 Mutex* JvmtiThreadState_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Monitor* JvmtiPendingEvent_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 Mutex* Heap_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 Mutex* ExpandHeap_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Mutex* AdapterHandlerLibrary_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 Mutex* SignatureHandlerLibrary_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 Mutex* VtableStubs_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 Mutex* SymbolTable_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 Mutex* StringTable_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Mutex* CodeCache_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 Mutex* MethodData_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 Mutex* RetData_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 Monitor* VMOperationQueue_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 Monitor* VMOperationRequest_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 Monitor* Safepoint_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 Monitor* SerializePage_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 Monitor* Threads_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
65 Monitor* CGC_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 Mutex* STS_init_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 Monitor* SLT_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 Monitor* iCMS_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 Monitor* FullGCCount_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 Mutex* ParGCRareEvent_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 Mutex* DerivedPointerTableGC_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 Mutex* Compile_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 Monitor* MethodCompileQueue_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
75 Monitor* C1_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
77 Monitor* CompileThread_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 Mutex* CompileTaskAlloc_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 Mutex* CompileStatistics_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 Mutex* MultiArray_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 Monitor* Terminator_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 Monitor* BeforeExit_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 Monitor* Notify_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 Monitor* Interrupt_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 Monitor* ProfileVM_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 Mutex* ProfilePrint_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
87 Mutex* ExceptionCache_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 Monitor* ObjAllocPost_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 Mutex* OsrList_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
91 Mutex* FullGCALot_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 Mutex* Debug1_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 Mutex* Debug2_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 Mutex* Debug3_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 Mutex* tty_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 Mutex* RawMonitor_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 Mutex* PerfDataMemAlloc_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 Mutex* PerfDataManager_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 Mutex* OopMapCacheAlloc_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 Monitor* GCTaskManager_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 Mutex* Management_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 Monitor* LowMemory_lock = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 #define MAX_NUM_MUTEX 128
a61af66fc99e Initial load
duke
parents:
diff changeset
111 static Monitor * _mutex_array[MAX_NUM_MUTEX];
a61af66fc99e Initial load
duke
parents:
diff changeset
112 static int _num_mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void assert_locked_or_safepoint(const Monitor * lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // check if this thread owns the lock (common case)
a61af66fc99e Initial load
duke
parents:
diff changeset
117 if (IgnoreLockingAssertions) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 assert(lock != NULL, "Need non-NULL lock");
a61af66fc99e Initial load
duke
parents:
diff changeset
119 if (lock->owned_by_self()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 if (SafepointSynchronize::is_at_safepoint()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 if (!Universe::is_fully_initialized()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // see if invoker of VM operation owns it
a61af66fc99e Initial load
duke
parents:
diff changeset
123 VM_Operation* op = VMThread::vm_operation();
a61af66fc99e Initial load
duke
parents:
diff changeset
124 if (op != NULL && op->calling_thread() == lock->owner()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 fatal1("must own lock %s", lock->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
126 }
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // a stronger assertion than the above
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void assert_lock_strong(const Monitor * lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 if (IgnoreLockingAssertions) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 assert(lock != NULL, "Need non-NULL lock");
a61af66fc99e Initial load
duke
parents:
diff changeset
132 if (lock->owned_by_self()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
133 fatal1("must own lock %s", lock->name());
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
a61af66fc99e Initial load
duke
parents:
diff changeset
135 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 #define def(var, type, pri, vm_block) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
138 var = new type(Mutex::pri, #var, vm_block); \
a61af66fc99e Initial load
duke
parents:
diff changeset
139 assert(_num_mutex < MAX_NUM_MUTEX, \
a61af66fc99e Initial load
duke
parents:
diff changeset
140 "increase MAX_NUM_MUTEX"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
141 _mutex_array[_num_mutex++] = var; \
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 void mutex_init() {
a61af66fc99e Initial load
duke
parents:
diff changeset
145 def(tty_lock , Mutex , event, true ); // allow to lock in VM
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 def(CGC_lock , Monitor, special, true ); // coordinate between fore- and background GC
a61af66fc99e Initial load
duke
parents:
diff changeset
148 def(STS_init_lock , Mutex, leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
149 if (UseConcMarkSweepGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
150 def(iCMS_lock , Monitor, special, true ); // CMS incremental mode start/stop notification
a61af66fc99e Initial load
duke
parents:
diff changeset
151 def(FullGCCount_lock , Monitor, leaf, true ); // in support of ExplicitGCInvokesConcurrent
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153 def(ParGCRareEvent_lock , Mutex , leaf , true );
a61af66fc99e Initial load
duke
parents:
diff changeset
154 def(DerivedPointerTableGC_lock , Mutex, leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
155 def(CodeCache_lock , Mutex , special, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
156 def(Interrupt_lock , Monitor, special, true ); // used for interrupt processing
a61af66fc99e Initial load
duke
parents:
diff changeset
157 def(RawMonitor_lock , Mutex, special, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
158 def(OopMapCacheAlloc_lock , Mutex, leaf, true ); // used for oop_map_cache allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 def(Patching_lock , Mutex , special, true ); // used for safepointing and code patching.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 def(ObjAllocPost_lock , Monitor, special, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 def(LowMemory_lock , Monitor, special, true ); // used for low memory detection
a61af66fc99e Initial load
duke
parents:
diff changeset
163 def(JmethodIdCreation_lock , Mutex , leaf, true ); // used for creating jmethodIDs.
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 def(SystemDictionary_lock , Monitor, leaf, true ); // lookups done by VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
166 def(PackageTable_lock , Mutex , leaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 def(InlineCacheBuffer_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
168 def(VMStatistic_lock , Mutex , leaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 def(ExpandHeap_lock , Mutex , leaf, true ); // Used during compilation by VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
170 def(JNIHandleBlockFreeList_lock , Mutex , leaf, true ); // handles are used by VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
171 def(SignatureHandlerLibrary_lock , Mutex , leaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
172 def(SymbolTable_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
173 def(StringTable_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
174 def(ProfilePrint_lock , Mutex , leaf, false); // serial profile printing
a61af66fc99e Initial load
duke
parents:
diff changeset
175 def(ExceptionCache_lock , Mutex , leaf, false); // serial profile printing
a61af66fc99e Initial load
duke
parents:
diff changeset
176 def(OsrList_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
177 def(Debug1_lock , Mutex , leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
178 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
179 def(FullGCALot_lock , Mutex , leaf, false); // a lock to make FullGCALot MT safe
a61af66fc99e Initial load
duke
parents:
diff changeset
180 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
181 def(BeforeExit_lock , Monitor, leaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
182 def(PerfDataMemAlloc_lock , Mutex , leaf, true ); // used for allocating PerfData memory for performance data
a61af66fc99e Initial load
duke
parents:
diff changeset
183 def(PerfDataManager_lock , Mutex , leaf, true ); // used for synchronized access to PerfDataManager resources
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // CMS_modUnionTable_lock leaf
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // CMS_bitMap_lock leaf + 1
a61af66fc99e Initial load
duke
parents:
diff changeset
187 // CMS_freeList_lock leaf + 2
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 def(Safepoint_lock , Monitor, safepoint, true ); // locks SnippetCache_lock/Threads_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 def(Threads_lock , Monitor, barrier, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 def(VMOperationQueue_lock , Monitor, nonleaf, true ); // VM_thread allowed to block on these
a61af66fc99e Initial load
duke
parents:
diff changeset
194 def(VMOperationRequest_lock , Monitor, nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
195 def(RetData_lock , Mutex , nonleaf, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 def(Terminator_lock , Monitor, nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
197 def(VtableStubs_lock , Mutex , nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
198 def(Notify_lock , Monitor, nonleaf, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
199 def(JNIGlobalHandle_lock , Mutex , nonleaf, true ); // locks JNIHandleBlockFreeList_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
200 def(JNICritical_lock , Monitor, nonleaf, true ); // used for JNI critical regions
a61af66fc99e Initial load
duke
parents:
diff changeset
201 def(AdapterHandlerLibrary_lock , Mutex , nonleaf, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 if (UseConcMarkSweepGC) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 def(SLT_lock , Monitor, nonleaf, false );
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // used in CMS GC for locking PLL lock
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206 def(Heap_lock , Mutex , nonleaf+1, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 def(JfieldIdCreation_lock , Mutex , nonleaf+1, true ); // jfieldID, Used in VM_Operation
a61af66fc99e Initial load
duke
parents:
diff changeset
208 def(JNICachedItableIndex_lock , Mutex , nonleaf+1, false); // Used to cache an itable index during JNI invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 def(CompiledIC_lock , Mutex , nonleaf+2, false); // locks VtableStubs_lock, InlineCacheBuffer_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
211 def(CompileTaskAlloc_lock , Mutex , nonleaf+2, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
212 def(CompileStatistics_lock , Mutex , nonleaf+2, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 def(MultiArray_lock , Mutex , nonleaf+2, false); // locks SymbolTable_lock
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 def(JvmtiThreadState_lock , Mutex , nonleaf+2, false); // Used by JvmtiThreadState/JvmtiEventController
a61af66fc99e Initial load
duke
parents:
diff changeset
216 def(JvmtiPendingEvent_lock , Monitor, nonleaf, false); // Used by JvmtiCodeBlobEvents
a61af66fc99e Initial load
duke
parents:
diff changeset
217 def(Management_lock , Mutex , nonleaf+2, false); // used for JVM management
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 def(Compile_lock , Mutex , nonleaf+3, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
220 def(MethodData_lock , Mutex , nonleaf+3, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 def(MethodCompileQueue_lock , Monitor, nonleaf+4, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
223 def(Debug2_lock , Mutex , nonleaf+4, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
224 def(Debug3_lock , Mutex , nonleaf+4, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
225 def(ProfileVM_lock , Monitor, nonleaf+4, false); // used for profiling of the VMThread
a61af66fc99e Initial load
duke
parents:
diff changeset
226 def(CompileThread_lock , Monitor, nonleaf+5, false );
a61af66fc99e Initial load
duke
parents:
diff changeset
227 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
228 def(C1_lock , Monitor, nonleaf+5, false );
a61af66fc99e Initial load
duke
parents:
diff changeset
229 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 GCMutexLocker::GCMutexLocker(Monitor * mutex) {
a61af66fc99e Initial load
duke
parents:
diff changeset
235 if (SafepointSynchronize::is_at_safepoint()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 _locked = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
238 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 _locked = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
241 }
a61af66fc99e Initial load
duke
parents:
diff changeset
242 }
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // Print all mutexes/monitors that are currently owned by a thread; called
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // by fatal error handler.
a61af66fc99e Initial load
duke
parents:
diff changeset
246 void print_owned_locks_on_error(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247 st->print("VM Mutex/Monitor currently owned by a thread: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
248 bool none = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
249 for (int i = 0; i < _num_mutex; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // see if it has an owner
a61af66fc99e Initial load
duke
parents:
diff changeset
251 if (_mutex_array[i]->owner() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 if (none) {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // print format used by Mutex::print_on_error()
a61af66fc99e Initial load
duke
parents:
diff changeset
254 st->print_cr(" ([mutex/lock_event])");
a61af66fc99e Initial load
duke
parents:
diff changeset
255 none = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257 _mutex_array[i]->print_on_error(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260 }
a61af66fc99e Initial load
duke
parents:
diff changeset
261 if (none) st->print_cr("None");
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }