0d4c23ab63136045583ef23bb73671069e3dfea3
[mesa.git] / src / compiler / nir / nir_opt_gcm.c
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 * Authors:
24 * Jason Ekstrand (jason@jlekstrand.net)
25 *
26 */
27
28 #include "nir.h"
29 #include "nir_instr_set.h"
30
31 /*
32 * Implements Global Code Motion. A description of GCM can be found in
33 * "Global Code Motion; Global Value Numbering" by Cliff Click.
34 * Unfortunately, the algorithm presented in the paper is broken in a
35 * number of ways. The algorithm used here differs substantially from the
36 * one in the paper but it is, in my opinion, much easier to read and
37 * verify correcness.
38 */
39
40 struct gcm_block_info {
41 /* Number of loops this block is inside */
42 unsigned loop_depth;
43
44 /* The last instruction inserted into this block. This is used as we
45 * traverse the instructions and insert them back into the program to
46 * put them in the right order.
47 */
48 nir_instr *last_instr;
49 };
50
51 struct gcm_instr_info {
52 nir_block *early_block;
53 };
54
55 /* Flags used in the instr->pass_flags field for various instruction states */
56 enum {
57 GCM_INSTR_PINNED = (1 << 0),
58 GCM_INSTR_SCHEDULE_EARLIER_ONLY = (1 << 1),
59 GCM_INSTR_SCHEDULED_EARLY = (1 << 2),
60 GCM_INSTR_SCHEDULED_LATE = (1 << 3),
61 GCM_INSTR_PLACED = (1 << 4),
62 };
63
64 struct gcm_state {
65 nir_function_impl *impl;
66 nir_instr *instr;
67
68 bool progress;
69
70 /* The list of non-pinned instructions. As we do the late scheduling,
71 * we pull non-pinned instructions out of their blocks and place them in
72 * this list. This saves us from having linked-list problems when we go
73 * to put instructions back in their blocks.
74 */
75 struct exec_list instrs;
76
77 struct gcm_block_info *blocks;
78
79 unsigned num_instrs;
80 struct gcm_instr_info *instr_infos;
81 };
82
83 /* Recursively walks the CFG and builds the block_info structure */
84 static void
85 gcm_build_block_info(struct exec_list *cf_list, struct gcm_state *state,
86 unsigned loop_depth)
87 {
88 foreach_list_typed(nir_cf_node, node, node, cf_list) {
89 switch (node->type) {
90 case nir_cf_node_block: {
91 nir_block *block = nir_cf_node_as_block(node);
92 state->blocks[block->index].loop_depth = loop_depth;
93 break;
94 }
95 case nir_cf_node_if: {
96 nir_if *if_stmt = nir_cf_node_as_if(node);
97 gcm_build_block_info(&if_stmt->then_list, state, loop_depth);
98 gcm_build_block_info(&if_stmt->else_list, state, loop_depth);
99 break;
100 }
101 case nir_cf_node_loop: {
102 nir_loop *loop = nir_cf_node_as_loop(node);
103 gcm_build_block_info(&loop->body, state, loop_depth + 1);
104 break;
105 }
106 default:
107 unreachable("Invalid CF node type");
108 }
109 }
110 }
111
112 /* Walks the instruction list and marks immovable instructions as pinned
113 *
114 * This function also serves to initialize the instr->pass_flags field.
115 * After this is completed, all instructions' pass_flags fields will be set
116 * to either GCM_INSTR_PINNED or 0.
117 */
118 static void
119 gcm_pin_instructions(nir_function_impl *impl, struct gcm_state *state)
120 {
121 state->num_instrs = 0;
122
123 nir_foreach_block(block, impl) {
124 nir_foreach_instr_safe(instr, block) {
125 /* Index the instructions for use in gcm_state::instrs */
126 instr->index = state->num_instrs++;
127
128 switch (instr->type) {
129 case nir_instr_type_alu:
130 switch (nir_instr_as_alu(instr)->op) {
131 case nir_op_fddx:
132 case nir_op_fddy:
133 case nir_op_fddx_fine:
134 case nir_op_fddy_fine:
135 case nir_op_fddx_coarse:
136 case nir_op_fddy_coarse:
137 /* These can only go in uniform control flow */
138 instr->pass_flags = GCM_INSTR_SCHEDULE_EARLIER_ONLY;
139 break;
140
141 default:
142 instr->pass_flags = 0;
143 break;
144 }
145 break;
146
147 case nir_instr_type_tex:
148 if (nir_tex_instr_has_implicit_derivative(nir_instr_as_tex(instr)))
149 instr->pass_flags = GCM_INSTR_SCHEDULE_EARLIER_ONLY;
150 break;
151
152 case nir_instr_type_deref:
153 case nir_instr_type_load_const:
154 instr->pass_flags = 0;
155 break;
156
157 case nir_instr_type_intrinsic: {
158 if (nir_intrinsic_can_reorder(nir_instr_as_intrinsic(instr))) {
159 instr->pass_flags = 0;
160 } else {
161 instr->pass_flags = GCM_INSTR_PINNED;
162 }
163 break;
164 }
165
166 case nir_instr_type_jump:
167 case nir_instr_type_ssa_undef:
168 case nir_instr_type_phi:
169 instr->pass_flags = GCM_INSTR_PINNED;
170 break;
171
172 default:
173 unreachable("Invalid instruction type in GCM");
174 }
175
176 if (!(instr->pass_flags & GCM_INSTR_PINNED)) {
177 /* If this is an unpinned instruction, go ahead and pull it out of
178 * the program and put it on the instrs list. This has a couple
179 * of benifits. First, it makes the scheduling algorithm more
180 * efficient because we can avoid walking over basic blocks and
181 * pinned instructions. Second, it keeps us from causing linked
182 * list confusion when we're trying to put everything in its
183 * proper place at the end of the pass.
184 *
185 * Note that we don't use nir_instr_remove here because that also
186 * cleans up uses and defs and we want to keep that information.
187 */
188 exec_node_remove(&instr->node);
189 exec_list_push_tail(&state->instrs, &instr->node);
190 }
191 }
192 }
193 }
194
195 static void
196 gcm_schedule_early_instr(nir_instr *instr, struct gcm_state *state);
197
198 /** Update an instructions schedule for the given source
199 *
200 * This function is called iteratively as we walk the sources of an
201 * instruction. It ensures that the given source instruction has been
202 * scheduled and then update this instruction's block if the source
203 * instruction is lower down the tree.
204 */
205 static bool
206 gcm_schedule_early_src(nir_src *src, void *void_state)
207 {
208 struct gcm_state *state = void_state;
209 nir_instr *instr = state->instr;
210
211 assert(src->is_ssa);
212
213 gcm_schedule_early_instr(src->ssa->parent_instr, void_state);
214
215 /* While the index isn't a proper dominance depth, it does have the
216 * property that if A dominates B then A->index <= B->index. Since we
217 * know that this instruction must have been dominated by all of its
218 * sources at some point (even if it's gone through value-numbering),
219 * all of the sources must lie on the same branch of the dominance tree.
220 * Therefore, we can just go ahead and just compare indices.
221 */
222 struct gcm_instr_info *src_info =
223 &state->instr_infos[src->ssa->parent_instr->index];
224 struct gcm_instr_info *info = &state->instr_infos[instr->index];
225 if (info->early_block->index < src_info->early_block->index)
226 info->early_block = src_info->early_block;
227
228 /* We need to restore the state instruction because it may have been
229 * changed through the gcm_schedule_early_instr call above. Since we
230 * may still be iterating through sources and future calls to
231 * gcm_schedule_early_src for the same instruction will still need it.
232 */
233 state->instr = instr;
234
235 return true;
236 }
237
238 /** Schedules an instruction early
239 *
240 * This function performs a recursive depth-first search starting at the
241 * given instruction and proceeding through the sources to schedule
242 * instructions as early as they can possibly go in the dominance tree.
243 * The instructions are "scheduled" by updating the early_block field of
244 * the corresponding gcm_instr_state entry.
245 */
246 static void
247 gcm_schedule_early_instr(nir_instr *instr, struct gcm_state *state)
248 {
249 if (instr->pass_flags & GCM_INSTR_SCHEDULED_EARLY)
250 return;
251
252 instr->pass_flags |= GCM_INSTR_SCHEDULED_EARLY;
253
254 /* Pinned instructions always get scheduled in their original block so we
255 * don't need to do anything. Also, bailing here keeps us from ever
256 * following the sources of phi nodes which can be back-edges.
257 */
258 if (instr->pass_flags & GCM_INSTR_PINNED) {
259 state->instr_infos[instr->index].early_block = instr->block;
260 return;
261 }
262
263 /* Start with the instruction at the top. As we iterate over the
264 * sources, it will get moved down as needed.
265 */
266 state->instr_infos[instr->index].early_block = nir_start_block(state->impl);
267 state->instr = instr;
268
269 nir_foreach_src(instr, gcm_schedule_early_src, state);
270 }
271
272 static nir_block *
273 gcm_choose_block_for_instr(nir_instr *instr, nir_block *early_block,
274 nir_block *late_block, struct gcm_state *state)
275 {
276 assert(nir_block_dominates(early_block, late_block));
277
278 nir_block *best = late_block;
279 for (nir_block *block = late_block; block != NULL; block = block->imm_dom) {
280 if (state->blocks[block->index].loop_depth <
281 state->blocks[best->index].loop_depth)
282 best = block;
283 else if (block == instr->block)
284 best = block;
285
286 if (block == early_block)
287 break;
288 }
289
290 return best;
291 }
292
293 static void
294 gcm_schedule_late_instr(nir_instr *instr, struct gcm_state *state);
295
296 /** Schedules the instruction associated with the given SSA def late
297 *
298 * This function works by first walking all of the uses of the given SSA
299 * definition, ensuring that they are scheduled, and then computing the LCA
300 * (least common ancestor) of its uses. It then schedules this instruction
301 * as close to the LCA as possible while trying to stay out of loops.
302 */
303 static bool
304 gcm_schedule_late_def(nir_ssa_def *def, void *void_state)
305 {
306 struct gcm_state *state = void_state;
307
308 nir_block *lca = NULL;
309
310 nir_foreach_use(use_src, def) {
311 nir_instr *use_instr = use_src->parent_instr;
312
313 gcm_schedule_late_instr(use_instr, state);
314
315 /* Phi instructions are a bit special. SSA definitions don't have to
316 * dominate the sources of the phi nodes that use them; instead, they
317 * have to dominate the predecessor block corresponding to the phi
318 * source. We handle this by looking through the sources, finding
319 * any that are usingg this SSA def, and using those blocks instead
320 * of the one the phi lives in.
321 */
322 if (use_instr->type == nir_instr_type_phi) {
323 nir_phi_instr *phi = nir_instr_as_phi(use_instr);
324
325 nir_foreach_phi_src(phi_src, phi) {
326 if (phi_src->src.ssa == def)
327 lca = nir_dominance_lca(lca, phi_src->pred);
328 }
329 } else {
330 lca = nir_dominance_lca(lca, use_instr->block);
331 }
332 }
333
334 nir_foreach_if_use(use_src, def) {
335 nir_if *if_stmt = use_src->parent_if;
336
337 /* For if statements, we consider the block to be the one immediately
338 * preceding the if CF node.
339 */
340 nir_block *pred_block =
341 nir_cf_node_as_block(nir_cf_node_prev(&if_stmt->cf_node));
342
343 lca = nir_dominance_lca(lca, pred_block);
344 }
345
346 nir_block *early_block =
347 state->instr_infos[def->parent_instr->index].early_block;
348
349 /* Some instructions may never be used. Flag them and the instruction
350 * placement code will get rid of them for us.
351 */
352 if (lca == NULL) {
353 def->parent_instr->block = NULL;
354 return true;
355 }
356
357 if (def->parent_instr->pass_flags & GCM_INSTR_SCHEDULE_EARLIER_ONLY &&
358 lca != def->parent_instr->block &&
359 nir_block_dominates(def->parent_instr->block, lca)) {
360 lca = def->parent_instr->block;
361 }
362
363 /* We now have the LCA of all of the uses. If our invariants hold,
364 * this is dominated by the block that we chose when scheduling early.
365 * We now walk up the dominance tree and pick the lowest block that is
366 * as far outside loops as we can get.
367 */
368 nir_block *best_block =
369 gcm_choose_block_for_instr(def->parent_instr, early_block, lca, state);
370
371 if (def->parent_instr->block != best_block)
372 state->progress = true;
373
374 def->parent_instr->block = best_block;
375
376 return true;
377 }
378
379 /** Schedules an instruction late
380 *
381 * This function performs a depth-first search starting at the given
382 * instruction and proceeding through its uses to schedule instructions as
383 * late as they can reasonably go in the dominance tree. The instructions
384 * are "scheduled" by updating their instr->block field.
385 *
386 * The name of this function is actually a bit of a misnomer as it doesn't
387 * schedule them "as late as possible" as the paper implies. Instead, it
388 * first finds the lates possible place it can schedule the instruction and
389 * then possibly schedules it earlier than that. The actual location is as
390 * far down the tree as we can go while trying to stay out of loops.
391 */
392 static void
393 gcm_schedule_late_instr(nir_instr *instr, struct gcm_state *state)
394 {
395 if (instr->pass_flags & GCM_INSTR_SCHEDULED_LATE)
396 return;
397
398 instr->pass_flags |= GCM_INSTR_SCHEDULED_LATE;
399
400 /* Pinned instructions are already scheduled so we don't need to do
401 * anything. Also, bailing here keeps us from ever following phi nodes
402 * which can be back-edges.
403 */
404 if (instr->pass_flags & GCM_INSTR_PINNED)
405 return;
406
407 nir_foreach_ssa_def(instr, gcm_schedule_late_def, state);
408 }
409
410 static void
411 gcm_place_instr(nir_instr *instr, struct gcm_state *state);
412
413 static bool
414 gcm_place_instr_def(nir_ssa_def *def, void *state)
415 {
416 nir_foreach_use(use_src, def)
417 gcm_place_instr(use_src->parent_instr, state);
418
419 return false;
420 }
421
422 static bool
423 gcm_replace_def_with_undef(nir_ssa_def *def, void *void_state)
424 {
425 struct gcm_state *state = void_state;
426
427 if (list_is_empty(&def->uses) && list_is_empty(&def->if_uses))
428 return true;
429
430 nir_ssa_undef_instr *undef =
431 nir_ssa_undef_instr_create(state->impl->function->shader,
432 def->num_components, def->bit_size);
433 nir_instr_insert(nir_before_cf_list(&state->impl->body), &undef->instr);
434 nir_ssa_def_rewrite_uses(def, nir_src_for_ssa(&undef->def));
435
436 return true;
437 }
438
439 /** Places an instrution back into the program
440 *
441 * The earlier passes of GCM simply choose blocks for each instruction and
442 * otherwise leave them alone. This pass actually places the instructions
443 * into their chosen blocks.
444 *
445 * To do so, we use a standard post-order depth-first search linearization
446 * algorithm. We walk over the uses of the given instruction and ensure
447 * that they are placed and then place this instruction. Because we are
448 * working on multiple blocks at a time, we keep track of the last inserted
449 * instruction per-block in the state structure's block_info array. When
450 * we insert an instruction in a block we insert it before the last
451 * instruction inserted in that block rather than the last instruction
452 * inserted globally.
453 */
454 static void
455 gcm_place_instr(nir_instr *instr, struct gcm_state *state)
456 {
457 if (instr->pass_flags & GCM_INSTR_PLACED)
458 return;
459
460 instr->pass_flags |= GCM_INSTR_PLACED;
461
462 if (instr->block == NULL) {
463 nir_foreach_ssa_def(instr, gcm_replace_def_with_undef, state);
464 nir_instr_remove(instr);
465 return;
466 }
467
468 /* Phi nodes are our once source of back-edges. Since right now we are
469 * only doing scheduling within blocks, we don't need to worry about
470 * them since they are always at the top. Just skip them completely.
471 */
472 if (instr->type == nir_instr_type_phi) {
473 assert(instr->pass_flags & GCM_INSTR_PINNED);
474 return;
475 }
476
477 nir_foreach_ssa_def(instr, gcm_place_instr_def, state);
478
479 if (instr->pass_flags & GCM_INSTR_PINNED) {
480 /* Pinned instructions have an implicit dependence on the pinned
481 * instructions that come after them in the block. Since the pinned
482 * instructions will naturally "chain" together, we only need to
483 * explicitly visit one of them.
484 */
485 for (nir_instr *after = nir_instr_next(instr);
486 after;
487 after = nir_instr_next(after)) {
488 if (after->pass_flags & GCM_INSTR_PINNED) {
489 gcm_place_instr(after, state);
490 break;
491 }
492 }
493 }
494
495 struct gcm_block_info *block_info = &state->blocks[instr->block->index];
496 if (!(instr->pass_flags & GCM_INSTR_PINNED)) {
497 exec_node_remove(&instr->node);
498
499 if (block_info->last_instr) {
500 exec_node_insert_node_before(&block_info->last_instr->node,
501 &instr->node);
502 } else {
503 /* Schedule it at the end of the block */
504 nir_instr *jump_instr = nir_block_last_instr(instr->block);
505 if (jump_instr && jump_instr->type == nir_instr_type_jump) {
506 exec_node_insert_node_before(&jump_instr->node, &instr->node);
507 } else {
508 exec_list_push_tail(&instr->block->instr_list, &instr->node);
509 }
510 }
511 }
512
513 block_info->last_instr = instr;
514 }
515
516 static bool
517 opt_gcm_impl(nir_function_impl *impl, bool value_number)
518 {
519 nir_metadata_require(impl, nir_metadata_block_index |
520 nir_metadata_dominance);
521
522 struct gcm_state state;
523
524 state.impl = impl;
525 state.instr = NULL;
526 state.progress = false;
527 exec_list_make_empty(&state.instrs);
528 state.blocks = rzalloc_array(NULL, struct gcm_block_info, impl->num_blocks);
529
530 gcm_build_block_info(&impl->body, &state, 0);
531
532 gcm_pin_instructions(impl, &state);
533
534 state.instr_infos =
535 rzalloc_array(NULL, struct gcm_instr_info, state.num_instrs);
536
537 if (value_number) {
538 struct set *gvn_set = nir_instr_set_create(NULL);
539 foreach_list_typed_safe(nir_instr, instr, node, &state.instrs) {
540 if (nir_instr_set_add_or_rewrite(gvn_set, instr)) {
541 nir_instr_remove(instr);
542 state.progress = true;
543 }
544 }
545 nir_instr_set_destroy(gvn_set);
546 }
547
548 foreach_list_typed(nir_instr, instr, node, &state.instrs)
549 gcm_schedule_early_instr(instr, &state);
550
551 foreach_list_typed(nir_instr, instr, node, &state.instrs)
552 gcm_schedule_late_instr(instr, &state);
553
554 while (!exec_list_is_empty(&state.instrs)) {
555 nir_instr *instr = exec_node_data(nir_instr,
556 state.instrs.tail_sentinel.prev, node);
557 gcm_place_instr(instr, &state);
558 }
559
560 ralloc_free(state.blocks);
561 ralloc_free(state.instr_infos);
562
563 nir_metadata_preserve(impl, nir_metadata_block_index |
564 nir_metadata_dominance);
565
566 return state.progress;
567 }
568
569 bool
570 nir_opt_gcm(nir_shader *shader, bool value_number)
571 {
572 bool progress = false;
573
574 nir_foreach_function(function, shader) {
575 if (function->impl)
576 progress |= opt_gcm_impl(function->impl, value_number);
577 }
578
579 return progress;
580 }