Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.
/ jdk13u-dev Public archive

Commit dd8262d

Browse files
author
Vladimir Kempik
committedMay 21, 2021
8267235: [macos_aarch64] InterpreterRuntime::throw_pending_exception messing up LR results in crash
Backport-of: ca93399af103384e750dabf3abcc6e8392bcf3f4
1 parent ebb6843 commit dd8262d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

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

+5
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,11 @@ void MacroAssembler::call_VM_base(Register oop_result,
697697
// do the call, remove parameters
698698
MacroAssembler::call_VM_leaf_base(entry_point, number_of_arguments, &l);
699699

700+
// lr could be poisoned with PAC signature during throw_pending_exception
701+
// if it was tail-call optimized by compiler, since lr is not callee-saved
702+
// reload it with proper value
703+
adr(lr, l);
704+
700705
// reset last Java frame
701706
// Only interpreter should have to clear fp
702707
reset_last_Java_frame(true);

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on May 21, 2021

@openjdk-notifier[bot]
This repository has been archived.