Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / AArch64 / SVE / lsl.s
bloba372342143ae0f27826adc6a1f7143da0ff33703
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 --no-print-imm-hex -d --mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST
9 // 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-UNKNOWN
12 lsl z0.b, z0.b, #0
13 // CHECK-INST: lsl z0.b, z0.b, #0
14 // CHECK-ENCODING: [0x00,0x9c,0x28,0x04]
15 // CHECK-ERROR: instruction requires: sve or sme
16 // CHECK-UNKNOWN: 04289c00 <unknown>
18 lsl z31.b, z31.b, #7
19 // CHECK-INST: lsl z31.b, z31.b, #7
20 // CHECK-ENCODING: [0xff,0x9f,0x2f,0x04]
21 // CHECK-ERROR: instruction requires: sve or sme
22 // CHECK-UNKNOWN: 042f9fff <unknown>
24 lsl z0.h, z0.h, #0
25 // CHECK-INST: lsl z0.h, z0.h, #0
26 // CHECK-ENCODING: [0x00,0x9c,0x30,0x04]
27 // CHECK-ERROR: instruction requires: sve or sme
28 // CHECK-UNKNOWN: 04309c00 <unknown>
30 lsl z31.h, z31.h, #15
31 // CHECK-INST: lsl z31.h, z31.h, #15
32 // CHECK-ENCODING: [0xff,0x9f,0x3f,0x04]
33 // CHECK-ERROR: instruction requires: sve or sme
34 // CHECK-UNKNOWN: 043f9fff <unknown>
36 lsl z0.s, z0.s, #0
37 // CHECK-INST: lsl z0.s, z0.s, #0
38 // CHECK-ENCODING: [0x00,0x9c,0x60,0x04]
39 // CHECK-ERROR: instruction requires: sve or sme
40 // CHECK-UNKNOWN: 04609c00 <unknown>
42 lsl z31.s, z31.s, #31
43 // CHECK-INST: lsl z31.s, z31.s, #31
44 // CHECK-ENCODING: [0xff,0x9f,0x7f,0x04]
45 // CHECK-ERROR: instruction requires: sve or sme
46 // CHECK-UNKNOWN: 047f9fff <unknown>
48 lsl z0.d, z0.d, #0
49 // CHECK-INST: lsl z0.d, z0.d, #0
50 // CHECK-ENCODING: [0x00,0x9c,0xa0,0x04]
51 // CHECK-ERROR: instruction requires: sve or sme
52 // CHECK-UNKNOWN: 04a09c00 <unknown>
54 lsl z31.d, z31.d, #63
55 // CHECK-INST: lsl z31.d, z31.d, #63
56 // CHECK-ENCODING: [0xff,0x9f,0xff,0x04]
57 // CHECK-ERROR: instruction requires: sve or sme
58 // CHECK-UNKNOWN: 04ff9fff <unknown>
60 lsl z0.b, p0/m, z0.b, #0
61 // CHECK-INST: lsl z0.b, p0/m, z0.b, #0
62 // CHECK-ENCODING: [0x00,0x81,0x03,0x04]
63 // CHECK-ERROR: instruction requires: sve or sme
64 // CHECK-UNKNOWN: 04038100 <unknown>
66 lsl z31.b, p0/m, z31.b, #7
67 // CHECK-INST: lsl z31.b, p0/m, z31.b, #7
68 // CHECK-ENCODING: [0xff,0x81,0x03,0x04]
69 // CHECK-ERROR: instruction requires: sve or sme
70 // CHECK-UNKNOWN: 040381ff <unknown>
72 lsl z0.h, p0/m, z0.h, #0
73 // CHECK-INST: lsl z0.h, p0/m, z0.h, #0
74 // CHECK-ENCODING: [0x00,0x82,0x03,0x04]
75 // CHECK-ERROR: instruction requires: sve or sme
76 // CHECK-UNKNOWN: 04038200 <unknown>
78 lsl z31.h, p0/m, z31.h, #15
79 // CHECK-INST: lsl z31.h, p0/m, z31.h, #15
80 // CHECK-ENCODING: [0xff,0x83,0x03,0x04]
81 // CHECK-ERROR: instruction requires: sve or sme
82 // CHECK-UNKNOWN: 040383ff <unknown>
84 lsl z0.s, p0/m, z0.s, #0
85 // CHECK-INST: lsl z0.s, p0/m, z0.s, #0
86 // CHECK-ENCODING: [0x00,0x80,0x43,0x04]
87 // CHECK-ERROR: instruction requires: sve or sme
88 // CHECK-UNKNOWN: 04438000 <unknown>
90 lsl z31.s, p0/m, z31.s, #31
91 // CHECK-INST: lsl z31.s, p0/m, z31.s, #31
92 // CHECK-ENCODING: [0xff,0x83,0x43,0x04]
93 // CHECK-ERROR: instruction requires: sve or sme
94 // CHECK-UNKNOWN: 044383ff <unknown>
96 lsl z0.d, p0/m, z0.d, #0
97 // CHECK-INST: lsl z0.d, p0/m, z0.d, #0
98 // CHECK-ENCODING: [0x00,0x80,0x83,0x04]
99 // CHECK-ERROR: instruction requires: sve or sme
100 // CHECK-UNKNOWN: 04838000 <unknown>
102 lsl z31.d, p0/m, z31.d, #63
103 // CHECK-INST: lsl z31.d, p0/m, z31.d, #63
104 // CHECK-ENCODING: [0xff,0x83,0xc3,0x04]
105 // CHECK-ERROR: instruction requires: sve or sme
106 // CHECK-UNKNOWN: 04c383ff <unknown>
108 lsl z0.b, p0/m, z0.b, z0.b
109 // CHECK-INST: lsl z0.b, p0/m, z0.b, z0.b
110 // CHECK-ENCODING: [0x00,0x80,0x13,0x04]
111 // CHECK-ERROR: instruction requires: sve or sme
112 // CHECK-UNKNOWN: 04138000 <unknown>
114 lsl z0.h, p0/m, z0.h, z0.h
115 // CHECK-INST: lsl z0.h, p0/m, z0.h, z0.h
116 // CHECK-ENCODING: [0x00,0x80,0x53,0x04]
117 // CHECK-ERROR: instruction requires: sve or sme
118 // CHECK-UNKNOWN: 04538000 <unknown>
120 lsl z0.s, p0/m, z0.s, z0.s
121 // CHECK-INST: lsl z0.s, p0/m, z0.s, z0.s
122 // CHECK-ENCODING: [0x00,0x80,0x93,0x04]
123 // CHECK-ERROR: instruction requires: sve or sme
124 // CHECK-UNKNOWN: 04938000 <unknown>
126 lsl z0.d, p0/m, z0.d, z0.d
127 // CHECK-INST: lsl z0.d, p0/m, z0.d, z0.d
128 // CHECK-ENCODING: [0x00,0x80,0xd3,0x04]
129 // CHECK-ERROR: instruction requires: sve or sme
130 // CHECK-UNKNOWN: 04d38000 <unknown>
132 lsl z0.b, p0/m, z0.b, z1.d
133 // CHECK-INST: lsl z0.b, p0/m, z0.b, z1.d
134 // CHECK-ENCODING: [0x20,0x80,0x1b,0x04]
135 // CHECK-ERROR: instruction requires: sve or sme
136 // CHECK-UNKNOWN: 041b8020 <unknown>
138 lsl z0.h, p0/m, z0.h, z1.d
139 // CHECK-INST: lsl z0.h, p0/m, z0.h, z1.d
140 // CHECK-ENCODING: [0x20,0x80,0x5b,0x04]
141 // CHECK-ERROR: instruction requires: sve or sme
142 // CHECK-UNKNOWN: 045b8020 <unknown>
144 lsl z0.s, p0/m, z0.s, z1.d
145 // CHECK-INST: lsl z0.s, p0/m, z0.s, z1.d
146 // CHECK-ENCODING: [0x20,0x80,0x9b,0x04]
147 // CHECK-ERROR: instruction requires: sve or sme
148 // CHECK-UNKNOWN: 049b8020 <unknown>
150 lsl z0.b, z1.b, z2.d
151 // CHECK-INST: lsl z0.b, z1.b, z2.d
152 // CHECK-ENCODING: [0x20,0x8c,0x22,0x04]
153 // CHECK-ERROR: instruction requires: sve or sme
154 // CHECK-UNKNOWN: 04228c20 <unknown>
156 lsl z0.h, z1.h, z2.d
157 // CHECK-INST: lsl z0.h, z1.h, z2.d
158 // CHECK-ENCODING: [0x20,0x8c,0x62,0x04]
159 // CHECK-ERROR: instruction requires: sve or sme
160 // CHECK-UNKNOWN: 04628c20 <unknown>
162 lsl z0.s, z1.s, z2.d
163 // CHECK-INST: lsl z0.s, z1.s, z2.d
164 // CHECK-ENCODING: [0x20,0x8c,0xa2,0x04]
165 // CHECK-ERROR: instruction requires: sve or sme
166 // CHECK-UNKNOWN: 04a28c20 <unknown>
169 // --------------------------------------------------------------------------//
170 // Test compatibility with MOVPRFX instruction.
172 movprfx z31.d, p0/z, z6.d
173 // CHECK-INST: movprfx z31.d, p0/z, z6.d
174 // CHECK-ENCODING: [0xdf,0x20,0xd0,0x04]
175 // CHECK-ERROR: instruction requires: sve or sme
176 // CHECK-UNKNOWN: 04d020df <unknown>
178 lsl z31.d, p0/m, z31.d, #63
179 // CHECK-INST: lsl z31.d, p0/m, z31.d, #63
180 // CHECK-ENCODING: [0xff,0x83,0xc3,0x04]
181 // CHECK-ERROR: instruction requires: sve or sme
182 // CHECK-UNKNOWN: 04c383ff <unknown>
184 movprfx z31, z6
185 // CHECK-INST: movprfx z31, z6
186 // CHECK-ENCODING: [0xdf,0xbc,0x20,0x04]
187 // CHECK-ERROR: instruction requires: sve or sme
188 // CHECK-UNKNOWN: 0420bcdf <unknown>
190 lsl z31.d, p0/m, z31.d, #63
191 // CHECK-INST: lsl z31.d, p0/m, z31.d, #63
192 // CHECK-ENCODING: [0xff,0x83,0xc3,0x04]
193 // CHECK-ERROR: instruction requires: sve or sme
194 // CHECK-UNKNOWN: 04c383ff <unknown>
196 movprfx z0.s, p0/z, z7.s
197 // CHECK-INST: movprfx z0.s, p0/z, z7.s
198 // CHECK-ENCODING: [0xe0,0x20,0x90,0x04]
199 // CHECK-ERROR: instruction requires: sve or sme
200 // CHECK-UNKNOWN: 049020e0 <unknown>
202 lsl z0.s, p0/m, z0.s, z1.d
203 // CHECK-INST: lsl z0.s, p0/m, z0.s, z1.d
204 // CHECK-ENCODING: [0x20,0x80,0x9b,0x04]
205 // CHECK-ERROR: instruction requires: sve or sme
206 // CHECK-UNKNOWN: 049b8020 <unknown>
208 movprfx z0, z7
209 // CHECK-INST: movprfx z0, z7
210 // CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]
211 // CHECK-ERROR: instruction requires: sve or sme
212 // CHECK-UNKNOWN: 0420bce0 <unknown>
214 lsl z0.s, p0/m, z0.s, z1.d
215 // CHECK-INST: lsl z0.s, p0/m, z0.s, z1.d
216 // CHECK-ENCODING: [0x20,0x80,0x9b,0x04]
217 // CHECK-ERROR: instruction requires: sve or sme
218 // CHECK-UNKNOWN: 049b8020 <unknown>