| Index: src/arm/code-stubs-arm.cc
|
| diff --git a/src/arm/code-stubs-arm.cc b/src/arm/code-stubs-arm.cc
|
| index 18f249b200078f1ad69d099fd6026a8d17568eb4..14b969fb16f4c9b481598f45055e405ee541a1ee 100644
|
| --- a/src/arm/code-stubs-arm.cc
|
| +++ b/src/arm/code-stubs-arm.cc
|
| @@ -682,8 +682,7 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) {
|
| __ Push(lhs, rhs);
|
| // Figure out which native to call and setup the arguments.
|
| if (cc == eq) {
|
| - __ TailCallRuntime(strict() ? Runtime::kStrictEquals : Runtime::kEquals, 2,
|
| - 1);
|
| + __ TailCallRuntime(strict() ? Runtime::kStrictEquals : Runtime::kEquals, 2);
|
| } else {
|
| int ncr; // NaN compare result
|
| if (cc == lt || cc == le) {
|
| @@ -698,8 +697,8 @@ void CompareICStub::GenerateGeneric(MacroAssembler* masm) {
|
| // Call the native; it returns -1 (less), 0 (equal), or 1 (greater)
|
| // tagged as a small integer.
|
| __ TailCallRuntime(
|
| - is_strong(strength()) ? Runtime::kCompare_Strong : Runtime::kCompare, 3,
|
| - 1);
|
| + is_strong(strength()) ? Runtime::kCompare_Strong : Runtime::kCompare,
|
| + 3);
|
| }
|
|
|
| __ bind(&miss);
|
| @@ -901,7 +900,7 @@ void MathPowStub::Generate(MacroAssembler* masm) {
|
| if (exponent_type() == ON_STACK) {
|
| // The arguments are still on the stack.
|
| __ bind(&call_runtime);
|
| - __ TailCallRuntime(Runtime::kMathPowRT, 2, 1);
|
| + __ TailCallRuntime(Runtime::kMathPowRT, 2);
|
|
|
| // The stub is called from non-optimized code, which expects the result
|
| // as heap number in exponent.
|
| @@ -1405,12 +1404,12 @@ void InstanceOfStub::Generate(MacroAssembler* masm) {
|
| // Invalidate the instanceof cache.
|
| __ Move(scratch, Smi::FromInt(0));
|
| __ StoreRoot(scratch, Heap::kInstanceofCacheFunctionRootIndex);
|
| - __ TailCallRuntime(Runtime::kHasInPrototypeChain, 2, 1);
|
| + __ TailCallRuntime(Runtime::kHasInPrototypeChain, 2);
|
|
|
| // Slow-case: Call the %InstanceOf runtime function.
|
| __ bind(&slow_case);
|
| __ Push(object, function);
|
| - __ TailCallRuntime(Runtime::kInstanceOf, 2, 1);
|
| + __ TailCallRuntime(Runtime::kInstanceOf, 2);
|
| }
|
|
|
|
|
| @@ -1512,7 +1511,7 @@ void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) {
|
| // by calling the runtime system.
|
| __ bind(&slow);
|
| __ push(r1);
|
| - __ TailCallRuntime(Runtime::kArguments, 1, 1);
|
| + __ TailCallRuntime(Runtime::kArguments, 1);
|
| }
|
|
|
|
|
| @@ -1539,7 +1538,7 @@ void ArgumentsAccessStub::GenerateNewSloppySlow(MacroAssembler* masm) {
|
|
|
| __ bind(&runtime);
|
| __ Push(r1, r3, r2);
|
| - __ TailCallRuntime(Runtime::kNewSloppyArguments, 3, 1);
|
| + __ TailCallRuntime(Runtime::kNewSloppyArguments, 3);
|
| }
|
|
|
|
|
| @@ -1739,7 +1738,7 @@ void ArgumentsAccessStub::GenerateNewSloppyFast(MacroAssembler* masm) {
|
| // r5 = argument count (tagged)
|
| __ bind(&runtime);
|
| __ Push(r1, r3, r5);
|
| - __ TailCallRuntime(Runtime::kNewSloppyArguments, 3, 1);
|
| + __ TailCallRuntime(Runtime::kNewSloppyArguments, 3);
|
| }
|
|
|
|
|
| @@ -1758,7 +1757,7 @@ void LoadIndexedInterceptorStub::Generate(MacroAssembler* masm) {
|
| __ Push(receiver, key); // Receiver, key.
|
|
|
| // Perform tail call to the entry.
|
| - __ TailCallRuntime(Runtime::kLoadElementWithInterceptor, 2, 1);
|
| + __ TailCallRuntime(Runtime::kLoadElementWithInterceptor, 2);
|
|
|
| __ bind(&slow);
|
| PropertyAccessCompiler::TailCallBuiltin(
|
| @@ -1851,7 +1850,7 @@ void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) {
|
| // Do the runtime call to allocate the arguments object.
|
| __ bind(&runtime);
|
| __ Push(r1, r3, r2);
|
| - __ TailCallRuntime(Runtime::kNewStrictArguments, 3, 1);
|
| + __ TailCallRuntime(Runtime::kNewStrictArguments, 3);
|
| }
|
|
|
|
|
| @@ -1876,7 +1875,7 @@ void RestParamAccessStub::GenerateNew(MacroAssembler* masm) {
|
| __ str(r3, MemOperand(sp, 3 * kPointerSize));
|
|
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kNewRestParam, 4, 1);
|
| + __ TailCallRuntime(Runtime::kNewRestParam, 4);
|
| }
|
|
|
|
|
| @@ -1885,7 +1884,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) {
|
| // time or if regexp entry in generated code is turned off runtime switch or
|
| // at compilation.
|
| #ifdef V8_INTERPRETED_REGEXP
|
| - __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
|
| + __ TailCallRuntime(Runtime::kRegExpExec, 4);
|
| #else // V8_INTERPRETED_REGEXP
|
|
|
| // Stack frame on entry.
|
| @@ -2156,7 +2155,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) {
|
| __ b(eq, &runtime);
|
|
|
| // For exception, throw the exception again.
|
| - __ TailCallRuntime(Runtime::kRegExpExecReThrow, 4, 1);
|
| + __ TailCallRuntime(Runtime::kRegExpExecReThrow, 4);
|
|
|
| __ bind(&failure);
|
| // For failure and exception return null.
|
| @@ -2251,7 +2250,7 @@ void RegExpExecStub::Generate(MacroAssembler* masm) {
|
|
|
| // Do the runtime call to execute the regexp.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kRegExpExec, 4, 1);
|
| + __ TailCallRuntime(Runtime::kRegExpExec, 4);
|
|
|
| // Deferred code for string handling.
|
| // (6) Not a long external string? If yes, go to (8).
|
| @@ -3001,7 +3000,7 @@ void SubStringStub::Generate(MacroAssembler* masm) {
|
|
|
| // Just jump to runtime to create the sub string.
|
| __ bind(&runtime);
|
| - __ TailCallRuntime(Runtime::kSubString, 3, 1);
|
| + __ TailCallRuntime(Runtime::kSubString, 3);
|
|
|
| __ bind(&single_char);
|
| // r0: original string
|
| @@ -3041,7 +3040,7 @@ void ToNumberStub::Generate(MacroAssembler* masm) {
|
| __ Ret();
|
| __ bind(&slow_string);
|
| __ push(r0); // Push argument.
|
| - __ TailCallRuntime(Runtime::kStringToNumber, 1, 1);
|
| + __ TailCallRuntime(Runtime::kStringToNumber, 1);
|
| __ bind(¬_string);
|
|
|
| Label not_oddball;
|
| @@ -3052,7 +3051,7 @@ void ToNumberStub::Generate(MacroAssembler* masm) {
|
| __ bind(¬_oddball);
|
|
|
| __ push(r0); // Push argument.
|
| - __ TailCallRuntime(Runtime::kToNumber, 1, 1);
|
| + __ TailCallRuntime(Runtime::kToNumber, 1);
|
| }
|
|
|
|
|
| @@ -3067,7 +3066,7 @@ void ToLengthStub::Generate(MacroAssembler* masm) {
|
| __ bind(¬_smi);
|
|
|
| __ push(r0); // Push argument.
|
| - __ TailCallRuntime(Runtime::kToLength, 1, 1);
|
| + __ TailCallRuntime(Runtime::kToLength, 1);
|
| }
|
|
|
|
|
| @@ -3097,7 +3096,7 @@ void ToStringStub::Generate(MacroAssembler* masm) {
|
| __ bind(¬_oddball);
|
|
|
| __ push(r0); // Push argument.
|
| - __ TailCallRuntime(Runtime::kToString, 1, 1);
|
| + __ TailCallRuntime(Runtime::kToString, 1);
|
| }
|
|
|
|
|
| @@ -3227,7 +3226,7 @@ void StringCompareStub::Generate(MacroAssembler* masm) {
|
| // tagged as a small integer.
|
| __ bind(&runtime);
|
| __ Push(r1, r0);
|
| - __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringCompare, 2);
|
| }
|
|
|
|
|
| @@ -3269,7 +3268,7 @@ void CompareICStub::GenerateBooleans(MacroAssembler* masm) {
|
| __ CheckMap(r1, r2, Heap::kBooleanMapRootIndex, &miss, DO_SMI_CHECK);
|
| __ CheckMap(r0, r3, Heap::kBooleanMapRootIndex, &miss, DO_SMI_CHECK);
|
| if (op() != Token::EQ_STRICT && is_strong(strength())) {
|
| - __ TailCallRuntime(Runtime::kThrowStrongModeImplicitConversion, 0, 1);
|
| + __ TailCallRuntime(Runtime::kThrowStrongModeImplicitConversion, 0);
|
| } else {
|
| if (!Token::IsEqualityOp(op())) {
|
| __ ldr(r1, FieldMemOperand(r1, Oddball::kToNumberOffset));
|
| @@ -3530,9 +3529,9 @@ void CompareICStub::GenerateStrings(MacroAssembler* masm) {
|
| __ bind(&runtime);
|
| __ Push(left, right);
|
| if (equality) {
|
| - __ TailCallRuntime(Runtime::kStringEquals, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringEquals, 2);
|
| } else {
|
| - __ TailCallRuntime(Runtime::kStringCompare, 2, 1);
|
| + __ TailCallRuntime(Runtime::kStringCompare, 2);
|
| }
|
|
|
| __ bind(&miss);
|
| @@ -3578,7 +3577,7 @@ void CompareICStub::GenerateKnownReceivers(MacroAssembler* masm) {
|
| __ sub(r0, r0, Operand(r1));
|
| __ Ret();
|
| } else if (is_strong(strength())) {
|
| - __ TailCallRuntime(Runtime::kThrowStrongModeImplicitConversion, 0, 1);
|
| + __ TailCallRuntime(Runtime::kThrowStrongModeImplicitConversion, 0);
|
| } else {
|
| if (op() == Token::LT || op() == Token::LTE) {
|
| __ mov(r2, Operand(Smi::FromInt(GREATER)));
|
| @@ -3586,7 +3585,7 @@ void CompareICStub::GenerateKnownReceivers(MacroAssembler* masm) {
|
| __ mov(r2, Operand(Smi::FromInt(LESS)));
|
| }
|
| __ Push(r1, r0, r2);
|
| - __ TailCallRuntime(Runtime::kCompare, 3, 1);
|
| + __ TailCallRuntime(Runtime::kCompare, 3);
|
| }
|
|
|
| __ bind(&miss);
|
| @@ -4946,7 +4945,7 @@ void LoadGlobalViaContextStub::Generate(MacroAssembler* masm) {
|
| // Fallback to runtime.
|
| __ SmiTag(slot);
|
| __ push(slot);
|
| - __ TailCallRuntime(Runtime::kLoadGlobalViaContext, 1, 1);
|
| + __ TailCallRuntime(Runtime::kLoadGlobalViaContext, 1);
|
| }
|
|
|
|
|
| @@ -5071,7 +5070,7 @@ void StoreGlobalViaContextStub::Generate(MacroAssembler* masm) {
|
| __ TailCallRuntime(is_strict(language_mode())
|
| ? Runtime::kStoreGlobalViaContext_Strict
|
| : Runtime::kStoreGlobalViaContext_Sloppy,
|
| - 2, 1);
|
| + 2);
|
| }
|
|
|
|
|
| @@ -5198,7 +5197,7 @@ static void CallApiFunctionAndReturn(MacroAssembler* masm,
|
|
|
| // Re-throw by promoting a scheduled exception.
|
| __ bind(&promote_scheduled_exception);
|
| - __ TailCallRuntime(Runtime::kPromoteScheduledException, 0, 1);
|
| + __ TailCallRuntime(Runtime::kPromoteScheduledException, 0);
|
|
|
| // HandleScope limit has changed. Delete allocated extensions.
|
| __ bind(&delete_allocated_handles);
|
|
|