Skip to content

Commit 3c0b998

Browse files
committedOct 15, 2024
remove explicit check for interp_only_mode
1 parent 1e35c3b commit 3c0b998

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed
 

‎src/hotspot/share/prims/jvmtiExport.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -2868,15 +2868,6 @@ void JvmtiExport::vthread_post_monitor_waited(JavaThread *current, ObjectMonitor
28682868

28692869
// Finish the VTMS transition temporarily to post the event.
28702870
current->rebind_to_jvmti_thread_state_of(vthread());
2871-
{
2872-
MutexLocker mu(JvmtiThreadState_lock);
2873-
JvmtiThreadState* state = current->jvmti_thread_state();
2874-
if (state != NULL && state->is_pending_interp_only_mode()) {
2875-
JvmtiEventController::enter_interp_only_mode(state);
2876-
}
2877-
}
2878-
assert(current->is_in_VTMS_transition(), "sanity check");
2879-
assert(!current->is_in_tmp_VTMS_transition(), "sanity check");
28802871
JvmtiVTMSTransitionDisabler::finish_VTMS_transition((jthread)vthread.raw_value(), /* is_mount */ true);
28812872

28822873
// Post event.

‎src/hotspot/share/prims/jvmtiThreadState.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ JvmtiVTMSTransitionDisabler::finish_VTMS_transition(jthread vthread, bool is_mou
495495
JavaThread* thread = JavaThread::current();
496496

497497
assert(thread->is_in_VTMS_transition(), "sanity check");
498+
assert(!thread->is_in_tmp_VTMS_transition(), "sanity check");
498499
thread->set_is_in_VTMS_transition(false);
499500
oop vt = JNIHandles::resolve_external_guard(vthread);
500501
java_lang_Thread::set_is_in_VTMS_transition(vt, false);

‎src/hotspot/share/runtime/continuationFreezeThaw.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -1604,15 +1604,6 @@ static void jvmti_mount_end(JavaThread* current, ContinuationWrapper& cont, fram
16041604

16051605
JRT_BLOCK
16061606
current->rebind_to_jvmti_thread_state_of(vth());
1607-
{
1608-
MutexLocker mu(JvmtiThreadState_lock);
1609-
JvmtiThreadState* state = current->jvmti_thread_state();
1610-
if (state != NULL && state->is_pending_interp_only_mode()) {
1611-
JvmtiEventController::enter_interp_only_mode(state);
1612-
}
1613-
}
1614-
assert(current->is_in_VTMS_transition(), "sanity check");
1615-
assert(!current->is_in_tmp_VTMS_transition(), "sanity check");
16161607
JvmtiVTMSTransitionDisabler::finish_VTMS_transition((jthread)vth.raw_value(), /* is_mount */ true);
16171608

16181609
// If pending_jvmti_unmount_event() is true here we are in the preemption

0 commit comments

Comments
 (0)
Please sign in to comment.