iterative program analysis abstract interpretation

25
1 Iterative Program Analysis Abstract Interpretation Mooly Sagiv http://www.cs.tau.ac.il/~msagiv/courses/pa11.html Tel Aviv University 640-6706 Textbook: Principles of Program Analysis Chapter 4 CC79, CC92

Upload: alain

Post on 26-Jan-2016

41 views

Category:

Documents


0 download

DESCRIPTION

Iterative Program Analysis Abstract Interpretation. Mooly Sagiv http://www.cs.tau.ac.il/~msagiv/courses/pa11.html Tel Aviv University 640-6706 Textbook: Principles of Program Analysis Chapter 4 CC79, CC92. Outline. The abstract interpretation technique The main theorem Applications - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Iterative Program Analysis Abstract Interpretation

1

Iterative Program AnalysisAbstract Interpretation

Mooly Sagivhttp://www.cs.tau.ac.il/~msagiv/courses/pa11.html

Tel Aviv University

640-6706

Textbook: Principles of Program AnalysisChapter 4

CC79, CC92

Page 2: Iterative Program Analysis Abstract Interpretation

Outline The abstract interpretation technique

– The main theorem

– Applications

– Precision

– Complexity

– Widening

Later on– Combining Analysis

– Interprocedural Analysis

– Shape Analysis

Page 3: Iterative Program Analysis Abstract Interpretation

Soundness Theorem(1)

1. Let (, ) form Galois connection from C to A

2. f: C C be a monotone function

3. f# : A A be a monotone function

