Skip to content

Commit 9902e28

Browse files
committedApr 13, 2022
JVMTI review: correct stuck in jvmtiVTMTDisabler trap
1 parent c489198 commit 9902e28

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed
 

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

+12-16
Original file line numberDiff line numberDiff line change
@@ -283,18 +283,14 @@ JvmtiVTMTDisabler::disable_VTMT() {
283283
DEBUG_ONLY(if (attempts == 0) break;)
284284
}
285285
assert(!thread->is_VTMT_disabler(), "VTMT sanity check");
286-
if (attempts != 0) {
287286
#ifdef ASSERT
288-
thread->set_is_VTMT_disabler(true);
289-
#endif
287+
if (attempts == 0) {
288+
print_info();
289+
fatal("stuck in JvmtiVTMTDisabler::disable_VTMT");
290290
}
291-
}
292-
#ifdef ASSERT
293-
if (attempts == 0) {
294-
print_info();
295-
fatal("stuck in JvmtiVTMTDisabler::disable_VTMT");
296-
}
291+
thread->set_is_VTMT_disabler(true);
297292
#endif
293+
}
298294
}
299295

300296
void
@@ -360,13 +356,6 @@ JvmtiVTMTDisabler::start_VTMT(jthread vthread, bool is_mount) {
360356
break;
361357
}
362358
}
363-
// Enter VTMT section.
364-
assert(!thread->is_in_VTMT(), "VTMT sanity check");
365-
thread->set_is_in_VTMT(true);
366-
JvmtiThreadState* vstate = java_lang_Thread::jvmti_thread_state(vth());
367-
if (vstate != NULL) {
368-
vstate->set_is_in_VTMT(true);
369-
}
370359
#ifdef ASSERT
371360
if (attempts == 0) {
372361
log_error(jvmti)("start_VTMT: thread->is_suspended: %d is_vthread_suspended: %d\n\n",
@@ -375,6 +364,13 @@ JvmtiVTMTDisabler::start_VTMT(jthread vthread, bool is_mount) {
375364
fatal("stuck in JvmtiVTMTDisabler::start_VTMT");
376365
}
377366
#endif
367+
// Enter VTMT section.
368+
assert(!thread->is_in_VTMT(), "VTMT sanity check");
369+
thread->set_is_in_VTMT(true);
370+
JvmtiThreadState* vstate = java_lang_Thread::jvmti_thread_state(vth());
371+
if (vstate != NULL) {
372+
vstate->set_is_in_VTMT(true);
373+
}
378374
}
379375

380376
void

0 commit comments

Comments
 (0)
Please sign in to comment.