Presentation is loading. Please wait.

Presentation is loading. Please wait.

Jeffrey D. Ullman Stanford University. 2  A set of nodes N and edges E is a region if: 1.There is a header h in N that dominates all nodes in N. 2.If.

Similar presentations


Presentation on theme: "Jeffrey D. Ullman Stanford University. 2  A set of nodes N and edges E is a region if: 1.There is a header h in N that dominates all nodes in N. 2.If."— Presentation transcript:

1 Jeffrey D. Ullman Stanford University

2 2  A set of nodes N and edges E is a region if: 1.There is a header h in N that dominates all nodes in N. 2.If n ≠ h is in N, then all predecessors of n are also in N.  I.e., the header is the sole entry into the region. 3.E consists of all edges between nodes in N, possibly excluding nodes that enter h from somewhere in N.  Note: Every node is a region by itself.

3 3  For reducible flow graphs, we can “reduce” the graph by two region-creating transformations.  T1: Remove a self-loop from a node.  T2: combine two nodes n and m such that m’s only predecessor is n, and m is not the entry.  Say “n consumes m.” n m

4 4 1 3 5 2 4 T2

5 5 14 5 23 T1

6 6 14 5 23 T2

7 7 1234 5 T2

8 8 12345 T1

9 9 12345

10 10  As we reduce, each node represents a region of the original flow graph, and each edge represents one or more edges of the original flow graph.  T2: Take the union of the two regions represented by the two nodes, plus all edges represented by the edge between them.  T1: Add (to the region represented by the node) those edges represented by the loop that was removed.

11 11  Easy inductive proof: every set of nodes and edges constructed is a region.  Key point: When you use T2, the header of the resulting region is the header of the region that consumes the other.

12 12 1 3 5 2 4

13 13  First, compute for each region, smallest-to- largest, some transfer functions: 1.For region R constructed by T2 from S consuming T: f R,IN[S] = identity function; f R,IN[T] = meet over paths from the beginning of the header of R to the beginning of the header of T, going only through S. 2.For region R with header h constructed from S by T1: f R,IN[S] = meet over paths within R from h to h. 3.For each region R with exit block ( = has an out- edge not in R) B, f R,OUT[B] = meet over paths within R from header of R to end of B.

14 14 1 3 5 2 4 U S f U,IN[S] = f 1 f S,OUT[2] = f 2 (f 3 f 2 )* f U,OUT[2] = f 1 f 2 (f 3 f 2 )* f U,OUT[4] = f 1 f 4 Like regular expressions. = f 2 ∧ f 2 f 3 f 2 ∧ f 2 f 3 f 2 f 3 f 2 ∧....

15 15  We can compute the meet of transfer functions: [f ∧ g](x) = f(x) ∧ g(x).  Needed when we combine transfer functions from header to several exits.  We can compute the closure f* for each transfer function f, given by f* = f 0 ∧ f 1 ∧ f 2 ∧ …  Note f 0 = identity, f 1 = f, f 2 = f composed with f, etc..  Needed when we apply T1 to consume a back edge.

16 16  Meet of transfer functions f(x) = (x - K) ∪ G and g(x) = (x - K’) ∪ G’ corresponds to the paths of f and g in parallel.  Thus, [f ∧ g](x) = (x – (K ∩ K’)) ∪ (G ∪ G’).  f*(x) = x ∪ f(x) ∪ f(f(x)) ∪ … = x ∪ (x – K) ∪ G ∪ ( (x - K ∪ G) – K) ∪ G … = x ∪ G. f(x) f(f(x))

17 17 1 3 5 2 4 U V f U,OUT[2] = f 1 f 2 (f 3 f 2 )* f U,OUT[4] = f 1 f 4 f V,IN[5] = f 1 f 4 ∧ f 1 f 2 (f 3 f 2 )* Region U consumes node 5 to make region V.

18  If R is a region consisting of a single node (block), and f is the transfer function for that block, then f R,OUT[R] = f.  Note: we use the same name for the block and the region consisting of only that block. 18

19  Apply T2: region R consumes region S to make T. 1.f T,IN(R) = the identity function. 2.f T,IN(S) = meet of f R,OUT[B] for all predecessors B of the header of S. 3.For blocks B in R, f T,OUT[B] = f R,OUT[B]. 4.For blocks B in S, f T,OUT[B] = f T,IN(S) f S,OUT[B]. 19

20  Apply T1: add back edges to region S to make R. 1.Compute g = meet of f S,OUT[B] for all predecessors B of the header of S. 2.f R,IN[S] = g*.  Notice that the headers of R and S are the same node, but there are paths within R that are not in S, yet take you to the header of S. 3.For all blocks B in S (and therefore in R) let f R,OUT[B] = f R,IN[S] f S,OUT[B]. 20

