refinement proofs and
play

Refinement Proofs and Techniques Suha Orhun Mutluergil Koc - PowerPoint PPT Presentation

Refinement Proofs and Techniques Suha Orhun Mutluergil Koc University, Istanbul, Turkey Refinement In general: A concrete and complex system 1 refines the abstract system 2 iff 2 completely captures the behaviors of 1 .


  1. Refinement Proofs and Techniques Suha Orhun Mutluergil Koc University, Istanbul, Turkey

  2. Refinement  In general: A concrete and complex system 𝑇 1 refines the abstract system 𝑇 2 iff 𝑇 2 completely captures the behaviors of 𝑇 1 .  For automata/state machines/transition systems  Refinement is based on observable actions alphabet Σ .  Formally: A Labeled Transition System (LTS) 𝑀 1 Σ − refines the LTS 𝑀 2 iff for every trace 𝜐 of 𝑀 1 , there exists a trace 𝜐′ of 𝑀 2 such that 𝜐 Σ = 𝜐 ′ Σ .  Example: L 1 = 〈𝑇 1 = 𝑡 0 , 𝑡 1 , … , Σ 1 = 𝛽, 𝛾, 𝛿 , 𝜀 1 〉 s.t. 𝜀 1 ⊆ 𝑇 1 × Σ 1 × S 1 𝑀 2 = 〈𝑇 2 = 𝑟 0 , 𝑟 1 , … , Σ 2 = 𝛽, 𝛾, 𝜄 , 𝜀 2 〉 s.t. 𝜀 2 ⊆ 𝑇 2 × Σ 2 × 𝑇 2 Σ = {𝛽, 𝛾} 𝛽 𝛿 𝛾 𝛾 𝑡 0 𝑡 1 𝑡 3 𝑡 4 𝑡 2 𝛽 𝛾 𝛾 𝜄 𝑟 0 𝑟 3 𝑟 4 𝑟 1 𝑟 2

  3. Refinement  In general: A concrete and complex system 𝑇 1 refines the abstract system 𝑇 2 iff 𝑇 2 completely captures the behaviors of 𝑇 1 .  For automata/state machines/transition systems  Refinement is based on observable actions alphabet Σ .  Formally: A Labeled Transition System (LTS) 𝑀 1 Σ − refines the LTS 𝑀 2 iff for every trace 𝜐 of 𝑀 1 , there exists a trace 𝜐′ of 𝑀 2 such that 𝜐 Σ = 𝜐 ′ Σ .  Example: L 1 = 〈𝑇 1 = 𝑡 0 , 𝑡 1 , … , Σ 1 = 𝛽, 𝛾, 𝛿 , 𝜀 1 〉 s.t. 𝜀 1 ⊆ 𝑇 1 × Σ 1 × S 1 𝑀 2 = 〈𝑇 2 = 𝑟 0 , 𝑟 1 , … , Σ 2 = 𝛽, 𝛾, 𝜄 , 𝜀 2 〉 s.t. 𝜀 2 ⊆ 𝑇 2 × Σ 2 × 𝑇 2 Σ = {𝛽, 𝛾} 𝜷 𝛿 𝜸 𝜸 𝑡 0 𝑡 1 𝑡 3 𝑡 4 𝑡 2 𝜷 𝜸 𝜸 𝜄 𝑟 0 𝑟 3 𝑟 4 𝑟 1 𝑟 2

  4. How to Prove Refinement  In general, proofs depend on finding a particular kind of relations/functions that relates states of 𝑀 1 to states of 𝑀 2 .  Refinement mappings, forward simulation relations, backward simulation relations  Completeness issues: None of these relations/functions are complete.  Refinement Mappings  Complete if 𝑀 1 is a forest and 𝑀 2 is deterministic. 2  Otherwise, history and/or prophecy variables may need to be added. 1  Forward Simulations  Complete if 𝑀 2 is deterministic. 2  Otherwise, prophecy variables may need to be added. 2  Backward Simulations  Complete if 𝑀 1 is a forest. 2  Otherwise, history variables may need to be added. 2 1. Abadi, M., & Lamport, L. (1991). The existence of refinement mappings. Theoretical Computer Science, 82(2), 253-284. 2. Lynch, N. A., & Vaandrager, F. W. (1995). Forward and backward simulations. Part I: Untimed systems. Information and Computation , 121 (2), 214-233.

  5. Proving Linearizability using Forward Simulations ǂ Joint work with Ahmed Bouajjani 1 , Constantin Enea 1 and Michael Emmi 2 1 :IRIF, University of Paris Diderot 2 :Nokia Bell Labs ǂ: To Appear in CAV'17

  6. A Brief Overview  Scope: Proving correctness of concurrent stack and queue implementations (which eventually boils down to a refinement proof).  Contributions: A new stack and queue LTS specifications that are more useful than the standard specifications for the proofs  Shown the equivalence to the standard specifications  Existence of forward simulations is guaranteed if some properties are known for the dequeue/pop methods of the implementations.  Experiments/Applications  Shown the correctness of Herlihy-Wing Queue 1 by finding a forward simulation relation to the new queue implementation.  Shown correctness of Time-Stamped Stack 2 finding a forward simulation relation to the new stack implementation. 1. Herlihy, Maurice P., and Jeannette M. Wing. "Linearizability: A correctness condition for concurrent objects." ACM Transactions on Programming Languages and Systems (TOPLAS) 12.3 (1990): 463-492. 2. Dodds, Mike, Andreas Haas, and Christoph M. Kirsch. "A scalable, correct time-stamped stack." ACM SIGPLAN Notices. Vol. 50. No. 1. ACM, 2015.

  7. Linearizability  The standard correctness condition for concurrent data structures/libraries.  Call and return actions mark the beginning and end of methods.  History: Projection of a trace over call and return actions ( 𝐷 ∪ 𝑆 ).  𝑀 1 is linearizable with respect to the specification 𝑀 2 iff there exists a linearization point of every operation in the history ℎ 1 btw its call and return points such that the same operation of 𝑀 2 takes place atomically at that point. inv(enq,3) ret(enq) inv(enq,5) ret(enq) inv(deq) ret(deq,3) enq(3) deq(3) enq(5)

  8. How to Prove Linearizability of Queues  Standard abstract specification 𝐵𝑐𝑡𝑅 0 :  State: 𝑟: ℕ 𝜕  Actions: 𝑗𝑜𝑤(𝑓𝑜𝑟, 𝑒) , 𝑚𝑗𝑜 𝑓𝑜𝑟, 𝑒 , 𝑠𝑓𝑢(𝑓𝑜𝑟) , 𝑗𝑜𝑤(𝑒𝑓𝑟) , 𝑚𝑗𝑜(𝑒𝑓𝑟, 𝑒) , 𝑠𝑓𝑢(𝑒𝑓𝑟, 𝑒) ≔ 𝑟 ′ = 𝑟 ∘ 〈𝑒〉  𝑚𝑗𝑜 𝑓𝑜𝑟, 𝑒 ⇒ q ′ = q  𝑚𝑗𝑜 𝑒𝑓𝑟, EMPTY ≔ 𝑟 =  𝑚𝑗𝑜 𝑒𝑓𝑟, 𝑒 ≔ 𝑟 = 𝑒 ∘ 𝑡 ∧ 𝑒 ≠ EMPTY ⇒ 𝑟 ′ = 𝑡  Showing that the implementation 𝑀 1 𝐷 ∪ 𝑆 − refines 𝐵𝑐𝑡𝑅 0 is sufficient.  If we know the linearization points of enqueue or dequeue methods, finding 𝐷 ∪ 𝑆 ∪ 𝑚𝑗𝑜 − refinements are easier.

  9. Observations about Implementations  Linearization points of enqueues are usually not fixed (depends on the execution).  Linearization points of dequeues are usually fixed and easy to determine.  𝐵𝑐𝑡𝑅 0 is not deterministic in terms of 𝐷 ∪ 𝑆 and 𝐷 ∪ 𝑆 ∪ 𝑚𝑗𝑜 𝑒𝑓𝑟 . ret(enq) inv(enq,3) lin(enq,3) 𝑟 = 〈3,5 〉 inv(enq,5) lin(enq,5) ret(enq)

  10. Observations about Implementations  Linearization points of enqueues are usually not fixed (depends on the execution).  Linearization points of dequeues are usually fixed and easy to determine.  𝐵𝑐𝑡𝑅 0 is not deterministic in terms of 𝐷 ∪ 𝑆 and 𝐷 ∪ 𝑆 ∪ 𝑚𝑗𝑜 𝑒𝑓𝑟 . inv(enq,3) lin(enq,3) ret(enq) 𝑟 = 〈5,3 〉 inv(enq,5) lin(enq,5) ret(enq)

  11. New Abstract Queue 𝐵𝑐𝑡𝑅  States: Strict partial order of enqueue 𝑓 6 operations based on happens-before relation. They can be pending or completed 𝑓 5  Actions: 𝐷 ∪ 𝑆 ∪ 𝑚𝑗𝑜(𝑒𝑓𝑟) 𝑓 4  𝐵𝑐𝑡𝑅 is deterministic in terms of 𝐷 ∪ 𝑆 ∪ 𝑚𝑗𝑜(𝑒𝑓𝑟) 𝑓 3  𝐵𝑐𝑡𝑅 produces same histories with 𝐵𝑐𝑡𝑅 0 .  Example Application: Showing linearizability of Herlihy & Wing Queue 1 by finding a forward 𝑓 1 𝑓 2 simulation to 𝐵𝑐𝑡𝑅 . dequable minimal nodes :COMPLETED :PENDING 1. Herlihy, Maurice P., and Jeannette M. Wing. "Linearizability: A correctness condition for concurrent objects." ACM Transactions on Programming Languages and Systems (TOPLAS) 12.3 (1990): 463-492.

  12. The Stack Case  A natural conversion of 𝐵𝑐𝑡𝑅 to 𝐵𝑐𝑡𝑇 exists. Pops remove maximal elements instead of minimal elements.  Similar observations on implementations: linearization points of pushes are not fixed. For complicated examples, linearization points of pops are not fixed neither. But, we can determine commit points (that fixes the return value) of pops.  𝐵𝑐𝑡𝑇 0 is not deterministic in terms of 𝐷 ∪ 𝑆 or 𝐷 ∪ 𝑆 ∪ 𝑑𝑝𝑛(𝑞𝑝𝑞) .  We introduce a new 𝐵𝑐𝑡𝑇 that produces different from the dual of 𝐵𝑐𝑡𝑅 , equivalent executions with 𝐵𝑐𝑡𝑇 0 and deterministic in terms of 𝐷 ∪ 𝑆 ∪ 𝑑𝑝𝑛 𝑞𝑝𝑞 .  We have shown its applicability by finding a forward simulation from the complicated Time-Stamped Stack 1 implementation to 𝐵𝑐𝑡𝑇 . 1. Dodds, Mike, Andreas Haas, and Christoph M. Kirsch. "A scalable, correct time-stamped stack." ACM SIGPLAN Notices. Vol. 50. No. 1. ACM, 2015.

  13. Conclusions & Other Interests  Future work: Extending the idea to other data structures like sets.  Future work: Mechanizing the proofs on Boogie/CIVL proof system developed by Microsoft Research and Koc University.  Other interests:  Refinement proofs for weak memory models.  Particularly, extending the CIVL proof system for TSO memory model.  New proof rules for TSO.  Extending the concept of linearizability for WMM.

  14. Thank You  Any Questions?

  15. How to Prove Linearizability inv(enq,3) ret(enq) inv(enq,5) ret(enq) inv(deq) ret(deq,3) inv(enq,3) lin(enq,3) ret(enq) inv(enq,5) ret lin lin inv(deq) ret(deq,3) inv lin ret inv lin ret inv lin ret

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