Index: src/crankshaft/x87/lithium-codegen-x87.cc |
diff --git a/src/crankshaft/x87/lithium-codegen-x87.cc b/src/crankshaft/x87/lithium-codegen-x87.cc |
index ddbfad763c4a34b72dc7ba8cf88e45f19b29c1ed..91420b449b56e6ffbd18027e944037dd91000394 100644 |
--- a/src/crankshaft/x87/lithium-codegen-x87.cc |
+++ b/src/crankshaft/x87/lithium-codegen-x87.cc |
@@ -216,7 +216,7 @@ void LCodeGen::DoPrologue(LPrologue* instr) { |
if (info()->scope()->is_script_scope()) { |
__ push(edi); |
__ 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); |
@@ -225,7 +225,7 @@ void LCodeGen::DoPrologue(LPrologue* instr) { |
need_write_barrier = false; |
} else { |
__ push(edi); |
- __ CallRuntime(Runtime::kNewFunctionContext, 1); |
+ __ CallRuntime(Runtime::kNewFunctionContext); |
} |
RecordSafepoint(deopt_mode); |
@@ -2892,7 +2892,7 @@ void LCodeGen::DoReturn(LReturn* instr) { |
// safe to write to the context register. |
__ push(eax); |
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset)); |
- __ CallRuntime(Runtime::kTraceExit, 1); |
+ __ CallRuntime(Runtime::kTraceExit); |
} |
if (dynamic_frame_alignment_) { |
// Fetch the state of the dynamic frame alignment. |
@@ -3480,7 +3480,7 @@ void LCodeGen::DoDeclareGlobals(LDeclareGlobals* instr) { |
DCHECK(ToRegister(instr->context()).is(esi)); |
__ push(Immediate(instr->hydrogen()->pairs())); |
__ push(Immediate(Smi::FromInt(instr->hydrogen()->flags()))); |
- CallRuntime(Runtime::kDeclareGlobals, 2, instr); |
+ CallRuntime(Runtime::kDeclareGlobals, instr); |
} |
@@ -5935,7 +5935,7 @@ void LCodeGen::DoForInPrepareMap(LForInPrepareMap* instr) { |
// Get the set of properties to enumerate. |
__ bind(&call_runtime); |
__ push(eax); |
- CallRuntime(Runtime::kGetPropertyNamesFast, 1, instr); |
+ CallRuntime(Runtime::kGetPropertyNamesFast, instr); |
__ cmp(FieldOperand(eax, HeapObject::kMapOffset), |
isolate()->factory()->meta_map()); |
@@ -6056,7 +6056,7 @@ void LCodeGen::DoAllocateBlockContext(LAllocateBlockContext* instr) { |
Handle<ScopeInfo> scope_info = instr->scope_info(); |
__ Push(scope_info); |
__ push(ToRegister(instr->function())); |
- CallRuntime(Runtime::kPushBlockContext, 2, instr); |
+ CallRuntime(Runtime::kPushBlockContext, instr); |
RecordSafepoint(Safepoint::kNoLazyDeopt); |
} |