program analsysis tools
play

Program Analsysis Tools Steven J Zeil April 18, 2013 Program - PowerPoint PPT Presentation

Program Analsysis Tools Program Analsysis Tools Steven J Zeil April 18, 2013 Program Analsysis Tools Outline Program Analsysis Tools Analysis Tools Static Analysis style checkers data flow analysis Dynamic Analysis


  1. Program Analsysis Tools Program Analsysis Tools Steven J Zeil April 18, 2013 ✓ �

  2. Program Analsysis Tools Outline ✓ �

  3. Program Analsysis Tools Analysis Tools Static Analysis style checkers data flow analysis Dynamic Analysis Memory use monitors Profilers ✓ �

  4. Program Analsysis Tools Analysis Tools and Compilers Analysis tools, particularly static, share a great deal with compilers Need to parse code & perform limited static analsysi Generally working from ASTs Some exceptions (working from object code or byte code) Data flow techniques originated in compiler optimization ✓ �

  5. Program Analsysis Tools ASTs Outline I ✓ �

  6. Program Analsysis Tools ASTs Abstract Syntax Trees − z * Output of a language parser Simpler than parse trees Generally viewed as a generalization + x of operator-applied-to-operands y 1 ✓ �

  7. Program Analsysis Tools ASTs Abstract Syntax Trees (cont.) if ASTs can be applied to larger constructions than just > := := expressions In fact, generally reduce a − a 0 a b entire program or compilation unit to one AST a b ✓ �

  8. Program Analsysis Tools ASTs Abstract Syntax Trees (cont.) function paramList body param param if a b > := := int int a − a 0 a b a b ✓ �

  9. Program Analsysis Tools ASTs Abstract Syntax Graphs function paramList body param param if a int b int > := := a − a 0 a b a b Semantic analysis pairs uses of variables with declarations Transforming the AST into an ASG ✓ �

  10. Program Analsysis Tools Data Flow Analysis Outline I ✓ �

  11. Program Analsysis Tools Data Flow Analysis Data Flow Analysis All data-flow information is obtained by propagating data flow markers through the program. The usual markers are d ( x ) : a definition of variable x (any location where x is assigned a value) r ( x ) : a reference to x (any location where the value of x is used) u ( x ) : an undefinition of x (any location where x becomes undefined/ilegal) ✓ �

  12. Program Analsysis Tools Data Flow Analysis Propagation of Markers For each node (basic block) in the control flow graph, we define gen ( n ) = set of data-flow markers generated within node n . kill ( n ) = set of data-flow markers killed within node n . in ( n ) = set of data-flow markers entering node n from elsewhere. out ( n ) = set of data-flow markers leaving node n to go elsewhere. The basic data flow problem is to find in () and out () for each node given the control flow graph and the gen () and kill () sets for each node. ✓ �

  13. Program Analsysis Tools Data Flow Analysis Sample CFG d: Q A B procedure SQRT (Q, A, B: in f l o a t ; n 0 0 u: X X1 F1 F2 H X: out f l o a t ) ; // Compute X = square root of Q, // given that A <= X <= B d: X1 X2 F1 H X1 , F1 , F2 , H: f l o a t ; 1 r: A B Q X1 X2 begin X1 := A; X2 := B; n 1 r: H 2 F1 := Q − X1 ∗∗ 2 H := X2 − X1 ; while (ABS(H) >= 0.001) loop n 2 d: F2 H X1 X2 F1 F2 := Q − X2 ∗∗ 2; 3 r: Q X2 (F2) X1 F1 (H) H := − F2 ∗ ((X2 − X1)/( F2 − F1 ) ) ; X1 := X2 ; n 3 X2 := X2 + H; d: X 4 r: X1 X2 F1 := F2 end loop ; X := (X1 + X2) / 2 . ; n 4 r: X end SQRT; n 5 5 u: X1 F1 F2 H Q A B ✓ �

  14. Program Analsysis Tools Data Flow Analysis Reaching Definitions A definition d i ( x ) reaches a node n j iff there exists a path from n i to n j on which x is neither defined nor undefined. ✓ �

  15. Program Analsysis Tools Data Flow Analysis The Reaching DF Problem gen ( n ) = set of definitions occurring in n and reaching the end of n . kill ( n ) = set of all definitions d i ( x ) in the CFG such that x is defined or undefined within n . � in ( n ) = out ( m ) m ǫ pred ( n ) out ( n ) = ( in ( n ) − kill ( n )) ∪ gen ( n ) ✓ �

  16. Program Analsysis Tools Data Flow Analysis Sample Nodes d: Q A B 0 u: X X1 F1 F2 H d: X1 X2 F1 H gen ( n 0 ) = { d 0 ( Q ) , d 0 ( A ) , d 0 ( B ) } 1 r: A B Q X1 X2 gen ( n 1 ) = { d 1 ( X 1 ) , d 1 ( X 2 ) , d 1 ( F 1 ) , d 1 ( H ) } r: H gen ( n 2 ) = {} 2 gen ( n 3 ) = { d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d: F2 H X1 X2 F1 d 3 ( F 1 ) } 3 r: Q X2 (F2) X1 F1 (H) gen ( n 4 ) = { d 4 ( X ) } d: X gen ( n 5 ) = {} 4 r: X1 X2 r: X 5 u: X1 F1 F2 H Q A B ✓ �

  17. Program Analsysis Tools Data Flow Analysis Sample Nodes (kill) kill ( n 0 ) = { d 0 ( Q ) , d 0 ( A ) , d 0 ( B ) , d 1 ( X 1 ) , d 1 ( X 2 ) , d 1 ( F 1 ) , d 1 ( H ) , d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) , d 4 ( X ) } kill ( n 1 ) = { d 1 ( X 1 ) , d 1 ( X 2 ) , d 1 ( F 1 ) , d 1 ( H ) , d 3 ( H ) , d 3 ( X 1 ) , } kill ( n 2 ) = {} kill ( n 3 ) = { d 1 ( X 1 ) , d 1 ( X 2 ) , d 1 ( F 1 ) , d 1 ( H ) , d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) } kill ( n 4 ) = { d 4 ( X ) } kill ( n 5 ) = { d 0 ( Q ) , d 0 ( A ) , d 0 ( B ) , d 1 ( X 1 ) , d 1 ( X 2 ) , d 1 ( F 1 ) , d 1 ( H ) , d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) } ✓ �

  18. Program Analsysis Tools Data Flow Analysis Solving for Reaching Defs d: Q A B 0 Solving iteratively, we start with u: X X1 F1 F2 H in ( n ) = out ( n ) = {} , and propagate definitions. d: X1 X2 F1 H 1 r: A B Q X1 X2 First Iteration: r: H 2 in ( 0 ) = {} out ( 0 ) = gen ( 0 ) d: F2 H X1 X2 F1 3 r: Q X2 (F2) X1 F1 (H) in ( 1 ) = gen ( 0 ) d: X 4 r: X1 X2 out ( 1 ) = gen ( 0 ) ∪ gen ( 1 ) r: X 5 u: X1 F1 F2 H Q A B ✓ �

  19. Program Analsysis Tools Data Flow Analysis Iteration 1 (cont.) d: Q A B in ( 2 ) = gen ( 0 ) ∪ gen ( 1 ) 0 u: X X1 F1 F2 H out ( 2 ) = gen ( 0 ) ∪ gen ( 1 ) d: X1 X2 F1 H 1 r: A B Q X1 X2 in ( 3 ) = gen ( 0 ) ∪ gen ( 1 ) out ( 3 ) = { d 0 ( Q ) , d 0 ( A ) , d 0 ( B ) , d 3 ( F 2 ) , d 3 ( H ) , r: H 2 d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) } d: F2 H X1 X2 F1 3 r: Q X2 (F2) X1 F1 (H) in ( 4 ) = gen ( 0 ) ∪ gen ( 1 ) out ( 4 ) = gen ( 0 ) ∪ gen ( 1 ) ∪ { d 4 ( X ) } d: X 4 r: X1 X2 in ( 5 ) = gen ( 0 ) ∪ gen ( 1 ) ∪ { d 4 ( X ) } r: X 5 u: X1 F1 F2 H Q A B out ( 5 ) = { d 4 ( X ) } ✓ �

  20. Program Analsysis Tools Data Flow Analysis Iteration 2 d: Q A B 0 u: X X1 F1 F2 H in ( 0 ) = unchanged out ( 0 ) = unchanged d: X1 X2 F1 H 1 r: A B Q X1 X2 in ( 1 ) = unchanged r: H 2 out ( 1 ) = unchanged d: F2 H X1 X2 F1 3 r: Q X2 (F2) X1 F1 (H) in ( 2 ) = gen ( 0 ) ∪ gen ( 1 ) ∪ { d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) } d: X 4 r: X1 X2 out ( 2 ) = gen ( 0 ) ∪ gen ( 1 ) ∪ { d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) } r: X 5 u: X1 F1 F2 H Q A B ✓ �

  21. Program Analsysis Tools Data Flow Analysis Iteration 2 (cont.) d: Q A B in ( 3 ) = gen ( 0 ) ∪ gen ( 1 ) ∪ { d 3 ( F 2 ) , d 3 ( H ) , 0 u: X X1 F1 F2 H d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) , } d: X1 X2 F1 H out ( 3 ) = unchanged 1 r: A B Q X1 X2 in ( 4 ) = gen ( 0 ) ∪ gen 1 ∪ { d 3 ( F 2 ) , d 3 ( H ) , r: H 2 d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) , } d: F2 H X1 X2 F1 out ( 4 ) = gen ( 0 ) ∪ gen 1 ∪ { d 3 ( F 2 ) , d 3 ( H ) , 3 r: Q X2 (F2) X1 F1 (H) d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) , d 4 ( X ) } d: X 4 r: X1 X2 in ( 5 ) = gen ( 0 ) ∪ gen 1 ∪ { d 3 ( F 2 ) , d 3 ( H ) , d 3 ( X 1 ) , d 3 ( X 2 ) , d 3 ( F 1 ) , d 4 ( X ) } r: X 5 u: X1 F1 F2 H Q A B out ( 5 ) = unchanged ✓ �

  22. Program Analsysis Tools Data Flow Analysis Data Flow Anomalies The reaching definitions problem can be used to detect anomolous patterns that may reflect errors. ur anomalies : if an undefinition of a variable reaches a reference of the same variable dd anomalies : if a definition of a variable reaches a definition of the same variable du anomalies : if a definition of a variable reaches an undefinition of the same variable ✓ �

  23. Program Analsysis Tools Data Flow Analysis Available Expressions An expression e is available at a node n iff every path from the start of the program to n evaluates e , and iff, after the last evaluation of e on each such path, there are no subsequent definitions or undefinitions to the variables in e . ✓ �

  24. Program Analsysis Tools Data Flow Analysis The Available DF Problem gen ( n ) = set of expressions evaluated in n containing no variables subsequently defined or undefined within n . kill ( n ) = set of all expressions in the program containing variables that are defined or undefined within n . � in ( n ) = out ( m ) m ǫ pred ( n ) out ( n ) = ( in ( n ) − kill ( n )) ∪ gen ( n ) ✓ �

  25. Program Analsysis Tools Data Flow Analysis Live Variables A variable x is live at node n iff there exists a path starting at n along which x is used without prior redefinition. ✓ �

  26. Program Analsysis Tools Data Flow Analysis The Live Variable DF Problem gen ( n ) = set of variables used in n without prior definition. kill ( n ) = set of variables defined within n . in ( n ) = gen ( n ) ∪ ( out ( n ) − kill ( n )) � out ( n ) = in ( m ) m ǫ succ ( n ) ✓ �

  27. Program Analsysis Tools Data Flow Analysis Data Flow and Optimization Optimization Technique Data-Flow Information Constant Propagation reach Copy Propagation reach Elimination of Common Subexpressions available Dead Code Elimination live, reach Register Allocation live Anomaly Detection reach Code Motion reach ✓ �

  28. Program Analsysis Tools Static Analysis Tools Outline I ✓ �

Recommend


More recommend