| Index: src/arm/lithium-codegen-arm.cc
|
| ===================================================================
|
| --- src/arm/lithium-codegen-arm.cc (revision 6474)
|
| +++ src/arm/lithium-codegen-arm.cc (working copy)
|
| @@ -665,7 +665,7 @@
|
| return;
|
| }
|
|
|
| - if (cc == no_condition) {
|
| + if (cc == kNoCondition) {
|
| if (FLAG_trap_on_deopt) __ stop("trap_on_deopt");
|
| __ Jump(entry, RelocInfo::RUNTIME_ENTRY);
|
| } else {
|
| @@ -1220,7 +1220,7 @@
|
| __ b(ne, &done);
|
| if (instr->InputAt(1)->IsConstantOperand()) {
|
| if (ToInteger32(LConstantOperand::cast(instr->InputAt(1))) < 0) {
|
| - DeoptimizeIf(no_condition, instr->environment());
|
| + DeoptimizeIf(kNoCondition, instr->environment());
|
| }
|
| } else {
|
| // Test the non-zero operand for negative sign.
|
| @@ -1487,7 +1487,7 @@
|
| if (r.IsInteger32()) {
|
| Register reg = ToRegister(instr->InputAt(0));
|
| __ cmp(reg, Operand(0));
|
| - EmitBranch(true_block, false_block, nz);
|
| + EmitBranch(true_block, false_block, ne);
|
| } else if (r.IsDouble()) {
|
| DoubleRegister reg = ToDoubleRegister(instr->InputAt(0));
|
| Register scratch = scratch0();
|
| @@ -1545,7 +1545,7 @@
|
| __ CallStub(&stub);
|
| __ cmp(reg, Operand(0));
|
| __ ldm(ia_w, sp, saved_regs);
|
| - EmitBranch(true_block, false_block, nz);
|
| + EmitBranch(true_block, false_block, ne);
|
| }
|
| }
|
| }
|
| @@ -1597,7 +1597,7 @@
|
|
|
|
|
| Condition LCodeGen::TokenToCondition(Token::Value op, bool is_unsigned) {
|
| - Condition cond = no_condition;
|
| + Condition cond = kNoCondition;
|
| switch (op) {
|
| case Token::EQ:
|
| case Token::EQ_STRICT:
|
| @@ -2140,7 +2140,7 @@
|
| return ge;
|
| default:
|
| UNREACHABLE();
|
| - return no_condition;
|
| + return kNoCondition;
|
| }
|
| }
|
|
|
| @@ -3560,7 +3560,7 @@
|
| Label* false_label,
|
| Register input,
|
| Handle<String> type_name) {
|
| - Condition final_branch_condition = no_condition;
|
| + Condition final_branch_condition = kNoCondition;
|
| Register scratch = scratch0();
|
| if (type_name->Equals(Heap::number_symbol())) {
|
| __ tst(input, Operand(kSmiTagMask));
|
| @@ -3645,7 +3645,7 @@
|
|
|
|
|
| void LCodeGen::DoDeoptimize(LDeoptimize* instr) {
|
| - DeoptimizeIf(no_condition, instr->environment());
|
| + DeoptimizeIf(kNoCondition, instr->environment());
|
| }
|
|
|
|
|
|
|