| 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 13ce921b8b8816d18f386fc1aa1eb4806f601ef9..6e812d86e33d094fa7373f89d7d2f88added0c73 100644
|
| --- a/src/ic/mips/handler-compiler-mips.cc
|
| +++ b/src/ic/mips/handler-compiler-mips.cc
|
| @@ -216,10 +216,11 @@ static void PushInterceptorArguments(MacroAssembler* masm, Register receiver,
|
|
|
| static void CompileCallLoadPropertyWithInterceptor(
|
| MacroAssembler* masm, Register receiver, Register holder, Register name,
|
| - Handle<JSObject> holder_obj, IC::UtilityId id) {
|
| + Handle<JSObject> holder_obj, Runtime::FunctionId id) {
|
| PushInterceptorArguments(masm, receiver, holder, name, holder_obj);
|
| - __ CallExternalReference(ExternalReference(IC_Utility(id), masm->isolate()),
|
| - NamedLoadHandlerCompiler::kInterceptorArgsLength);
|
| + __ CallExternalReference(
|
| + ExternalReference(Runtime::FunctionForId(id), masm->isolate()),
|
| + NamedLoadHandlerCompiler::kInterceptorArgsLength);
|
| }
|
|
|
|
|
| @@ -305,8 +306,8 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| - ExternalReference ref =
|
| - ExternalReference(IC_Utility(IC::kStoreIC_Slow), masm->isolate());
|
| + ExternalReference ref = ExternalReference(
|
| + Runtime::FunctionForId(Runtime::kStoreIC_Slow), masm->isolate());
|
| __ TailCallExternalReference(ref, 3, 1);
|
| }
|
|
|
| @@ -318,8 +319,8 @@ void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| - ExternalReference ref =
|
| - ExternalReference(IC_Utility(IC::kKeyedStoreIC_Slow), masm->isolate());
|
| + ExternalReference ref = ExternalReference(
|
| + Runtime::FunctionForId(Runtime::kKeyedStoreIC_Slow), masm->isolate());
|
| __ TailCallExternalReference(ref, 3, 1);
|
| }
|
|
|
| @@ -656,7 +657,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptorWithFollowup(
|
| // of this method).
|
| CompileCallLoadPropertyWithInterceptor(
|
| masm(), receiver(), holder_reg, this->name(), holder(),
|
| - IC::kLoadPropertyWithInterceptorOnly);
|
| + Runtime::kLoadPropertyWithInterceptorOnly);
|
|
|
| // Check if interceptor provided a value for property. If it's
|
| // the case, return immediately.
|
| @@ -688,7 +689,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) {
|
| holder());
|
|
|
| ExternalReference ref = ExternalReference(
|
| - IC_Utility(IC::kLoadPropertyWithInterceptor), isolate());
|
| + Runtime::FunctionForId(Runtime::kLoadPropertyWithInterceptor), isolate());
|
| __ TailCallExternalReference(
|
| ref, NamedLoadHandlerCompiler::kInterceptorArgsLength, 1);
|
| }
|
| @@ -713,8 +714,8 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| __ Push(at, value());
|
|
|
| // Do tail-call to the runtime system.
|
| - ExternalReference store_callback_property =
|
| - ExternalReference(IC_Utility(IC::kStoreCallbackProperty), isolate());
|
| + ExternalReference store_callback_property = ExternalReference(
|
| + Runtime::FunctionForId(Runtime::kStoreCallbackProperty), isolate());
|
| __ TailCallExternalReference(store_callback_property, 5, 1);
|
|
|
| // Return the generated code.
|
| @@ -728,7 +729,8 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
|
|
| // Do tail-call to the runtime system.
|
| ExternalReference store_ic_property = ExternalReference(
|
| - IC_Utility(IC::kStorePropertyWithInterceptor), isolate());
|
| + Runtime::FunctionForId(Runtime::kStorePropertyWithInterceptor),
|
| + isolate());
|
| __ TailCallExternalReference(store_ic_property, 3, 1);
|
|
|
| // Return the generated code.
|
|
|