Index: src/x64/lithium-x64.h |
diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h |
index 80963d02e0a7552aec96997f1d137cddb3ec05d3..0c0d03a77a8aa8506ad8b1407a070eb3d1b3a67a 100644 |
--- a/src/x64/lithium-x64.h |
+++ b/src/x64/lithium-x64.h |
@@ -74,6 +74,8 @@ class LCodeGen; |
V(CheckMap) \ |
V(CheckPrototypeMaps) \ |
V(CheckSmi) \ |
+ V(ClassOfTest) \ |
+ V(ClassOfTestAndBranch) \ |
V(CmpID) \ |
V(CmpIDAndBranch) \ |
V(CmpJSObjectEq) \ |
@@ -89,12 +91,17 @@ class LCodeGen; |
V(Deoptimize) \ |
V(DivI) \ |
V(DoubleToI) \ |
+ V(ExternalArrayLength) \ |
+ V(FixedArrayLength) \ |
V(FunctionLiteral) \ |
V(Gap) \ |
V(GlobalObject) \ |
V(GlobalReceiver) \ |
V(Goto) \ |
- V(FixedArrayLength) \ |
+ V(HasInstanceType) \ |
+ V(HasInstanceTypeAndBranch) \ |
+ V(HasCachedArrayIndex) \ |
+ V(HasCachedArrayIndexAndBranch) \ |
V(InstanceOf) \ |
V(InstanceOfAndBranch) \ |
V(InstanceOfKnownGlobal) \ |
@@ -106,16 +113,11 @@ class LCodeGen; |
V(IsSmi) \ |
V(IsSmiAndBranch) \ |
V(JSArrayLength) \ |
- V(HasInstanceType) \ |
- V(HasInstanceTypeAndBranch) \ |
- V(HasCachedArrayIndex) \ |
- V(HasCachedArrayIndexAndBranch) \ |
- V(ClassOfTest) \ |
- V(ClassOfTestAndBranch) \ |
V(Label) \ |
V(LazyBailout) \ |
V(LoadContextSlot) \ |
V(LoadElements) \ |
+ V(LoadExternalArrayPointer) \ |
V(LoadGlobal) \ |
V(LoadKeyedFastElement) \ |
V(LoadKeyedGeneric) \ |
@@ -123,7 +125,6 @@ class LCodeGen; |
V(LoadNamedGeneric) \ |
V(LoadFunctionPrototype) \ |
V(LoadPixelArrayElement) \ |
- V(LoadPixelArrayExternalPointer) \ |
V(ModI) \ |
V(MulI) \ |
V(NumberTagD) \ |
@@ -132,7 +133,6 @@ class LCodeGen; |
V(ObjectLiteral) \ |
V(OsrEntry) \ |
V(Parameter) \ |
- V(PixelArrayLength) \ |
V(Power) \ |
V(PushArgument) \ |
V(RegExpLiteral) \ |
@@ -984,14 +984,14 @@ class LJSArrayLength: public LTemplateInstruction<1, 1, 0> { |
}; |
-class LPixelArrayLength: public LTemplateInstruction<1, 1, 0> { |
+class LExternalArrayLength: public LTemplateInstruction<1, 1, 0> { |
public: |
- explicit LPixelArrayLength(LOperand* value) { |
+ explicit LExternalArrayLength(LOperand* value) { |
inputs_[0] = value; |
} |
- DECLARE_CONCRETE_INSTRUCTION(PixelArrayLength, "pixel-array-length") |
- DECLARE_HYDROGEN_ACCESSOR(PixelArrayLength) |
+ DECLARE_CONCRETE_INSTRUCTION(ExternalArrayLength, "external-array-length") |
+ DECLARE_HYDROGEN_ACCESSOR(ExternalArrayLength) |
}; |
@@ -1156,14 +1156,14 @@ class LLoadElements: public LTemplateInstruction<1, 1, 0> { |
}; |
-class LLoadPixelArrayExternalPointer: public LTemplateInstruction<1, 1, 0> { |
+class LLoadExternalArrayPointer: public LTemplateInstruction<1, 1, 0> { |
public: |
- explicit LLoadPixelArrayExternalPointer(LOperand* object) { |
+ explicit LLoadExternalArrayPointer(LOperand* object) { |
inputs_[0] = object; |
} |
- DECLARE_CONCRETE_INSTRUCTION(LoadPixelArrayExternalPointer, |
- "load-pixel-array-external-pointer") |
+ DECLARE_CONCRETE_INSTRUCTION(LoadExternalArrayPointer, |
+ "load-external-array-pointer") |
}; |