PR rtl-optimization/82913
[official-gcc.git] / gcc / domwalk.c
blob102a2936ba43679cdc8c3952ae3d0053fe946055
1 /* Generic dominator tree walker
2 Copyright (C) 2003-2017 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "cfganal.h"
26 #include "domwalk.h"
27 #include "dumpfile.h"
29 /* This file implements a generic walker for dominator trees.
31 To understand the dominator walker one must first have a grasp of dominators,
32 immediate dominators and the dominator tree.
34 Dominators
35 A block B1 is said to dominate B2 if every path from the entry to B2 must
36 pass through B1. Given the dominance relationship, we can proceed to
37 compute immediate dominators. Note it is not important whether or not
38 our definition allows a block to dominate itself.
40 Immediate Dominators:
41 Every block in the CFG has no more than one immediate dominator. The
42 immediate dominator of block BB must dominate BB and must not dominate
43 any other dominator of BB and must not be BB itself.
45 Dominator tree:
46 If we then construct a tree where each node is a basic block and there
47 is an edge from each block's immediate dominator to the block itself, then
48 we have a dominator tree.
51 [ Note this walker can also walk the post-dominator tree, which is
52 defined in a similar manner. i.e., block B1 is said to post-dominate
53 block B2 if all paths from B2 to the exit block must pass through
54 B1. ]
56 For example, given the CFG
61 / \
62 3 4
63 / \
64 +---------->5 6
65 | / \ /
66 | +--->8 7
67 | | / |
68 | +--9 11
69 | / |
70 +--- 10 ---> 12
73 We have a dominator tree which looks like
78 / \
79 / \
80 3 4
81 / / \ \
82 | | | |
83 5 6 7 12
84 | |
85 8 11
93 The dominator tree is the basis for a number of analysis, transformation
94 and optimization algorithms that operate on a semi-global basis.
96 The dominator walker is a generic routine which visits blocks in the CFG
97 via a depth first search of the dominator tree. In the example above
98 the dominator walker might visit blocks in the following order
99 1, 2, 3, 4, 5, 8, 9, 10, 6, 7, 11, 12.
101 The dominator walker has a number of callbacks to perform actions
102 during the walk of the dominator tree. There are two callbacks
103 which walk statements, one before visiting the dominator children,
104 one after visiting the dominator children. There is a callback
105 before and after each statement walk callback. In addition, the
106 dominator walker manages allocation/deallocation of data structures
107 which are local to each block visited.
109 The dominator walker is meant to provide a generic means to build a pass
110 which can analyze or transform/optimize a function based on walking
111 the dominator tree. One simply fills in the dominator walker data
112 structure with the appropriate callbacks and calls the walker.
114 We currently use the dominator walker to prune the set of variables
115 which might need PHI nodes (which can greatly improve compile-time
116 performance in some cases).
118 We also use the dominator walker to rewrite the function into SSA form
119 which reduces code duplication since the rewriting phase is inherently
120 a walk of the dominator tree.
122 And (of course), we use the dominator walker to drive our dominator
123 optimizer, which is a semi-global optimizer.
125 TODO:
127 Walking statements is based on the block statement iterator abstraction,
128 which is currently an abstraction over walking tree statements. Thus
129 the dominator walker is currently only useful for trees. */
131 /* Reverse postorder index of each basic block. */
132 static int *bb_postorder;
134 static int
135 cmp_bb_postorder (const void *a, const void *b)
137 basic_block bb1 = *(const basic_block *)(a);
138 basic_block bb2 = *(const basic_block *)(b);
139 /* Place higher completion number first (pop off lower number first). */
140 return bb_postorder[bb2->index] - bb_postorder[bb1->index];
143 /* Permute array BBS of N basic blocks in postorder,
144 i.e. by descending number in BB_POSTORDER array. */
146 static void
147 sort_bbs_postorder (basic_block *bbs, int n)
149 if (__builtin_expect (n == 2, true))
151 basic_block bb0 = bbs[0], bb1 = bbs[1];
152 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
153 bbs[0] = bb1, bbs[1] = bb0;
155 else if (__builtin_expect (n == 3, true))
157 basic_block bb0 = bbs[0], bb1 = bbs[1], bb2 = bbs[2];
158 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
159 std::swap (bb0, bb1);
160 if (bb_postorder[bb1->index] < bb_postorder[bb2->index])
162 std::swap (bb1, bb2);
163 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
164 std::swap (bb0, bb1);
166 bbs[0] = bb0, bbs[1] = bb1, bbs[2] = bb2;
168 else
169 qsort (bbs, n, sizeof *bbs, cmp_bb_postorder);
172 /* Constructor for a dom walker.
174 If SKIP_UNREACHBLE_BLOCKS is true, then we need to set
175 EDGE_EXECUTABLE on every edge in the CFG. */
176 dom_walker::dom_walker (cdi_direction direction,
177 bool skip_unreachable_blocks,
178 int *bb_index_to_rpo)
179 : m_dom_direction (direction),
180 m_skip_unreachable_blocks (skip_unreachable_blocks),
181 m_user_bb_to_rpo (bb_index_to_rpo != NULL),
182 m_unreachable_dom (NULL),
183 m_bb_to_rpo (bb_index_to_rpo)
185 /* Compute the basic-block index to RPO mapping if not provided by
186 the user. */
187 if (! m_bb_to_rpo && direction == CDI_DOMINATORS)
189 int *postorder = XNEWVEC (int, n_basic_blocks_for_fn (cfun));
190 int postorder_num = pre_and_rev_post_order_compute (NULL, postorder,
191 true);
192 m_bb_to_rpo = XNEWVEC (int, last_basic_block_for_fn (cfun));
193 for (int i = 0; i < postorder_num; ++i)
194 m_bb_to_rpo[postorder[i]] = i;
195 free (postorder);
198 /* If we are not skipping unreachable blocks, then there is nothing
199 further to do. */
200 if (!m_skip_unreachable_blocks)
201 return;
203 basic_block bb;
204 FOR_ALL_BB_FN (bb, cfun)
206 edge_iterator ei;
207 edge e;
208 FOR_EACH_EDGE (e, ei, bb->succs)
209 e->flags |= EDGE_EXECUTABLE;
213 /* Destructor. */
215 dom_walker::~dom_walker ()
217 if (! m_user_bb_to_rpo)
218 free (m_bb_to_rpo);
221 /* Return TRUE if BB is reachable, false otherwise. */
223 bool
224 dom_walker::bb_reachable (struct function *fun, basic_block bb)
226 /* If we're not skipping unreachable blocks, then assume everything
227 is reachable. */
228 if (!m_skip_unreachable_blocks)
229 return true;
231 /* If any of the predecessor edges that do not come from blocks dominated
232 by us are still marked as possibly executable consider this block
233 reachable. */
234 bool reachable = false;
235 if (!m_unreachable_dom)
237 reachable = bb == ENTRY_BLOCK_PTR_FOR_FN (fun);
238 edge_iterator ei;
239 edge e;
240 FOR_EACH_EDGE (e, ei, bb->preds)
241 if (!dominated_by_p (CDI_DOMINATORS, e->src, bb))
242 reachable |= (e->flags & EDGE_EXECUTABLE);
245 return reachable;
248 /* BB has been determined to be unreachable. Propagate that property
249 to incoming and outgoing edges of BB as appropriate. */
251 void
252 dom_walker::propagate_unreachable_to_edges (basic_block bb,
253 FILE *dump_file,
254 dump_flags_t dump_flags)
256 if (dump_file && (dump_flags & TDF_DETAILS))
257 fprintf (dump_file, "Marking all outgoing edges of unreachable "
258 "BB %d as not executable\n", bb->index);
260 edge_iterator ei;
261 edge e;
262 FOR_EACH_EDGE (e, ei, bb->succs)
263 e->flags &= ~EDGE_EXECUTABLE;
265 FOR_EACH_EDGE (e, ei, bb->preds)
267 if (dominated_by_p (CDI_DOMINATORS, e->src, bb))
269 if (dump_file && (dump_flags & TDF_DETAILS))
270 fprintf (dump_file, "Marking backedge from BB %d into "
271 "unreachable BB %d as not executable\n",
272 e->src->index, bb->index);
273 e->flags &= ~EDGE_EXECUTABLE;
277 if (!m_unreachable_dom)
278 m_unreachable_dom = bb;
281 const edge dom_walker::STOP = (edge)-1;
283 /* Recursively walk the dominator tree.
284 BB is the basic block we are currently visiting. */
286 void
287 dom_walker::walk (basic_block bb)
289 basic_block dest;
290 basic_block *worklist = XNEWVEC (basic_block,
291 n_basic_blocks_for_fn (cfun) * 2);
292 int sp = 0;
293 bb_postorder = m_bb_to_rpo;
295 while (true)
297 /* Don't worry about unreachable blocks. */
298 if (EDGE_COUNT (bb->preds) > 0
299 || bb == ENTRY_BLOCK_PTR_FOR_FN (cfun)
300 || bb == EXIT_BLOCK_PTR_FOR_FN (cfun))
302 edge taken_edge = NULL;
304 /* Callback for subclasses to do custom things before we have walked
305 the dominator children, but before we walk statements. */
306 if (this->bb_reachable (cfun, bb))
308 taken_edge = before_dom_children (bb);
309 if (taken_edge && taken_edge != STOP)
311 edge_iterator ei;
312 edge e;
313 FOR_EACH_EDGE (e, ei, bb->succs)
314 if (e != taken_edge)
315 e->flags &= ~EDGE_EXECUTABLE;
318 else
319 propagate_unreachable_to_edges (bb, dump_file, dump_flags);
321 /* Mark the current BB to be popped out of the recursion stack
322 once children are processed. */
323 worklist[sp++] = bb;
324 worklist[sp++] = NULL;
326 /* If the callback returned NONE then we are supposed to
327 stop and not even propagate EDGE_EXECUTABLE further. */
328 if (taken_edge != STOP)
330 int saved_sp = sp;
331 for (dest = first_dom_son (m_dom_direction, bb);
332 dest; dest = next_dom_son (m_dom_direction, dest))
333 worklist[sp++] = dest;
334 if (sp - saved_sp > 1 && m_dom_direction == CDI_DOMINATORS)
335 sort_bbs_postorder (&worklist[saved_sp], sp - saved_sp);
338 /* NULL is used to mark pop operations in the recursion stack. */
339 while (sp > 0 && !worklist[sp - 1])
341 --sp;
342 bb = worklist[--sp];
344 /* Callback allowing subclasses to do custom things after we have
345 walked dominator children, but before we walk statements. */
346 if (bb_reachable (cfun, bb))
347 after_dom_children (bb);
348 else if (m_unreachable_dom == bb)
349 m_unreachable_dom = NULL;
351 if (sp)
352 bb = worklist[--sp];
353 else
354 break;
356 bb_postorder = NULL;
357 free (worklist);