Commit d1a84ab1 authored by Alan Stern's avatar Alan Stern Committed by Paul E. McKenney

tools/memory-model: Add definitions of plain and marked accesses

This patch adds definitions for marked and plain accesses to the
Linux-Kernel Memory Model.  It also modifies the definitions of the
existing parts of the model (including the cumul-fence, prop, hb, pb,
and rb relations) so as to make them apply only to marked accesses.
Signed-off-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Reviewed-by: default avatarAndrea Parri <andrea.parri@amarulasolutions.com>
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.ibm.com>
parent 4494dd58
...@@ -76,3 +76,8 @@ flag ~empty rcu-rscs & (po ; [Sync-srcu] ; po) as invalid-sleep ...@@ -76,3 +76,8 @@ flag ~empty rcu-rscs & (po ; [Sync-srcu] ; po) as invalid-sleep
(* Validate SRCU dynamic match *) (* Validate SRCU dynamic match *)
flag ~empty different-values(srcu-rscs) as srcu-bad-nesting flag ~empty different-values(srcu-rscs) as srcu-bad-nesting
(* Compute marked and plain memory accesses *)
let Marked = (~M) | IW | Once | Release | Acquire | domain(rmw) | range(rmw) |
LKR | LKW | UL | LF | RL | RU
let Plain = M \ Marked
...@@ -65,19 +65,21 @@ let dep = addr | data ...@@ -65,19 +65,21 @@ let dep = addr | data
let rwdep = (dep | ctrl) ; [W] let rwdep = (dep | ctrl) ; [W]
let overwrite = co | fr let overwrite = co | fr
let to-w = rwdep | (overwrite & int) let to-w = rwdep | (overwrite & int)
let to-r = addr | (dep ; rfi) let to-r = addr | (dep ; [Marked] ; rfi)
let ppo = to-r | to-w | fence | (po-unlock-rf-lock-po & int) let ppo = to-r | to-w | fence | (po-unlock-rf-lock-po & int)
(* Propagation: Ordering from release operations and strong fences. *) (* Propagation: Ordering from release operations and strong fences. *)
let A-cumul(r) = rfe? ; r let A-cumul(r) = (rfe ; [Marked])? ; r
let cumul-fence = A-cumul(strong-fence | po-rel) | wmb | po-unlock-rf-lock-po let cumul-fence = [Marked] ; (A-cumul(strong-fence | po-rel) | wmb |
let prop = (overwrite & ext)? ; cumul-fence* ; rfe? po-unlock-rf-lock-po) ; [Marked]
let prop = [Marked] ; (overwrite & ext)? ; cumul-fence* ;
[Marked] ; rfe? ; [Marked]
(* (*
* Happens Before: Ordering from the passage of time. * Happens Before: Ordering from the passage of time.
* No fences needed here for prop because relation confined to one process. * No fences needed here for prop because relation confined to one process.
*) *)
let hb = ppo | rfe | ((prop \ id) & int) let hb = [Marked] ; (ppo | rfe | ((prop \ id) & int)) ; [Marked]
acyclic hb as happens-before acyclic hb as happens-before
(****************************************) (****************************************)
...@@ -85,7 +87,7 @@ acyclic hb as happens-before ...@@ -85,7 +87,7 @@ acyclic hb as happens-before
(****************************************) (****************************************)
(* Propagation: Each non-rf link needs a strong fence. *) (* Propagation: Each non-rf link needs a strong fence. *)
let pb = prop ; strong-fence ; hb* let pb = prop ; strong-fence ; hb* ; [Marked]
acyclic pb as propagation acyclic pb as propagation
(*******) (*******)
...@@ -133,7 +135,7 @@ let rec rcu-fence = rcu-gp | srcu-gp | ...@@ -133,7 +135,7 @@ let rec rcu-fence = rcu-gp | srcu-gp |
(rcu-fence ; rcu-link ; rcu-fence) (rcu-fence ; rcu-link ; rcu-fence)
(* rb orders instructions just as pb does *) (* rb orders instructions just as pb does *)
let rb = prop ; po ; rcu-fence ; po? ; hb* ; pb* let rb = prop ; po ; rcu-fence ; po? ; hb* ; pb* ; [Marked]
irreflexive rb as rcu irreflexive rb as rcu
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment