| Index: src/mips/stub-cache-mips.cc
|
| diff --git a/src/mips/stub-cache-mips.cc b/src/mips/stub-cache-mips.cc
|
| index 100d0b52e4d9f66c7bf4ec04d68f4595d6f936a7..0fcc3ef0ba297920af4a0588f4efe0c08144418a 100644
|
| --- a/src/mips/stub-cache-mips.cc
|
| +++ b/src/mips/stub-cache-mips.cc
|
| @@ -3203,30 +3203,6 @@ Handle<Code> KeyedLoadStubCompiler::CompileLoadInterceptor(
|
| }
|
|
|
|
|
| -Handle<Code> KeyedLoadStubCompiler::CompileLoadFunctionPrototype(
|
| - Handle<String> name) {
|
| - // ----------- S t a t e -------------
|
| - // -- ra : return address
|
| - // -- a0 : key
|
| - // -- a1 : receiver
|
| - // -----------------------------------
|
| - Label miss;
|
| -
|
| - Counters* counters = masm()->isolate()->counters();
|
| - __ IncrementCounter(counters->keyed_load_function_prototype(), 1, a2, a3);
|
| -
|
| - // Check the name hasn't changed.
|
| - __ Branch(&miss, ne, a0, Operand(name));
|
| -
|
| - GenerateLoadFunctionPrototype(masm(), a1, a2, a3, &miss);
|
| - __ bind(&miss);
|
| - __ DecrementCounter(counters->keyed_load_function_prototype(), 1, a2, a3);
|
| - GenerateLoadMiss(masm(), Code::KEYED_LOAD_IC);
|
| -
|
| - return GetCode(Code::CALLBACKS, name);
|
| -}
|
| -
|
| -
|
| Handle<Code> KeyedLoadStubCompiler::CompileLoadElement(
|
| Handle<Map> receiver_map) {
|
| // ----------- S t a t e -------------
|
|
|