a marriage of rely guarantee separation logic
play

A marriage of rely/guarantee & separation logic Viktor V - PowerPoint PPT Presentation

A marriage of rely/guarantee & separation logic Viktor V afeiadis MPI - SWS Coarse - grain locking 2 3 5 7 11 13 Coarse - grain locking 2 3 5 7 11 13 Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13 Fine -


  1. A marriage of rely/guarantee & separation logic Viktor V afeiadis MPI - SWS

  2. Coarse - grain locking 2 3 5 7 11 13

  3. Coarse - grain locking 2 3 5 7 11 13

  4. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  5. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  6. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  7. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  8. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  9. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  10. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  11. Fine - grain locking Pessimistic: lock - coupling 2 3 5 7 11 13

  12. Fine - grain locking Optimistic traversal 2 3 5 7 11 13

  13. Fine - grain locking Optimistic traversal 2 3 5 7 11 13

  14. Fine - grain locking Optimistic traversal 2 3 5 7 11 13 Re - traverse the list OR deletions in two steps Leaks memory: cannot dispose deleted nodes.

  15. Operations ( actions ) Pessimistic algorithm Lock Unlock Add node Delete node

  16. Operations ( actions ) Optimistic algorithm Lock Unlock Add node Delete node

  17. Fine - grained concurrency • Complex concurrency patterns • Dynamically allocated data structures • Explicit memory deallocation • Concurrent libraries: java.util.concurrent Aim: T ractable reasoning, manual & automatic

  18. Separation logic [ Reynolds, O ’ Hearn, et al. 2001+ ]

  19. Separation logic ( 1/3 ) ... a logic for describing the heap P, Q ::= e = e ′ | P ∧ Q | P ∨ Q | ¬ P | ∃ x. P | ∀ x. P | emp | e �→ e 1 , . . . , e n | P ∗ Q | P − ∗ Q Q empty heap single cell P e 1 e 2 e : separation def lseg ( x, y ) = ( x = y ∧ emp ) ∨ ( ∃ z v. x �→ v, z ∗ lseg ( z, y ))

  20. Separation logic ( 2/3 ) ... a program logic • Hoare triples { precondition } program { postcondition } • Rules for commands accessing the heap • Frame rule { P } C { Q } { P ∗ R } C { Q ∗ R } C C Q Q If then P P R R

  21. Separation logic ( 3/3 ) ... disjoint parallelism { P 1 } C 1 { Q 1 } { P 2 } C 2 { Q 2 } { P 1 ∗ P 2 } C 1 � C 2 { Q 1 ∗ Q 2 } C 1 C 2 Q 1 If and P 1 Q 2 P 2 C 1 � C 2 Q 1 P 1 then Q 2 P 2 [ + resource invariants ]

  22. Introduction to RGSep Basic concepts

  23. Local and shared state 2 3 5 7 11 13 Shared Local 6

  24. Actions Describe how the shared state changes: ( i ) by the program & ( ii ) by its environment Lock Unlock Semantics: An action changes the part of the shared state that matches the LHS to something that matches the RHS. The rest of the shared state is not touched.

  25. The two roles of actions • Guarantee: As annotations to atomic blocks, they specify what an atomic block does to the shared state They also adjust the boundary between local and shared state • Rely: Abstract what all the other threads do to the shared state

  26. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock

  27. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock 2 3 5 7 11 13 Shared Local 6

  28. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock 2 3 5 7 11 13 Shared Local 6

  29. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock 2 3 5 7 11 13 Shared Local 6

  30. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock 2 3 5 7 11 13 Shared Local 6

  31. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock 2 3 5 7 11 13 Shared Local 6

  32. E ff ect of an action 2 3 5 7 11 13 Shared Local 6 Lock 2 3 5 7 11 13 Shared Local 6

  33. Ownership transfer Add node Where did this node come from? Delete node Where did this node go?

  34. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 Local 6 Add node

  35. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 6 Local Add node

  36. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 6 Local Lock node

  37. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 6 Local Lock node

  38. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 6 Local Delete node

  39. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 Local 6 Delete node

  40. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 Local 6 Now, the node is local; we can safely dispose it.

  41. Local and shared state Pessimistic algorithm Shared 2 3 5 7 11 13 Local Now, the node is local; we can safely dispose it.

  42. Local and shared state Optimistic algorithm Shared 2 3 5 7 11 13 6 Local Delete node

  43. Local and shared state Optimistic algorithm Shared 2 3 5 7 11 13 6 Local Delete node

  44. Interference: other threads 2 3 5 7 11 13 A A

  45. Interference: other threads 2 5 7 11 13 A A

  46. Interference: other threads 2 5 7 11 13 A A 12

  47. Interference: other threads 2 5 7 11 13 A A 12 5 7 A A

  48. Stability 5 7 A A Lock B Unlock B

  49. Stability 5 7 A A Add node B B Delete node B B B

  50. RGSep More formally...

  51. Assertion syntax Separation Logic P, Q ::= false | emp | e = e ′ | e �→ e ′ | ∃ x. P | P ⇒ Q | P ∗ Q | P − ⊛ Q ⇒ h � SL ¬ ( P − ∗ ¬ Q ) h � SL P − ⊛ Q ⇐ ⇒ ∃ h ′ . ( h ′ � SL P ) ∧ ( h ⊎ h ′ � SL Q ) ⇐ Extended logic p, q ::= P | P | p ∗ q | p ∧ q | p ∨ q | ∃ x. p | ∀ x. p local shared

  52. Assertion semantics ⇐ ⇒ l, s � P l � SL P ⇐ ⇒ l = ∅ ∧ ( s � SL P ) l, s � P l, s � p 1 ∗ p 2 ⇐ ⇒ ∃ l 1 , l 2 . ( l = l 1 ⊎ l 2 ) ∧ ( l 1 , s � p 1 ) ∧ ( l 2 , s � p 2 ) Split local state; share global state.

  53. Actions x �→ 0 , v, t x �→ tid, v, t � x �→ tid, v, t x �→ 0 , v, t � x �→ tid, v, y x �→ tid, v, t � ∗ y �→ 0 , v ′ , t x �→ tid, v, y x �→ tid, v, t ∗ y �→ tid, v ′ , t � x �→ tid, v, y x �→ tid, v, t ∗ y �→ tid, v ′ , t � ∗ y �→ tid, v ′ , t

  54. Judgements ⊢ C sat ( p, R, G, q ) ( precondition, rely, guarantee, postcondition )

  55. Parallel rule ⊢ C 1 sat ( p 1 , R ∪ G 2 , G 1 , q 1 ) ⊢ C 2 sat ( p 2 , R ∪ G 1 , G 2 , q 2 ) ⊢ ( C 1 � C 2 ) sat ( p 1 ∗ p 2 , R, G 1 ∪ G 2 , q 1 ∗ q 2 ) Splits local state; Shares global state.

  56. Atomic commands p, q stable under R ⊢ ( atomic C ) sat ( p, ∅ , G, q ) ⊢ ( atomic C ) sat ( p, R, G, q ) P 2 , Q 2 precise ( P 2 � Q 2 ) ∈ G ⊢ C sat ( P 1 ∗ P 2 , ∅ , ∅ , Q 1 ∗ Q 2 ) � � ⊢ ( atomic C ) sat P 1 ∗ P 2 ∗ F , ∅ , G, Q 1 ∗ Q 2 ∗ F Shared Local state state

  57. Stability S stable under P � Q i ff (( P − ⊛ S ) ∗ Q ) ⇒ S

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