Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index 85e42627f803201b165cb5261d62b8432bbed010..971be5d5c39645adce5461462b8e682aa9c83b3a 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -857,7 +857,7 @@ void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { |
// Record position before stub call for type feedback. |
SetSourcePosition(clause->position()); |
Handle<Code> ic = CompareIC::GetUninitialized(Token::EQ_STRICT); |
- EmitCallIC(ic, &patch_site); |
+ EmitCallIC(ic, &patch_site, clause->label()->id()); |
__ cmp(r0, Operand(0)); |
__ b(ne, &next_test); |
__ Drop(1); // Switch value is no longer needed. |
@@ -1109,6 +1109,67 @@ void FullCodeGenerator::VisitVariableProxy(VariableProxy* expr) { |
} |
+void FullCodeGenerator::EmitLoadGlobalSlotCheckExtensions( |
+ Slot* slot, |
+ TypeofState typeof_state, |
+ Label* slow) { |
+ Register current = cp; |
+ Register next = r1; |
+ Register temp = r2; |
+ |
+ Scope* s = scope(); |
+ while (s != NULL) { |
+ if (s->num_heap_slots() > 0) { |
+ if (s->calls_eval()) { |
+ // Check that extension is NULL. |
+ __ ldr(temp, ContextOperand(current, Context::EXTENSION_INDEX)); |
+ __ tst(temp, temp); |
+ __ b(ne, slow); |
+ } |
+ // Load next context in chain. |
+ __ ldr(next, ContextOperand(current, Context::CLOSURE_INDEX)); |
+ __ ldr(next, FieldMemOperand(next, JSFunction::kContextOffset)); |
+ // Walk the rest of the chain without clobbering cp. |
+ current = next; |
+ } |
+ // If no outer scope calls eval, we do not need to check more |
+ // context extensions. |
+ if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break; |
+ s = s->outer_scope(); |
+ } |
+ |
+ if (s->is_eval_scope()) { |
+ Label loop, fast; |
+ if (!current.is(next)) { |
+ __ Move(next, current); |
+ } |
+ __ bind(&loop); |
+ // Terminate at global context. |
+ __ ldr(temp, FieldMemOperand(next, HeapObject::kMapOffset)); |
+ __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex); |
+ __ cmp(temp, ip); |
+ __ b(eq, &fast); |
+ // Check that extension is NULL. |
+ __ ldr(temp, ContextOperand(next, Context::EXTENSION_INDEX)); |
+ __ tst(temp, temp); |
+ __ b(ne, slow); |
+ // Load next context in chain. |
+ __ ldr(next, ContextOperand(next, Context::CLOSURE_INDEX)); |
+ __ ldr(next, FieldMemOperand(next, JSFunction::kContextOffset)); |
+ __ b(&loop); |
+ __ bind(&fast); |
+ } |
+ |
+ __ ldr(r0, GlobalObjectOperand()); |
+ __ mov(r2, Operand(slot->var()->name())); |
+ RelocInfo::Mode mode = (typeof_state == INSIDE_TYPEOF) |
+ ? RelocInfo::CODE_TARGET |
+ : RelocInfo::CODE_TARGET_CONTEXT; |
+ Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize(); |
+ EmitCallIC(ic, mode); |
+} |
+ |
+ |
MemOperand FullCodeGenerator::ContextSlotOperandCheckExtensions( |
Slot* slot, |
Label* slow) { |
@@ -1196,67 +1257,6 @@ void FullCodeGenerator::EmitDynamicLoadFromSlotFastCase( |
} |
-void FullCodeGenerator::EmitLoadGlobalSlotCheckExtensions( |
- Slot* slot, |
- TypeofState typeof_state, |
- Label* slow) { |
- Register current = cp; |
- Register next = r1; |
- Register temp = r2; |
- |
- Scope* s = scope(); |
- while (s != NULL) { |
- if (s->num_heap_slots() > 0) { |
- if (s->calls_eval()) { |
- // Check that extension is NULL. |
- __ ldr(temp, ContextOperand(current, Context::EXTENSION_INDEX)); |
- __ tst(temp, temp); |
- __ b(ne, slow); |
- } |
- // Load next context in chain. |
- __ ldr(next, ContextOperand(current, Context::CLOSURE_INDEX)); |
- __ ldr(next, FieldMemOperand(next, JSFunction::kContextOffset)); |
- // Walk the rest of the chain without clobbering cp. |
- current = next; |
- } |
- // If no outer scope calls eval, we do not need to check more |
- // context extensions. |
- if (!s->outer_scope_calls_eval() || s->is_eval_scope()) break; |
- s = s->outer_scope(); |
- } |
- |
- if (s->is_eval_scope()) { |
- Label loop, fast; |
- if (!current.is(next)) { |
- __ Move(next, current); |
- } |
- __ bind(&loop); |
- // Terminate at global context. |
- __ ldr(temp, FieldMemOperand(next, HeapObject::kMapOffset)); |
- __ LoadRoot(ip, Heap::kGlobalContextMapRootIndex); |
- __ cmp(temp, ip); |
- __ b(eq, &fast); |
- // Check that extension is NULL. |
- __ ldr(temp, ContextOperand(next, Context::EXTENSION_INDEX)); |
- __ tst(temp, temp); |
- __ b(ne, slow); |
- // Load next context in chain. |
- __ ldr(next, ContextOperand(next, Context::CLOSURE_INDEX)); |
- __ ldr(next, FieldMemOperand(next, JSFunction::kContextOffset)); |
- __ b(&loop); |
- __ bind(&fast); |
- } |
- |
- __ ldr(r0, GlobalObjectOperand()); |
- __ mov(r2, Operand(slot->var()->name())); |
- RelocInfo::Mode mode = (typeof_state == INSIDE_TYPEOF) |
- ? RelocInfo::CODE_TARGET |
- : RelocInfo::CODE_TARGET_CONTEXT; |
- Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize(); |
- EmitCallIC(ic, mode); |
-} |
- |
- |
void FullCodeGenerator::EmitVariableLoad(Variable* var) { |
// Four cases: non-this global variables, lookup slots, all other |
// types of slots, and parameters that rewrite to explicit property |
@@ -1438,8 +1438,10 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) { |
VisitForAccumulatorValue(value); |
__ mov(r2, Operand(key->handle())); |
__ ldr(r1, MemOperand(sp)); |
- Handle<Code> ic = isolate()->builtins()->StoreIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ Handle<Code> ic = is_strict_mode() |
+ ? isolate()->builtins()->StoreIC_Initialize_Strict() |
+ : isolate()->builtins()->StoreIC_Initialize(); |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, key->id()); |
PrepareForBailoutForId(key->id(), NO_REGISTERS); |
} else { |
VisitForEffect(value); |
@@ -1651,13 +1653,13 @@ void FullCodeGenerator::VisitAssignment(Assignment* expr) { |
SetSourcePosition(expr->position() + 1); |
AccumulatorValueContext context(this); |
if (ShouldInlineSmiCase(op)) { |
- EmitInlineSmiBinaryOp(expr, |
+ EmitInlineSmiBinaryOp(expr->binary_operation(), |
op, |
mode, |
expr->target(), |
expr->value()); |
} else { |
- EmitBinaryOp(op, mode); |
+ EmitBinaryOp(expr->binary_operation(), op, mode); |
} |
// Deoptimization point in case the binary operation may have side effects. |
@@ -1693,7 +1695,11 @@ void FullCodeGenerator::EmitNamedPropertyLoad(Property* prop) { |
__ mov(r2, Operand(key->handle())); |
// Call load IC. It has arguments receiver and property name r0 and r2. |
Handle<Code> ic = isolate()->builtins()->LoadIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ if (prop->is_synthetic()) { |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ } else { |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, prop->id()); |
+ } |
} |
@@ -1701,11 +1707,15 @@ void FullCodeGenerator::EmitKeyedPropertyLoad(Property* prop) { |
SetSourcePosition(prop->position()); |
// Call keyed load IC. It has arguments key and receiver in r0 and r1. |
Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ if (prop->is_synthetic()) { |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ } else { |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, prop->id()); |
+ } |
} |
-void FullCodeGenerator::EmitInlineSmiBinaryOp(Expression* expr, |
+void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr, |
Token::Value op, |
OverwriteMode mode, |
Expression* left_expr, |
@@ -1728,7 +1738,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(Expression* expr, |
__ bind(&stub_call); |
TypeRecordingBinaryOpStub stub(op, mode); |
- EmitCallIC(stub.GetCode(), &patch_site); |
+ EmitCallIC(stub.GetCode(), &patch_site, expr->id()); |
__ jmp(&done); |
__ bind(&smi_case); |
@@ -1804,11 +1814,12 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(Expression* expr, |
} |
-void FullCodeGenerator::EmitBinaryOp(Token::Value op, |
+void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, |
+ Token::Value op, |
OverwriteMode mode) { |
__ pop(r1); |
TypeRecordingBinaryOpStub stub(op, mode); |
- EmitCallIC(stub.GetCode(), NULL); |
+ EmitCallIC(stub.GetCode(), NULL, expr->id()); |
context()->Plug(r0); |
} |
@@ -2006,7 +2017,7 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) { |
Handle<Code> ic = is_strict_mode() |
? isolate()->builtins()->StoreIC_Initialize_Strict() |
: isolate()->builtins()->StoreIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, expr->id()); |
// If the assignment ends an initialization block, revert to fast case. |
if (expr->ends_initialization_block()) { |
@@ -2052,7 +2063,7 @@ void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) { |
Handle<Code> ic = is_strict_mode() |
? isolate()->builtins()->KeyedStoreIC_Initialize_Strict() |
: isolate()->builtins()->KeyedStoreIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, expr->id()); |
// If the assignment ends an initialization block, revert to fast case. |
if (expr->ends_initialization_block()) { |
@@ -2104,7 +2115,9 @@ void FullCodeGenerator::EmitCallWithIC(Call* expr, |
InLoopFlag in_loop = (loop_depth() > 0) ? IN_LOOP : NOT_IN_LOOP; |
Handle<Code> ic = |
isolate()->stub_cache()->ComputeCallInitialize(arg_count, in_loop); |
- EmitCallIC(ic, mode); |
+ unsigned ast_id = |
+ (mode == RelocInfo::CODE_TARGET_WITH_ID) ? expr->id() : kNoASTId; |
+ EmitCallIC(ic, mode, ast_id); |
RecordJSReturnSite(expr); |
// Restore context register. |
__ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset)); |
@@ -2139,7 +2152,7 @@ void FullCodeGenerator::EmitKeyedCallWithIC(Call* expr, |
Handle<Code> ic = |
isolate()->stub_cache()->ComputeKeyedCallInitialize(arg_count, in_loop); |
__ ldr(r2, MemOperand(sp, (arg_count + 1) * kPointerSize)); // Key. |
- EmitCallIC(ic, mode); |
+ EmitCallIC(ic, mode, expr->id()); |
RecordJSReturnSite(expr); |
// Restore context register. |
__ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset)); |
@@ -2315,11 +2328,11 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
{ PreservePositionScope scope(masm()->positions_recorder()); |
VisitForStackValue(prop->obj()); |
} |
- EmitCallWithIC(expr, key->handle(), RelocInfo::CODE_TARGET); |
+ EmitCallWithIC(expr, key->handle(), RelocInfo::CODE_TARGET_WITH_ID); |
} 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. |
+ // for a regular property use keyed EmitCallIC. |
if (prop->is_synthetic()) { |
// Do not visit the object and key subexpressions (they are shared |
// by all occurrences of the same rewritten parameter). |
@@ -2346,7 +2359,7 @@ void FullCodeGenerator::VisitCall(Call* expr) { |
{ PreservePositionScope scope(masm()->positions_recorder()); |
VisitForStackValue(prop->obj()); |
} |
- EmitKeyedCallWithIC(expr, prop->key(), RelocInfo::CODE_TARGET); |
+ EmitKeyedCallWithIC(expr, prop->key(), RelocInfo::CODE_TARGET_WITH_ID); |
} |
} |
} else { |
@@ -3657,7 +3670,7 @@ void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) { |
__ mov(r2, Operand(expr->name())); |
Handle<Code> ic = |
isolate()->stub_cache()->ComputeCallInitialize(arg_count, NOT_IN_LOOP); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, expr->id()); |
// Restore context register. |
__ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset)); |
} else { |
@@ -3936,7 +3949,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
SetSourcePosition(expr->position()); |
TypeRecordingBinaryOpStub stub(Token::ADD, NO_OVERWRITE); |
- EmitCallIC(stub.GetCode(), &patch_site); |
+ EmitCallIC(stub.GetCode(), &patch_site, expr->CountId()); |
__ bind(&done); |
// Store the value returned in r0. |
@@ -3967,7 +3980,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
Handle<Code> ic = is_strict_mode() |
? isolate()->builtins()->StoreIC_Initialize_Strict() |
: isolate()->builtins()->StoreIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, expr->id()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
if (expr->is_postfix()) { |
if (!context()->IsEffect()) { |
@@ -3984,7 +3997,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
Handle<Code> ic = is_strict_mode() |
? isolate()->builtins()->KeyedStoreIC_Initialize_Strict() |
: isolate()->builtins()->KeyedStoreIC_Initialize(); |
- EmitCallIC(ic, RelocInfo::CODE_TARGET); |
+ EmitCallIC(ic, RelocInfo::CODE_TARGET_WITH_ID, expr->id()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
if (expr->is_postfix()) { |
if (!context()->IsEffect()) { |
@@ -4213,7 +4226,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) { |
// Record position and call the compare IC. |
SetSourcePosition(expr->position()); |
Handle<Code> ic = CompareIC::GetUninitialized(op); |
- EmitCallIC(ic, &patch_site); |
+ EmitCallIC(ic, &patch_site, expr->id()); |
PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false); |
__ cmp(r0, Operand(0)); |
Split(cond, if_true, if_false, fall_through); |
@@ -4275,9 +4288,12 @@ Register FullCodeGenerator::context_register() { |
} |
-void FullCodeGenerator::EmitCallIC(Handle<Code> ic, RelocInfo::Mode mode) { |
+void FullCodeGenerator::EmitCallIC(Handle<Code> ic, |
+ RelocInfo::Mode mode, |
+ unsigned ast_id) { |
ASSERT(mode == RelocInfo::CODE_TARGET || |
- mode == RelocInfo::CODE_TARGET_CONTEXT); |
+ mode == RelocInfo::CODE_TARGET_CONTEXT || |
+ mode == RelocInfo::CODE_TARGET_WITH_ID); |
Counters* counters = isolate()->counters(); |
switch (ic->kind()) { |
case Code::LOAD_IC: |
@@ -4294,11 +4310,19 @@ void FullCodeGenerator::EmitCallIC(Handle<Code> ic, RelocInfo::Mode mode) { |
default: |
break; |
} |
- __ Call(ic, mode); |
+ if (mode == RelocInfo::CODE_TARGET_WITH_ID) { |
+ ASSERT(ast_id != kNoASTId); |
+ __ CallWithAstId(ic, mode, ast_id); |
+ } else { |
+ ASSERT(ast_id == kNoASTId); |
+ __ Call(ic, mode); |
+ } |
} |
-void FullCodeGenerator::EmitCallIC(Handle<Code> ic, JumpPatchSite* patch_site) { |
+void FullCodeGenerator::EmitCallIC(Handle<Code> ic, |
+ JumpPatchSite* patch_site, |
+ unsigned ast_id) { |
Counters* counters = isolate()->counters(); |
switch (ic->kind()) { |
case Code::LOAD_IC: |
@@ -4315,7 +4339,12 @@ void FullCodeGenerator::EmitCallIC(Handle<Code> ic, JumpPatchSite* patch_site) { |
default: |
break; |
} |
- __ Call(ic, RelocInfo::CODE_TARGET); |
+ |
+ if (ast_id != kNoASTId) { |
+ __ CallWithAstId(ic, RelocInfo::CODE_TARGET_WITH_ID, ast_id); |
+ } else { |
+ __ Call(ic, RelocInfo::CODE_TARGET); |
+ } |
if (patch_site != NULL && patch_site->is_bound()) { |
patch_site->EmitPatchInfo(); |
} else { |