|
|
|
Basic Compiler Graphs
Introduction
In this section we describe the set of core compiler specific graphs and
algorithms implemented in MLRISC.
Mostly of these algorithms are parameterized with respect
to the actual intermediate representation, and as such they
do not provide many facilities that are provided by higher abstraction
layers, such as in MLRISC IR,
or in SSA.
Dominator/Post-dominator Trees
Dominance
is a fundamental concept in compiler optimizations.
Node
iff all paths from the start node
to intersects A. A dual notion is the concept of
:
post-dominates iff all paths from to the stop node
intersects . A (post-)dominator tree can be used
to summarize the dominance/post-dominance relationship.
functor DominatorTree
(GraphImpl : GRAPH_IMPLEMENTATION) : DOMINATOR_TREE
The functor implements dominator analysis and
creates a dominator/post-dominator tree from a graph . A dominator tree is implemented as a graph
with the following definition:
signature DOMINATOR_TREE = sig
exception Dominator
datatype 'n dom_node =
DOM of { node : 'n, level : int, preorder : int, postorder : int }
type ('n,'e,'g) dom_info
type ('n,'e,'g) dominator_tree = ('n dom_node,unit,('n,'e,'g) dom_info) graph
type ('n,'e,'g) postdominator_tree = ('n dom_node,unit,('n,'e,'g) dom_info) graph
We annotated each node in
a dominator tree with three extra fields of information, which
is useful for other algorithms:
- level is the nesting level of the tree. The root
node has level 0, children of the root has level 1 and so on.
- preorder is the preorder numbering of a node
- preorder is the postorder numbering of a node.
To create a dominator tree and a postdominator tree
from a graph, the following function should be called.
val dominator_trees : ('n,'e,'g) graph ->
('n,'e,'g) dominator_tree * ('n,'e,'g) postdominator_tree
We use the algorithm of Tarjan and Lengauer, which
runs in time where is the functional
inverse of the Ackermann function.
To perform many common queries on a dominator tree, we first
call the function methods to obtain a method object.
val methods : ('n,'e,'g) dominator_tree -> dominator_methods
The methods are packed into the following type:
type dominator_methods =
{ dominates : node_id * node_id -> bool,
immediately_dominates : node_id * node_id -> bool,
strictly_dominates : node_id * node_id -> bool,
postdominates : node_id * node_id -> bool,
immediately_postdominates : node_id * node_id -> bool,
strictly_postdominates : node_id * node_id -> bool,
control_equivalent : node_id * node_id -> bool,
idom : node_id -> node_id, $(* ~1 if none *)$
idoms : node_id -> node_id list,
doms : node_id -> node_id list,
ipdom : node_id -> node_id, $(* ~1 if none *)$
ipdoms : node_id -> node_id list,
pdoms : node_id -> node_id list,
dom_lca : node_id * node_id -> node_id,
pdom_lca : node_id * node_id -> node_id,
dom_level : node_id -> int,
pdom_level : node_id -> int,
control_equivalent_partitions : unit -> node_id list list
}
The query methods are as follows:
-
dominates()
- returns true iff dominates
-
immediately_dominates()
- returns true iff immediately dominates
-
strictly_dominates()
- returns true iff strictly dominates
-
postdominates()
- returns true iff post-dominates
-
immediately_postdominates()
- returns true iff immediately post-dominates
-
strictly_postdominates()
- returns true iff strictly post-dominates
-
control_equivalent()
-
returns true iff dominates and vice versa
-
idom()
- returns the immediate dominator of , or if none exists
-
idoms()
- returns all nodes that immediately dominates
-
doms()
- returns all nodes that dominates (including itself)
-
ipdom()
- returns the immediate post-dominator of , or if none exists
-
ipdoms()
- returns all nodes that immediately post-dominates
-
pdoms()
- returns all nodes that post-dominates (including itself)
-
dom_lca()
- returns the least common ancestor of and in
the dominator tree
-
pdom_lca()
- returns the least common ancestor of and
in the post-dominator tree
-
dom_level()
- returns the nesting level of in the dominator tree
-
pdom_level()
- returns the nesting level of in the post-dominator
tree
-
control_equivalent_partitions
- partitions the graph into
a set of control equivalent nodes.
The methods dom_lca, pdom_lca and
control_equivalent_partitions executes in time, where
is the size of the dominator tree. The other methods run in time.
Control Dependence Graph
Given two nodes and in a control flow graph ,
we say that is control dependent on iff
- post-dominates a successor of
- does not strictly post-dominates
Intuitively, is control dependent on means that
some path in the program that goes through can by-passed ,
and furthermore, is the point in which this divergence can occur.
Control dependence is used to various kinds of analysis and optimizations in
a compiler, such as code motion and global scheduling[bernstein-rodeh].
To build a control dependence graph, the functor
ControlDependenceGraph can be used:
signature CONTROL_DEPENDENCE_GRAPH = sig
type ('n,'e,'g) cdg = ('n,'e,'g) graph
val control_dependence_graph :
('e -> bool) ->
('n,'e,'g) dominator_tree *
('n,'e,'g) postdominator_tree ->
('n,'e,'g) cdg
end
functor ControlDependenceGraph
(structure Dom : DOMINATOR_TREE
structure GraphImpl : GRAPH_IMPLEMENTATION
) : CONTROL_DEPENDENCE_GRAPH
The control depedence graph is a subcomponent of the
program dependence graph commonly used in
modern compiler optimizations.
Dominance Frontiers
Many algorithms involving the notion of control dependence or dominance
can be rephrased in terms of dominance frontiers.
A node is in the dominance frontiers of iff
dominates a predecessor of but does not strictly-dominate .
We denote this as .
The dual notion of post-dominance frontiers can be defined
analogously using the post-dominator tree\footnote{Control dependence
can be defined in terms of post-dominance frontiers.}.
functor DominanceFrontiers(Dom : DOMINATOR_TREE) : DOMINANCE_FRONTIERS
The functor DominanceFrontiers can be used to
compute all the dominance frontiers of all the nodes in a graph.
It has the following signature.
signature DOMINANCE_FRONTIERS = sig
structure Dom : DOMINATOR_TREE
type dominance_frontiers = node_id list array
val DFs : ('n,'e,'g) Dom.dominator_tree -> dominance_frontiers
end
Iterated Dominance Frontiers
Iterated dominance frontiers (denoted as ) are defined
as the least fixed point of iterating the operation . Formally,
define the dominance frontiers on a set as follows:
-
Define iteration of , denoted as , as follows:
-
The iterated dominance frontiers on a set are defined as
the limit:
-
Iterated dominance frontiers of a set can be computed in
time using the
algorithm by Sreedhar and Gao[linear-time-IDF]\footnote{
In practice it is often sub-linear in .}.
functor DJGraph(Dom : DOMINATOR_TREE) : DJ_GRAPH
The functor DJGraph implements this algorithm.
It satisfies the signature below:
signature DJ_GRAPH = sig
structure Dom : DOMINATOR_TREE
type ('n,'e,'g) dj_graph = ('n,'e,'g) Dom.dominator_tree
val dj_graph : ('n,'e,'g) dj_graph ->
{ DF : node_id -> node_id list,
IDF : node_id -> node_id list,
IDFs : node_id list -> node_id list
}
end
The function dj_graph takes a dominator tree and returns
three query methods for computing dominance and iterated dominance frontiers.
Method DF computes for a single node .
Method |