| Index: src/x64/lithium-x64.h
|
| diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h
|
| index 12bdfb28aed4bb1966270cf28ef05c5433e91bf4..ff756e0b5bdf7aee0290d7f2b64a46233aa73508 100644
|
| --- a/src/x64/lithium-x64.h
|
| +++ b/src/x64/lithium-x64.h
|
| @@ -92,8 +92,7 @@ class LCodeGen;
|
| V(DivI) \
|
| V(DoubleToI) \
|
| V(ElementsKind) \
|
| - V(ExternalArrayLength) \
|
| - V(FixedArrayLength) \
|
| + V(FixedArrayBaseLength) \
|
| V(FunctionLiteral) \
|
| V(GetCachedArrayIndex) \
|
| V(GlobalObject) \
|
| @@ -913,25 +912,15 @@ class LJSArrayLength: public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LExternalArrayLength: public LTemplateInstruction<1, 1, 0> {
|
| +class LFixedArrayBaseLength: public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| - explicit LExternalArrayLength(LOperand* value) {
|
| + explicit LFixedArrayBaseLength(LOperand* value) {
|
| inputs_[0] = value;
|
| }
|
|
|
| - DECLARE_CONCRETE_INSTRUCTION(ExternalArrayLength, "external-array-length")
|
| - DECLARE_HYDROGEN_ACCESSOR(ExternalArrayLength)
|
| -};
|
| -
|
| -
|
| -class LFixedArrayLength: public LTemplateInstruction<1, 1, 0> {
|
| - public:
|
| - explicit LFixedArrayLength(LOperand* value) {
|
| - inputs_[0] = value;
|
| - }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(FixedArrayLength, "fixed-array-length")
|
| - DECLARE_HYDROGEN_ACCESSOR(FixedArrayLength)
|
| + DECLARE_CONCRETE_INSTRUCTION(FixedArrayBaseLength,
|
| + "fixed-array-base-length")
|
| + DECLARE_HYDROGEN_ACCESSOR(FixedArrayBaseLength)
|
| };
|
|
|
|
|
|
|