We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e7609 commit b9a37e4Copy full SHA for b9a37e4
src/hotspot/share/jvmci/jvmciRuntime.cpp
@@ -893,8 +893,11 @@ void JVMCIRuntime::initialize_HotSpotJVMCIRuntime(JVMCI_TRAPS) {
893
894
// This should only be called in the context of the JVMCI class being initialized
895
JVMCIObject result = JVMCIENV->call_HotSpotJVMCIRuntime_runtime(JVMCI_CHECK);
896
+ result = JVMCIENV->make_global(result);
897
+
898
+ OrderAccess::storestore(); // Ensure handle is fully constructed before publishing
899
+ _HotSpotJVMCIRuntime_instance = result;
900
- _HotSpotJVMCIRuntime_instance = JVMCIENV->make_global(result);
901
JVMCI::_is_initialized = true;
902
}
903
0 commit comments