Index: src/ic/arm64/ic-arm64.cc |
diff --git a/src/ic/arm64/ic-arm64.cc b/src/ic/arm64/ic-arm64.cc |
index 41e1678b7ca1ed04d1309b60f90446432bcee6eb..03f8472a281e27372272d07fd52fe2a997dc15d9 100644 |
--- a/src/ic/arm64/ic-arm64.cc |
+++ b/src/ic/arm64/ic-arm64.cc |
@@ -296,7 +296,8 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadWithVectorDescriptor::NameRegister(), |
LoadWithVectorDescriptor::SlotRegister(), |
LoadWithVectorDescriptor::VectorRegister()); |
- ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss), isolate); |
+ ExternalReference ref = |
+ ExternalReference(Runtime::FunctionForId(Runtime::kLoadIC_Miss), isolate); |
int arg_count = 4; |
__ TailCallExternalReference(ref, arg_count, 1); |
} |
@@ -328,8 +329,8 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadWithVectorDescriptor::VectorRegister()); |
// Perform tail call to the entry. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedLoadIC_Miss), isolate); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kKeyedLoadIC_Miss), isolate); |
int arg_count = 4; |
__ TailCallExternalReference(ref, arg_count, 1); |
} |
@@ -481,8 +482,8 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
__ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(), |
StoreDescriptor::ValueRegister()); |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedStoreIC_Miss), masm->isolate()); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kKeyedStoreIC_Miss), masm->isolate()); |
__ TailCallExternalReference(ref, 3, 1); |
} |
@@ -774,8 +775,8 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreDescriptor::ValueRegister()); |
// Tail call to the entry. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kStoreIC_Miss), masm->isolate()); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kStoreIC_Miss), masm->isolate()); |
__ TailCallExternalReference(ref, 3, 1); |
} |