Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index 9935e038f5cdeadbf341e50497ecbf19a17a5a52..2b2d50b6541f062b5bd5a0caa335a95ff81962b1 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -1688,12 +1688,14 @@ void FullCodeGenerator::EmitCallWithIC(Call* expr, |
// Code common for calls using the IC. |
ZoneList<Expression*>* args = expr->arguments(); |
int arg_count = args->length(); |
- for (int i = 0; i < arg_count; i++) { |
- VisitForStackValue(args->at(i)); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ for (int i = 0; i < arg_count; i++) { |
+ VisitForStackValue(args->at(i)); |
+ } |
+ __ mov(r2, Operand(name)); |
} |
- __ mov(r2, Operand(name)); |
// Record source position for debugger. |
- SetSourcePosition(expr->position()); |
+ SetSourcePosition(expr->position(), FORCED_POSITION); |
// Call the IC initialization code. |
InLoopFlag in_loop = (loop_depth() > 0) ? IN_LOOP : NOT_IN_LOOP; |
Handle<Code> ic = CodeGenerator::ComputeCallInitialize(arg_count, in_loop); |
@@ -1710,13 +1712,15 @@ void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr, |
// Code common for calls using the IC. |
ZoneList<Expression*>* args = expr->arguments(); |
int arg_count = args->length(); |
- for (int i = 0; i < arg_count; i++) { |
- VisitForStackValue(args->at(i)); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ for (int i = 0; i < arg_count; i++) { |
+ VisitForStackValue(args->at(i)); |
+ } |
+ VisitForAccumulatorValue(key); |
+ __ mov(r2, r0); |
} |
- VisitForAccumulatorValue(key); |
- __ mov(r2, r0); |
// Record source position for debugger. |
- SetSourcePosition(expr->position()); |
+ SetSourcePosition(expr->position(), FORCED_POSITION); |
// Call the IC initialization code. |
InLoopFlag in_loop = (loop_depth() > 0) ? IN_LOOP : NOT_IN_LOOP; |
Handle<Code> ic = CodeGenerator::ComputeKeyedCallInitialize(arg_count, |
@@ -1732,11 +1736,13 @@ void FullCodeGenerator::EmitCallWithStub(Call* expr) { |
// Code common for calls using the call stub. |
ZoneList<Expression*>* args = expr->arguments(); |
int arg_count = args->length(); |
- for (int i = 0; i < arg_count; i++) { |
- VisitForStackValue(args->at(i)); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ for (int i = 0; i < arg_count; i++) { |
+ VisitForStackValue(args->at(i)); |
+ } |
} |
// Record source position for debugger. |
- SetSourcePosition(expr->position()); |
+ SetSourcePosition(expr->position(), FORCED_POSITION); |
InLoopFlag in_loop = (loop_depth() > 0) ? IN_LOOP : NOT_IN_LOOP; |
CallFunctionStub stub(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE); |
__ CallStub(&stub); |
@@ -1756,41 +1762,46 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
// resolve the function we need to call and the receiver of the |
// call. Then we call the resolved function using the given |
// arguments. |
- VisitForStackValue(fun); |
- __ LoadRoot(r2, Heap::kUndefinedValueRootIndex); |
- __ push(r2); // Reserved receiver slot. |
- |
- // Push the arguments. |
ZoneList<Expression*>* args = expr->arguments(); |
int arg_count = args->length(); |
- for (int i = 0; i < arg_count; i++) { |
- VisitForStackValue(args->at(i)); |
- } |
- // Push copy of the function - found below the arguments. |
- __ ldr(r1, MemOperand(sp, (arg_count + 1) * kPointerSize)); |
- __ push(r1); |
+ { PreserveStatementPositionScope pos_scope(masm()->positions_recorder()); |
- // Push copy of the first argument or undefined if it doesn't exist. |
- if (arg_count > 0) { |
- __ ldr(r1, MemOperand(sp, arg_count * kPointerSize)); |
+ VisitForStackValue(fun); |
+ __ LoadRoot(r2, Heap::kUndefinedValueRootIndex); |
+ __ push(r2); // Reserved receiver slot. |
+ |
+ // Push the arguments. |
+ for (int i = 0; i < arg_count; i++) { |
+ VisitForStackValue(args->at(i)); |
+ } |
+ |
+ // Push copy of the function - found below the arguments. |
+ __ ldr(r1, MemOperand(sp, (arg_count + 1) * kPointerSize)); |
__ push(r1); |
- } else { |
- __ push(r2); |
- } |
- // Push the receiver of the enclosing function and do runtime call. |
- __ ldr(r1, MemOperand(fp, (2 + scope()->num_parameters()) * kPointerSize)); |
- __ push(r1); |
- __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 3); |
+ // Push copy of the first argument or undefined if it doesn't exist. |
+ if (arg_count > 0) { |
+ __ ldr(r1, MemOperand(sp, arg_count * kPointerSize)); |
+ __ push(r1); |
+ } else { |
+ __ push(r2); |
+ } |
- // The runtime call returns a pair of values in r0 (function) and |
- // r1 (receiver). Touch up the stack with the right values. |
- __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize)); |
- __ str(r1, MemOperand(sp, arg_count * kPointerSize)); |
+ // Push the receiver of the enclosing function and do runtime call. |
+ __ ldr(r1, |
+ MemOperand(fp, (2 + scope()->num_parameters()) * kPointerSize)); |
+ __ push(r1); |
+ __ CallRuntime(Runtime::kResolvePossiblyDirectEval, 3); |
+ |
+ // The runtime call returns a pair of values in r0 (function) and |
+ // r1 (receiver). Touch up the stack with the right values. |
+ __ str(r0, MemOperand(sp, (arg_count + 1) * kPointerSize)); |
+ __ str(r1, MemOperand(sp, arg_count * kPointerSize)); |
+ } |
// Record source position for debugger. |
- SetSourcePosition(expr->position()); |
+ SetSourcePosition(expr->position(), FORCED_POSITION); |
InLoopFlag in_loop = (loop_depth() > 0) ? IN_LOOP : NOT_IN_LOOP; |
CallFunctionStub stub(arg_count, in_loop, RECEIVER_MIGHT_BE_VALUE); |
__ CallStub(&stub); |
@@ -1807,12 +1818,14 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
// Call to a lookup slot (dynamically introduced variable). |
Label slow, done; |
- // Generate code for loading from variables potentially shadowed |
- // by eval-introduced variables. |
- EmitDynamicLoadFromSlotFastCase(var->AsSlot(), |
- NOT_INSIDE_TYPEOF, |
- &slow, |
- &done); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ // Generate code for loading from variables potentially shadowed |
+ // by eval-introduced variables. |
+ EmitDynamicLoadFromSlotFastCase(var->AsSlot(), |
+ NOT_INSIDE_TYPEOF, |
+ &slow, |
+ &done); |
+ } |
__ bind(&slow); |
// Call the runtime to find the function to call (returned in r0) |
@@ -1846,17 +1859,23 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
Literal* key = prop->key()->AsLiteral(); |
if (key != NULL && key->handle()->IsSymbol()) { |
// Call to a named property, use call IC. |
- VisitForStackValue(prop->obj()); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ VisitForStackValue(prop->obj()); |
+ } |
EmitCallWithIC(expr, key->handle(), RelocInfo::CODE_TARGET); |
} else { |
// Call to a keyed property. |
// For a synthetic property use keyed load IC followed by function call, |
// for a regular property use keyed CallIC. |
- VisitForStackValue(prop->obj()); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ VisitForStackValue(prop->obj()); |
+ } |
if (prop->is_synthetic()) { |
- VisitForAccumulatorValue(prop->key()); |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ VisitForAccumulatorValue(prop->key()); |
+ } |
// Record source code position for IC call. |
- SetSourcePosition(prop->position()); |
+ SetSourcePosition(prop->position(), FORCED_POSITION); |
__ pop(r1); // We do not need to keep the receiver. |
Handle<Code> ic(Builtins::builtin(Builtins::KeyedLoadIC_Initialize)); |
@@ -1879,7 +1898,10 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
loop_depth() == 0) { |
lit->set_try_full_codegen(true); |
} |
- VisitForStackValue(fun); |
+ |
+ { PreserveStatementPositionScope scope(masm()->positions_recorder()); |
+ VisitForStackValue(fun); |
+ } |
// Load global receiver object. |
__ ldr(r1, CodeGenerator::GlobalObject()); |
__ ldr(r1, FieldMemOperand(r1, GlobalObject::kGlobalReceiverOffset)); |