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