| Index: src/arm64/lithium-arm64.h
|
| diff --git a/src/arm64/lithium-arm64.h b/src/arm64/lithium-arm64.h
|
| index 506110c7773b1507bdf71cbff5bc86534d40df0a..af8ef00d100e2b0de0ac43ac62f3ac0f053ee08b 100644
|
| --- a/src/arm64/lithium-arm64.h
|
| +++ b/src/arm64/lithium-arm64.h
|
| @@ -40,6 +40,7 @@ class LCodeGen;
|
| V(CallRuntime) \
|
| V(CallStub) \
|
| V(CallWithDescriptor) \
|
| + V(CheckArrayBufferNotNeutered) \
|
| V(CheckInstanceType) \
|
| V(CheckMapValue) \
|
| V(CheckMaps) \
|
| @@ -935,6 +936,19 @@ class LCallStub final : public LTemplateInstruction<1, 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, 1> {
|
| public:
|
| explicit LCheckInstanceType(LOperand* value, LOperand* temp) {
|
|
|