813 lines
23 KiB
C
813 lines
23 KiB
C
/* Calculate (post)dominators in slightly super-linear time.
|
|
Copyright (C) 2000 Free Software Foundation, Inc.
|
|
Contributed by Michael Matz (matz@ifh.de).
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
GCC is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GCC; see the file COPYING. If not, write to the Free
|
|
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
|
02111-1307, USA. */
|
|
|
|
/* This file implements the well known algorithm from Lengauer and Tarjan
|
|
to compute the dominators in a control flow graph. A basic block D is said
|
|
to dominate another block X, when all paths from the entry node of the CFG
|
|
to X go also over D. The dominance relation is a transitive reflexive
|
|
relation and its minimal transitive reduction is a tree, called the
|
|
dominator tree. So for each block X besides the entry block exists a
|
|
block I(X), called the immediate dominator of X, which is the parent of X
|
|
in the dominator tree.
|
|
|
|
The algorithm computes this dominator tree implicitly by computing for
|
|
each block its immediate dominator. We use tree balancing and path
|
|
compression, so its the O(e*a(e,v)) variant, where a(e,v) is the very
|
|
slowly growing functional inverse of the Ackerman function. */
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "rtl.h"
|
|
#include "hard-reg-set.h"
|
|
#include "basic-block.h"
|
|
#include "errors.h"
|
|
#include "et-forest.h"
|
|
|
|
struct dominance_info
|
|
{
|
|
et_forest_t forest;
|
|
varray_type varray;
|
|
};
|
|
|
|
#define BB_NODE(info, bb) \
|
|
((et_forest_node_t)VARRAY_GENERIC_PTR ((info)->varray, (bb)->index + 2))
|
|
#define SET_BB_NODE(info, bb, node) \
|
|
(VARRAY_GENERIC_PTR ((info)->varray, (bb)->index + 2) = (node))
|
|
|
|
/* We name our nodes with integers, beginning with 1. Zero is reserved for
|
|
'undefined' or 'end of list'. The name of each node is given by the dfs
|
|
number of the corresponding basic block. Please note, that we include the
|
|
artificial ENTRY_BLOCK (or EXIT_BLOCK in the post-dom case) in our lists to
|
|
support multiple entry points. As it has no real basic block index we use
|
|
'last_basic_block' for that. Its dfs number is of course 1. */
|
|
|
|
/* Type of Basic Block aka. TBB */
|
|
typedef unsigned int TBB;
|
|
|
|
/* We work in a poor-mans object oriented fashion, and carry an instance of
|
|
this structure through all our 'methods'. It holds various arrays
|
|
reflecting the (sub)structure of the flowgraph. Most of them are of type
|
|
TBB and are also indexed by TBB. */
|
|
|
|
struct dom_info
|
|
{
|
|
/* The parent of a node in the DFS tree. */
|
|
TBB *dfs_parent;
|
|
/* For a node x key[x] is roughly the node nearest to the root from which
|
|
exists a way to x only over nodes behind x. Such a node is also called
|
|
semidominator. */
|
|
TBB *key;
|
|
/* The value in path_min[x] is the node y on the path from x to the root of
|
|
the tree x is in with the smallest key[y]. */
|
|
TBB *path_min;
|
|
/* bucket[x] points to the first node of the set of nodes having x as key. */
|
|
TBB *bucket;
|
|
/* And next_bucket[x] points to the next node. */
|
|
TBB *next_bucket;
|
|
/* After the algorithm is done, dom[x] contains the immediate dominator
|
|
of x. */
|
|
TBB *dom;
|
|
|
|
/* The following few fields implement the structures needed for disjoint
|
|
sets. */
|
|
/* set_chain[x] is the next node on the path from x to the representant
|
|
of the set containing x. If set_chain[x]==0 then x is a root. */
|
|
TBB *set_chain;
|
|
/* set_size[x] is the number of elements in the set named by x. */
|
|
unsigned int *set_size;
|
|
/* set_child[x] is used for balancing the tree representing a set. It can
|
|
be understood as the next sibling of x. */
|
|
TBB *set_child;
|
|
|
|
/* If b is the number of a basic block (BB->index), dfs_order[b] is the
|
|
number of that node in DFS order counted from 1. This is an index
|
|
into most of the other arrays in this structure. */
|
|
TBB *dfs_order;
|
|
/* If x is the DFS-index of a node which corresponds with a basic block,
|
|
dfs_to_bb[x] is that basic block. Note, that in our structure there are
|
|
more nodes that basic blocks, so only dfs_to_bb[dfs_order[bb->index]]==bb
|
|
is true for every basic block bb, but not the opposite. */
|
|
basic_block *dfs_to_bb;
|
|
|
|
/* This is the next free DFS number when creating the DFS tree or forest. */
|
|
unsigned int dfsnum;
|
|
/* The number of nodes in the DFS tree (==dfsnum-1). */
|
|
unsigned int nodes;
|
|
};
|
|
|
|
static void init_dom_info PARAMS ((struct dom_info *));
|
|
static void free_dom_info PARAMS ((struct dom_info *));
|
|
static void calc_dfs_tree_nonrec PARAMS ((struct dom_info *,
|
|
basic_block,
|
|
enum cdi_direction));
|
|
static void calc_dfs_tree PARAMS ((struct dom_info *,
|
|
enum cdi_direction));
|
|
static void compress PARAMS ((struct dom_info *, TBB));
|
|
static TBB eval PARAMS ((struct dom_info *, TBB));
|
|
static void link_roots PARAMS ((struct dom_info *, TBB, TBB));
|
|
static void calc_idoms PARAMS ((struct dom_info *,
|
|
enum cdi_direction));
|
|
void debug_dominance_info PARAMS ((dominance_info));
|
|
|
|
/* Helper macro for allocating and initializing an array,
|
|
for aesthetic reasons. */
|
|
#define init_ar(var, type, num, content) \
|
|
do \
|
|
{ \
|
|
unsigned int i = 1; /* Catch content == i. */ \
|
|
if (! (content)) \
|
|
(var) = (type *) xcalloc ((num), sizeof (type)); \
|
|
else \
|
|
{ \
|
|
(var) = (type *) xmalloc ((num) * sizeof (type)); \
|
|
for (i = 0; i < num; i++) \
|
|
(var)[i] = (content); \
|
|
} \
|
|
} \
|
|
while (0)
|
|
|
|
/* Allocate all needed memory in a pessimistic fashion (so we round up).
|
|
This initializes the contents of DI, which already must be allocated. */
|
|
|
|
static void
|
|
init_dom_info (di)
|
|
struct dom_info *di;
|
|
{
|
|
/* We need memory for n_basic_blocks nodes and the ENTRY_BLOCK or
|
|
EXIT_BLOCK. */
|
|
unsigned int num = n_basic_blocks + 1 + 1;
|
|
init_ar (di->dfs_parent, TBB, num, 0);
|
|
init_ar (di->path_min, TBB, num, i);
|
|
init_ar (di->key, TBB, num, i);
|
|
init_ar (di->dom, TBB, num, 0);
|
|
|
|
init_ar (di->bucket, TBB, num, 0);
|
|
init_ar (di->next_bucket, TBB, num, 0);
|
|
|
|
init_ar (di->set_chain, TBB, num, 0);
|
|
init_ar (di->set_size, unsigned int, num, 1);
|
|
init_ar (di->set_child, TBB, num, 0);
|
|
|
|
init_ar (di->dfs_order, TBB, (unsigned int) last_basic_block + 1, 0);
|
|
init_ar (di->dfs_to_bb, basic_block, num, 0);
|
|
|
|
di->dfsnum = 1;
|
|
di->nodes = 0;
|
|
}
|
|
|
|
#undef init_ar
|
|
|
|
/* Free all allocated memory in DI, but not DI itself. */
|
|
|
|
static void
|
|
free_dom_info (di)
|
|
struct dom_info *di;
|
|
{
|
|
free (di->dfs_parent);
|
|
free (di->path_min);
|
|
free (di->key);
|
|
free (di->dom);
|
|
free (di->bucket);
|
|
free (di->next_bucket);
|
|
free (di->set_chain);
|
|
free (di->set_size);
|
|
free (di->set_child);
|
|
free (di->dfs_order);
|
|
free (di->dfs_to_bb);
|
|
}
|
|
|
|
/* The nonrecursive variant of creating a DFS tree. DI is our working
|
|
structure, BB the starting basic block for this tree and REVERSE
|
|
is true, if predecessors should be visited instead of successors of a
|
|
node. After this is done all nodes reachable from BB were visited, have
|
|
assigned their dfs number and are linked together to form a tree. */
|
|
|
|
static void
|
|
calc_dfs_tree_nonrec (di, bb, reverse)
|
|
struct dom_info *di;
|
|
basic_block bb;
|
|
enum cdi_direction reverse;
|
|
{
|
|
/* We never call this with bb==EXIT_BLOCK_PTR (ENTRY_BLOCK_PTR if REVERSE). */
|
|
/* We call this _only_ if bb is not already visited. */
|
|
edge e;
|
|
TBB child_i, my_i = 0;
|
|
edge *stack;
|
|
int sp;
|
|
/* Start block (ENTRY_BLOCK_PTR for forward problem, EXIT_BLOCK for backward
|
|
problem). */
|
|
basic_block en_block;
|
|
/* Ending block. */
|
|
basic_block ex_block;
|
|
|
|
stack = (edge *) xmalloc ((n_basic_blocks + 3) * sizeof (edge));
|
|
sp = 0;
|
|
|
|
/* Initialize our border blocks, and the first edge. */
|
|
if (reverse)
|
|
{
|
|
e = bb->pred;
|
|
en_block = EXIT_BLOCK_PTR;
|
|
ex_block = ENTRY_BLOCK_PTR;
|
|
}
|
|
else
|
|
{
|
|
e = bb->succ;
|
|
en_block = ENTRY_BLOCK_PTR;
|
|
ex_block = EXIT_BLOCK_PTR;
|
|
}
|
|
|
|
/* When the stack is empty we break out of this loop. */
|
|
while (1)
|
|
{
|
|
basic_block bn;
|
|
|
|
/* This loop traverses edges e in depth first manner, and fills the
|
|
stack. */
|
|
while (e)
|
|
{
|
|
edge e_next;
|
|
|
|
/* Deduce from E the current and the next block (BB and BN), and the
|
|
next edge. */
|
|
if (reverse)
|
|
{
|
|
bn = e->src;
|
|
|
|
/* If the next node BN is either already visited or a border
|
|
block the current edge is useless, and simply overwritten
|
|
with the next edge out of the current node. */
|
|
if (bn == ex_block || di->dfs_order[bn->index])
|
|
{
|
|
e = e->pred_next;
|
|
continue;
|
|
}
|
|
bb = e->dest;
|
|
e_next = bn->pred;
|
|
}
|
|
else
|
|
{
|
|
bn = e->dest;
|
|
if (bn == ex_block || di->dfs_order[bn->index])
|
|
{
|
|
e = e->succ_next;
|
|
continue;
|
|
}
|
|
bb = e->src;
|
|
e_next = bn->succ;
|
|
}
|
|
|
|
if (bn == en_block)
|
|
abort ();
|
|
|
|
/* Fill the DFS tree info calculatable _before_ recursing. */
|
|
if (bb != en_block)
|
|
my_i = di->dfs_order[bb->index];
|
|
else
|
|
my_i = di->dfs_order[last_basic_block];
|
|
child_i = di->dfs_order[bn->index] = di->dfsnum++;
|
|
di->dfs_to_bb[child_i] = bn;
|
|
di->dfs_parent[child_i] = my_i;
|
|
|
|
/* Save the current point in the CFG on the stack, and recurse. */
|
|
stack[sp++] = e;
|
|
e = e_next;
|
|
}
|
|
|
|
if (!sp)
|
|
break;
|
|
e = stack[--sp];
|
|
|
|
/* OK. The edge-list was exhausted, meaning normally we would
|
|
end the recursion. After returning from the recursive call,
|
|
there were (may be) other statements which were run after a
|
|
child node was completely considered by DFS. Here is the
|
|
point to do it in the non-recursive variant.
|
|
E.g. The block just completed is in e->dest for forward DFS,
|
|
the block not yet completed (the parent of the one above)
|
|
in e->src. This could be used e.g. for computing the number of
|
|
descendants or the tree depth. */
|
|
if (reverse)
|
|
e = e->pred_next;
|
|
else
|
|
e = e->succ_next;
|
|
}
|
|
free (stack);
|
|
}
|
|
|
|
/* The main entry for calculating the DFS tree or forest. DI is our working
|
|
structure and REVERSE is true, if we are interested in the reverse flow
|
|
graph. In that case the result is not necessarily a tree but a forest,
|
|
because there may be nodes from which the EXIT_BLOCK is unreachable. */
|
|
|
|
static void
|
|
calc_dfs_tree (di, reverse)
|
|
struct dom_info *di;
|
|
enum cdi_direction reverse;
|
|
{
|
|
/* The first block is the ENTRY_BLOCK (or EXIT_BLOCK if REVERSE). */
|
|
basic_block begin = reverse ? EXIT_BLOCK_PTR : ENTRY_BLOCK_PTR;
|
|
di->dfs_order[last_basic_block] = di->dfsnum;
|
|
di->dfs_to_bb[di->dfsnum] = begin;
|
|
di->dfsnum++;
|
|
|
|
calc_dfs_tree_nonrec (di, begin, reverse);
|
|
|
|
if (reverse)
|
|
{
|
|
/* In the post-dom case we may have nodes without a path to EXIT_BLOCK.
|
|
They are reverse-unreachable. In the dom-case we disallow such
|
|
nodes, but in post-dom we have to deal with them, so we simply
|
|
include them in the DFS tree which actually becomes a forest. */
|
|
basic_block b;
|
|
FOR_EACH_BB_REVERSE (b)
|
|
{
|
|
if (di->dfs_order[b->index])
|
|
continue;
|
|
di->dfs_order[b->index] = di->dfsnum;
|
|
di->dfs_to_bb[di->dfsnum] = b;
|
|
di->dfsnum++;
|
|
calc_dfs_tree_nonrec (di, b, reverse);
|
|
}
|
|
}
|
|
|
|
di->nodes = di->dfsnum - 1;
|
|
|
|
/* This aborts e.g. when there is _no_ path from ENTRY to EXIT at all. */
|
|
if (di->nodes != (unsigned int) n_basic_blocks + 1)
|
|
abort ();
|
|
}
|
|
|
|
/* Compress the path from V to the root of its set and update path_min at the
|
|
same time. After compress(di, V) set_chain[V] is the root of the set V is
|
|
in and path_min[V] is the node with the smallest key[] value on the path
|
|
from V to that root. */
|
|
|
|
static void
|
|
compress (di, v)
|
|
struct dom_info *di;
|
|
TBB v;
|
|
{
|
|
/* Btw. It's not worth to unrecurse compress() as the depth is usually not
|
|
greater than 5 even for huge graphs (I've not seen call depth > 4).
|
|
Also performance wise compress() ranges _far_ behind eval(). */
|
|
TBB parent = di->set_chain[v];
|
|
if (di->set_chain[parent])
|
|
{
|
|
compress (di, parent);
|
|
if (di->key[di->path_min[parent]] < di->key[di->path_min[v]])
|
|
di->path_min[v] = di->path_min[parent];
|
|
di->set_chain[v] = di->set_chain[parent];
|
|
}
|
|
}
|
|
|
|
/* Compress the path from V to the set root of V if needed (when the root has
|
|
changed since the last call). Returns the node with the smallest key[]
|
|
value on the path from V to the root. */
|
|
|
|
static inline TBB
|
|
eval (di, v)
|
|
struct dom_info *di;
|
|
TBB v;
|
|
{
|
|
/* The representant of the set V is in, also called root (as the set
|
|
representation is a tree). */
|
|
TBB rep = di->set_chain[v];
|
|
|
|
/* V itself is the root. */
|
|
if (!rep)
|
|
return di->path_min[v];
|
|
|
|
/* Compress only if necessary. */
|
|
if (di->set_chain[rep])
|
|
{
|
|
compress (di, v);
|
|
rep = di->set_chain[v];
|
|
}
|
|
|
|
if (di->key[di->path_min[rep]] >= di->key[di->path_min[v]])
|
|
return di->path_min[v];
|
|
else
|
|
return di->path_min[rep];
|
|
}
|
|
|
|
/* This essentially merges the two sets of V and W, giving a single set with
|
|
the new root V. The internal representation of these disjoint sets is a
|
|
balanced tree. Currently link(V,W) is only used with V being the parent
|
|
of W. */
|
|
|
|
static void
|
|
link_roots (di, v, w)
|
|
struct dom_info *di;
|
|
TBB v, w;
|
|
{
|
|
TBB s = w;
|
|
|
|
/* Rebalance the tree. */
|
|
while (di->key[di->path_min[w]] < di->key[di->path_min[di->set_child[s]]])
|
|
{
|
|
if (di->set_size[s] + di->set_size[di->set_child[di->set_child[s]]]
|
|
>= 2 * di->set_size[di->set_child[s]])
|
|
{
|
|
di->set_chain[di->set_child[s]] = s;
|
|
di->set_child[s] = di->set_child[di->set_child[s]];
|
|
}
|
|
else
|
|
{
|
|
di->set_size[di->set_child[s]] = di->set_size[s];
|
|
s = di->set_chain[s] = di->set_child[s];
|
|
}
|
|
}
|
|
|
|
di->path_min[s] = di->path_min[w];
|
|
di->set_size[v] += di->set_size[w];
|
|
if (di->set_size[v] < 2 * di->set_size[w])
|
|
{
|
|
TBB tmp = s;
|
|
s = di->set_child[v];
|
|
di->set_child[v] = tmp;
|
|
}
|
|
|
|
/* Merge all subtrees. */
|
|
while (s)
|
|
{
|
|
di->set_chain[s] = v;
|
|
s = di->set_child[s];
|
|
}
|
|
}
|
|
|
|
/* This calculates the immediate dominators (or post-dominators if REVERSE is
|
|
true). DI is our working structure and should hold the DFS forest.
|
|
On return the immediate dominator to node V is in di->dom[V]. */
|
|
|
|
static void
|
|
calc_idoms (di, reverse)
|
|
struct dom_info *di;
|
|
enum cdi_direction reverse;
|
|
{
|
|
TBB v, w, k, par;
|
|
basic_block en_block;
|
|
if (reverse)
|
|
en_block = EXIT_BLOCK_PTR;
|
|
else
|
|
en_block = ENTRY_BLOCK_PTR;
|
|
|
|
/* Go backwards in DFS order, to first look at the leafs. */
|
|
v = di->nodes;
|
|
while (v > 1)
|
|
{
|
|
basic_block bb = di->dfs_to_bb[v];
|
|
edge e, e_next;
|
|
|
|
par = di->dfs_parent[v];
|
|
k = v;
|
|
if (reverse)
|
|
e = bb->succ;
|
|
else
|
|
e = bb->pred;
|
|
|
|
/* Search all direct predecessors for the smallest node with a path
|
|
to them. That way we have the smallest node with also a path to
|
|
us only over nodes behind us. In effect we search for our
|
|
semidominator. */
|
|
for (; e; e = e_next)
|
|
{
|
|
TBB k1;
|
|
basic_block b;
|
|
|
|
if (reverse)
|
|
{
|
|
b = e->dest;
|
|
e_next = e->succ_next;
|
|
}
|
|
else
|
|
{
|
|
b = e->src;
|
|
e_next = e->pred_next;
|
|
}
|
|
if (b == en_block)
|
|
k1 = di->dfs_order[last_basic_block];
|
|
else
|
|
k1 = di->dfs_order[b->index];
|
|
|
|
/* Call eval() only if really needed. If k1 is above V in DFS tree,
|
|
then we know, that eval(k1) == k1 and key[k1] == k1. */
|
|
if (k1 > v)
|
|
k1 = di->key[eval (di, k1)];
|
|
if (k1 < k)
|
|
k = k1;
|
|
}
|
|
|
|
di->key[v] = k;
|
|
link_roots (di, par, v);
|
|
di->next_bucket[v] = di->bucket[k];
|
|
di->bucket[k] = v;
|
|
|
|
/* Transform semidominators into dominators. */
|
|
for (w = di->bucket[par]; w; w = di->next_bucket[w])
|
|
{
|
|
k = eval (di, w);
|
|
if (di->key[k] < di->key[w])
|
|
di->dom[w] = k;
|
|
else
|
|
di->dom[w] = par;
|
|
}
|
|
/* We don't need to cleanup next_bucket[]. */
|
|
di->bucket[par] = 0;
|
|
v--;
|
|
}
|
|
|
|
/* Explicitly define the dominators. */
|
|
di->dom[1] = 0;
|
|
for (v = 2; v <= di->nodes; v++)
|
|
if (di->dom[v] != di->key[v])
|
|
di->dom[v] = di->dom[di->dom[v]];
|
|
}
|
|
|
|
/* The main entry point into this module. IDOM is an integer array with room
|
|
for last_basic_block integers, DOMS is a preallocated sbitmap array having
|
|
room for last_basic_block^2 bits, and POST is true if the caller wants to
|
|
know post-dominators.
|
|
|
|
On return IDOM[i] will be the BB->index of the immediate (post) dominator
|
|
of basic block i, and DOMS[i] will have set bit j if basic block j is a
|
|
(post)dominator for block i.
|
|
|
|
Either IDOM or DOMS may be NULL (meaning the caller is not interested in
|
|
immediate resp. all dominators). */
|
|
|
|
dominance_info
|
|
calculate_dominance_info (reverse)
|
|
enum cdi_direction reverse;
|
|
{
|
|
struct dom_info di;
|
|
dominance_info info;
|
|
basic_block b;
|
|
|
|
/* allocate structure for dominance information. */
|
|
info = xmalloc (sizeof (struct dominance_info));
|
|
info->forest = et_forest_create ();
|
|
VARRAY_GENERIC_PTR_INIT (info->varray, last_basic_block + 3, "dominance info");
|
|
|
|
/* Add the two well-known basic blocks. */
|
|
SET_BB_NODE (info, ENTRY_BLOCK_PTR, et_forest_add_node (info->forest,
|
|
ENTRY_BLOCK_PTR));
|
|
SET_BB_NODE (info, EXIT_BLOCK_PTR, et_forest_add_node (info->forest,
|
|
EXIT_BLOCK_PTR));
|
|
FOR_EACH_BB (b)
|
|
SET_BB_NODE (info, b, et_forest_add_node (info->forest, b));
|
|
|
|
init_dom_info (&di);
|
|
calc_dfs_tree (&di, reverse);
|
|
calc_idoms (&di, reverse);
|
|
|
|
|
|
FOR_EACH_BB (b)
|
|
{
|
|
TBB d = di.dom[di.dfs_order[b->index]];
|
|
|
|
if (di.dfs_to_bb[d])
|
|
et_forest_add_edge (info->forest, BB_NODE (info, di.dfs_to_bb[d]), BB_NODE (info, b));
|
|
}
|
|
|
|
free_dom_info (&di);
|
|
return info;
|
|
}
|
|
|
|
/* Free dominance information. */
|
|
void
|
|
free_dominance_info (info)
|
|
dominance_info info;
|
|
{
|
|
basic_block bb;
|
|
|
|
/* Allow users to create new basic block without setting up the dominance
|
|
information for them. */
|
|
FOR_EACH_BB (bb)
|
|
if (bb->index < (int)(info->varray->num_elements - 2)
|
|
&& BB_NODE (info, bb))
|
|
delete_from_dominance_info (info, bb);
|
|
delete_from_dominance_info (info, ENTRY_BLOCK_PTR);
|
|
delete_from_dominance_info (info, EXIT_BLOCK_PTR);
|
|
et_forest_delete (info->forest);
|
|
VARRAY_GROW (info->varray, 0);
|
|
free (info);
|
|
}
|
|
|
|
/* Return the immediate dominator of basic block BB. */
|
|
basic_block
|
|
get_immediate_dominator (dom, bb)
|
|
dominance_info dom;
|
|
basic_block bb;
|
|
{
|
|
return et_forest_node_value (dom->forest,
|
|
et_forest_parent (dom->forest,
|
|
BB_NODE (dom, bb)));
|
|
}
|
|
|
|
/* Set the immediate dominator of the block possibly removing
|
|
existing edge. NULL can be used to remove any edge. */
|
|
inline void
|
|
set_immediate_dominator (dom, bb, dominated_by)
|
|
dominance_info dom;
|
|
basic_block bb, dominated_by;
|
|
{
|
|
void *aux_bb_node;
|
|
et_forest_node_t bb_node = BB_NODE (dom, bb);
|
|
|
|
aux_bb_node = et_forest_parent (dom->forest, bb_node);
|
|
if (aux_bb_node)
|
|
et_forest_remove_edge (dom->forest, aux_bb_node, bb_node);
|
|
if (dominated_by != NULL)
|
|
{
|
|
if (bb == dominated_by)
|
|
abort ();
|
|
if (!et_forest_add_edge (dom->forest, BB_NODE (dom, dominated_by), bb_node))
|
|
abort ();
|
|
}
|
|
}
|
|
|
|
/* Store all basic blocks dominated by BB into BBS and return their number. */
|
|
int
|
|
get_dominated_by (dom, bb, bbs)
|
|
dominance_info dom;
|
|
basic_block bb;
|
|
basic_block **bbs;
|
|
{
|
|
int n, i;
|
|
|
|
*bbs = xmalloc (n_basic_blocks * sizeof (basic_block));
|
|
n = et_forest_enumerate_sons (dom->forest, BB_NODE (dom, bb), (et_forest_node_t *)*bbs);
|
|
for (i = 0; i < n; i++)
|
|
(*bbs)[i] = et_forest_node_value (dom->forest, (et_forest_node_t)(*bbs)[i]);
|
|
return n;
|
|
}
|
|
|
|
/* Redirect all edges pointing to BB to TO. */
|
|
void
|
|
redirect_immediate_dominators (dom, bb, to)
|
|
dominance_info dom;
|
|
basic_block bb;
|
|
basic_block to;
|
|
{
|
|
et_forest_node_t *bbs = xmalloc (n_basic_blocks * sizeof (basic_block));
|
|
et_forest_node_t node = BB_NODE (dom, bb);
|
|
et_forest_node_t node2 = BB_NODE (dom, to);
|
|
int n = et_forest_enumerate_sons (dom->forest, node, bbs);
|
|
int i;
|
|
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
et_forest_remove_edge (dom->forest, node, bbs[i]);
|
|
et_forest_add_edge (dom->forest, node2, bbs[i]);
|
|
}
|
|
free (bbs);
|
|
}
|
|
|
|
/* Find first basic block in the tree dominating both BB1 and BB2. */
|
|
basic_block
|
|
nearest_common_dominator (dom, bb1, bb2)
|
|
dominance_info dom;
|
|
basic_block bb1;
|
|
basic_block bb2;
|
|
{
|
|
if (!bb1)
|
|
return bb2;
|
|
if (!bb2)
|
|
return bb1;
|
|
return et_forest_node_value (dom->forest,
|
|
et_forest_common_ancestor (dom->forest,
|
|
BB_NODE (dom, bb1),
|
|
BB_NODE (dom,
|
|
bb2)));
|
|
}
|
|
|
|
/* Return TRUE in case BB1 is dominated by BB2. */
|
|
bool
|
|
dominated_by_p (dom, bb1, bb2)
|
|
dominance_info dom;
|
|
basic_block bb1;
|
|
basic_block bb2;
|
|
{
|
|
return nearest_common_dominator (dom, bb1, bb2) == bb2;
|
|
}
|
|
|
|
/* Verify invariants of dominator structure. */
|
|
void
|
|
verify_dominators (dom)
|
|
dominance_info dom;
|
|
{
|
|
int err = 0;
|
|
basic_block bb;
|
|
|
|
FOR_EACH_BB (bb)
|
|
{
|
|
basic_block dom_bb;
|
|
|
|
dom_bb = recount_dominator (dom, bb);
|
|
if (dom_bb != get_immediate_dominator (dom, bb))
|
|
{
|
|
error ("dominator of %d should be %d, not %d",
|
|
bb->index, dom_bb->index, get_immediate_dominator(dom, bb)->index);
|
|
err = 1;
|
|
}
|
|
}
|
|
if (err)
|
|
abort ();
|
|
}
|
|
|
|
/* Recount dominator of BB. */
|
|
basic_block
|
|
recount_dominator (dom, bb)
|
|
dominance_info dom;
|
|
basic_block bb;
|
|
{
|
|
basic_block dom_bb = NULL;
|
|
edge e;
|
|
|
|
for (e = bb->pred; e; e = e->pred_next)
|
|
{
|
|
if (!dominated_by_p (dom, e->src, bb))
|
|
dom_bb = nearest_common_dominator (dom, dom_bb, e->src);
|
|
}
|
|
|
|
return dom_bb;
|
|
}
|
|
|
|
/* Iteratively recount dominators of BBS. The change is supposed to be local
|
|
and not to grow further. */
|
|
void
|
|
iterate_fix_dominators (dom, bbs, n)
|
|
dominance_info dom;
|
|
basic_block *bbs;
|
|
int n;
|
|
{
|
|
int i, changed = 1;
|
|
basic_block old_dom, new_dom;
|
|
|
|
while (changed)
|
|
{
|
|
changed = 0;
|
|
for (i = 0; i < n; i++)
|
|
{
|
|
old_dom = get_immediate_dominator (dom, bbs[i]);
|
|
new_dom = recount_dominator (dom, bbs[i]);
|
|
if (old_dom != new_dom)
|
|
{
|
|
changed = 1;
|
|
set_immediate_dominator (dom, bbs[i], new_dom);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
add_to_dominance_info (dom, bb)
|
|
dominance_info dom;
|
|
basic_block bb;
|
|
{
|
|
VARRAY_GROW (dom->varray, last_basic_block + 3);
|
|
#ifdef ENABLE_CHECKING
|
|
if (BB_NODE (dom, bb))
|
|
abort ();
|
|
#endif
|
|
SET_BB_NODE (dom, bb, et_forest_add_node (dom->forest, bb));
|
|
}
|
|
|
|
void
|
|
delete_from_dominance_info (dom, bb)
|
|
dominance_info dom;
|
|
basic_block bb;
|
|
{
|
|
et_forest_remove_node (dom->forest, BB_NODE (dom, bb));
|
|
SET_BB_NODE (dom, bb, NULL);
|
|
}
|
|
|
|
void
|
|
debug_dominance_info (dom)
|
|
dominance_info dom;
|
|
{
|
|
basic_block bb, bb2;
|
|
FOR_EACH_BB (bb)
|
|
if ((bb2 = get_immediate_dominator (dom, bb)))
|
|
fprintf (stderr, "%i %i\n", bb->index, bb2->index);
|
|
}
|