| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 4e1974fbbbf5418fa12da1019def9fe5d20f85de..81ccde7ca511820bb044eb6a190544953c08198e 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -134,7 +134,8 @@ class LCodeGen;
|
| V(NumberTagD) \
|
| V(NumberTagI) \
|
| V(NumberUntagD) \
|
| - V(ObjectLiteral) \
|
| + V(ObjectLiteralFast) \
|
| + V(ObjectLiteralGeneric) \
|
| V(OsrEntry) \
|
| V(OuterContext) \
|
| V(Parameter) \
|
| @@ -1900,10 +1901,17 @@ class LArrayLiteral: public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LObjectLiteral: public LTemplateInstruction<1, 0, 0> {
|
| +class LObjectLiteralFast: public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| - DECLARE_CONCRETE_INSTRUCTION(ObjectLiteral, "object-literal")
|
| - DECLARE_HYDROGEN_ACCESSOR(ObjectLiteral)
|
| + DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralFast, "object-literal-fast")
|
| + DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralFast)
|
| +};
|
| +
|
| +
|
| +class LObjectLiteralGeneric: public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + DECLARE_CONCRETE_INSTRUCTION(ObjectLiteralGeneric, "object-literal-generic")
|
| + DECLARE_HYDROGEN_ACCESSOR(ObjectLiteralGeneric)
|
| };
|
|
|
|
|
|
|