31
31
#include " runtime/osThread.hpp"
32
32
#include " runtime/safepointMechanism.inline.hpp"
33
33
#include " runtime/thread.inline.hpp"
34
+ #include " runtime/threadCritical.hpp"
34
35
#include " utilities/events.hpp"
35
36
#include " utilities/macros.hpp"
36
37
@@ -267,7 +268,36 @@ bool Monitor::wait(int64_t timeout) {
267
268
return wait_status != 0 ; // return true IFF timeout
268
269
}
269
270
271
+ // Array used to print owned locks on error.
272
+ static Mutex* _mutex_array = NULL ;
273
+
274
+ void Mutex::add_to_global_list () {
275
+ // Add mutex to print_owned_locks_on_error array
276
+ ThreadCritical tc;
277
+ Mutex* next = _mutex_array;
278
+ _next_mutex = next;
279
+ _prev_mutex = nullptr ;
280
+ _mutex_array = this ;
281
+ if (next != nullptr ) {
282
+ next->_prev_mutex = this ;
283
+ }
284
+ }
285
+
286
+ void Mutex::remove_from_global_list () {
287
+ // Remove mutex from print_owned_locks_on_error array
288
+ ThreadCritical tc;
289
+ Mutex* old_next = _next_mutex;
290
+ assert (old_next != nullptr , " this list can never be empty" );
291
+ old_next->_prev_mutex = _prev_mutex;
292
+ if (_prev_mutex == nullptr ) {
293
+ _mutex_array = old_next;
294
+ } else {
295
+ _prev_mutex->_next_mutex = old_next;
296
+ }
297
+ }
298
+
270
299
Mutex::~Mutex () {
300
+ remove_from_global_list ();
271
301
assert_owner (NULL );
272
302
os::free (const_cast <char *>(_name));
273
303
}
@@ -280,6 +310,8 @@ Mutex::Mutex(Rank rank, const char * name, bool allow_vm_block) : _owner(NULL) {
280
310
_allow_vm_block = allow_vm_block;
281
311
_rank = rank;
282
312
_skip_rank_check = false ;
313
+ _next = nullptr ;
314
+ _last_owner = nullptr ;
283
315
284
316
assert (_rank >= static_cast <Rank>(0 ) && _rank <= safepoint, " Bad lock rank %s: %s" , rank_name (), name);
285
317
@@ -288,16 +320,51 @@ Mutex::Mutex(Rank rank, const char * name, bool allow_vm_block) : _owner(NULL) {
288
320
assert (_rank > nosafepoint || _allow_vm_block,
289
321
" Locks that don't check for safepoint should always allow the vm to block: %s" , name);
290
322
#endif
323
+ add_to_global_list ();
291
324
}
292
325
293
326
bool Mutex::owned_by_self () const {
294
327
return owner () == Thread::current ();
295
328
}
296
329
297
- void Mutex::print_on_error (outputStream* st) const {
330
+ void Mutex::print_on (outputStream* st) const {
298
331
st->print (" [" PTR_FORMAT, p2i (this ));
299
332
st->print (" ] %s" , _name);
300
333
st->print (" - owner thread: " PTR_FORMAT, p2i (owner ()));
334
+ #ifdef ASSERT
335
+ if (_allow_vm_block) {
336
+ st->print_raw (" allow_vm_block" );
337
+ }
338
+ st->print (" %s" , rank_name ());
339
+ #endif
340
+ st->cr ();
341
+ }
342
+
343
+ // Print all mutexes/monitors that are currently owned by a thread; called
344
+ // by fatal error handler.
345
+ // This function doesn't take the ThreadCritical lock to avoid potential
346
+ // deadlock during error reporting.
347
+ void Mutex::print_owned_locks_on_error (outputStream* st) {
348
+ assert (VMError::is_error_reported (), " should only be called during error reporting" );
349
+ ResourceMark rm;
350
+ st->print (" VM Mutexes/Monitors currently owned by a thread: " );
351
+ bool none = true ;
352
+ Mutex *m = _mutex_array;
353
+ int array_count = 0 ;
354
+ while (m != nullptr ) {
355
+ array_count++;
356
+ // see if it has an owner
357
+ if (m->owner () != NULL ) {
358
+ if (none) {
359
+ st->cr ();
360
+ none = false ;
361
+ }
362
+ m->print_on (st);
363
+ }
364
+ m = m->_next_mutex ;
365
+ }
366
+ if (none) st->print_cr (" None" );
367
+ st->print_cr (" Total Mutex count %d" , array_count);
301
368
}
302
369
303
370
// ----------------------------------------------------------------------------------
@@ -343,21 +410,7 @@ void Mutex::assert_no_overlap(Rank orig, Rank adjusted, int adjust) {
343
410
rank_name_internal (orig), adjust, rank_name_internal (adjusted));
344
411
}
345
412
}
346
- #endif // ASSERT
347
-
348
- #ifndef PRODUCT
349
- void Mutex::print_on (outputStream* st) const {
350
- st->print (" Mutex: [" PTR_FORMAT " ] %s - owner: " PTR_FORMAT,
351
- p2i (this ), _name, p2i (owner ()));
352
- if (_allow_vm_block) {
353
- st->print (" %s" , " allow_vm_block" );
354
- }
355
- DEBUG_ONLY (st->print (" %s" , rank_name ()));
356
- st->cr ();
357
- }
358
- #endif // PRODUCT
359
413
360
- #ifdef ASSERT
361
414
void Mutex::assert_owner (Thread * expected) {
362
415
const char * msg = " invalid owner" ;
363
416
if (expected == NULL ) {
0 commit comments