Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index b4b44521cd0c0a4dd3227a455b3683f0b4b6f2fa..6452831f10466100f1beec678855f0c5227bb06b 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -1332,7 +1332,7 @@ LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
if (instr->representation().IsSmiOrInteger32()) { |
ASSERT(instr->left()->representation().Equals(instr->representation())); |
ASSERT(instr->right()->representation().Equals(instr->representation())); |
- if (instr->HasPowerOf2Divisor()) { |
+ if (instr->RightIsPowerOf2()) { |
ASSERT(!instr->CheckFlag(HValue::kCanBeDivByZero)); |
LOperand* value = UseRegisterAtStart(instr->left()); |
LDivI* div = |
@@ -1354,25 +1354,6 @@ LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
} |
-HValue* LChunkBuilder::SimplifiedDivisorForMathFloorOfDiv(HValue* divisor) { |
- if (divisor->IsConstant() && |
- HConstant::cast(divisor)->HasInteger32Value()) { |
- HConstant* constant_val = HConstant::cast(divisor); |
- return constant_val->CopyToRepresentation(Representation::Integer32(), |
- divisor->block()->zone()); |
- } |
- // A value with an integer representation does not need to be transformed. |
- if (divisor->representation().IsInteger32()) { |
- return divisor; |
- // A change from an integer32 can be replaced by the integer32 value. |
- } else if (divisor->IsChange() && |
- HChange::cast(divisor)->from().IsInteger32()) { |
- return HChange::cast(divisor)->value(); |
- } |
- return NULL; |
-} |
- |
- |
LInstruction* LChunkBuilder::DoMathFloorOfDiv(HMathFloorOfDiv* instr) { |
HValue* right = instr->right(); |
if (!right->IsConstant()) { |
@@ -1418,7 +1399,7 @@ LInstruction* LChunkBuilder::DoMod(HMod* instr) { |
ASSERT(instr->left()->representation().Equals(instr->representation())); |
ASSERT(instr->right()->representation().Equals(instr->representation())); |
- if (instr->HasPowerOf2Divisor()) { |
+ if (instr->RightIsPowerOf2()) { |
ASSERT(!right->CanBeZero()); |
LModI* mod = new(zone()) LModI(UseRegisterAtStart(left), |
UseOrConstant(right), |