| Index: src/builtins/ppc/builtins-ppc.cc
|
| diff --git a/src/builtins/ppc/builtins-ppc.cc b/src/builtins/ppc/builtins-ppc.cc
|
| index a54eee942d112f3a9fdf767d57a8e0c135ab7d81..809a3b2bb33eafd3243a65989a151143c7bb3f63 100644
|
| --- a/src/builtins/ppc/builtins-ppc.cc
|
| +++ b/src/builtins/ppc/builtins-ppc.cc
|
| @@ -1173,31 +1173,6 @@ void Builtins::Generate_InterpreterEntryTrampoline(MacroAssembler* masm) {
|
| __ JumpToJSEntry(r7);
|
| }
|
|
|
| -void Builtins::Generate_InterpreterMarkBaselineOnReturn(MacroAssembler* masm) {
|
| - // Save the function and context for call to CompileBaseline.
|
| - __ LoadP(r4, MemOperand(fp, StandardFrameConstants::kFunctionOffset));
|
| - __ LoadP(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, r5);
|
| -
|
| - {
|
| - FrameScope frame_scope(masm, StackFrame::INTERNAL);
|
| - // Push return value.
|
| - __ push(r3);
|
| -
|
| - // Push function as argument and compile for baseline.
|
| - __ push(r4);
|
| - __ CallRuntime(Runtime::kCompileBaseline);
|
| -
|
| - // Restore return value.
|
| - __ pop(r3);
|
| - }
|
| - __ blr();
|
| -}
|
| -
|
| static void Generate_StackOverflowCheck(MacroAssembler* masm, Register num_args,
|
| Register scratch,
|
| Label* stack_overflow) {
|
|
|