Index: src/arm/lithium-arm.h |
diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h |
index 7fca1ee7cb2eaccb48fdd100639daaa60d86c2a4..66df46a3bd184b4d628608dcfa7b1496397dd057 100644 |
--- a/src/arm/lithium-arm.h |
+++ b/src/arm/lithium-arm.h |
@@ -37,6 +37,7 @@ class LCodeGen; |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CallStub) \ |
+ V(CheckArrayBufferNotNeutered) \ |
V(CheckInstanceType) \ |
V(CheckNonSmi) \ |
V(CheckMaps) \ |
@@ -2375,6 +2376,19 @@ class LCheckValue final : public LTemplateInstruction<0, 1, 0> { |
}; |
+class LCheckArrayBufferNotNeutered final |
+ : public LTemplateInstruction<0, 1, 0> { |
+ public: |
+ explicit LCheckArrayBufferNotNeutered(LOperand* view) { inputs_[0] = view; } |
+ |
+ LOperand* view() { return inputs_[0]; } |
+ |
+ DECLARE_CONCRETE_INSTRUCTION(CheckArrayBufferNotNeutered, |
+ "check-array-buffer-not-neutered") |
+ DECLARE_HYDROGEN_ACCESSOR(CheckArrayBufferNotNeutered) |
+}; |
+ |
+ |
class LCheckInstanceType final : public LTemplateInstruction<0, 1, 0> { |
public: |
explicit LCheckInstanceType(LOperand* value) { |