Skip to content

Commit 6c933c1

Browse files
committedOct 19, 2022
8295655: [lworld] AArch64: Deoptimization from return value stub fails
1 parent 688186b commit 6c933c1

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1062,15 +1062,15 @@ AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters(MacroAssembler* masm
10621062
if (regs_cc != regs_cc_ro) {
10631063
// No class init barrier needed because method is guaranteed to be non-static
10641064
gen_c2i_adapter(masm, sig_cc_ro, regs_cc_ro, /* requires_clinit_barrier = */ false, c2i_no_clinit_check_entry,
1065-
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* requires_clinit_barrier = */ false);
1065+
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* alloc_inline_receiver = */ false);
10661066
skip_fixup.reset();
10671067
}
10681068

10691069
// Scalarized c2i adapter
10701070
address c2i_entry = __ pc();
10711071
address c2i_inline_entry = __ pc();
10721072
gen_c2i_adapter(masm, sig_cc, regs_cc, /* requires_clinit_barrier = */ true, c2i_no_clinit_check_entry,
1073-
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* requires_clinit_barrier = */ true);
1073+
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* alloc_inline_receiver = */ true);
10741074

10751075
// Non-scalarized c2i adapter
10761076
if (regs != regs_cc) {
@@ -1080,7 +1080,7 @@ AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters(MacroAssembler* masm
10801080

10811081
c2i_inline_entry = __ pc();
10821082
gen_c2i_adapter(masm, sig, regs, /* requires_clinit_barrier = */ true, c2i_no_clinit_check_entry,
1083-
inline_entry_skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* requires_clinit_barrier = */ false);
1083+
inline_entry_skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* alloc_inline_receiver = */ false);
10841084
}
10851085

10861086
__ flush();

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -7869,7 +7869,7 @@ class StubGenerator: public StubCodeGenerator {
78697869

78707870
// Set up last_Java_sp and last_Java_fp
78717871
address the_pc = __ pc();
7872-
__ set_last_Java_frame(sp, rfp, the_pc, rscratch1);
7872+
__ set_last_Java_frame(sp, noreg, the_pc, rscratch1);
78737873

78747874
// Call runtime
78757875
__ mov(c_rarg1, r0);

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1290,15 +1290,15 @@ AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters(MacroAssembler* masm
12901290
if (regs_cc != regs_cc_ro) {
12911291
// No class init barrier needed because method is guaranteed to be non-static
12921292
gen_c2i_adapter(masm, sig_cc_ro, regs_cc_ro, /* requires_clinit_barrier = */ false, c2i_no_clinit_check_entry,
1293-
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* requires_clinit_barrier = */ false);
1293+
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* alloc_inline_receiver = */ false);
12941294
skip_fixup.reset();
12951295
}
12961296

12971297
// Scalarized c2i adapter
12981298
address c2i_entry = __ pc();
12991299
address c2i_inline_entry = __ pc();
13001300
gen_c2i_adapter(masm, sig_cc, regs_cc, /* requires_clinit_barrier = */ true, c2i_no_clinit_check_entry,
1301-
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* requires_clinit_barrier = */ true);
1301+
skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* alloc_inline_receiver = */ true);
13021302

13031303
// Non-scalarized c2i adapter
13041304
if (regs != regs_cc) {
@@ -1308,7 +1308,7 @@ AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters(MacroAssembler* masm
13081308

13091309
c2i_inline_entry = __ pc();
13101310
gen_c2i_adapter(masm, sig, regs, /* requires_clinit_barrier = */ true, c2i_no_clinit_check_entry,
1311-
inline_entry_skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* requires_clinit_barrier = */ false);
1311+
inline_entry_skip_fixup, i2c_entry, oop_maps, frame_complete, frame_size_in_words, /* alloc_inline_receiver = */ false);
13121312
}
13131313

13141314
__ flush();

0 commit comments

Comments
 (0)
Please sign in to comment.