pan/midgard: Eliminate blank_alu_src
[mesa.git] / src / panfrost / midgard / midgard_opt_invert.c
1 /*
2 * Copyright (C) 2019 Collabora, Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #include "compiler.h"
25 #include "midgard_ops.h"
26
27 /* Lowers the invert field on instructions to a dedicated inot (inor)
28 * instruction instead, as invert is not always supported natively by the
29 * hardware */
30
31 void
32 midgard_lower_invert(compiler_context *ctx, midgard_block *block)
33 {
34 mir_foreach_instr_in_block_safe(block, ins) {
35 if (ins->type != TAG_ALU_4) continue;
36 if (!ins->invert) continue;
37
38 unsigned temp = make_compiler_temp(ctx);
39
40 midgard_instruction not = {
41 .type = TAG_ALU_4,
42 .mask = ins->mask,
43 .src = { temp, ~0, ~0 },
44 .swizzle = SWIZZLE_IDENTITY,
45 .dest = ins->dest,
46 .has_inline_constant = true,
47 .alu = {
48 .op = midgard_alu_op_inor,
49 /* TODO: i16 */
50 .reg_mode = midgard_reg_mode_32,
51 .dest_override = midgard_dest_override_none,
52 .outmod = midgard_outmod_int_wrap
53 },
54 };
55
56 ins->dest = temp;
57 ins->invert = false;
58 mir_insert_instruction_before(ctx, mir_next_op(ins), not);
59 }
60 }
61
62 /* Propagate the .not up to the source */
63
64 bool
65 midgard_opt_not_propagate(compiler_context *ctx, midgard_block *block)
66 {
67 bool progress = false;
68
69 mir_foreach_instr_in_block_safe(block, ins) {
70 if (ins->type != TAG_ALU_4) continue;
71 if (ins->alu.op != midgard_alu_op_imov) continue;
72 if (!ins->invert) continue;
73 if (mir_nontrivial_source2_mod_simple(ins)) continue;
74 if (ins->src[1] & IS_REG) continue;
75
76 /* Is it beneficial to propagate? */
77 if (!mir_single_use(ctx, ins->src[1])) continue;
78
79 /* We found an imov.not, propagate the invert back */
80
81 mir_foreach_instr_in_block_from_rev(block, v, mir_prev_op(ins)) {
82 if (v->dest != ins->src[1]) continue;
83 if (v->type != TAG_ALU_4) break;
84
85 v->invert = !v->invert;
86 ins->invert = false;
87 progress |= true;
88 break;
89 }
90 }
91
92 return progress;
93 }
94
95 /* With that lowering out of the way, we can focus on more interesting
96 * optimizations. One easy one is fusing inverts into bitwise operations:
97 *
98 * ~iand = inand
99 * ~ior = inor
100 * ~ixor = inxor
101 */
102
103 static bool
104 mir_is_bitwise(midgard_instruction *ins)
105 {
106 switch (ins->alu.op) {
107 case midgard_alu_op_iand:
108 case midgard_alu_op_ior:
109 case midgard_alu_op_ixor:
110 return true;
111 default:
112 return false;
113 }
114 }
115
116 static midgard_alu_op
117 mir_invert_op(midgard_alu_op op)
118 {
119 switch (op) {
120 case midgard_alu_op_iand:
121 return midgard_alu_op_inand;
122 case midgard_alu_op_ior:
123 return midgard_alu_op_inor;
124 case midgard_alu_op_ixor:
125 return midgard_alu_op_inxor;
126 default:
127 unreachable("Op not invertible");
128 }
129 }
130
131 static midgard_alu_op
132 mir_demorgan_op(midgard_alu_op op)
133 {
134 switch (op) {
135 case midgard_alu_op_iand:
136 return midgard_alu_op_inor;
137 case midgard_alu_op_ior:
138 return midgard_alu_op_inand;
139 default:
140 unreachable("Op not De Morgan-able");
141 }
142 }
143
144 static midgard_alu_op
145 mir_notright_op(midgard_alu_op op)
146 {
147 switch (op) {
148 case midgard_alu_op_iand:
149 return midgard_alu_op_iandnot;
150 case midgard_alu_op_ior:
151 return midgard_alu_op_iornot;
152 default:
153 unreachable("Op not right able");
154 }
155 }
156
157 bool
158 midgard_opt_fuse_dest_invert(compiler_context *ctx, midgard_block *block)
159 {
160 bool progress = false;
161
162 mir_foreach_instr_in_block_safe(block, ins) {
163 /* Search for inverted bitwise */
164 if (ins->type != TAG_ALU_4) continue;
165 if (!mir_is_bitwise(ins)) continue;
166 if (!ins->invert) continue;
167
168 ins->alu.op = mir_invert_op(ins->alu.op);
169 ins->invert = false;
170 progress |= true;
171 }
172
173 return progress;
174 }
175
176 /* Next up, we can fuse inverts into the sources of bitwise ops:
177 *
178 * ~a & b = b & ~a = iandnot(b, a)
179 * a & ~b = iandnot(a, b)
180 * ~a & ~b = ~(a | b) = inor(a, b)
181 *
182 * ~a | b = b | ~a = iornot(b, a)
183 * a | ~b = iornot(a, b)
184 * ~a | ~b = ~(a & b) = inand(a, b)
185 *
186 * ~a ^ b = ~(a ^ b) = inxor(a, b)
187 * a ^ ~b = ~(a ^ b) + inxor(a, b)
188 * ~a ^ ~b = a ^ b
189 * ~(a ^ b) = inxor(a, b)
190 */
191
192 static bool
193 mir_strip_inverted(compiler_context *ctx, unsigned node)
194 {
195 if (node >= SSA_FIXED_MINIMUM)
196 return false;
197
198 /* Strips and returns the invert off a node */
199 mir_foreach_instr_global(ctx, ins) {
200 if (ins->compact_branch) continue;
201 if (ins->dest != node) continue;
202
203 bool status = ins->invert;
204 ins->invert = false;
205 return status;
206 }
207
208 unreachable("Invalid node stripped");
209 }
210
211 static bool
212 is_ssa_or_constant(unsigned node)
213 {
214 return !(node & IS_REG) || (node == SSA_FIXED_REGISTER(26));
215 }
216
217 bool
218 midgard_opt_fuse_src_invert(compiler_context *ctx, midgard_block *block)
219 {
220 bool progress = false;
221
222 mir_foreach_instr_in_block_safe(block, ins) {
223 /* Search for inverted bitwise */
224 if (ins->type != TAG_ALU_4) continue;
225 if (!mir_is_bitwise(ins)) continue;
226 if (ins->invert) continue;
227
228 if (!is_ssa_or_constant(ins->src[0])) continue;
229 if (!is_ssa_or_constant(ins->src[1])) continue;
230 if (!mir_single_use(ctx, ins->src[0])) continue;
231 if (!ins->has_inline_constant && !mir_single_use(ctx, ins->src[1])) continue;
232
233 bool not_a = mir_strip_inverted(ctx, ins->src[0]);
234 bool not_b =
235 ins->has_inline_constant ? false :
236 mir_strip_inverted(ctx, ins->src[1]);
237
238 /* Edge case: if src0 == src1, it'll've been stripped */
239 if ((ins->src[0] == ins->src[1]) && !ins->has_inline_constant)
240 not_b = not_a;
241
242 progress |= (not_a || not_b);
243
244 /* No point */
245 if (!(not_a || not_b)) continue;
246
247 bool both = not_a && not_b;
248 bool left = not_a && !not_b;
249 bool right = !not_a && not_b;
250
251 /* No-op, but we got to strip the inverts */
252 if (both && ins->alu.op == midgard_alu_op_ixor)
253 continue;
254
255 if (both) {
256 ins->alu.op = mir_demorgan_op(ins->alu.op);
257 } else if (right || (left && !ins->has_inline_constant)) {
258 /* Commute arguments */
259 if (left)
260 mir_flip(ins);
261
262 ins->alu.op = mir_notright_op(ins->alu.op);
263 } else if (left && ins->has_inline_constant) {
264 /* Some special transformations:
265 *
266 * ~A & c = ~(~(~A) | (~c)) = ~(A | ~c) = inor(A, ~c)
267 * ~A | c = ~(~(~A) & (~c)) = ~(A & ~c) = inand(A, ~c)
268 */
269
270 ins->alu.op = mir_demorgan_op(ins->alu.op);
271 ins->inline_constant = ~ins->inline_constant;
272 }
273 }
274
275 return progress;
276 }
277
278 /* Optimizes a .not away when used as the source of a conditional select:
279 *
280 * csel(a, b, c) = { b if a, c if !a }
281 * csel(!a, b, c) = { b if !a, c if !(!a) } = { c if a, b if !a } = csel(a, c, b)
282 * csel(!a, b, c) = csel(a, c, b)
283 */
284
285 bool
286 midgard_opt_csel_invert(compiler_context *ctx, midgard_block *block)
287 {
288 bool progress = false;
289
290 mir_foreach_instr_in_block_safe(block, ins) {
291 if (ins->type != TAG_ALU_4) continue;
292 if (!OP_IS_CSEL(ins->alu.op)) continue;
293 if (!mir_single_use(ctx, ins->src[2])) continue;
294 if (!mir_strip_inverted(ctx, ins->src[2])) continue;
295
296 mir_flip(ins);
297 progress |= true;
298 }
299
300 return progress;
301 }