Index: src/mips/lithium-mips.h |
diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h |
index c5d2eb28cea5072950a159c000c7980debb75c2c..b2ab1a058fd7264069b99f71887ae37785cb970d 100644 |
--- a/src/mips/lithium-mips.h |
+++ b/src/mips/lithium-mips.h |
@@ -37,6 +37,7 @@ class LCodeGen; |
V(CallNewArray) \ |
V(CallRuntime) \ |
V(CallStub) \ |
+ V(CheckArrayBufferNotNeutered) \ |
V(CheckInstanceType) \ |
V(CheckMaps) \ |
V(CheckMapValue) \ |
@@ -2332,6 +2333,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) { |