type based termination analysis with disjunctive
play

Type-based termination analysis with disjunctive invariants - PowerPoint PPT Presentation

Type-based termination analysis with disjunctive invariants Dimitrios Vytiniotis, MSR Cambridge with Byron Cook (MSR Cambridge) and Ranjit Jhala (UCSD) IFIP WG 2.8, Austin TX, March 2011 or, what am I doing hanging out with these people?


  1. Type-based termination analysis with disjunctive invariants Dimitrios Vytiniotis, MSR Cambridge with Byron Cook (MSR Cambridge) and Ranjit Jhala (UCSD) IFIP WG 2.8, Austin TX, March 2011

  2. … or, what am I doing hanging out with these people? termination and liveness of imperative programs, shape analysis and heap space bounds, ranking function synthesis program analysis, model checking and verification for systems code, refinement types, liquid types, decision procedures And myself ? functional programming, type systems, type inference, dependent types, semantics and parametricity, Coq, Haskell! 1

  3. The jungle of termination/totality analysis “ Guarded recursion ” ( my own term) Structural recursion - sized types [Hughes et al, Abel] - Conor McBride - modalities for recursion [eg Nakano] - offered in Coq and Agda - also Bove & Capretta transformation Dependent types - programming with well-founded relations (think “ranking functions”) - Coq, Agda, DML [Xi] Size-change principle - [Jones, Sereni, Bohr] - a control flow analysis essentially Terminator - termination analysis for imperative programs - “disjunctive invariants” and Ramsey’s theorem - [Cook, Podelski, Rybalchenko] 2

  4. A dichotomy? “Guarded recursion”, structural recursion, dependent types Terminator and disjunctive  Mostly fully manual -  Programmable - invariants, size-change  Declarative specification -  Often tedious to come up with - -  Mostly fully automatic a WF relation or convince type  Not programmable - checker (i.e. the techniques don’t  No declarative specs - make proving totality easier, they  Often easy for the tool to synthesize - just make it possible!) the termination argument Today I will have a go at combining both worlds WARNING: very fresh (i.e. airplane-fresh) ideas! 3

  5. The idea: one new typing rule for totality 𝑈 1 … 𝑈 𝑜 well−founded binary relations 𝑒𝑘 𝑏, 𝑐 = 𝑏 < 𝑈 1 𝑐 ∨ … ∨ 𝑏 < 𝑈 𝑜 𝑐 𝛥, 𝑝𝑚𝑒: 𝑈 , 𝑕: 𝑦: 𝑈 𝑒𝑘 𝑦, 𝑝𝑚𝑒 → 𝑉), (𝑦: *𝑧: 𝑈 𝑒𝑘 𝑧, 𝑝𝑚𝑒 ∨ 𝑧 = 𝑝𝑚𝑒+ ⊢ 𝑓 ∶ 𝑉 𝛥 ⊢ 𝑔𝑗𝑦 𝜇𝑕. 𝜇𝑦. 𝑓 : 𝑈 → 𝑉 4

  6. Example Terminating, let rec flop (u,v) = by lexicographic pair order if v > 0 then flop (u,v-1) else if u > 1 then flop (u-1,v) else 1 Γ, 𝑝𝑚𝑒: 𝑈 , 𝑕: 𝑦: 𝑈 𝑒𝑘 𝑦, 𝑝𝑚𝑒 → 𝑉), (𝑦: *𝑧: 𝑈 𝑒𝑘 𝑧, 𝑝𝑚𝑒 ∨ 𝑧 = 𝑝𝑚𝑒+ ⊢ 𝑓: 𝑉 Γ ⊢ 𝑔𝑗𝑦 𝜇𝑕. 𝜇𝑦. 𝑓 : 𝑈 → 𝑉 Consider 𝑈 1 𝑦 𝑧 ≡ 𝑔𝑡𝑢 𝑦 < 𝑔𝑡𝑢 𝑧 Consider 𝑈 2 𝑦 𝑧 ≡ 𝑡𝑜𝑒 𝑦 < 𝑡𝑜𝑒 𝑧 [NOTICE: No restriction on fst components!] Subtyping constraints (obligations) arising from program 𝑣, 𝑤 = 𝑝𝑣, 𝑝𝑤 , 𝑤 > 0 ⟹ 𝑒𝑘 𝑣, 𝑤 − 1 , 𝑝𝑣, 𝑝𝑤 𝑣, 𝑤 = 𝑝𝑣, 𝑝𝑤 , 𝑣 > 1 ⟹ 𝑒𝑘 (𝑣 − 1, 𝑤 , (𝑝𝑣, 𝑝𝑤)) 𝑒𝑘 𝑣, 𝑤 , 𝑝𝑣, 𝑝𝑤 , 𝑤 > 0 ⟹ 𝑒𝑘 𝑣, 𝑤 − 1 , 𝑝𝑣, 𝑝𝑤 𝑒𝑘 𝑣, 𝑤 , 𝑝𝑣, 𝑝𝑤 , 𝑣 > 1 ⟹ 𝑒𝑘( 𝑣 − 1, 𝑤 , 𝑝𝑣, 𝑝𝑤 ) 5

  7. Or … just call Liquid Types and it will do all that for you! http://pho.ucsd.edu/liquid/demo/index2.php … after you have applied a transformation to the original program that I will describe later on 6

  8. Background Structural and guarded recursion, dependent types and well-founded relations in Coq We will skip these. You already know 7

  9. Background: disjunctive invariants Ramsey’s theorem Every infinite complete graph whose edges are colored with finitely many colors contains an infinite monochromatic path. Podelski & Rybalchenko characterization of WF relations Relation 𝑆 is WF iff there exist WF relations 𝑈 1 … 𝑈 𝑜 such that 𝑆 + ⊆ 𝑈 1 ∪ … ∪ 𝑈 𝑜 8

  10. Background: How Terminator works?  Transform a program, and assert/infer invariants! bool copied = false; int x = 50; int oldx; while (x > 0) do { int x = 50; … while (x > 0) do { x = x - 1; if copied then } assert (x <_{T_i} oldx) else  Invariant between x and oldx if * then { copied=true; oldx=x; represents any point of R+! } … x = x - 1;  We need non-deterministic } choice to allow the “start point” to be anywhere 9

  11. In a functional setting: a first attempt  Let’s consider only divergence from recursion  Negative recursive types, control ← Not well-thought yet  The “state” is the arguments of the recursive function  Hence: let rec f x = if x==0 then 41 else f (x-1) + 1 let rec f x = In particular f if * then has to accept x ≤ oldx if x==0 then 41 else f (x-1) + 1 else the first time. But where is the ASSERT? f’ x x But in all let rec f’ oldx x = subsequent calls if x==0 then 41 else f’ oldx (x-1) + 1 it must be x < oldx 10

  12. In a functional setting: a better attempt  Just inline the first call to f’ to expose subsequent calls: let rec f x = if x==0 then 41 else f (x-1) + 1 Starts to look like something a refinement let rec f x = type system could express if * then … but can we dispense if x==0 then 41 else f (x-1) + 1 with rewriting? else f ’ x x if x==0 then 41 else f’ x (x -1) + 1 let rec f’ oldx x = assert (oldx <_{T_i} x) if x==0 then 41 else f’ oldx (x-1) + 1 11

  13. A special typing rule, to avoid rewriting Γ, 𝑝𝑚𝑒: 𝑈 , 𝑕: 𝑦: 𝑈 𝑒𝑘 𝑦, 𝑝𝑚𝑒 → 𝑉), (𝑦: *𝑧: 𝑈 𝑒𝑘 𝑧, 𝑝𝑚𝑒 ∨ 𝑧 = 𝑝𝑚𝑒+ ⊢ 𝑓: 𝑉 Γ ⊢ 𝑔𝑗𝑦 𝜇𝑕. 𝜇𝑦. 𝑓 : 𝑈 → 𝑉  A declarative spec of termination with disjunctive invariants  Given the set 𝑈 𝑗 the typing rule can be checked or inferred  E.g. inference via Liquid Types [Ranjit]  It’s a cool thing: programmer needs to come up with simple WF relations (which are also easy to synthesize [Byron]) 12

  14. Bumping up the arguments let rec flop (u,v) = if v > 0 then flop (u,v-1) else if u > 1 then flop (u-1, big ) else 1 Γ, 𝑝𝑚𝑒: 𝑈 , 𝑕: 𝑦: 𝑈 𝑒𝑘 𝑦, 𝑝𝑚𝑒 → 𝑉), (𝑦: *𝑧: 𝑈 𝑒𝑘 𝑧, 𝑝𝑚𝑒 ∨ 𝑧 = 𝑝𝑚𝑒+ ⊢ 𝑓: 𝑉 Γ ⊢ 𝑔𝑗𝑦 𝜇𝑕. 𝜇𝑦. 𝑓 : 𝑈 → 𝑉 Consider 𝑈 1 (𝑦, 𝑧) ≡ 𝑔𝑡𝑢 𝑦 < 𝑔𝑡𝑢 𝑧 Consider 𝑈 2 (𝑦, 𝑧) ≡ 𝑡𝑜𝑒 𝑦 < 𝑡𝑜𝑒 𝑧 Subtyping constraints (obligations) arising from program 𝑣, 𝑤 = 𝑝𝑣, 𝑝𝑤 ∧ 𝑤 > 0 ⟹ 𝑒𝑘 𝑣, 𝑤 − 1 , 𝑝𝑣, 𝑝𝑤 𝑣, 𝑤 = 𝑝𝑣, 𝑝𝑤 ∧ 𝑣 > 1 ⟹ 𝑒𝑘 (𝑣 − 1, 𝒄𝒋𝒉 , (𝑝𝑣, 𝑝𝑤)) 𝑒𝑘 𝑣, 𝑤 , 𝑝𝑣, 𝑝𝑤 ∧ 𝑤 > 0 ⟹ 𝑒𝑘 𝑣, 𝑤 − 1 , 𝑝𝑣, 𝑝𝑤 𝑒𝑘 𝑣, 𝑤 , 𝑝𝑣, 𝑝𝑤 ∧ 𝑣 > 1 ⟹ 𝑒𝑘( 𝑣 − 1, 𝒄𝒋𝒉 , 𝑝𝑣, 𝑝𝑤 ) 13

  15. One way to strengthen the rule with invariants let rec flop (u,v) = if v > 0 then flop (u,v-1) else if u > 1 then flop (u-1, big ) else 1 Γ, (𝑝𝑚𝑒: 𝑈), 𝑕: *𝑦: 𝑈 | 𝑸 𝒚, 𝒑𝒎𝒆 ∧ 𝑒𝑘 𝑦, 𝑝𝑚𝑒 → 𝑉), (𝑦: 𝑧: 𝑈 𝑸 𝒛, 𝒑𝒎𝒆 ∧ 𝑒𝑘 𝑧, 𝑝𝑚𝑒 ∨ 𝑧 = 𝑝𝑚𝑒 +) ⊢ 𝑓 ∶ 𝑉 𝑸 𝑠𝑓𝑔𝑚𝑓𝑦𝑗𝑤𝑓 Γ ⊢ 𝑔𝑗𝑦 𝜇𝑕. 𝜇𝑦. 𝑓 ∶ 𝑈 → 𝑉 Consider 𝑈 1 (𝑦, 𝑧) ≡ 𝑔𝑡𝑢 𝑦 < 𝑔𝑡𝑢 𝑧 Consider 𝑈 2 (𝑦, 𝑧) ≡ 𝑡𝑜𝑒 𝑦 < 𝑡𝑜𝑒 𝑧 [NOTICE: No restriction on fst!] Consider 𝑸(𝒚, 𝒛) ≡ 𝒈𝒕𝒖 𝒚 ≤ 𝒈𝒕𝒖 𝒛 [Synthesized or provided] Subtyping constraints (obligations) arising from program: 𝑄 (𝑣, 𝑤), (𝑝𝑣, 𝑝𝑤) ∧ 𝑣, 𝑤 = 𝑝𝑣, 𝑝𝑤 ∧ 𝑤 > 0 ⟹ 𝑄 (𝑣, 𝑤 − 1), (𝑝𝑣, 𝑝𝑤) ∧ 𝑒𝑘 𝑣, 𝑤 − 1 , 𝑝𝑣, 𝑝𝑤 𝑄 𝑣, 𝑤 , (𝑝𝑣, 𝑝𝑤) ∧ 𝑣, 𝑤 = 𝑝𝑣, 𝑝𝑤 ∧ 𝑣 > 1 ⟹ 𝑄 (𝑣 − 1, 𝑐𝑗𝑕), (𝑝𝑣, 𝑝𝑤) ∧ 𝑒𝑘 (𝑣 − 1, 𝑐𝑗𝑕 , (𝑝𝑣, 𝑝𝑤)) 𝑄 𝑣, 𝑤 , (𝑝𝑣, 𝑝𝑤 ) ∧ 𝑒𝑘 𝑣, 𝑤 , 𝑝𝑣, 𝑝𝑤 ∧ 𝑤 > 0 ⟹ 𝑄 (𝑣, 𝑤 − 1), (𝑝𝑣, 𝑝𝑤) ∧ 𝑒𝑘 𝑣, 𝑤 − 1 , 𝑝𝑣, 𝑝𝑤 𝑄 (𝑣, 𝑤), (𝑝𝑣, 𝑝𝑤) ∧ 𝑒𝑘 𝑣, 𝑤 , 𝑝𝑣, 𝑝𝑤 ∧ 𝑣 > 1 ⟹ 𝑄 (𝑣 − 1, 𝑐𝑗𝑕), (𝑝𝑣, 𝑝𝑤 ) ∧ 𝑒𝑘( 𝑣 − 1, 𝑐𝑗𝑕 , 𝑝𝑣, 𝑝𝑤 ) 14

  16. Scrap your lexicographic orders? ... 𝑄 𝑠𝑓𝑔𝑚𝑓𝑦𝑗𝑤𝑓 Γ, (𝑝𝑚𝑒: 𝑈), 𝑕: *𝑦: 𝑈 | 𝑸 𝒚, 𝒑𝒎𝒆 ∧ 𝑒𝑘 𝑦, 𝑝𝑚𝑒 → 𝑉), (𝑦: 𝑧: 𝑈 𝑸 𝒛, 𝒑𝒎𝒆 ∧ 𝑒𝑘 𝑧, 𝑝𝑚𝑒 ∨ 𝑧 = 𝑝𝑚𝑒 +) ⊢ 𝑓 ∶ 𝑉 Γ ⊢ 𝑔𝑗𝑦 𝜇𝑕. 𝜇𝑦. 𝑓 ∶ 𝑈 → 𝑉 It is arguably very simple to see what 𝑈 1 … 𝑈 𝑜 are but not as simple to provide a strong enough invariant 𝑄 But the type-system approach may help find this P interactively from the termination constraints? … or Liquid Types can infer it for us 15

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