brintos

brintos / llvm-project-archived public Read only

0
0
Text · 3.5 KiB · ccf516a Raw
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 12clasta   w0, p7, w0, z31.b13// CHECK-INST: clasta	w0, p7, w0, z31.b14// CHECK-ENCODING: [0xe0,0xbf,0x30,0x05]15// CHECK-ERROR: instruction requires: sve or sme16// CHECK-UNKNOWN: 0530bfe0 <unknown>17 18clasta   w0, p7, w0, z31.h19// CHECK-INST: clasta	w0, p7, w0, z31.h20// CHECK-ENCODING: [0xe0,0xbf,0x70,0x05]21// CHECK-ERROR: instruction requires: sve or sme22// CHECK-UNKNOWN: 0570bfe0 <unknown>23 24clasta   w0, p7, w0, z31.s25// CHECK-INST: clasta	w0, p7, w0, z31.s26// CHECK-ENCODING: [0xe0,0xbf,0xb0,0x05]27// CHECK-ERROR: instruction requires: sve or sme28// CHECK-UNKNOWN: 05b0bfe0 <unknown>29 30clasta   x0, p7, x0, z31.d31// CHECK-INST: clasta	x0, p7, x0, z31.d32// CHECK-ENCODING: [0xe0,0xbf,0xf0,0x05]33// CHECK-ERROR: instruction requires: sve or sme34// CHECK-UNKNOWN: 05f0bfe0 <unknown>35 36clasta   b0, p7, b0, z31.b37// CHECK-INST: clasta	b0, p7, b0, z31.b38// CHECK-ENCODING: [0xe0,0x9f,0x2a,0x05]39// CHECK-ERROR: instruction requires: sve or sme40// CHECK-UNKNOWN: 052a9fe0 <unknown>41 42clasta   h0, p7, h0, z31.h43// CHECK-INST: clasta	h0, p7, h0, z31.h44// CHECK-ENCODING: [0xe0,0x9f,0x6a,0x05]45// CHECK-ERROR: instruction requires: sve or sme46// CHECK-UNKNOWN: 056a9fe0 <unknown>47 48clasta   s0, p7, s0, z31.s49// CHECK-INST: clasta	s0, p7, s0, z31.s50// CHECK-ENCODING: [0xe0,0x9f,0xaa,0x05]51// CHECK-ERROR: instruction requires: sve or sme52// CHECK-UNKNOWN: 05aa9fe0 <unknown>53 54clasta   d0, p7, d0, z31.d55// CHECK-INST: clasta	d0, p7, d0, z31.d56// CHECK-ENCODING: [0xe0,0x9f,0xea,0x05]57// CHECK-ERROR: instruction requires: sve or sme58// CHECK-UNKNOWN: 05ea9fe0 <unknown>59 60clasta   z0.b, p7, z0.b, z31.b61// CHECK-INST: clasta	z0.b, p7, z0.b, z31.b62// CHECK-ENCODING: [0xe0,0x9f,0x28,0x05]63// CHECK-ERROR: instruction requires: sve or sme64// CHECK-UNKNOWN: 05289fe0 <unknown>65 66clasta   z0.h, p7, z0.h, z31.h67// CHECK-INST: clasta	z0.h, p7, z0.h, z31.h68// CHECK-ENCODING: [0xe0,0x9f,0x68,0x05]69// CHECK-ERROR: instruction requires: sve or sme70// CHECK-UNKNOWN: 05689fe0 <unknown>71 72clasta   z0.s, p7, z0.s, z31.s73// CHECK-INST: clasta	z0.s, p7, z0.s, z31.s74// CHECK-ENCODING: [0xe0,0x9f,0xa8,0x05]75// CHECK-ERROR: instruction requires: sve or sme76// CHECK-UNKNOWN: 05a89fe0 <unknown>77 78clasta   z0.d, p7, z0.d, z31.d79// CHECK-INST: clasta	z0.d, p7, z0.d, z31.d80// CHECK-ENCODING: [0xe0,0x9f,0xe8,0x05]81// CHECK-ERROR: instruction requires: sve or sme82// CHECK-UNKNOWN: 05e89fe0 <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 94clasta   z0.d, p7, z0.d, z31.d95// CHECK-INST: clasta	z0.d, p7, z0.d, z31.d96// CHECK-ENCODING: [0xe0,0x9f,0xe8,0x05]97// CHECK-ERROR: instruction requires: sve or sme98// CHECK-UNKNOWN: 05e89fe0 <unknown>99