static program analysis
play

Static Program Analysis Xiangyu Zhang The slides are compiled from - PowerPoint PPT Presentation

Static Program Analysis Xiangyu Zhang The slides are compiled from Alex Aikens Michael D. Ernsts Sorin Lerners A Scary Outline Type-based analysis Data-flow analysis Abstract interpretation Theorem proving


  1. Static Program Analysis Xiangyu Zhang The slides are compiled from Alex Aiken’s Michael D. Ernst’s Sorin Lerner’s

  2. A Scary Outline � Type-based analysis � Data-flow analysis � Abstract interpretation � Theorem proving � … CS590F Software Reliability

  3. The Real Outline � The essence of static program analysis � The categorization of static program analysis � Type-based analysis basics � Data-flow analysis basics CS590F Software Reliability

  4. The Essence of Static Analysis � Examine the program text (no execution) � Build a model of the program state An abstract of the run-time state • � Reason over the possible behaviors. E.g. “run” the program over the abstract state • CS590F Software Reliability

  5. The Essence of Static Analysis CS590F Software Reliability

  6. CS590F Software Reliability

  7. CS590F Software Reliability

  8. CS590F Software Reliability

  9. CS590F Software Reliability

  10. CS590F Software Reliability

  11. Categorization � Flow sensitivity � Context sensitivity. CS590F Software Reliability

  12. Flow Sensitivity � Flow sensitive analyses The order of statements matters • Need a control flow graph • � Flow insensitive analyses The order of statements doesn’t matter • Analysis is the same regardless of statement order • CS590F Software Reliability

  13. Example Flow Insensitive Analysis � What variables does a program modify? { } G x ( : e ) x = = G s s ( ; ) G s ( ) G s ( ) = ∪ 1 2 1 2 • Note G(s 1 ;s 2 ) = G(s 2 ;s 1 ) CS590F Software Reliability

  14. The Advantage � Flow-sensitive analyses require a model of program state at each program point E.g., liveness analysis, reaching definitions, … • � Flow-insensitive analyses require only a single global state E.g., for G, the set of all variables modified • CS590F Software Reliability

  15. Notes on Flow Sensitivity � Flow insensitive analyses seem weak, but: � Flow sensitive analyses are hard to scale to very large programs Additional cost: state size X # of program points • � Beyond 1000’s of lines of code, only flow insensitive analyses have been shown to scale (by Alex Aiken) CS590F Software Reliability

  16. Context-Sensitive Analysis � What about analyzing across procedure boundaries? Def f(x){…} Def g(y){…f(a)…} Def h(z){…f(b)…} • Goal: Specialize analysis of f to take advantage of • f is called with a by g • f is called with b by h CS590F Software Reliability

  17. Flow Insensitive: Type-Based Analysis CS590F Software Reliability

  18. Outline � A language Lambda calculus • � Types Type checking • Type inference • � Applications to software reliability Representation analysis • � Alias analysis and memory leak analysis. CS590F Software Reliability

  19. The Typed Lambda Calculus Lambda calculus � types are assigned to bound variables. • Add integers, addition, if-then-else � Note: Not every expression generated by this grammar is a properly � typed term. e x | x : . | e e e i e | | e |if e e e = λ τ + CS590F Software Reliability

  20. Types Function types � Integers � Type variables � Stand for definite, but unknown, types • | |int τ = α τ → τ CS590F Software Reliability

  21. Function Types Intuitively, a type τ 1 → τ 2 stands for the set of functions that map arguments � of type τ 1 to results of type τ 2 . Placeholder for any other structured datatype � Lists • Trees • Arrays • CS590F Software Reliability

  22. Types are Trees � Types are terms � Any term can be represented by a tree The parse tree of the term • Tree representation is important in algorithms • ( α → int) → α → int → → → α int int α CS590F Software Reliability

  23. Examples We write e:t for the statement “ e has type t .” � x : . : x λ α α α → x : . y : . : x λ αλ β α → → β α f : . g : . x : . ( gf x ):( ) ( ) λ α → βλ β → γλ α α → → → → → β β γ α γ f : . g : . x : .( f x ) ( g x ):( ) ( ) λ α → → β γλ α → βλ α α → → → → → → β γ α β α γ CS590F Software Reliability

  24. Examples We write e:t for the statement “ e has type t .” � x : . : x λ α α α → x : . y : . : x λ αλ β α → → β α f : . g : . x : . ( gf x ):( ) ( ) λ α → βλ β → γλ α α → → → → → β β γ α γ f : . g : . x : .( f x ) ( g x ):( ) ( ) λ α → → β γλ α → βλ α α → → → → → → β γ α β α γ CS590F Software Reliability

  25. Examples We write e:t for the statement “ e has type t .” � x : . : x λ α α α → x : . y : . : x λ αλ β α → → β α f : . g : . x : . ( gf x ):( ) ( ) λ α → βλ β → γλ α α → → → → → β β γ α γ f : . g : . x : .( f x ) ( g x ):( ) ( ) λ α → → β γλ α → βλ α α → → → → → → β γ α β α γ CS590F Software Reliability

  26. Examples We write e:t for the statement “ e has type t .” � x : . : x λ α α α → x : . y : . : x λ αλ β α → → β α f : . g : . x : . ( gf x ):( ) ( ) λ α → βλ β → γλ α α → → → → → β β γ α γ f : . g : . x : .( f x ) ( g x ):( ) ( ) λ α → → β γλ α → βλ α α → → → → → → β γ α β α γ CS590F Software Reliability

  27. Type Environments To determine whether the types in an expression are correct we � perform type checking. But we need types for free variables, too! � A type environment is a function from variables to types. The syntax � of environments is: A | A x , : = ∅ τ The meaning is: � if x y τ = ( , A x : )( ) y τ = A y ( ) if x y ≠ CS590F Software Reliability

  28. Type Checking Rules Type checking is done by structural induction. � One inference rule for each form • Assumptions contain types of free variables • A term is well-typed if ∅ | e: τ • CS590F Software Reliability

  29. Example x : , y : x : α β α d x : y : . x : α λ β β → α d x : . y : . x : ∅ λ α λ β α → β → α d ??? CS590F Software Reliability

  30. Example x : , y : x : α β α d x : y : . x : α λ β β → α d x : . y : . x : ∅ λ α λ β α → β → α d CS590F Software Reliability

  31. Example x : , y : x : α β α d x : y : . x : α λ β β → α d x : . y : . x : ∅ λ α λ β α → β → α d CS590F Software Reliability

  32. Example x : , y : x : α β α d x : y : . x : α λ β β → α d x : . y : . x : ∅ λ α λ β α → β → α d CS590F Software Reliability

  33. Not Straightforward x : , y : x : α β α d x : y : . x : α λ β β → α d x : . y : . x : ∅ λ α λ β α → β → α d CS590F Software Reliability

  34. Type Checking Algorithm � There is a simple algorithm for type checking � Observe that there is only one possible “shape” of the type derivation only one inference rule applies to each form. • ? x : ? d ? y : . x : ? λ β d x : . y : . x : ? ∅ λ α λ β d CS590F Software Reliability

  35. Algorithm (Cont.) Walk the proof tree from the root to the leaves, generating the correct � environments. Assumptions are simply gathered from lambda abstractions. � x : , y : x : ? α β d x : y : . x : ? α λ β d x : . y : . x : ? ∅ λ α λ β d CS590F Software Reliability

  36. Algorithm (Cont.) In a walk from the leaves to the root, calculate the type of each � expression. The types are completely determined by the type environment and the � types of subexpressions. x : , y : x : α β α d x : y : . x : α λ β β → α d x : . y : . x : ∅ λ α λ β α → β → α d CS590F Software Reliability

  37. A Bigger Example x : , y : x : α → α β α → α d x : y : . x : z : z : α → α λ β β → α → α α α d d x : . y : . x : ( ) z : . z : ∅ λ α → α λ β α → α → β → α → α ∅ λ α α → α d d ( x : . y : . ) x z : . z : ( ) ∅ λ α → α λ β λ α α → α → β → α → α d CS590F Software Reliability

  38. What Do Types Mean? � Thm. If A d e: τ and e → ∗ β d, then A d d: τ Evaluation preserves types. • � This is the basis of a claim that there can be no runtime type errors functions applied to data of the wrong type • � Adding to a function � Using an integer as a function CS590F Software Reliability

  39. Type Inference � The type erasure of e is e with all type information removed (i.e., the untyped term). � Is an untyped term the erasure of some simply typed term? And what are the types? � This is a type inference problem. We must infer, rather than check, the types. CS590F Software Reliability

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