1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2 < %s \ 2// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 3// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \ 4// RUN: | FileCheck %s --check-prefix=CHECK-ERROR 5// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2 < %s \ 6// RUN: | llvm-objdump -d --mattr=+sve2 - | FileCheck %s --check-prefix=CHECK-INST 7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2 < %s \ 8// RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN 9 10whilehs p15.b, xzr, x0 11// CHECK-INST: whilehs p15.b, xzr, x0 12// CHECK-ENCODING: [0xef,0x1b,0x20,0x25] 13// CHECK-ERROR: instruction requires: sve2 14// CHECK-UNKNOWN: ef 1b 20 25 <unknown> 15 16whilehs p15.b, x0, xzr 17// CHECK-INST: whilehs p15.b, x0, xzr 18// CHECK-ENCODING: [0x0f,0x18,0x3f,0x25] 19// CHECK-ERROR: instruction requires: sve2 20// CHECK-UNKNOWN: 0f 18 3f 25 <unknown> 21 22whilehs p15.b, wzr, w0 23// CHECK-INST: whilehs p15.b, wzr, w0 24// CHECK-ENCODING: [0xef,0x0b,0x20,0x25] 25// CHECK-ERROR: instruction requires: sve2 26// CHECK-UNKNOWN: ef 0b 20 25 <unknown> 27 28whilehs p15.b, w0, wzr 29// CHECK-INST: whilehs p15.b, w0, wzr 30// CHECK-ENCODING: [0x0f,0x08,0x3f,0x25] 31// CHECK-ERROR: instruction requires: sve2 32// CHECK-UNKNOWN: 0f 08 3f 25 <unknown> 33 34whilehs p15.h, x0, xzr 35// CHECK-INST: whilehs p15.h, x0, xzr 36// CHECK-ENCODING: [0x0f,0x18,0x7f,0x25] 37// CHECK-ERROR: instruction requires: sve2 38// CHECK-UNKNOWN: 0f 18 7f 25 <unknown> 39 40whilehs p15.h, w0, wzr 41// CHECK-INST: whilehs p15.h, w0, wzr 42// CHECK-ENCODING: [0x0f,0x08,0x7f,0x25] 43// CHECK-ERROR: instruction requires: sve2 44// CHECK-UNKNOWN: 0f 08 7f 25 <unknown> 45 46whilehs p15.s, x0, xzr 47// CHECK-INST: whilehs p15.s, x0, xzr 48// CHECK-ENCODING: [0x0f,0x18,0xbf,0x25] 49// CHECK-ERROR: instruction requires: sve2 50// CHECK-UNKNOWN: 0f 18 bf 25 <unknown> 51 52whilehs p15.s, w0, wzr 53// CHECK-INST: whilehs p15.s, w0, wzr 54// CHECK-ENCODING: [0x0f,0x08,0xbf,0x25] 55// CHECK-ERROR: instruction requires: sve2 56// CHECK-UNKNOWN: 0f 08 bf 25 <unknown> 57 58whilehs p15.d, w0, wzr 59// CHECK-INST: whilehs p15.d, w0, wzr 60// CHECK-ENCODING: [0x0f,0x08,0xff,0x25] 61// CHECK-ERROR: instruction requires: sve2 62// CHECK-UNKNOWN: 0f 08 ff 25 <unknown> 63 64whilehs p15.d, x0, xzr 65// CHECK-INST: whilehs p15.d, x0, xzr 66// CHECK-ENCODING: [0x0f,0x18,0xff,0x25] 67// CHECK-ERROR: instruction requires: sve2 68// CHECK-UNKNOWN: 0f 18 ff 25 <unknown> 69