@@ -119,15 +119,6 @@ OopStorage* ObjectMonitor::_oop_storage = nullptr;
119
119
OopHandle ObjectMonitor::_vthread_cxq_head;
120
120
ParkEvent* ObjectMonitor::_vthread_unparker_ParkEvent = nullptr ;
121
121
122
- static void post_virtual_thread_pinned_event (JavaThread* current, const char * reason) {
123
- EventVirtualThreadPinned e;
124
- if (e.should_commit ()) {
125
- e.set_pinnedReason (reason);
126
- e.set_carrierThread (JFR_JVM_THREAD_ID (current));
127
- e.commit ();
128
- }
129
- }
130
-
131
122
// -----------------------------------------------------------------------------
132
123
// Theory of operations -- Monitors lists, thread residency, etc:
133
124
//
@@ -489,14 +480,17 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
489
480
assert (!is_being_async_deflated (), " must be" );
490
481
491
482
JFR_ONLY (JfrConditionalFlush<EventJavaMonitorEnter> flush (current);)
492
- EventJavaMonitorEnter event ;
493
- if (event .is_started ()) {
494
- event .set_monitorClass (object ()->klass ());
483
+ EventJavaMonitorEnter enter_event ;
484
+ if (enter_event .is_started ()) {
485
+ enter_event .set_monitorClass (object ()->klass ());
495
486
// Set an address that is 'unique enough', such that events close in
496
487
// time and with the same address are likely (but not guaranteed) to
497
488
// belong to the same object.
498
- event .set_address ((uintptr_t )this );
489
+ enter_event .set_address ((uintptr_t )this );
499
490
}
491
+ EventVirtualThreadPinned vthread_pinned_event;
492
+
493
+ freeze_result result;
500
494
501
495
{ // Change java thread status to indicate blocked on monitor enter.
502
496
JavaThreadBlockedOnMonitorEnterState jtbmes (current, this );
@@ -517,7 +511,7 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
517
511
518
512
ContinuationEntry* ce = current->last_continuation ();
519
513
if (ce != nullptr && ce->is_virtual_thread ()) {
520
- freeze_result result = Continuation::try_preempt (current, ce->cont_oop (current));
514
+ result = Continuation::try_preempt (current, ce->cont_oop (current));
521
515
if (result == freeze_ok) {
522
516
bool acquired = VThreadMonitorEnter (current);
523
517
if (acquired) {
@@ -537,11 +531,6 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
537
531
(!acquired && !current->preemption_cancelled () && state == java_lang_VirtualThread::BLOCKING), " invariant" );
538
532
return ;
539
533
}
540
- if (result == freeze_pinned_native) {
541
- post_virtual_thread_pinned_event (current, " Native frame or <clinit> on stack" );
542
- } else if (result == freeze_unsupported) {
543
- post_virtual_thread_pinned_event (current, " Native frame or <clinit> or monitors on stack" );
544
- }
545
534
}
546
535
547
536
OSThreadContendState osts (current->osthread ());
@@ -603,10 +592,17 @@ void ObjectMonitor::enter_with_contention_mark(JavaThread *current, ObjectMonito
603
592
// event handler consumed an unpark() issued by the thread that
604
593
// just exited the monitor.
605
594
}
606
- if (event.should_commit ()) {
607
- event.set_previousOwner (_previous_owner_tid);
608
- event.commit ();
595
+ if (enter_event.should_commit ()) {
596
+ enter_event.set_previousOwner (_previous_owner_tid);
597
+ enter_event.commit ();
598
+ }
599
+
600
+ ContinuationEntry* ce = current->last_continuation ();
601
+ if (ce != nullptr && ce->is_virtual_thread ()) {
602
+ assert (result != freeze_ok, " sanity check" );
603
+ current->post_vthread_pinned_event (&vthread_pinned_event, " Contended monitor enter" , result);
609
604
}
605
+
610
606
OM_PERFDATA_OP (ContendedLockAttempts, inc ());
611
607
}
612
608
@@ -1662,7 +1658,8 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
1662
1658
1663
1659
CHECK_OWNER (); // Throws IMSE if not owner.
1664
1660
1665
- EventJavaMonitorWait event;
1661
+ EventJavaMonitorWait wait_event;
1662
+ EventVirtualThreadPinned vthread_pinned_event;
1666
1663
1667
1664
// check for a pending interrupt
1668
1665
if (interruptible && current->is_interrupted (true ) && !HAS_PENDING_EXCEPTION) {
@@ -1680,33 +1677,24 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
1680
1677
// consume an unpark() meant for the ParkEvent associated with
1681
1678
// this ObjectMonitor.
1682
1679
}
1683
- if (event .should_commit ()) {
1684
- post_monitor_wait_event (&event , this , 0 , millis, false );
1680
+ if (wait_event .should_commit ()) {
1681
+ post_monitor_wait_event (&wait_event , this , 0 , millis, false );
1685
1682
}
1686
1683
THROW (vmSymbols::java_lang_InterruptedException ());
1687
1684
return ;
1688
1685
}
1689
1686
1690
1687
current->set_current_waiting_monitor (this );
1691
1688
1689
+ freeze_result result;
1692
1690
ContinuationEntry* ce = current->last_continuation ();
1693
1691
if (ce != nullptr && ce->is_virtual_thread ()) {
1694
- freeze_result result = Continuation::try_preempt (current, ce->cont_oop (current));
1692
+ result = Continuation::try_preempt (current, ce->cont_oop (current));
1695
1693
if (result == freeze_ok) {
1696
1694
VThreadWait (current, millis);
1697
1695
current->set_current_waiting_monitor (nullptr );
1698
1696
return ;
1699
1697
}
1700
- if (result == freeze_pinned_native || result == freeze_unsupported) {
1701
- const Klass* monitor_klass = object ()->klass ();
1702
- if (!is_excluded (monitor_klass)) {
1703
- if (result == freeze_pinned_native) {
1704
- post_virtual_thread_pinned_event (current," Native frame or <clinit> on stack" );
1705
- } else if (result == freeze_unsupported) {
1706
- post_virtual_thread_pinned_event (current, " Native frame or <clinit> or monitors on stack" );
1707
- }
1708
- }
1709
- }
1710
1698
}
1711
1699
1712
1700
// create a node to be put into the queue
@@ -1832,8 +1820,13 @@ void ObjectMonitor::wait(jlong millis, bool interruptible, TRAPS) {
1832
1820
}
1833
1821
}
1834
1822
1835
- if (event.should_commit ()) {
1836
- post_monitor_wait_event (&event, this , node._notifier_tid , millis, ret == OS_TIMEOUT);
1823
+ if (wait_event.should_commit ()) {
1824
+ post_monitor_wait_event (&wait_event, this , node._notifier_tid , millis, ret == OS_TIMEOUT);
1825
+ }
1826
+
1827
+ if (ce != nullptr && ce->is_virtual_thread ()) {
1828
+ assert (result != freeze_ok, " sanity check" );
1829
+ current->post_vthread_pinned_event (&vthread_pinned_event, " Object.wait" , result);
1837
1830
}
1838
1831
1839
1832
OrderAccess::fence ();
@@ -2065,9 +2058,9 @@ bool ObjectMonitor::VThreadWaitReenter(JavaThread* current, ObjectWaiter* node,
2065
2058
node->_interrupted = !was_notified && current->is_interrupted (false );
2066
2059
2067
2060
// Post JFR and JVMTI events.
2068
- EventJavaMonitorWait event ;
2069
- if (event .should_commit () || JvmtiExport::should_post_monitor_waited ()) {
2070
- vthread_monitor_waited_event (current, node, cont, &event , !was_notified && !node->_interrupted );
2061
+ EventJavaMonitorWait wait_event ;
2062
+ if (wait_event .should_commit () || JvmtiExport::should_post_monitor_waited ()) {
2063
+ vthread_monitor_waited_event (current, node, cont, &wait_event , !was_notified && !node->_interrupted );
2071
2064
}
2072
2065
2073
2066
// Mark that we are at reenter so that we don't call this method again.
0 commit comments