| Index: src/x87/stub-cache-x87.cc
|
| diff --git a/src/x87/stub-cache-x87.cc b/src/x87/stub-cache-x87.cc
|
| index a91b5eab1a38f36e82372312dccc2532a02a2928..6a4e5be653fe661b1a0b0f3ab1de94f6e34e7c8f 100644
|
| --- a/src/x87/stub-cache-x87.cc
|
| +++ b/src/x87/stub-cache-x87.cc
|
| @@ -1122,8 +1122,8 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
| __ push(scratch1()); // restore return address
|
|
|
| // 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.
|
| @@ -1145,7 +1145,7 @@ void NamedStoreHandlerCompiler::GenerateStoreArrayLength() {
|
| }
|
|
|
|
|
| -Handle<Code> PropertyICCompiler::CompileIndexedStorePolymorphic(
|
| +Handle<Code> PropertyICCompiler::CompileKeyedStorePolymorphic(
|
| MapHandleList* receiver_maps, CodeHandleList* handler_stubs,
|
| MapHandleList* transitioned_maps) {
|
| Label miss;
|
| @@ -1343,7 +1343,7 @@ Handle<Code> PropertyICCompiler::CompilePolymorphic(TypeHandleList* types,
|
| #define __ ACCESS_MASM(masm)
|
|
|
|
|
| -void IndexedHandlerCompiler::GenerateLoadDictionaryElement(
|
| +void ElementHandlerCompiler::GenerateLoadDictionaryElement(
|
| MacroAssembler* masm) {
|
| // ----------- S t a t e -------------
|
| // -- ecx : key
|
|
|