[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MC / AArch64 / SVE / orr.s
blob084587787ba0fd984df0c787a4d37689505291ce
1 // RUN: llvm-mc -triple=aarch64 -show-encoding -mattr=+sve < %s \
2 // RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INST
3 // RUN: not llvm-mc -triple=aarch64 -show-encoding < %s 2>&1 \
4 // RUN: | FileCheck %s --check-prefix=CHECK-ERROR
5 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
6 // RUN: | llvm-objdump -d -mattr=+sve - | FileCheck %s --check-prefix=CHECK-INST
7 // RUN: llvm-mc -triple=aarch64 -filetype=obj -mattr=+sve < %s \
8 // RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=CHECK-UNKNOWN
12 orr z5.b, z5.b, #0xf9
13 // CHECK-INST: orr z5.b, z5.b, #0xf9
14 // CHECK-ENCODING: [0xa5,0x2e,0x00,0x05]
15 // CHECK-ERROR: instruction requires: sve
16 // CHECK-UNKNOWN: a5 2e 00 05 <unknown>
18 orr z23.h, z23.h, #0xfff9
19 // CHECK-INST: orr z23.h, z23.h, #0xfff9
20 // CHECK-ENCODING: [0xb7,0x6d,0x00,0x05]
21 // CHECK-ERROR: instruction requires: sve
22 // CHECK-UNKNOWN: b7 6d 00 05 <unknown>
24 orr z0.s, z0.s, #0xfffffff9
25 // CHECK-INST: orr z0.s, z0.s, #0xfffffff9
26 // CHECK-ENCODING: [0xa0,0xeb,0x00,0x05]
27 // CHECK-ERROR: instruction requires: sve
28 // CHECK-UNKNOWN: a0 eb 00 05 <unknown>
30 orr z0.d, z0.d, #0xfffffffffffffff9
31 // CHECK-INST: orr z0.d, z0.d, #0xfffffffffffffff9
32 // CHECK-ENCODING: [0xa0,0xef,0x03,0x05]
33 // CHECK-ERROR: instruction requires: sve
34 // CHECK-UNKNOWN: a0 ef 03 05 <unknown>
36 orr z5.b, z5.b, #0x6
37 // CHECK-INST: orr z5.b, z5.b, #0x6
38 // CHECK-ENCODING: [0x25,0x3e,0x00,0x05]
39 // CHECK-ERROR: instruction requires: sve
40 // CHECK-UNKNOWN: 25 3e 00 05 <unknown>
42 orr z23.h, z23.h, #0x6
43 // CHECK-INST: orr z23.h, z23.h, #0x6
44 // CHECK-ENCODING: [0x37,0x7c,0x00,0x05]
45 // CHECK-ERROR: instruction requires: sve
46 // CHECK-UNKNOWN: 37 7c 00 05 <unknown>
48 orr z0.s, z0.s, #0x6
49 // CHECK-INST: orr z0.s, z0.s, #0x6
50 // CHECK-ENCODING: [0x20,0xf8,0x00,0x05]
51 // CHECK-ERROR: instruction requires: sve
52 // CHECK-UNKNOWN: 20 f8 00 05 <unknown>
54 orr z0.d, z0.d, #0x6
55 // CHECK-INST: orr z0.d, z0.d, #0x6
56 // CHECK-ENCODING: [0x20,0xf8,0x03,0x05]
57 // CHECK-ERROR: instruction requires: sve
58 // CHECK-UNKNOWN: 20 f8 03 05 <unknown>
60 orr z0.d, z0.d, z0.d // should use mov-alias
61 // CHECK-INST: mov z0.d, z0.d
62 // CHECK-ENCODING: [0x00,0x30,0x60,0x04]
63 // CHECK-ERROR: instruction requires: sve
64 // CHECK-UNKNOWN: 00 30 60 04 <unknown>
66 orr z23.d, z13.d, z8.d // should not use mov-alias
67 // CHECK-INST: orr z23.d, z13.d, z8.d
68 // CHECK-ENCODING: [0xb7,0x31,0x68,0x04]
69 // CHECK-ERROR: instruction requires: sve
70 // CHECK-UNKNOWN: b7 31 68 04 <unknown>
72 orr z31.b, p7/m, z31.b, z31.b
73 // CHECK-INST: orr z31.b, p7/m, z31.b, z31.b
74 // CHECK-ENCODING: [0xff,0x1f,0x18,0x04]
75 // CHECK-ERROR: instruction requires: sve
76 // CHECK-UNKNOWN: ff 1f 18 04 <unknown>
78 orr z31.h, p7/m, z31.h, z31.h
79 // CHECK-INST: orr z31.h, p7/m, z31.h, z31.h
80 // CHECK-ENCODING: [0xff,0x1f,0x58,0x04]
81 // CHECK-ERROR: instruction requires: sve
82 // CHECK-UNKNOWN: ff 1f 58 04 <unknown>
84 orr z31.s, p7/m, z31.s, z31.s
85 // CHECK-INST: orr z31.s, p7/m, z31.s, z31.s
86 // CHECK-ENCODING: [0xff,0x1f,0x98,0x04]
87 // CHECK-ERROR: instruction requires: sve
88 // CHECK-UNKNOWN: ff 1f 98 04 <unknown>
90 orr z31.d, p7/m, z31.d, z31.d
91 // CHECK-INST: orr z31.d, p7/m, z31.d, z31.d
92 // CHECK-ENCODING: [0xff,0x1f,0xd8,0x04]
93 // CHECK-ERROR: instruction requires: sve
94 // CHECK-UNKNOWN: ff 1f d8 04 <unknown>
96 orr p0.b, p0/z, p0.b, p1.b
97 // CHECK-INST: orr p0.b, p0/z, p0.b, p1.b
98 // CHECK-ENCODING: [0x00,0x40,0x81,0x25]
99 // CHECK-ERROR: instruction requires: sve
100 // CHECK-UNKNOWN: 00 40 81 25 <unknown>
102 orr p0.b, p0/z, p0.b, p0.b
103 // CHECK-INST: mov p0.b, p0.b
104 // CHECK-ENCODING: [0x00,0x40,0x80,0x25]
105 // CHECK-ERROR: instruction requires: sve
106 // CHECK-UNKNOWN: 00 40 80 25 <unknown>
108 orr p15.b, p15/z, p15.b, p15.b
109 // CHECK-INST: mov p15.b, p15.b
110 // CHECK-ENCODING: [0xef,0x7d,0x8f,0x25]
111 // CHECK-ERROR: instruction requires: sve
112 // CHECK-UNKNOWN: ef 7d 8f 25 <unknown>
115 // --------------------------------------------------------------------------//
116 // Test aliases.
118 orr z0.s, z0.s, z0.s
119 // CHECK-INST: mov z0.d, z0.d
120 // CHECK-ENCODING: [0x00,0x30,0x60,0x04]
121 // CHECK-ERROR: instruction requires: sve
122 // CHECK-UNKNOWN: 00 30 60 04 <unknown>
124 orr z0.h, z0.h, z0.h
125 // CHECK-INST: mov z0.d, z0.d
126 // CHECK-ENCODING: [0x00,0x30,0x60,0x04]
127 // CHECK-ERROR: instruction requires: sve
128 // CHECK-UNKNOWN: 00 30 60 04 <unknown>
130 orr z0.b, z0.b, z0.b
131 // CHECK-INST: mov z0.d, z0.d
132 // CHECK-ENCODING: [0x00,0x30,0x60,0x04]
133 // CHECK-ERROR: instruction requires: sve
134 // CHECK-UNKNOWN: 00 30 60 04 <unknown>
136 orr z23.s, z13.s, z8.s // should not use mov-alias
137 // CHECK-INST: orr z23.d, z13.d, z8.d
138 // CHECK-ENCODING: [0xb7,0x31,0x68,0x04]
139 // CHECK-ERROR: instruction requires: sve
140 // CHECK-UNKNOWN: b7 31 68 04 <unknown>
142 orr z23.h, z13.h, z8.h // should not use mov-alias
143 // CHECK-INST: orr z23.d, z13.d, z8.d
144 // CHECK-ENCODING: [0xb7,0x31,0x68,0x04]
145 // CHECK-ERROR: instruction requires: sve
146 // CHECK-UNKNOWN: b7 31 68 04 <unknown>
148 orr z23.b, z13.b, z8.b // should not use mov-alias
149 // CHECK-INST: orr z23.d, z13.d, z8.d
150 // CHECK-ENCODING: [0xb7,0x31,0x68,0x04]
151 // CHECK-ERROR: instruction requires: sve
152 // CHECK-UNKNOWN: b7 31 68 04 <unknown>
155 // --------------------------------------------------------------------------//
156 // Test compatibility with MOVPRFX instruction.
158 movprfx z4.d, p7/z, z6.d
159 // CHECK-INST: movprfx z4.d, p7/z, z6.d
160 // CHECK-ENCODING: [0xc4,0x3c,0xd0,0x04]
161 // CHECK-ERROR: instruction requires: sve
162 // CHECK-UNKNOWN: c4 3c d0 04 <unknown>
164 orr z4.d, p7/m, z4.d, z31.d
165 // CHECK-INST: orr z4.d, p7/m, z4.d, z31.d
166 // CHECK-ENCODING: [0xe4,0x1f,0xd8,0x04]
167 // CHECK-ERROR: instruction requires: sve
168 // CHECK-UNKNOWN: e4 1f d8 04 <unknown>
170 movprfx z4, z6
171 // CHECK-INST: movprfx z4, z6
172 // CHECK-ENCODING: [0xc4,0xbc,0x20,0x04]
173 // CHECK-ERROR: instruction requires: sve
174 // CHECK-UNKNOWN: c4 bc 20 04 <unknown>
176 orr z4.d, p7/m, z4.d, z31.d
177 // CHECK-INST: orr z4.d, p7/m, z4.d, z31.d
178 // CHECK-ENCODING: [0xe4,0x1f,0xd8,0x04]
179 // CHECK-ERROR: instruction requires: sve
180 // CHECK-UNKNOWN: e4 1f d8 04 <unknown>
182 movprfx z0, z7
183 // CHECK-INST: movprfx z0, z7
184 // CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]
185 // CHECK-ERROR: instruction requires: sve
186 // CHECK-UNKNOWN: e0 bc 20 04 <unknown>
188 orr z0.d, z0.d, #0x6
189 // CHECK-INST: orr z0.d, z0.d, #0x6
190 // CHECK-ENCODING: [0x20,0xf8,0x03,0x05]
191 // CHECK-ERROR: instruction requires: sve
192 // CHECK-UNKNOWN: 20 f8 03 05 <unknown>