| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 7f2c6be4fc6b333324f322dd8caefef4d5aec5b3..ec83da404ea2d0b1653385ba9fea66f9554e73a7 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -667,34 +667,6 @@ void FunctionPrototypeStub::Generate(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) {
|
| - // Return address is on the stack.
|
| - Label slow;
|
| -
|
| - Register receiver = LoadDescriptor::ReceiverRegister();
|
| - Register key = LoadDescriptor::NameRegister();
|
| - Register scratch = eax;
|
| - DCHECK(!scratch.is(receiver) && !scratch.is(key));
|
| -
|
| - // Check that the key is an array index, that is Uint32.
|
| - __ test(key, Immediate(kSmiTagMask | kSmiSignMask));
|
| - __ j(not_zero, &slow);
|
| -
|
| - // Everything is fine, call runtime.
|
| - __ pop(scratch);
|
| - __ push(receiver); // receiver
|
| - __ push(key); // key
|
| - __ push(scratch); // return address
|
| -
|
| - // Perform tail call to the entry.
|
| - __ TailCallRuntime(Runtime::kLoadElementWithInterceptor);
|
| -
|
| - __ bind(&slow);
|
| - PropertyAccessCompiler::TailCallBuiltin(
|
| - masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC));
|
| -}
|
| -
|
| -
|
| void LoadIndexedStringStub::Generate(MacroAssembler* masm) {
|
| // Return address is on the stack.
|
| Label miss;
|
|
|