Index: src/ia32/lithium-ia32.h |
diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h |
index fb24754021db6cf8a67355f13aa59f2c8fa73c54..a8da5f6afa2c06e664933c211afd9f22f032945f 100644 |
--- a/src/ia32/lithium-ia32.h |
+++ b/src/ia32/lithium-ia32.h |
@@ -87,6 +87,7 @@ class LCodeGen; |
V(DivI) \ |
V(DoubleToI) \ |
V(ElementsKind) \ |
+ V(FastLiteral) \ |
V(FixedArrayBaseLength) \ |
V(FunctionLiteral) \ |
V(GetCachedArrayIndex) \ |
@@ -130,8 +131,7 @@ class LCodeGen; |
V(NumberTagD) \ |
V(NumberTagI) \ |
V(NumberUntagD) \ |
- V(ObjectLiteralFast) \ |
- V(ObjectLiteralGeneric) \ |
+ V(ObjectLiteral) \ |
V(OsrEntry) \ |
V(OuterContext) \ |
V(Parameter) \ |
@@ -1991,42 +1991,42 @@ class LCheckNonSmi: public LTemplateInstruction<0, 1, 0> { |
}; |
-class LArrayLiteral: public LTemplateInstruction<1, 1, 0> { |
+class LFastLiteral: public LTemplateInstruction<1, 1, 0> { |
public: |
- explicit LArrayLiteral(LOperand* context) { |
+ explicit LFastLiteral(LOperand* context) { |
inputs_[0] = context; |
} |
LOperand* context() { return inputs_[0]; } |
- 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, 1, 0> { |
+class LArrayLiteral: public LTemplateInstruction<1, 1, 0> { |
public: |
- explicit LObjectLiteralFast(LOperand* context) { |
+ explicit LArrayLiteral(LOperand* context) { |
inputs_[0] = context; |
} |
LOperand* context() { return inputs_[0]; } |
- 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, 1, 0> { |
+class LObjectLiteral: public LTemplateInstruction<1, 1, 0> { |
public: |
- explicit LObjectLiteralGeneric(LOperand* context) { |
+ explicit LObjectLiteral(LOperand* context) { |
inputs_[0] = context; |
} |
LOperand* context() { return inputs_[0]; } |
- DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralGeneric, "object-literal-generic") |
- DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralGeneric) |
+ DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal") |
+ DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral) |
}; |