Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index e04fdd6ad18e0d2daab4360bd7e03c1254a8fa91..6d19c6d1512a9b38642e1f703b33fadbbb37cc0d 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -108,12 +108,16 @@ class LCodeGen; |
V(InstructionGap) \ |
V(Integer32ToDouble) \ |
V(InvokeFunction) \ |
+ V(IsConstructCall) \ |
+ V(IsConstructCallAndBranch) \ |
V(IsNull) \ |
V(IsNullAndBranch) \ |
V(IsObject) \ |
V(IsObjectAndBranch) \ |
V(IsSmi) \ |
V(IsSmiAndBranch) \ |
+ V(IsUndetectable) \ |
+ V(IsUndetectableAndBranch) \ |
V(JSArrayLength) \ |
V(Label) \ |
V(LazyBailout) \ |
@@ -165,8 +169,6 @@ class LCodeGen; |
V(Typeof) \ |
V(TypeofIs) \ |
V(TypeofIsAndBranch) \ |
- V(IsConstructCall) \ |
- V(IsConstructCallAndBranch) \ |
V(UnaryMathOperation) \ |
V(UnknownOSRValue) \ |
V(ValueOf) |
@@ -754,6 +756,31 @@ class LIsSmiAndBranch: public LControlInstruction<1, 0> { |
}; |
+class LIsUndetectable: public LTemplateInstruction<1, 1, 0> { |
+ public: |
+ explicit LIsUndetectable(LOperand* value) { |
+ inputs_[0] = value; |
+ } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(IsUndetectable, "is-undetectable") |
+ DECLARE_HYDROGEN_ACCESSOR(IsUndetectable) |
+}; |
+ |
+ |
+class LIsUndetectableAndBranch: public LControlInstruction<1, 1> { |
+ public: |
+ explicit LIsUndetectableAndBranch(LOperand* value, LOperand* temp) { |
+ inputs_[0] = value; |
+ temps_[0] = temp; |
+ } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(IsUndetectableAndBranch, |
+ "is-undetectable-and-branch") |
+ |
+ virtual void PrintDataTo(StringStream* stream); |
+}; |
+ |
+ |
class LHasInstanceType: public LTemplateInstruction<1, 1, 0> { |
public: |
explicit LHasInstanceType(LOperand* value) { |