| Index: src/x64/lithium-x64.h
|
| diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
|
| index 449c2a129d84888afb5fb563299ed6c0a42116bf..84d05c051a27a8c0ae90bb3c2002d692c3275e87 100644
|
| --- a/src/x64/lithium-x64.h
|
| +++ b/src/x64/lithium-x64.h
|
| @@ -96,6 +96,7 @@ class LCodeGen;
|
| V(ElementsKind) \
|
| V(FastLiteral) \
|
| V(FixedArrayBaseLength) \
|
| + V(MapEnumLength) \
|
| V(FunctionLiteral) \
|
| V(GetCachedArrayIndex) \
|
| V(GlobalObject) \
|
| @@ -1002,6 +1003,16 @@ class LFixedArrayBaseLength: public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| +class LMapEnumLength: public LTemplateInstruction<1, 1, 0> {
|
| + public:
|
| + explicit LMapEnumLength(LOperand* value) {
|
| + inputs_[0] = value;
|
| + }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(MapEnumLength, "map-enum-length")
|
| +};
|
| +
|
| +
|
| class LElementsKind: public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LElementsKind(LOperand* value) {
|
|
|