weak memory models a tutorial
play

Weak Memory Models: A Tutorial Jade Alglave University College - PowerPoint PPT Presentation

Weak Memory Models: A Tutorial Jade Alglave University College London February 3rd, 2014 Sequential Consistency A comfortable model for concurrent programming would be Sequential Consistency (SC), as defined by Leslie Lamport in 1979: The


  1. Weak Memory Models: A Tutorial Jade Alglave University College London February 3rd, 2014

  2. Sequential Consistency A comfortable model for concurrent programming would be Sequential Consistency (SC), as defined by Leslie Lamport in 1979: The result of any execution is the same as if the operations of all the processors were executed in some sequential order, and the operations of each individual processor appear in this sequence in the order specified by its program. Jade Alglave WMM Tutorial February 3rd, 2014 2 / 33

  3. Example Consider the following example, where initially x = y = 0: sb P 0 P 1 ( a ) x ← 1 ( c ) y ← 1 ( b ) r1 ← y ( d ) r2 ← x r1=? ; r2=? ; Following SC, we expect three possible outcomes: ( a )( b )( c )( d ) r1 = 0 ∧ r2 = 1 ( c )( d )( a )( b ) r1 = 1 ∧ r2 = 0 ( a )( c )( b )( d ) ( a )( c )( d )( b ) r1 = 1 ∧ r2 = 1 ( c )( a )( b )( d ) ( c )( a )( d )( b ) Jade Alglave WMM Tutorial February 3rd, 2014 3 / 33

  4. Example Consider the following example, where initially x = y = 0: sb P 0 P 1 ( a ) x ← 1 ( c ) y ← 1 ( b ) r1 ← y ( d ) r2 ← x r1=? ; r2=? ; Following SC, we expect three possible outcomes: ( a )( b )( c )( d ) r1 = 0 ∧ r2 = 1 ( c )( d )( a )( b ) r1 = 1 ∧ r2 = 0 ( a )( c )( b )( d ) ( a )( c )( d )( b ) r1 = 1 ∧ r2 = 1 ( c )( a )( b )( d ) ( c )( a )( d )( b ) Jade Alglave WMM Tutorial February 3rd, 2014 3 / 33

  5. Example Consider the following example, where initially x = y = 0: sb P 0 P 1 ( a ) x ← 1 ( c ) y ← 1 ( b ) r1 ← y ( d ) r2 ← x r1=0 ; r2=? ; Following SC, we expect three possible outcomes: ( a )( b )( c )( d ) r1 = 0 ∧ r2 = 1 ( c )( d )( a )( b ) r1 = 1 ∧ r2 = 0 ( a )( c )( b )( d ) ( a )( c )( d )( b ) r1 = 1 ∧ r2 = 1 ( c )( a )( b )( d ) ( c )( a )( d )( b ) Jade Alglave WMM Tutorial February 3rd, 2014 3 / 33

  6. Example Consider the following example, where initially x = y = 0: sb P 0 P 1 ( a ) x ← 1 ( c ) y ← 1 ( b ) r1 ← y ( d ) r2 ← x r1=0 ; r2=? ; Following SC, we expect three possible outcomes: ( a )( b )( c )( d ) r1 = 0 ∧ r2 = 1 ( c )( d )( a )( b ) r1 = 1 ∧ r2 = 0 ( a )( c )( b )( d ) ( a )( c )( d )( b ) r1 = 1 ∧ r2 = 1 ( c )( a )( b )( d ) ( c )( a )( d )( b ) Jade Alglave WMM Tutorial February 3rd, 2014 3 / 33

  7. Example Consider the following example, where initially x = y = 0: sb P 0 P 1 ( a ) x ← 1 ( c ) y ← 1 ( b ) r1 ← y ( d ) r2 ← x r1=0 ; r2=1 ; Following SC, we expect three possible outcomes: ( a )( b )( c )( d ) r1 = 0 ∧ r2 = 1 ( c )( d )( a )( b ) r1 = 1 ∧ r2 = 0 ( a )( c )( b )( d ) ( a )( c )( d )( b ) r1 = 1 ∧ r2 = 1 ( c )( a )( b )( d ) ( c )( a )( d )( b ) Jade Alglave WMM Tutorial February 3rd, 2014 3 / 33

  8. Experiment On an Intel Core 2 Duo: {x=0; y=0;} P0 | P1 ; MOV [y],$1 | MOV [x],$1 ; MOV EAX,[x] | MOV EAX,[y] ; exists (0:EAX=0 /\ 1:EAX=0) Certain instructions appear to be reordered w.r.t. the program order. Let us check that on my machine. Jade Alglave WMM Tutorial February 3rd, 2014 4 / 33

  9. Weak memory models For performance reasons, modern architectures provide several features that are weakenings of SC: For some applications, achieving sequential consistency may not be worth the price of slowing down the processors. In this case, one must be aware that conventional methods for designing multiprocess algorithms cannot be relied upon to produce correctly executing programs. Jade Alglave WMM Tutorial February 3rd, 2014 5 / 33

  10. How can we make sure that we write correct programs? ◮ We need to understand precisely what memory models guarantee to write correct concurrent programs. ◮ This problem spreads to high level languages and is potentially much worse, due to compiler optimisations. Jade Alglave WMM Tutorial February 3rd, 2014 6 / 33

  11. Surely there are specs? Documentation is (at least) ambiguous, since written in natural language. Jade Alglave WMM Tutorial February 3rd, 2014 7 / 33

  12. Surely there are specs? “all that horrible horribly incomprehensible and confusing [. . . ] text that no-one can parse or reason with — not even the people who wrote it” Anonymous Processor Architect, 2011 Jade Alglave WMM Tutorial February 3rd, 2014 7 / 33

  13. Describing executions Jade Alglave WMM Tutorial February 3rd, 2014 8 / 33

  14. Style of modelling Memory models roughly fall into two classes: ◮ Operational ◮ Axiomatic Jade Alglave WMM Tutorial February 3rd, 2014 9 / 33

  15. Building an execution rlns P 0 P 1 ( a ) x ← 2 ( b ) x ← 1 ( c ) r1 ← x Allowed: 1:r1=1 ; x=2 ; Jade Alglave WMM Tutorial February 3rd, 2014 10 / 33

  16. Building an execution : Events E and program order po rlns P 0 P 1 ( a ) x ← 2 ( b ) x ← 1 ( c ) r1 ← x Allowed: 1:r1=1 ; x=2 ; a:W[x]=2 b:W[x]=1 po c:R[x]=1 We write E � ( E , po) for such a structure. Jade Alglave WMM Tutorial February 3rd, 2014 10 / 33

  17. Building an execution : Coherence co rlns P 0 P 1 ( a ) x ← 2 ( b ) x ← 1 ( c ) r1 ← x Allowed: 1:r1=1 ; x=2 ; a:W[x]=2 b:W[x]=1 co po c:R[x]=1 The coherence co orders totally all the write events to the same memory location. Jade Alglave WMM Tutorial February 3rd, 2014 10 / 33

  18. Building an execution : Read-from rf rlns P 0 P 1 ( a ) x ← 2 ( b ) x ← 1 ( c ) r1 ← x Allowed: 1:r1=1 ; x=2 ; a:W[x]=2 b:W[x]=1 co rf po c:R[x]=1 The read-from map rf links a write and any read that reads from it. Jade Alglave WMM Tutorial February 3rd, 2014 10 / 33

  19. Building an execution : From-read map fr rlns P 0 P 1 ( a ) x ← 2 ( b ) x ← 1 ( c ) r1 ← x Allowed: 1:r1=1 ; x=2 ; a:W[x]=2 b:W[x]=1 co rf po fr c:R[x]=1 We derive the from-read map fr from co and rf. Jade Alglave WMM Tutorial February 3rd, 2014 10 / 33

  20. Building an execution : Execution witness X � (co , rf) rlns P 0 P 1 ( a ) x ← 2 ( b ) x ← 1 ( c ) r1 ← x Allowed: 1:r1=1 ; x=2 ; a:W[x]=2 b:W[x]=1 co rf po fr c:R[x]=1 We define an execution witness as X � (co , rf). Jade Alglave WMM Tutorial February 3rd, 2014 10 / 33

  21. Describing architectures Jade Alglave WMM Tutorial February 3rd, 2014 11 / 33

  22. Four axioms ◮ Uniproc ◮ No thin air ◮ Causality ◮ Propagation Jade Alglave WMM Tutorial February 3rd, 2014 12 / 33

  23. Uniproc (Coherence) All the models I have studied preserve SC per location. a: W[x]=1 co po b: W[x]=2 Jade Alglave WMM Tutorial February 3rd, 2014 13 / 33

  24. Uniproc (Coherence) All the models I have studied preserve SC per location. a: R[x]=1 rf po b: W[x]=1 Jade Alglave WMM Tutorial February 3rd, 2014 13 / 33

  25. Uniproc (Coherence) All the models I have studied preserve SC per location. a:W[x]=1 b:R[x]=1 rf co po c:W[x]=2 Jade Alglave WMM Tutorial February 3rd, 2014 13 / 33

  26. Uniproc (Coherence) All the models I have studied preserve SC per location. a:W[x]=1 b:W[x]=2 co fr po rf c:R[x]=1 Jade Alglave WMM Tutorial February 3rd, 2014 13 / 33

  27. Uniproc (Coherence) All the models I have studied preserve SC per location. a:W[x]=1 b:R[x]=1 rf fr po c:R[x]=0 Jade Alglave WMM Tutorial February 3rd, 2014 13 / 33

  28. Uniproc (Coherence) All the models I have studied preserve SC per location. This ensures that non-relational analyses are sound on weak memory. Jade Alglave WMM Tutorial February 3rd, 2014 13 / 33

  29. No thin air All the models I have studied define a happens-before relation: a: Rf[0]=0 c: Rf[1]=1 rf rf po po b: Wf[1]=1 d: Wf[0]=0 Jade Alglave WMM Tutorial February 3rd, 2014 14 / 33

  30. No thin air All the models I have studied define a happens-before relation: a: Rf[0]=0 c: Rf[1]=1 rf rf po po b: Wf[1]=1 d: Wf[0]=0 which should be acyclic Jade Alglave WMM Tutorial February 3rd, 2014 14 / 33

  31. Causality (mp) This happens-before relation determines which message passing idioms work as intended: a: Wf[1]=1 c: Rl[1]=1 fr rf po po b: Wl[1]=1 d: Rf[1]=0 Jade Alglave WMM Tutorial February 3rd, 2014 15 / 33

  32. Causality (wrc) This happens-before relation determines which write-to-read causality idioms work as intended: a: Wx=1 b: Rx=1 d: Ry=1 rf po po fr rfe: Rx=0 c: Wy=1 Jade Alglave WMM Tutorial February 3rd, 2014 16 / 33

  33. Propagation (2+2w) Fences constrain the order in which writes to different locations propagate: a: Wx=1 c: Wy=1 co po po co b: Wy=2 d: Wx=2 Jade Alglave WMM Tutorial February 3rd, 2014 17 / 33

  34. Propagation (w+rw+2w) Fences constrain the order in which writes to different locations propagate: a: Wx=2 b: Rx=2 d: Wy=2 rf po po co co c: Wy=1 e: Wx=1 Jade Alglave WMM Tutorial February 3rd, 2014 18 / 33

  35. A real-world excerpt Jade Alglave WMM Tutorial February 3rd, 2014 19 / 33

  36. PostgreSQL developers’ discussions Jade Alglave WMM Tutorial February 3rd, 2014 20 / 33

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