1 /* Control flow graph analysis code for GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* This file contains various simple utilities to analyze the CFG. */
25 #include "coretypes.h"
28 #include "hard-reg-set.h"
29 #include "basic-block.h"
30 #include "insn-config.h"
36 /* Store the data structures necessary for depth-first search. */
37 struct depth_first_search_dsS
{
38 /* stack for backtracking during the algorithm */
41 /* number of edges in the stack. That is, positions 0, ..., sp-1
45 /* record of basic blocks already seen by depth-first search */
46 sbitmap visited_blocks
;
48 typedef struct depth_first_search_dsS
*depth_first_search_ds
;
50 static void flow_dfs_compute_reverse_init (depth_first_search_ds
);
51 static void flow_dfs_compute_reverse_add_bb (depth_first_search_ds
,
53 static basic_block
flow_dfs_compute_reverse_execute (depth_first_search_ds
);
54 static void flow_dfs_compute_reverse_finish (depth_first_search_ds
);
55 static bool flow_active_insn_p (rtx
);
57 /* Like active_insn_p, except keep the return value clobber around
61 flow_active_insn_p (rtx insn
)
63 if (active_insn_p (insn
))
66 /* A clobber of the function return value exists for buggy
67 programs that fail to return a value. Its effect is to
68 keep the return value from being live across the entire
69 function. If we allow it to be skipped, we introduce the
70 possibility for register livetime aborts. */
71 if (GET_CODE (PATTERN (insn
)) == CLOBBER
72 && REG_P (XEXP (PATTERN (insn
), 0))
73 && REG_FUNCTION_VALUE_P (XEXP (PATTERN (insn
), 0)))
79 /* Return true if the block has no effect and only forwards control flow to
80 its single destination. */
83 forwarder_block_p (basic_block bb
)
87 if (bb
== EXIT_BLOCK_PTR
|| bb
== ENTRY_BLOCK_PTR
88 || EDGE_COUNT (bb
->succs
) != 1)
91 for (insn
= BB_HEAD (bb
); insn
!= BB_END (bb
); insn
= NEXT_INSN (insn
))
92 if (INSN_P (insn
) && flow_active_insn_p (insn
))
95 return (!INSN_P (insn
)
96 || (JUMP_P (insn
) && simplejump_p (insn
))
97 || !flow_active_insn_p (insn
));
100 /* Return nonzero if we can reach target from src by falling through. */
103 can_fallthru (basic_block src
, basic_block target
)
105 rtx insn
= BB_END (src
);
110 if (target
== EXIT_BLOCK_PTR
)
112 if (src
->next_bb
!= target
)
114 FOR_EACH_EDGE (e
, ei
, src
->succs
)
115 if (e
->dest
== EXIT_BLOCK_PTR
116 && e
->flags
& EDGE_FALLTHRU
)
119 insn2
= BB_HEAD (target
);
120 if (insn2
&& !active_insn_p (insn2
))
121 insn2
= next_active_insn (insn2
);
123 /* ??? Later we may add code to move jump tables offline. */
124 return next_active_insn (insn
) == insn2
;
127 /* Return nonzero if we could reach target from src by falling through,
128 if the target was made adjacent. If we already have a fall-through
129 edge to the exit block, we can't do that. */
131 could_fall_through (basic_block src
, basic_block target
)
136 if (target
== EXIT_BLOCK_PTR
)
138 FOR_EACH_EDGE (e
, ei
, src
->succs
)
139 if (e
->dest
== EXIT_BLOCK_PTR
140 && e
->flags
& EDGE_FALLTHRU
)
145 /* Mark the back edges in DFS traversal.
146 Return nonzero if a loop (natural or otherwise) is present.
147 Inspired by Depth_First_Search_PP described in:
149 Advanced Compiler Design and Implementation
151 Morgan Kaufmann, 1997
153 and heavily borrowed from flow_depth_first_order_compute. */
156 mark_dfs_back_edges (void)
158 edge_iterator
*stack
;
167 /* Allocate the preorder and postorder number arrays. */
168 pre
= xcalloc (last_basic_block
, sizeof (int));
169 post
= xcalloc (last_basic_block
, sizeof (int));
171 /* Allocate stack for back-tracking up CFG. */
172 stack
= xmalloc ((n_basic_blocks
+ 1) * sizeof (edge_iterator
));
175 /* Allocate bitmap to track nodes that have been visited. */
176 visited
= sbitmap_alloc (last_basic_block
);
178 /* None of the nodes in the CFG have been visited yet. */
179 sbitmap_zero (visited
);
181 /* Push the first edge on to the stack. */
182 stack
[sp
++] = ei_start (ENTRY_BLOCK_PTR
->succs
);
190 /* Look at the edge on the top of the stack. */
192 src
= ei_edge (ei
)->src
;
193 dest
= ei_edge (ei
)->dest
;
194 ei_edge (ei
)->flags
&= ~EDGE_DFS_BACK
;
196 /* Check if the edge destination has been visited yet. */
197 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
199 /* Mark that we have visited the destination. */
200 SET_BIT (visited
, dest
->index
);
202 pre
[dest
->index
] = prenum
++;
203 if (EDGE_COUNT (dest
->succs
) > 0)
205 /* Since the DEST node has been visited for the first
206 time, check its successors. */
207 stack
[sp
++] = ei_start (dest
->succs
);
210 post
[dest
->index
] = postnum
++;
214 if (dest
!= EXIT_BLOCK_PTR
&& src
!= ENTRY_BLOCK_PTR
215 && pre
[src
->index
] >= pre
[dest
->index
]
216 && post
[dest
->index
] == 0)
217 ei_edge (ei
)->flags
|= EDGE_DFS_BACK
, found
= true;
219 if (ei_one_before_end_p (ei
) && src
!= ENTRY_BLOCK_PTR
)
220 post
[src
->index
] = postnum
++;
222 if (!ei_one_before_end_p (ei
))
223 ei_next (&stack
[sp
- 1]);
232 sbitmap_free (visited
);
237 /* Set the flag EDGE_CAN_FALLTHRU for edges that can be fallthru. */
240 set_edge_can_fallthru_flag (void)
249 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
251 e
->flags
&= ~EDGE_CAN_FALLTHRU
;
253 /* The FALLTHRU edge is also CAN_FALLTHRU edge. */
254 if (e
->flags
& EDGE_FALLTHRU
)
255 e
->flags
|= EDGE_CAN_FALLTHRU
;
258 /* If the BB ends with an invertible condjump all (2) edges are
259 CAN_FALLTHRU edges. */
260 if (EDGE_COUNT (bb
->succs
) != 2)
262 if (!any_condjump_p (BB_END (bb
)))
264 if (!invert_jump (BB_END (bb
), JUMP_LABEL (BB_END (bb
)), 0))
266 invert_jump (BB_END (bb
), JUMP_LABEL (BB_END (bb
)), 0);
267 EDGE_SUCC (bb
, 0)->flags
|= EDGE_CAN_FALLTHRU
;
268 EDGE_SUCC (bb
, 1)->flags
|= EDGE_CAN_FALLTHRU
;
272 /* Find unreachable blocks. An unreachable block will have 0 in
273 the reachable bit in block->flags. A nonzero value indicates the
274 block is reachable. */
277 find_unreachable_blocks (void)
281 basic_block
*tos
, *worklist
, bb
;
283 tos
= worklist
= xmalloc (sizeof (basic_block
) * n_basic_blocks
);
285 /* Clear all the reachability flags. */
288 bb
->flags
&= ~BB_REACHABLE
;
290 /* Add our starting points to the worklist. Almost always there will
291 be only one. It isn't inconceivable that we might one day directly
292 support Fortran alternate entry points. */
294 FOR_EACH_EDGE (e
, ei
, ENTRY_BLOCK_PTR
->succs
)
298 /* Mark the block reachable. */
299 e
->dest
->flags
|= BB_REACHABLE
;
302 /* Iterate: find everything reachable from what we've already seen. */
304 while (tos
!= worklist
)
306 basic_block b
= *--tos
;
308 FOR_EACH_EDGE (e
, ei
, b
->succs
)
309 if (!(e
->dest
->flags
& BB_REACHABLE
))
312 e
->dest
->flags
|= BB_REACHABLE
;
319 /* Functions to access an edge list with a vector representation.
320 Enough data is kept such that given an index number, the
321 pred and succ that edge represents can be determined, or
322 given a pred and a succ, its index number can be returned.
323 This allows algorithms which consume a lot of memory to
324 represent the normally full matrix of edge (pred,succ) with a
325 single indexed vector, edge (EDGE_INDEX (pred, succ)), with no
326 wasted space in the client code due to sparse flow graphs. */
328 /* This functions initializes the edge list. Basically the entire
329 flowgraph is processed, and all edges are assigned a number,
330 and the data structure is filled in. */
333 create_edge_list (void)
335 struct edge_list
*elist
;
342 block_count
= n_basic_blocks
+ 2; /* Include the entry and exit blocks. */
346 /* Determine the number of edges in the flow graph by counting successor
347 edges on each basic block. */
348 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
350 num_edges
+= EDGE_COUNT (bb
->succs
);
353 elist
= xmalloc (sizeof (struct edge_list
));
354 elist
->num_blocks
= block_count
;
355 elist
->num_edges
= num_edges
;
356 elist
->index_to_edge
= xmalloc (sizeof (edge
) * num_edges
);
360 /* Follow successors of blocks, and register these edges. */
361 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
362 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
363 elist
->index_to_edge
[num_edges
++] = e
;
368 /* This function free's memory associated with an edge list. */
371 free_edge_list (struct edge_list
*elist
)
375 free (elist
->index_to_edge
);
380 /* This function provides debug output showing an edge list. */
383 print_edge_list (FILE *f
, struct edge_list
*elist
)
387 fprintf (f
, "Compressed edge list, %d BBs + entry & exit, and %d edges\n",
388 elist
->num_blocks
- 2, elist
->num_edges
);
390 for (x
= 0; x
< elist
->num_edges
; x
++)
392 fprintf (f
, " %-4d - edge(", x
);
393 if (INDEX_EDGE_PRED_BB (elist
, x
) == ENTRY_BLOCK_PTR
)
394 fprintf (f
, "entry,");
396 fprintf (f
, "%d,", INDEX_EDGE_PRED_BB (elist
, x
)->index
);
398 if (INDEX_EDGE_SUCC_BB (elist
, x
) == EXIT_BLOCK_PTR
)
399 fprintf (f
, "exit)\n");
401 fprintf (f
, "%d)\n", INDEX_EDGE_SUCC_BB (elist
, x
)->index
);
405 /* This function provides an internal consistency check of an edge list,
406 verifying that all edges are present, and that there are no
410 verify_edge_list (FILE *f
, struct edge_list
*elist
)
412 int pred
, succ
, index
;
414 basic_block bb
, p
, s
;
417 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
419 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
421 pred
= e
->src
->index
;
422 succ
= e
->dest
->index
;
423 index
= EDGE_INDEX (elist
, e
->src
, e
->dest
);
424 if (index
== EDGE_INDEX_NO_EDGE
)
426 fprintf (f
, "*p* No index for edge from %d to %d\n", pred
, succ
);
430 if (INDEX_EDGE_PRED_BB (elist
, index
)->index
!= pred
)
431 fprintf (f
, "*p* Pred for index %d should be %d not %d\n",
432 index
, pred
, INDEX_EDGE_PRED_BB (elist
, index
)->index
);
433 if (INDEX_EDGE_SUCC_BB (elist
, index
)->index
!= succ
)
434 fprintf (f
, "*p* Succ for index %d should be %d not %d\n",
435 index
, succ
, INDEX_EDGE_SUCC_BB (elist
, index
)->index
);
439 /* We've verified that all the edges are in the list, now lets make sure
440 there are no spurious edges in the list. */
442 FOR_BB_BETWEEN (p
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
443 FOR_BB_BETWEEN (s
, ENTRY_BLOCK_PTR
->next_bb
, NULL
, next_bb
)
447 FOR_EACH_EDGE (e
, ei
, p
->succs
)
454 FOR_EACH_EDGE (e
, ei
, s
->preds
)
461 if (EDGE_INDEX (elist
, p
, s
)
462 == EDGE_INDEX_NO_EDGE
&& found_edge
!= 0)
463 fprintf (f
, "*** Edge (%d, %d) appears to not have an index\n",
465 if (EDGE_INDEX (elist
, p
, s
)
466 != EDGE_INDEX_NO_EDGE
&& found_edge
== 0)
467 fprintf (f
, "*** Edge (%d, %d) has index %d, but there is no edge\n",
468 p
->index
, s
->index
, EDGE_INDEX (elist
, p
, s
));
472 /* Given PRED and SUCC blocks, return the edge which connects the blocks.
473 If no such edge exists, return NULL. */
476 find_edge (basic_block pred
, basic_block succ
)
481 FOR_EACH_EDGE (e
, ei
, pred
->succs
)
488 /* This routine will determine what, if any, edge there is between
489 a specified predecessor and successor. */
492 find_edge_index (struct edge_list
*edge_list
, basic_block pred
, basic_block succ
)
496 for (x
= 0; x
< NUM_EDGES (edge_list
); x
++)
497 if (INDEX_EDGE_PRED_BB (edge_list
, x
) == pred
498 && INDEX_EDGE_SUCC_BB (edge_list
, x
) == succ
)
501 return (EDGE_INDEX_NO_EDGE
);
504 /* Dump the list of basic blocks in the bitmap NODES. */
507 flow_nodes_print (const char *str
, const sbitmap nodes
, FILE *file
)
514 fprintf (file
, "%s { ", str
);
515 EXECUTE_IF_SET_IN_SBITMAP (nodes
, 0, node
, {fprintf (file
, "%d ", node
);});
519 /* Dump the list of edges in the array EDGE_LIST. */
522 flow_edge_list_print (const char *str
, const edge
*edge_list
, int num_edges
, FILE *file
)
529 fprintf (file
, "%s { ", str
);
530 for (i
= 0; i
< num_edges
; i
++)
531 fprintf (file
, "%d->%d ", edge_list
[i
]->src
->index
,
532 edge_list
[i
]->dest
->index
);
538 /* This routine will remove any fake predecessor edges for a basic block.
539 When the edge is removed, it is also removed from whatever successor
543 remove_fake_predecessors (basic_block bb
)
548 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
550 if ((e
->flags
& EDGE_FAKE
) == EDGE_FAKE
)
557 /* This routine will remove all fake edges from the flow graph. If
558 we remove all fake successors, it will automatically remove all
559 fake predecessors. */
562 remove_fake_edges (void)
566 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
->next_bb
, NULL
, next_bb
)
567 remove_fake_predecessors (bb
);
570 /* This routine will remove all fake edges to the EXIT_BLOCK. */
573 remove_fake_exit_edges (void)
575 remove_fake_predecessors (EXIT_BLOCK_PTR
);
579 /* This function will add a fake edge between any block which has no
580 successors, and the exit block. Some data flow equations require these
584 add_noreturn_fake_exit_edges (void)
589 if (EDGE_COUNT (bb
->succs
) == 0)
590 make_single_succ_edge (bb
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
593 /* This function adds a fake edge between any infinite loops to the
594 exit block. Some optimizations require a path from each node to
597 See also Morgan, Figure 3.10, pp. 82-83.
599 The current implementation is ugly, not attempting to minimize the
600 number of inserted fake edges. To reduce the number of fake edges
601 to insert, add fake edges from _innermost_ loops containing only
602 nodes not reachable from the exit block. */
605 connect_infinite_loops_to_exit (void)
607 basic_block unvisited_block
;
608 struct depth_first_search_dsS dfs_ds
;
610 /* Perform depth-first search in the reverse graph to find nodes
611 reachable from the exit block. */
612 flow_dfs_compute_reverse_init (&dfs_ds
);
613 flow_dfs_compute_reverse_add_bb (&dfs_ds
, EXIT_BLOCK_PTR
);
615 /* Repeatedly add fake edges, updating the unreachable nodes. */
618 unvisited_block
= flow_dfs_compute_reverse_execute (&dfs_ds
);
619 if (!unvisited_block
)
622 make_edge (unvisited_block
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
623 flow_dfs_compute_reverse_add_bb (&dfs_ds
, unvisited_block
);
626 flow_dfs_compute_reverse_finish (&dfs_ds
);
630 /* Compute reverse top sort order. */
633 flow_reverse_top_sort_order_compute (int *rts_order
)
635 edge_iterator
*stack
;
640 /* Allocate stack for back-tracking up CFG. */
641 stack
= xmalloc ((n_basic_blocks
+ 1) * sizeof (edge_iterator
));
644 /* Allocate bitmap to track nodes that have been visited. */
645 visited
= sbitmap_alloc (last_basic_block
);
647 /* None of the nodes in the CFG have been visited yet. */
648 sbitmap_zero (visited
);
650 /* Push the first edge on to the stack. */
651 stack
[sp
++] = ei_start (ENTRY_BLOCK_PTR
->succs
);
659 /* Look at the edge on the top of the stack. */
661 src
= ei_edge (ei
)->src
;
662 dest
= ei_edge (ei
)->dest
;
664 /* Check if the edge destination has been visited yet. */
665 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
667 /* Mark that we have visited the destination. */
668 SET_BIT (visited
, dest
->index
);
670 if (EDGE_COUNT (dest
->succs
) > 0)
671 /* Since the DEST node has been visited for the first
672 time, check its successors. */
673 stack
[sp
++] = ei_start (dest
->succs
);
675 rts_order
[postnum
++] = dest
->index
;
679 if (ei_one_before_end_p (ei
) && src
!= ENTRY_BLOCK_PTR
)
680 rts_order
[postnum
++] = src
->index
;
682 if (!ei_one_before_end_p (ei
))
683 ei_next (&stack
[sp
- 1]);
690 sbitmap_free (visited
);
693 /* Compute the depth first search order and store in the array
694 DFS_ORDER if nonzero, marking the nodes visited in VISITED. If
695 RC_ORDER is nonzero, return the reverse completion number for each
696 node. Returns the number of nodes visited. A depth first search
697 tries to get as far away from the starting point as quickly as
701 flow_depth_first_order_compute (int *dfs_order
, int *rc_order
)
703 edge_iterator
*stack
;
706 int rcnum
= n_basic_blocks
- 1;
709 /* Allocate stack for back-tracking up CFG. */
710 stack
= xmalloc ((n_basic_blocks
+ 1) * sizeof (edge_iterator
));
713 /* Allocate bitmap to track nodes that have been visited. */
714 visited
= sbitmap_alloc (last_basic_block
);
716 /* None of the nodes in the CFG have been visited yet. */
717 sbitmap_zero (visited
);
719 /* Push the first edge on to the stack. */
720 stack
[sp
++] = ei_start (ENTRY_BLOCK_PTR
->succs
);
728 /* Look at the edge on the top of the stack. */
730 src
= ei_edge (ei
)->src
;
731 dest
= ei_edge (ei
)->dest
;
733 /* Check if the edge destination has been visited yet. */
734 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
736 /* Mark that we have visited the destination. */
737 SET_BIT (visited
, dest
->index
);
740 dfs_order
[dfsnum
] = dest
->index
;
744 if (EDGE_COUNT (dest
->succs
) > 0)
745 /* Since the DEST node has been visited for the first
746 time, check its successors. */
747 stack
[sp
++] = ei_start (dest
->succs
);
749 /* There are no successors for the DEST node so assign
750 its reverse completion number. */
751 rc_order
[rcnum
--] = dest
->index
;
755 if (ei_one_before_end_p (ei
) && src
!= ENTRY_BLOCK_PTR
757 /* There are no more successors for the SRC node
758 so assign its reverse completion number. */
759 rc_order
[rcnum
--] = src
->index
;
761 if (!ei_one_before_end_p (ei
))
762 ei_next (&stack
[sp
- 1]);
769 sbitmap_free (visited
);
771 /* The number of nodes visited should be the number of blocks. */
772 gcc_assert (dfsnum
== n_basic_blocks
);
780 struct dfst_node
**node
;
781 struct dfst_node
*up
;
784 /* Compute a preorder transversal ordering such that a sub-tree which
785 is the source of a cross edge appears before the sub-tree which is
786 the destination of the cross edge. This allows for easy detection
787 of all the entry blocks for a loop.
789 The ordering is compute by:
791 1) Generating a depth first spanning tree.
793 2) Walking the resulting tree from right to left. */
796 flow_preorder_transversal_compute (int *pot_order
)
798 edge_iterator
*stack
, ei
;
803 struct dfst_node
*node
;
804 struct dfst_node
*dfst
;
807 /* Allocate stack for back-tracking up CFG. */
808 stack
= xmalloc ((n_basic_blocks
+ 1) * sizeof (edge
));
811 /* Allocate the tree. */
812 dfst
= xcalloc (last_basic_block
, sizeof (struct dfst_node
));
816 max_successors
= EDGE_COUNT (bb
->succs
);
819 ? xcalloc (max_successors
, sizeof (struct dfst_node
*)) : NULL
);
822 /* Allocate bitmap to track nodes that have been visited. */
823 visited
= sbitmap_alloc (last_basic_block
);
825 /* None of the nodes in the CFG have been visited yet. */
826 sbitmap_zero (visited
);
828 /* Push the first edge on to the stack. */
829 stack
[sp
++] = ei_start (ENTRY_BLOCK_PTR
->succs
);
836 /* Look at the edge on the top of the stack. */
838 src
= ei_edge (ei
)->src
;
839 dest
= ei_edge (ei
)->dest
;
841 /* Check if the edge destination has been visited yet. */
842 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
844 /* Mark that we have visited the destination. */
845 SET_BIT (visited
, dest
->index
);
847 /* Add the destination to the preorder tree. */
848 if (src
!= ENTRY_BLOCK_PTR
)
850 dfst
[src
->index
].node
[dfst
[src
->index
].nnodes
++]
851 = &dfst
[dest
->index
];
852 dfst
[dest
->index
].up
= &dfst
[src
->index
];
855 if (EDGE_COUNT (dest
->succs
) > 0)
856 /* Since the DEST node has been visited for the first
857 time, check its successors. */
858 stack
[sp
++] = ei_start (dest
->succs
);
861 else if (! ei_one_before_end_p (ei
))
862 ei_next (&stack
[sp
- 1]);
868 sbitmap_free (visited
);
870 /* Record the preorder transversal order by
871 walking the tree from right to left. */
874 node
= &dfst
[ENTRY_BLOCK_PTR
->next_bb
->index
];
881 node
= node
->node
[--node
->nnodes
];
882 pot_order
[i
++] = node
- dfst
;
890 for (i
= 0; i
< last_basic_block
; i
++)
897 /* Compute the depth first search order on the _reverse_ graph and
898 store in the array DFS_ORDER, marking the nodes visited in VISITED.
899 Returns the number of nodes visited.
901 The computation is split into three pieces:
903 flow_dfs_compute_reverse_init () creates the necessary data
906 flow_dfs_compute_reverse_add_bb () adds a basic block to the data
907 structures. The block will start the search.
909 flow_dfs_compute_reverse_execute () continues (or starts) the
910 search using the block on the top of the stack, stopping when the
913 flow_dfs_compute_reverse_finish () destroys the necessary data
916 Thus, the user will probably call ..._init(), call ..._add_bb() to
917 add a beginning basic block to the stack, call ..._execute(),
918 possibly add another bb to the stack and again call ..._execute(),
919 ..., and finally call _finish(). */
921 /* Initialize the data structures used for depth-first search on the
922 reverse graph. If INITIALIZE_STACK is nonzero, the exit block is
923 added to the basic block stack. DATA is the current depth-first
924 search context. If INITIALIZE_STACK is nonzero, there is an
925 element on the stack. */
928 flow_dfs_compute_reverse_init (depth_first_search_ds data
)
930 /* Allocate stack for back-tracking up CFG. */
931 data
->stack
= xmalloc ((n_basic_blocks
- (INVALID_BLOCK
+ 1))
932 * sizeof (basic_block
));
935 /* Allocate bitmap to track nodes that have been visited. */
936 data
->visited_blocks
= sbitmap_alloc (last_basic_block
- (INVALID_BLOCK
+ 1));
938 /* None of the nodes in the CFG have been visited yet. */
939 sbitmap_zero (data
->visited_blocks
);
944 /* Add the specified basic block to the top of the dfs data
945 structures. When the search continues, it will start at the
949 flow_dfs_compute_reverse_add_bb (depth_first_search_ds data
, basic_block bb
)
951 data
->stack
[data
->sp
++] = bb
;
952 SET_BIT (data
->visited_blocks
, bb
->index
- (INVALID_BLOCK
+ 1));
955 /* Continue the depth-first search through the reverse graph starting with the
956 block at the stack's top and ending when the stack is empty. Visited nodes
957 are marked. Returns an unvisited basic block, or NULL if there is none
961 flow_dfs_compute_reverse_execute (depth_first_search_ds data
)
969 bb
= data
->stack
[--data
->sp
];
971 /* Perform depth-first search on adjacent vertices. */
972 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
973 if (!TEST_BIT (data
->visited_blocks
,
974 e
->src
->index
- (INVALID_BLOCK
+ 1)))
975 flow_dfs_compute_reverse_add_bb (data
, e
->src
);
978 /* Determine if there are unvisited basic blocks. */
979 FOR_BB_BETWEEN (bb
, EXIT_BLOCK_PTR
, NULL
, prev_bb
)
980 if (!TEST_BIT (data
->visited_blocks
, bb
->index
- (INVALID_BLOCK
+ 1)))
986 /* Destroy the data structures needed for depth-first search on the
990 flow_dfs_compute_reverse_finish (depth_first_search_ds data
)
993 sbitmap_free (data
->visited_blocks
);
996 /* Performs dfs search from BB over vertices satisfying PREDICATE;
997 if REVERSE, go against direction of edges. Returns number of blocks
998 found and their list in RSLT. RSLT can contain at most RSLT_MAX items. */
1000 dfs_enumerate_from (basic_block bb
, int reverse
,
1001 bool (*predicate
) (basic_block
, void *),
1002 basic_block
*rslt
, int rslt_max
, void *data
)
1004 basic_block
*st
, lbb
;
1007 st
= xcalloc (rslt_max
, sizeof (basic_block
));
1008 rslt
[tv
++] = st
[sp
++] = bb
;
1009 bb
->flags
|= BB_VISITED
;
1017 FOR_EACH_EDGE (e
, ei
, lbb
->preds
)
1018 if (!(e
->src
->flags
& BB_VISITED
) && predicate (e
->src
, data
))
1020 gcc_assert (tv
!= rslt_max
);
1021 rslt
[tv
++] = st
[sp
++] = e
->src
;
1022 e
->src
->flags
|= BB_VISITED
;
1027 FOR_EACH_EDGE (e
, ei
, lbb
->succs
)
1028 if (!(e
->dest
->flags
& BB_VISITED
) && predicate (e
->dest
, data
))
1030 gcc_assert (tv
!= rslt_max
);
1031 rslt
[tv
++] = st
[sp
++] = e
->dest
;
1032 e
->dest
->flags
|= BB_VISITED
;
1037 for (sp
= 0; sp
< tv
; sp
++)
1038 rslt
[sp
]->flags
&= ~BB_VISITED
;
1043 /* Computing the Dominance Frontier:
1045 As described in Morgan, section 3.5, this may be done simply by
1046 walking the dominator tree bottom-up, computing the frontier for
1047 the children before the parent. When considering a block B,
1048 there are two cases:
1050 (1) A flow graph edge leaving B that does not lead to a child
1051 of B in the dominator tree must be a block that is either equal
1052 to B or not dominated by B. Such blocks belong in the frontier
1055 (2) Consider a block X in the frontier of one of the children C
1056 of B. If X is not equal to B and is not dominated by B, it
1057 is in the frontier of B. */
1060 compute_dominance_frontiers_1 (bitmap
*frontiers
, basic_block bb
, sbitmap done
)
1066 SET_BIT (done
, bb
->index
);
1068 /* Do the frontier of the children first. Not all children in the
1069 dominator tree (blocks dominated by this one) are children in the
1070 CFG, so check all blocks. */
1071 for (c
= first_dom_son (CDI_DOMINATORS
, bb
);
1073 c
= next_dom_son (CDI_DOMINATORS
, c
))
1075 if (! TEST_BIT (done
, c
->index
))
1076 compute_dominance_frontiers_1 (frontiers
, c
, done
);
1079 /* Find blocks conforming to rule (1) above. */
1080 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
1082 if (e
->dest
== EXIT_BLOCK_PTR
)
1084 if (get_immediate_dominator (CDI_DOMINATORS
, e
->dest
) != bb
)
1085 bitmap_set_bit (frontiers
[bb
->index
], e
->dest
->index
);
1088 /* Find blocks conforming to rule (2). */
1089 for (c
= first_dom_son (CDI_DOMINATORS
, bb
);
1091 c
= next_dom_son (CDI_DOMINATORS
, c
))
1096 EXECUTE_IF_SET_IN_BITMAP (frontiers
[c
->index
], 0, x
, bi
)
1098 if (get_immediate_dominator (CDI_DOMINATORS
, BASIC_BLOCK (x
)) != bb
)
1099 bitmap_set_bit (frontiers
[bb
->index
], x
);
1106 compute_dominance_frontiers (bitmap
*frontiers
)
1108 sbitmap done
= sbitmap_alloc (last_basic_block
);
1110 timevar_push (TV_DOM_FRONTIERS
);
1112 sbitmap_zero (done
);
1114 compute_dominance_frontiers_1 (frontiers
, EDGE_SUCC (ENTRY_BLOCK_PTR
, 0)->dest
, done
);
1116 sbitmap_free (done
);
1118 timevar_pop (TV_DOM_FRONTIERS
);