| Index: src/x64/ic-x64.cc
|
| ===================================================================
|
| --- src/x64/ic-x64.cc (revision 3964)
|
| +++ src/x64/ic-x64.cc (working copy)
|
| @@ -225,7 +225,8 @@
|
| __ push(rbx); // return address
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(ExternalReference(IC_Utility(kKeyedLoadIC_Miss)), 2, 1);
|
| + ExternalReference ref = ExternalReference(IC_Utility(kKeyedLoadIC_Miss));
|
| + __ TailCallExternalReference(ref, 2, 1);
|
| }
|
|
|
|
|
| @@ -242,7 +243,7 @@
|
| __ push(rbx); // return address
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(ExternalReference(Runtime::kKeyedGetProperty), 2, 1);
|
| + __ TailCallRuntime(Runtime::kKeyedGetProperty, 2, 1);
|
| }
|
|
|
|
|
| @@ -591,7 +592,7 @@
|
| __ push(rdx); // return address
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(ExternalReference(
|
| + __ TailCallExternalReference(ExternalReference(
|
| IC_Utility(kKeyedLoadPropertyWithInterceptor)), 2, 1);
|
|
|
| __ bind(&slow);
|
| @@ -614,7 +615,8 @@
|
| __ push(rcx); // return address
|
|
|
| // Do tail-call to runtime routine.
|
| - __ TailCallRuntime(ExternalReference(IC_Utility(kKeyedStoreIC_Miss)), 3, 1);
|
| + ExternalReference ref = ExternalReference(IC_Utility(kKeyedStoreIC_Miss));
|
| + __ TailCallExternalReference(ref, 3, 1);
|
| }
|
|
|
|
|
| @@ -633,7 +635,7 @@
|
| __ push(rcx); // return address
|
|
|
| // Do tail-call to runtime routine.
|
| - __ TailCallRuntime(ExternalReference(Runtime::kSetProperty), 3, 1);
|
| + __ TailCallRuntime(Runtime::kSetProperty, 3, 1);
|
| }
|
|
|
|
|
| @@ -1202,7 +1204,8 @@
|
| __ push(rbx); // return address
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(ExternalReference(IC_Utility(kLoadIC_Miss)), 2, 1);
|
| + ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss));
|
| + __ TailCallExternalReference(ref, 2, 1);
|
| }
|
|
|
|
|
| @@ -1363,7 +1366,8 @@
|
| __ push(rbx); // return address
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(ExternalReference(IC_Utility(kStoreIC_Miss)), 3, 1);
|
| + ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_Miss));
|
| + __ TailCallExternalReference(ref, 3, 1);
|
| }
|
|
|
|
|
| @@ -1427,7 +1431,8 @@
|
| __ push(value);
|
| __ push(scratch); // return address
|
|
|
| - __ TailCallRuntime(ExternalReference(IC_Utility(kStoreIC_ArrayLength)), 2, 1);
|
| + ExternalReference ref = ExternalReference(IC_Utility(kStoreIC_ArrayLength));
|
| + __ TailCallExternalReference(ref, 2, 1);
|
|
|
| __ bind(&miss);
|
|
|
|
|