| Index: src/mips64/lithium-mips64.h
|
| diff --git a/src/mips64/lithium-mips64.h b/src/mips64/lithium-mips64.h
|
| index 0aa66776a3c71a92a0e7d6ad0c571a7b968ad4cd..3805fb90a72c45cfa07dad6663ac595907bd3e43 100644
|
| --- a/src/mips64/lithium-mips64.h
|
| +++ b/src/mips64/lithium-mips64.h
|
| @@ -37,6 +37,7 @@ class LCodeGen;
|
| V(CallNewArray) \
|
| V(CallRuntime) \
|
| V(CallStub) \
|
| + V(CheckArrayBufferNotNeutered) \
|
| V(CheckInstanceType) \
|
| V(CheckMaps) \
|
| V(CheckMapValue) \
|
| @@ -2314,6 +2315,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) {
|
|
|