Change use to type-based pool allocator in et-forest.c.
[gcc.git] / gcc / dominance.c
1 /* Calculate (post)dominators in slightly super-linear time.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
3 Contributed by Michael Matz (matz@ifh.de).
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it
8 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.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
16
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/>. */
20
21 /* This file implements the well known algorithm from Lengauer and Tarjan
22 to compute the dominators in a control flow graph. A basic block D is said
23 to dominate another block X, when all paths from the entry node of the CFG
24 to X go also over D. The dominance relation is a transitive reflexive
25 relation and its minimal transitive reduction is a tree, called the
26 dominator tree. So for each block X besides the entry block exists a
27 block I(X), called the immediate dominator of X, which is the parent of X
28 in the dominator tree.
29
30 The algorithm computes this dominator tree implicitly by computing for
31 each block its immediate dominator. We use tree balancing and path
32 compression, so it's the O(e*a(e,v)) variant, where a(e,v) is the very
33 slowly growing functional inverse of the Ackerman function. */
34
35 #include "config.h"
36 #include "system.h"
37 #include "coretypes.h"
38 #include "tm.h"
39 #include "rtl.h"
40 #include "hard-reg-set.h"
41 #include "obstack.h"
42 #include "predict.h"
43 #include "vec.h"
44 #include "hashtab.h"
45 #include "hash-set.h"
46 #include "machmode.h"
47 #include "input.h"
48 #include "function.h"
49 #include "dominance.h"
50 #include "cfg.h"
51 #include "cfganal.h"
52 #include "basic-block.h"
53 #include "diagnostic-core.h"
54 #include "alloc-pool.h"
55 #include "et-forest.h"
56 #include "timevar.h"
57 #include "hash-map.h"
58 #include "graphds.h"
59 #include "bitmap.h"
60
61 /* We name our nodes with integers, beginning with 1. Zero is reserved for
62 'undefined' or 'end of list'. The name of each node is given by the dfs
63 number of the corresponding basic block. Please note, that we include the
64 artificial ENTRY_BLOCK (or EXIT_BLOCK in the post-dom case) in our lists to
65 support multiple entry points. Its dfs number is of course 1. */
66
67 /* Type of Basic Block aka. TBB */
68 typedef unsigned int TBB;
69
70 /* We work in a poor-mans object oriented fashion, and carry an instance of
71 this structure through all our 'methods'. It holds various arrays
72 reflecting the (sub)structure of the flowgraph. Most of them are of type
73 TBB and are also indexed by TBB. */
74
75 struct dom_info
76 {
77 /* The parent of a node in the DFS tree. */
78 TBB *dfs_parent;
79 /* For a node x key[x] is roughly the node nearest to the root from which
80 exists a way to x only over nodes behind x. Such a node is also called
81 semidominator. */
82 TBB *key;
83 /* The value in path_min[x] is the node y on the path from x to the root of
84 the tree x is in with the smallest key[y]. */
85 TBB *path_min;
86 /* bucket[x] points to the first node of the set of nodes having x as key. */
87 TBB *bucket;
88 /* And next_bucket[x] points to the next node. */
89 TBB *next_bucket;
90 /* After the algorithm is done, dom[x] contains the immediate dominator
91 of x. */
92 TBB *dom;
93
94 /* The following few fields implement the structures needed for disjoint
95 sets. */
96 /* set_chain[x] is the next node on the path from x to the representative
97 of the set containing x. If set_chain[x]==0 then x is a root. */
98 TBB *set_chain;
99 /* set_size[x] is the number of elements in the set named by x. */
100 unsigned int *set_size;
101 /* set_child[x] is used for balancing the tree representing a set. It can
102 be understood as the next sibling of x. */
103 TBB *set_child;
104
105 /* If b is the number of a basic block (BB->index), dfs_order[b] is the
106 number of that node in DFS order counted from 1. This is an index
107 into most of the other arrays in this structure. */
108 TBB *dfs_order;
109 /* If x is the DFS-index of a node which corresponds with a basic block,
110 dfs_to_bb[x] is that basic block. Note, that in our structure there are
111 more nodes that basic blocks, so only dfs_to_bb[dfs_order[bb->index]]==bb
112 is true for every basic block bb, but not the opposite. */
113 basic_block *dfs_to_bb;
114
115 /* This is the next free DFS number when creating the DFS tree. */
116 unsigned int dfsnum;
117 /* The number of nodes in the DFS tree (==dfsnum-1). */
118 unsigned int nodes;
119
120 /* Blocks with bits set here have a fake edge to EXIT. These are used
121 to turn a DFS forest into a proper tree. */
122 bitmap fake_exit_edge;
123 };
124
125 static void init_dom_info (struct dom_info *, enum cdi_direction);
126 static void free_dom_info (struct dom_info *);
127 static void calc_dfs_tree_nonrec (struct dom_info *, basic_block, bool);
128 static void calc_dfs_tree (struct dom_info *, bool);
129 static void compress (struct dom_info *, TBB);
130 static TBB eval (struct dom_info *, TBB);
131 static void link_roots (struct dom_info *, TBB, TBB);
132 static void calc_idoms (struct dom_info *, bool);
133 void debug_dominance_info (enum cdi_direction);
134 void debug_dominance_tree (enum cdi_direction, basic_block);
135
136 /* Helper macro for allocating and initializing an array,
137 for aesthetic reasons. */
138 #define init_ar(var, type, num, content) \
139 do \
140 { \
141 unsigned int i = 1; /* Catch content == i. */ \
142 if (! (content)) \
143 (var) = XCNEWVEC (type, num); \
144 else \
145 { \
146 (var) = XNEWVEC (type, (num)); \
147 for (i = 0; i < num; i++) \
148 (var)[i] = (content); \
149 } \
150 } \
151 while (0)
152
153 /* Allocate all needed memory in a pessimistic fashion (so we round up).
154 This initializes the contents of DI, which already must be allocated. */
155
156 static void
157 init_dom_info (struct dom_info *di, enum cdi_direction dir)
158 {
159 /* We need memory for n_basic_blocks nodes. */
160 unsigned int num = n_basic_blocks_for_fn (cfun);
161 init_ar (di->dfs_parent, TBB, num, 0);
162 init_ar (di->path_min, TBB, num, i);
163 init_ar (di->key, TBB, num, i);
164 init_ar (di->dom, TBB, num, 0);
165
166 init_ar (di->bucket, TBB, num, 0);
167 init_ar (di->next_bucket, TBB, num, 0);
168
169 init_ar (di->set_chain, TBB, num, 0);
170 init_ar (di->set_size, unsigned int, num, 1);
171 init_ar (di->set_child, TBB, num, 0);
172
173 init_ar (di->dfs_order, TBB,
174 (unsigned int) last_basic_block_for_fn (cfun) + 1, 0);
175 init_ar (di->dfs_to_bb, basic_block, num, 0);
176
177 di->dfsnum = 1;
178 di->nodes = 0;
179
180 switch (dir)
181 {
182 case CDI_DOMINATORS:
183 di->fake_exit_edge = NULL;
184 break;
185 case CDI_POST_DOMINATORS:
186 di->fake_exit_edge = BITMAP_ALLOC (NULL);
187 break;
188 default:
189 gcc_unreachable ();
190 break;
191 }
192 }
193
194 #undef init_ar
195
196 /* Map dominance calculation type to array index used for various
197 dominance information arrays. This version is simple -- it will need
198 to be modified, obviously, if additional values are added to
199 cdi_direction. */
200
201 static unsigned int
202 dom_convert_dir_to_idx (enum cdi_direction dir)
203 {
204 gcc_checking_assert (dir == CDI_DOMINATORS || dir == CDI_POST_DOMINATORS);
205 return dir - 1;
206 }
207
208 /* Free all allocated memory in DI, but not DI itself. */
209
210 static void
211 free_dom_info (struct dom_info *di)
212 {
213 free (di->dfs_parent);
214 free (di->path_min);
215 free (di->key);
216 free (di->dom);
217 free (di->bucket);
218 free (di->next_bucket);
219 free (di->set_chain);
220 free (di->set_size);
221 free (di->set_child);
222 free (di->dfs_order);
223 free (di->dfs_to_bb);
224 BITMAP_FREE (di->fake_exit_edge);
225 }
226
227 /* The nonrecursive variant of creating a DFS tree. DI is our working
228 structure, BB the starting basic block for this tree and REVERSE
229 is true, if predecessors should be visited instead of successors of a
230 node. After this is done all nodes reachable from BB were visited, have
231 assigned their dfs number and are linked together to form a tree. */
232
233 static void
234 calc_dfs_tree_nonrec (struct dom_info *di, basic_block bb, bool reverse)
235 {
236 /* We call this _only_ if bb is not already visited. */
237 edge e;
238 TBB child_i, my_i = 0;
239 edge_iterator *stack;
240 edge_iterator ei, einext;
241 int sp;
242 /* Start block (the entry block for forward problem, exit block for backward
243 problem). */
244 basic_block en_block;
245 /* Ending block. */
246 basic_block ex_block;
247
248 stack = XNEWVEC (edge_iterator, n_basic_blocks_for_fn (cfun) + 1);
249 sp = 0;
250
251 /* Initialize our border blocks, and the first edge. */
252 if (reverse)
253 {
254 ei = ei_start (bb->preds);
255 en_block = EXIT_BLOCK_PTR_FOR_FN (cfun);
256 ex_block = ENTRY_BLOCK_PTR_FOR_FN (cfun);
257 }
258 else
259 {
260 ei = ei_start (bb->succs);
261 en_block = ENTRY_BLOCK_PTR_FOR_FN (cfun);
262 ex_block = EXIT_BLOCK_PTR_FOR_FN (cfun);
263 }
264
265 /* When the stack is empty we break out of this loop. */
266 while (1)
267 {
268 basic_block bn;
269
270 /* This loop traverses edges e in depth first manner, and fills the
271 stack. */
272 while (!ei_end_p (ei))
273 {
274 e = ei_edge (ei);
275
276 /* Deduce from E the current and the next block (BB and BN), and the
277 next edge. */
278 if (reverse)
279 {
280 bn = e->src;
281
282 /* If the next node BN is either already visited or a border
283 block the current edge is useless, and simply overwritten
284 with the next edge out of the current node. */
285 if (bn == ex_block || di->dfs_order[bn->index])
286 {
287 ei_next (&ei);
288 continue;
289 }
290 bb = e->dest;
291 einext = ei_start (bn->preds);
292 }
293 else
294 {
295 bn = e->dest;
296 if (bn == ex_block || di->dfs_order[bn->index])
297 {
298 ei_next (&ei);
299 continue;
300 }
301 bb = e->src;
302 einext = ei_start (bn->succs);
303 }
304
305 gcc_assert (bn != en_block);
306
307 /* Fill the DFS tree info calculatable _before_ recursing. */
308 if (bb != en_block)
309 my_i = di->dfs_order[bb->index];
310 else
311 my_i = di->dfs_order[last_basic_block_for_fn (cfun)];
312 child_i = di->dfs_order[bn->index] = di->dfsnum++;
313 di->dfs_to_bb[child_i] = bn;
314 di->dfs_parent[child_i] = my_i;
315
316 /* Save the current point in the CFG on the stack, and recurse. */
317 stack[sp++] = ei;
318 ei = einext;
319 }
320
321 if (!sp)
322 break;
323 ei = stack[--sp];
324
325 /* OK. The edge-list was exhausted, meaning normally we would
326 end the recursion. After returning from the recursive call,
327 there were (may be) other statements which were run after a
328 child node was completely considered by DFS. Here is the
329 point to do it in the non-recursive variant.
330 E.g. The block just completed is in e->dest for forward DFS,
331 the block not yet completed (the parent of the one above)
332 in e->src. This could be used e.g. for computing the number of
333 descendants or the tree depth. */
334 ei_next (&ei);
335 }
336 free (stack);
337 }
338
339 /* The main entry for calculating the DFS tree or forest. DI is our working
340 structure and REVERSE is true, if we are interested in the reverse flow
341 graph. In that case the result is not necessarily a tree but a forest,
342 because there may be nodes from which the EXIT_BLOCK is unreachable. */
343
344 static void
345 calc_dfs_tree (struct dom_info *di, bool reverse)
346 {
347 /* The first block is the ENTRY_BLOCK (or EXIT_BLOCK if REVERSE). */
348 basic_block begin = (reverse
349 ? EXIT_BLOCK_PTR_FOR_FN (cfun) : ENTRY_BLOCK_PTR_FOR_FN (cfun));
350 di->dfs_order[last_basic_block_for_fn (cfun)] = di->dfsnum;
351 di->dfs_to_bb[di->dfsnum] = begin;
352 di->dfsnum++;
353
354 calc_dfs_tree_nonrec (di, begin, reverse);
355
356 if (reverse)
357 {
358 /* In the post-dom case we may have nodes without a path to EXIT_BLOCK.
359 They are reverse-unreachable. In the dom-case we disallow such
360 nodes, but in post-dom we have to deal with them.
361
362 There are two situations in which this occurs. First, noreturn
363 functions. Second, infinite loops. In the first case we need to
364 pretend that there is an edge to the exit block. In the second
365 case, we wind up with a forest. We need to process all noreturn
366 blocks before we know if we've got any infinite loops. */
367
368 basic_block b;
369 bool saw_unconnected = false;
370
371 FOR_EACH_BB_REVERSE_FN (b, cfun)
372 {
373 if (EDGE_COUNT (b->succs) > 0)
374 {
375 if (di->dfs_order[b->index] == 0)
376 saw_unconnected = true;
377 continue;
378 }
379 bitmap_set_bit (di->fake_exit_edge, b->index);
380 di->dfs_order[b->index] = di->dfsnum;
381 di->dfs_to_bb[di->dfsnum] = b;
382 di->dfs_parent[di->dfsnum] =
383 di->dfs_order[last_basic_block_for_fn (cfun)];
384 di->dfsnum++;
385 calc_dfs_tree_nonrec (di, b, reverse);
386 }
387
388 if (saw_unconnected)
389 {
390 FOR_EACH_BB_REVERSE_FN (b, cfun)
391 {
392 basic_block b2;
393 if (di->dfs_order[b->index])
394 continue;
395 b2 = dfs_find_deadend (b);
396 gcc_checking_assert (di->dfs_order[b2->index] == 0);
397 bitmap_set_bit (di->fake_exit_edge, b2->index);
398 di->dfs_order[b2->index] = di->dfsnum;
399 di->dfs_to_bb[di->dfsnum] = b2;
400 di->dfs_parent[di->dfsnum] =
401 di->dfs_order[last_basic_block_for_fn (cfun)];
402 di->dfsnum++;
403 calc_dfs_tree_nonrec (di, b2, reverse);
404 gcc_checking_assert (di->dfs_order[b->index]);
405 }
406 }
407 }
408
409 di->nodes = di->dfsnum - 1;
410
411 /* This aborts e.g. when there is _no_ path from ENTRY to EXIT at all. */
412 gcc_assert (di->nodes == (unsigned int) n_basic_blocks_for_fn (cfun) - 1);
413 }
414
415 /* Compress the path from V to the root of its set and update path_min at the
416 same time. After compress(di, V) set_chain[V] is the root of the set V is
417 in and path_min[V] is the node with the smallest key[] value on the path
418 from V to that root. */
419
420 static void
421 compress (struct dom_info *di, TBB v)
422 {
423 /* Btw. It's not worth to unrecurse compress() as the depth is usually not
424 greater than 5 even for huge graphs (I've not seen call depth > 4).
425 Also performance wise compress() ranges _far_ behind eval(). */
426 TBB parent = di->set_chain[v];
427 if (di->set_chain[parent])
428 {
429 compress (di, parent);
430 if (di->key[di->path_min[parent]] < di->key[di->path_min[v]])
431 di->path_min[v] = di->path_min[parent];
432 di->set_chain[v] = di->set_chain[parent];
433 }
434 }
435
436 /* Compress the path from V to the set root of V if needed (when the root has
437 changed since the last call). Returns the node with the smallest key[]
438 value on the path from V to the root. */
439
440 static inline TBB
441 eval (struct dom_info *di, TBB v)
442 {
443 /* The representative of the set V is in, also called root (as the set
444 representation is a tree). */
445 TBB rep = di->set_chain[v];
446
447 /* V itself is the root. */
448 if (!rep)
449 return di->path_min[v];
450
451 /* Compress only if necessary. */
452 if (di->set_chain[rep])
453 {
454 compress (di, v);
455 rep = di->set_chain[v];
456 }
457
458 if (di->key[di->path_min[rep]] >= di->key[di->path_min[v]])
459 return di->path_min[v];
460 else
461 return di->path_min[rep];
462 }
463
464 /* This essentially merges the two sets of V and W, giving a single set with
465 the new root V. The internal representation of these disjoint sets is a
466 balanced tree. Currently link(V,W) is only used with V being the parent
467 of W. */
468
469 static void
470 link_roots (struct dom_info *di, TBB v, TBB w)
471 {
472 TBB s = w;
473
474 /* Rebalance the tree. */
475 while (di->key[di->path_min[w]] < di->key[di->path_min[di->set_child[s]]])
476 {
477 if (di->set_size[s] + di->set_size[di->set_child[di->set_child[s]]]
478 >= 2 * di->set_size[di->set_child[s]])
479 {
480 di->set_chain[di->set_child[s]] = s;
481 di->set_child[s] = di->set_child[di->set_child[s]];
482 }
483 else
484 {
485 di->set_size[di->set_child[s]] = di->set_size[s];
486 s = di->set_chain[s] = di->set_child[s];
487 }
488 }
489
490 di->path_min[s] = di->path_min[w];
491 di->set_size[v] += di->set_size[w];
492 if (di->set_size[v] < 2 * di->set_size[w])
493 {
494 TBB tmp = s;
495 s = di->set_child[v];
496 di->set_child[v] = tmp;
497 }
498
499 /* Merge all subtrees. */
500 while (s)
501 {
502 di->set_chain[s] = v;
503 s = di->set_child[s];
504 }
505 }
506
507 /* This calculates the immediate dominators (or post-dominators if REVERSE is
508 true). DI is our working structure and should hold the DFS forest.
509 On return the immediate dominator to node V is in di->dom[V]. */
510
511 static void
512 calc_idoms (struct dom_info *di, bool reverse)
513 {
514 TBB v, w, k, par;
515 basic_block en_block;
516 edge_iterator ei, einext;
517
518 if (reverse)
519 en_block = EXIT_BLOCK_PTR_FOR_FN (cfun);
520 else
521 en_block = ENTRY_BLOCK_PTR_FOR_FN (cfun);
522
523 /* Go backwards in DFS order, to first look at the leafs. */
524 v = di->nodes;
525 while (v > 1)
526 {
527 basic_block bb = di->dfs_to_bb[v];
528 edge e;
529
530 par = di->dfs_parent[v];
531 k = v;
532
533 ei = (reverse) ? ei_start (bb->succs) : ei_start (bb->preds);
534
535 if (reverse)
536 {
537 /* If this block has a fake edge to exit, process that first. */
538 if (bitmap_bit_p (di->fake_exit_edge, bb->index))
539 {
540 einext = ei;
541 einext.index = 0;
542 goto do_fake_exit_edge;
543 }
544 }
545
546 /* Search all direct predecessors for the smallest node with a path
547 to them. That way we have the smallest node with also a path to
548 us only over nodes behind us. In effect we search for our
549 semidominator. */
550 while (!ei_end_p (ei))
551 {
552 TBB k1;
553 basic_block b;
554
555 e = ei_edge (ei);
556 b = (reverse) ? e->dest : e->src;
557 einext = ei;
558 ei_next (&einext);
559
560 if (b == en_block)
561 {
562 do_fake_exit_edge:
563 k1 = di->dfs_order[last_basic_block_for_fn (cfun)];
564 }
565 else
566 k1 = di->dfs_order[b->index];
567
568 /* Call eval() only if really needed. If k1 is above V in DFS tree,
569 then we know, that eval(k1) == k1 and key[k1] == k1. */
570 if (k1 > v)
571 k1 = di->key[eval (di, k1)];
572 if (k1 < k)
573 k = k1;
574
575 ei = einext;
576 }
577
578 di->key[v] = k;
579 link_roots (di, par, v);
580 di->next_bucket[v] = di->bucket[k];
581 di->bucket[k] = v;
582
583 /* Transform semidominators into dominators. */
584 for (w = di->bucket[par]; w; w = di->next_bucket[w])
585 {
586 k = eval (di, w);
587 if (di->key[k] < di->key[w])
588 di->dom[w] = k;
589 else
590 di->dom[w] = par;
591 }
592 /* We don't need to cleanup next_bucket[]. */
593 di->bucket[par] = 0;
594 v--;
595 }
596
597 /* Explicitly define the dominators. */
598 di->dom[1] = 0;
599 for (v = 2; v <= di->nodes; v++)
600 if (di->dom[v] != di->key[v])
601 di->dom[v] = di->dom[di->dom[v]];
602 }
603
604 /* Assign dfs numbers starting from NUM to NODE and its sons. */
605
606 static void
607 assign_dfs_numbers (struct et_node *node, int *num)
608 {
609 struct et_node *son;
610
611 node->dfs_num_in = (*num)++;
612
613 if (node->son)
614 {
615 assign_dfs_numbers (node->son, num);
616 for (son = node->son->right; son != node->son; son = son->right)
617 assign_dfs_numbers (son, num);
618 }
619
620 node->dfs_num_out = (*num)++;
621 }
622
623 /* Compute the data necessary for fast resolving of dominator queries in a
624 static dominator tree. */
625
626 static void
627 compute_dom_fast_query (enum cdi_direction dir)
628 {
629 int num = 0;
630 basic_block bb;
631 unsigned int dir_index = dom_convert_dir_to_idx (dir);
632
633 gcc_checking_assert (dom_info_available_p (dir));
634
635 if (dom_computed[dir_index] == DOM_OK)
636 return;
637
638 FOR_ALL_BB_FN (bb, cfun)
639 {
640 if (!bb->dom[dir_index]->father)
641 assign_dfs_numbers (bb->dom[dir_index], &num);
642 }
643
644 dom_computed[dir_index] = DOM_OK;
645 }
646
647 /* The main entry point into this module. DIR is set depending on whether
648 we want to compute dominators or postdominators. */
649
650 void
651 calculate_dominance_info (enum cdi_direction dir)
652 {
653 struct dom_info di;
654 basic_block b;
655 unsigned int dir_index = dom_convert_dir_to_idx (dir);
656 bool reverse = (dir == CDI_POST_DOMINATORS) ? true : false;
657
658 if (dom_computed[dir_index] == DOM_OK)
659 return;
660
661 timevar_push (TV_DOMINANCE);
662 if (!dom_info_available_p (dir))
663 {
664 gcc_assert (!n_bbs_in_dom_tree[dir_index]);
665
666 FOR_ALL_BB_FN (b, cfun)
667 {
668 b->dom[dir_index] = et_new_tree (b);
669 }
670 n_bbs_in_dom_tree[dir_index] = n_basic_blocks_for_fn (cfun);
671
672 init_dom_info (&di, dir);
673 calc_dfs_tree (&di, reverse);
674 calc_idoms (&di, reverse);
675
676 FOR_EACH_BB_FN (b, cfun)
677 {
678 TBB d = di.dom[di.dfs_order[b->index]];
679
680 if (di.dfs_to_bb[d])
681 et_set_father (b->dom[dir_index], di.dfs_to_bb[d]->dom[dir_index]);
682 }
683
684 free_dom_info (&di);
685 dom_computed[dir_index] = DOM_NO_FAST_QUERY;
686 }
687
688 compute_dom_fast_query (dir);
689
690 timevar_pop (TV_DOMINANCE);
691 }
692
693 /* Free dominance information for direction DIR. */
694 void
695 free_dominance_info (function *fn, enum cdi_direction dir)
696 {
697 basic_block bb;
698 unsigned int dir_index = dom_convert_dir_to_idx (dir);
699
700 if (!dom_info_available_p (fn, dir))
701 return;
702
703 FOR_ALL_BB_FN (bb, fn)
704 {
705 et_free_tree_force (bb->dom[dir_index]);
706 bb->dom[dir_index] = NULL;
707 }
708 et_free_pools ();
709
710 fn->cfg->x_n_bbs_in_dom_tree[dir_index] = 0;
711
712 fn->cfg->x_dom_computed[dir_index] = DOM_NONE;
713 }
714
715 void
716 free_dominance_info (enum cdi_direction dir)
717 {
718 free_dominance_info (cfun, dir);
719 }
720
721 /* Return the immediate dominator of basic block BB. */
722 basic_block
723 get_immediate_dominator (enum cdi_direction dir, basic_block bb)
724 {
725 unsigned int dir_index = dom_convert_dir_to_idx (dir);
726 struct et_node *node = bb->dom[dir_index];
727
728 gcc_checking_assert (dom_computed[dir_index]);
729
730 if (!node->father)
731 return NULL;
732
733 return (basic_block) node->father->data;
734 }
735
736 /* Set the immediate dominator of the block possibly removing
737 existing edge. NULL can be used to remove any edge. */
738 void
739 set_immediate_dominator (enum cdi_direction dir, basic_block bb,
740 basic_block dominated_by)
741 {
742 unsigned int dir_index = dom_convert_dir_to_idx (dir);
743 struct et_node *node = bb->dom[dir_index];
744
745 gcc_checking_assert (dom_computed[dir_index]);
746
747 if (node->father)
748 {
749 if (node->father->data == dominated_by)
750 return;
751 et_split (node);
752 }
753
754 if (dominated_by)
755 et_set_father (node, dominated_by->dom[dir_index]);
756
757 if (dom_computed[dir_index] == DOM_OK)
758 dom_computed[dir_index] = DOM_NO_FAST_QUERY;
759 }
760
761 /* Returns the list of basic blocks immediately dominated by BB, in the
762 direction DIR. */
763 vec<basic_block>
764 get_dominated_by (enum cdi_direction dir, basic_block bb)
765 {
766 unsigned int dir_index = dom_convert_dir_to_idx (dir);
767 struct et_node *node = bb->dom[dir_index], *son = node->son, *ason;
768 vec<basic_block> bbs = vNULL;
769
770 gcc_checking_assert (dom_computed[dir_index]);
771
772 if (!son)
773 return vNULL;
774
775 bbs.safe_push ((basic_block) son->data);
776 for (ason = son->right; ason != son; ason = ason->right)
777 bbs.safe_push ((basic_block) ason->data);
778
779 return bbs;
780 }
781
782 /* Returns the list of basic blocks that are immediately dominated (in
783 direction DIR) by some block between N_REGION ones stored in REGION,
784 except for blocks in the REGION itself. */
785
786 vec<basic_block>
787 get_dominated_by_region (enum cdi_direction dir, basic_block *region,
788 unsigned n_region)
789 {
790 unsigned i;
791 basic_block dom;
792 vec<basic_block> doms = vNULL;
793
794 for (i = 0; i < n_region; i++)
795 region[i]->flags |= BB_DUPLICATED;
796 for (i = 0; i < n_region; i++)
797 for (dom = first_dom_son (dir, region[i]);
798 dom;
799 dom = next_dom_son (dir, dom))
800 if (!(dom->flags & BB_DUPLICATED))
801 doms.safe_push (dom);
802 for (i = 0; i < n_region; i++)
803 region[i]->flags &= ~BB_DUPLICATED;
804
805 return doms;
806 }
807
808 /* Returns the list of basic blocks including BB dominated by BB, in the
809 direction DIR up to DEPTH in the dominator tree. The DEPTH of zero will
810 produce a vector containing all dominated blocks. The vector will be sorted
811 in preorder. */
812
813 vec<basic_block>
814 get_dominated_to_depth (enum cdi_direction dir, basic_block bb, int depth)
815 {
816 vec<basic_block> bbs = vNULL;
817 unsigned i;
818 unsigned next_level_start;
819
820 i = 0;
821 bbs.safe_push (bb);
822 next_level_start = 1; /* = bbs.length (); */
823
824 do
825 {
826 basic_block son;
827
828 bb = bbs[i++];
829 for (son = first_dom_son (dir, bb);
830 son;
831 son = next_dom_son (dir, son))
832 bbs.safe_push (son);
833
834 if (i == next_level_start && --depth)
835 next_level_start = bbs.length ();
836 }
837 while (i < next_level_start);
838
839 return bbs;
840 }
841
842 /* Returns the list of basic blocks including BB dominated by BB, in the
843 direction DIR. The vector will be sorted in preorder. */
844
845 vec<basic_block>
846 get_all_dominated_blocks (enum cdi_direction dir, basic_block bb)
847 {
848 return get_dominated_to_depth (dir, bb, 0);
849 }
850
851 /* Redirect all edges pointing to BB to TO. */
852 void
853 redirect_immediate_dominators (enum cdi_direction dir, basic_block bb,
854 basic_block to)
855 {
856 unsigned int dir_index = dom_convert_dir_to_idx (dir);
857 struct et_node *bb_node, *to_node, *son;
858
859 bb_node = bb->dom[dir_index];
860 to_node = to->dom[dir_index];
861
862 gcc_checking_assert (dom_computed[dir_index]);
863
864 if (!bb_node->son)
865 return;
866
867 while (bb_node->son)
868 {
869 son = bb_node->son;
870
871 et_split (son);
872 et_set_father (son, to_node);
873 }
874
875 if (dom_computed[dir_index] == DOM_OK)
876 dom_computed[dir_index] = DOM_NO_FAST_QUERY;
877 }
878
879 /* Find first basic block in the tree dominating both BB1 and BB2. */
880 basic_block
881 nearest_common_dominator (enum cdi_direction dir, basic_block bb1, basic_block bb2)
882 {
883 unsigned int dir_index = dom_convert_dir_to_idx (dir);
884
885 gcc_checking_assert (dom_computed[dir_index]);
886
887 if (!bb1)
888 return bb2;
889 if (!bb2)
890 return bb1;
891
892 return (basic_block) et_nca (bb1->dom[dir_index], bb2->dom[dir_index])->data;
893 }
894
895
896 /* Find the nearest common dominator for the basic blocks in BLOCKS,
897 using dominance direction DIR. */
898
899 basic_block
900 nearest_common_dominator_for_set (enum cdi_direction dir, bitmap blocks)
901 {
902 unsigned i, first;
903 bitmap_iterator bi;
904 basic_block dom;
905
906 first = bitmap_first_set_bit (blocks);
907 dom = BASIC_BLOCK_FOR_FN (cfun, first);
908 EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
909 if (dom != BASIC_BLOCK_FOR_FN (cfun, i))
910 dom = nearest_common_dominator (dir, dom, BASIC_BLOCK_FOR_FN (cfun, i));
911
912 return dom;
913 }
914
915 /* Given a dominator tree, we can determine whether one thing
916 dominates another in constant time by using two DFS numbers:
917
918 1. The number for when we visit a node on the way down the tree
919 2. The number for when we visit a node on the way back up the tree
920
921 You can view these as bounds for the range of dfs numbers the
922 nodes in the subtree of the dominator tree rooted at that node
923 will contain.
924
925 The dominator tree is always a simple acyclic tree, so there are
926 only three possible relations two nodes in the dominator tree have
927 to each other:
928
929 1. Node A is above Node B (and thus, Node A dominates node B)
930
931 A
932 |
933 C
934 / \
935 B D
936
937
938 In the above case, DFS_Number_In of A will be <= DFS_Number_In of
939 B, and DFS_Number_Out of A will be >= DFS_Number_Out of B. This is
940 because we must hit A in the dominator tree *before* B on the walk
941 down, and we will hit A *after* B on the walk back up
942
943 2. Node A is below node B (and thus, node B dominates node A)
944
945
946 B
947 |
948 A
949 / \
950 C D
951
952 In the above case, DFS_Number_In of A will be >= DFS_Number_In of
953 B, and DFS_Number_Out of A will be <= DFS_Number_Out of B.
954
955 This is because we must hit A in the dominator tree *after* B on
956 the walk down, and we will hit A *before* B on the walk back up
957
958 3. Node A and B are siblings (and thus, neither dominates the other)
959
960 C
961 |
962 D
963 / \
964 A B
965
966 In the above case, DFS_Number_In of A will *always* be <=
967 DFS_Number_In of B, and DFS_Number_Out of A will *always* be <=
968 DFS_Number_Out of B. This is because we will always finish the dfs
969 walk of one of the subtrees before the other, and thus, the dfs
970 numbers for one subtree can't intersect with the range of dfs
971 numbers for the other subtree. If you swap A and B's position in
972 the dominator tree, the comparison changes direction, but the point
973 is that both comparisons will always go the same way if there is no
974 dominance relationship.
975
976 Thus, it is sufficient to write
977
978 A_Dominates_B (node A, node B)
979 {
980 return DFS_Number_In(A) <= DFS_Number_In(B)
981 && DFS_Number_Out (A) >= DFS_Number_Out(B);
982 }
983
984 A_Dominated_by_B (node A, node B)
985 {
986 return DFS_Number_In(A) >= DFS_Number_In(B)
987 && DFS_Number_Out (A) <= DFS_Number_Out(B);
988 } */
989
990 /* Return TRUE in case BB1 is dominated by BB2. */
991 bool
992 dominated_by_p (enum cdi_direction dir, const_basic_block bb1, const_basic_block bb2)
993 {
994 unsigned int dir_index = dom_convert_dir_to_idx (dir);
995 struct et_node *n1 = bb1->dom[dir_index], *n2 = bb2->dom[dir_index];
996
997 gcc_checking_assert (dom_computed[dir_index]);
998
999 if (dom_computed[dir_index] == DOM_OK)
1000 return (n1->dfs_num_in >= n2->dfs_num_in
1001 && n1->dfs_num_out <= n2->dfs_num_out);
1002
1003 return et_below (n1, n2);
1004 }
1005
1006 /* Returns the entry dfs number for basic block BB, in the direction DIR. */
1007
1008 unsigned
1009 bb_dom_dfs_in (enum cdi_direction dir, basic_block bb)
1010 {
1011 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1012 struct et_node *n = bb->dom[dir_index];
1013
1014 gcc_checking_assert (dom_computed[dir_index] == DOM_OK);
1015 return n->dfs_num_in;
1016 }
1017
1018 /* Returns the exit dfs number for basic block BB, in the direction DIR. */
1019
1020 unsigned
1021 bb_dom_dfs_out (enum cdi_direction dir, basic_block bb)
1022 {
1023 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1024 struct et_node *n = bb->dom[dir_index];
1025
1026 gcc_checking_assert (dom_computed[dir_index] == DOM_OK);
1027 return n->dfs_num_out;
1028 }
1029
1030 /* Verify invariants of dominator structure. */
1031 DEBUG_FUNCTION void
1032 verify_dominators (enum cdi_direction dir)
1033 {
1034 int err = 0;
1035 basic_block bb, imm_bb, imm_bb_correct;
1036 struct dom_info di;
1037 bool reverse = (dir == CDI_POST_DOMINATORS) ? true : false;
1038
1039 gcc_assert (dom_info_available_p (dir));
1040
1041 init_dom_info (&di, dir);
1042 calc_dfs_tree (&di, reverse);
1043 calc_idoms (&di, reverse);
1044
1045 FOR_EACH_BB_FN (bb, cfun)
1046 {
1047 imm_bb = get_immediate_dominator (dir, bb);
1048 if (!imm_bb)
1049 {
1050 error ("dominator of %d status unknown", bb->index);
1051 err = 1;
1052 }
1053
1054 imm_bb_correct = di.dfs_to_bb[di.dom[di.dfs_order[bb->index]]];
1055 if (imm_bb != imm_bb_correct)
1056 {
1057 error ("dominator of %d should be %d, not %d",
1058 bb->index, imm_bb_correct->index, imm_bb->index);
1059 err = 1;
1060 }
1061 }
1062
1063 free_dom_info (&di);
1064 gcc_assert (!err);
1065 }
1066
1067 /* Determine immediate dominator (or postdominator, according to DIR) of BB,
1068 assuming that dominators of other blocks are correct. We also use it to
1069 recompute the dominators in a restricted area, by iterating it until it
1070 reaches a fixed point. */
1071
1072 basic_block
1073 recompute_dominator (enum cdi_direction dir, basic_block bb)
1074 {
1075 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1076 basic_block dom_bb = NULL;
1077 edge e;
1078 edge_iterator ei;
1079
1080 gcc_checking_assert (dom_computed[dir_index]);
1081
1082 if (dir == CDI_DOMINATORS)
1083 {
1084 FOR_EACH_EDGE (e, ei, bb->preds)
1085 {
1086 if (!dominated_by_p (dir, e->src, bb))
1087 dom_bb = nearest_common_dominator (dir, dom_bb, e->src);
1088 }
1089 }
1090 else
1091 {
1092 FOR_EACH_EDGE (e, ei, bb->succs)
1093 {
1094 if (!dominated_by_p (dir, e->dest, bb))
1095 dom_bb = nearest_common_dominator (dir, dom_bb, e->dest);
1096 }
1097 }
1098
1099 return dom_bb;
1100 }
1101
1102 /* Use simple heuristics (see iterate_fix_dominators) to determine dominators
1103 of BBS. We assume that all the immediate dominators except for those of the
1104 blocks in BBS are correct. If CONSERVATIVE is true, we also assume that the
1105 currently recorded immediate dominators of blocks in BBS really dominate the
1106 blocks. The basic blocks for that we determine the dominator are removed
1107 from BBS. */
1108
1109 static void
1110 prune_bbs_to_update_dominators (vec<basic_block> bbs,
1111 bool conservative)
1112 {
1113 unsigned i;
1114 bool single;
1115 basic_block bb, dom = NULL;
1116 edge_iterator ei;
1117 edge e;
1118
1119 for (i = 0; bbs.iterate (i, &bb);)
1120 {
1121 if (bb == ENTRY_BLOCK_PTR_FOR_FN (cfun))
1122 goto succeed;
1123
1124 if (single_pred_p (bb))
1125 {
1126 set_immediate_dominator (CDI_DOMINATORS, bb, single_pred (bb));
1127 goto succeed;
1128 }
1129
1130 if (!conservative)
1131 goto fail;
1132
1133 single = true;
1134 dom = NULL;
1135 FOR_EACH_EDGE (e, ei, bb->preds)
1136 {
1137 if (dominated_by_p (CDI_DOMINATORS, e->src, bb))
1138 continue;
1139
1140 if (!dom)
1141 dom = e->src;
1142 else
1143 {
1144 single = false;
1145 dom = nearest_common_dominator (CDI_DOMINATORS, dom, e->src);
1146 }
1147 }
1148
1149 gcc_assert (dom != NULL);
1150 if (single
1151 || find_edge (dom, bb))
1152 {
1153 set_immediate_dominator (CDI_DOMINATORS, bb, dom);
1154 goto succeed;
1155 }
1156
1157 fail:
1158 i++;
1159 continue;
1160
1161 succeed:
1162 bbs.unordered_remove (i);
1163 }
1164 }
1165
1166 /* Returns root of the dominance tree in the direction DIR that contains
1167 BB. */
1168
1169 static basic_block
1170 root_of_dom_tree (enum cdi_direction dir, basic_block bb)
1171 {
1172 return (basic_block) et_root (bb->dom[dom_convert_dir_to_idx (dir)])->data;
1173 }
1174
1175 /* See the comment in iterate_fix_dominators. Finds the immediate dominators
1176 for the sons of Y, found using the SON and BROTHER arrays representing
1177 the dominance tree of graph G. BBS maps the vertices of G to the basic
1178 blocks. */
1179
1180 static void
1181 determine_dominators_for_sons (struct graph *g, vec<basic_block> bbs,
1182 int y, int *son, int *brother)
1183 {
1184 bitmap gprime;
1185 int i, a, nc;
1186 vec<int> *sccs;
1187 basic_block bb, dom, ybb;
1188 unsigned si;
1189 edge e;
1190 edge_iterator ei;
1191
1192 if (son[y] == -1)
1193 return;
1194 if (y == (int) bbs.length ())
1195 ybb = ENTRY_BLOCK_PTR_FOR_FN (cfun);
1196 else
1197 ybb = bbs[y];
1198
1199 if (brother[son[y]] == -1)
1200 {
1201 /* Handle the common case Y has just one son specially. */
1202 bb = bbs[son[y]];
1203 set_immediate_dominator (CDI_DOMINATORS, bb,
1204 recompute_dominator (CDI_DOMINATORS, bb));
1205 identify_vertices (g, y, son[y]);
1206 return;
1207 }
1208
1209 gprime = BITMAP_ALLOC (NULL);
1210 for (a = son[y]; a != -1; a = brother[a])
1211 bitmap_set_bit (gprime, a);
1212
1213 nc = graphds_scc (g, gprime);
1214 BITMAP_FREE (gprime);
1215
1216 /* ??? Needed to work around the pre-processor confusion with
1217 using a multi-argument template type as macro argument. */
1218 typedef vec<int> vec_int_heap;
1219 sccs = XCNEWVEC (vec_int_heap, nc);
1220 for (a = son[y]; a != -1; a = brother[a])
1221 sccs[g->vertices[a].component].safe_push (a);
1222
1223 for (i = nc - 1; i >= 0; i--)
1224 {
1225 dom = NULL;
1226 FOR_EACH_VEC_ELT (sccs[i], si, a)
1227 {
1228 bb = bbs[a];
1229 FOR_EACH_EDGE (e, ei, bb->preds)
1230 {
1231 if (root_of_dom_tree (CDI_DOMINATORS, e->src) != ybb)
1232 continue;
1233
1234 dom = nearest_common_dominator (CDI_DOMINATORS, dom, e->src);
1235 }
1236 }
1237
1238 gcc_assert (dom != NULL);
1239 FOR_EACH_VEC_ELT (sccs[i], si, a)
1240 {
1241 bb = bbs[a];
1242 set_immediate_dominator (CDI_DOMINATORS, bb, dom);
1243 }
1244 }
1245
1246 for (i = 0; i < nc; i++)
1247 sccs[i].release ();
1248 free (sccs);
1249
1250 for (a = son[y]; a != -1; a = brother[a])
1251 identify_vertices (g, y, a);
1252 }
1253
1254 /* Recompute dominance information for basic blocks in the set BBS. The
1255 function assumes that the immediate dominators of all the other blocks
1256 in CFG are correct, and that there are no unreachable blocks.
1257
1258 If CONSERVATIVE is true, we additionally assume that all the ancestors of
1259 a block of BBS in the current dominance tree dominate it. */
1260
1261 void
1262 iterate_fix_dominators (enum cdi_direction dir, vec<basic_block> bbs,
1263 bool conservative)
1264 {
1265 unsigned i;
1266 basic_block bb, dom;
1267 struct graph *g;
1268 int n, y;
1269 size_t dom_i;
1270 edge e;
1271 edge_iterator ei;
1272 int *parent, *son, *brother;
1273 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1274
1275 /* We only support updating dominators. There are some problems with
1276 updating postdominators (need to add fake edges from infinite loops
1277 and noreturn functions), and since we do not currently use
1278 iterate_fix_dominators for postdominators, any attempt to handle these
1279 problems would be unused, untested, and almost surely buggy. We keep
1280 the DIR argument for consistency with the rest of the dominator analysis
1281 interface. */
1282 gcc_checking_assert (dir == CDI_DOMINATORS && dom_computed[dir_index]);
1283
1284 /* The algorithm we use takes inspiration from the following papers, although
1285 the details are quite different from any of them:
1286
1287 [1] G. Ramalingam, T. Reps, An Incremental Algorithm for Maintaining the
1288 Dominator Tree of a Reducible Flowgraph
1289 [2] V. C. Sreedhar, G. R. Gao, Y.-F. Lee: Incremental computation of
1290 dominator trees
1291 [3] K. D. Cooper, T. J. Harvey and K. Kennedy: A Simple, Fast Dominance
1292 Algorithm
1293
1294 First, we use the following heuristics to decrease the size of the BBS
1295 set:
1296 a) if BB has a single predecessor, then its immediate dominator is this
1297 predecessor
1298 additionally, if CONSERVATIVE is true:
1299 b) if all the predecessors of BB except for one (X) are dominated by BB,
1300 then X is the immediate dominator of BB
1301 c) if the nearest common ancestor of the predecessors of BB is X and
1302 X -> BB is an edge in CFG, then X is the immediate dominator of BB
1303
1304 Then, we need to establish the dominance relation among the basic blocks
1305 in BBS. We split the dominance tree by removing the immediate dominator
1306 edges from BBS, creating a forest F. We form a graph G whose vertices
1307 are BBS and ENTRY and X -> Y is an edge of G if there exists an edge
1308 X' -> Y in CFG such that X' belongs to the tree of the dominance forest
1309 whose root is X. We then determine dominance tree of G. Note that
1310 for X, Y in BBS, X dominates Y in CFG if and only if X dominates Y in G.
1311 In this step, we can use arbitrary algorithm to determine dominators.
1312 We decided to prefer the algorithm [3] to the algorithm of
1313 Lengauer and Tarjan, since the set BBS is usually small (rarely exceeding
1314 10 during gcc bootstrap), and [3] should perform better in this case.
1315
1316 Finally, we need to determine the immediate dominators for the basic
1317 blocks of BBS. If the immediate dominator of X in G is Y, then
1318 the immediate dominator of X in CFG belongs to the tree of F rooted in
1319 Y. We process the dominator tree T of G recursively, starting from leaves.
1320 Suppose that X_1, X_2, ..., X_k are the sons of Y in T, and that the
1321 subtrees of the dominance tree of CFG rooted in X_i are already correct.
1322 Let G' be the subgraph of G induced by {X_1, X_2, ..., X_k}. We make
1323 the following observations:
1324 (i) the immediate dominator of all blocks in a strongly connected
1325 component of G' is the same
1326 (ii) if X has no predecessors in G', then the immediate dominator of X
1327 is the nearest common ancestor of the predecessors of X in the
1328 subtree of F rooted in Y
1329 Therefore, it suffices to find the topological ordering of G', and
1330 process the nodes X_i in this order using the rules (i) and (ii).
1331 Then, we contract all the nodes X_i with Y in G, so that the further
1332 steps work correctly. */
1333
1334 if (!conservative)
1335 {
1336 /* Split the tree now. If the idoms of blocks in BBS are not
1337 conservatively correct, setting the dominators using the
1338 heuristics in prune_bbs_to_update_dominators could
1339 create cycles in the dominance "tree", and cause ICE. */
1340 FOR_EACH_VEC_ELT (bbs, i, bb)
1341 set_immediate_dominator (CDI_DOMINATORS, bb, NULL);
1342 }
1343
1344 prune_bbs_to_update_dominators (bbs, conservative);
1345 n = bbs.length ();
1346
1347 if (n == 0)
1348 return;
1349
1350 if (n == 1)
1351 {
1352 bb = bbs[0];
1353 set_immediate_dominator (CDI_DOMINATORS, bb,
1354 recompute_dominator (CDI_DOMINATORS, bb));
1355 return;
1356 }
1357
1358 /* Construct the graph G. */
1359 hash_map<basic_block, int> map (251);
1360 FOR_EACH_VEC_ELT (bbs, i, bb)
1361 {
1362 /* If the dominance tree is conservatively correct, split it now. */
1363 if (conservative)
1364 set_immediate_dominator (CDI_DOMINATORS, bb, NULL);
1365 map.put (bb, i);
1366 }
1367 map.put (ENTRY_BLOCK_PTR_FOR_FN (cfun), n);
1368
1369 g = new_graph (n + 1);
1370 for (y = 0; y < g->n_vertices; y++)
1371 g->vertices[y].data = BITMAP_ALLOC (NULL);
1372 FOR_EACH_VEC_ELT (bbs, i, bb)
1373 {
1374 FOR_EACH_EDGE (e, ei, bb->preds)
1375 {
1376 dom = root_of_dom_tree (CDI_DOMINATORS, e->src);
1377 if (dom == bb)
1378 continue;
1379
1380 dom_i = *map.get (dom);
1381
1382 /* Do not include parallel edges to G. */
1383 if (!bitmap_set_bit ((bitmap) g->vertices[dom_i].data, i))
1384 continue;
1385
1386 add_edge (g, dom_i, i);
1387 }
1388 }
1389 for (y = 0; y < g->n_vertices; y++)
1390 BITMAP_FREE (g->vertices[y].data);
1391
1392 /* Find the dominator tree of G. */
1393 son = XNEWVEC (int, n + 1);
1394 brother = XNEWVEC (int, n + 1);
1395 parent = XNEWVEC (int, n + 1);
1396 graphds_domtree (g, n, parent, son, brother);
1397
1398 /* Finally, traverse the tree and find the immediate dominators. */
1399 for (y = n; son[y] != -1; y = son[y])
1400 continue;
1401 while (y != -1)
1402 {
1403 determine_dominators_for_sons (g, bbs, y, son, brother);
1404
1405 if (brother[y] != -1)
1406 {
1407 y = brother[y];
1408 while (son[y] != -1)
1409 y = son[y];
1410 }
1411 else
1412 y = parent[y];
1413 }
1414
1415 free (son);
1416 free (brother);
1417 free (parent);
1418
1419 free_graph (g);
1420 }
1421
1422 void
1423 add_to_dominance_info (enum cdi_direction dir, basic_block bb)
1424 {
1425 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1426
1427 gcc_checking_assert (dom_computed[dir_index] && !bb->dom[dir_index]);
1428
1429 n_bbs_in_dom_tree[dir_index]++;
1430
1431 bb->dom[dir_index] = et_new_tree (bb);
1432
1433 if (dom_computed[dir_index] == DOM_OK)
1434 dom_computed[dir_index] = DOM_NO_FAST_QUERY;
1435 }
1436
1437 void
1438 delete_from_dominance_info (enum cdi_direction dir, basic_block bb)
1439 {
1440 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1441
1442 gcc_checking_assert (dom_computed[dir_index]);
1443
1444 et_free_tree (bb->dom[dir_index]);
1445 bb->dom[dir_index] = NULL;
1446 n_bbs_in_dom_tree[dir_index]--;
1447
1448 if (dom_computed[dir_index] == DOM_OK)
1449 dom_computed[dir_index] = DOM_NO_FAST_QUERY;
1450 }
1451
1452 /* Returns the first son of BB in the dominator or postdominator tree
1453 as determined by DIR. */
1454
1455 basic_block
1456 first_dom_son (enum cdi_direction dir, basic_block bb)
1457 {
1458 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1459 struct et_node *son = bb->dom[dir_index]->son;
1460
1461 return (basic_block) (son ? son->data : NULL);
1462 }
1463
1464 /* Returns the next dominance son after BB in the dominator or postdominator
1465 tree as determined by DIR, or NULL if it was the last one. */
1466
1467 basic_block
1468 next_dom_son (enum cdi_direction dir, basic_block bb)
1469 {
1470 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1471 struct et_node *next = bb->dom[dir_index]->right;
1472
1473 return (basic_block) (next->father->son == next ? NULL : next->data);
1474 }
1475
1476 /* Return dominance availability for dominance info DIR. */
1477
1478 enum dom_state
1479 dom_info_state (function *fn, enum cdi_direction dir)
1480 {
1481 if (!fn->cfg)
1482 return DOM_NONE;
1483
1484 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1485 return fn->cfg->x_dom_computed[dir_index];
1486 }
1487
1488 enum dom_state
1489 dom_info_state (enum cdi_direction dir)
1490 {
1491 return dom_info_state (cfun, dir);
1492 }
1493
1494 /* Set the dominance availability for dominance info DIR to NEW_STATE. */
1495
1496 void
1497 set_dom_info_availability (enum cdi_direction dir, enum dom_state new_state)
1498 {
1499 unsigned int dir_index = dom_convert_dir_to_idx (dir);
1500
1501 dom_computed[dir_index] = new_state;
1502 }
1503
1504 /* Returns true if dominance information for direction DIR is available. */
1505
1506 bool
1507 dom_info_available_p (function *fn, enum cdi_direction dir)
1508 {
1509 return dom_info_state (fn, dir) != DOM_NONE;
1510 }
1511
1512 bool
1513 dom_info_available_p (enum cdi_direction dir)
1514 {
1515 return dom_info_available_p (cfun, dir);
1516 }
1517
1518 DEBUG_FUNCTION void
1519 debug_dominance_info (enum cdi_direction dir)
1520 {
1521 basic_block bb, bb2;
1522 FOR_EACH_BB_FN (bb, cfun)
1523 if ((bb2 = get_immediate_dominator (dir, bb)))
1524 fprintf (stderr, "%i %i\n", bb->index, bb2->index);
1525 }
1526
1527 /* Prints to stderr representation of the dominance tree (for direction DIR)
1528 rooted in ROOT, indented by INDENT tabulators. If INDENT_FIRST is false,
1529 the first line of the output is not indented. */
1530
1531 static void
1532 debug_dominance_tree_1 (enum cdi_direction dir, basic_block root,
1533 unsigned indent, bool indent_first)
1534 {
1535 basic_block son;
1536 unsigned i;
1537 bool first = true;
1538
1539 if (indent_first)
1540 for (i = 0; i < indent; i++)
1541 fprintf (stderr, "\t");
1542 fprintf (stderr, "%d\t", root->index);
1543
1544 for (son = first_dom_son (dir, root);
1545 son;
1546 son = next_dom_son (dir, son))
1547 {
1548 debug_dominance_tree_1 (dir, son, indent + 1, !first);
1549 first = false;
1550 }
1551
1552 if (first)
1553 fprintf (stderr, "\n");
1554 }
1555
1556 /* Prints to stderr representation of the dominance tree (for direction DIR)
1557 rooted in ROOT. */
1558
1559 DEBUG_FUNCTION void
1560 debug_dominance_tree (enum cdi_direction dir, basic_block root)
1561 {
1562 debug_dominance_tree_1 (dir, root, 0, false);
1563 }