| Index: src/ic/mips/ic-mips.cc
|
| diff --git a/src/ic/mips/ic-mips.cc b/src/ic/mips/ic-mips.cc
|
| index dfbfff07e4e37690c59b15537799a15967e1ace8..72a85b6bc63d5134a4fbd6fdc9ea5fcbe58323f6 100644
|
| --- a/src/ic/mips/ic-mips.cc
|
| +++ b/src/ic/mips/ic-mips.cc
|
| @@ -887,46 +887,6 @@ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm,
|
| }
|
|
|
|
|
| -void KeyedLoadIC::GenerateIndexedInterceptor(MacroAssembler* masm) {
|
| - // Return address is in ra.
|
| - Label slow;
|
| -
|
| - Register receiver = LoadDescriptor::ReceiverRegister();
|
| - Register key = LoadDescriptor::NameRegister();
|
| - Register scratch1 = a3;
|
| - Register scratch2 = t0;
|
| - DCHECK(!scratch1.is(receiver) && !scratch1.is(key));
|
| - DCHECK(!scratch2.is(receiver) && !scratch2.is(key));
|
| -
|
| - // Check that the receiver isn't a smi.
|
| - __ JumpIfSmi(receiver, &slow);
|
| -
|
| - // Check that the key is an array index, that is Uint32.
|
| - __ And(t0, key, Operand(kSmiTagMask | kSmiSignMask));
|
| - __ Branch(&slow, ne, t0, Operand(zero_reg));
|
| -
|
| - // Get the map of the receiver.
|
| - __ lw(scratch1, FieldMemOperand(receiver, HeapObject::kMapOffset));
|
| -
|
| - // Check that it has indexed interceptor and access checks
|
| - // are not enabled for this object.
|
| - __ lbu(scratch2, FieldMemOperand(scratch1, Map::kBitFieldOffset));
|
| - __ And(scratch2, scratch2, Operand(kSlowCaseBitFieldMask));
|
| - __ Branch(&slow, ne, scratch2, Operand(1 << Map::kHasIndexedInterceptor));
|
| - // Everything is fine, call runtime.
|
| - __ Push(receiver, key); // Receiver, key.
|
| -
|
| - // Perform tail call to the entry.
|
| - __ TailCallExternalReference(
|
| - ExternalReference(IC_Utility(kLoadElementWithInterceptor),
|
| - masm->isolate()),
|
| - 2, 1);
|
| -
|
| - __ bind(&slow);
|
| - GenerateMiss(masm);
|
| -}
|
| -
|
| -
|
| void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
|
| // Push receiver, key and value for runtime call.
|
| __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
|
|
|