99 lines · plain
1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \2// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST3// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme < %s \4// RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST5// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \6// RUN: | FileCheck %s --check-prefix=CHECK-ERROR7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \8// RUN: | llvm-objdump -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST9// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \10// RUN: | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN11 12clastb w0, p7, w0, z31.b13// CHECK-INST: clastb w0, p7, w0, z31.b14// CHECK-ENCODING: [0xe0,0xbf,0x31,0x05]15// CHECK-ERROR: instruction requires: sve or sme16// CHECK-UNKNOWN: 0531bfe0 <unknown>17 18clastb w0, p7, w0, z31.h19// CHECK-INST: clastb w0, p7, w0, z31.h20// CHECK-ENCODING: [0xe0,0xbf,0x71,0x05]21// CHECK-ERROR: instruction requires: sve or sme22// CHECK-UNKNOWN: 0571bfe0 <unknown>23 24clastb w0, p7, w0, z31.s25// CHECK-INST: clastb w0, p7, w0, z31.s26// CHECK-ENCODING: [0xe0,0xbf,0xb1,0x05]27// CHECK-ERROR: instruction requires: sve or sme28// CHECK-UNKNOWN: 05b1bfe0 <unknown>29 30clastb x0, p7, x0, z31.d31// CHECK-INST: clastb x0, p7, x0, z31.d32// CHECK-ENCODING: [0xe0,0xbf,0xf1,0x05]33// CHECK-ERROR: instruction requires: sve or sme34// CHECK-UNKNOWN: 05f1bfe0 <unknown>35 36clastb b0, p7, b0, z31.b37// CHECK-INST: clastb b0, p7, b0, z31.b38// CHECK-ENCODING: [0xe0,0x9f,0x2b,0x05]39// CHECK-ERROR: instruction requires: sve or sme40// CHECK-UNKNOWN: 052b9fe0 <unknown>41 42clastb h0, p7, h0, z31.h43// CHECK-INST: clastb h0, p7, h0, z31.h44// CHECK-ENCODING: [0xe0,0x9f,0x6b,0x05]45// CHECK-ERROR: instruction requires: sve or sme46// CHECK-UNKNOWN: 056b9fe0 <unknown>47 48clastb s0, p7, s0, z31.s49// CHECK-INST: clastb s0, p7, s0, z31.s50// CHECK-ENCODING: [0xe0,0x9f,0xab,0x05]51// CHECK-ERROR: instruction requires: sve or sme52// CHECK-UNKNOWN: 05ab9fe0 <unknown>53 54clastb d0, p7, d0, z31.d55// CHECK-INST: clastb d0, p7, d0, z31.d56// CHECK-ENCODING: [0xe0,0x9f,0xeb,0x05]57// CHECK-ERROR: instruction requires: sve or sme58// CHECK-UNKNOWN: 05eb9fe0 <unknown>59 60clastb z0.b, p7, z0.b, z31.b61// CHECK-INST: clastb z0.b, p7, z0.b, z31.b62// CHECK-ENCODING: [0xe0,0x9f,0x29,0x05]63// CHECK-ERROR: instruction requires: sve or sme64// CHECK-UNKNOWN: 05299fe0 <unknown>65 66clastb z0.h, p7, z0.h, z31.h67// CHECK-INST: clastb z0.h, p7, z0.h, z31.h68// CHECK-ENCODING: [0xe0,0x9f,0x69,0x05]69// CHECK-ERROR: instruction requires: sve or sme70// CHECK-UNKNOWN: 05699fe0 <unknown>71 72clastb z0.s, p7, z0.s, z31.s73// CHECK-INST: clastb z0.s, p7, z0.s, z31.s74// CHECK-ENCODING: [0xe0,0x9f,0xa9,0x05]75// CHECK-ERROR: instruction requires: sve or sme76// CHECK-UNKNOWN: 05a99fe0 <unknown>77 78clastb z0.d, p7, z0.d, z31.d79// CHECK-INST: clastb z0.d, p7, z0.d, z31.d80// CHECK-ENCODING: [0xe0,0x9f,0xe9,0x05]81// CHECK-ERROR: instruction requires: sve or sme82// CHECK-UNKNOWN: 05e99fe0 <unknown>83 84 85// --------------------------------------------------------------------------//86// Test compatibility with MOVPRFX instruction.87 88movprfx z0, z789// CHECK-INST: movprfx z0, z790// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]91// CHECK-ERROR: instruction requires: sve or sme92// CHECK-UNKNOWN: 0420bce0 <unknown>93 94clastb z0.d, p7, z0.d, z31.d95// CHECK-INST: clastb z0.d, p7, z0.d, z31.d96// CHECK-ENCODING: [0xe0,0x9f,0xe9,0x05]97// CHECK-ERROR: instruction requires: sve or sme98// CHECK-UNKNOWN: 05e99fe0 <unknown>99