| Index: src/ic/arm64/handler-compiler-arm64.cc
|
| diff --git a/src/ic/arm64/handler-compiler-arm64.cc b/src/ic/arm64/handler-compiler-arm64.cc
|
| index 1f37be4480e7b3529a04915b602131d501c931a1..25afd5425a0aa728a60cf661a7e07c6ed154a852 100644
|
| --- a/src/ic/arm64/handler-compiler-arm64.cc
|
| +++ b/src/ic/arm64/handler-compiler-arm64.cc
|
| @@ -319,7 +319,7 @@ void NamedStoreHandlerCompiler::GenerateSlow(MacroAssembler* masm) {
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| - __ TailCallRuntime(Runtime::kStoreIC_Slow, 5, 1);
|
| + __ TailCallRuntime(Runtime::kStoreIC_Slow, 5);
|
| }
|
|
|
|
|
| @@ -329,7 +329,7 @@ void ElementHandlerCompiler::GenerateStoreSlow(MacroAssembler* masm) {
|
|
|
| // The slow case calls into the runtime to complete the store without causing
|
| // an IC miss that would otherwise cause a transition to the generic stub.
|
| - __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5, 1);
|
| + __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow, 5);
|
| }
|
|
|
|
|
| @@ -379,7 +379,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor(
|
| __ Push(receiver(), this->name(), value());
|
|
|
| // Do tail-call to the runtime system.
|
| - __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor, 3, 1);
|
| + __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor, 3);
|
|
|
| // Return the generated code.
|
| return GetCode(kind(), Code::FAST, name);
|
| @@ -769,7 +769,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) {
|
| holder());
|
|
|
| __ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor,
|
| - NamedLoadHandlerCompiler::kInterceptorArgsLength, 1);
|
| + NamedLoadHandlerCompiler::kInterceptorArgsLength);
|
| }
|
|
|
|
|
| @@ -797,7 +797,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| __ Push(receiver(), holder_reg, scratch1(), scratch2(), value());
|
|
|
| // Do tail-call to the runtime system.
|
| - __ TailCallRuntime(Runtime::kStoreCallbackProperty, 5, 1);
|
| + __ TailCallRuntime(Runtime::kStoreCallbackProperty, 5);
|
|
|
| // Return the generated code.
|
| return GetCode(kind(), Code::FAST, name);
|
|
|