Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index ab4ecd9e984f859d33d5effb49add92c18aafbf7..327f3052bd080c9e8f44bbfbae027b2fe4d2bc3c 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -49,6 +49,7 @@ class LCodeGen; |
#define LITHIUM_CONCRETE_INSTRUCTION_LIST(V) \ |
V(AccessArgumentsAt) \ |
V(AddI) \ |
+ V(AllocateObject) \ |
V(ApplyArguments) \ |
V(ArgumentsElements) \ |
V(ArgumentsLength) \ |
@@ -1909,6 +1910,13 @@ class LClampTToUint8: public LTemplateInstruction<1, 1, 1> { |
}; |
+class LAllocateObject: public LTemplateInstruction<1, 0, 0> { |
+ public: |
+ DECLARE_CONCRETE_INSTRUCTION(AllocateObject, "allocate-object") |
+ DECLARE_HYDROGEN_ACCESSOR(AllocateObject) |
+}; |
+ |
+ |
class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { |
public: |
DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") |