| Index: src/builtins/arm64/builtins-arm64.cc
|
| diff --git a/src/builtins/arm64/builtins-arm64.cc b/src/builtins/arm64/builtins-arm64.cc
|
| index 0fb7d6853b62ca9450a2ad8fe42fd37205d979b4..7327be2fc4473412823b2e78cf1b12030e73fd0c 100644
|
| --- a/src/builtins/arm64/builtins-arm64.cc
|
| +++ b/src/builtins/arm64/builtins-arm64.cc
|
| @@ -1154,31 +1154,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| __ Jump(x7);
|
| }
|
|
|
| -void Builtins::Generate_InterpreterMarkBaselineOnReturn(MacroAssembler* masm) {
|
| - // Save the function and context for call to CompileBaseline.
|
| - __ ldr(x1, MemOperand(fp, StandardFrameConstants::kFunctionOffset));
|
| - __ ldr(kContextRegister,
|
| - MemOperand(fp, StandardFrameConstants::kContextOffset));
|
| -
|
| - // Leave the frame before recompiling for baseline so that we don't count as
|
| - // an activation on the stack.
|
| - LeaveInterpreterFrame(masm, x2);
|
| -
|
| - {
|
| - FrameScope frame_scope(masm, StackFrame::INTERNAL);
|
| - // Push return value.
|
| - __ push(x0);
|
| -
|
| - // Push function as argument and compile for baseline.
|
| - __ push(x1);
|
| - __ CallRuntime(Runtime::kCompileBaseline);
|
| -
|
| - // Restore return value.
|
| - __ pop(x0);
|
| - }
|
| - __ Ret();
|
| -}
|
| -
|
| static void Generate_StackOverflowCheck(MacroAssembler* masm, Register num_args,
|
| Register scratch,
|
| Label* stack_overflow) {
|
|
|