mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-21 15:55:15 +00:00
8072129: [AARCH64] missing fix for 8066900
Add 8066900 fix to arm64 code. Reviewed-by: kvn
This commit is contained in:
parent
610bd6ba34
commit
db7a37cee0
@ -376,7 +376,7 @@ OopMapSet* Runtime1::generate_handle_exception(StubID id, StubAssembler *sasm) {
|
||||
case handle_exception_nofpu_id:
|
||||
case handle_exception_id:
|
||||
// At this point all registers MAY be live.
|
||||
oop_map = save_live_registers(sasm, id == handle_exception_nofpu_id);
|
||||
oop_map = save_live_registers(sasm, id != handle_exception_nofpu_id);
|
||||
break;
|
||||
case handle_exception_from_callee_id: {
|
||||
// At this point all registers except exception oop (r0) and
|
||||
@ -440,7 +440,7 @@ OopMapSet* Runtime1::generate_handle_exception(StubID id, StubAssembler *sasm) {
|
||||
case handle_exception_nofpu_id:
|
||||
case handle_exception_id:
|
||||
// Restore the registers that were saved at the beginning.
|
||||
restore_live_registers(sasm, id == handle_exception_nofpu_id);
|
||||
restore_live_registers(sasm, id != handle_exception_nofpu_id);
|
||||
break;
|
||||
case handle_exception_from_callee_id:
|
||||
// Pop the return address since we are possibly changing SP (restoring from BP).
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user