Index: src/mips64/code-stubs-mips64.cc |
diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc |
index b182330d1be27e5ce2193fa272702a9e07b84e57..c9b2fb45f4213119295c3e70fcfbb3a4a60879c0 100644 |
--- a/src/mips64/code-stubs-mips64.cc |
+++ b/src/mips64/code-stubs-mips64.cc |
@@ -1943,8 +1943,9 @@ void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) { |
// Perform tail call to the entry. |
__ TailCallExternalReference( |
- ExternalReference(IC_Utility(IC::kLoadElementWithInterceptor), |
- masm->isolate()), |
+ ExternalReference( |
+ Runtime::FunctionForId(Runtime::kLoadElementWithInterceptor), |
+ masm->isolate()), |
2, 1); |
__ bind(&slow); |
@@ -3118,10 +3119,12 @@ void CallICStub::GenerateMiss(MacroAssembler* masm) { |
__ Push(a1, a2, a3); |
// Call the entry. |
- IC::UtilityId id = GetICState() == DEFAULT ? IC::kCallIC_Miss |
- : IC::kCallIC_Customization_Miss; |
+ Runtime::FunctionId id = GetICState() == DEFAULT |
+ ? Runtime::kCallIC_Miss // |
+ : Runtime::kCallIC_Customization_Miss; |
- ExternalReference miss = ExternalReference(IC_Utility(id), masm->isolate()); |
+ ExternalReference miss = |
+ ExternalReference(Runtime::FunctionForId(id), masm->isolate()); |
__ CallExternalReference(miss, 3); |
// Move result to a1 and exit the internal frame. |
@@ -4039,8 +4042,8 @@ void CompareICStub::GenerateKnownObjects(MacroAssembler* masm) { |
void CompareICStub::GenerateMiss(MacroAssembler* masm) { |
{ |
// Call the runtime system in a fresh internal frame. |
- ExternalReference miss = |
- ExternalReference(IC_Utility(IC::kCompareIC_Miss), isolate()); |
+ ExternalReference miss = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kCompareIC_Miss), isolate()); |
FrameScope scope(masm, StackFrame::INTERNAL); |
__ Push(a1, a0); |
__ Push(ra, a1, a0); |