Static and dynamic analysis: synergy and duality

Slides:



Advertisements
Similar presentations
Dataflow Analysis for Datarace-Free Programs (ESOP 11) Arnab De Joint work with Deepak DSouza and Rupesh Nasre Indian Institute of Science, Bangalore.
Advertisements

Runtime Techniques for Efficient and Reliable Program Execution Harry Xu CS 295 Winter 2012.
Greta YorshEran YahavMartin Vechev IBM Research. { ……………… …… …………………. ……………………. ………………………… } T1() Challenge: Correct and Efficient Synchronization { ……………………………
Compilation 2011 Static Analysis Johnni Winther Michael I. Schwartzbach Aarhus University.
Data-Flow Analysis Framework Domain – What kind of solution is the analysis looking for? Ex. Variables have not yet been defined – Algorithm assigns a.
3-Valued Logic Analyzer (TVP) Tal Lev-Ami and Mooly Sagiv.
Copyright © Cengage Learning. All rights reserved.
© Janice Regan Problem-Solving Process 1. State the Problem (Problem Specification) 2. Analyze the problem: outline solution requirements and design.
Common Sub-expression Elim Want to compute when an expression is available in a var Domain:
Michael Ernst, page 1 Improving Test Suites via Operational Abstraction Michael Ernst MIT Lab for Computer Science Joint.
Prof. Fateman CS 164 Lecture 221 Global Optimization Lecture 22.
Overview of program analysis Mooly Sagiv html://
School of Computer ScienceG53FSP Formal Specification1 Dr. Rong Qu Introduction to Formal Specification
Program Analysis Mooly Sagiv Tel Aviv University Sunday Scrieber 8 Monday Schrieber.
Composing Dataflow Analyses and Transformations Sorin Lerner (University of Washington) David Grove (IBM T.J. Watson) Craig Chambers (University of Washington)
Winter 2012SEG Chapter 11 Chapter 1 (Part 2) Introduction to Requirements Modeling.
Michael Ernst, page 1 Static and dynamic analysis: synergy and duality Michael Ernst CSE 503, Winter 2010 Lecture 1.
272: Software Engineering Fall 2012 Instructor: Tevfik Bultan Lecture 4: SMT-based Bounded Model Checking of Concurrent Software.
Automated Diagnosis of Software Configuration Errors
CS527: (Advanced) Topics in Software Engineering Overview of Software Quality Assurance Tao Xie ©D. Marinov, T. Xie.
Benjamin Gamble. What is Time?  Can mean many different things to a computer Dynamic Equation Variable System State 2.
Introduction Algorithms and Conventions The design and analysis of algorithms is the core subject matter of Computer Science. Given a problem, we want.
Inferring Specifications to Detect Errors in Code Mana Taghdiri Presented by: Robert Seater MIT Computer Science & AI Lab.
Page 1 5/2/2007  Kestrel Technology LLC A Tutorial on Abstract Interpretation as the Theoretical Foundation of CodeHawk  Arnaud Venet Kestrel Technology.
Convergence of Model Checking & Program Analysis Philippe Giabbanelli CMPT 894 – Spring 2008.
PROGRAM DEVELOPMENT CYCLE. Problem Statement: Problem Statement help diagnose the situation so that your focus is on the problem, helpful tools at this.
90-723: Data Structures and Algorithms for Information Processing Copyright © 1999, Carnegie Mellon. All Rights Reserved. 1 Lecture 1: Introduction Data.
Pointer Analysis Survey. Rupesh Nasre. Aug 24, 2007.
What’s Ahead for Embedded Software? (Wed) Gilsoo Kim
Static Techniques for V&V. Hierarchy of V&V techniques Static Analysis V&V Dynamic Techniques Model Checking Simulation Symbolic Execution Testing Informal.
Model Checking Lecture 1. Model checking, narrowly interpreted: Decision procedures for checking if a given Kripke structure is a model for a given formula.
BITS Pilani Pilani Campus Data Structure and Algorithms Design Dr. Maheswari Karthikeyan Lecture1.
Abstraction and Abstract Interpretation. Abstraction (a simplified view) Abstraction is an effective tool in verification Given a transition system, we.
Abstract Interpretation and Future Program Analysis Problems Martin Rinard Alexandru Salcianu Laboratory for Computer Science Massachusetts Institute of.
Software Testing and QA Theory and Practice (Chapter 5: Data Flow Testing) © Naik & Tripathy 1 Software Testing and Quality Assurance Theory and Practice.
Jeremy Nimmer, page 1 Automatic Generation of Program Specifications Jeremy Nimmer MIT Lab for Computer Science Joint work with.
Optimistic Hybrid Analysis
Advanced Algorithms Analysis and Design
A Review of Software Testing - P. David Coward
Recursion Topic 5.
Code Optimization.
SS 2017 Software Verification Bounded Model Checking, Outlook
Textbook: Principles of Program Analysis
Testing and Debugging PPT By :Dr. R. Mall.
Matching Logic An Alternative to Hoare/Floyd Logic
Input Space Partition Testing CS 4501 / 6501 Software Testing
Graph Coverage for Specifications CS 4501 / 6501 Software Testing
State your reasons or how to keep proofs while optimizing code
Symbolic Implementation of the Best Transformer
The Future of Software Engineering: Tools
Iterative Program Analysis Abstract Interpretation
Program Slicing Baishakhi Ray University of Virginia
Introduction to Data Structures
Performance Optimization for Embedded Software
Objective of This Course
Test Case Purification for Improving Fault Localization
Mock Object Creation for Test Factoring
All You Ever Wanted to Know About Dynamic Taint Analysis & Forward Symbolic Execution (but might have been afraid to ask) Edward J. Schwartz, Thanassis.
Graph Coverage for Specifications CS 4501 / 6501 Software Testing
Test Case Test case Describes an input Description and an expected output Description. Test case ID Section 1: Before execution Section 2: After execution.
CSE 2010: Algorithms and Data Structures Algorithms
Pointer analysis.
Introduction to Requirements Modeling
The Challenge of Cross - Language Interoperability
String Analysis for JavaScript Programs Using JSAI
Computer Science 340 Software Design & Testing
Reasons To Study Programming Languages
Optimizing Compilers CISC 673 Spring 2009 Course Overview
Pointer analysis John Rollinson & Kaiyuan Li
Software Testing and QA Theory and Practice (Chapter 5: Data Flow Testing) © Naik & Tripathy 1 Software Testing and Quality Assurance Theory and Practice.
Presentation transcript:

Static and dynamic analysis: synergy and duality Michael Ernst MIT Computer Science & Artificial Intelligence Lab http://pag.csail.mit.edu/~mernst/ PASTE June 7, 2004

Goals Theme: Static and dynamic analyses are more similar than many people believe One person’s view of their relationship Goals: Encourage blending of the techniques and communities Start productive discussions

Outline Review of static and dynamic analysis Synergy: combining static and dynamic analysis Aggregation Analogies Hybrids Duality: subsets of behavior Conclusion

Static analysis Examples: compiler optimizations, program verifiers Examine program text (no execution) Build a model of program state An abstraction of the run-time state Reason over possible behaviors E.g., “run” the program over the abstract state

Abstract interpretation Typically implemented via dataflow analysis Each program statement’s transfer function indicates how it transforms state Example: What is the transfer function for y = x++; ?

Selecting an abstract domain  x = { 3, 5, 7 }; y = { 9, 11, 13 }  y = x++;  x = { 4, 6, 8 }; y = { 3, 5, 7 }   x is odd; y is odd  y = x++;  x is even; y is odd  x=3, y=11, x=5, y=9, x=7, y=13 y = x++; x=4, y=3, x=6, y=5, x=8, y=7  x is prime; y is prime  y = x++;  x is anything; y is prime   xn = f(an-1,…,zn-1); yn = f(an-1,…,zn-1)  y = x++;  xn+1 = xn+1; yn+1 = xn 

Research challenge: Choose good abstractions The abstraction determines the expense (in time and space) The abstraction determines the accuracy (what information is lost) Less accurate results are poor for applications that require precision Cannot conclude all true properties in the grammar

Static analysis recap Slow to analyze large models of state, so use abstraction Conservative: account for abstracted-away state Sound: (weak) properties are guaranteed to be true *Some static analyses are not sound

Dynamic analysis Examples: profiling, testing Execute program (over some inputs) The compiler provides the semantics Observe executions Requires instrumentation infrastructure Must choose what to measure, and what test runs

Research challenge: What to measure? Coverage or frequency Statements, branches, paths, procedure calls, types, method dispatch Values computed Parameters, array indices Run time, memory usage Test oracle results Similarities among runs [Podgurski 99, Reps 97] Like abstraction, determines what is reported

Research challenge: Choose good tests The test suite determines the expense (in time and space) The test suite determines the accuracy (what executions are never seen) Less accurate results are poor for applications that require correctness Many domains do not require correctness! *What information is being collected also matters

Dynamic analysis recap Can be as fast as execution (over a test suite, and allowing for data collection) Example: aliasing Precise: no abstraction or approximation Unsound: results may not generalize to future executions Describes execution environment or test suite

Static analysis Dynamic analysis Abstract domain slow if precise Conservative due to abstraction Sound due to conservatism Concrete execution slow if exhaustive Precise no approximation Unsound does not generalize

Outline Review of static and dynamic analysis Synergy: combining static and dynamic analysis Aggregation Analogies Hybrids Duality: subsets of behavior Conclusion 

Combining static and dynamic analysis Aggregation: Pre- or post-processing Inspiring analogous analyses: Same problem, different domain Hybrid analyses: Blend both approaches

1. Aggregation: Pre- or post-processing Use output of one analysis as input to another Dynamic then static Profile-directed compilation: unroll loops, inline, reorder dispatch, … Verify properties observed at run time Static then dynamic Reduce instrumentation requirements Efficient branch/path profiling Discharge obligations statically (type/array checks) Type checking (e.g., Java, including generics) Indicate suspicious code to test more thoroughly

2. Analogous analyses: Same problem, different domain Any analysis problem can be solved in either domain Type safety: no memory corruption or operations on wrong types of values Static type-checking Dynamic type-checking Slicing: what computations could affect a value Static: reachability over dependence graph Dynamic: tracing

Memory checking Goal: find array bound violations, uses of uninit. memory Purify [Hastings 92]: run-time instrumentation Tagged memory: 2 bits (allocated, initialized) per byte Each instruction checks/updates the tags Allocate: set “A” bit, clear “I” bit Write: require “A” bit, set “I” bit Read: require “I” bit Deallocate: clear “A” bit LCLint [Evans 96]: compile-time dataflow analysis Abstract state contains allocated and initialized bits Each transfer function checks/updates the state Identical analyses! Another example: atomicity checking [Flanagan 2003]

Specifications Specification checking Specification generation Statically: theorem-proving Dynamically: assert statement Specification generation Statically: by hand or abstract interpretation [Cousot 77] Dynamically: by invariant detection [Ernst 99], reporting unfalsified properties

Your analogous analyses here Look for gaps with no analogous analyses! Try using the same analysis But be open to completely different approaches There is still low-hanging fruit to be harvested

3. Hybrid analyses: Blending static and dynamic Combine static and dynamic analyses Not mere aggregation, but a new analysis Disciplined trade-off between precision and soundness: find the sweet spot between them

Possible starting points Analyses that trade off run-time and precision Different abstractions (at different program points) Switch between static and dynamic at analysis time Ignore some available information Examine only some paths [Evans 94, Detlefs 98, Bush 00] Merge based on observation that both examine only a subset of executions (next section of talk) Problem: optimistic vs. pessimistic treatment More examples: (bounded) model checking, security analyses, delta debugging [Zeller 99], etc.

Outline Review of static and dynamic analysis Synergy: combining static and dynamic analysis Aggregation Analogies Hybrids Duality: subsets of behavior Conclusion 

Static analysis Dynamic analysis Abstract domain slow if precise Conservative due to abstraction Sound due to conservatism Concrete execution slow if exhaustive Precise no approximation Unsound does not generalize

Sound dynamic analysis Observe every possible execution! Problem: infinite number of executions Solution: test case selection and generation Efficiency tweaks to an algorithm that works perfectly in theory but exhausts resources in practice

Precise static analysis Reason over full program state! Problem: infinite number of executions Solution: data or execution abstraction Efficiency tweaks to an algorithm that works perfectly in theory [Cousot 77] but exhausts resources in practice

Dynamic analysis focuses on a subset of executions The executions in the test suite Easy to enumerate Characterizes program use Typically optimistic for other executions

Static analysis focuses on a subset of data structures More precise for data or control described by the abstraction Concise logical description Typically conservative elsewhere (safety net) Example: k-limiting [Jones 81] Represents each object reachable by ≤k pointers Groups together (approximates) more distant objects

Dual views of subsets Execution and data subsets are views on the same space Every execution subset corresponds to a data subset Executions induce data structures and control flow Every data subset corresponds to an execution subset A set of objects represents the executions that generate them Subset description may be concise in one domain but complex in the other What if the test suite was generated from a specification? Any analysis may be conservative over other behaviors

Differences between the approaches Static and dynamic analysis communities work with different subsets Each subset and characterization is better for certain uses What subsets have a concise description in both domains? Augment a test suite to fill out the data structures that it creates, making the data structure description a smaller logical formula

A hybrid view of subsets Bring together static and dynamic analysis by unifying their subset descriptions Find subsets with small descriptions with respect to both data structures and executions Find a new, smaller description Advantages of this approach Directly compare previous disparate analyses Directly apply analyses to other domain Switch between the approaches Obtain insight in order to devise and optimize analyses

Outline Review of static and dynamic analysis Synergy: combining static and dynamic analysis Aggregation Analogies Hybrids Duality: subsets of behavior Conclusion 

Potential pitfalls Analogies between analyses Hybrid analyses What applications tolerate unsoundness/imprecision? Any more low-hanging fruit? Most static and dynamic approaches differ Hybrid analyses How to measure and trade off precision and soundness What is “partial soundness”? What is in between? Not all static analyses are abstract interpretation Optimistic vs. pessimistic treatment of unseen executions Subset characterization Find the unified characterization of behavior

Conclusion Static and dynamic analysis share many similarities Communities should be closer Create analogous analyses Many successes so far Hybrid approach holds great promise Analyses increasingly look like points in this continuum Unified theory of subsets of executions/data is key (Our) future work: explore this space