Chromium Code Reviews| Index: src/mips/stub-cache-mips.cc |
| diff --git a/src/mips/stub-cache-mips.cc b/src/mips/stub-cache-mips.cc |
| index 4f7b1ca5cb2edd96f234bc2c528f45a8e675cf94..a3868ae1afbfc8a90946d03074813949f0b96a44 100644 |
| --- a/src/mips/stub-cache-mips.cc |
| +++ b/src/mips/stub-cache-mips.cc |
| @@ -1128,8 +1128,8 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor( |
| __ Push(receiver(), this->name(), value()); |
| // Do tail-call to the runtime system. |
| - ExternalReference store_ic_property = |
| - ExternalReference(IC_Utility(IC::kStoreInterceptorProperty), isolate()); |
| + ExternalReference store_ic_property = ExternalReference( |
| + IC_Utility(IC::kStorePropertyWithInterceptor), isolate()); |
|
paul.l...
2014/07/29 20:32:11
nit: weird indent level, please make 4 spaces.
|
| __ TailCallExternalReference(store_ic_property, 3, 1); |
| // Return the generated code. |
| @@ -1318,7 +1318,7 @@ void NamedStoreHandlerCompiler::GenerateStoreArrayLength() { |
| } |
| -Handle<Code> PropertyICCompiler::CompileIndexedStorePolymorphic( |
| +Handle<Code> PropertyICCompiler::CompileKeyedStorePolymorphic( |
| MapHandleList* receiver_maps, CodeHandleList* handler_stubs, |
| MapHandleList* transitioned_maps) { |
| Label miss; |
| @@ -1351,7 +1351,7 @@ Handle<Code> PropertyICCompiler::CompileIndexedStorePolymorphic( |
| #define __ ACCESS_MASM(masm) |
| -void IndexedHandlerCompiler::GenerateLoadDictionaryElement( |
| +void ElementHandlerCompiler::GenerateLoadDictionaryElement( |
| MacroAssembler* masm) { |
| // The return address is in ra. |
| Label slow, miss; |