annotate src/share/vm/runtime/mutexLocker.hpp @ 55:2a8eb116ebbe

6610420: Debug VM crashes during monitor lock rank checking Summary: Make SerializePage lock as raw lock and add name for mutex locks Reviewed-by: never, dice, dholmes
author xlu
date Tue, 05 Feb 2008 23:21:57 -0800
parents a61af66fc99e
children d1605aabd0a1 37f87013dfd8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
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 // Mutexes used in the VM.
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 extern Mutex* Patching_lock; // a lock used to guard code patching of compiled code
a61af66fc99e Initial load
duke
parents:
diff changeset
28 extern Monitor* SystemDictionary_lock; // a lock on the system dictonary
a61af66fc99e Initial load
duke
parents:
diff changeset
29 extern Mutex* PackageTable_lock; // a lock on the class loader package table
a61af66fc99e Initial load
duke
parents:
diff changeset
30 extern Mutex* CompiledIC_lock; // a lock used to guard compiled IC patching and access
a61af66fc99e Initial load
duke
parents:
diff changeset
31 extern Mutex* InlineCacheBuffer_lock; // a lock used to guard the InlineCacheBuffer
a61af66fc99e Initial load
duke
parents:
diff changeset
32 extern Mutex* VMStatistic_lock; // a lock used to guard statistics count increment
a61af66fc99e Initial load
duke
parents:
diff changeset
33 extern Mutex* JNIGlobalHandle_lock; // a lock on creating JNI global handles
a61af66fc99e Initial load
duke
parents:
diff changeset
34 extern Mutex* JNIHandleBlockFreeList_lock; // a lock on the JNI handle block free list
a61af66fc99e Initial load
duke
parents:
diff changeset
35 extern Mutex* JNICachedItableIndex_lock; // a lock on caching an itable index during JNI invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
36 extern Mutex* JmethodIdCreation_lock; // a lock on creating JNI method identifiers
a61af66fc99e Initial load
duke
parents:
diff changeset
37 extern Mutex* JfieldIdCreation_lock; // a lock on creating JNI static field identifiers
a61af66fc99e Initial load
duke
parents:
diff changeset
38 extern Monitor* JNICritical_lock; // a lock used while entering and exiting JNI critical regions, allows GC to sometimes get in
a61af66fc99e Initial load
duke
parents:
diff changeset
39 extern Mutex* JvmtiThreadState_lock; // a lock on modification of JVMTI thread data
a61af66fc99e Initial load
duke
parents:
diff changeset
40 extern Monitor* JvmtiPendingEvent_lock; // a lock on the JVMTI pending events list
a61af66fc99e Initial load
duke
parents:
diff changeset
41 extern Mutex* Heap_lock; // a lock on the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
42 extern Mutex* ExpandHeap_lock; // a lock on expanding the heap
a61af66fc99e Initial load
duke
parents:
diff changeset
43 extern Mutex* AdapterHandlerLibrary_lock; // a lock on the AdapterHandlerLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
44 extern Mutex* SignatureHandlerLibrary_lock; // a lock on the SignatureHandlerLibrary
a61af66fc99e Initial load
duke
parents:
diff changeset
45 extern Mutex* VtableStubs_lock; // a lock on the VtableStubs
a61af66fc99e Initial load
duke
parents:
diff changeset
46 extern Mutex* SymbolTable_lock; // a lock on the symbol table
a61af66fc99e Initial load
duke
parents:
diff changeset
47 extern Mutex* StringTable_lock; // a lock on the interned string table
a61af66fc99e Initial load
duke
parents:
diff changeset
48 extern Mutex* CodeCache_lock; // a lock on the CodeCache, rank is special, use MutexLockerEx
a61af66fc99e Initial load
duke
parents:
diff changeset
49 extern Mutex* MethodData_lock; // a lock on installation of method data
a61af66fc99e Initial load
duke
parents:
diff changeset
50 extern Mutex* RetData_lock; // a lock on installation of RetData inside method data
a61af66fc99e Initial load
duke
parents:
diff changeset
51 extern Mutex* DerivedPointerTableGC_lock; // a lock to protect the derived pointer table
a61af66fc99e Initial load
duke
parents:
diff changeset
52 extern Monitor* VMOperationQueue_lock; // a lock on queue of vm_operations waiting to execute
a61af66fc99e Initial load
duke
parents:
diff changeset
53 extern Monitor* VMOperationRequest_lock; // a lock on Threads waiting for a vm_operation to terminate
a61af66fc99e Initial load
duke
parents:
diff changeset
54 extern Monitor* Safepoint_lock; // a lock used by the safepoint abstraction
a61af66fc99e Initial load
duke
parents:
diff changeset
55 extern Monitor* Threads_lock; // a lock on the Threads table of active Java threads
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // (also used by Safepoints too to block threads creation/destruction)
a61af66fc99e Initial load
duke
parents:
diff changeset
57 extern Monitor* CGC_lock; // used for coordination between
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // fore- & background GC threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 extern Mutex* STS_init_lock; // coordinate initialization of SuspendibleThreadSets.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 extern Monitor* SLT_lock; // used in CMS GC for acquiring PLL
a61af66fc99e Initial load
duke
parents:
diff changeset
61 extern Monitor* iCMS_lock; // CMS incremental mode start/stop notification
a61af66fc99e Initial load
duke
parents:
diff changeset
62 extern Monitor* FullGCCount_lock; // in support of "concurrent" full gc
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // (see option ExplicitGCInvokesConcurrent)
a61af66fc99e Initial load
duke
parents:
diff changeset
64 extern Mutex* ParGCRareEvent_lock; // Synchronizes various (rare) parallel GC ops.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 extern Mutex* Compile_lock; // a lock held when Compilation is updating code (used to block CodeCache traversal, CHA updates, etc)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 extern Monitor* MethodCompileQueue_lock; // a lock held when method compilations are enqueued, dequeued
a61af66fc99e Initial load
duke
parents:
diff changeset
67 #ifdef TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
68 extern Monitor* C1_lock; // a lock to ensure on single c1 compile is ever active
a61af66fc99e Initial load
duke
parents:
diff changeset
69 #endif // TIERED
a61af66fc99e Initial load
duke
parents:
diff changeset
70 extern Monitor* CompileThread_lock; // a lock held by compile threads during compilation system initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
71 extern Mutex* CompileTaskAlloc_lock; // a lock held when CompileTasks are allocated
a61af66fc99e Initial load
duke
parents:
diff changeset
72 extern Mutex* CompileStatistics_lock; // a lock held when updating compilation statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
73 extern Mutex* MultiArray_lock; // a lock used to guard allocation of multi-dim arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
74 extern Monitor* Terminator_lock; // a lock used to guard termination of the vm
a61af66fc99e Initial load
duke
parents:
diff changeset
75 extern Monitor* BeforeExit_lock; // a lock used to guard cleanups and shutdown hooks
a61af66fc99e Initial load
duke
parents:
diff changeset
76 extern Monitor* Notify_lock; // a lock used to synchronize the start-up of the vm
a61af66fc99e Initial load
duke
parents:
diff changeset
77 extern Monitor* Interrupt_lock; // a lock used for condition variable mediated interrupt processing
a61af66fc99e Initial load
duke
parents:
diff changeset
78 extern Monitor* ProfileVM_lock; // a lock used for profiling the VMThread
a61af66fc99e Initial load
duke
parents:
diff changeset
79 extern Mutex* ProfilePrint_lock; // a lock used to serialize the printing of profiles
a61af66fc99e Initial load
duke
parents:
diff changeset
80 extern Mutex* ExceptionCache_lock; // a lock used to synchronize exception cache updates
a61af66fc99e Initial load
duke
parents:
diff changeset
81 extern Mutex* OsrList_lock; // a lock used to serialize access to OSR queues
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
84 extern Mutex* FullGCALot_lock; // a lock to make FullGCALot MT safe
a61af66fc99e Initial load
duke
parents:
diff changeset
85 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
86 extern Mutex* Debug1_lock; // A bunch of pre-allocated locks that can be used for tracing
a61af66fc99e Initial load
duke
parents:
diff changeset
87 extern Mutex* Debug2_lock; // down synchronization related bugs!
a61af66fc99e Initial load
duke
parents:
diff changeset
88 extern Mutex* Debug3_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 extern Mutex* RawMonitor_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 extern Mutex* PerfDataMemAlloc_lock; // a lock on the allocator for PerfData memory for performance data
a61af66fc99e Initial load
duke
parents:
diff changeset
92 extern Mutex* PerfDataManager_lock; // a long on access to PerfDataManager resources
a61af66fc99e Initial load
duke
parents:
diff changeset
93 extern Mutex* ParkerFreeList_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 extern Mutex* OopMapCacheAlloc_lock; // protects allocation of oop_map caches
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 extern Mutex* Management_lock; // a lock used to serialize JVM management
a61af66fc99e Initial load
duke
parents:
diff changeset
97 extern Monitor* LowMemory_lock; // a lock used for low memory detection
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // A MutexLocker provides mutual exclusion with respect to a given mutex
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // for the scope which contains the locker. The lock is an OS lock, not
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // an object lock, and the two do not interoperate. Do not use Mutex-based
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // locks to lock on Java objects, because they will not be respected if a
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // that object is locked using the Java locking mechanism.
a61af66fc99e Initial load
duke
parents:
diff changeset
104 //
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // NOTE WELL!!
a61af66fc99e Initial load
duke
parents:
diff changeset
106 //
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // See orderAccess.hpp. We assume throughout the VM that MutexLocker's
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // and friends constructors do a fence, a lock and an acquire *in that
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // order*. And that their destructors do a release and unlock, in *that*
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // order. If their implementations change such that these assumptions
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // are violated, a whole lot of code will break.
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Print all mutexes/monitors that are currently owned by a thread; called
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // by fatal error handler.
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void print_owned_locks_on_error(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 char *lock_name(Mutex *mutex);
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 class MutexLocker: StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
121 Monitor * _mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
123 MutexLocker(Monitor * mutex) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 assert(mutex->rank() != Mutex::special,
a61af66fc99e Initial load
duke
parents:
diff changeset
125 "Special ranked mutex should only use MutexLockerEx");
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Overloaded constructor passing current thread
a61af66fc99e Initial load
duke
parents:
diff changeset
131 MutexLocker(Monitor * mutex, Thread *thread) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 assert(mutex->rank() != Mutex::special,
a61af66fc99e Initial load
duke
parents:
diff changeset
133 "Special ranked mutex should only use MutexLockerEx");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 _mutex->lock(thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 ~MutexLocker() {
a61af66fc99e Initial load
duke
parents:
diff changeset
139 _mutex->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 };
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // for debugging: check that we're already owning this lock (or are at a safepoint)
a61af66fc99e Initial load
duke
parents:
diff changeset
145 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
146 void assert_locked_or_safepoint(const Monitor * lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 void assert_lock_strong(const Monitor * lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
149 #define assert_locked_or_safepoint(lock)
a61af66fc99e Initial load
duke
parents:
diff changeset
150 #define assert_lock_strong(lock)
a61af66fc99e Initial load
duke
parents:
diff changeset
151 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // A MutexLockerEx behaves like a MutexLocker when its constructor is
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // called with a Mutex. Unlike a MutexLocker, its constructor can also be
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // called with NULL, in which case the MutexLockerEx is a no-op. There
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // is also a corresponding MutexUnlockerEx. We want to keep the
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // basic MutexLocker as fast as possible. MutexLockerEx can also lock
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // without safepoint check.
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 class MutexLockerEx: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
162 Monitor * _mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
164 MutexLockerEx(Monitor * mutex, bool no_safepoint_check = !Mutex::_no_safepoint_check_flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
165 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 if (_mutex != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 assert(mutex->rank() > Mutex::special || no_safepoint_check,
a61af66fc99e Initial load
duke
parents:
diff changeset
168 "Mutexes with rank special or lower should not do safepoint checks");
a61af66fc99e Initial load
duke
parents:
diff changeset
169 if (no_safepoint_check)
a61af66fc99e Initial load
duke
parents:
diff changeset
170 _mutex->lock_without_safepoint_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
171 else
a61af66fc99e Initial load
duke
parents:
diff changeset
172 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 ~MutexLockerEx() {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 if (_mutex != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
178 _mutex->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 };
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // A MonitorLockerEx is like a MutexLockerEx above, except it takes
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // a possibly null Monitor, and allows wait/notify as well which are
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // delegated to the underlying Monitor.
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 class MonitorLockerEx: public MutexLockerEx {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
189 Monitor * _monitor;
a61af66fc99e Initial load
duke
parents:
diff changeset
190 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
191 MonitorLockerEx(Monitor* monitor,
a61af66fc99e Initial load
duke
parents:
diff changeset
192 bool no_safepoint_check = !Mutex::_no_safepoint_check_flag):
a61af66fc99e Initial load
duke
parents:
diff changeset
193 MutexLockerEx(monitor, no_safepoint_check),
a61af66fc99e Initial load
duke
parents:
diff changeset
194 _monitor(monitor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 // Superclass constructor did locking
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 ~MonitorLockerEx() {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
200 if (_monitor != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 assert_lock_strong(_monitor);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 }
a61af66fc99e Initial load
duke
parents:
diff changeset
203 #endif // ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // Superclass destructor will do unlocking
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 bool wait(bool no_safepoint_check = !Mutex::_no_safepoint_check_flag,
a61af66fc99e Initial load
duke
parents:
diff changeset
208 long timeout = 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
209 bool as_suspend_equivalent = !Mutex::_as_suspend_equivalent_flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 if (_monitor != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
211 return _monitor->wait(no_safepoint_check, timeout, as_suspend_equivalent);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 }
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 bool notify_all() {
a61af66fc99e Initial load
duke
parents:
diff changeset
217 if (_monitor != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
218 return _monitor->notify_all();
a61af66fc99e Initial load
duke
parents:
diff changeset
219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
220 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 }
a61af66fc99e Initial load
duke
parents:
diff changeset
222
a61af66fc99e Initial load
duke
parents:
diff changeset
223 bool notify() {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if (_monitor != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 return _monitor->notify();
a61af66fc99e Initial load
duke
parents:
diff changeset
226 }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 };
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 // A GCMutexLocker is usually initialized with a mutex that is
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // automatically acquired in order to do GC. The function that
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // synchronizes using a GCMutexLocker may be called both during and between
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // GC's. Thus, it must acquire the mutex if GC is not in progress, but not
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // if GC is in progress (since the mutex is already held on its behalf.)
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 class GCMutexLocker: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
241 Monitor * _mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 bool _locked;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
244 GCMutexLocker(Monitor * mutex);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 ~GCMutexLocker() { if (_locked) _mutex->unlock(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
246 };
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // A MutexUnlocker temporarily exits a previously
a61af66fc99e Initial load
duke
parents:
diff changeset
251 // entered mutex for the scope which contains the unlocker.
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 class MutexUnlocker: StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
255 Monitor * _mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
258 MutexUnlocker(Monitor * mutex) {
a61af66fc99e Initial load
duke
parents:
diff changeset
259 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 _mutex->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
261 }
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 ~MutexUnlocker() {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
265 }
a61af66fc99e Initial load
duke
parents:
diff changeset
266 };
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // A MutexUnlockerEx temporarily exits a previously
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // entered mutex for the scope which contains the unlocker.
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 class MutexUnlockerEx: StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
272 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
273 Monitor * _mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 bool _no_safepoint_check;
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
277 MutexUnlockerEx(Monitor * mutex, bool no_safepoint_check = !Mutex::_no_safepoint_check_flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
278 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
279 _no_safepoint_check = no_safepoint_check;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 _mutex->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
281 }
a61af66fc99e Initial load
duke
parents:
diff changeset
282
a61af66fc99e Initial load
duke
parents:
diff changeset
283 ~MutexUnlockerEx() {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if (_no_safepoint_check == Mutex::_no_safepoint_check_flag) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 _mutex->lock_without_safepoint_check();
a61af66fc99e Initial load
duke
parents:
diff changeset
286 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
287 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
288 }
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290 };
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
293 //
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // A special MutexLocker that allows:
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // - reentrant locking
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // - locking out of order
a61af66fc99e Initial load
duke
parents:
diff changeset
297 //
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // Only too be used for verify code, where we can relaxe out dead-lock
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // dection code a bit (unsafe, but probably ok). This code is NEVER to
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // be included in a product version.
a61af66fc99e Initial load
duke
parents:
diff changeset
301 //
a61af66fc99e Initial load
duke
parents:
diff changeset
302 class VerifyMutexLocker: StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
303 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
304 Monitor * _mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
305 bool _reentrant;
a61af66fc99e Initial load
duke
parents:
diff changeset
306 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
307 VerifyMutexLocker(Monitor * mutex) {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 _mutex = mutex;
a61af66fc99e Initial load
duke
parents:
diff changeset
309 _reentrant = mutex->owned_by_self();
a61af66fc99e Initial load
duke
parents:
diff changeset
310 if (!_reentrant) {
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // We temp. diable strict safepoint checking, while we require the lock
a61af66fc99e Initial load
duke
parents:
diff changeset
312 FlagSetting fs(StrictSafepointChecks, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
313 _mutex->lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
314 }
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 ~VerifyMutexLocker() {
a61af66fc99e Initial load
duke
parents:
diff changeset
318 if (!_reentrant) {
a61af66fc99e Initial load
duke
parents:
diff changeset
319 _mutex->unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 };
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 #endif