brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.2 KiB · f2e4209 Raw
87 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 12orn     z5.b, z5.b, #0xf913// CHECK-INST: orr     z5.b, z5.b, #0x614// CHECK-ENCODING: [0x25,0x3e,0x00,0x05]15// CHECK-ERROR: instruction requires: sve or sme16// CHECK-UNKNOWN: 05003e25 <unknown>17 18orn     z23.h, z23.h, #0xfff919// CHECK-INST: orr     z23.h, z23.h, #0x620// CHECK-ENCODING: [0x37,0x7c,0x00,0x05]21// CHECK-ERROR: instruction requires: sve or sme22// CHECK-UNKNOWN: 05007c37 <unknown>23 24orn     z0.s, z0.s, #0xfffffff925// CHECK-INST: orr     z0.s, z0.s, #0x626// CHECK-ENCODING: [0x20,0xf8,0x00,0x05]27// CHECK-ERROR: instruction requires: sve or sme28// CHECK-UNKNOWN: 0500f820 <unknown>29 30orn     z0.d, z0.d, #0xfffffffffffffff931// CHECK-INST: orr     z0.d, z0.d, #0x632// CHECK-ENCODING: [0x20,0xf8,0x03,0x05]33// CHECK-ERROR: instruction requires: sve or sme34// CHECK-UNKNOWN: 0503f820 <unknown>35 36orn     z5.b, z5.b, #0x637// CHECK-INST: orr     z5.b, z5.b, #0xf938// CHECK-ENCODING: [0xa5,0x2e,0x00,0x05]39// CHECK-ERROR: instruction requires: sve or sme40// CHECK-UNKNOWN: 05002ea5 <unknown>41 42orn     z23.h, z23.h, #0x643// CHECK-INST: orr     z23.h, z23.h, #0xfff944// CHECK-ENCODING: [0xb7,0x6d,0x00,0x05]45// CHECK-ERROR: instruction requires: sve or sme46// CHECK-UNKNOWN: 05006db7 <unknown>47 48orn     z0.s, z0.s, #0x649// CHECK-INST: orr     z0.s, z0.s, #0xfffffff950// CHECK-ENCODING: [0xa0,0xeb,0x00,0x05]51// CHECK-ERROR: instruction requires: sve or sme52// CHECK-UNKNOWN: 0500eba0 <unknown>53 54orn     z0.d, z0.d, #0x655// CHECK-INST: orr     z0.d, z0.d, #0xfffffffffffffff956// CHECK-ENCODING: [0xa0,0xef,0x03,0x05]57// CHECK-ERROR: instruction requires: sve or sme58// CHECK-UNKNOWN: 0503efa0 <unknown>59 60orn     p0.b, p0/z, p0.b, p0.b61// CHECK-INST: orn     p0.b, p0/z, p0.b, p0.b62// CHECK-ENCODING: [0x10,0x40,0x80,0x25]63// CHECK-ERROR: instruction requires: sve or sme64// CHECK-UNKNOWN: 25804010 <unknown>65 66orn     p15.b, p15/z, p15.b, p15.b67// CHECK-INST: orn     p15.b, p15/z, p15.b, p15.b68// CHECK-ENCODING: [0xff,0x7d,0x8f,0x25]69// CHECK-ERROR: instruction requires: sve or sme70// CHECK-UNKNOWN: 258f7dff <unknown>71 72 73// --------------------------------------------------------------------------//74// Test compatibility with MOVPRFX instruction.75 76movprfx z0, z777// CHECK-INST: movprfx	z0, z778// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]79// CHECK-ERROR: instruction requires: sve or sme80// CHECK-UNKNOWN: 0420bce0 <unknown>81 82orn     z0.d, z0.d, #0x683// CHECK-INST: orr	z0.d, z0.d, #0xfffffffffffffff984// CHECK-ENCODING: [0xa0,0xef,0x03,0x05]85// CHECK-ERROR: instruction requires: sve or sme86// CHECK-UNKNOWN: 0503efa0 <unknown>87