intel/fs: Remove program key argument from generator.
[mesa.git] / src / intel / compiler / brw_fs_cmod_propagation.cpp
1 /*
2 * Copyright © 2014 Intel Corporation
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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "brw_fs.h"
25 #include "brw_cfg.h"
26 #include "brw_eu.h"
27
28 /** @file brw_fs_cmod_propagation.cpp
29 *
30 * Implements a pass that propagates the conditional modifier from a CMP x 0.0
31 * instruction into the instruction that generated x. For instance, in this
32 * sequence
33 *
34 * add(8) g70<1>F g69<8,8,1>F 4096F
35 * cmp.ge.f0(8) null g70<8,8,1>F 0F
36 *
37 * we can do the comparison as part of the ADD instruction directly:
38 *
39 * add.ge.f0(8) g70<1>F g69<8,8,1>F 4096F
40 *
41 * If there had been a use of the flag register and another CMP using g70
42 *
43 * add.ge.f0(8) g70<1>F g69<8,8,1>F 4096F
44 * (+f0) sel(8) g71<F> g72<8,8,1>F g73<8,8,1>F
45 * cmp.ge.f0(8) null g70<8,8,1>F 0F
46 *
47 * we can recognize that the CMP is generating the flag value that already
48 * exists and therefore remove the instruction.
49 */
50
51 static bool
52 cmod_propagate_cmp_to_add(const gen_device_info *devinfo, bblock_t *block,
53 fs_inst *inst)
54 {
55 bool read_flag = false;
56
57 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
58 if (scan_inst->opcode == BRW_OPCODE_ADD &&
59 !scan_inst->is_partial_write() &&
60 scan_inst->exec_size == inst->exec_size) {
61 bool negate;
62
63 /* A CMP is basically a subtraction. The result of the
64 * subtraction must be the same as the result of the addition.
65 * This means that one of the operands must be negated. So (a +
66 * b) vs (a == -b) or (a + -b) vs (a == b).
67 */
68 if ((inst->src[0].equals(scan_inst->src[0]) &&
69 inst->src[1].negative_equals(scan_inst->src[1])) ||
70 (inst->src[0].equals(scan_inst->src[1]) &&
71 inst->src[1].negative_equals(scan_inst->src[0]))) {
72 negate = false;
73 } else if ((inst->src[0].negative_equals(scan_inst->src[0]) &&
74 inst->src[1].equals(scan_inst->src[1])) ||
75 (inst->src[0].negative_equals(scan_inst->src[1]) &&
76 inst->src[1].equals(scan_inst->src[0]))) {
77 negate = true;
78 } else {
79 goto not_match;
80 }
81
82 /* From the Sky Lake PRM Vol. 7 "Assigning Conditional Mods":
83 *
84 * * Note that the [post condition signal] bits generated at
85 * the output of a compute are before the .sat.
86 *
87 * So we don't have to bail if scan_inst has saturate.
88 */
89 /* Otherwise, try propagating the conditional. */
90 const enum brw_conditional_mod cond =
91 negate ? brw_swap_cmod(inst->conditional_mod)
92 : inst->conditional_mod;
93
94 if (scan_inst->can_do_cmod() &&
95 ((!read_flag && scan_inst->conditional_mod == BRW_CONDITIONAL_NONE) ||
96 scan_inst->conditional_mod == cond)) {
97 scan_inst->conditional_mod = cond;
98 inst->remove(block);
99 return true;
100 }
101 break;
102 }
103
104 not_match:
105 if (scan_inst->flags_written())
106 break;
107
108 read_flag = read_flag || scan_inst->flags_read(devinfo);
109 }
110
111 return false;
112 }
113
114 /**
115 * Propagate conditional modifiers from NOT instructions
116 *
117 * Attempt to convert sequences like
118 *
119 * or(8) g78<8,8,1> g76<8,8,1>UD g77<8,8,1>UD
120 * ...
121 * not.nz.f0(8) null g78<8,8,1>UD
122 *
123 * into
124 *
125 * or.z.f0(8) g78<8,8,1> g76<8,8,1>UD g77<8,8,1>UD
126 */
127 static bool
128 cmod_propagate_not(const gen_device_info *devinfo, bblock_t *block,
129 fs_inst *inst)
130 {
131 const enum brw_conditional_mod cond = brw_negate_cmod(inst->conditional_mod);
132 bool read_flag = false;
133
134 if (cond != BRW_CONDITIONAL_Z && cond != BRW_CONDITIONAL_NZ)
135 return false;
136
137 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
138 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
139 inst->src[0], inst->size_read(0))) {
140 if (scan_inst->opcode != BRW_OPCODE_OR &&
141 scan_inst->opcode != BRW_OPCODE_AND)
142 break;
143
144 if (scan_inst->is_partial_write() ||
145 scan_inst->dst.offset != inst->src[0].offset ||
146 scan_inst->exec_size != inst->exec_size)
147 break;
148
149 if (scan_inst->can_do_cmod() &&
150 ((!read_flag && scan_inst->conditional_mod == BRW_CONDITIONAL_NONE) ||
151 scan_inst->conditional_mod == cond)) {
152 scan_inst->conditional_mod = cond;
153 inst->remove(block);
154 return true;
155 }
156 break;
157 }
158
159 if (scan_inst->flags_written())
160 break;
161
162 read_flag = read_flag || scan_inst->flags_read(devinfo);
163 }
164
165 return false;
166 }
167
168 static bool
169 opt_cmod_propagation_local(const gen_device_info *devinfo, bblock_t *block)
170 {
171 bool progress = false;
172 int ip = block->end_ip + 1;
173
174 foreach_inst_in_block_reverse_safe(fs_inst, inst, block) {
175 ip--;
176
177 if ((inst->opcode != BRW_OPCODE_AND &&
178 inst->opcode != BRW_OPCODE_CMP &&
179 inst->opcode != BRW_OPCODE_MOV &&
180 inst->opcode != BRW_OPCODE_NOT) ||
181 inst->predicate != BRW_PREDICATE_NONE ||
182 !inst->dst.is_null() ||
183 (inst->src[0].file != VGRF && inst->src[0].file != ATTR &&
184 inst->src[0].file != UNIFORM))
185 continue;
186
187 /* An ABS source modifier can only be handled when processing a compare
188 * with a value other than zero.
189 */
190 if (inst->src[0].abs &&
191 (inst->opcode != BRW_OPCODE_CMP || inst->src[1].is_zero()))
192 continue;
193
194 /* Only an AND.NZ can be propagated. Many AND.Z instructions are
195 * generated (for ir_unop_not in fs_visitor::emit_bool_to_cond_code).
196 * Propagating those would require inverting the condition on the CMP.
197 * This changes both the flag value and the register destination of the
198 * CMP. That result may be used elsewhere, so we can't change its value
199 * on a whim.
200 */
201 if (inst->opcode == BRW_OPCODE_AND &&
202 !(inst->src[1].is_one() &&
203 inst->conditional_mod == BRW_CONDITIONAL_NZ &&
204 !inst->src[0].negate))
205 continue;
206
207 if (inst->opcode == BRW_OPCODE_MOV &&
208 inst->conditional_mod != BRW_CONDITIONAL_NZ)
209 continue;
210
211 /* A CMP with a second source of zero can match with anything. A CMP
212 * with a second source that is not zero can only match with an ADD
213 * instruction.
214 */
215 if (inst->opcode == BRW_OPCODE_CMP && !inst->src[1].is_zero()) {
216 progress = cmod_propagate_cmp_to_add(devinfo, block, inst) || progress;
217 continue;
218 }
219
220 if (inst->opcode == BRW_OPCODE_NOT) {
221 progress = cmod_propagate_not(devinfo, block, inst) || progress;
222 continue;
223 }
224
225 bool read_flag = false;
226 foreach_inst_in_block_reverse_starting_from(fs_inst, scan_inst, inst) {
227 if (regions_overlap(scan_inst->dst, scan_inst->size_written,
228 inst->src[0], inst->size_read(0))) {
229 if (scan_inst->is_partial_write() ||
230 scan_inst->dst.offset != inst->src[0].offset ||
231 scan_inst->exec_size != inst->exec_size)
232 break;
233
234 /* CMP's result is the same regardless of dest type. */
235 if (inst->conditional_mod == BRW_CONDITIONAL_NZ &&
236 scan_inst->opcode == BRW_OPCODE_CMP &&
237 (inst->dst.type == BRW_REGISTER_TYPE_D ||
238 inst->dst.type == BRW_REGISTER_TYPE_UD)) {
239 inst->remove(block);
240 progress = true;
241 break;
242 }
243
244 /* If the AND wasn't handled by the previous case, it isn't safe
245 * to remove it.
246 */
247 if (inst->opcode == BRW_OPCODE_AND)
248 break;
249
250 /* Comparisons operate differently for ints and floats */
251 if (scan_inst->dst.type != inst->dst.type &&
252 (scan_inst->dst.type == BRW_REGISTER_TYPE_F ||
253 inst->dst.type == BRW_REGISTER_TYPE_F))
254 break;
255
256 /* If the instruction generating inst's source also wrote the
257 * flag, and inst is doing a simple .nz comparison, then inst
258 * is redundant - the appropriate value is already in the flag
259 * register. Delete inst.
260 */
261 if (inst->conditional_mod == BRW_CONDITIONAL_NZ &&
262 !inst->src[0].negate &&
263 scan_inst->flags_written()) {
264 inst->remove(block);
265 progress = true;
266 break;
267 }
268
269 /* The conditional mod of the CMP/CMPN instructions behaves
270 * specially because the flag output is not calculated from the
271 * result of the instruction, but the other way around, which
272 * means that even if the condmod to propagate and the condmod
273 * from the CMP instruction are the same they will in general give
274 * different results because they are evaluated based on different
275 * inputs.
276 */
277 if (scan_inst->opcode == BRW_OPCODE_CMP ||
278 scan_inst->opcode == BRW_OPCODE_CMPN)
279 break;
280
281 /* From the Sky Lake PRM Vol. 7 "Assigning Conditional Mods":
282 *
283 * * Note that the [post condition signal] bits generated at
284 * the output of a compute are before the .sat.
285 */
286 if (scan_inst->saturate)
287 break;
288
289 /* From the Sky Lake PRM, Vol 2a, "Multiply":
290 *
291 * "When multiplying integer data types, if one of the sources
292 * is a DW, the resulting full precision data is stored in
293 * the accumulator. However, if the destination data type is
294 * either W or DW, the low bits of the result are written to
295 * the destination register and the remaining high bits are
296 * discarded. This results in undefined Overflow and Sign
297 * flags. Therefore, conditional modifiers and saturation
298 * (.sat) cannot be used in this case."
299 *
300 * We just disallow cmod propagation on all integer multiplies.
301 */
302 if (!brw_reg_type_is_floating_point(scan_inst->dst.type) &&
303 scan_inst->opcode == BRW_OPCODE_MUL)
304 break;
305
306 /* Otherwise, try propagating the conditional. */
307 enum brw_conditional_mod cond =
308 inst->src[0].negate ? brw_swap_cmod(inst->conditional_mod)
309 : inst->conditional_mod;
310
311 if (scan_inst->can_do_cmod() &&
312 ((!read_flag && scan_inst->conditional_mod == BRW_CONDITIONAL_NONE) ||
313 scan_inst->conditional_mod == cond)) {
314 scan_inst->conditional_mod = cond;
315 inst->remove(block);
316 progress = true;
317 }
318 break;
319 }
320
321 if (scan_inst->flags_written())
322 break;
323
324 read_flag = read_flag || scan_inst->flags_read(devinfo);
325 }
326 }
327
328 return progress;
329 }
330
331 bool
332 fs_visitor::opt_cmod_propagation()
333 {
334 bool progress = false;
335
336 foreach_block_reverse(block, cfg) {
337 progress = opt_cmod_propagation_local(devinfo, block) || progress;
338 }
339
340 if (progress)
341 invalidate_live_intervals();
342
343 return progress;
344 }