nir: move to compiler/
[mesa.git] / src / compiler / nir / nir_control_flow.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 * Connor Abbott (cwabbott0@gmail.com)
25 *
26 */
27
28 #include "nir_control_flow_private.h"
29
30 /**
31 * \name Control flow modification
32 *
33 * These functions modify the control flow tree while keeping the control flow
34 * graph up-to-date. The invariants respected are:
35 * 1. Each then statement, else statement, or loop body must have at least one
36 * control flow node.
37 * 2. Each if-statement and loop must have one basic block before it and one
38 * after.
39 * 3. Two basic blocks cannot be directly next to each other.
40 * 4. If a basic block has a jump instruction, there must be only one and it
41 * must be at the end of the block.
42 * 5. The CFG must always be connected - this means that we must insert a fake
43 * CFG edge for loops with no break statement.
44 *
45 * The purpose of the second one is so that we have places to insert code during
46 * GCM, as well as eliminating the possibility of critical edges.
47 */
48 /*@{*/
49
50 static bool
51 block_ends_in_jump(nir_block *block)
52 {
53 return !exec_list_is_empty(&block->instr_list) &&
54 nir_block_last_instr(block)->type == nir_instr_type_jump;
55 }
56
57 static inline void
58 block_add_pred(nir_block *block, nir_block *pred)
59 {
60 _mesa_set_add(block->predecessors, pred);
61 }
62
63 static inline void
64 block_remove_pred(nir_block *block, nir_block *pred)
65 {
66 struct set_entry *entry = _mesa_set_search(block->predecessors, pred);
67
68 assert(entry);
69
70 _mesa_set_remove(block->predecessors, entry);
71 }
72
73 static void
74 link_blocks(nir_block *pred, nir_block *succ1, nir_block *succ2)
75 {
76 pred->successors[0] = succ1;
77 if (succ1 != NULL)
78 block_add_pred(succ1, pred);
79
80 pred->successors[1] = succ2;
81 if (succ2 != NULL)
82 block_add_pred(succ2, pred);
83 }
84
85 static void
86 unlink_blocks(nir_block *pred, nir_block *succ)
87 {
88 if (pred->successors[0] == succ) {
89 pred->successors[0] = pred->successors[1];
90 pred->successors[1] = NULL;
91 } else {
92 assert(pred->successors[1] == succ);
93 pred->successors[1] = NULL;
94 }
95
96 block_remove_pred(succ, pred);
97 }
98
99 static void
100 unlink_block_successors(nir_block *block)
101 {
102 if (block->successors[1] != NULL)
103 unlink_blocks(block, block->successors[1]);
104 if (block->successors[0] != NULL)
105 unlink_blocks(block, block->successors[0]);
106 }
107
108 static void
109 link_non_block_to_block(nir_cf_node *node, nir_block *block)
110 {
111 if (node->type == nir_cf_node_if) {
112 /*
113 * We're trying to link an if to a block after it; this just means linking
114 * the last block of the then and else branches.
115 */
116
117 nir_if *if_stmt = nir_cf_node_as_if(node);
118
119 nir_cf_node *last_then = nir_if_last_then_node(if_stmt);
120 assert(last_then->type == nir_cf_node_block);
121 nir_block *last_then_block = nir_cf_node_as_block(last_then);
122
123 nir_cf_node *last_else = nir_if_last_else_node(if_stmt);
124 assert(last_else->type == nir_cf_node_block);
125 nir_block *last_else_block = nir_cf_node_as_block(last_else);
126
127 if (!block_ends_in_jump(last_then_block)) {
128 unlink_block_successors(last_then_block);
129 link_blocks(last_then_block, block, NULL);
130 }
131
132 if (!block_ends_in_jump(last_else_block)) {
133 unlink_block_successors(last_else_block);
134 link_blocks(last_else_block, block, NULL);
135 }
136 } else {
137 assert(node->type == nir_cf_node_loop);
138
139 /*
140 * We can only get to this codepath if we're inserting a new loop, or
141 * at least a loop with no break statements; we can't insert break
142 * statements into a loop when we haven't inserted it into the CFG
143 * because we wouldn't know which block comes after the loop
144 * and therefore, which block should be the successor of the block with
145 * the break). Therefore, we need to insert a fake edge (see invariant
146 * #5).
147 */
148
149 nir_loop *loop = nir_cf_node_as_loop(node);
150
151 nir_cf_node *last = nir_loop_last_cf_node(loop);
152 assert(last->type == nir_cf_node_block);
153 nir_block *last_block = nir_cf_node_as_block(last);
154
155 last_block->successors[1] = block;
156 block_add_pred(block, last_block);
157 }
158 }
159
160 static void
161 link_block_to_non_block(nir_block *block, nir_cf_node *node)
162 {
163 if (node->type == nir_cf_node_if) {
164 /*
165 * We're trying to link a block to an if after it; this just means linking
166 * the block to the first block of the then and else branches.
167 */
168
169 nir_if *if_stmt = nir_cf_node_as_if(node);
170
171 nir_cf_node *first_then = nir_if_first_then_node(if_stmt);
172 assert(first_then->type == nir_cf_node_block);
173 nir_block *first_then_block = nir_cf_node_as_block(first_then);
174
175 nir_cf_node *first_else = nir_if_first_else_node(if_stmt);
176 assert(first_else->type == nir_cf_node_block);
177 nir_block *first_else_block = nir_cf_node_as_block(first_else);
178
179 unlink_block_successors(block);
180 link_blocks(block, first_then_block, first_else_block);
181 } else {
182 /*
183 * For similar reasons as the corresponding case in
184 * link_non_block_to_block(), don't worry about if the loop header has
185 * any predecessors that need to be unlinked.
186 */
187
188 assert(node->type == nir_cf_node_loop);
189
190 nir_loop *loop = nir_cf_node_as_loop(node);
191
192 nir_cf_node *loop_header = nir_loop_first_cf_node(loop);
193 assert(loop_header->type == nir_cf_node_block);
194 nir_block *loop_header_block = nir_cf_node_as_block(loop_header);
195
196 unlink_block_successors(block);
197 link_blocks(block, loop_header_block, NULL);
198 }
199
200 }
201
202 /**
203 * Replace a block's successor with a different one.
204 */
205 static void
206 replace_successor(nir_block *block, nir_block *old_succ, nir_block *new_succ)
207 {
208 if (block->successors[0] == old_succ) {
209 block->successors[0] = new_succ;
210 } else {
211 assert(block->successors[1] == old_succ);
212 block->successors[1] = new_succ;
213 }
214
215 block_remove_pred(old_succ, block);
216 block_add_pred(new_succ, block);
217 }
218
219 /**
220 * Takes a basic block and inserts a new empty basic block before it, making its
221 * predecessors point to the new block. This essentially splits the block into
222 * an empty header and a body so that another non-block CF node can be inserted
223 * between the two. Note that this does *not* link the two basic blocks, so
224 * some kind of cleanup *must* be performed after this call.
225 */
226
227 static nir_block *
228 split_block_beginning(nir_block *block)
229 {
230 nir_block *new_block = nir_block_create(ralloc_parent(block));
231 new_block->cf_node.parent = block->cf_node.parent;
232 exec_node_insert_node_before(&block->cf_node.node, &new_block->cf_node.node);
233
234 struct set_entry *entry;
235 set_foreach(block->predecessors, entry) {
236 nir_block *pred = (nir_block *) entry->key;
237 replace_successor(pred, block, new_block);
238 }
239
240 /* Any phi nodes must stay part of the new block, or else their
241 * sourcse will be messed up. This will reverse the order of the phi's, but
242 * order shouldn't matter.
243 */
244 nir_foreach_instr_safe(block, instr) {
245 if (instr->type != nir_instr_type_phi)
246 break;
247
248 exec_node_remove(&instr->node);
249 instr->block = new_block;
250 exec_list_push_head(&new_block->instr_list, &instr->node);
251 }
252
253 return new_block;
254 }
255
256 static void
257 rewrite_phi_preds(nir_block *block, nir_block *old_pred, nir_block *new_pred)
258 {
259 nir_foreach_instr_safe(block, instr) {
260 if (instr->type != nir_instr_type_phi)
261 break;
262
263 nir_phi_instr *phi = nir_instr_as_phi(instr);
264 nir_foreach_phi_src(phi, src) {
265 if (src->pred == old_pred) {
266 src->pred = new_pred;
267 break;
268 }
269 }
270 }
271 }
272
273 static void
274 insert_phi_undef(nir_block *block, nir_block *pred)
275 {
276 nir_function_impl *impl = nir_cf_node_get_function(&block->cf_node);
277 nir_foreach_instr(block, instr) {
278 if (instr->type != nir_instr_type_phi)
279 break;
280
281 nir_phi_instr *phi = nir_instr_as_phi(instr);
282 nir_ssa_undef_instr *undef =
283 nir_ssa_undef_instr_create(ralloc_parent(phi),
284 phi->dest.ssa.num_components);
285 nir_instr_insert_before_cf_list(&impl->body, &undef->instr);
286 nir_phi_src *src = ralloc(phi, nir_phi_src);
287 src->pred = pred;
288 src->src.parent_instr = &phi->instr;
289 src->src.is_ssa = true;
290 src->src.ssa = &undef->def;
291
292 list_addtail(&src->src.use_link, &undef->def.uses);
293
294 exec_list_push_tail(&phi->srcs, &src->node);
295 }
296 }
297
298 /**
299 * Moves the successors of source to the successors of dest, leaving both
300 * successors of source NULL.
301 */
302
303 static void
304 move_successors(nir_block *source, nir_block *dest)
305 {
306 nir_block *succ1 = source->successors[0];
307 nir_block *succ2 = source->successors[1];
308
309 if (succ1) {
310 unlink_blocks(source, succ1);
311 rewrite_phi_preds(succ1, source, dest);
312 }
313
314 if (succ2) {
315 unlink_blocks(source, succ2);
316 rewrite_phi_preds(succ2, source, dest);
317 }
318
319 unlink_block_successors(dest);
320 link_blocks(dest, succ1, succ2);
321 }
322
323 /* Given a basic block with no successors that has been inserted into the
324 * control flow tree, gives it the successors it would normally have assuming
325 * it doesn't end in a jump instruction. Also inserts phi sources with undefs
326 * if necessary.
327 */
328 static void
329 block_add_normal_succs(nir_block *block)
330 {
331 if (exec_node_is_tail_sentinel(block->cf_node.node.next)) {
332 nir_cf_node *parent = block->cf_node.parent;
333 if (parent->type == nir_cf_node_if) {
334 nir_cf_node *next = nir_cf_node_next(parent);
335 assert(next->type == nir_cf_node_block);
336 nir_block *next_block = nir_cf_node_as_block(next);
337
338 link_blocks(block, next_block, NULL);
339 } else {
340 assert(parent->type == nir_cf_node_loop);
341 nir_loop *loop = nir_cf_node_as_loop(parent);
342
343 nir_cf_node *head = nir_loop_first_cf_node(loop);
344 assert(head->type == nir_cf_node_block);
345 nir_block *head_block = nir_cf_node_as_block(head);
346
347 link_blocks(block, head_block, NULL);
348 insert_phi_undef(head_block, block);
349 }
350 } else {
351 nir_cf_node *next = nir_cf_node_next(&block->cf_node);
352 if (next->type == nir_cf_node_if) {
353 nir_if *next_if = nir_cf_node_as_if(next);
354
355 nir_cf_node *first_then = nir_if_first_then_node(next_if);
356 assert(first_then->type == nir_cf_node_block);
357 nir_block *first_then_block = nir_cf_node_as_block(first_then);
358
359 nir_cf_node *first_else = nir_if_first_else_node(next_if);
360 assert(first_else->type == nir_cf_node_block);
361 nir_block *first_else_block = nir_cf_node_as_block(first_else);
362
363 link_blocks(block, first_then_block, first_else_block);
364 } else {
365 assert(next->type == nir_cf_node_loop);
366 nir_loop *next_loop = nir_cf_node_as_loop(next);
367
368 nir_cf_node *first = nir_loop_first_cf_node(next_loop);
369 assert(first->type == nir_cf_node_block);
370 nir_block *first_block = nir_cf_node_as_block(first);
371
372 link_blocks(block, first_block, NULL);
373 insert_phi_undef(first_block, block);
374 }
375 }
376 }
377
378 static nir_block *
379 split_block_end(nir_block *block)
380 {
381 nir_block *new_block = nir_block_create(ralloc_parent(block));
382 new_block->cf_node.parent = block->cf_node.parent;
383 exec_node_insert_after(&block->cf_node.node, &new_block->cf_node.node);
384
385 if (block_ends_in_jump(block)) {
386 /* Figure out what successor block would've had if it didn't have a jump
387 * instruction, and make new_block have that successor.
388 */
389 block_add_normal_succs(new_block);
390 } else {
391 move_successors(block, new_block);
392 }
393
394 return new_block;
395 }
396
397 static nir_block *
398 split_block_before_instr(nir_instr *instr)
399 {
400 assert(instr->type != nir_instr_type_phi);
401 nir_block *new_block = split_block_beginning(instr->block);
402
403 nir_foreach_instr_safe(instr->block, cur_instr) {
404 if (cur_instr == instr)
405 break;
406
407 exec_node_remove(&cur_instr->node);
408 cur_instr->block = new_block;
409 exec_list_push_tail(&new_block->instr_list, &cur_instr->node);
410 }
411
412 return new_block;
413 }
414
415 /* Splits a basic block at the point specified by the cursor. The "before" and
416 * "after" arguments are filled out with the blocks resulting from the split
417 * if non-NULL. Note that the "beginning" of the block is actually interpreted
418 * as before the first non-phi instruction, and it's illegal to split a block
419 * before a phi instruction.
420 */
421
422 static void
423 split_block_cursor(nir_cursor cursor,
424 nir_block **_before, nir_block **_after)
425 {
426 nir_block *before, *after;
427 switch (cursor.option) {
428 case nir_cursor_before_block:
429 after = cursor.block;
430 before = split_block_beginning(cursor.block);
431 break;
432
433 case nir_cursor_after_block:
434 before = cursor.block;
435 after = split_block_end(cursor.block);
436 break;
437
438 case nir_cursor_before_instr:
439 after = cursor.instr->block;
440 before = split_block_before_instr(cursor.instr);
441 break;
442
443 case nir_cursor_after_instr:
444 /* We lower this to split_block_before_instr() so that we can keep the
445 * after-a-jump-instr case contained to split_block_end().
446 */
447 if (nir_instr_is_last(cursor.instr)) {
448 before = cursor.instr->block;
449 after = split_block_end(cursor.instr->block);
450 } else {
451 after = cursor.instr->block;
452 before = split_block_before_instr(nir_instr_next(cursor.instr));
453 }
454 break;
455
456 default:
457 unreachable("not reached");
458 }
459
460 if (_before)
461 *_before = before;
462 if (_after)
463 *_after = after;
464 }
465
466 /**
467 * Inserts a non-basic block between two basic blocks and links them together.
468 */
469
470 static void
471 insert_non_block(nir_block *before, nir_cf_node *node, nir_block *after)
472 {
473 node->parent = before->cf_node.parent;
474 exec_node_insert_after(&before->cf_node.node, &node->node);
475 link_block_to_non_block(before, node);
476 link_non_block_to_block(node, after);
477 }
478
479 /* walk up the control flow tree to find the innermost enclosed loop */
480 static nir_loop *
481 nearest_loop(nir_cf_node *node)
482 {
483 while (node->type != nir_cf_node_loop) {
484 node = node->parent;
485 }
486
487 return nir_cf_node_as_loop(node);
488 }
489
490 /*
491 * update the CFG after a jump instruction has been added to the end of a block
492 */
493
494 void
495 nir_handle_add_jump(nir_block *block)
496 {
497 nir_instr *instr = nir_block_last_instr(block);
498 nir_jump_instr *jump_instr = nir_instr_as_jump(instr);
499
500 unlink_block_successors(block);
501
502 nir_function_impl *impl = nir_cf_node_get_function(&block->cf_node);
503 nir_metadata_preserve(impl, nir_metadata_none);
504
505 if (jump_instr->type == nir_jump_break ||
506 jump_instr->type == nir_jump_continue) {
507 nir_loop *loop = nearest_loop(&block->cf_node);
508
509 if (jump_instr->type == nir_jump_continue) {
510 nir_cf_node *first_node = nir_loop_first_cf_node(loop);
511 assert(first_node->type == nir_cf_node_block);
512 nir_block *first_block = nir_cf_node_as_block(first_node);
513 link_blocks(block, first_block, NULL);
514 } else {
515 nir_cf_node *after = nir_cf_node_next(&loop->cf_node);
516 assert(after->type == nir_cf_node_block);
517 nir_block *after_block = nir_cf_node_as_block(after);
518 link_blocks(block, after_block, NULL);
519
520 /* If we inserted a fake link, remove it */
521 nir_cf_node *last = nir_loop_last_cf_node(loop);
522 assert(last->type == nir_cf_node_block);
523 nir_block *last_block = nir_cf_node_as_block(last);
524 if (last_block->successors[1] != NULL)
525 unlink_blocks(last_block, after_block);
526 }
527 } else {
528 assert(jump_instr->type == nir_jump_return);
529 link_blocks(block, impl->end_block, NULL);
530 }
531 }
532
533 static void
534 remove_phi_src(nir_block *block, nir_block *pred)
535 {
536 nir_foreach_instr(block, instr) {
537 if (instr->type != nir_instr_type_phi)
538 break;
539
540 nir_phi_instr *phi = nir_instr_as_phi(instr);
541 nir_foreach_phi_src_safe(phi, src) {
542 if (src->pred == pred) {
543 list_del(&src->src.use_link);
544 exec_node_remove(&src->node);
545 }
546 }
547 }
548 }
549
550 /* Removes the successor of a block with a jump, and inserts a fake edge for
551 * infinite loops. Note that the jump to be eliminated may be free-floating.
552 */
553
554 static void
555 unlink_jump(nir_block *block, nir_jump_type type, bool add_normal_successors)
556 {
557 nir_block *next = block->successors[0];
558
559 if (block->successors[0])
560 remove_phi_src(block->successors[0], block);
561 if (block->successors[1])
562 remove_phi_src(block->successors[1], block);
563
564 unlink_block_successors(block);
565 if (add_normal_successors)
566 block_add_normal_succs(block);
567
568 /* If we've just removed a break, and the block we were jumping to (after
569 * the loop) now has zero predecessors, we've created a new infinite loop.
570 *
571 * NIR doesn't allow blocks (other than the start block) to have zero
572 * predecessors. In particular, dominance assumes all blocks are reachable.
573 * So, we insert a "fake link" by making successors[1] point after the loop.
574 *
575 * Note that we have to do this after unlinking/recreating the block's
576 * successors. If we removed a "break" at the end of the loop, then
577 * block == last_block, so block->successors[0] would already be "next",
578 * and adding a fake link would create two identical successors. Doing
579 * this afterward works, as we'll have changed block->successors[0] to
580 * be the top of the loop.
581 */
582 if (type == nir_jump_break && next->predecessors->entries == 0) {
583 nir_loop *loop =
584 nir_cf_node_as_loop(nir_cf_node_prev(&next->cf_node));
585
586 /* insert fake link */
587 nir_cf_node *last = nir_loop_last_cf_node(loop);
588 assert(last->type == nir_cf_node_block);
589 nir_block *last_block = nir_cf_node_as_block(last);
590
591 last_block->successors[1] = next;
592 block_add_pred(next, last_block);
593 }
594 }
595
596 void
597 nir_handle_remove_jump(nir_block *block, nir_jump_type type)
598 {
599 unlink_jump(block, type, true);
600
601 nir_function_impl *impl = nir_cf_node_get_function(&block->cf_node);
602 nir_metadata_preserve(impl, nir_metadata_none);
603 }
604
605 static void
606 update_if_uses(nir_cf_node *node)
607 {
608 if (node->type != nir_cf_node_if)
609 return;
610
611 nir_if *if_stmt = nir_cf_node_as_if(node);
612
613 if_stmt->condition.parent_if = if_stmt;
614 if (if_stmt->condition.is_ssa) {
615 list_addtail(&if_stmt->condition.use_link,
616 &if_stmt->condition.ssa->if_uses);
617 } else {
618 list_addtail(&if_stmt->condition.use_link,
619 &if_stmt->condition.reg.reg->if_uses);
620 }
621 }
622
623 /**
624 * Stitch two basic blocks together into one. The aggregate must have the same
625 * predecessors as the first and the same successors as the second.
626 */
627
628 static void
629 stitch_blocks(nir_block *before, nir_block *after)
630 {
631 /*
632 * We move after into before, so we have to deal with up to 2 successors vs.
633 * possibly a large number of predecessors.
634 *
635 * TODO: special case when before is empty and after isn't?
636 */
637
638 if (block_ends_in_jump(before)) {
639 assert(exec_list_is_empty(&after->instr_list));
640 if (after->successors[0])
641 remove_phi_src(after->successors[0], after);
642 if (after->successors[1])
643 remove_phi_src(after->successors[1], after);
644 unlink_block_successors(after);
645 exec_node_remove(&after->cf_node.node);
646 } else {
647 move_successors(after, before);
648
649 foreach_list_typed(nir_instr, instr, node, &after->instr_list) {
650 instr->block = before;
651 }
652
653 exec_list_append(&before->instr_list, &after->instr_list);
654 exec_node_remove(&after->cf_node.node);
655 }
656 }
657
658 void
659 nir_cf_node_insert(nir_cursor cursor, nir_cf_node *node)
660 {
661 nir_block *before, *after;
662
663 split_block_cursor(cursor, &before, &after);
664
665 if (node->type == nir_cf_node_block) {
666 nir_block *block = nir_cf_node_as_block(node);
667 exec_node_insert_after(&before->cf_node.node, &block->cf_node.node);
668 block->cf_node.parent = before->cf_node.parent;
669 /* stitch_blocks() assumes that any block that ends with a jump has
670 * already been setup with the correct successors, so we need to set
671 * up jumps here as the block is being inserted.
672 */
673 if (block_ends_in_jump(block))
674 nir_handle_add_jump(block);
675
676 stitch_blocks(block, after);
677 stitch_blocks(before, block);
678 } else {
679 update_if_uses(node);
680 insert_non_block(before, node, after);
681 }
682 }
683
684 static bool
685 replace_ssa_def_uses(nir_ssa_def *def, void *void_impl)
686 {
687 nir_function_impl *impl = void_impl;
688 void *mem_ctx = ralloc_parent(impl);
689
690 nir_ssa_undef_instr *undef =
691 nir_ssa_undef_instr_create(mem_ctx, def->num_components);
692 nir_instr_insert_before_cf_list(&impl->body, &undef->instr);
693 nir_ssa_def_rewrite_uses(def, nir_src_for_ssa(&undef->def));
694 return true;
695 }
696
697 static void
698 cleanup_cf_node(nir_cf_node *node, nir_function_impl *impl)
699 {
700 switch (node->type) {
701 case nir_cf_node_block: {
702 nir_block *block = nir_cf_node_as_block(node);
703 /* We need to walk the instructions and clean up defs/uses */
704 nir_foreach_instr_safe(block, instr) {
705 if (instr->type == nir_instr_type_jump) {
706 nir_jump_type jump_type = nir_instr_as_jump(instr)->type;
707 unlink_jump(block, jump_type, false);
708 } else {
709 nir_foreach_ssa_def(instr, replace_ssa_def_uses, impl);
710 nir_instr_remove(instr);
711 }
712 }
713 break;
714 }
715
716 case nir_cf_node_if: {
717 nir_if *if_stmt = nir_cf_node_as_if(node);
718 foreach_list_typed(nir_cf_node, child, node, &if_stmt->then_list)
719 cleanup_cf_node(child, impl);
720 foreach_list_typed(nir_cf_node, child, node, &if_stmt->else_list)
721 cleanup_cf_node(child, impl);
722
723 list_del(&if_stmt->condition.use_link);
724 break;
725 }
726
727 case nir_cf_node_loop: {
728 nir_loop *loop = nir_cf_node_as_loop(node);
729 foreach_list_typed(nir_cf_node, child, node, &loop->body)
730 cleanup_cf_node(child, impl);
731 break;
732 }
733 case nir_cf_node_function: {
734 nir_function_impl *impl = nir_cf_node_as_function(node);
735 foreach_list_typed(nir_cf_node, child, node, &impl->body)
736 cleanup_cf_node(child, impl);
737 break;
738 }
739 default:
740 unreachable("Invalid CF node type");
741 }
742 }
743
744 void
745 nir_cf_extract(nir_cf_list *extracted, nir_cursor begin, nir_cursor end)
746 {
747 nir_block *block_begin, *block_end, *block_before, *block_after;
748
749 /* In the case where begin points to an instruction in some basic block and
750 * end points to the end of the same basic block, we rely on the fact that
751 * splitting on an instruction moves earlier instructions into a new basic
752 * block. If the later instructions were moved instead, then the end cursor
753 * would be pointing to the same place that begin used to point to, which
754 * is obviously not what we want.
755 */
756 split_block_cursor(begin, &block_before, &block_begin);
757 split_block_cursor(end, &block_end, &block_after);
758
759 extracted->impl = nir_cf_node_get_function(&block_begin->cf_node);
760 exec_list_make_empty(&extracted->list);
761
762 /* Dominance and other block-related information is toast. */
763 nir_metadata_preserve(extracted->impl, nir_metadata_none);
764
765 nir_cf_node *cf_node = &block_begin->cf_node;
766 nir_cf_node *cf_node_end = &block_end->cf_node;
767 while (true) {
768 nir_cf_node *next = nir_cf_node_next(cf_node);
769
770 exec_node_remove(&cf_node->node);
771 cf_node->parent = NULL;
772 exec_list_push_tail(&extracted->list, &cf_node->node);
773
774 if (cf_node == cf_node_end)
775 break;
776
777 cf_node = next;
778 }
779
780 stitch_blocks(block_before, block_after);
781 }
782
783 void
784 nir_cf_reinsert(nir_cf_list *cf_list, nir_cursor cursor)
785 {
786 nir_block *before, *after;
787
788 split_block_cursor(cursor, &before, &after);
789
790 foreach_list_typed_safe(nir_cf_node, node, node, &cf_list->list) {
791 exec_node_remove(&node->node);
792 node->parent = before->cf_node.parent;
793 exec_node_insert_node_before(&after->cf_node.node, &node->node);
794 }
795
796 stitch_blocks(before,
797 nir_cf_node_as_block(nir_cf_node_next(&before->cf_node)));
798 stitch_blocks(nir_cf_node_as_block(nir_cf_node_prev(&after->cf_node)),
799 after);
800 }
801
802 void
803 nir_cf_delete(nir_cf_list *cf_list)
804 {
805 foreach_list_typed(nir_cf_node, node, node, &cf_list->list) {
806 cleanup_cf_node(node, cf_list->impl);
807 }
808 }