formal verification of a wcet estimation tool
play

Formal Verification of a WCET Estimation Tool Sandrine Blazy 1 , Andr - PowerPoint PPT Presentation

Formal Verification of a WCET Estimation Tool Sandrine Blazy 1 , Andr Maroneze 1 , David Pichardie 2 , Isabelle Puaut 1 1 University of Rennes 1 France 2 ENS Rennes, France 08/07/2014 1/30 Motivation Formal methods in industry Formal


  1. Formal Verification of a WCET Estimation Tool Sandrine Blazy 1 , André Maroneze 1 , David Pichardie 2 , Isabelle Puaut 1 1 University of Rennes 1 – France 2 ENS Rennes, France 08/07/2014 1/30

  2. Motivation Formal methods in industry Formal methods increasingly applied in industry Formal verification Machine-checked proofs Specifications → executable code Useful for industrial-size applications Examples: seL4 (NICTA), CompCert (Inria) 2/30

  3. Motivation Formal verification with proof assistants Interactive proof assistants (e.g. ACL2, Coq, Isabelle) Logic specification language → properties & theorems Functional programming language → algorithms Interactive (step-by-step) proof construction Executable code generation 3/30

  4. Motivation Coq general scheme 4/30

  5. Motivation Formal verification for WCET estimation Current tools perform very sophisticated analyses Formal verification helps to better understand them (e.g. implicit assumptions, corner cases) Idea: formally verify an existing WCET estimation method Integration within a compiler (CompCert) Products of the verification Correctness theorem for WCET estimation Verified tool (+ experimental evaluation) 5/30

  6. Outline 1 Architecture of our formalized tool 2 Formalization approach 3 Experimental evaluation 4 Conclusion and future work 6/30

  7. Overview WCET estimation tool architecture [Wilhelm08] 7/30

  8. Overview Architecture of the formalized WCET estimation tool 8/30

  9. Overview Architecture of the formalized WCET estimation tool 8/30

  10. Overview Architecture of the formalized WCET estimation tool 8/30

  11. Overview CompCert Moderately optimizing, formally verified C compiler Several intermediate languages E.g. RTL → data-flow analyses/optimizations 9/30

  12. Overview CompCert Moderately optimizing, formally verified C compiler Several intermediate languages E.g. RTL → data-flow analyses/optimizations Semantic preservation theorem Proof that compilation preserves program behavior 9/30

  13. Overview Architecture of the formalized WCET estimation tool 10/30

  14. Overview Architecture of the formalized WCET estimation tool 10/30

  15. Overview Architecture of the formalized WCET estimation tool Based on one of the methods used by SWEET Combination of reusable techniques 10/30

  16. Overview Loop bound estimation Program slicing Simplifies the program while preserving loop iterations Improves the precision of the estimation Value analysis by abstract interpretation Safe over-approximation of variable values Intervals of machine integers (32-bit) Bound computation Variable values → local bounds → nested loops → global bounds 11/30

  17. Overview Architecture of the formalized WCET estimation tool 12/30

  18. Outline 1 Architecture of our formalized tool 2 Formalization approach 3 Experimental evaluation 4 Conclusion and future work 13/30

  19. Formalization Formal verification approach σ =< ℓ , E , cs > Specify a formal semantics σ → σ ′ . . . Theorem (Bound correctness) Define correctness theorems Let P be a program s.t. . . . . . . then cs ( ℓ ) ≤ bound ( ℓ ) . Using the formal semantics Lemma correct_bounds: forall P σ , (reaches P σ ) → . . . Proof. Perform the proof intros P σ . induction reaches. . . . Qed. 14/30

  20. Formalization Formal RTL semantics (simplified) ⇒ Defined in CompCert ⇒ Standard small-step semantics CompCert’s RTL semantics Program state: σ = < ℓ , E > ℓ : program point (node in the CFG) E : environment (maps variables to values) Execution step relation → < ℓ ′ , E ′ > P ⊢ < ℓ , E > − Reachable state → ∗ σ σ ∈ reach ( P ) ⇐ ⇒ σ 0 − Execution trace: tr = [ σ 0 , σ 1 , σ 2 ,..., σ ] List of reachable states 15/30

  21. Formalization Adapting the RTL semantics Addition of execution counters Modified RTL semantics Program state: σ = < ℓ , E , cs > cs : counters (node �→ N ) Execution step relation → < ℓ ′ , E ′ , cs ′ > P ⊢ < ℓ , E , cs > − Counters incremented at each step 16/30

  22. Formalization Correctness theorem Theorem (Bound correctness) Let P be a program such that P’s execution terminates with counters cs, and let ℓ be a program point in P. Then cs ( ℓ ) ≤ bound ( P )( ℓ ) . bound : function computing the loop bound estimation E.g. bound(P)( ℓ ) = bounds(value(slice(P, ℓ ))) 17/30

  23. Formalization Correctness theorem Theorem (Bound correctness) Let P be a program such that P’s execution terminates with counters cs, and let ℓ be a program point in P. Then cs ( ℓ ) ≤ bound ( P )( ℓ ) . bound : function computing the loop bound estimation E.g. bound(P)( ℓ ) = bounds(value(slice(P, ℓ ))) Informally: For every terminating execution of program P , 17/30

  24. Formalization Correctness theorem Theorem (Bound correctness) Let P be a program such that P’s execution terminates with counters cs, and let ℓ be a program point in P. Then cs ( ℓ ) ≤ bound ( P )( ℓ ) . bound : function computing the loop bound estimation E.g. bound(P)( ℓ ) = bounds(value(slice(P, ℓ ))) Informally: For every terminating execution of program P , the actual execution counters of any program point ℓ 17/30

  25. Formalization Correctness theorem Theorem (Bound correctness) Let P be a program such that P’s execution terminates with counters cs, and let ℓ be a program point in P. Then cs ( ℓ ) ≤ bound ( P )( ℓ ) . bound : function computing the loop bound estimation E.g. bound(P)( ℓ ) = bounds(value(slice(P, ℓ ))) Informally: For every terminating execution of program P , the actual execution counters of any program point ℓ are overestimated by the result of the loop bound estimation. 17/30

  26. Formalization Correctness theorem Theorem (Bound correctness) Let P be a program such that P’s execution terminates with counters cs, and let ℓ be a program point in P. Then cs ( ℓ ) ≤ bound ( P )( ℓ ) . bound : function computing the loop bound estimation E.g. bound(P)( ℓ ) = bounds(value(slice(P, ℓ ))) Informally: For every terminating execution of program P , the actual execution counters of any program point ℓ are overestimated by the result of the loop bound estimation. 17/30

  27. Formalization Correctness theorem RTL bounds → ASM bounds Start-to-end-correctness theorem Uses CompCert’s annotations + semantic preservation theorem stw 0, 8(1) int i = 0; 1: x1 = 0 .L100: cmpwi 0, 4, 5 while (i < 5) { 2: if (x1 >=s 5) goto 6 bf 0, .L101 → → # annotation: loop _annot("loop"); 3: x2 = builtin annot "loop" addi 4, 4, 1 i++; 4: x1 = x1 + 1 b .L100 } 5: goto 2 .L101: 6: C RTL Assembly 18/30

  28. Formalization Overview of the formalized WCET estimation tool 19/30

  29. Formalization Program slicing Proof techniques Complementary techniques Direct proof Specify and formalize the algorithm A posteriori , verified validation Correctness ensured for a single input (runtime cost) 20/30

  30. Formalization Program slicing Proving program slicing correctness Efficient program slicing → imperative data structures E.g. program dependency graph ⇒ Complex proof Validation → decouples algorithm and proof Proof strategy Define and prove relation between original and sliced programs Code an efficient validator which checks it 21/30

  31. Formalization Loop bound estimation Repeat steps for remaining components, then compose the proofs 22/30

  32. Formalization Estimate computation 22/30

  33. Formalization IPET Implicit Path Enumeration Technique [Malik95] Control flow → linear programming (LP) system Represent execution counters for CFG nodes and edges with variables x i and e i , j Entry/exit constraints x entry = 1 x exit = 1 Flow constraints ( � e in = x i = � e out ) e entry , 1 + e 5 , 1 = x 1 = e 1 , exit + e 1 , 2 Loop constraints (derived from loop bounds) x 1 ≤ 6 ← loop bound estimation theorem WCET estimate: max( � x i . t i ) = 21 instructions → Here, t i = 1 (hardware cost coefficient) 23/30

  34. Formalization IPET IPET correctness and proof Approach similar to RTL: ASM semantics + counters X ( i ) → nodes E ( i , j ) → edges Correctness: (actual WCET) ≤ (WCET estimate) Algorithm + proof 1 LP generation → direct proof 2 External (non-verified) LP solver 3 LP validation → based on Farkas certificates 24/30

  35. Outline 1 Architecture of our formalized tool 2 Formalization approach 3 Experimental evaluation 4 Conclusion and future work 25/30

  36. Experimental evaluation Why to evaluate? Proof → ensure correctness Evaluation → measure precision ⇒ Objective: check whether results are practically useful Evaluated on the Mälardalen benchmarks Loop bound estimation Value analysis WCET estimation ⇒ Compiler integration → transformations for improved precision 26/30

  37. Experimental evaluation WCET estimation Results of the WCET estimation Comparison: WCET estimate vs. exact WCET → ASM emulator + known worst-case input 27/30

Recommend


More recommend