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 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. */
26 #include "hard-reg-set.h"
27 #include "basic-block.h"
28 #include "insn-config.h"
33 /* Store the data structures necessary for depth-first search. */
34 struct depth_first_search_dsS
{
35 /* stack for backtracking during the algorithm */
38 /* number of edges in the stack. That is, positions 0, ..., sp-1
42 /* record of basic blocks already seen by depth-first search */
43 sbitmap visited_blocks
;
45 typedef struct depth_first_search_dsS
*depth_first_search_ds
;
47 static void flow_dfs_compute_reverse_init
48 PARAMS ((depth_first_search_ds
));
49 static void flow_dfs_compute_reverse_add_bb
50 PARAMS ((depth_first_search_ds
, basic_block
));
51 static basic_block flow_dfs_compute_reverse_execute
52 PARAMS ((depth_first_search_ds
));
53 static void flow_dfs_compute_reverse_finish
54 PARAMS ((depth_first_search_ds
));
55 static void remove_fake_successors
PARAMS ((basic_block
));
56 static bool need_fake_edge_p
PARAMS ((rtx
));
57 static bool flow_active_insn_p
PARAMS ((rtx
));
59 /* Like active_insn_p, except keep the return value clobber around
63 flow_active_insn_p (insn
)
66 if (active_insn_p (insn
))
69 /* A clobber of the function return value exists for buggy
70 programs that fail to return a value. Its effect is to
71 keep the return value from being live across the entire
72 function. If we allow it to be skipped, we introduce the
73 possibility for register livetime aborts. */
74 if (GET_CODE (PATTERN (insn
)) == CLOBBER
75 && GET_CODE (XEXP (PATTERN (insn
), 0)) == REG
76 && REG_FUNCTION_VALUE_P (XEXP (PATTERN (insn
), 0)))
82 /* Return true if the block has no effect and only forwards control flow to
83 its single destination. */
86 forwarder_block_p (bb
)
91 if (bb
== EXIT_BLOCK_PTR
|| bb
== ENTRY_BLOCK_PTR
92 || !bb
->succ
|| bb
->succ
->succ_next
)
95 for (insn
= bb
->head
; insn
!= bb
->end
; insn
= NEXT_INSN (insn
))
96 if (INSN_P (insn
) && flow_active_insn_p (insn
))
99 return (!INSN_P (insn
)
100 || (GET_CODE (insn
) == JUMP_INSN
&& simplejump_p (insn
))
101 || !flow_active_insn_p (insn
));
104 /* Return nonzero if we can reach target from src by falling through. */
107 can_fallthru (src
, target
)
108 basic_block src
, target
;
111 rtx insn2
= target
->head
;
113 if (src
->next_bb
!= target
)
116 if (!active_insn_p (insn2
))
117 insn2
= next_active_insn (insn2
);
119 /* ??? Later we may add code to move jump tables offline. */
120 return next_active_insn (insn
) == insn2
;
123 /* Mark the back edges in DFS traversal.
124 Return nonzero if a loop (natural or otherwise) is present.
125 Inspired by Depth_First_Search_PP described in:
127 Advanced Compiler Design and Implementation
129 Morgan Kaufmann, 1997
131 and heavily borrowed from flow_depth_first_order_compute. */
134 mark_dfs_back_edges ()
145 /* Allocate the preorder and postorder number arrays. */
146 pre
= (int *) xcalloc (last_basic_block
, sizeof (int));
147 post
= (int *) xcalloc (last_basic_block
, sizeof (int));
149 /* Allocate stack for back-tracking up CFG. */
150 stack
= (edge
*) xmalloc ((n_basic_blocks
+ 1) * sizeof (edge
));
153 /* Allocate bitmap to track nodes that have been visited. */
154 visited
= sbitmap_alloc (last_basic_block
);
156 /* None of the nodes in the CFG have been visited yet. */
157 sbitmap_zero (visited
);
159 /* Push the first edge on to the stack. */
160 stack
[sp
++] = ENTRY_BLOCK_PTR
->succ
;
168 /* Look at the edge on the top of the stack. */
172 e
->flags
&= ~EDGE_DFS_BACK
;
174 /* Check if the edge destination has been visited yet. */
175 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
177 /* Mark that we have visited the destination. */
178 SET_BIT (visited
, dest
->index
);
180 pre
[dest
->index
] = prenum
++;
183 /* Since the DEST node has been visited for the first
184 time, check its successors. */
185 stack
[sp
++] = dest
->succ
;
188 post
[dest
->index
] = postnum
++;
192 if (dest
!= EXIT_BLOCK_PTR
&& src
!= ENTRY_BLOCK_PTR
193 && pre
[src
->index
] >= pre
[dest
->index
]
194 && post
[dest
->index
] == 0)
195 e
->flags
|= EDGE_DFS_BACK
, found
= true;
197 if (! e
->succ_next
&& src
!= ENTRY_BLOCK_PTR
)
198 post
[src
->index
] = postnum
++;
201 stack
[sp
- 1] = e
->succ_next
;
210 sbitmap_free (visited
);
215 /* Set the flag EDGE_CAN_FALLTHRU for edges that can be fallthru. */
218 set_edge_can_fallthru_flag ()
226 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
228 e
->flags
&= ~EDGE_CAN_FALLTHRU
;
230 /* The FALLTHRU edge is also CAN_FALLTHRU edge. */
231 if (e
->flags
& EDGE_FALLTHRU
)
232 e
->flags
|= EDGE_CAN_FALLTHRU
;
235 /* If the BB ends with an invertable condjump all (2) edges are
236 CAN_FALLTHRU edges. */
237 if (!bb
->succ
|| !bb
->succ
->succ_next
|| bb
->succ
->succ_next
->succ_next
)
239 if (!any_condjump_p (bb
->end
))
241 if (!invert_jump (bb
->end
, JUMP_LABEL (bb
->end
), 0))
243 invert_jump (bb
->end
, JUMP_LABEL (bb
->end
), 0);
244 bb
->succ
->flags
|= EDGE_CAN_FALLTHRU
;
245 bb
->succ
->succ_next
->flags
|= EDGE_CAN_FALLTHRU
;
249 /* Return true if we need to add fake edge to exit.
250 Helper function for the flow_call_edges_add. */
253 need_fake_edge_p (insn
)
259 if ((GET_CODE (insn
) == CALL_INSN
260 && !SIBLING_CALL_P (insn
)
261 && !find_reg_note (insn
, REG_NORETURN
, NULL
)
262 && !find_reg_note (insn
, REG_ALWAYS_RETURN
, NULL
)
263 && !CONST_OR_PURE_CALL_P (insn
)))
266 return ((GET_CODE (PATTERN (insn
)) == ASM_OPERANDS
267 && MEM_VOLATILE_P (PATTERN (insn
)))
268 || (GET_CODE (PATTERN (insn
)) == PARALLEL
269 && asm_noperands (insn
) != -1
270 && MEM_VOLATILE_P (XVECEXP (PATTERN (insn
), 0, 0)))
271 || GET_CODE (PATTERN (insn
)) == ASM_INPUT
);
274 /* Add fake edges to the function exit for any non constant and non noreturn
275 calls, volatile inline assembly in the bitmap of blocks specified by
276 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
279 The goal is to expose cases in which entering a basic block does not imply
280 that all subsequent instructions must be executed. */
283 flow_call_edges_add (blocks
)
287 int blocks_split
= 0;
288 int last_bb
= last_basic_block
;
289 bool check_last_block
= false;
291 if (n_basic_blocks
== 0)
295 check_last_block
= true;
297 check_last_block
= TEST_BIT (blocks
, EXIT_BLOCK_PTR
->prev_bb
->index
);
299 /* In the last basic block, before epilogue generation, there will be
300 a fallthru edge to EXIT. Special care is required if the last insn
301 of the last basic block is a call because make_edge folds duplicate
302 edges, which would result in the fallthru edge also being marked
303 fake, which would result in the fallthru edge being removed by
304 remove_fake_edges, which would result in an invalid CFG.
306 Moreover, we can't elide the outgoing fake edge, since the block
307 profiler needs to take this into account in order to solve the minimal
308 spanning tree in the case that the call doesn't return.
310 Handle this by adding a dummy instruction in a new last basic block. */
311 if (check_last_block
)
313 basic_block bb
= EXIT_BLOCK_PTR
->prev_bb
;
316 /* Back up past insns that must be kept in the same block as a call. */
317 while (insn
!= bb
->head
318 && keep_with_call_p (insn
))
319 insn
= PREV_INSN (insn
);
321 if (need_fake_edge_p (insn
))
325 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
326 if (e
->dest
== EXIT_BLOCK_PTR
)
328 insert_insn_on_edge (gen_rtx_USE (VOIDmode
, const0_rtx
), e
);
329 commit_edge_insertions ();
335 /* Now add fake edges to the function exit for any non constant
336 calls since there is no way that we can determine if they will
339 for (i
= 0; i
< last_bb
; i
++)
341 basic_block bb
= BASIC_BLOCK (i
);
348 if (blocks
&& !TEST_BIT (blocks
, i
))
351 for (insn
= bb
->end
; ; insn
= prev_insn
)
353 prev_insn
= PREV_INSN (insn
);
354 if (need_fake_edge_p (insn
))
357 rtx split_at_insn
= insn
;
359 /* Don't split the block between a call and an insn that should
360 remain in the same block as the call. */
361 if (GET_CODE (insn
) == CALL_INSN
)
362 while (split_at_insn
!= bb
->end
363 && keep_with_call_p (NEXT_INSN (split_at_insn
)))
364 split_at_insn
= NEXT_INSN (split_at_insn
);
366 /* The handling above of the final block before the epilogue
367 should be enough to verify that there is no edge to the exit
368 block in CFG already. Calling make_edge in such case would
369 cause us to mark that edge as fake and remove it later. */
371 #ifdef ENABLE_CHECKING
372 if (split_at_insn
== bb
->end
)
373 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
374 if (e
->dest
== EXIT_BLOCK_PTR
)
378 /* Note that the following may create a new basic block
379 and renumber the existing basic blocks. */
380 if (split_at_insn
!= bb
->end
)
382 e
= split_block (bb
, split_at_insn
);
387 make_edge (bb
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
390 if (insn
== bb
->head
)
401 /* Find unreachable blocks. An unreachable block will have 0 in
402 the reachable bit in block->flags. A nonzero value indicates the
403 block is reachable. */
406 find_unreachable_blocks ()
409 basic_block
*tos
, *worklist
, bb
;
412 (basic_block
*) xmalloc (sizeof (basic_block
) * n_basic_blocks
);
414 /* Clear all the reachability flags. */
417 bb
->flags
&= ~BB_REACHABLE
;
419 /* Add our starting points to the worklist. Almost always there will
420 be only one. It isn't inconceivable that we might one day directly
421 support Fortran alternate entry points. */
423 for (e
= ENTRY_BLOCK_PTR
->succ
; e
; e
= e
->succ_next
)
427 /* Mark the block reachable. */
428 e
->dest
->flags
|= BB_REACHABLE
;
431 /* Iterate: find everything reachable from what we've already seen. */
433 while (tos
!= worklist
)
435 basic_block b
= *--tos
;
437 for (e
= b
->succ
; e
; e
= e
->succ_next
)
438 if (!(e
->dest
->flags
& BB_REACHABLE
))
441 e
->dest
->flags
|= BB_REACHABLE
;
448 /* Functions to access an edge list with a vector representation.
449 Enough data is kept such that given an index number, the
450 pred and succ that edge represents can be determined, or
451 given a pred and a succ, its index number can be returned.
452 This allows algorithms which consume a lot of memory to
453 represent the normally full matrix of edge (pred,succ) with a
454 single indexed vector, edge (EDGE_INDEX (pred, succ)), with no
455 wasted space in the client code due to sparse flow graphs. */
457 /* This functions initializes the edge list. Basically the entire
458 flowgraph is processed, and all edges are assigned a number,
459 and the data structure is filled in. */
464 struct edge_list
*elist
;
470 block_count
= n_basic_blocks
+ 2; /* Include the entry and exit blocks. */
474 /* Determine the number of edges in the flow graph by counting successor
475 edges on each basic block. */
476 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
478 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
482 elist
= (struct edge_list
*) xmalloc (sizeof (struct edge_list
));
483 elist
->num_blocks
= block_count
;
484 elist
->num_edges
= num_edges
;
485 elist
->index_to_edge
= (edge
*) xmalloc (sizeof (edge
) * num_edges
);
489 /* Follow successors of blocks, and register these edges. */
490 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
491 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
492 elist
->index_to_edge
[num_edges
++] = e
;
497 /* This function free's memory associated with an edge list. */
500 free_edge_list (elist
)
501 struct edge_list
*elist
;
505 free (elist
->index_to_edge
);
510 /* This function provides debug output showing an edge list. */
513 print_edge_list (f
, elist
)
515 struct edge_list
*elist
;
519 fprintf (f
, "Compressed edge list, %d BBs + entry & exit, and %d edges\n",
520 elist
->num_blocks
- 2, elist
->num_edges
);
522 for (x
= 0; x
< elist
->num_edges
; x
++)
524 fprintf (f
, " %-4d - edge(", x
);
525 if (INDEX_EDGE_PRED_BB (elist
, x
) == ENTRY_BLOCK_PTR
)
526 fprintf (f
, "entry,");
528 fprintf (f
, "%d,", INDEX_EDGE_PRED_BB (elist
, x
)->index
);
530 if (INDEX_EDGE_SUCC_BB (elist
, x
) == EXIT_BLOCK_PTR
)
531 fprintf (f
, "exit)\n");
533 fprintf (f
, "%d)\n", INDEX_EDGE_SUCC_BB (elist
, x
)->index
);
537 /* This function provides an internal consistency check of an edge list,
538 verifying that all edges are present, and that there are no
542 verify_edge_list (f
, elist
)
544 struct edge_list
*elist
;
546 int pred
, succ
, index
;
548 basic_block bb
, p
, s
;
550 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
552 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
554 pred
= e
->src
->index
;
555 succ
= e
->dest
->index
;
556 index
= EDGE_INDEX (elist
, e
->src
, e
->dest
);
557 if (index
== EDGE_INDEX_NO_EDGE
)
559 fprintf (f
, "*p* No index for edge from %d to %d\n", pred
, succ
);
563 if (INDEX_EDGE_PRED_BB (elist
, index
)->index
!= pred
)
564 fprintf (f
, "*p* Pred for index %d should be %d not %d\n",
565 index
, pred
, INDEX_EDGE_PRED_BB (elist
, index
)->index
);
566 if (INDEX_EDGE_SUCC_BB (elist
, index
)->index
!= succ
)
567 fprintf (f
, "*p* Succ for index %d should be %d not %d\n",
568 index
, succ
, INDEX_EDGE_SUCC_BB (elist
, index
)->index
);
572 /* We've verified that all the edges are in the list, now lets make sure
573 there are no spurious edges in the list. */
575 FOR_BB_BETWEEN (p
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
576 FOR_BB_BETWEEN (s
, ENTRY_BLOCK_PTR
->next_bb
, NULL
, next_bb
)
580 for (e
= p
->succ
; e
; e
= e
->succ_next
)
587 for (e
= s
->pred
; e
; e
= e
->pred_next
)
594 if (EDGE_INDEX (elist
, p
, s
)
595 == EDGE_INDEX_NO_EDGE
&& found_edge
!= 0)
596 fprintf (f
, "*** Edge (%d, %d) appears to not have an index\n",
598 if (EDGE_INDEX (elist
, p
, s
)
599 != EDGE_INDEX_NO_EDGE
&& found_edge
== 0)
600 fprintf (f
, "*** Edge (%d, %d) has index %d, but there is no edge\n",
601 p
->index
, s
->index
, EDGE_INDEX (elist
, p
, s
));
605 /* This routine will determine what, if any, edge there is between
606 a specified predecessor and successor. */
609 find_edge_index (edge_list
, pred
, succ
)
610 struct edge_list
*edge_list
;
611 basic_block pred
, succ
;
615 for (x
= 0; x
< NUM_EDGES (edge_list
); x
++)
616 if (INDEX_EDGE_PRED_BB (edge_list
, x
) == pred
617 && INDEX_EDGE_SUCC_BB (edge_list
, x
) == succ
)
620 return (EDGE_INDEX_NO_EDGE
);
623 /* Dump the list of basic blocks in the bitmap NODES. */
626 flow_nodes_print (str
, nodes
, file
)
636 fprintf (file
, "%s { ", str
);
637 EXECUTE_IF_SET_IN_SBITMAP (nodes
, 0, node
, {fprintf (file
, "%d ", node
);});
641 /* Dump the list of edges in the array EDGE_LIST. */
644 flow_edge_list_print (str
, edge_list
, num_edges
, file
)
646 const edge
*edge_list
;
655 fprintf (file
, "%s { ", str
);
656 for (i
= 0; i
< num_edges
; i
++)
657 fprintf (file
, "%d->%d ", edge_list
[i
]->src
->index
,
658 edge_list
[i
]->dest
->index
);
664 /* This routine will remove any fake successor edges for a basic block.
665 When the edge is removed, it is also removed from whatever predecessor
669 remove_fake_successors (bb
)
674 for (e
= bb
->succ
; e
;)
679 if ((tmp
->flags
& EDGE_FAKE
) == EDGE_FAKE
)
684 /* This routine will remove all fake edges from the flow graph. If
685 we remove all fake successors, it will automatically remove all
686 fake predecessors. */
693 FOR_BB_BETWEEN (bb
, ENTRY_BLOCK_PTR
, EXIT_BLOCK_PTR
, next_bb
)
694 remove_fake_successors (bb
);
697 /* This function will add a fake edge between any block which has no
698 successors, and the exit block. Some data flow equations require these
702 add_noreturn_fake_exit_edges ()
707 if (bb
->succ
== NULL
)
708 make_single_succ_edge (bb
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
711 /* This function adds a fake edge between any infinite loops to the
712 exit block. Some optimizations require a path from each node to
715 See also Morgan, Figure 3.10, pp. 82-83.
717 The current implementation is ugly, not attempting to minimize the
718 number of inserted fake edges. To reduce the number of fake edges
719 to insert, add fake edges from _innermost_ loops containing only
720 nodes not reachable from the exit block. */
723 connect_infinite_loops_to_exit ()
725 basic_block unvisited_block
;
726 struct depth_first_search_dsS dfs_ds
;
728 /* Perform depth-first search in the reverse graph to find nodes
729 reachable from the exit block. */
730 flow_dfs_compute_reverse_init (&dfs_ds
);
731 flow_dfs_compute_reverse_add_bb (&dfs_ds
, EXIT_BLOCK_PTR
);
733 /* Repeatedly add fake edges, updating the unreachable nodes. */
736 unvisited_block
= flow_dfs_compute_reverse_execute (&dfs_ds
);
737 if (!unvisited_block
)
740 make_edge (unvisited_block
, EXIT_BLOCK_PTR
, EDGE_FAKE
);
741 flow_dfs_compute_reverse_add_bb (&dfs_ds
, unvisited_block
);
744 flow_dfs_compute_reverse_finish (&dfs_ds
);
748 /* Compute reverse top sort order */
751 flow_reverse_top_sort_order_compute (rts_order
)
759 /* Allocate stack for back-tracking up CFG. */
760 stack
= (edge
*) xmalloc ((n_basic_blocks
+ 1) * sizeof (edge
));
763 /* Allocate bitmap to track nodes that have been visited. */
764 visited
= sbitmap_alloc (last_basic_block
);
766 /* None of the nodes in the CFG have been visited yet. */
767 sbitmap_zero (visited
);
769 /* Push the first edge on to the stack. */
770 stack
[sp
++] = ENTRY_BLOCK_PTR
->succ
;
778 /* Look at the edge on the top of the stack. */
783 /* Check if the edge destination has been visited yet. */
784 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
786 /* Mark that we have visited the destination. */
787 SET_BIT (visited
, dest
->index
);
790 /* Since the DEST node has been visited for the first
791 time, check its successors. */
792 stack
[sp
++] = dest
->succ
;
794 rts_order
[postnum
++] = dest
->index
;
798 if (! e
->succ_next
&& src
!= ENTRY_BLOCK_PTR
)
799 rts_order
[postnum
++] = src
->index
;
802 stack
[sp
- 1] = e
->succ_next
;
809 sbitmap_free (visited
);
812 /* Compute the depth first search order and store in the array
813 DFS_ORDER if nonzero, marking the nodes visited in VISITED. If
814 RC_ORDER is nonzero, return the reverse completion number for each
815 node. Returns the number of nodes visited. A depth first search
816 tries to get as far away from the starting point as quickly as
820 flow_depth_first_order_compute (dfs_order
, rc_order
)
827 int rcnum
= n_basic_blocks
- 1;
830 /* Allocate stack for back-tracking up CFG. */
831 stack
= (edge
*) xmalloc ((n_basic_blocks
+ 1) * sizeof (edge
));
834 /* Allocate bitmap to track nodes that have been visited. */
835 visited
= sbitmap_alloc (last_basic_block
);
837 /* None of the nodes in the CFG have been visited yet. */
838 sbitmap_zero (visited
);
840 /* Push the first edge on to the stack. */
841 stack
[sp
++] = ENTRY_BLOCK_PTR
->succ
;
849 /* Look at the edge on the top of the stack. */
854 /* Check if the edge destination has been visited yet. */
855 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
857 /* Mark that we have visited the destination. */
858 SET_BIT (visited
, dest
->index
);
861 dfs_order
[dfsnum
] = dest
->index
;
866 /* Since the DEST node has been visited for the first
867 time, check its successors. */
868 stack
[sp
++] = dest
->succ
;
870 /* There are no successors for the DEST node so assign
871 its reverse completion number. */
872 rc_order
[rcnum
--] = dest
->index
;
876 if (! e
->succ_next
&& src
!= ENTRY_BLOCK_PTR
878 /* There are no more successors for the SRC node
879 so assign its reverse completion number. */
880 rc_order
[rcnum
--] = src
->index
;
883 stack
[sp
- 1] = e
->succ_next
;
890 sbitmap_free (visited
);
892 /* The number of nodes visited should not be greater than
894 if (dfsnum
> n_basic_blocks
)
897 /* There are some nodes left in the CFG that are unreachable. */
898 if (dfsnum
< n_basic_blocks
)
907 struct dfst_node
**node
;
908 struct dfst_node
*up
;
911 /* Compute a preorder transversal ordering such that a sub-tree which
912 is the source of a cross edge appears before the sub-tree which is
913 the destination of the cross edge. This allows for easy detection
914 of all the entry blocks for a loop.
916 The ordering is compute by:
918 1) Generating a depth first spanning tree.
920 2) Walking the resulting tree from right to left. */
923 flow_preorder_transversal_compute (pot_order
)
932 struct dfst_node
*node
;
933 struct dfst_node
*dfst
;
936 /* Allocate stack for back-tracking up CFG. */
937 stack
= (edge
*) xmalloc ((n_basic_blocks
+ 1) * sizeof (edge
));
940 /* Allocate the tree. */
941 dfst
= (struct dfst_node
*) xcalloc (last_basic_block
,
942 sizeof (struct dfst_node
));
947 for (e
= bb
->succ
; e
; e
= e
->succ_next
)
952 ? (struct dfst_node
**) xcalloc (max_successors
,
953 sizeof (struct dfst_node
*))
957 /* Allocate bitmap to track nodes that have been visited. */
958 visited
= sbitmap_alloc (last_basic_block
);
960 /* None of the nodes in the CFG have been visited yet. */
961 sbitmap_zero (visited
);
963 /* Push the first edge on to the stack. */
964 stack
[sp
++] = ENTRY_BLOCK_PTR
->succ
;
971 /* Look at the edge on the top of the stack. */
976 /* Check if the edge destination has been visited yet. */
977 if (dest
!= EXIT_BLOCK_PTR
&& ! TEST_BIT (visited
, dest
->index
))
979 /* Mark that we have visited the destination. */
980 SET_BIT (visited
, dest
->index
);
982 /* Add the destination to the preorder tree. */
983 if (src
!= ENTRY_BLOCK_PTR
)
985 dfst
[src
->index
].node
[dfst
[src
->index
].nnodes
++]
986 = &dfst
[dest
->index
];
987 dfst
[dest
->index
].up
= &dfst
[src
->index
];
991 /* Since the DEST node has been visited for the first
992 time, check its successors. */
993 stack
[sp
++] = dest
->succ
;
996 else if (e
->succ_next
)
997 stack
[sp
- 1] = e
->succ_next
;
1003 sbitmap_free (visited
);
1005 /* Record the preorder transversal order by
1006 walking the tree from right to left. */
1009 node
= &dfst
[ENTRY_BLOCK_PTR
->next_bb
->index
];
1016 node
= node
->node
[--node
->nnodes
];
1017 pot_order
[i
++] = node
- dfst
;
1023 /* Free the tree. */
1025 for (i
= 0; i
< last_basic_block
; i
++)
1027 free (dfst
[i
].node
);
1032 /* Compute the depth first search order on the _reverse_ graph and
1033 store in the array DFS_ORDER, marking the nodes visited in VISITED.
1034 Returns the number of nodes visited.
1036 The computation is split into three pieces:
1038 flow_dfs_compute_reverse_init () creates the necessary data
1041 flow_dfs_compute_reverse_add_bb () adds a basic block to the data
1042 structures. The block will start the search.
1044 flow_dfs_compute_reverse_execute () continues (or starts) the
1045 search using the block on the top of the stack, stopping when the
1048 flow_dfs_compute_reverse_finish () destroys the necessary data
1051 Thus, the user will probably call ..._init(), call ..._add_bb() to
1052 add a beginning basic block to the stack, call ..._execute(),
1053 possibly add another bb to the stack and again call ..._execute(),
1054 ..., and finally call _finish(). */
1056 /* Initialize the data structures used for depth-first search on the
1057 reverse graph. If INITIALIZE_STACK is nonzero, the exit block is
1058 added to the basic block stack. DATA is the current depth-first
1059 search context. If INITIALIZE_STACK is nonzero, there is an
1060 element on the stack. */
1063 flow_dfs_compute_reverse_init (data
)
1064 depth_first_search_ds data
;
1066 /* Allocate stack for back-tracking up CFG. */
1067 data
->stack
= (basic_block
*) xmalloc ((n_basic_blocks
- (INVALID_BLOCK
+ 1))
1068 * sizeof (basic_block
));
1071 /* Allocate bitmap to track nodes that have been visited. */
1072 data
->visited_blocks
= sbitmap_alloc (last_basic_block
- (INVALID_BLOCK
+ 1));
1074 /* None of the nodes in the CFG have been visited yet. */
1075 sbitmap_zero (data
->visited_blocks
);
1080 /* Add the specified basic block to the top of the dfs data
1081 structures. When the search continues, it will start at the
1085 flow_dfs_compute_reverse_add_bb (data
, bb
)
1086 depth_first_search_ds data
;
1089 data
->stack
[data
->sp
++] = bb
;
1090 SET_BIT (data
->visited_blocks
, bb
->index
- (INVALID_BLOCK
+ 1));
1093 /* Continue the depth-first search through the reverse graph starting with the
1094 block at the stack's top and ending when the stack is empty. Visited nodes
1095 are marked. Returns an unvisited basic block, or NULL if there is none
1099 flow_dfs_compute_reverse_execute (data
)
1100 depth_first_search_ds data
;
1105 while (data
->sp
> 0)
1107 bb
= data
->stack
[--data
->sp
];
1109 /* Perform depth-first search on adjacent vertices. */
1110 for (e
= bb
->pred
; e
; e
= e
->pred_next
)
1111 if (!TEST_BIT (data
->visited_blocks
,
1112 e
->src
->index
- (INVALID_BLOCK
+ 1)))
1113 flow_dfs_compute_reverse_add_bb (data
, e
->src
);
1116 /* Determine if there are unvisited basic blocks. */
1117 FOR_BB_BETWEEN (bb
, EXIT_BLOCK_PTR
, NULL
, prev_bb
)
1118 if (!TEST_BIT (data
->visited_blocks
, bb
->index
- (INVALID_BLOCK
+ 1)))
1124 /* Destroy the data structures needed for depth-first search on the
1128 flow_dfs_compute_reverse_finish (data
)
1129 depth_first_search_ds data
;
1132 sbitmap_free (data
->visited_blocks
);
1135 /* Performs dfs search from BB over vertices satisfying PREDICATE;
1136 if REVERSE, go against direction of edges. Returns number of blocks
1137 found and their list in RSLT. RSLT can contain at most RSLT_MAX items. */
1139 dfs_enumerate_from (bb
, reverse
, predicate
, rslt
, rslt_max
, data
)
1142 bool (*predicate
) PARAMS ((basic_block
, void *));
1147 basic_block
*st
, lbb
;
1150 st
= xcalloc (rslt_max
, sizeof (basic_block
));
1151 rslt
[tv
++] = st
[sp
++] = bb
;
1152 bb
->flags
|= BB_VISITED
;
1159 for (e
= lbb
->pred
; e
; e
= e
->pred_next
)
1160 if (!(e
->src
->flags
& BB_VISITED
) && predicate (e
->src
, data
))
1164 rslt
[tv
++] = st
[sp
++] = e
->src
;
1165 e
->src
->flags
|= BB_VISITED
;
1170 for (e
= lbb
->succ
; e
; e
= e
->succ_next
)
1171 if (!(e
->dest
->flags
& BB_VISITED
) && predicate (e
->dest
, data
))
1175 rslt
[tv
++] = st
[sp
++] = e
->dest
;
1176 e
->dest
->flags
|= BB_VISITED
;
1181 for (sp
= 0; sp
< tv
; sp
++)
1182 rslt
[sp
]->flags
&= ~BB_VISITED
;