Index: src/arm/full-codegen-arm.cc |
=================================================================== |
--- src/arm/full-codegen-arm.cc (revision 9305) |
+++ src/arm/full-codegen-arm.cc (working copy) |
@@ -3903,10 +3903,14 @@ |
void FullCodeGenerator::EmitLiteralCompareTypeof(Expression* expr, |
- Handle<String> check, |
- Label* if_true, |
- Label* if_false, |
- Label* fall_through) { |
+ Handle<String> check) { |
+ Label materialize_true, materialize_false; |
+ Label* if_true = NULL; |
+ Label* if_false = NULL; |
+ Label* fall_through = NULL; |
+ context()->PrepareTest(&materialize_true, &materialize_false, |
+ &if_true, &if_false, &fall_through); |
+ |
{ AccumulatorValueContext context(this); |
VisitForTypeofValue(expr); |
} |
@@ -3968,28 +3972,20 @@ |
} else { |
if (if_false != fall_through) __ jmp(if_false); |
} |
+ context()->Plug(if_true, if_false); |
} |
-void FullCodeGenerator::EmitLiteralCompareUndefined(Expression* expr, |
- Label* if_true, |
- Label* if_false, |
- Label* fall_through) { |
- VisitForAccumulatorValue(expr); |
- PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false); |
- |
- __ CompareRoot(r0, Heap::kUndefinedValueRootIndex); |
- Split(eq, if_true, if_false, fall_through); |
-} |
- |
- |
void FullCodeGenerator::VisitCompareOperation(CompareOperation* expr) { |
Comment cmnt(masm_, "[ CompareOperation"); |
SetSourcePosition(expr->position()); |
+ // First we try a fast inlined version of the compare when one of |
+ // the operands is a literal. |
+ if (TryLiteralCompare(expr)) return; |
+ |
// Always perform the comparison for its control flow. Pack the result |
// into the expression's context after the comparison is performed. |
- |
Label materialize_true, materialize_false; |
Label* if_true = NULL; |
Label* if_false = NULL; |
@@ -3997,13 +3993,6 @@ |
context()->PrepareTest(&materialize_true, &materialize_false, |
&if_true, &if_false, &fall_through); |
- // First we try a fast inlined version of the compare when one of |
- // the operands is a literal. |
- if (TryLiteralCompare(expr, if_true, if_false, fall_through)) { |
- context()->Plug(if_true, if_false); |
- return; |
- } |
- |
Token::Value op = expr->op(); |
VisitForStackValue(expr->left()); |
switch (op) { |
@@ -4090,20 +4079,31 @@ |
} |
-void FullCodeGenerator::EmitLiteralCompareNull(Expression* expr, |
- bool is_strict, |
- Label* if_true, |
- Label* if_false, |
- Label* fall_through) { |
- VisitForAccumulatorValue(expr); |
+void FullCodeGenerator::EmitLiteralCompareNil(CompareOperation* expr, |
+ Expression* sub_expr, |
+ NilValue nil) { |
+ Label materialize_true, materialize_false; |
+ Label* if_true = NULL; |
+ Label* if_false = NULL; |
+ Label* fall_through = NULL; |
+ context()->PrepareTest(&materialize_true, &materialize_false, |
+ &if_true, &if_false, &fall_through); |
+ |
+ VisitForAccumulatorValue(sub_expr); |
PrepareForBailoutBeforeSplit(TOS_REG, true, if_true, if_false); |
- __ LoadRoot(r1, Heap::kNullValueRootIndex); |
+ Heap::RootListIndex nil_value = nil == kNullValue ? |
+ Heap::kNullValueRootIndex : |
+ Heap::kUndefinedValueRootIndex; |
+ __ LoadRoot(r1, nil_value); |
__ cmp(r0, r1); |
- if (is_strict) { |
+ if (expr->op() == Token::EQ_STRICT) { |
Split(eq, if_true, if_false, fall_through); |
} else { |
+ Heap::RootListIndex other_nil_value = nil == kNullValue ? |
+ Heap::kUndefinedValueRootIndex : |
+ Heap::kNullValueRootIndex; |
__ b(eq, if_true); |
- __ LoadRoot(r1, Heap::kUndefinedValueRootIndex); |
+ __ LoadRoot(r1, other_nil_value); |
__ cmp(r0, r1); |
__ b(eq, if_true); |
__ JumpIfSmi(r0, if_false); |
@@ -4114,6 +4114,7 @@ |
__ cmp(r1, Operand(1 << Map::kIsUndetectable)); |
Split(eq, if_true, if_false, fall_through); |
} |
+ context()->Plug(if_true, if_false); |
} |