1 /* Control flow graph analysis code for GNU compiler.
2 Copyright (C) 1987-2024 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file contains various simple utilities to analyze the CFG. */
24 #include "coretypes.h"
30 #include "diagnostic.h"
33 /* Store the data structures necessary for depth-first search. */
34 class depth_first_search
37 depth_first_search ();
39 basic_block
execute (basic_block
);
40 void add_bb (basic_block
);
43 /* stack for backtracking during the algorithm */
44 auto_vec
<basic_block
, 20> m_stack
;
46 /* record of basic blocks already seen by depth-first search */
47 auto_sbitmap m_visited_blocks
;
51 /* Mark the back edges in DFS traversal.
52 Return nonzero if a loop (natural or otherwise) is present.
53 Inspired by Depth_First_Search_PP described in:
55 Advanced Compiler Design and Implementation
59 and heavily borrowed from pre_and_rev_post_order_compute. */
62 mark_dfs_back_edges (struct function
*fun
)
70 /* Allocate the preorder and postorder number arrays. */
71 pre
= XCNEWVEC (int, last_basic_block_for_fn (fun
));
72 post
= XCNEWVEC (int, last_basic_block_for_fn (fun
));
74 /* Allocate stack for back-tracking up CFG. */
75 auto_vec
<edge_iterator
, 20> stack (n_basic_blocks_for_fn (fun
) + 1);
77 /* Allocate bitmap to track nodes that have been visited. */
78 auto_sbitmap
visited (last_basic_block_for_fn (fun
));
80 /* None of the nodes in the CFG have been visited yet. */
81 bitmap_clear (visited
);
83 /* Push the first edge on to the stack. */
84 stack
.quick_push (ei_start (ENTRY_BLOCK_PTR_FOR_FN (fun
)->succs
));
86 while (!stack
.is_empty ())
91 /* Look at the edge on the top of the stack. */
92 edge_iterator ei
= stack
.last ();
93 src
= ei_edge (ei
)->src
;
94 dest
= ei_edge (ei
)->dest
;
95 ei_edge (ei
)->flags
&= ~EDGE_DFS_BACK
;
97 /* Check if the edge destination has been visited yet. */
98 if (dest
!= EXIT_BLOCK_PTR_FOR_FN (fun
) && ! bitmap_bit_p (visited
,
101 /* Mark that we have visited the destination. */
102 bitmap_set_bit (visited
, dest
->index
);
104 pre
[dest
->index
] = prenum
++;
105 if (EDGE_COUNT (dest
->succs
) > 0)
107 /* Since the DEST node has been visited for the first
108 time, check its successors. */
109 stack
.quick_push (ei_start (dest
->succs
));
112 post
[dest
->index
] = postnum
++;
116 if (dest
!= EXIT_BLOCK_PTR_FOR_FN (fun
)
117 && src
!= ENTRY_BLOCK_PTR_FOR_FN (fun
)
118 && pre
[src
->index
] >= pre
[dest
->index
]
119 && post
[dest
->index
] == 0)
120 ei_edge (ei
)->flags
|= EDGE_DFS_BACK
, found
= true;
122 if (ei_one_before_end_p (ei
)
123 && src
!= ENTRY_BLOCK_PTR_FOR_FN (fun
))
124 post
[src
->index
] = postnum
++;
126 if (!ei_one_before_end_p (ei
))
127 ei_next (&stack
.last ());
140 mark_dfs_back_edges (void)
142 return mark_dfs_back_edges (cfun
);
145 /* Return TRUE if EDGE_DFS_BACK is up to date for CFUN. */
148 verify_marked_backedges (struct function
*fun
)
150 auto_edge_flag
saved_dfs_back (fun
);
155 // Save all the back edges...
156 FOR_EACH_BB_FN (bb
, fun
)
157 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
159 if (e
->flags
& EDGE_DFS_BACK
)
161 e
->flags
|= saved_dfs_back
;
162 e
->flags
&= ~EDGE_DFS_BACK
;
166 // ...and verify that recalculating them agrees with the saved ones.
167 mark_dfs_back_edges ();
168 FOR_EACH_BB_FN (bb
, fun
)
169 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
171 if (((e
->flags
& EDGE_DFS_BACK
) != 0)
172 != ((e
->flags
& saved_dfs_back
) != 0))
173 internal_error ("%<verify_marked_backedges%> failed");
175 e
->flags
&= ~saved_dfs_back
;
179 /* Find unreachable blocks. An unreachable block will have 0 in
180 the reachable bit in block->flags. A nonzero value indicates the
181 block is reachable. */
184 find_unreachable_blocks (void)
188 basic_block
*tos
, *worklist
, bb
;
190 tos
= worklist
= XNEWVEC (basic_block
, n_basic_blocks_for_fn (cfun
));
192 /* Clear all the reachability flags. */
194 FOR_EACH_BB_FN (bb
, cfun
)
195 bb
->flags
&= ~BB_REACHABLE
;
197 /* Add our starting points to the worklist. Almost always there will
198 be only one. It isn't inconceivable that we might one day directly
199 support Fortran alternate entry points. */
201 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR_FOR_FN (cfun
)->succs
)
205 /* Mark the block reachable. */
206 e
->dest
->flags
|= BB_REACHABLE
;
209 /* Iterate: find everything reachable from what we've already seen. */
211 while (tos
!= worklist
)
213 basic_block b
= *--tos
;
215 FOR_EACH_EDGE (e
, ei
, b
->succs
)
217 basic_block dest
= e
->dest
;
219 if (!(dest
->flags
& BB_REACHABLE
))
222 dest
->flags
|= BB_REACHABLE
;
230 /* Verify that there are no unreachable blocks in the current function. */
233 verify_no_unreachable_blocks (void)
235 find_unreachable_blocks ();
238 FOR_EACH_BB_FN (bb
, cfun
)
239 gcc_assert ((bb
->flags
& BB_REACHABLE
) != 0);
243 /* Functions to access an edge list with a vector representation.
244 Enough data is kept such that given an index number, the
245 pred and succ that edge represents can be determined, or
246 given a pred and a succ, its index number can be returned.
247 This allows algorithms which consume a lot of memory to
248 represent the normally full matrix of edge (pred,succ) with a
249 single indexed vector, edge (EDGE_INDEX (pred, succ)), with no
250 wasted space in the client code due to sparse flow graphs. */
252 /* This functions initializes the edge list. Basically the entire
253 flowgraph is processed, and all edges are assigned a number,
254 and the data structure is filled in. */
257 create_edge_list (void)
259 struct edge_list
*elist
;
265 /* Determine the number of edges in the flow graph by counting successor
266 edges on each basic block. */
268 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
269 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
271 num_edges
+= EDGE_COUNT (bb
->succs
);
274 elist
= XNEW (struct edge_list
);
275 elist
->num_edges
= num_edges
;
276 elist
->index_to_edge
= XNEWVEC (edge
, num_edges
);
280 /* Follow successors of blocks, and register these edges. */
281 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
282 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
283 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
284 elist
->index_to_edge
[num_edges
++] = e
;
289 /* This function free's memory associated with an edge list. */
292 free_edge_list (struct edge_list
*elist
)
296 free (elist
->index_to_edge
);
301 /* This function provides debug output showing an edge list. */
304 print_edge_list (FILE *f
, struct edge_list
*elist
)
308 fprintf (f
, "Compressed edge list, %d BBs + entry & exit, and %d edges\n",
309 n_basic_blocks_for_fn (cfun
), elist
->num_edges
);
311 for (x
= 0; x
< elist
->num_edges
; x
++)
313 fprintf (f
, " %-4d - edge(", x
);
314 if (INDEX_EDGE_PRED_BB (elist
, x
) == ENTRY_BLOCK_PTR_FOR_FN (cfun
))
315 fprintf (f
, "entry,");
317 fprintf (f
, "%d,", INDEX_EDGE_PRED_BB (elist
, x
)->index
);
319 if (INDEX_EDGE_SUCC_BB (elist
, x
) == EXIT_BLOCK_PTR_FOR_FN (cfun
))
320 fprintf (f
, "exit)\n");
322 fprintf (f
, "%d)\n", INDEX_EDGE_SUCC_BB (elist
, x
)->index
);
326 /* This function provides an internal consistency check of an edge list,
327 verifying that all edges are present, and that there are no
331 verify_edge_list (FILE *f
, struct edge_list
*elist
)
333 int pred
, succ
, index
;
335 basic_block bb
, p
, s
;
338 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
339 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
341 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
343 pred
= e
->src
->index
;
344 succ
= e
->dest
->index
;
345 index
= EDGE_INDEX (elist
, e
->src
, e
->dest
);
346 if (index
== EDGE_INDEX_NO_EDGE
)
348 fprintf (f
, "*p* No index for edge from %d to %d\n", pred
, succ
);
352 if (INDEX_EDGE_PRED_BB (elist
, index
)->index
!= pred
)
353 fprintf (f
, "*p* Pred for index %d should be %d not %d\n",
354 index
, pred
, INDEX_EDGE_PRED_BB (elist
, index
)->index
);
355 if (INDEX_EDGE_SUCC_BB (elist
, index
)->index
!= succ
)
356 fprintf (f
, "*p* Succ for index %d should be %d not %d\n",
357 index
, succ
, INDEX_EDGE_SUCC_BB (elist
, index
)->index
);
361 /* We've verified that all the edges are in the list, now lets make sure
362 there are no spurious edges in the list. This is an expensive check! */
364 FOR_BB_BETWEEN (p
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
365 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
366 FOR_BB_BETWEEN (s
, ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
, NULL
, next_bb
)
370 FOR_EACH_EDGE (e
, ei
, p
->succs
)
377 FOR_EACH_EDGE (e
, ei
, s
->preds
)
384 if (EDGE_INDEX (elist
, p
, s
)
385 == EDGE_INDEX_NO_EDGE
&& found_edge
!= 0)
386 fprintf (f
, "*** Edge (%d, %d) appears to not have an index\n",
388 if (EDGE_INDEX (elist
, p
, s
)
389 != EDGE_INDEX_NO_EDGE
&& found_edge
== 0)
390 fprintf (f
, "*** Edge (%d, %d) has index %d, but there is no edge\n",
391 p
->index
, s
->index
, EDGE_INDEX (elist
, p
, s
));
396 /* Functions to compute control dependences. */
398 /* Indicate block BB is control dependent on an edge with index EDGE_INDEX. */
400 control_dependences::set_control_dependence_map_bit (basic_block bb
,
403 if (bb
== ENTRY_BLOCK_PTR_FOR_FN (cfun
))
405 gcc_assert (bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
));
406 bitmap_set_bit (&control_dependence_map
[bb
->index
], edge_index
);
409 /* Clear all control dependences for block BB. */
411 control_dependences::clear_control_dependence_bitmap (basic_block bb
)
413 bitmap_clear (&control_dependence_map
[bb
->index
]);
416 /* Determine all blocks' control dependences on the given edge with edge_list
417 EL index EDGE_INDEX, ala Morgan, Section 3.6. */
420 control_dependences::find_control_dependence (int edge_index
)
422 basic_block current_block
;
423 basic_block ending_block
;
425 gcc_assert (get_edge_src (edge_index
) != EXIT_BLOCK_PTR_FOR_FN (cfun
));
427 ending_block
= get_immediate_dominator (CDI_POST_DOMINATORS
,
428 get_edge_src (edge_index
));
430 for (current_block
= get_edge_dest (edge_index
);
431 current_block
!= ending_block
432 && current_block
!= EXIT_BLOCK_PTR_FOR_FN (cfun
);
433 current_block
= get_immediate_dominator (CDI_POST_DOMINATORS
,
435 set_control_dependence_map_bit (current_block
, edge_index
);
438 /* Record all blocks' control dependences on all edges in the edge
439 list EL, ala Morgan, Section 3.6. */
441 control_dependences::control_dependences ()
443 timevar_push (TV_CONTROL_DEPENDENCES
);
445 /* Initialize the edge list. */
448 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
449 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
450 num_edges
+= EDGE_COUNT (bb
->succs
);
451 m_el
.create (num_edges
);
454 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
455 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
456 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
458 /* For abnormal edges, we don't make current_block control
459 dependent because instructions that throw are always necessary
461 if (e
->flags
& EDGE_ABNORMAL
)
466 m_el
.quick_push (std::make_pair (e
->src
->index
, e
->dest
->index
));
469 bitmap_obstack_initialize (&m_bitmaps
);
470 control_dependence_map
.create (last_basic_block_for_fn (cfun
));
471 control_dependence_map
.quick_grow_cleared (last_basic_block_for_fn (cfun
));
472 for (int i
= 0; i
< last_basic_block_for_fn (cfun
); ++i
)
473 bitmap_initialize (&control_dependence_map
[i
], &m_bitmaps
);
474 for (int i
= 0; i
< num_edges
; ++i
)
475 find_control_dependence (i
);
477 timevar_pop (TV_CONTROL_DEPENDENCES
);
480 /* Free control dependences and the associated edge list. */
482 control_dependences::~control_dependences ()
484 control_dependence_map
.release ();
486 bitmap_obstack_release (&m_bitmaps
);
489 /* Returns the bitmap of edges the basic-block I is dependent on. */
492 control_dependences::get_edges_dependent_on (int i
)
494 return &control_dependence_map
[i
];
497 /* Returns the edge source with index I from the edge list. */
500 control_dependences::get_edge_src (int i
)
502 return BASIC_BLOCK_FOR_FN (cfun
, m_el
[i
].first
);
505 /* Returns the edge destination with index I from the edge list. */
508 control_dependences::get_edge_dest (int i
)
510 return BASIC_BLOCK_FOR_FN (cfun
, m_el
[i
].second
);
514 /* Given PRED and SUCC blocks, return the edge which connects the blocks.
515 If no such edge exists, return NULL. */
518 find_edge (basic_block pred
, basic_block succ
)
523 if (EDGE_COUNT (pred
->succs
) <= EDGE_COUNT (succ
->preds
))
525 FOR_EACH_EDGE (e
, ei
, pred
->succs
)
531 FOR_EACH_EDGE (e
, ei
, succ
->preds
)
539 /* This routine will determine what, if any, edge there is between
540 a specified predecessor and successor. */
543 find_edge_index (struct edge_list
*edge_list
, basic_block pred
, basic_block succ
)
547 for (x
= 0; x
< NUM_EDGES (edge_list
); x
++)
548 if (INDEX_EDGE_PRED_BB (edge_list
, x
) == pred
549 && INDEX_EDGE_SUCC_BB (edge_list
, x
) == succ
)
552 return (EDGE_INDEX_NO_EDGE
);
555 /* This routine will remove any fake predecessor edges for a basic block.
556 When the edge is removed, it is also removed from whatever successor
560 remove_fake_predecessors (basic_block bb
)
565 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
567 if ((e
->flags
& EDGE_FAKE
) == EDGE_FAKE
)
574 /* This routine will remove all fake edges from the flow graph. If
575 we remove all fake successors, it will automatically remove all
576 fake predecessors. */
579 remove_fake_edges (void)
583 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
, NULL
, next_bb
)
584 remove_fake_predecessors (bb
);
587 /* This routine will remove all fake edges to the EXIT_BLOCK. */
590 remove_fake_exit_edges (void)
592 remove_fake_predecessors (EXIT_BLOCK_PTR_FOR_FN (cfun
));
596 /* This function will add a fake edge between any block which has no
597 successors, and the exit block. Some data flow equations require these
601 add_noreturn_fake_exit_edges (void)
605 FOR_EACH_BB_FN (bb
, cfun
)
606 if (EDGE_COUNT (bb
->succs
) == 0)
607 make_single_succ_edge (bb
, EXIT_BLOCK_PTR_FOR_FN (cfun
), EDGE_FAKE
);
610 /* This function adds a fake edge between any noreturn block and
611 infinite loops to the exit block. Some optimizations require a path
612 from each node to the exit node.
614 See also Morgan, Figure 3.10, pp. 82-83.
616 The current implementation is ugly, not attempting to minimize the
617 number of inserted fake edges. To reduce the number of fake edges
618 to insert, add fake edges from _innermost_ loops containing only
619 nodes not reachable from the exit block. */
622 connect_infinite_loops_to_exit (void)
624 /* First add fake exits to noreturn blocks, this is required to
625 discover only truly infinite loops below. */
626 add_noreturn_fake_exit_edges ();
628 /* Perform depth-first search in the reverse graph to find nodes
629 reachable from the exit block. */
630 depth_first_search dfs
;
631 dfs
.add_bb (EXIT_BLOCK_PTR_FOR_FN (cfun
));
633 /* Repeatedly add fake edges, updating the unreachable nodes. */
634 basic_block unvisited_block
= EXIT_BLOCK_PTR_FOR_FN (cfun
);
637 unvisited_block
= dfs
.execute (unvisited_block
);
638 if (!unvisited_block
)
641 basic_block deadend_block
= dfs_find_deadend (unvisited_block
);
642 edge e
= make_edge (deadend_block
, EXIT_BLOCK_PTR_FOR_FN (cfun
),
644 e
->probability
= profile_probability::never ();
645 dfs
.add_bb (deadend_block
);
649 /* Compute reverse top sort order. This is computing a post order
650 numbering of the graph. If INCLUDE_ENTRY_EXIT is true, then
651 ENTRY_BLOCK and EXIT_BLOCK are included. If DELETE_UNREACHABLE is
652 true, unreachable blocks are deleted. */
655 post_order_compute (int *post_order
, bool include_entry_exit
,
656 bool delete_unreachable
)
658 int post_order_num
= 0;
661 if (include_entry_exit
)
662 post_order
[post_order_num
++] = EXIT_BLOCK
;
664 /* Allocate stack for back-tracking up CFG. */
665 auto_vec
<edge_iterator
, 20> stack (n_basic_blocks_for_fn (cfun
) + 1);
667 /* Allocate bitmap to track nodes that have been visited. */
668 auto_sbitmap
visited (last_basic_block_for_fn (cfun
));
670 /* None of the nodes in the CFG have been visited yet. */
671 bitmap_clear (visited
);
673 /* Push the first edge on to the stack. */
674 stack
.quick_push (ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->succs
));
676 while (!stack
.is_empty ())
681 /* Look at the edge on the top of the stack. */
682 edge_iterator ei
= stack
.last ();
683 src
= ei_edge (ei
)->src
;
684 dest
= ei_edge (ei
)->dest
;
686 /* Check if the edge destination has been visited yet. */
687 if (dest
!= EXIT_BLOCK_PTR_FOR_FN (cfun
)
688 && ! bitmap_bit_p (visited
, dest
->index
))
690 /* Mark that we have visited the destination. */
691 bitmap_set_bit (visited
, dest
->index
);
693 if (EDGE_COUNT (dest
->succs
) > 0)
694 /* Since the DEST node has been visited for the first
695 time, check its successors. */
696 stack
.quick_push (ei_start (dest
->succs
));
698 post_order
[post_order_num
++] = dest
->index
;
702 if (ei_one_before_end_p (ei
)
703 && src
!= ENTRY_BLOCK_PTR_FOR_FN (cfun
))
704 post_order
[post_order_num
++] = src
->index
;
706 if (!ei_one_before_end_p (ei
))
707 ei_next (&stack
.last ());
713 if (include_entry_exit
)
715 post_order
[post_order_num
++] = ENTRY_BLOCK
;
716 count
= post_order_num
;
719 count
= post_order_num
+ 2;
721 /* Delete the unreachable blocks if some were found and we are
722 supposed to do it. */
723 if (delete_unreachable
&& (count
!= n_basic_blocks_for_fn (cfun
)))
727 for (b
= ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
; b
728 != EXIT_BLOCK_PTR_FOR_FN (cfun
); b
= next_bb
)
730 next_bb
= b
->next_bb
;
732 if (!(bitmap_bit_p (visited
, b
->index
)))
733 delete_basic_block (b
);
736 tidy_fallthru_edges ();
739 return post_order_num
;
743 /* Helper routine for inverted_rev_post_order_compute
744 flow_dfs_compute_reverse_execute, and the reverse-CFG
745 deapth first search in dominance.cc.
746 BB has to belong to a region of CFG
747 unreachable by inverted traversal from the exit.
748 i.e. there's no control flow path from ENTRY to EXIT
749 that contains this BB.
750 This can happen in two cases - if there's an infinite loop
751 or if there's a block that has no successor
752 (call to a function with no return).
753 Some RTL passes deal with this condition by
754 calling connect_infinite_loops_to_exit () and/or
755 add_noreturn_fake_exit_edges ().
756 However, those methods involve modifying the CFG itself
757 which may not be desirable.
758 Hence, we deal with the infinite loop/no return cases
759 by identifying a unique basic block that can reach all blocks
760 in such a region by inverted traversal.
761 This function returns a basic block that guarantees
762 that all blocks in the region are reachable
763 by starting an inverted traversal from the returned block. */
766 dfs_find_deadend (basic_block bb
)
769 basic_block next
= bb
;
773 if (EDGE_COUNT (next
->succs
) == 0)
776 if (! bitmap_set_bit (visited
, next
->index
))
780 /* If we are in an analyzed cycle make sure to try exiting it.
781 Note this is a heuristic only and expected to work when loop
782 fixup is needed as well. */
783 if (! bb
->loop_father
784 || ! loop_outer (bb
->loop_father
))
785 next
= EDGE_SUCC (bb
, 0)->dest
;
790 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
791 if (loop_exit_edge_p (bb
->loop_father
, e
))
793 next
= e
? e
->dest
: EDGE_SUCC (bb
, 0)->dest
;
799 /* Compute the reverse top sort order of the inverted CFG
800 i.e. starting from the exit block and following the edges backward
801 (from successors to predecessors).
802 This ordering can be used for forward dataflow problems among others.
804 Optionally if START_POINTS is specified, start from exit block and all
805 basic blocks in START_POINTS. This is used by CD-DCE.
807 This function assumes that all blocks in the CFG are reachable
808 from the ENTRY (but not necessarily from EXIT).
810 If there's an infinite loop,
811 a simple inverted traversal starting from the blocks
812 with no successors can't visit all blocks.
813 To solve this problem, we first do inverted traversal
814 starting from the blocks with no successor.
815 And if there's any block left that's not visited by the regular
816 inverted traversal from EXIT,
817 those blocks are in such problematic region.
818 Among those, we find one block that has
819 any visited predecessor (which is an entry into such a region),
820 and start looking for a "dead end" from that block
821 and do another inverted traversal from that block. */
824 inverted_rev_post_order_compute (struct function
*fn
,
826 sbitmap
*start_points
)
830 int rev_post_order_num
= n_basic_blocks_for_fn (fn
) - 1;
833 verify_no_unreachable_blocks ();
835 /* Allocate stack for back-tracking up CFG. */
836 auto_vec
<edge_iterator
, 20> stack (n_basic_blocks_for_fn (cfun
) + 1);
838 /* Allocate bitmap to track nodes that have been visited. */
839 auto_sbitmap
visited (last_basic_block_for_fn (cfun
));
841 /* None of the nodes in the CFG have been visited yet. */
842 bitmap_clear (visited
);
846 FOR_ALL_BB_FN (bb
, cfun
)
847 if (bitmap_bit_p (*start_points
, bb
->index
)
848 && EDGE_COUNT (bb
->preds
) > 0)
850 stack
.quick_push (ei_start (bb
->preds
));
851 bitmap_set_bit (visited
, bb
->index
);
853 if (EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun
)->preds
))
855 stack
.quick_push (ei_start (EXIT_BLOCK_PTR_FOR_FN (cfun
)->preds
));
856 bitmap_set_bit (visited
, EXIT_BLOCK_PTR_FOR_FN (cfun
)->index
);
860 /* Put all blocks that have no successor into the initial work list. */
861 FOR_ALL_BB_FN (bb
, cfun
)
862 if (EDGE_COUNT (bb
->succs
) == 0)
864 /* Push the initial edge on to the stack. */
865 if (EDGE_COUNT (bb
->preds
) > 0)
867 stack
.quick_push (ei_start (bb
->preds
));
868 bitmap_set_bit (visited
, bb
->index
);
874 bool has_unvisited_bb
= false;
876 /* The inverted traversal loop. */
877 while (!stack
.is_empty ())
882 /* Look at the edge on the top of the stack. */
884 bb
= ei_edge (ei
)->dest
;
885 pred
= ei_edge (ei
)->src
;
887 /* Check if the predecessor has been visited yet. */
888 if (! bitmap_bit_p (visited
, pred
->index
))
890 /* Mark that we have visited the destination. */
891 bitmap_set_bit (visited
, pred
->index
);
893 if (EDGE_COUNT (pred
->preds
) > 0)
894 /* Since the predecessor node has been visited for the first
895 time, check its predecessors. */
896 stack
.quick_push (ei_start (pred
->preds
));
898 rev_post_order
[rev_post_order_num
--] = pred
->index
;
902 if (bb
!= EXIT_BLOCK_PTR_FOR_FN (cfun
)
903 && ei_one_before_end_p (ei
))
904 rev_post_order
[rev_post_order_num
--] = bb
->index
;
906 if (!ei_one_before_end_p (ei
))
907 ei_next (&stack
.last ());
913 /* Detect any infinite loop and activate the kludge.
914 Note that this doesn't check EXIT_BLOCK itself
915 since EXIT_BLOCK is always added after the outer do-while loop. */
916 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR_FOR_FN (cfun
),
917 EXIT_BLOCK_PTR_FOR_FN (cfun
), next_bb
)
918 if (!bitmap_bit_p (visited
, bb
->index
))
920 has_unvisited_bb
= true;
922 if (EDGE_COUNT (bb
->preds
) > 0)
926 basic_block visited_pred
= NULL
;
928 /* Find an already visited predecessor. */
929 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
931 if (bitmap_bit_p (visited
, e
->src
->index
))
932 visited_pred
= e
->src
;
937 basic_block be
= dfs_find_deadend (bb
);
938 gcc_assert (be
!= NULL
);
939 bitmap_set_bit (visited
, be
->index
);
940 stack
.quick_push (ei_start (be
->preds
));
946 if (has_unvisited_bb
&& stack
.is_empty ())
948 /* No blocks are reachable from EXIT at all.
949 Find a dead-end from the ENTRY, and restart the iteration. */
950 basic_block be
= dfs_find_deadend (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
951 gcc_assert (be
!= NULL
);
952 bitmap_set_bit (visited
, be
->index
);
953 stack
.quick_push (ei_start (be
->preds
));
956 /* The only case the below while fires is
957 when there's an infinite loop. */
959 while (!stack
.is_empty ());
961 /* EXIT_BLOCK is always included. */
962 rev_post_order
[rev_post_order_num
--] = EXIT_BLOCK
;
963 return n_basic_blocks_for_fn (fn
);
966 /* Compute the depth first search order of FN and store in the array
967 PRE_ORDER if nonzero. If REV_POST_ORDER is nonzero, return the
968 reverse completion number for each node. Returns the number of nodes
969 visited. A depth first search tries to get as far away from the starting
970 point as quickly as possible.
972 In case the function has unreachable blocks the number of nodes
973 visited does not include them.
975 pre_order is a really a preorder numbering of the graph.
976 rev_post_order is really a reverse postorder numbering of the graph. */
979 pre_and_rev_post_order_compute_fn (struct function
*fn
,
980 int *pre_order
, int *rev_post_order
,
981 bool include_entry_exit
)
983 int pre_order_num
= 0;
984 int rev_post_order_num
= n_basic_blocks_for_fn (fn
) - 1;
986 /* Allocate stack for back-tracking up CFG. */
987 auto_vec
<edge_iterator
, 20> stack (n_basic_blocks_for_fn (fn
) + 1);
989 if (include_entry_exit
)
992 pre_order
[pre_order_num
] = ENTRY_BLOCK
;
995 rev_post_order
[rev_post_order_num
--] = EXIT_BLOCK
;
998 rev_post_order_num
-= NUM_FIXED_BLOCKS
;
1000 /* BB flag to track nodes that have been visited. */
1001 auto_bb_flag
visited (fn
);
1003 /* Push the first edge on to the stack. */
1004 stack
.quick_push (ei_start (ENTRY_BLOCK_PTR_FOR_FN (fn
)->succs
));
1006 while (!stack
.is_empty ())
1011 /* Look at the edge on the top of the stack. */
1012 edge_iterator ei
= stack
.last ();
1013 src
= ei_edge (ei
)->src
;
1014 dest
= ei_edge (ei
)->dest
;
1016 /* Check if the edge destination has been visited yet. */
1017 if (dest
!= EXIT_BLOCK_PTR_FOR_FN (fn
)
1018 && ! (dest
->flags
& visited
))
1020 /* Mark that we have visited the destination. */
1021 dest
->flags
|= visited
;
1024 pre_order
[pre_order_num
] = dest
->index
;
1028 if (EDGE_COUNT (dest
->succs
) > 0)
1029 /* Since the DEST node has been visited for the first
1030 time, check its successors. */
1031 stack
.quick_push (ei_start (dest
->succs
));
1032 else if (rev_post_order
)
1033 /* There are no successors for the DEST node so assign
1034 its reverse completion number. */
1035 rev_post_order
[rev_post_order_num
--] = dest
->index
;
1039 if (ei_one_before_end_p (ei
)
1040 && src
!= ENTRY_BLOCK_PTR_FOR_FN (fn
)
1042 /* There are no more successors for the SRC node
1043 so assign its reverse completion number. */
1044 rev_post_order
[rev_post_order_num
--] = src
->index
;
1046 if (!ei_one_before_end_p (ei
))
1047 ei_next (&stack
.last ());
1053 if (include_entry_exit
)
1056 pre_order
[pre_order_num
] = EXIT_BLOCK
;
1059 rev_post_order
[rev_post_order_num
--] = ENTRY_BLOCK
;
1062 /* Clear the temporarily allocated flag. */
1063 if (!rev_post_order
)
1064 rev_post_order
= pre_order
;
1065 for (int i
= 0; i
< pre_order_num
; ++i
)
1066 BASIC_BLOCK_FOR_FN (fn
, rev_post_order
[i
])->flags
&= ~visited
;
1068 return pre_order_num
;
1071 /* Like pre_and_rev_post_order_compute_fn but operating on the
1072 current function and asserting that all nodes were visited. */
1075 pre_and_rev_post_order_compute (int *pre_order
, int *rev_post_order
,
1076 bool include_entry_exit
)
1079 = pre_and_rev_post_order_compute_fn (cfun
, pre_order
, rev_post_order
,
1080 include_entry_exit
);
1081 if (include_entry_exit
)
1082 /* The number of nodes visited should be the number of blocks. */
1083 gcc_assert (pre_order_num
== n_basic_blocks_for_fn (cfun
));
1085 /* The number of nodes visited should be the number of blocks minus
1086 the entry and exit blocks which are not visited here. */
1087 gcc_assert (pre_order_num
1088 == (n_basic_blocks_for_fn (cfun
) - NUM_FIXED_BLOCKS
));
1090 return pre_order_num
;
1094 /* Per basic-block data for rev_post_order_and_mark_dfs_back_seme,
1095 element of a sparsely populated array indexed by basic-block number. */
1096 typedef auto_vec
<int, 2> scc_exit_vec_t
;
1097 struct rpoamdbs_bb_data
{
1100 /* The basic-block index of the SCC entry of the block visited first
1101 (the SCC leader). */
1103 /* The index into the RPO array where the blocks SCC entries end
1104 (only valid for the SCC leader). */
1106 /* The indexes of the exits destinations of this SCC (only valid
1107 for the SCC leader). Initialized upon discovery of SCC leaders. */
1108 scc_exit_vec_t scc_exits
;
1111 /* Tag H as a header of B, weaving H and its loop header list into the
1112 current loop header list of B. */
1115 tag_header (int b
, int h
, rpoamdbs_bb_data
*bb_data
)
1117 if (h
== -1 || b
== h
)
1121 while (bb_data
[cur1
].scc
!= -1)
1123 int ih
= bb_data
[cur1
].scc
;
1126 if (bb_data
[ih
].depth
< bb_data
[cur2
].depth
)
1128 bb_data
[cur1
].scc
= cur2
;
1135 bb_data
[cur1
].scc
= cur2
;
1138 /* Comparator for a sort of two edges destinations E1 and E2 after their index
1139 in the PRE array as specified by BB_TO_PRE. */
1142 cmp_edge_dest_pre (const void *e1_
, const void *e2_
, void *data_
)
1144 const int *e1
= (const int *)e1_
;
1145 const int *e2
= (const int *)e2_
;
1146 rpoamdbs_bb_data
*bb_data
= (rpoamdbs_bb_data
*)data_
;
1147 return (bb_data
[*e1
].bb_to_pre
- bb_data
[*e2
].bb_to_pre
);
1150 /* Compute the reverse completion number of a depth first search
1151 on the SEME region denoted by the ENTRY edge and the EXIT_BBS set of
1152 exit block indexes and store it in the array REV_POST_ORDER.
1153 Also sets the EDGE_DFS_BACK edge flags according to this visitation
1155 Returns the number of nodes visited.
1157 In case the function has unreachable blocks the number of nodes
1158 visited does not include them.
1160 If FOR_ITERATION is true then compute an RPO where SCCs form a
1161 contiguous region in the RPO array.
1162 *TOPLEVEL_SCC_EXTENTS if not NULL is filled with pairs of
1163 *REV_POST_ORDER indexes denoting extents of the toplevel SCCs in
1167 rev_post_order_and_mark_dfs_back_seme (struct function
*fn
, edge entry
,
1168 bitmap exit_bbs
, bool for_iteration
,
1169 int *rev_post_order
,
1170 vec
<std::pair
<int, int> >
1171 *toplevel_scc_extents
)
1173 int rev_post_order_num
= 0;
1175 /* BB flag to track nodes that have been visited. */
1176 auto_bb_flag
visited (fn
);
1178 /* Lazily initialized per-BB data for the two DFS walks below. */
1179 rpoamdbs_bb_data
*bb_data
1180 = XNEWVEC (rpoamdbs_bb_data
, last_basic_block_for_fn (fn
));
1182 /* First DFS walk, loop discovery according to
1183 A New Algorithm for Identifying Loops in Decompilation
1184 by Tao Wei, Jian Mao, Wei Zou and You Chen of the Institute of
1185 Computer Science and Technology of the Peking University. */
1186 auto_vec
<edge_iterator
, 20> ei_stack (n_basic_blocks_for_fn (fn
) + 1);
1187 auto_bb_flag
is_header (fn
);
1189 unsigned n_sccs
= 0;
1191 basic_block dest
= entry
->dest
;
1195 /* DFS process DEST. */
1197 bb_data
[dest
->index
].bb_to_pre
= pre_num
++;
1198 bb_data
[dest
->index
].depth
= depth
;
1199 bb_data
[dest
->index
].scc
= -1;
1201 gcc_assert ((dest
->flags
& (is_header
|visited
)) == 0);
1202 dest
->flags
|= visited
;
1203 ei
= ei_start (dest
->succs
);
1204 while (!ei_end_p (ei
))
1206 ei_edge (ei
)->flags
&= ~EDGE_DFS_BACK
;
1207 if (bitmap_bit_p (exit_bbs
, ei_edge (ei
)->dest
->index
))
1209 else if (!(ei_edge (ei
)->dest
->flags
& visited
))
1211 ei_stack
.quick_push (ei
);
1212 dest
= ei_edge (ei
)->dest
;
1213 /* DFS recurse on DEST. */
1216 ret_from_find_loops
:
1217 /* Return point of DFS recursion. */
1218 ei
= ei_stack
.pop ();
1219 dest
= ei_edge (ei
)->src
;
1220 int header
= bb_data
[ei_edge (ei
)->dest
->index
].scc
;
1221 tag_header (dest
->index
, header
, bb_data
);
1222 depth
= bb_data
[dest
->index
].depth
+ 1;
1226 if (bb_data
[ei_edge (ei
)->dest
->index
].depth
> 0) /* on the stack */
1228 ei_edge (ei
)->flags
|= EDGE_DFS_BACK
;
1230 ei_edge (ei
)->dest
->flags
|= is_header
;
1231 ::new (&bb_data
[ei_edge (ei
)->dest
->index
].scc_exits
)
1232 auto_vec
<int, 2> ();
1233 tag_header (dest
->index
, ei_edge (ei
)->dest
->index
, bb_data
);
1235 else if (bb_data
[ei_edge (ei
)->dest
->index
].scc
== -1)
1239 int header
= bb_data
[ei_edge (ei
)->dest
->index
].scc
;
1240 if (bb_data
[header
].depth
> 0)
1241 tag_header (dest
->index
, header
, bb_data
);
1244 /* A re-entry into an existing loop. */
1245 /* ??? Need to mark is_header? */
1246 while (bb_data
[header
].scc
!= -1)
1248 header
= bb_data
[header
].scc
;
1249 if (bb_data
[header
].depth
> 0)
1251 tag_header (dest
->index
, header
, bb_data
);
1260 rev_post_order
[rev_post_order_num
++] = dest
->index
;
1261 /* not on the stack anymore */
1262 bb_data
[dest
->index
].depth
= -bb_data
[dest
->index
].depth
;
1263 if (!ei_stack
.is_empty ())
1264 /* Return from DFS recursion. */
1265 goto ret_from_find_loops
;
1267 /* Optimize for no SCCs found or !for_iteration. */
1268 if (n_sccs
== 0 || !for_iteration
)
1270 /* Clear the temporarily allocated flags. */
1271 for (int i
= 0; i
< rev_post_order_num
; ++i
)
1272 BASIC_BLOCK_FOR_FN (fn
, rev_post_order
[i
])->flags
1273 &= ~(is_header
|visited
);
1274 /* And swap elements. */
1275 for (int i
= 0; i
< rev_post_order_num
/2; ++i
)
1276 std::swap (rev_post_order
[i
], rev_post_order
[rev_post_order_num
-i
-1]);
1277 XDELETEVEC (bb_data
);
1279 return rev_post_order_num
;
1282 /* Next find SCC exits, clear the visited flag and compute an upper bound
1283 for the edge stack below. */
1284 unsigned edge_count
= 0;
1285 for (int i
= 0; i
< rev_post_order_num
; ++i
)
1287 int bb
= rev_post_order
[i
];
1288 BASIC_BLOCK_FOR_FN (fn
, bb
)->flags
&= ~visited
;
1290 FOR_EACH_EDGE (e
, ei
, BASIC_BLOCK_FOR_FN (fn
, bb
)->succs
)
1292 if (bitmap_bit_p (exit_bbs
, e
->dest
->index
))
1295 /* if e is an exit from e->src, record it for
1296 bb_data[e->src].scc. */
1297 int src_scc
= e
->src
->index
;
1298 if (!(e
->src
->flags
& is_header
))
1299 src_scc
= bb_data
[src_scc
].scc
;
1302 int dest_scc
= e
->dest
->index
;
1303 if (!(e
->dest
->flags
& is_header
))
1304 dest_scc
= bb_data
[dest_scc
].scc
;
1305 if (src_scc
== dest_scc
)
1307 /* When dest_scc is nested insde src_scc it's not an
1309 int tem_dest_scc
= dest_scc
;
1310 unsigned dest_scc_depth
= 0;
1311 while (tem_dest_scc
!= -1)
1314 if ((tem_dest_scc
= bb_data
[tem_dest_scc
].scc
) == src_scc
)
1317 if (tem_dest_scc
!= -1)
1319 /* When src_scc is nested inside dest_scc record an
1320 exit from the outermost SCC this edge exits. */
1321 int tem_src_scc
= src_scc
;
1322 unsigned src_scc_depth
= 0;
1323 while (tem_src_scc
!= -1)
1325 if (bb_data
[tem_src_scc
].scc
== dest_scc
)
1328 bb_data
[tem_src_scc
].scc_exits
.safe_push (e
->dest
->index
);
1331 tem_src_scc
= bb_data
[tem_src_scc
].scc
;
1334 /* Else find the outermost SCC this edge exits (exits
1335 from the inner SCCs are not important for the DFS
1336 walk adjustment). Do so by computing the common
1337 ancestor SCC where the immediate child it to the source
1338 SCC is the exited SCC. */
1339 if (tem_src_scc
== -1)
1342 while (src_scc_depth
> dest_scc_depth
)
1344 src_scc
= bb_data
[src_scc
].scc
;
1347 while (dest_scc_depth
> src_scc_depth
)
1349 dest_scc
= bb_data
[dest_scc
].scc
;
1352 while (bb_data
[src_scc
].scc
!= bb_data
[dest_scc
].scc
)
1354 src_scc
= bb_data
[src_scc
].scc
;
1355 dest_scc
= bb_data
[dest_scc
].scc
;
1357 bb_data
[src_scc
].scc_exits
.safe_push (e
->dest
->index
);
1362 /* Now the second DFS walk to compute a RPO where the extent of SCCs
1363 is minimized thus SCC members are adjacent in the RPO array.
1364 This is done by performing a DFS walk computing RPO with first visiting
1365 extra direct edges from SCC entry to its exits.
1366 That simulates a DFS walk over the graph with SCCs collapsed and
1367 walking the SCCs themselves only when all outgoing edges from the
1368 SCCs have been visited.
1369 SCC_END[scc-header-index] is the position in the RPO array of the
1370 last member of the SCC. */
1371 auto_vec
<std::pair
<basic_block
, basic_block
>, 20> estack (edge_count
+ 1);
1372 int idx
= rev_post_order_num
;
1376 /* DFS process DEST. */
1378 gcc_checking_assert ((dest
->flags
& visited
) == 0);
1379 /* Verify we enter SCCs through the same header and SCC nesting appears
1381 gcc_assert (bb_data
[dest
->index
].scc
== -1
1382 || (BASIC_BLOCK_FOR_FN (fn
, bb_data
[dest
->index
].scc
)->flags
1384 dest
->flags
|= visited
;
1385 bb_data
[dest
->index
].scc_end
= -1;
1386 if ((dest
->flags
& is_header
)
1387 && !bb_data
[dest
->index
].scc_exits
.is_empty ())
1389 /* Push the all SCC exits as outgoing edges from its header to
1391 To process exits in the same relative order as in the first
1392 DFS walk sort them after their destination PRE order index. */
1393 gcc_sort_r (&bb_data
[dest
->index
].scc_exits
[0],
1394 bb_data
[dest
->index
].scc_exits
.length (),
1395 sizeof (int), cmp_edge_dest_pre
, bb_data
);
1396 /* Process edges in reverse to match previous DFS walk order. */
1397 for (int i
= bb_data
[dest
->index
].scc_exits
.length () - 1; i
>= 0; --i
)
1398 estack
.quick_push (std::make_pair
1399 (dest
, BASIC_BLOCK_FOR_FN (fn
, bb_data
[dest
->index
].scc_exits
[i
])));
1403 if (dest
->flags
& is_header
)
1404 bb_data
[dest
->index
].scc_end
= idx
- 1;
1405 /* Push the edge vector in reverse to match the iteration order
1406 from the DFS walk above. */
1407 for (int i
= EDGE_COUNT (dest
->succs
) - 1; i
>= 0; --i
)
1408 if (!bitmap_bit_p (exit_bbs
, EDGE_SUCC (dest
, i
)->dest
->index
))
1409 estack
.quick_push (std::make_pair (dest
,
1410 EDGE_SUCC (dest
, i
)->dest
));
1412 while (!estack
.is_empty ()
1413 && estack
.last ().first
== dest
)
1415 edest
= estack
.last ().second
;
1416 if (!(edest
->flags
& visited
))
1419 /* DFS recurse on DEST. */
1423 /* Return point of DFS recursion. */
1424 dest
= estack
.last ().first
;
1427 /* If we processed all SCC exits from DEST mark the SCC end
1428 since all RPO entries up to DEST itself will now belong
1429 to its SCC. The special-case of no SCC exits is already
1430 dealt with above. */
1431 if (dest
->flags
& is_header
1432 /* When the last exit edge was processed mark the SCC end
1433 and push the regular edges. */
1434 && bb_data
[dest
->index
].scc_end
== -1
1435 && (estack
.is_empty ()
1436 || estack
.last ().first
!= dest
))
1438 bb_data
[dest
->index
].scc_end
= idx
- 1;
1439 /* Push the edge vector in reverse to match the iteration order
1440 from the DFS walk above. */
1441 for (int i
= EDGE_COUNT (dest
->succs
) - 1; i
>= 0; --i
)
1442 if (!bitmap_bit_p (exit_bbs
, EDGE_SUCC (dest
, i
)->dest
->index
))
1443 estack
.quick_push (std::make_pair (dest
,
1444 EDGE_SUCC (dest
, i
)->dest
));
1447 rev_post_order
[--idx
] = dest
->index
;
1448 if (!estack
.is_empty ())
1449 /* Return from DFS recursion. */
1450 goto ret_from_dfs_rpo
;
1452 /* Each SCC extends are from the position of the header inside
1453 the RPO array up to RPO array index scc_end[header-index]. */
1454 if (toplevel_scc_extents
)
1455 for (int i
= 0; i
< rev_post_order_num
; i
++)
1457 basic_block bb
= BASIC_BLOCK_FOR_FN (fn
, rev_post_order
[i
]);
1458 if (bb
->flags
& is_header
)
1460 toplevel_scc_extents
->safe_push
1461 (std::make_pair (i
, bb_data
[bb
->index
].scc_end
));
1462 i
= bb_data
[bb
->index
].scc_end
;
1466 /* Clear the temporarily allocated flags and free memory. */
1467 for (int i
= 0; i
< rev_post_order_num
; ++i
)
1469 basic_block bb
= BASIC_BLOCK_FOR_FN (fn
, rev_post_order
[i
]);
1470 if (bb
->flags
& is_header
)
1471 bb_data
[bb
->index
].scc_exits
.~scc_exit_vec_t ();
1472 bb
->flags
&= ~(visited
|is_header
);
1475 XDELETEVEC (bb_data
);
1477 return rev_post_order_num
;
1482 /* Compute the depth first search order on the _reverse_ graph and
1483 store it in the array DFS_ORDER, marking the nodes visited in VISITED.
1484 Returns the number of nodes visited.
1486 The computation is split into three pieces:
1488 flow_dfs_compute_reverse_init () creates the necessary data
1491 flow_dfs_compute_reverse_add_bb () adds a basic block to the data
1492 structures. The block will start the search.
1494 flow_dfs_compute_reverse_execute () continues (or starts) the
1495 search using the block on the top of the stack, stopping when the
1498 flow_dfs_compute_reverse_finish () destroys the necessary data
1501 Thus, the user will probably call ..._init(), call ..._add_bb() to
1502 add a beginning basic block to the stack, call ..._execute(),
1503 possibly add another bb to the stack and again call ..._execute(),
1504 ..., and finally call _finish(). */
1506 /* Initialize the data structures used for depth-first search on the
1507 reverse graph. If INITIALIZE_STACK is nonzero, the exit block is
1508 added to the basic block stack. DATA is the current depth-first
1509 search context. If INITIALIZE_STACK is nonzero, there is an
1510 element on the stack. */
1512 depth_first_search::depth_first_search () :
1513 m_stack (n_basic_blocks_for_fn (cfun
)),
1514 m_visited_blocks (last_basic_block_for_fn (cfun
))
1516 bitmap_clear (m_visited_blocks
);
1519 /* Add the specified basic block to the top of the dfs data
1520 structures. When the search continues, it will start at the
1524 depth_first_search::add_bb (basic_block bb
)
1526 m_stack
.quick_push (bb
);
1527 bitmap_set_bit (m_visited_blocks
, bb
->index
);
1530 /* Continue the depth-first search through the reverse graph starting with the
1531 block at the stack's top and ending when the stack is empty. Visited nodes
1532 are marked. Returns an unvisited basic block, or NULL if there is none
1536 depth_first_search::execute (basic_block last_unvisited
)
1542 while (!m_stack
.is_empty ())
1544 bb
= m_stack
.pop ();
1546 /* Perform depth-first search on adjacent vertices. */
1547 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1548 if (!bitmap_bit_p (m_visited_blocks
, e
->src
->index
))
1552 /* Determine if there are unvisited basic blocks. */
1553 FOR_BB_BETWEEN (bb
, last_unvisited
, NULL
, prev_bb
)
1554 if (!bitmap_bit_p (m_visited_blocks
, bb
->index
))
1560 /* Performs dfs search from BB over vertices satisfying PREDICATE;
1561 if REVERSE, go against direction of edges. Returns number of blocks
1562 found and their list in RSLT. RSLT can contain at most RSLT_MAX items. */
1564 dfs_enumerate_from (basic_block bb
, int reverse
,
1565 bool (*predicate
) (const_basic_block
, const void *),
1566 basic_block
*rslt
, int rslt_max
, const void *data
)
1568 basic_block
*st
, lbb
;
1571 auto_bb_flag
visited (cfun
);
1573 #define MARK_VISITED(BB) ((BB)->flags |= visited)
1574 #define UNMARK_VISITED(BB) ((BB)->flags &= ~visited)
1575 #define VISITED_P(BB) (((BB)->flags & visited) != 0)
1577 st
= XNEWVEC (basic_block
, rslt_max
);
1578 rslt
[tv
++] = st
[sp
++] = bb
;
1587 FOR_EACH_EDGE (e
, ei
, lbb
->preds
)
1588 if (!VISITED_P (e
->src
) && predicate (e
->src
, data
))
1590 gcc_assert (tv
!= rslt_max
);
1591 rslt
[tv
++] = st
[sp
++] = e
->src
;
1592 MARK_VISITED (e
->src
);
1597 FOR_EACH_EDGE (e
, ei
, lbb
->succs
)
1598 if (!VISITED_P (e
->dest
) && predicate (e
->dest
, data
))
1600 gcc_assert (tv
!= rslt_max
);
1601 rslt
[tv
++] = st
[sp
++] = e
->dest
;
1602 MARK_VISITED (e
->dest
);
1607 for (sp
= 0; sp
< tv
; sp
++)
1608 UNMARK_VISITED (rslt
[sp
]);
1611 #undef UNMARK_VISITED
1616 /* Compute dominance frontiers, ala Harvey, Ferrante, et al.
1618 This algorithm can be found in Timothy Harvey's PhD thesis, at
1619 http://www.cs.rice.edu/~harv/dissertation.pdf in the section on iterative
1620 dominance algorithms.
1622 First, we identify each join point, j (any node with more than one
1623 incoming edge is a join point).
1625 We then examine each predecessor, p, of j and walk up the dominator tree
1628 We stop the walk when we reach j's immediate dominator - j is in the
1629 dominance frontier of each of the nodes in the walk, except for j's
1630 immediate dominator. Intuitively, all of the rest of j's dominators are
1631 shared by j's predecessors as well.
1632 Since they dominate j, they will not have j in their dominance frontiers.
1634 The number of nodes touched by this algorithm is equal to the size
1635 of the dominance frontiers, no more, no less.
1639 compute_dominance_frontiers (bitmap_head
*frontiers
)
1641 timevar_push (TV_DOM_FRONTIERS
);
1646 FOR_EACH_BB_FN (b
, cfun
)
1648 if (EDGE_COUNT (b
->preds
) >= 2)
1650 basic_block domsb
= get_immediate_dominator (CDI_DOMINATORS
, b
);
1651 FOR_EACH_EDGE (p
, ei
, b
->preds
)
1653 basic_block runner
= p
->src
;
1654 if (runner
== ENTRY_BLOCK_PTR_FOR_FN (cfun
))
1657 while (runner
!= domsb
)
1659 if (!bitmap_set_bit (&frontiers
[runner
->index
], b
->index
))
1661 runner
= get_immediate_dominator (CDI_DOMINATORS
, runner
);
1667 timevar_pop (TV_DOM_FRONTIERS
);
1670 /* Given a set of blocks with variable definitions (DEF_BLOCKS),
1671 return a bitmap with all the blocks in the iterated dominance
1672 frontier of the blocks in DEF_BLOCKS. DFS contains dominance
1673 frontier information as returned by compute_dominance_frontiers.
1675 The resulting set of blocks are the potential sites where PHI nodes
1676 are needed. The caller is responsible for freeing the memory
1677 allocated for the return value. */
1680 compute_idf (bitmap def_blocks
, bitmap_head
*dfs
)
1683 unsigned bb_index
, i
;
1684 bitmap phi_insertion_points
;
1686 phi_insertion_points
= BITMAP_ALLOC (NULL
);
1688 /* Seed the work set with all the blocks in DEF_BLOCKS. */
1689 auto_bitmap work_set
;
1690 bitmap_copy (work_set
, def_blocks
);
1691 bitmap_tree_view (work_set
);
1693 /* Pop a block off the workset, add every block that appears in
1694 the original block's DF that we have not already processed to
1695 the workset. Iterate until the workset is empty. Blocks
1696 which are added to the workset are potential sites for
1698 while (!bitmap_empty_p (work_set
))
1700 /* The dominance frontier of a block is blocks after it so iterating
1701 on earlier blocks first is better.
1702 ??? Basic blocks are by no means guaranteed to be ordered in
1703 optimal order for this iteration. */
1704 bb_index
= bitmap_first_set_bit (work_set
);
1705 bitmap_clear_bit (work_set
, bb_index
);
1707 /* Since the registration of NEW -> OLD name mappings is done
1708 separately from the call to update_ssa, when updating the SSA
1709 form, the basic blocks where new and/or old names are defined
1710 may have disappeared by CFG cleanup calls. In this case,
1711 we may pull a non-existing block from the work stack. */
1712 gcc_checking_assert (bb_index
1713 < (unsigned) last_basic_block_for_fn (cfun
));
1715 EXECUTE_IF_AND_COMPL_IN_BITMAP (&dfs
[bb_index
], phi_insertion_points
,
1718 bitmap_set_bit (work_set
, i
);
1719 bitmap_set_bit (phi_insertion_points
, i
);
1723 return phi_insertion_points
;
1726 /* Intersection and union of preds/succs for sbitmap based data flow
1727 solvers. All four functions defined below take the same arguments:
1728 B is the basic block to perform the operation for. DST is the
1729 target sbitmap, i.e. the result. SRC is an sbitmap vector of size
1730 last_basic_block so that it can be indexed with basic block indices.
1731 DST may be (but does not have to be) SRC[B->index]. */
1733 /* Set the bitmap DST to the intersection of SRC of successors of
1737 bitmap_intersection_of_succs (sbitmap dst
, sbitmap
*src
, basic_block b
)
1739 unsigned int set_size
= dst
->size
;
1743 for (e
= NULL
, ix
= 0; ix
< EDGE_COUNT (b
->succs
); ix
++)
1745 e
= EDGE_SUCC (b
, ix
);
1746 if (e
->dest
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
1749 bitmap_copy (dst
, src
[e
->dest
->index
]);
1756 for (++ix
; ix
< EDGE_COUNT (b
->succs
); ix
++)
1759 SBITMAP_ELT_TYPE
*p
, *r
;
1761 e
= EDGE_SUCC (b
, ix
);
1762 if (e
->dest
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
1765 p
= src
[e
->dest
->index
]->elms
;
1767 for (i
= 0; i
< set_size
; i
++)
1772 /* Set the bitmap DST to the intersection of SRC of predecessors of
1776 bitmap_intersection_of_preds (sbitmap dst
, sbitmap
*src
, basic_block b
)
1778 unsigned int set_size
= dst
->size
;
1782 for (e
= NULL
, ix
= 0; ix
< EDGE_COUNT (b
->preds
); ix
++)
1784 e
= EDGE_PRED (b
, ix
);
1785 if (e
->src
== ENTRY_BLOCK_PTR_FOR_FN (cfun
))
1788 bitmap_copy (dst
, src
[e
->src
->index
]);
1795 for (++ix
; ix
< EDGE_COUNT (b
->preds
); ix
++)
1798 SBITMAP_ELT_TYPE
*p
, *r
;
1800 e
= EDGE_PRED (b
, ix
);
1801 if (e
->src
== ENTRY_BLOCK_PTR_FOR_FN (cfun
))
1804 p
= src
[e
->src
->index
]->elms
;
1806 for (i
= 0; i
< set_size
; i
++)
1811 /* Set the bitmap DST to the union of SRC of successors of
1815 bitmap_union_of_succs (sbitmap dst
, sbitmap
*src
, basic_block b
)
1817 unsigned int set_size
= dst
->size
;
1821 for (ix
= 0; ix
< EDGE_COUNT (b
->succs
); ix
++)
1823 e
= EDGE_SUCC (b
, ix
);
1824 if (e
->dest
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
1827 bitmap_copy (dst
, src
[e
->dest
->index
]);
1831 if (ix
== EDGE_COUNT (b
->succs
))
1834 for (ix
++; ix
< EDGE_COUNT (b
->succs
); ix
++)
1837 SBITMAP_ELT_TYPE
*p
, *r
;
1839 e
= EDGE_SUCC (b
, ix
);
1840 if (e
->dest
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
1843 p
= src
[e
->dest
->index
]->elms
;
1845 for (i
= 0; i
< set_size
; i
++)
1850 /* Set the bitmap DST to the union of SRC of predecessors of
1854 bitmap_union_of_preds (sbitmap dst
, sbitmap
*src
, basic_block b
)
1856 unsigned int set_size
= dst
->size
;
1860 for (ix
= 0; ix
< EDGE_COUNT (b
->preds
); ix
++)
1862 e
= EDGE_PRED (b
, ix
);
1863 if (e
->src
== ENTRY_BLOCK_PTR_FOR_FN (cfun
))
1866 bitmap_copy (dst
, src
[e
->src
->index
]);
1870 if (ix
== EDGE_COUNT (b
->preds
))
1873 for (ix
++; ix
< EDGE_COUNT (b
->preds
); ix
++)
1876 SBITMAP_ELT_TYPE
*p
, *r
;
1878 e
= EDGE_PRED (b
, ix
);
1879 if (e
->src
== ENTRY_BLOCK_PTR_FOR_FN (cfun
))
1882 p
= src
[e
->src
->index
]->elms
;
1884 for (i
= 0; i
< set_size
; i
++)
1889 /* Returns the list of basic blocks in the function in an order that guarantees
1890 that if a block X has just a single predecessor Y, then Y is after X in the
1894 single_pred_before_succ_order (void)
1897 basic_block
*order
= XNEWVEC (basic_block
, n_basic_blocks_for_fn (cfun
));
1898 unsigned n
= n_basic_blocks_for_fn (cfun
) - NUM_FIXED_BLOCKS
;
1900 auto_sbitmap
visited (last_basic_block_for_fn (cfun
));
1902 #define MARK_VISITED(BB) (bitmap_set_bit (visited, (BB)->index))
1903 #define VISITED_P(BB) (bitmap_bit_p (visited, (BB)->index))
1905 bitmap_clear (visited
);
1907 MARK_VISITED (ENTRY_BLOCK_PTR_FOR_FN (cfun
));
1908 FOR_EACH_BB_FN (x
, cfun
)
1913 /* Walk the predecessors of x as long as they have precisely one
1914 predecessor and add them to the list, so that they get stored
1917 single_pred_p (y
) && !VISITED_P (single_pred (y
));
1918 y
= single_pred (y
))
1920 for (y
= x
, i
= n
- np
;
1921 single_pred_p (y
) && !VISITED_P (single_pred (y
));
1922 y
= single_pred (y
), i
++)
1930 gcc_assert (i
== n
- 1);
1934 gcc_assert (n
== 0);
1941 /* Ignoring loop backedges, if BB has precisely one incoming edge then
1942 return that edge. Otherwise return NULL.
1944 When IGNORE_NOT_EXECUTABLE is true, also ignore edges that are not marked
1948 single_pred_edge_ignoring_loop_edges (basic_block bb
,
1949 bool ignore_not_executable
)
1955 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1957 /* A loop back edge can be identified by the destination of
1958 the edge dominating the source of the edge. */
1959 if (dominated_by_p (CDI_DOMINATORS
, e
->src
, e
->dest
))
1962 /* We can safely ignore edges that are not executable. */
1963 if (ignore_not_executable
1964 && (e
->flags
& EDGE_EXECUTABLE
) == 0)
1967 /* If we have already seen a non-loop edge, then we must have
1968 multiple incoming non-loop edges and thus we return NULL. */
1972 /* This is the first non-loop incoming edge we have found. Record