Skip to content

Commit 76f792b

Browse files
committedJan 24, 2025
8348203: [JVMCI] Make eager JVMCI initialization observable in the debugger
Reviewed-by: dnsimon
1 parent 909cef5 commit 76f792b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -808,12 +808,6 @@ jint Threads::create_vm(JavaVMInitArgs* args, bool* canTryAgain) {
808808
}
809809
#endif
810810

811-
#if INCLUDE_JVMCI
812-
if (force_JVMCI_initialization) {
813-
JVMCI::initialize_compiler(CHECK_JNI_ERR);
814-
}
815-
#endif
816-
817811
if (NativeHeapTrimmer::enabled()) {
818812
NativeHeapTrimmer::initialize();
819813
}
@@ -828,6 +822,12 @@ jint Threads::create_vm(JavaVMInitArgs* args, bool* canTryAgain) {
828822
// Notify JVMTI agents that VM initialization is complete - nop if no agents.
829823
JvmtiExport::post_vm_initialized();
830824

825+
#if INCLUDE_JVMCI
826+
if (force_JVMCI_initialization) {
827+
JVMCI::initialize_compiler(CHECK_JNI_ERR);
828+
}
829+
#endif
830+
831831
JFR_ONLY(Jfr::on_create_vm_3();)
832832

833833
#if INCLUDE_MANAGEMENT

0 commit comments

Comments
 (0)
Please sign in to comment.