Index: src/mips64/code-stubs-mips64.cc |
diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc |
index 24e296716496cc1f04c42bbe5036c6b65ae84780..cd5aba3060c5171420e79846931282bca2de07ee 100644 |
--- a/src/mips64/code-stubs-mips64.cc |
+++ b/src/mips64/code-stubs-mips64.cc |
@@ -1594,29 +1594,6 @@ void FunctionPrototypeStub::Generate(MacroAssembler* masm) { |
} |
-void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) { |
- // Return address is in ra. |
- Label slow; |
- |
- Register receiver = LoadDescriptor::ReceiverRegister(); |
- Register key = LoadDescriptor::NameRegister(); |
- |
- // Check that the key is an array index, that is Uint32. |
- __ And(t0, key, Operand(kSmiTagMask | kSmiSignMask)); |
- __ Branch(&slow, ne, t0, Operand(zero_reg)); |
- |
- // Everything is fine, call runtime. |
- __ Push(receiver, key); // Receiver, key. |
- |
- // Perform tail call to the entry. |
- __ TailCallRuntime(Runtime::kLoadElementWithInterceptor); |
- |
- __ bind(&slow); |
- PropertyAccessCompiler::TailCallBuiltin( |
- masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC)); |
-} |
- |
- |
void RegExpExecStub::Generate(MacroAssembler* masm) { |
// Just jump directly to runtime if native RegExp is not selected at compile |
// time or if regexp entry in generated code is turned off runtime switch or |