1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p1 < %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=+sve2p1 < %s \ 6// RUN: | llvm-objdump -d --no-print-imm-hex --mattr=+sve2p1 - | FileCheck %s --check-prefix=CHECK-INST 7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2p1 < %s \ 8// RUN: | llvm-objdump -d --mattr=-sve2p1 - | FileCheck %s --check-prefix=CHECK-UNKNOWN 9// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p1 < %s \ 10// RUN: | sed '/.text/d' | sed 's/.*encoding: //g' \ 11// RUN: | llvm-mc -triple=aarch64 -mattr=+sve2p1 -disassemble -show-encoding \ 12// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST 13 14 15ld1w {z0.q}, p0/z, [x0, x0, lsl #2] // 10100101-00000000-10000000-00000000 16// CHECK-INST: ld1w { z0.q }, p0/z, [x0, x0, lsl #2] 17// CHECK-ENCODING: [0x00,0x80,0x00,0xa5] 18// CHECK-ERROR: instruction requires: sve2p1 19// CHECK-UNKNOWN: a5008000 <unknown> 20 21ld1w {z21.q}, p5/z, [x10, x21, lsl #2] // 10100101-00010101-10010101-01010101 22// CHECK-INST: ld1w { z21.q }, p5/z, [x10, x21, lsl #2] 23// CHECK-ENCODING: [0x55,0x95,0x15,0xa5] 24// CHECK-ERROR: instruction requires: sve2p1 25// CHECK-UNKNOWN: a5159555 <unknown> 26 27ld1w {z23.q}, p3/z, [x13, x8, lsl #2] // 10100101-00001000-10001101-10110111 28// CHECK-INST: ld1w { z23.q }, p3/z, [x13, x8, lsl #2] 29// CHECK-ENCODING: [0xb7,0x8d,0x08,0xa5] 30// CHECK-ERROR: instruction requires: sve2p1 31// CHECK-UNKNOWN: a5088db7 <unknown> 32 33ld1w z23.q, p3/z, [x13, x8, lsl #2] // 10100101-00001000-10001101-10110111 34// CHECK-INST: ld1w { z23.q }, p3/z, [x13, x8, lsl #2] 35// CHECK-ENCODING: [0xb7,0x8d,0x08,0xa5] 36// CHECK-ERROR: instruction requires: sve2p1 37// CHECK-UNKNOWN: a5088db7 <unknown> 38 39ld1w {z0.q}, p0/z, [x0] // 10100101-00010000-00100000-00000000 40// CHECK-INST: ld1w { z0.q }, p0/z, [x0] 41// CHECK-ENCODING: [0x00,0x20,0x10,0xa5] 42// CHECK-ERROR: instruction requires: sve2p1 43// CHECK-UNKNOWN: a5102000 <unknown> 44 45ld1w {z21.q}, p5/z, [x10, #5, mul vl] // 10100101-00010101-00110101-01010101 46// CHECK-INST: ld1w { z21.q }, p5/z, [x10, #5, mul vl] 47// CHECK-ENCODING: [0x55,0x35,0x15,0xa5] 48// CHECK-ERROR: instruction requires: sve2p1 49// CHECK-UNKNOWN: a5153555 <unknown> 50 51ld1w {z23.q}, p3/z, [x13, #-8, mul vl] // 10100101-00011000-00101101-10110111 52// CHECK-INST: ld1w { z23.q }, p3/z, [x13, #-8, mul vl] 53// CHECK-ENCODING: [0xb7,0x2d,0x18,0xa5] 54// CHECK-ERROR: instruction requires: sve2p1 55// CHECK-UNKNOWN: a5182db7 <unknown> 56 57ld1w {z31.q}, p7/z, [sp, #-1, mul vl] // 10100101-00011111-00111111-11111111 58// CHECK-INST: ld1w { z31.q }, p7/z, [sp, #-1, mul vl] 59// CHECK-ENCODING: [0xff,0x3f,0x1f,0xa5] 60// CHECK-ERROR: instruction requires: sve2p1 61// CHECK-UNKNOWN: a51f3fff <unknown> 62 63