class 10
play

Class 10 Review; questions Questions about project Arbitrary - PDF document

Class 10 Review; questions Questions about project Arbitrary interprocedural control flow (contd) Pointers Assign (see Schedule for links) Readings on symbolic execution Problem Set 5: due 9/22/09 Project


  1. Class 10 • Review; questions • Questions about project • Arbitrary interprocedural control flow (cont’d) • Pointers • Assign (see Schedule for links) • Readings on symbolic execution • Problem Set 5: due 9/22/09 • Project proposal • Initial: due by e-mail 9/22/09 • Final: due (written, 2 pages) 9/29/09 1 Complicating Factors A. Programs with more than one procedure B. Programs with recursion C. Programs with arbitrary control flow D. Programs with pointers E. Programs with complex data structures

  2. Arbitrary Interprocedural CF � Three ways in which intra-procedural control dependences can be inaccurate � Entry-dependence effect � Multiple-context effect � Return-dependence effect Computation of Interprocedural CD Identify potentially non-returning call sites Construct augmented control-flow graph Compute partial control dependences Construct augmented control-dependence graph Construct interprocedural control-dependence graph Propagate control dependences

  3. PNRC Analysis � Step 1: Identifies three sets � DNRPList: Definitely non-returning procedures � UnreachList: Statically unreachable nodes � HNList: Halt statements reachable from entry � Method � Build ICFG � Depth first traversal along realizable paths marking visited nodes � Unmarked nodes are unreachable � Unmarked exit nodes indicate DNRPs � Marked halt nodes indicate reachable halts PNRC Analysis � Step 1: Identifies three sets � DNRPList: Definitely non-returning procedures � UnreachList: Statically unreachable nodes � HNList: Halt statements reachable from entry � Method � Build ICFG � Depth first traversal along realizable paths marking visited nodes � Unmarked nodes are unreachable � Unmarked exit nodes indicate DNRPs � Marked halt nodes indicate reachable halts

  4. PNRC Analysis 10a 10a PNRC Analysis 10a 10a All nodes reached No DNRPs One halt node reached

  5. PNRC Analysis 10a 10a What if we change program? PNRC Analysis 10a 10a Some nodes not reached B and C are DNRPs

  6. PNRC Analysis � Step 2: Compute partial CD � Identify PNRCList: Possibly non-returning call-sites � Build ACFGs � Method � Backward traversal of ICFG starting from (1) halt nodes and (2) calls to DNRPs � Ascending into callers, but not descending into callees (similar to SDG slicing) � Any call site reached is a PNRC PNRC Analysis 10a 10a

  7. PNRC Analysis 10a 10a Computation of Interprocedural CD Identify potentially non-returning call sites Construct augmented control-flow graph Compute partial control dependences Construct augmented control-dependence graph Construct interprocedural control-dependence graph Propagate control dependences

  8. Augmented Control-Flow Graph For each procedure, starting from its CFG � Create super-exit node � For each potentially non- returning call site � create return-predicate node � Connect return-predicate node to potential return sites � Eliminate edge between call and return Augmented Control-Flow Graph For each procedure, entry starting from its CFG 2 • Create super-exit node RP5b • For each potentially non- 5a 3 returning call site T T • Create return-predicate node 4 5b F • Connect return-predicate F RP6b node to potential return 6a sites T • Eliminate edge between F 6b call and return 7 8 exit super exit

  9. Computation of Interprocedural CD Identify potentially non-returning call sites Construct augmented control-flow graph Compute partial control dependences Construct augmented control-dependence graph Construct interprocedural control-dependence graph Propagate control dependences Partial Control Dependences entry Partial CD 2 RP5b 2,3 5a 3 T 4 T 4 5b F F 5a,6a RP6b 6a 5b T F 6b,7,8 6b 7 8 exit super exit

  10. Partial Control Dependences entry Partial CD 2 RP5b 2,3 entry 5a 3 T 4 entry T RP5b 4 5b F F 5a,6a 4 RP6b 6a 5b RP5b T F 6b,7,8 RP6b 6b 7 8 exit super exit Augmented CDG Build ACDG • CDG built from an ACFG • Replace return-predicate nodes with corresponding return Partial CD entry 2,3 4 entry RP5b 5a,6a 4 5b RP5b 6b,7,8 RP6b

  11. Computation of Interprocedural CD Identify potentially non-returning call sites Construct augmented control-flow graph Compute partial control dependences Construct augmented control-dependence graph Construct interprocedural control-dependence graph Propagate control dependences Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence

  12. Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence 17

  13. Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence 4

  14. Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence 17

  15. Build ICDG Interprocedural CDG • Connect ACDGs with interprocedural control-flow edges • Replace all dependences to placeholder • Backward traversal from the placeholders to the first (non-placeholder) predicate node along each path => add control dependence 17 Partial CD Interprocedural CDG entry 2,3 entry 4 17 5,6 4 7,8 17

  16. Applications of Interprocedural CD � Computing interprocedural slices � Identifying conditions associated with statements/procedures � Computing control coupling � … Complicating Factors � Programs with more than one procedure � Recursion � Programs with pointers � Programs with complex data structures � Programs with arbitrary control flow

  17. Complicating Factors (pointers) � Aliasing: different names reference the same memory location 1 ma in ( ) { 2 i n t*p , x , y ; 3 x = 0 ; *p i s an a l i as f o r x 4 p = &x ; => x = x+1 ; 5 *p = *p+1 ; 6 y = x ; 7 } • Alias information conveniently represented with points-to sets (e.g., *p -> {x}) • Typically, MAY information Complicating Factors (pointers) Pointers complicate S1 . x = read ( ) data-flow S2 . y = read ( ) Consider an example S3 . p = &x S4 . p = &y What is Def(S5)? S5 . *p = read ( ) Can we simply “plug-in” S6 . p r in t ( *p ) alias information? S7 . p r in t (x )

  18. Complicating Factors (pointers) Extending def-use concepts � DDEF: Definite Definition � PDEF: Possible Definition � DUSE: Definite Use � PUSE: Possible Use Extending algorithms � Both possible and definite info in GEN � Only definite info in KILL Complicating Factors (pointers) Pointers complicate S1. x = read() data-flow S2. y = read() Consider an example S3. p = &x Are we in better shape in S5. *p = read() this case? (p* -> {x}) S6. print(*p) S7. print(x)

  19. Pointer/Alias Analysis � Goal: determine memory locations accessed through pointer dereferences Importance: Development Testing Maintenance Optimization tools tools tools tools Slicing Constant propagation Data Live-variable dependence Control analysis dependence Control flow Alias analysis Analysis Alias Analysis (AA) Must alias information indicates that the alias occurs on all paths in the CFG May alias information indicates that the alias occurs on some path in the CFG Flow-sensitive (flow-insensitive) aliasing information depends (does not depend) on the control flow in a procedure Context-sensitive (context-insensitive) aliasing information obeys (does not obey) the calling context when propagating

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend