| Index: src/ic/mips/handler-compiler-mips.cc
|
| diff --git a/src/ic/mips/handler-compiler-mips.cc b/src/ic/mips/handler-compiler-mips.cc
|
| index e65a2846122520aa005f661211620098ca519a77..22970169c0663e1eaa643d62fce9678bde60002d 100644
|
| --- a/src/ic/mips/handler-compiler-mips.cc
|
| +++ b/src/ic/mips/handler-compiler-mips.cc
|
| @@ -281,35 +281,6 @@ void PropertyHandlerCompiler::GenerateFastApiCall(
|
| }
|
|
|
|
|
| -void ElementHandlerCompiler::GenerateLoadDictionaryElement(
|
| - MacroAssembler* masm) {
|
| - // The return address is in ra.
|
| - Label slow, miss;
|
| -
|
| - Register key = LoadDescriptor::NameRegister();
|
| - Register receiver = LoadDescriptor::ReceiverRegister();
|
| - DCHECK(receiver.is(a1));
|
| - DCHECK(key.is(a2));
|
| -
|
| - __ UntagAndJumpIfNotSmi(t2, key, &miss);
|
| - __ lw(t0, FieldMemOperand(receiver, JSObject::kElementsOffset));
|
| - __ LoadFromNumberDictionary(&slow, t0, key, v0, t2, a3, t1);
|
| - __ Ret();
|
| -
|
| - // Slow case, key and receiver still unmodified.
|
| - __ bind(&slow);
|
| - __ IncrementCounter(
|
| - masm->isolate()->counters()->keyed_load_external_array_slow(), 1, a2, a3);
|
| -
|
| - TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Slow);
|
| -
|
| - // Miss case, call the runtime.
|
| - __ bind(&miss);
|
| -
|
| - TailCallBuiltin(masm, Builtins::kKeyedLoadIC_Miss);
|
| -}
|
| -
|
| -
|
| void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
| // Push receiver, key and value for runtime call.
|
| __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(),
|
|
|