Index: src/arm/full-codegen-arm.cc |
diff --git a/src/arm/full-codegen-arm.cc b/src/arm/full-codegen-arm.cc |
index 3f229eb878a9e1d62ddcc8a07a83126427345e9c..dbce0edf97521e528667161cb9223586e5c0f22f 100644 |
--- a/src/arm/full-codegen-arm.cc |
+++ b/src/arm/full-codegen-arm.cc |
@@ -671,7 +671,7 @@ void FullCodeGenerator::DoTest(Expression* condition, |
Label* if_false, |
Label* fall_through) { |
Handle<Code> ic = ToBooleanStub::GetUninitialized(isolate()); |
- CallIC(ic, NOT_CONTEXTUAL, condition->test_id()); |
+ CallIC(ic, condition->test_id()); |
__ tst(result_register(), result_register()); |
Split(ne, if_true, if_false, fall_through); |
} |
@@ -1032,7 +1032,7 @@ void FullCodeGenerator::VisitSwitchStatement(SwitchStatement* stmt) { |
// Record position before stub call for type feedback. |
SetSourcePosition(clause->position()); |
Handle<Code> ic = CompareIC::GetUninitialized(isolate(), Token::EQ_STRICT); |
- CallIC(ic, NOT_CONTEXTUAL, clause->CompareId()); |
+ CallIC(ic, clause->CompareId()); |
patch_site.EmitPatchInfo(); |
Label skip; |
@@ -1696,7 +1696,7 @@ void FullCodeGenerator::VisitObjectLiteral(ObjectLiteral* expr) { |
VisitForAccumulatorValue(value); |
__ mov(r2, Operand(key->value())); |
__ ldr(r1, MemOperand(sp)); |
- CallStoreIC(NOT_CONTEXTUAL, key->LiteralFeedbackId()); |
+ CallStoreIC(key->LiteralFeedbackId()); |
PrepareForBailoutForId(key->id(), NO_REGISTERS); |
} else { |
VisitForEffect(value); |
@@ -2098,7 +2098,7 @@ void FullCodeGenerator::VisitYield(Yield* expr) { |
__ ldr(r1, MemOperand(sp, kPointerSize)); |
__ ldr(r0, MemOperand(sp, 2 * kPointerSize)); |
Handle<Code> ic = isolate()->builtins()->KeyedLoadIC_Initialize(); |
- CallIC(ic, NOT_CONTEXTUAL, TypeFeedbackId::None()); |
+ CallIC(ic, TypeFeedbackId::None()); |
__ mov(r1, r0); |
__ str(r1, MemOperand(sp, 2 * kPointerSize)); |
CallFunctionStub stub(1, CALL_AS_METHOD); |
@@ -2295,7 +2295,7 @@ 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(); |
- CallIC(ic, NOT_CONTEXTUAL, prop->PropertyFeedbackId()); |
+ CallIC(ic, prop->PropertyFeedbackId()); |
} |
@@ -2322,8 +2322,7 @@ void FullCodeGenerator::EmitInlineSmiBinaryOp(BinaryOperation* expr, |
__ bind(&stub_call); |
BinaryOpICStub stub(op, mode); |
- CallIC(stub.GetCode(isolate()), NOT_CONTEXTUAL, |
- expr->BinaryOperationFeedbackId()); |
+ CallIC(stub.GetCode(isolate()), expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ jmp(&done); |
@@ -2400,8 +2399,7 @@ void FullCodeGenerator::EmitBinaryOp(BinaryOperation* expr, |
__ pop(r1); |
BinaryOpICStub stub(op, mode); |
JumpPatchSite patch_site(masm_); // unbound, signals no inlined smi code. |
- CallIC(stub.GetCode(isolate()), NOT_CONTEXTUAL, |
- expr->BinaryOperationFeedbackId()); |
+ CallIC(stub.GetCode(isolate()), expr->BinaryOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
context()->Plug(r0); |
} |
@@ -2439,7 +2437,7 @@ void FullCodeGenerator::EmitAssignment(Expression* expr) { |
__ mov(r1, r0); |
__ pop(r0); // Restore value. |
__ mov(r2, Operand(prop->key()->AsLiteral()->value())); |
- CallStoreIC(NOT_CONTEXTUAL); |
+ CallStoreIC(); |
break; |
} |
case KEYED_PROPERTY: { |
@@ -2465,7 +2463,7 @@ void FullCodeGenerator::EmitVariableAssignment(Variable* var, |
// Global var, const, or let. |
__ mov(r2, Operand(var->name())); |
__ ldr(r1, GlobalObjectOperand()); |
- CallStoreIC(CONTEXTUAL); |
+ CallStoreIC(); |
} else if (op == Token::INIT_CONST) { |
// Const initializers need a write barrier. |
ASSERT(!var->IsParameter()); // No const parameters. |
@@ -2559,7 +2557,7 @@ void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) { |
__ mov(r2, Operand(prop->key()->AsLiteral()->value())); |
__ pop(r1); |
- CallStoreIC(NOT_CONTEXTUAL, expr->AssignmentFeedbackId()); |
+ CallStoreIC(expr->AssignmentFeedbackId()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
context()->Plug(r0); |
@@ -2576,7 +2574,7 @@ void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) { |
Handle<Code> ic = is_classic_mode() |
? isolate()->builtins()->KeyedStoreIC_Initialize() |
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict(); |
- CallIC(ic, NOT_CONTEXTUAL, expr->AssignmentFeedbackId()); |
+ CallIC(ic, expr->AssignmentFeedbackId()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
context()->Plug(r0); |
@@ -2603,12 +2601,10 @@ void FullCodeGenerator::VisitProperty(Property* expr) { |
void FullCodeGenerator::CallIC(Handle<Code> code, |
- ContextualMode mode, |
TypeFeedbackId ast_id) { |
ic_total_count_++; |
// All calls must have a predictable size in full-codegen code to ensure that |
// the debugger can patch them correctly. |
- ASSERT(mode != CONTEXTUAL || ast_id.IsNone()); |
__ Call(code, RelocInfo::CODE_TARGET, ast_id, al, |
NEVER_INLINE_TARGET_ADDRESS); |
} |
@@ -4415,9 +4411,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
SetSourcePosition(expr->position()); |
BinaryOpICStub stub(Token::ADD, NO_OVERWRITE); |
- CallIC(stub.GetCode(isolate()), |
- NOT_CONTEXTUAL, |
- expr->CountBinOpFeedbackId()); |
+ CallIC(stub.GetCode(isolate()), expr->CountBinOpFeedbackId()); |
patch_site.EmitPatchInfo(); |
__ bind(&done); |
@@ -4446,7 +4440,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
case NAMED_PROPERTY: { |
__ mov(r2, Operand(prop->key()->AsLiteral()->value())); |
__ pop(r1); |
- CallStoreIC(NOT_CONTEXTUAL, expr->CountStoreFeedbackId()); |
+ CallStoreIC(expr->CountStoreFeedbackId()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
if (expr->is_postfix()) { |
if (!context()->IsEffect()) { |
@@ -4462,7 +4456,7 @@ void FullCodeGenerator::VisitCountOperation(CountOperation* expr) { |
Handle<Code> ic = is_classic_mode() |
? isolate()->builtins()->KeyedStoreIC_Initialize() |
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict(); |
- CallIC(ic, NOT_CONTEXTUAL, expr->CountStoreFeedbackId()); |
+ CallIC(ic, expr->CountStoreFeedbackId()); |
PrepareForBailoutForId(expr->AssignmentId(), TOS_REG); |
if (expr->is_postfix()) { |
if (!context()->IsEffect()) { |
@@ -4652,7 +4646,7 @@ void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) { |
// Record position and call the compare IC. |
SetSourcePosition(expr->position()); |
Handle<Code> ic = CompareIC::GetUninitialized(isolate(), op); |
- CallIC(ic, NOT_CONTEXTUAL, expr->CompareOperationFeedbackId()); |
+ CallIC(ic, expr->CompareOperationFeedbackId()); |
patch_site.EmitPatchInfo(); |
PrepareForBailoutBeforeSplit(expr, true, if_true, if_false); |
__ cmp(r0, Operand::Zero()); |
@@ -4687,7 +4681,7 @@ void FullCodeGenerator::EmitLiteralCompareNil(CompareOperation* expr, |
Split(eq, if_true, if_false, fall_through); |
} else { |
Handle<Code> ic = CompareNilICStub::GetUninitialized(isolate(), nil); |
- CallIC(ic, NOT_CONTEXTUAL, expr->CompareOperationFeedbackId()); |
+ CallIC(ic, expr->CompareOperationFeedbackId()); |
__ cmp(r0, Operand(0)); |
Split(ne, if_true, if_false, fall_through); |
} |