Lines Matching refs:child_bb
619 ir_block *child_bb = &blocks[child];
621 while (child_bb->dom_next_child > 0 && b > child_bb->dom_next_child) {
622 child = child_bb->dom_next_child;
623 child_bb = &blocks[child];
625 bb->dom_next_child = child_bb->dom_next_child;
626 child_bb->dom_next_child = b;
715 ir_block *child_bb = &blocks[child]; in ir_build_dominators_tree() local
717 while (child_bb->dom_next_child > 0 && b > child_bb->dom_next_child) { in ir_build_dominators_tree()
718 child = child_bb->dom_next_child; in ir_build_dominators_tree()
719 child_bb = &blocks[child]; in ir_build_dominators_tree()
721 bb->dom_next_child = child_bb->dom_next_child; in ir_build_dominators_tree()
722 child_bb->dom_next_child = b; in ir_build_dominators_tree()
850 ir_block *child_bb = &blocks[child]; in ir_build_dominators_tree_iterative() local
852 while (child_bb->dom_next_child > 0 && b > child_bb->dom_next_child) { in ir_build_dominators_tree_iterative()
853 child = child_bb->dom_next_child; in ir_build_dominators_tree_iterative()
854 child_bb = &blocks[child]; in ir_build_dominators_tree_iterative()
856 bb->dom_next_child = child_bb->dom_next_child; in ir_build_dominators_tree_iterative()
857 child_bb->dom_next_child = b; in ir_build_dominators_tree_iterative()