| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 8d63505a1a4156c075efc8f11cc76f598a48c9ba..35892131d16d941475cc4cfac94ee7fbfec5da62 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -909,7 +909,22 @@ void LChunkBuilder::VisitInstruction(HInstruction* current) {
|
| HInstruction* old_current = current_instruction_;
|
| current_instruction_ = current;
|
| if (current->has_position()) position_ = current->position();
|
| - LInstruction* instr = current->CompileToLithium(this);
|
| +
|
| + LInstruction* instr = NULL;
|
| + if (current->CanReplaceWithDummyUses()) {
|
| + HValue* first_operand = current->OperandCount() == 0
|
| + ? graph()->GetConstant1()
|
| + : current->OperandAt(0);
|
| + instr = DefineAsRegister(new(zone()) LDummyUse(UseAny(first_operand)));
|
| + for (int i = 1; i < current->OperandCount(); ++i) {
|
| + LInstruction* dummy =
|
| + new(zone()) LDummyUse(UseAny(current->OperandAt(i)));
|
| + dummy->set_hydrogen_value(current);
|
| + chunk_->AddInstruction(dummy, current_block_);
|
| + }
|
| + } else {
|
| + instr = current->CompileToLithium(this);
|
| + }
|
|
|
| if (instr != NULL) {
|
| // Associate the hydrogen instruction first, since we may need it for
|
| @@ -1058,21 +1073,15 @@ LInstruction* LChunkBuilder::DoGoto(HGoto* instr) {
|
|
|
|
|
| LInstruction* LChunkBuilder::DoBranch(HBranch* instr) {
|
| - HValue* value = instr->value();
|
| - if (value->EmitAtUses()) {
|
| - ASSERT(value->IsConstant());
|
| - ASSERT(!value->representation().IsDouble());
|
| - HBasicBlock* successor = HConstant::cast(value)->BooleanValue()
|
| - ? instr->FirstSuccessor()
|
| - : instr->SecondSuccessor();
|
| - return new(zone()) LGoto(successor);
|
| - }
|
| + LInstruction* goto_instr = CheckElideControlInstruction(instr);
|
| + if (goto_instr != NULL) return goto_instr;
|
|
|
| ToBooleanStub::Types expected = instr->expected_input_types();
|
|
|
| // Tagged values that are not known smis or booleans require a
|
| // deoptimization environment. If the instruction is generic no
|
| // environment is needed since all cases are handled.
|
| + HValue* value = instr->value();
|
| Representation rep = value->representation();
|
| HType type = value->type();
|
| if (!rep.IsTagged() || type.IsSmi() || type.IsBoolean()) {
|
| @@ -1744,6 +1753,8 @@ LInstruction* LChunkBuilder::DoCompareNumericAndBranch(
|
|
|
| LInstruction* LChunkBuilder::DoCompareObjectEqAndBranch(
|
| HCompareObjectEqAndBranch* instr) {
|
| + LInstruction* goto_instr = CheckElideControlInstruction(instr);
|
| + if (goto_instr != NULL) return goto_instr;
|
| LOperand* left = UseRegisterAtStart(instr->left());
|
| LOperand* right = UseOrConstantAtStart(instr->right());
|
| return new(zone()) LCmpObjectEqAndBranch(left, right);
|
|
|