Index: src/arm/lithium-arm.h |
=================================================================== |
--- src/arm/lithium-arm.h (revision 6645) |
+++ src/arm/lithium-arm.h (working copy) |
@@ -41,7 +41,6 @@ |
#define LITHIUM_ALL_INSTRUCTION_LIST(V) \ |
V(ControlInstruction) \ |
- V(Constant) \ |
V(Call) \ |
V(StoreKeyed) \ |
V(StoreNamed) \ |
@@ -903,44 +902,30 @@ |
}; |
-class LConstant: public LTemplateInstruction<1, 0, 0> { |
- DECLARE_INSTRUCTION(Constant) |
-}; |
- |
- |
-class LConstantI: public LConstant { |
+class LConstantI: public LTemplateInstruction<1, 0, 0> { |
public: |
- explicit LConstantI(int32_t value) : value_(value) { } |
- int32_t value() const { return value_; } |
- |
DECLARE_CONCRETE_INSTRUCTION(ConstantI, "constant-i") |
+ DECLARE_HYDROGEN_ACCESSOR(Constant) |
- private: |
- int32_t value_; |
+ int32_t value() const { return hydrogen()->Integer32Value(); } |
}; |
-class LConstantD: public LConstant { |
+class LConstantD: public LTemplateInstruction<1, 0, 0> { |
public: |
- explicit LConstantD(double value) : value_(value) { } |
- double value() const { return value_; } |
- |
DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-d") |
+ DECLARE_HYDROGEN_ACCESSOR(Constant) |
- private: |
- double value_; |
+ double value() const { return hydrogen()->DoubleValue(); } |
}; |
-class LConstantT: public LConstant { |
+class LConstantT: public LTemplateInstruction<1, 0, 0> { |
public: |
- explicit LConstantT(Handle<Object> value) : value_(value) { } |
- Handle<Object> value() const { return value_; } |
- |
DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t") |
+ DECLARE_HYDROGEN_ACCESSOR(Constant) |
- private: |
- Handle<Object> value_; |
+ Handle<Object> value() const { return hydrogen()->handle(); } |
}; |