| Index: src/builtins/mips64/builtins-mips64.cc
|
| diff --git a/src/builtins/mips64/builtins-mips64.cc b/src/builtins/mips64/builtins-mips64.cc
|
| index a8f1cccc0f7c0bc952b6c40d151603c7e3a0171c..dcd1d40dec628a16f2079e17f0814f88758bedd5 100644
|
| --- a/src/builtins/mips64/builtins-mips64.cc
|
| +++ b/src/builtins/mips64/builtins-mips64.cc
|
| @@ -1137,31 +1137,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| __ Jump(a4);
|
| }
|
|
|
| -void Builtins::Generate_InterpreterMarkBaselineOnReturn(MacroAssembler* masm) {
|
| - // Save the function and context for call to CompileBaseline.
|
| - __ ld(a1, MemOperand(fp, StandardFrameConstants::kFunctionOffset));
|
| - __ ld(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, t0);
|
| -
|
| - {
|
| - FrameScope frame_scope(masm, StackFrame::INTERNAL);
|
| - // Push return value.
|
| - __ push(v0);
|
| -
|
| - // Push function as argument and compile for baseline.
|
| - __ push(a1);
|
| - __ CallRuntime(Runtime::kCompileBaseline);
|
| -
|
| - // Restore return value.
|
| - __ pop(v0);
|
| - }
|
| - __ Jump(ra);
|
| -}
|
| -
|
| static void Generate_StackOverflowCheck(MacroAssembler* masm, Register num_args,
|
| Register scratch1, Register scratch2,
|
| Label* stack_overflow) {
|
|
|