Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index 7964b7f6ee90f084e53e01f4bac0644990159496..c7b3bc70e5eba2b3f9ee7df84cea59090c30425e 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -99,6 +99,7 @@ class LCodeGen; |
V(DummyUse) \ |
V(FlooringDivByConstI) \ |
V(FlooringDivByPowerOf2I) \ |
+ V(FlooringDivI) \ |
V(ForInCacheArray) \ |
V(ForInPrepareMap) \ |
V(FunctionLiteral) \ |
@@ -744,14 +745,14 @@ class LDivByConstI V8_FINAL : public LTemplateInstruction<1, 1, 2> { |
class LDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> { |
public: |
- LDivI(LOperand* left, LOperand* right, LOperand* temp) { |
- inputs_[0] = left; |
- inputs_[1] = right; |
+ LDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) { |
+ inputs_[0] = dividend; |
+ inputs_[1] = divisor; |
temps_[0] = temp; |
} |
- LOperand* left() { return inputs_[0]; } |
- LOperand* right() { return inputs_[1]; } |
+ LOperand* dividend() { return inputs_[0]; } |
+ LOperand* divisor() { return inputs_[1]; } |
LOperand* temp() { return temps_[0]; } |
DECLARE_CONCRETE_INSTRUCTION(DivI, "div-i") |
@@ -806,6 +807,23 @@ class LFlooringDivByConstI V8_FINAL : public LTemplateInstruction<1, 1, 3> { |
}; |
+class LFlooringDivI V8_FINAL : public LTemplateInstruction<1, 2, 1> { |
+ public: |
+ LFlooringDivI(LOperand* dividend, LOperand* divisor, LOperand* temp) { |
+ inputs_[0] = dividend; |
+ inputs_[1] = divisor; |
+ temps_[0] = temp; |
+ } |
+ |
+ LOperand* dividend() { return inputs_[0]; } |
+ LOperand* divisor() { return inputs_[1]; } |
+ LOperand* temp() { return temps_[0]; } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(FlooringDivI, "flooring-div-i") |
+ DECLARE_HYDROGEN_ACCESSOR(MathFloorOfDiv) |
+}; |
+ |
+ |
class LMulI V8_FINAL : public LTemplateInstruction<1, 2, 1> { |
public: |
LMulI(LOperand* left, LOperand* right, LOperand* temp) { |
@@ -2750,12 +2768,13 @@ class LChunkBuilder V8_FINAL : public LChunkBuilderBase { |
LInstruction* DoMathClz32(HUnaryMathOperation* instr); |
LInstruction* DoDivByPowerOf2I(HDiv* instr); |
LInstruction* DoDivByConstI(HDiv* instr); |
- LInstruction* DoDivI(HBinaryOperation* instr); |
+ LInstruction* DoDivI(HDiv* instr); |
LInstruction* DoModByPowerOf2I(HMod* instr); |
LInstruction* DoModByConstI(HMod* instr); |
LInstruction* DoModI(HMod* instr); |
LInstruction* DoFlooringDivByPowerOf2I(HMathFloorOfDiv* instr); |
LInstruction* DoFlooringDivByConstI(HMathFloorOfDiv* instr); |
+ LInstruction* DoFlooringDivI(HMathFloorOfDiv* instr); |
private: |
enum Status { |