Index: src/crankshaft/mips64/lithium-codegen-mips64.cc |
diff --git a/src/crankshaft/mips64/lithium-codegen-mips64.cc b/src/crankshaft/mips64/lithium-codegen-mips64.cc |
index 213e464950758e4d844c84e5c5231e7baf58d49d..6ae9b230945900076e414274c6b079d4c30c3816 100644 |
--- a/src/crankshaft/mips64/lithium-codegen-mips64.cc |
+++ b/src/crankshaft/mips64/lithium-codegen-mips64.cc |
@@ -164,7 +164,7 @@ void LCodeGen::DoPrologue(LPrologue* instr) { |
if (info()->scope()->is_script_scope()) { |
__ push(a1); |
__ Push(info()->scope()->GetScopeInfo(info()->isolate())); |
- __ CallRuntime(Runtime::kNewScriptContext, 2); |
+ __ CallRuntime(Runtime::kNewScriptContext); |
deopt_mode = Safepoint::kLazyDeopt; |
} else if (slots <= FastNewContextStub::kMaximumSlots) { |
FastNewContextStub stub(isolate(), slots); |
@@ -173,7 +173,7 @@ void LCodeGen::DoPrologue(LPrologue* instr) { |
need_write_barrier = false; |
} else { |
__ push(a1); |
- __ CallRuntime(Runtime::kNewFunctionContext, 1); |
+ __ CallRuntime(Runtime::kNewFunctionContext); |
} |
RecordSafepoint(deopt_mode); |
@@ -2715,7 +2715,7 @@ void LCodeGen::DoReturn(LReturn* instr) { |
// safe to write to the context register. |
__ push(v0); |
__ ld(cp, MemOperand(fp, StandardFrameConstants::kContextOffset)); |
- __ CallRuntime(Runtime::kTraceExit, 1); |
+ __ CallRuntime(Runtime::kTraceExit); |
} |
if (info()->saves_caller_doubles()) { |
RestoreCallerDoubles(); |
@@ -3458,7 +3458,7 @@ void LCodeGen::DoDeclareGlobals(LDeclareGlobals* instr) { |
__ li(scratch0(), instr->hydrogen()->pairs()); |
__ li(scratch1(), Operand(Smi::FromInt(instr->hydrogen()->flags()))); |
__ Push(scratch0(), scratch1()); |
- CallRuntime(Runtime::kDeclareGlobals, 2, instr); |
+ CallRuntime(Runtime::kDeclareGlobals, instr); |
} |
@@ -5742,7 +5742,7 @@ void LCodeGen::DoForInPrepareMap(LForInPrepareMap* instr) { |
// Get the set of properties to enumerate. |
__ bind(&call_runtime); |
__ push(object); |
- CallRuntime(Runtime::kGetPropertyNamesFast, 1, instr); |
+ CallRuntime(Runtime::kGetPropertyNamesFast, instr); |
__ ld(a1, FieldMemOperand(v0, HeapObject::kMapOffset)); |
DCHECK(result.is(v0)); |
@@ -5864,7 +5864,7 @@ void LCodeGen::DoAllocateBlockContext(LAllocateBlockContext* instr) { |
Handle<ScopeInfo> scope_info = instr->scope_info(); |
__ li(at, scope_info); |
__ Push(at, ToRegister(instr->function())); |
- CallRuntime(Runtime::kPushBlockContext, 2, instr); |
+ CallRuntime(Runtime::kPushBlockContext, instr); |
RecordSafepoint(Safepoint::kNoLazyDeopt); |
} |