Skip to content

Commit 4628763

Browse files
committedFeb 12, 2024
8320302: compiler/arguments/TestC1Globals.java hits SIGSEGV in ContinuationEntry::set_enter_code
Reviewed-by: dholmes, coleenp
1 parent 1e4b701 commit 4628763

File tree

7 files changed

+20
-8
lines changed

7 files changed

+20
-8
lines changed
 

‎src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1391,6 +1391,7 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
13911391
in_ByteSize(-1),
13921392
oop_maps,
13931393
exception_offset);
1394+
if (nm == nullptr) return nm;
13941395
if (method->is_continuation_enter_intrinsic()) {
13951396
ContinuationEntry::set_enter_code(nm, interpreted_entry_offset);
13961397
} else if (method->is_continuation_yield_intrinsic()) {

‎src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -2039,6 +2039,7 @@ nmethod *SharedRuntime::generate_native_wrapper(MacroAssembler *masm,
20392039
in_ByteSize(-1),
20402040
oop_maps,
20412041
exception_offset);
2042+
if (nm == nullptr) return nm;
20422043
if (method->is_continuation_enter_intrinsic()) {
20432044
ContinuationEntry::set_enter_code(nm, interpreted_entry_offset);
20442045
} else if (method->is_continuation_yield_intrinsic()) {

‎src/hotspot/cpu/riscv/sharedRuntime_riscv.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1271,6 +1271,7 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
12711271
in_ByteSize(-1),
12721272
oop_maps,
12731273
exception_offset);
1274+
if (nm == nullptr) return nm;
12741275
if (method->is_continuation_enter_intrinsic()) {
12751276
ContinuationEntry::set_enter_code(nm, interpreted_entry_offset);
12761277
} else if (method->is_continuation_yield_intrinsic()) {

‎src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1744,6 +1744,7 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
17441744
in_ByteSize(-1),
17451745
oop_maps,
17461746
exception_offset);
1747+
if (nm == nullptr) return nm;
17471748
if (method->is_continuation_enter_intrinsic()) {
17481749
ContinuationEntry::set_enter_code(nm, interpreted_entry_offset);
17491750
} else if (method->is_continuation_yield_intrinsic()) {

‎src/hotspot/share/interpreter/linkResolver.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -1085,13 +1085,6 @@ void LinkResolver::resolve_static_call(CallInfo& result,
10851085
resolved_method = linktime_resolve_static_method(new_info, CHECK);
10861086
}
10871087

1088-
if (resolved_method->is_continuation_native_intrinsic()
1089-
&& resolved_method->from_interpreted_entry() == nullptr) { // does a load_acquire
1090-
methodHandle mh(THREAD, resolved_method);
1091-
// Generate a compiled form of the enterSpecial intrinsic.
1092-
AdapterHandlerLibrary::create_native_wrapper(mh);
1093-
}
1094-
10951088
// setup result
10961089
result.set_static(resolved_klass, methodHandle(THREAD, resolved_method), CHECK);
10971090
JFR_ONLY(Jfr::on_resolution(result, CHECK);)

‎src/hotspot/share/oops/method.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
#include "runtime/safepointVerifiers.hpp"
7373
#include "runtime/sharedRuntime.hpp"
7474
#include "runtime/signature.hpp"
75+
#include "runtime/threads.hpp"
7576
#include "runtime/vm_version.hpp"
7677
#include "utilities/align.hpp"
7778
#include "utilities/quickSort.hpp"
@@ -1249,10 +1250,17 @@ void Method::link_method(const methodHandle& h_method, TRAPS) {
12491250
// ONLY USE the h_method now as make_adapter may have blocked
12501251

12511252
if (h_method->is_continuation_native_intrinsic()) {
1252-
// the entry points to this method will be set in set_code, called when first resolving this method
12531253
_from_interpreted_entry = nullptr;
12541254
_from_compiled_entry = nullptr;
12551255
_i2i_entry = nullptr;
1256+
if (Continuations::enabled()) {
1257+
assert(!Threads::is_vm_complete(), "should only be called during vm init");
1258+
AdapterHandlerLibrary::create_native_wrapper(h_method);
1259+
if (!h_method->has_compiled_code()) {
1260+
THROW_MSG(vmSymbols::java_lang_OutOfMemoryError(), "Initial size of CodeCache is too small");
1261+
}
1262+
assert(_from_interpreted_entry == get_i2c_entry(), "invariant");
1263+
}
12561264
}
12571265
}
12581266

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

+7
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,13 @@ jint Threads::create_vm(JavaVMInitArgs* args, bool* canTryAgain) {
749749
// cache the system and platform class loaders
750750
SystemDictionary::compute_java_loaders(CHECK_JNI_ERR);
751751

752+
if (Continuations::enabled()) {
753+
// Initialize Continuation class now so that failure to create enterSpecial/doYield
754+
// special nmethods due to limited CodeCache size can be treated as a fatal error at
755+
// startup with the proper message that CodeCache size is too small.
756+
initialize_class(vmSymbols::jdk_internal_vm_Continuation(), CHECK_JNI_ERR);
757+
}
758+
752759
#if INCLUDE_CDS
753760
// capture the module path info from the ModuleEntryTable
754761
ClassLoader::initialize_module_path(THREAD);

0 commit comments

Comments
 (0)
Please sign in to comment.