Skip to content

Commit b9a37e4

Browse files
committedAug 20, 2020
8251923: "Invalid JNI handle" assertion failure in JVMCICompiler::force_comp_at_level_simple()
Reviewed-by: kvn, dnsimon
1 parent 49e7609 commit b9a37e4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/hotspot/share/jvmci/jvmciRuntime.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -893,8 +893,11 @@ void JVMCIRuntime::initialize_HotSpotJVMCIRuntime(JVMCI_TRAPS) {
893893

894894
// This should only be called in the context of the JVMCI class being initialized
895895
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;
896900

897-
_HotSpotJVMCIRuntime_instance = JVMCIENV->make_global(result);
898901
JVMCI::_is_initialized = true;
899902
}
900903

0 commit comments

Comments
 (0)
Please sign in to comment.