Index: src/ia32/lithium-ia32.h |
=================================================================== |
--- src/ia32/lithium-ia32.h (revision 7281) |
+++ src/ia32/lithium-ia32.h (working copy) |
@@ -157,6 +157,7 @@ |
V(SubI) \ |
V(TaggedToI) \ |
V(Throw) \ |
+ V(ToFastProperties) \ |
V(Typeof) \ |
V(TypeofIs) \ |
V(TypeofIsAndBranch) \ |
@@ -1847,6 +1848,17 @@ |
}; |
+class LToFastProperties: public LTemplateInstruction<1, 1, 0> { |
+ public: |
+ explicit LToFastProperties(LOperand* value) { |
+ inputs_[0] = value; |
+ } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(ToFastProperties, "to-fast-properties") |
+ DECLARE_HYDROGEN_ACCESSOR(ToFastProperties) |
+}; |
+ |
+ |
class LTypeof: public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LTypeof(LOperand* value) { |