Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index f22a49fe9c73273f668f50826e8e7484a516fbb3..d26643a6ab2e8d1b330b5a631f0c622358d1d0e4 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -93,6 +93,7 @@ class LCodeGen; |
V(DivI) \ |
V(DoubleToI) \ |
V(ElementsKind) \ |
+ V(FastLiteral) \ |
V(FixedArrayBaseLength) \ |
V(FunctionLiteral) \ |
V(GetCachedArrayIndex) \ |
@@ -135,8 +136,7 @@ class LCodeGen; |
V(NumberTagD) \ |
V(NumberTagI) \ |
V(NumberUntagD) \ |
- V(ObjectLiteralFast) \ |
- V(ObjectLiteralGeneric) \ |
+ V(ObjectLiteral) \ |
V(OsrEntry) \ |
V(OuterContext) \ |
V(Parameter) \ |
@@ -1917,24 +1917,24 @@ class LClampTToUint8: public LTemplateInstruction<1, 1, 1> { |
}; |
-class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { |
+class LFastLiteral: public LTemplateInstruction<1, 0, 0> { |
public: |
- DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") |
- DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) |
+ DECLARE_CONCRETE_INSTRUCTION(FastLiteral, "fast-literal") |
+ DECLARE_HYDROGEN_ACCESSOR(FastLiteral) |
}; |
-class LObjectLiteralFast: public LTemplateInstruction<1, 0, 0> { |
+class LArrayLiteral: public LTemplateInstruction<1, 0, 0> { |
public: |
- DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralFast, "object-literal-fast") |
- DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralFast) |
+ DECLARE_CONCRETE_INSTRUCTION(ArrayLiteral, "array-literal") |
+ DECLARE_HYDROGEN_ACCESSOR(ArrayLiteral) |
}; |
-class LObjectLiteralGeneric: public LTemplateInstruction<1, 0, 0> { |
+class LObjectLiteral: public LTemplateInstruction<1, 0, 0> { |
public: |
- DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralGeneric, "object-literal-generic") |
- DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralGeneric) |
+ DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal") |
+ DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral) |
}; |