@@ -77,6 +77,7 @@ class HandshakeOperation : public CHeapObj<mtThread> {
77
77
int32_t pending_threads () { return Atomic::load (&_pending_threads); }
78
78
const char * name () { return _handshake_cl->name (); }
79
79
bool is_async () { return _handshake_cl->is_async (); }
80
+ bool is_suspend () { return _handshake_cl->is_suspend (); }
80
81
};
81
82
82
83
class AsyncHandshakeOperation : public HandshakeOperation {
@@ -376,6 +377,7 @@ void Handshake::execute(HandshakeClosure* hs_cl, JavaThread* target) {
376
377
// Check for pending handshakes to avoid possible deadlocks where our
377
378
// target is trying to handshake us.
378
379
if (SafepointMechanism::should_process (self)) {
380
+ // Will not suspend here.
379
381
ThreadBlockInVM tbivm (self);
380
382
}
381
383
hsy.process ();
@@ -425,11 +427,19 @@ bool HandshakeState::operation_pending(HandshakeOperation* op) {
425
427
return _queue.contains (mo);
426
428
}
427
429
428
- HandshakeOperation* HandshakeState::get_op_for_self () {
430
+ static bool no_suspend_filter (HandshakeOperation* op) {
431
+ return !op->is_suspend ();
432
+ }
433
+
434
+ HandshakeOperation* HandshakeState::get_op_for_self (bool allow_suspend) {
429
435
assert (_handshakee == Thread::current (), " Must be called by self" );
430
436
assert (_lock.owned_by_self (), " Lock must be held" );
431
- return _queue.peek ();
432
- };
437
+ if (allow_suspend) {
438
+ return _queue.peek ();
439
+ } else {
440
+ return _queue.peek (no_suspend_filter);
441
+ }
442
+ }
433
443
434
444
static bool non_self_queue_filter (HandshakeOperation* op) {
435
445
return !op->is_async ();
@@ -441,6 +451,11 @@ bool HandshakeState::have_non_self_executable_operation() {
441
451
return _queue.contains (non_self_queue_filter);
442
452
}
443
453
454
+ bool HandshakeState::has_a_non_suspend_operation () {
455
+ MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
456
+ return _queue.contains (no_suspend_filter);
457
+ }
458
+
444
459
HandshakeOperation* HandshakeState::get_op () {
445
460
assert (_handshakee != Thread::current (), " Must not be called by self" );
446
461
assert (_lock.owned_by_self (), " Lock must be held" );
@@ -454,25 +469,22 @@ void HandshakeState::remove_op(HandshakeOperation* op) {
454
469
assert (ret == op, " Popped op must match requested op" );
455
470
};
456
471
457
- bool HandshakeState::process_by_self () {
472
+ bool HandshakeState::process_by_self (bool allow_suspend ) {
458
473
assert (Thread::current () == _handshakee, " should call from _handshakee" );
459
474
assert (!_handshakee->is_terminated (), " should not be a terminated thread" );
460
475
assert (_handshakee->thread_state () != _thread_blocked, " should not be in a blocked state" );
461
476
assert (_handshakee->thread_state () != _thread_in_native, " should not be in native" );
477
+
462
478
ThreadInVMForHandshake tivm (_handshakee);
463
- {
464
- // Handshakes cannot safely safepoint.
465
- // The exception to this rule is the asynchronous suspension handshake.
466
- // It by-passes the NSV by manually doing the transition.
467
- NoSafepointVerifier nsv;
468
- return process_self_inner ();
469
- }
470
- }
479
+ // Handshakes cannot safely safepoint.
480
+ // The exception to this rule is the asynchronous suspension handshake.
481
+ // It by-passes the NSV by manually doing the transition.
482
+ NoSafepointVerifier nsv;
471
483
472
- bool HandshakeState::process_self_inner () {
473
484
while (has_operation ()) {
474
485
MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
475
- HandshakeOperation* op = get_op_for_self ();
486
+
487
+ HandshakeOperation* op = get_op_for_self (allow_suspend);
476
488
if (op != NULL ) {
477
489
assert (op->_target == NULL || op->_target == Thread::current (), " Wrong thread" );
478
490
bool async = op->is_async ();
@@ -621,6 +633,7 @@ class ThreadSelfSuspensionHandshake : public AsyncHandshakeClosure {
621
633
assert (current == Thread::current (), " Must be self executed." );
622
634
current->handshake_state ()->do_self_suspend ();
623
635
}
636
+ virtual bool is_suspend () { return true ; }
624
637
};
625
638
626
639
bool HandshakeState::suspend_with_handshake () {
@@ -667,8 +680,15 @@ class SuspendThreadHandshake : public HandshakeClosure {
667
680
};
668
681
669
682
bool HandshakeState::suspend () {
683
+ JavaThread* self = JavaThread::current ();
670
684
SuspendThreadHandshake st;
671
685
Handshake::execute (&st, _handshakee);
686
+ if (_handshakee == self) {
687
+ // If target is the current thread we need to call this to do the
688
+ // actual suspend since Handshake::execute() above only installed
689
+ // the asynchronous handshake.
690
+ SafepointMechanism::process_if_requested (self);
691
+ }
672
692
return st.did_suspend ();
673
693
}
674
694
1 commit comments
openjdk-notifier[bot] commentedon Jul 23, 2021
Review