Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / AArch64 / SVE / bic.s
bloba4121b57ed41331aa67722ca3c8e7c0f6c26a110
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
12 bic z5.b, z5.b, #0xf9
13 // CHECK-INST: and z5.b, z5.b, #0x6
14 // CHECK-ENCODING: [0x25,0x3e,0x80,0x05]
15 // CHECK-ERROR: instruction requires: sve or sme
16 // CHECK-UNKNOWN: 05803e25 <unknown>
18 bic z23.h, z23.h, #0xfff9
19 // CHECK-INST: and z23.h, z23.h, #0x6
20 // CHECK-ENCODING: [0x37,0x7c,0x80,0x05]
21 // CHECK-ERROR: instruction requires: sve or sme
22 // CHECK-UNKNOWN: 05807c37 <unknown>
24 bic z0.s, z0.s, #0xfffffff9
25 // CHECK-INST: and z0.s, z0.s, #0x6
26 // CHECK-ENCODING: [0x20,0xf8,0x80,0x05]
27 // CHECK-ERROR: instruction requires: sve or sme
28 // CHECK-UNKNOWN: 0580f820 <unknown>
30 bic z0.d, z0.d, #0xfffffffffffffff9
31 // CHECK-INST: and z0.d, z0.d, #0x6
32 // CHECK-ENCODING: [0x20,0xf8,0x83,0x05]
33 // CHECK-ERROR: instruction requires: sve or sme
34 // CHECK-UNKNOWN: 0583f820 <unknown>
36 bic z5.b, z5.b, #0x6
37 // CHECK-INST: and z5.b, z5.b, #0xf9
38 // CHECK-ENCODING: [0xa5,0x2e,0x80,0x05]
39 // CHECK-ERROR: instruction requires: sve or sme
40 // CHECK-UNKNOWN: 05802ea5 <unknown>
42 bic z23.h, z23.h, #0x6
43 // CHECK-INST: and z23.h, z23.h, #0xfff9
44 // CHECK-ENCODING: [0xb7,0x6d,0x80,0x05]
45 // CHECK-ERROR: instruction requires: sve or sme
46 // CHECK-UNKNOWN: 05806db7 <unknown>
48 bic z0.s, z0.s, #0x6
49 // CHECK-INST: and z0.s, z0.s, #0xfffffff9
50 // CHECK-ENCODING: [0xa0,0xeb,0x80,0x05]
51 // CHECK-ERROR: instruction requires: sve or sme
52 // CHECK-UNKNOWN: 0580eba0 <unknown>
54 bic z0.d, z0.d, #0x6
55 // CHECK-INST: and z0.d, z0.d, #0xfffffffffffffff9
56 // CHECK-ENCODING: [0xa0,0xef,0x83,0x05]
57 // CHECK-ERROR: instruction requires: sve or sme
58 // CHECK-UNKNOWN: 0583efa0 <unknown>
60 bic z0.d, z0.d, z0.d
61 // CHECK-INST: bic z0.d, z0.d, z0.d
62 // CHECK-ENCODING: [0x00,0x30,0xe0,0x04]
63 // CHECK-ERROR: instruction requires: sve or sme
64 // CHECK-UNKNOWN: 04e03000 <unknown>
66 bic z23.d, z13.d, z8.d
67 // CHECK-INST: bic z23.d, z13.d, z8.d
68 // CHECK-ENCODING: [0xb7,0x31,0xe8,0x04]
69 // CHECK-ERROR: instruction requires: sve or sme
70 // CHECK-UNKNOWN: 04e831b7 <unknown>
72 bic z31.b, p7/m, z31.b, z31.b
73 // CHECK-INST: bic z31.b, p7/m, z31.b, z31.b
74 // CHECK-ENCODING: [0xff,0x1f,0x1b,0x04]
75 // CHECK-ERROR: instruction requires: sve or sme
76 // CHECK-UNKNOWN: 041b1fff <unknown>
78 bic z31.h, p7/m, z31.h, z31.h
79 // CHECK-INST: bic z31.h, p7/m, z31.h, z31.h
80 // CHECK-ENCODING: [0xff,0x1f,0x5b,0x04]
81 // CHECK-ERROR: instruction requires: sve or sme
82 // CHECK-UNKNOWN: 045b1fff <unknown>
84 bic z31.s, p7/m, z31.s, z31.s
85 // CHECK-INST: bic z31.s, p7/m, z31.s, z31.s
86 // CHECK-ENCODING: [0xff,0x1f,0x9b,0x04]
87 // CHECK-ERROR: instruction requires: sve or sme
88 // CHECK-UNKNOWN: 049b1fff <unknown>
90 bic z31.d, p7/m, z31.d, z31.d
91 // CHECK-INST: bic z31.d, p7/m, z31.d, z31.d
92 // CHECK-ENCODING: [0xff,0x1f,0xdb,0x04]
93 // CHECK-ERROR: instruction requires: sve or sme
94 // CHECK-UNKNOWN: 04db1fff <unknown>
96 bic p15.b, p15/z, p15.b, p15.b
97 // CHECK-INST: bic p15.b, p15/z, p15.b, p15.b
98 // CHECK-ENCODING: [0xff,0x7d,0x0f,0x25]
99 // CHECK-ERROR: instruction requires: sve or sme
100 // CHECK-UNKNOWN: 250f7dff <unknown>
102 bic p0.b, p0/z, p0.b, p0.b
103 // CHECK-INST: bic p0.b, p0/z, p0.b, p0.b
104 // CHECK-ENCODING: [0x10,0x40,0x00,0x25]
105 // CHECK-ERROR: instruction requires: sve or sme
106 // CHECK-UNKNOWN: 25004010 <unknown>
109 // --------------------------------------------------------------------------//
110 // Test aliases.
112 bic z0.s, z0.s, z0.s
113 // CHECK-INST: bic z0.d, z0.d, z0.d
114 // CHECK-ENCODING: [0x00,0x30,0xe0,0x04]
115 // CHECK-ERROR: instruction requires: sve or sme
116 // CHECK-UNKNOWN: 04e03000 <unknown>
118 bic z0.h, z0.h, z0.h
119 // CHECK-INST: bic z0.d, z0.d, z0.d
120 // CHECK-ENCODING: [0x00,0x30,0xe0,0x04]
121 // CHECK-ERROR: instruction requires: sve or sme
122 // CHECK-UNKNOWN: 04e03000 <unknown>
124 bic z0.b, z0.b, z0.b
125 // CHECK-INST: bic z0.d, z0.d, z0.d
126 // CHECK-ENCODING: [0x00,0x30,0xe0,0x04]
127 // CHECK-ERROR: instruction requires: sve or sme
128 // CHECK-UNKNOWN: 04e03000 <unknown>
131 // --------------------------------------------------------------------------//
132 // Test compatibility with MOVPRFX instruction.
134 movprfx z4.d, p7/z, z6.d
135 // CHECK-INST: movprfx z4.d, p7/z, z6.d
136 // CHECK-ENCODING: [0xc4,0x3c,0xd0,0x04]
137 // CHECK-ERROR: instruction requires: sve or sme
138 // CHECK-UNKNOWN: 04d03cc4 <unknown>
140 bic z4.d, p7/m, z4.d, z31.d
141 // CHECK-INST: bic z4.d, p7/m, z4.d, z31.d
142 // CHECK-ENCODING: [0xe4,0x1f,0xdb,0x04]
143 // CHECK-ERROR: instruction requires: sve or sme
144 // CHECK-UNKNOWN: 04db1fe4 <unknown>
146 movprfx z4, z6
147 // CHECK-INST: movprfx z4, z6
148 // CHECK-ENCODING: [0xc4,0xbc,0x20,0x04]
149 // CHECK-ERROR: instruction requires: sve or sme
150 // CHECK-UNKNOWN: 0420bcc4 <unknown>
152 bic z4.d, p7/m, z4.d, z31.d
153 // CHECK-INST: bic z4.d, p7/m, z4.d, z31.d
154 // CHECK-ENCODING: [0xe4,0x1f,0xdb,0x04]
155 // CHECK-ERROR: instruction requires: sve or sme
156 // CHECK-UNKNOWN: 04db1fe4 <unknown>
158 movprfx z0, z7
159 // CHECK-INST: movprfx z0, z7
160 // CHECK-ENCODING: [0xe0,0xbc,0x20,0x04]
161 // CHECK-ERROR: instruction requires: sve or sme
162 // CHECK-UNKNOWN: 0420bce0 <unknown>
164 bic z0.d, z0.d, #0x6
165 // CHECK-INST: and z0.d, z0.d, #0xfffffffffffffff9
166 // CHECK-ENCODING: [0xa0,0xef,0x83,0x05]
167 // CHECK-ERROR: instruction requires: sve or sme
168 // CHECK-UNKNOWN: 0583efa0 <unknown>