Index: src/ia32/code-stubs-ia32.cc |
diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc |
index 7ff278cf72dba4f75258b517ca65617479a03c15..51f42f654d825454c4c5704ebbdcd18f9a5885ae 100644 |
--- a/src/ia32/code-stubs-ia32.cc |
+++ b/src/ia32/code-stubs-ia32.cc |
@@ -689,7 +689,8 @@ void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) { |
// Perform tail call to the entry. |
ExternalReference ref = ExternalReference( |
- IC_Utility(IC::kLoadElementWithInterceptor), masm->isolate()); |
+ Runtime::FunctionForId(Runtime::kLoadElementWithInterceptor), |
+ masm->isolate()); |
__ TailCallExternalReference(ref, 2, 1); |
__ bind(&slow); |
@@ -2446,10 +2447,12 @@ void CallICStub::GenerateMiss(MacroAssembler* masm) { |
__ push(edx); |
// 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 edi and exit the internal frame. |
@@ -3905,8 +3908,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(edx); // Preserve edx and eax. |
__ push(eax); |