1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %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=+sve < %s \ 8// RUN: | llvm-objdump -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST 9// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \ 10// RUN: | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN 11 12and z5.b, z5.b, #0xf9 13// CHECK-INST: and z5.b, z5.b, #0xf9 14// CHECK-ENCODING: [0xa5,0x2e,0x80,0x05] 15// CHECK-ERROR: instruction requires: sve or sme 16// CHECK-UNKNOWN: 05802ea5 <unknown> 17 18and z23.h, z23.h, #0xfff9 19// CHECK-INST: and z23.h, z23.h, #0xfff9 20// CHECK-ENCODING: [0xb7,0x6d,0x80,0x05] 21// CHECK-ERROR: instruction requires: sve or sme 22// CHECK-UNKNOWN: 05806db7 <unknown> 23 24and z0.s, z0.s, #0xfffffff9 25// CHECK-INST: and z0.s, z0.s, #0xfffffff9 26// CHECK-ENCODING: [0xa0,0xeb,0x80,0x05] 27// CHECK-ERROR: instruction requires: sve or sme 28// CHECK-UNKNOWN: 0580eba0 <unknown> 29 30and z0.d, z0.d, #0xfffffffffffffff9 31// CHECK-INST: and z0.d, z0.d, #0xfffffffffffffff9 32// CHECK-ENCODING: [0xa0,0xef,0x83,0x05] 33// CHECK-ERROR: instruction requires: sve or sme 34// CHECK-UNKNOWN: 0583efa0 <unknown> 35 36and z5.b, z5.b, #0x6 37// CHECK-INST: and z5.b, z5.b, #0x6 38// CHECK-ENCODING: [0x25,0x3e,0x80,0x05] 39// CHECK-ERROR: instruction requires: sve or sme 40// CHECK-UNKNOWN: 05803e25 <unknown> 41 42and z23.h, z23.h, #0x6 43// CHECK-INST: and z23.h, z23.h, #0x6 44// CHECK-ENCODING: [0x37,0x7c,0x80,0x05] 45// CHECK-ERROR: instruction requires: sve or sme 46// CHECK-UNKNOWN: 05807c37 <unknown> 47 48and z0.s, z0.s, #0x6 49// CHECK-INST: and z0.s, z0.s, #0x6 50// CHECK-ENCODING: [0x20,0xf8,0x80,0x05] 51// CHECK-ERROR: instruction requires: sve or sme 52// CHECK-UNKNOWN: 0580f820 <unknown> 53 54and z0.d, z0.d, #0x6 55// CHECK-INST: and z0.d, z0.d, #0x6 56// CHECK-ENCODING: [0x20,0xf8,0x83,0x05] 57// CHECK-ERROR: instruction requires: sve or sme 58// CHECK-UNKNOWN: 0583f820 <unknown> 59 60and z0.d, z0.d, z0.d 61// CHECK-INST: and z0.d, z0.d, z0.d 62// CHECK-ENCODING: [0x00,0x30,0x20,0x04] 63// CHECK-ERROR: instruction requires: sve or sme 64// CHECK-UNKNOWN: 04203000 <unknown> 65 66and z23.d, z13.d, z8.d 67// CHECK-INST: and z23.d, z13.d, z8.d 68// CHECK-ENCODING: [0xb7,0x31,0x28,0x04] 69// CHECK-ERROR: instruction requires: sve or sme 70// CHECK-UNKNOWN: 042831b7 <unknown> 71 72and z31.b, p7/m, z31.b, z31.b 73// CHECK-INST: and z31.b, p7/m, z31.b, z31.b 74// CHECK-ENCODING: [0xff,0x1f,0x1a,0x04] 75// CHECK-ERROR: instruction requires: sve or sme 76// CHECK-UNKNOWN: 041a1fff <unknown> 77 78and z31.h, p7/m, z31.h, z31.h 79// CHECK-INST: and z31.h, p7/m, z31.h, z31.h 80// CHECK-ENCODING: [0xff,0x1f,0x5a,0x04] 81// CHECK-ERROR: instruction requires: sve or sme 82// CHECK-UNKNOWN: 045a1fff <unknown> 83 84and z31.s, p7/m, z31.s, z31.s 85// CHECK-INST: and z31.s, p7/m, z31.s, z31.s 86// CHECK-ENCODING: [0xff,0x1f,0x9a,0x04] 87// CHECK-ERROR: instruction requires: sve or sme 88// CHECK-UNKNOWN: 049a1fff <unknown> 89 90and z31.d, p7/m, z31.d, z31.d 91// CHECK-INST: and z31.d, p7/m, z31.d, z31.d 92// CHECK-ENCODING: [0xff,0x1f,0xda,0x04] 93// CHECK-ERROR: instruction requires: sve or sme 94// CHECK-UNKNOWN: 04da1fff <unknown> 95 96and p0.b, p0/z, p0.b, p1.b 97// CHECK-INST: and p0.b, p0/z, p0.b, p1.b 98// CHECK-ENCODING: [0x00,0x40,0x01,0x25] 99// CHECK-ERROR: instruction requires: sve or sme 100// CHECK-UNKNOWN: 25014000 <unknown> 101 102and p0.b, p0/z, p0.b, p0.b 103// CHECK-INST: mov p0.b, p0/z, p0.b 104// CHECK-ENCODING: [0x00,0x40,0x00,0x25] 105// CHECK-ERROR: instruction requires: sve or sme 106// CHECK-UNKNOWN: 25004000 <unknown> 107 108and p15.b, p15/z, p15.b, p15.b 109// CHECK-INST: mov p15.b, p15/z, p15.b 110// CHECK-ENCODING: [0xef,0x7d,0x0f,0x25] 111// CHECK-ERROR: instruction requires: sve or sme 112// CHECK-UNKNOWN: 250f7def <unknown> 113 114 115// --------------------------------------------------------------------------// 116// Test aliases. 117 118and z0.s, z0.s, z0.s 119// CHECK-INST: and z0.d, z0.d, z0.d 120// CHECK-ENCODING: [0x00,0x30,0x20,0x04] 121// CHECK-ERROR: instruction requires: sve or sme 122// CHECK-UNKNOWN: 04203000 <unknown> 123 124and z0.h, z0.h, z0.h 125// CHECK-INST: and z0.d, z0.d, z0.d 126// CHECK-ENCODING: [0x00,0x30,0x20,0x04] 127// CHECK-ERROR: instruction requires: sve or sme 128// CHECK-UNKNOWN: 04203000 <unknown> 129 130and z0.b, z0.b, z0.b 131// CHECK-INST: and z0.d, z0.d, z0.d 132// CHECK-ENCODING: [0x00,0x30,0x20,0x04] 133// CHECK-ERROR: instruction requires: sve or sme 134// CHECK-UNKNOWN: 04203000 <unknown> 135 136 137// --------------------------------------------------------------------------// 138// Test compatibility with MOVPRFX instruction. 139 140movprfx z4.d, p7/z, z6.d 141// CHECK-INST: movprfx z4.d, p7/z, z6.d 142// CHECK-ENCODING: [0xc4,0x3c,0xd0,0x04] 143// CHECK-ERROR: instruction requires: sve or sme 144// CHECK-UNKNOWN: 04d03cc4 <unknown> 145 146and z4.d, p7/m, z4.d, z31.d 147// CHECK-INST: and z4.d, p7/m, z4.d, z31.d 148// CHECK-ENCODING: [0xe4,0x1f,0xda,0x04] 149// CHECK-ERROR: instruction requires: sve or sme 150// CHECK-UNKNOWN: 04da1fe4 <unknown> 151 152movprfx z4, z6 153// CHECK-INST: movprfx z4, z6 154// CHECK-ENCODING: [0xc4,0xbc,0x20,0x04] 155// CHECK-ERROR: instruction requires: sve or sme 156// CHECK-UNKNOWN: 0420bcc4 <unknown> 157 158and z4.d, p7/m, z4.d, z31.d 159// CHECK-INST: and z4.d, p7/m, z4.d, z31.d 160// CHECK-ENCODING: [0xe4,0x1f,0xda,0x04] 161// CHECK-ERROR: instruction requires: sve or sme 162// CHECK-UNKNOWN: 04da1fe4 <unknown> 163 164movprfx z0, z7 165// CHECK-INST: movprfx z0, z7 166// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04] 167// CHECK-ERROR: instruction requires: sve or sme 168// CHECK-UNKNOWN: 0420bce0 <unknown> 169 170and z0.d, z0.d, #0x6 171// CHECK-INST: and z0.d, z0.d, #0x6 172// CHECK-ENCODING: [0x20,0xf8,0x83,0x05] 173// CHECK-ERROR: instruction requires: sve or sme 174// CHECK-UNKNOWN: 0583f820 <unknown> 175