Index: src/ic/mips/handler-compiler-mips.cc |
diff --git a/src/ic/mips/handler-compiler-mips.cc b/src/ic/mips/handler-compiler-mips.cc |
index f70761ae6df95d4e3f00087c965e9d93fa79c9d8..554d0c56ff8fc48ddc165e3ed60e82d5b7fbf88e 100644 |
--- a/src/ic/mips/handler-compiler-mips.cc |
+++ b/src/ic/mips/handler-compiler-mips.cc |
@@ -215,8 +215,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); |
} |
@@ -315,7 +317,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); |
} |
@@ -324,7 +326,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); |
} |
@@ -698,8 +700,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) { |
PushInterceptorArguments(masm(), receiver(), holder_reg, this->name(), |
holder()); |
- __ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor, |
- NamedLoadHandlerCompiler::kInterceptorArgsLength); |
+ __ TailCallRuntime(Runtime::kLoadPropertyWithInterceptor); |
} |
@@ -722,7 +723,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback( |
__ Push(at, 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); |
@@ -734,7 +735,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); |