| Index: runtime/vm/stub_code_arm64.cc
|
| diff --git a/runtime/vm/stub_code_arm64.cc b/runtime/vm/stub_code_arm64.cc
|
| index 7ee3dd3b7905cc6aa7a3206422a589d088f94194..fdcf3a70eb86eefbe0b055f5fdd83e3bc23e03e6 100644
|
| --- a/runtime/vm/stub_code_arm64.cc
|
| +++ b/runtime/vm/stub_code_arm64.cc
|
| @@ -542,8 +542,8 @@ static void GenerateDeoptimizationSequence(Assembler* assembler,
|
| __ CallRuntime(kDeoptimizeMaterializeRuntimeEntry, 0);
|
| // Result tells stub how many bytes to remove from the expression stack
|
| // of the bottom-most frame. They were used as materialization arguments.
|
| - __ Pop(R1);
|
| - __ SmiUntag(R1);
|
| + __ Pop(R2);
|
| + __ SmiUntag(R2);
|
| if (kind == kLazyDeoptFromReturn) {
|
| __ Pop(R0); // Restore result.
|
| } else if (kind == kLazyDeoptFromThrow) {
|
| @@ -552,34 +552,32 @@ static void GenerateDeoptimizationSequence(Assembler* assembler,
|
| }
|
| __ LeaveStubFrame();
|
| // Remove materialization arguments.
|
| - __ add(SP, SP, Operand(R1));
|
| + __ add(SP, SP, Operand(R2));
|
| __ ret();
|
| }
|
|
|
|
|
| -// LR: return address + call-instruction-size
|
| // R0: result, must be preserved
|
| void StubCode::GenerateDeoptimizeLazyFromReturnStub(Assembler* assembler) {
|
| - // Correct return address to point just after the call that is being
|
| - // deoptimized.
|
| - __ AddImmediate(LR, LR, -CallPattern::kDeoptCallLengthInBytes);
|
| // Push zap value instead of CODE_REG for lazy deopt.
|
| __ LoadImmediate(TMP, 0xf1f1f1f1);
|
| __ Push(TMP);
|
| + // Return address for "call" to deopt stub.
|
| + __ LoadImmediate(LR, 0xe1e1e1e1);
|
| + __ ldr(CODE_REG, Address(THR, Thread::lazy_deopt_from_return_stub_offset()));
|
| GenerateDeoptimizationSequence(assembler, kLazyDeoptFromReturn);
|
| }
|
|
|
|
|
| -// LR: return address + call-instruction-size
|
| // R0: exception, must be preserved
|
| // R1: stacktrace, must be preserved
|
| void StubCode::GenerateDeoptimizeLazyFromThrowStub(Assembler* assembler) {
|
| - // Correct return address to point just after the call that is being
|
| - // deoptimized.
|
| - __ AddImmediate(LR, LR, -CallPattern::kDeoptCallLengthInBytes);
|
| // Push zap value instead of CODE_REG for lazy deopt.
|
| __ LoadImmediate(TMP, 0xf1f1f1f1);
|
| __ Push(TMP);
|
| + // Return address for "call" to deopt stub.
|
| + __ LoadImmediate(LR, 0xe1e1e1e1);
|
| + __ ldr(CODE_REG, Address(THR, Thread::lazy_deopt_from_throw_stub_offset()));
|
| GenerateDeoptimizationSequence(assembler, kLazyDeoptFromThrow);
|
| }
|
|
|
|
|