Chromium Code Reviews| 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 25afd5425a0aa728a60cf661a7e07c6ed154a852..7cfef6a1b4161b554d3bf14743741f0796daeb37 100644 |
| --- a/src/ic/arm64/handler-compiler-arm64.cc |
| +++ b/src/ic/arm64/handler-compiler-arm64.cc |
| @@ -130,9 +130,10 @@ static void PushInterceptorArguments(MacroAssembler* masm, Register receiver, |
| static void CompileCallLoadPropertyWithInterceptor( |
| MacroAssembler* masm, Register receiver, Register holder, Register name, |
| Handle<JSObject> holder_obj, Runtime::FunctionId id) { |
| + DCHECK(NamedLoadHandlerCompiler::kInterceptorArgsLength == |
|
Igor Sheludko
2015/12/30 14:48:17
Ditto.
|
| + Runtime::FunctionForId(id)->nargs); |
| PushInterceptorArguments(masm, receiver, holder, name, holder_obj); |
| - |
| - __ CallRuntime(id, NamedLoadHandlerCompiler::kInterceptorArgsLength); |
| + __ CallRuntime(id); |
| } |
| @@ -319,7 +320,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); |
| + __ TailCallRuntime(Runtime::kStoreIC_Slow); |
| } |
| @@ -329,7 +330,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); |
| + __ TailCallRuntime(Runtime::kKeyedStoreIC_Slow); |
| } |
| @@ -379,7 +380,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreInterceptor( |
| __ Push(receiver(), this->name(), value()); |
| // Do tail-call to the runtime system. |
| - __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor, 3); |
| + __ TailCallRuntime(Runtime::kStorePropertyWithInterceptor); |
| // Return the generated code. |
| return GetCode(kind(), Code::FAST, name); |
| @@ -768,8 +769,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) { |
| PushInterceptorArguments(masm(), receiver(), holder_reg, this->name(), |
| holder()); |
| - __ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor, |
| - NamedLoadHandlerCompiler::kInterceptorArgsLength); |
| + __ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor); |
| } |
| @@ -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); |
| + __ TailCallRuntime(Runtime::kStoreCallbackProperty); |
| // Return the generated code. |
| return GetCode(kind(), Code::FAST, name); |