4. aA: f((a)) (f#(a))

lfp(f) (lfp(f#))

(lfp(f)) lfp(f#)

Page 4: Iterative Program Analysis Abstract Interpretation

Soundness Theorem(2)

1. Let (, ) form Galois connection from C to A

2. f: C C be a monotone function

3. f# : A A be a monotone function

4. cC: (f(c)) f#((c))

(lfp(f)) lfp(f#)

lfp(f) (lfp(f#))

Page 5: Iterative Program Analysis Abstract Interpretation

Soundness Theorem(3)

1. Let (, ) form Galois connection from C to A

2. f: C C be a monotone function

3. f# : A A be a monotone function

4. aA: (f((a))) f#(a)

(lfp(f)) lfp(f#)

lfp(f) (lfp(f#))

Page 6: Iterative Program Analysis Abstract Interpretation

Completeness

(lfp(f)) = lfp(f#)

lfp(f) = (lfp(f#))

Page 7: Iterative Program Analysis Abstract Interpretation

Constant Propagation : [Var Z] [Var Z{, }]

() = () : P([Var Z]) [Var Z{, }]

(X) = {() | X} = { | X} :[Var Z {, }] P([Var Z])

(#) = { | () # } = { | # }

Local Soundness st#(#) ({st | (#) = {st | # }

Optimality (Induced) st#(#) = ({st | (#)} = {st | # }

Soundness Completeness

Page 8: Iterative Program Analysis Abstract Interpretation

Formal available expression Find out which expressions are available at a given

program point Example program

x = y + t //{(y+t)} z = y + r //{(y+t), (y+r)} while (…) { // {(y+t), (y+r)} t = t + (y + r) // {(y+t), (y+r), t + (y +r )} }

Page 9: Iterative Program Analysis Abstract Interpretation

Available expression lattice

P(Fexp) X Y X Y X Y = X Y = Fexp =

Page 10: Iterative Program Analysis Abstract Interpretation

Available expressions

Computing Fexp for whiles ::= skip { s.Fexp := }s := id = exp { s.Fexp = {exp.rep }s := s ; s { s.Fexp := s[1].Fexp s[2].Fexp }s := while exp do s { s.Fexp := {exp.rep} s[1].Fexp }s := if exp then s else s { s.Fexp := {exp.rep} s[1].Fexp s[2].Fexp }

Page 11: Iterative Program Analysis Abstract Interpretation

Instrumented Semantics Available expressions

S Stm : State P(Fexp) State P(Fexp) S id := a (, ae) = ([a a a ], notArg(id, ae {a} ) S skip (, ae) = (, ae)

CS Stm : P(State P(Fexp)) P(State P(Fexp)) CS s (X) ={S s (, ae) | (, ae) X}

Page 12: Iterative Program Analysis Abstract Interpretation

Collecting Semantics Example

x = y * z;

if (x == 6)

y = z+ t;

if (x == 6)

r = z + t;

Page 13: Iterative Program Analysis Abstract Interpretation

Formal Available Expressions Abstraction

: [Var Z] P(Fexp) P(Fexp) (, ae) = (ae)

: P(P([Var Z] P(Fexp)) P(Fexp) (X) = {() | X} = {ae | (, ae) X}

: P(Fexp) P(P([Var Z] P(Fexp)) (ae#) = {(, ae) | (, ae) ae# } = {(, ae) | ae

ae# }

Page 14: Iterative Program Analysis Abstract Interpretation

Formal Available Expressions AI

S Stm # : P(Fexp) P(Fexp) S id := a # (ae) = notArg(id, ae {a} ) S skip # (ae) = (ae) Local Soundness

st#(ae#) {(st (, ae)[1] | ae ae# }

Optimality st#(ae#) = ({st (, ae) | (, ae) (#)} = {(st (, ae)[1] | ae

ae# } The initial value at the entry is Example program

x = y + t //{(y+t)} z = y + r //{(y+t), (y+r)} while (…) { // {(y+t), (y+r)} t = t + (y + r) // { (y+r)} }

Soundness and Completeness

Page 15: Iterative Program Analysis Abstract Interpretation

Example: May-Be-Garbage A variable x may-be-garbage at a program point v

if there exists a execution path leading to v in which x’s value is unpredictable:– Was not assigned

– Was assigned using an unpredictable expression

Lattice Galois connection Basic statements Soundness

Page 16: Iterative Program Analysis Abstract Interpretation

The PWhile Programming Language Abstract Syntax

a := x | *x | &x | n | a1 opa a2

b := true | false | not b | b1 opb b2 | a1 opr a2

S := x := a | *x := a | skip | S1 ; S2 | if b then S1 else S2 | while b do S

Page 17: Iterative Program Analysis Abstract Interpretation

Concrete Semantics for PWhile

For every atomic statement S

S : States1 States1

x := a ()=[loc(x) Aa ]

x := &y ()

x := *y ()

x := y ()

*x := y ()

State1= [LocLocZ]

Page 18: Iterative Program Analysis Abstract Interpretation

Points-To Analysis Lattice Lpt =

Galois connection

Page 19: Iterative Program Analysis Abstract Interpretation

t := &a; y := &b;

z := &c;

if x> 0 then p:= &y;

else p:= &z;

*p := t;

Page 20: Iterative Program Analysis Abstract Interpretation

/* */ t := &a; /* {(t, a)}*/ /* {(t, a)}*/ y := &b; /* {(t, a), (y, b) }*/

/* {(t, a), (y, b)}*/ z := &c; /* {(t, a), (y, b), (z, c) }*/

if x> 0; then p:= &y; /* {(t, a), (y, b), (z, c), (p, y)}*/

else p:= &z; /* {(t, a), (y, b), (z, c), (p, z)}*/ /* {(t, a), (y, b), (z, c), (p, y), (p, z)}*/

*p := t;

/* {(t, a), (y, b), (y, c), (p, y), (p, z), (y, a), (z, a)}*/

Page 21: Iterative Program Analysis Abstract Interpretation

Abstract Semantics for PWhile

For every atomic statement S

x := a ()

x := &y ()

x := *y ()

x := y ()

*x := y ()

State#= P(Var* Var*)

Page 22: Iterative Program Analysis Abstract Interpretation

/* */ t := &a; /* {(t, a)}*/ /* {(t, a)}*/ y := &b; /* {(t, a), (y, b) }*/

/* {(t, a), (y, b)}*/ z := &c; /* {(t, a), (y, b), (z, c) }*/

if x> 0; then p:= &y; /* {(t, a), (y, b), (z, c), (p, y)}*/

else p:= &z; /* {(t, a), (y, b), (z, c), (p, z)}*/ /* {(t, a), (y, b), (z, c), (p, y), (p, z)}*/

*p := t;

/* {(t, a), (y, b), (y, c), (p, y), (p, z), (y, a), (z, a)}*/

Page 23: Iterative Program Analysis Abstract Interpretation

Flow insensitive points-to-analysisSteengard 1996

Ignore control flow One set of points-to per program Can be represented as a directed graph Conservative approximation

– Accumulate pointers

Can be computed in almost linear time– Union find

Page 24: Iterative Program Analysis Abstract Interpretation

t := &a; y := &b;

z := &c;

if x> 0; then p:= &y;

else p:= &z;

*p := t;

Page 25: Iterative Program Analysis Abstract Interpretation

Conclusion

Chaotic iterations is a powerful technique Easy to implement Rather precise But expensive

– More efficient methods exist for structured programs

Abstract interpretation relates runtime semantics and static information

The concrete semantics serves as a tool in designing abstractions– More intuition will be given in the sequel