xref: /llvm-project/llvm/test/MC/AArch64/SVE/clasta.s (revision ae16b2ed9871b5624fdcb4286fbd0d6ddfd88961)
1// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \
2// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
3// RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sme < %s \
4// RUN:        | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
5// RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
6// RUN:        | FileCheck %s --check-prefix=CHECK-ERROR
7// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
8// RUN:        | llvm-objdump -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST
9// RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
10// RUN:   | llvm-objdump -d --mattr=-sve - | FileCheck %s --check-prefix=CHECK-UNKNOWN
11
12clasta   w0, p7, w0, z31.b
13// CHECK-INST: clasta	w0, p7, w0, z31.b
14// CHECK-ENCODING: [0xe0,0xbf,0x30,0x05]
15// CHECK-ERROR: instruction requires: sve or sme
16// CHECK-UNKNOWN: 0530bfe0 <unknown>
17
18clasta   w0, p7, w0, z31.h
19// CHECK-INST: clasta	w0, p7, w0, z31.h
20// CHECK-ENCODING: [0xe0,0xbf,0x70,0x05]
21// CHECK-ERROR: instruction requires: sve or sme
22// CHECK-UNKNOWN: 0570bfe0 <unknown>
23
24clasta   w0, p7, w0, z31.s
25// CHECK-INST: clasta	w0, p7, w0, z31.s
26// CHECK-ENCODING: [0xe0,0xbf,0xb0,0x05]
27// CHECK-ERROR: instruction requires: sve or sme
28// CHECK-UNKNOWN: 05b0bfe0 <unknown>
29
30clasta   x0, p7, x0, z31.d
31// CHECK-INST: clasta	x0, p7, x0, z31.d
32// CHECK-ENCODING: [0xe0,0xbf,0xf0,0x05]
33// CHECK-ERROR: instruction requires: sve or sme
34// CHECK-UNKNOWN: 05f0bfe0 <unknown>
35
36clasta   b0, p7, b0, z31.b
37// CHECK-INST: clasta	b0, p7, b0, z31.b
38// CHECK-ENCODING: [0xe0,0x9f,0x2a,0x05]
39// CHECK-ERROR: instruction requires: sve or sme
40// CHECK-UNKNOWN: 052a9fe0 <unknown>
41
42clasta   h0, p7, h0, z31.h
43// CHECK-INST: clasta	h0, p7, h0, z31.h
44// CHECK-ENCODING: [0xe0,0x9f,0x6a,0x05]
45// CHECK-ERROR: instruction requires: sve or sme
46// CHECK-UNKNOWN: 056a9fe0 <unknown>
47
48clasta   s0, p7, s0, z31.s
49// CHECK-INST: clasta	s0, p7, s0, z31.s
50// CHECK-ENCODING: [0xe0,0x9f,0xaa,0x05]
51// CHECK-ERROR: instruction requires: sve or sme
52// CHECK-UNKNOWN: 05aa9fe0 <unknown>
53
54clasta   d0, p7, d0, z31.d
55// CHECK-INST: clasta	d0, p7, d0, z31.d
56// CHECK-ENCODING: [0xe0,0x9f,0xea,0x05]
57// CHECK-ERROR: instruction requires: sve or sme
58// CHECK-UNKNOWN: 05ea9fe0 <unknown>
59
60clasta   z0.b, p7, z0.b, z31.b
61// CHECK-INST: clasta	z0.b, p7, z0.b, z31.b
62// CHECK-ENCODING: [0xe0,0x9f,0x28,0x05]
63// CHECK-ERROR: instruction requires: sve or sme
64// CHECK-UNKNOWN: 05289fe0 <unknown>
65
66clasta   z0.h, p7, z0.h, z31.h
67// CHECK-INST: clasta	z0.h, p7, z0.h, z31.h
68// CHECK-ENCODING: [0xe0,0x9f,0x68,0x05]
69// CHECK-ERROR: instruction requires: sve or sme
70// CHECK-UNKNOWN: 05689fe0 <unknown>
71
72clasta   z0.s, p7, z0.s, z31.s
73// CHECK-INST: clasta	z0.s, p7, z0.s, z31.s
74// CHECK-ENCODING: [0xe0,0x9f,0xa8,0x05]
75// CHECK-ERROR: instruction requires: sve or sme
76// CHECK-UNKNOWN: 05a89fe0 <unknown>
77
78clasta   z0.d, p7, z0.d, z31.d
79// CHECK-INST: clasta	z0.d, p7, z0.d, z31.d
80// CHECK-ENCODING: [0xe0,0x9f,0xe8,0x05]
81// CHECK-ERROR: instruction requires: sve or sme
82// CHECK-UNKNOWN: 05e89fe0 <unknown>
83
84
85// --------------------------------------------------------------------------//
86// Test compatibility with MOVPRFX instruction.
87
88movprfx z0, z7
89// CHECK-INST: movprfx	z0, z7
90// CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]
91// CHECK-ERROR: instruction requires: sve or sme
92// CHECK-UNKNOWN: 0420bce0 <unknown>
93
94clasta   z0.d, p7, z0.d, z31.d
95// CHECK-INST: clasta	z0.d, p7, z0.d, z31.d
96// CHECK-ENCODING: [0xe0,0x9f,0xe8,0x05]
97// CHECK-ERROR: instruction requires: sve or sme
98// CHECK-UNKNOWN: 05e89fe0 <unknown>
99