| Index: src/mips64/builtins-mips64.cc
|
| diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc
|
| index 1d8d5d35990e76cb26e86895a6f11190046bbb70..8984e478f6bd64180723ef03435dc1acdeca69ae 100644
|
| --- a/src/mips64/builtins-mips64.cc
|
| +++ b/src/mips64/builtins-mips64.cc
|
| @@ -1428,23 +1428,6 @@ void Builtins::Generate_OnStackReplacement(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -void Builtins::Generate_OsrAfterStackCheck(MacroAssembler* masm) {
|
| - // We check the stack limit as indicator that recompilation might be done.
|
| - Label ok;
|
| - __ LoadRoot(at, Heap::kStackLimitRootIndex);
|
| - __ Branch(&ok, hs, sp, Operand(at));
|
| - {
|
| - FrameScope scope(masm, StackFrame::INTERNAL);
|
| - __ CallRuntime(Runtime::kStackGuard);
|
| - }
|
| - __ Jump(masm->isolate()->builtins()->OnStackReplacement(),
|
| - RelocInfo::CODE_TARGET);
|
| -
|
| - __ bind(&ok);
|
| - __ Ret();
|
| -}
|
| -
|
| -
|
| // static
|
| void Builtins::Generate_DatePrototype_GetField(MacroAssembler* masm,
|
| int field_index) {
|
|
|