Index: src/mips64/stub-cache-mips64.cc |
diff --git a/src/mips64/stub-cache-mips64.cc b/src/mips64/stub-cache-mips64.cc |
index 7c09089aa226ea949aa8d750d0eb8e6e2459e084..e5a1cee64621144f6850a45920a8e31a6cddf038 100644 |
--- a/src/mips64/stub-cache-mips64.cc |
+++ b/src/mips64/stub-cache-mips64.cc |
@@ -1129,8 +1129,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()); |
__ TailCallExternalReference(store_ic_property, 3, 1); |
// Return the generated code. |
@@ -1319,7 +1319,7 @@ void NamedStoreHandlerCompiler::GenerateStoreArrayLength() { |
} |
-Handle<Code> PropertyICCompiler::CompileIndexedStorePolymorphic( |
+Handle<Code> PropertyICCompiler::CompileKeyedStorePolymorphic( |
MapHandleList* receiver_maps, CodeHandleList* handler_stubs, |
MapHandleList* transitioned_maps) { |
Label miss; |
@@ -1352,7 +1352,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; |