74 lines · plain
1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve2p1 < %s \2// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST3// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \4// RUN: | FileCheck %s --check-prefix=CHECK-ERROR5// 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-INST7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve2p1 < %s \8// RUN: | llvm-objdump -d --mattr=-sve2p1 - | FileCheck %s --check-prefix=CHECK-UNKNOWN9// 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-INST13 14 15ld1d {z0.q}, p0/z, [x0, x0, lsl #3] // 10100101-10000000-10000000-0000000016// CHECK-INST: ld1d { z0.q }, p0/z, [x0, x0, lsl #3]17// CHECK-ENCODING: [0x00,0x80,0x80,0xa5]18// CHECK-ERROR: instruction requires: sve2p119// CHECK-UNKNOWN: a5808000 <unknown>20 21ld1d {z21.q}, p5/z, [x10, x21, lsl #3] // 10100101-10010101-10010101-0101010122// CHECK-INST: ld1d { z21.q }, p5/z, [x10, x21, lsl #3]23// CHECK-ENCODING: [0x55,0x95,0x95,0xa5]24// CHECK-ERROR: instruction requires: sve2p125// CHECK-UNKNOWN: a5959555 <unknown>26 27ld1d {z23.q}, p3/z, [x13, x8, lsl #3] // 10100101-10001000-10001101-1011011128// CHECK-INST: ld1d { z23.q }, p3/z, [x13, x8, lsl #3]29// CHECK-ENCODING: [0xb7,0x8d,0x88,0xa5]30// CHECK-ERROR: instruction requires: sve2p131// CHECK-UNKNOWN: a5888db7 <unknown>32 33ld1d z23.q, p3/z, [x13, x8, lsl #3] // 10100101-10001000-10001101-1011011134// CHECK-INST: ld1d { z23.q }, p3/z, [x13, x8, lsl #3]35// CHECK-ENCODING: [0xb7,0x8d,0x88,0xa5]36// CHECK-ERROR: instruction requires: sve2p137// CHECK-UNKNOWN: a5888db7 <unknown>38 39ld1d {z0.q}, p0/z, [x0] // 10100101-10010000-00100000-0000000040// CHECK-INST: ld1d { z0.q }, p0/z, [x0]41// CHECK-ENCODING: [0x00,0x20,0x90,0xa5]42// CHECK-ERROR: instruction requires: sve2p143// CHECK-UNKNOWN: a5902000 <unknown>44 45ld1d z0.q, p0/z, [x0] // 10100101-10010000-00100000-0000000046// CHECK-INST: ld1d { z0.q }, p0/z, [x0]47// CHECK-ENCODING: [0x00,0x20,0x90,0xa5]48// CHECK-ERROR: instruction requires: sve2p149// CHECK-UNKNOWN: a5902000 <unknown>50 51ld1d {z21.q}, p5/z, [x10, #5, mul vl] // 10100101-10010101-00110101-0101010152// CHECK-INST: ld1d { z21.q }, p5/z, [x10, #5, mul vl]53// CHECK-ENCODING: [0x55,0x35,0x95,0xa5]54// CHECK-ERROR: instruction requires: sve2p155// CHECK-UNKNOWN: a5953555 <unknown>56 57ld1d {z23.q}, p3/z, [x13, #-8, mul vl] // 10100101-10011000-00101101-1011011158// CHECK-INST: ld1d { z23.q }, p3/z, [x13, #-8, mul vl]59// CHECK-ENCODING: [0xb7,0x2d,0x98,0xa5]60// CHECK-ERROR: instruction requires: sve2p161// CHECK-UNKNOWN: a5982db7 <unknown>62 63ld1d {z31.q}, p7/z, [sp, #-1, mul vl] // 10100101-10011111-00111111-1111111164// CHECK-INST: ld1d { z31.q }, p7/z, [sp, #-1, mul vl]65// CHECK-ENCODING: [0xff,0x3f,0x9f,0xa5]66// CHECK-ERROR: instruction requires: sve2p167// CHECK-UNKNOWN: a59f3fff <unknown>68 69ld1d z31.q, p7/z, [sp, #-1, mul vl] // 10100101-10011111-00111111-1111111170// CHECK-INST: ld1d { z31.q }, p7/z, [sp, #-1, mul vl]71// CHECK-ENCODING: [0xff,0x3f,0x9f,0xa5]72// CHECK-ERROR: instruction requires: sve2p173// CHECK-UNKNOWN: a59f3fff <unknown>74