Index: src/x87/code-stubs-x87.cc |
diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc |
index 1ca2a918709056d85f9126bf72cecc9b3a0bd1cc..176f7ff488ee655539ed35e6078b62df02c698a2 100644 |
--- a/src/x87/code-stubs-x87.cc |
+++ b/src/x87/code-stubs-x87.cc |
@@ -368,9 +368,7 @@ void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) { |
__ push(scratch); // return address |
// Perform tail call to the entry. |
- ExternalReference ref = ExternalReference( |
- IC_Utility(IC::kLoadElementWithInterceptor), masm->isolate()); |
- __ TailCallExternalReference(ref, 2, 1); |
+ __ TailCallRuntime(Runtime::kLoadElementWithInterceptor, 2, 1); |
__ bind(&slow); |
PropertyAccessCompiler::TailCallBuiltin( |
@@ -2152,11 +2150,10 @@ void CallICStub::GenerateMiss(MacroAssembler* masm) { |
__ push(edx); |
// Call the entry. |
- IC::UtilityId id = GetICState() == DEFAULT ? IC::kCallIC_Miss |
- : IC::kCallIC_Customization_Miss; |
- |
- ExternalReference miss = ExternalReference(IC_Utility(id), masm->isolate()); |
- __ CallExternalReference(miss, 3); |
+ Runtime::FunctionId id = GetICState() == DEFAULT |
+ ? Runtime::kCallIC_Miss |
+ : Runtime::kCallIC_Customization_Miss; |
+ __ CallRuntime(id, 3); |
// Move result to edi and exit the internal frame. |
__ mov(edi, eax); |
@@ -3586,15 +3583,13 @@ 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()); |
FrameScope scope(masm, StackFrame::INTERNAL); |
__ push(edx); // Preserve edx and eax. |
__ push(eax); |
__ push(edx); // And also use them as the arguments. |
__ push(eax); |
__ push(Immediate(Smi::FromInt(op()))); |
- __ CallExternalReference(miss, 3); |
+ __ CallRuntime(Runtime::kCompareIC_Miss, 3); |
// Compute the entry point of the rewritten stub. |
__ lea(edi, FieldOperand(eax, Code::kHeaderSize)); |
__ pop(eax); |