123 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 --no-print-imm-hex -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST9// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \10// RUN: | llvm-objdump --no-print-imm-hex -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN11 12mul z0.b, p7/m, z0.b, z31.b13// CHECK-INST: mul z0.b, p7/m, z0.b, z31.b14// CHECK-ENCODING: [0xe0,0x1f,0x10,0x04]15// CHECK-ERROR: instruction requires: sve or sme16// CHECK-UNKNOWN: 04101fe0 <unknown>17 18mul z0.h, p7/m, z0.h, z31.h19// CHECK-INST: mul z0.h, p7/m, z0.h, z31.h20// CHECK-ENCODING: [0xe0,0x1f,0x50,0x04]21// CHECK-ERROR: instruction requires: sve or sme22// CHECK-UNKNOWN: 04501fe0 <unknown>23 24mul z0.s, p7/m, z0.s, z31.s25// CHECK-INST: mul z0.s, p7/m, z0.s, z31.s26// CHECK-ENCODING: [0xe0,0x1f,0x90,0x04]27// CHECK-ERROR: instruction requires: sve or sme28// CHECK-UNKNOWN: 04901fe0 <unknown>29 30mul z0.d, p7/m, z0.d, z31.d31// CHECK-INST: mul z0.d, p7/m, z0.d, z31.d32// CHECK-ENCODING: [0xe0,0x1f,0xd0,0x04]33// CHECK-ERROR: instruction requires: sve or sme34// CHECK-UNKNOWN: 04d01fe0 <unknown>35 36mul z31.b, z31.b, #-12837// CHECK-INST: mul z31.b, z31.b, #-12838// CHECK-ENCODING: [0x1f,0xd0,0x30,0x25]39// CHECK-ERROR: instruction requires: sve or sme40// CHECK-UNKNOWN: 2530d01f <unknown>41 42mul z31.b, z31.b, #12743// CHECK-INST: mul z31.b, z31.b, #12744// CHECK-ENCODING: [0xff,0xcf,0x30,0x25]45// CHECK-ERROR: instruction requires: sve or sme46// CHECK-UNKNOWN: 2530cfff <unknown>47 48mul z31.h, z31.h, #-12849// CHECK-INST: mul z31.h, z31.h, #-12850// CHECK-ENCODING: [0x1f,0xd0,0x70,0x25]51// CHECK-ERROR: instruction requires: sve or sme52// CHECK-UNKNOWN: 2570d01f <unknown>53 54mul z31.h, z31.h, #12755// CHECK-INST: mul z31.h, z31.h, #12756// CHECK-ENCODING: [0xff,0xcf,0x70,0x25]57// CHECK-ERROR: instruction requires: sve or sme58// CHECK-UNKNOWN: 2570cfff <unknown>59 60mul z31.s, z31.s, #-12861// CHECK-INST: mul z31.s, z31.s, #-12862// CHECK-ENCODING: [0x1f,0xd0,0xb0,0x25]63// CHECK-ERROR: instruction requires: sve or sme64// CHECK-UNKNOWN: 25b0d01f <unknown>65 66mul z31.s, z31.s, #12767// CHECK-INST: mul z31.s, z31.s, #12768// CHECK-ENCODING: [0xff,0xcf,0xb0,0x25]69// CHECK-ERROR: instruction requires: sve or sme70// CHECK-UNKNOWN: 25b0cfff <unknown>71 72mul z31.d, z31.d, #-12873// CHECK-INST: mul z31.d, z31.d, #-12874// CHECK-ENCODING: [0x1f,0xd0,0xf0,0x25]75// CHECK-ERROR: instruction requires: sve or sme76// CHECK-UNKNOWN: 25f0d01f <unknown>77 78mul z31.d, z31.d, #12779// CHECK-INST: mul z31.d, z31.d, #12780// CHECK-ENCODING: [0xff,0xcf,0xf0,0x25]81// CHECK-ERROR: instruction requires: sve or sme82// CHECK-UNKNOWN: 25f0cfff <unknown>83 84 85// --------------------------------------------------------------------------//86// Test compatibility with MOVPRFX instruction.87 88movprfx z0.d, p7/z, z7.d89// CHECK-INST: movprfx z0.d, p7/z, z7.d90// CHECK-ENCODING: [0xe0,0x3c,0xd0,0x04]91// CHECK-ERROR: instruction requires: sve or sme92// CHECK-UNKNOWN: 04d03ce0 <unknown>93 94mul z0.d, p7/m, z0.d, z31.d95// CHECK-INST: mul z0.d, p7/m, z0.d, z31.d96// CHECK-ENCODING: [0xe0,0x1f,0xd0,0x04]97// CHECK-ERROR: instruction requires: sve or sme98// CHECK-UNKNOWN: 04d01fe0 <unknown>99 100movprfx z0, z7101// CHECK-INST: movprfx z0, z7102// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]103// CHECK-ERROR: instruction requires: sve or sme104// CHECK-UNKNOWN: 0420bce0 <unknown>105 106mul z0.d, p7/m, z0.d, z31.d107// CHECK-INST: mul z0.d, p7/m, z0.d, z31.d108// CHECK-ENCODING: [0xe0,0x1f,0xd0,0x04]109// CHECK-ERROR: instruction requires: sve or sme110// CHECK-UNKNOWN: 04d01fe0 <unknown>111 112movprfx z31, z6113// CHECK-INST: movprfx z31, z6114// CHECK-ENCODING: [0xdf,0xbc,0x20,0x04]115// CHECK-ERROR: instruction requires: sve or sme116// CHECK-UNKNOWN: 0420bcdf <unknown>117 118mul z31.d, z31.d, #127119// CHECK-INST: mul z31.d, z31.d, #127120// CHECK-ENCODING: [0xff,0xcf,0xf0,0x25]121// CHECK-ERROR: instruction requires: sve or sme122// CHECK-UNKNOWN: 25f0cfff <unknown>123