21  Let e be the header of the region that is the entire flow graph.  Start with IN(e) = v ENTRY.  Proceed inward, from larger regions to smaller. 1.If R was constructed from S by T1, and both have header h, replace IN(h) by f R,IN(S) (IN(h)). 2.If T, with header h’ was constructed from R and S, with R consuming S, and S has header h, initialize IN(h) to f T,IN(S) (IN(h’). 21

22 22 1 3 5 2 4 R IN[1] = f R,IN[V] (v ENTRY ) = f* V,OUT[5] ] (v ENTRY ) U V IN[5] = f V,IN[5] (IN(1))

23 23  Values V are mappings from variables to expressions involving reference variables.  Example: m(a) = 2i; m(b) = i + j + 1.  i and j are the reference variables.  We are going to deal with two complicated types of functions: 1.Mappings from variables to expressions, as above. 2.Transfer functions from mappings (in) to mappings (out).

24 24  Reference variables are basic induction variables = counts of the number of times around some loop.  This count is well-defined for “natural loops.”  Set of values V for the framework = affine mappings = each variable is mapped to either: 1.A linear function of the reference variables, or 2.NAA = “Not an affine” mapping, or 3.UNDEF = top element = “nothing known.”

25 25 m(a) = 2i + 3j + 4 m(b) = NAA m(c) = 4i + 1 m(d) = UNDEF

26 26 UNDEF All affine functions of reference variables NAA Less Ignorance Note: The lattice for V is the product of one of these for each variable.

27 27  Natural application of region-based analysis.  Each loop is a region, and its induction variables can be discovered by a framework based on affine mappings.

28 28  Let f be the transfer function associated with a block containing only a = a+10.  Let m be the input mapping for the block; then f(m) = m’, where:  m’(a) = m(a) + 10.  m’(x) = m(x) for all x ≠ a.  Book uses the notation f(m)(a) = m(a) + 10, etc., to avoid having to name f(m). a = a + 10 m m' Question: What if m(a) is NAA or UNDEF?

29 29  (f ∧ g)(m)(x) =  f(m)(x) if f(m)(x) = g(m)(x).  f(m)(x) if g(m)(x) = UNDEF.  g(m)(x) if f(m)(x) = UNDEF.  NAA otherwise.

30 30 a=b+3 b=a+2 a=a+5 B1 B5 B2 B4 B3 f B3 (m) (a) = m(a) (b) = m(a)+2 f B2 (m) (a) = m(a)+5 (b) = m(b) f B4 (m) (a) = m(b)+3 (b) = m(b) R f R,OUT[B4] (m) (a) = m(a)+5 (b) = m(a)+2

31 31 a=b+3 b=a+2 a=a+5 B1 B5 B2 B4 B3 f B2 (m) (a) = m(a)+5 (b) = m(b) R f R,OUT[B4] (m) (a) = m(a)+5 (b) = m(a)+2 S f S,OUT[B5] (m) (a) = m(a)+5 (b) = NAA

32 32  Treat the iteration count i as a basic induction variable.  If f(m)(x) = m(x)+c, then f i (m)(x) = m(x)+ci.  Some other cases, e.g., where m(x) is an affine function of basic induction variables, in book.

33 33 a=b+3 b=a+2 a=a+5 B1 B5 B2 B4 B3 S f S,OUT[B5] (m) (a) = m(a)+5 (b) = NAA T f S,OUT[B5] (m) (a) = m(a)+5i (b) = NAA i OUT i [B3](m) (a) = m(a)+5i (b) = m(a)+5i+2 OUT i [B4](m) (a) = m(a)+5i+5 (b) = m(a)+5i+2 OUT i [B2](m) (a) = m(a)+5i+5 (b) = NAA OUT i [B5](m) (a) = m(a)+5i+5 (b) = NAA

34 34  Replace the loop counter variable by one of the induction variables (variables that are mapped to an affine expression of the loop count at the point were the loop count is tested).

35 35 i<10? a=b+3 b=a+2 a=a+5 i=i+1 B1 B5 B2 B4 B3 i=0 a=30 Here, the value of a is m(a)+5i, where m(a) is the value of a before entering the loop, and i is the number of iterations of the loop so far. Since a=30 when i=0, replace “i<10?” by “a<80?”. If i is dead on exit from the loop, delete “i=i+1” and “i=0”. And since i is an induction variable, if not dead we can just assign i = 10 at the exit.

36 36 a<80? a=b+3 b=a+2 a=a+5 B1 B5 B2 B4 B3 a=30


Download ppt "Jeffrey D. Ullman Stanford University. 2  A set of nodes N and edges E is a region if: 1.There is a header h in N that dominates all nodes in N. 2.If."

Similar presentations


Ads by Google