blob: b984bbda01a5cb333cacc60f10813eeff98450ad [file] [log] [blame]
Paul E. McKenney1c27b642018-01-18 19:58:55 -08001// SPDX-License-Identifier: GPL-2.0+
2(*
3 * Copyright (C) 2015 Jade Alglave <j.alglave@ucl.ac.uk>,
4 * Copyright (C) 2016 Luc Maranget <luc.maranget@inria.fr> for Inria
5 * Copyright (C) 2017 Alan Stern <stern@rowland.harvard.edu>,
6 * Andrea Parri <parri.andrea@gmail.com>
7 *
8 * An earlier version of this file appears in the companion webpage for
9 * "Frightening small children and disconcerting grown-ups: Concurrency
10 * in the Linux kernel" by Alglave, Maranget, McKenney, Parri, and Stern,
11 * which is to appear in ASPLOS 2018.
12 *)
13
Andrea Parri48d44d42018-02-20 15:25:01 -080014"Linux-kernel memory consistency model"
Paul E. McKenney1c27b642018-01-18 19:58:55 -080015
16enum Accesses = 'once (*READ_ONCE,WRITE_ONCE,ACCESS_ONCE*) ||
17 'release (*smp_store_release*) ||
18 'acquire (*smp_load_acquire*) ||
19 'noreturn (* R of non-return RMW *)
20instructions R[{'once,'acquire,'noreturn}]
21instructions W[{'once,'release}]
22instructions RMW[{'once,'acquire,'release}]
23
24enum Barriers = 'wmb (*smp_wmb*) ||
25 'rmb (*smp_rmb*) ||
26 'mb (*smp_mb*) ||
27 'rb_dep (*smp_read_barrier_depends*) ||
28 'rcu-lock (*rcu_read_lock*) ||
29 'rcu-unlock (*rcu_read_unlock*) ||
30 'sync-rcu (*synchronize_rcu*) ||
31 'before_atomic (*smp_mb__before_atomic*) ||
32 'after_atomic (*smp_mb__after_atomic*) ||
33 'after_spinlock (*smp_mb__after_spinlock*)
34instructions F[Barriers]
35
36(* Compute matching pairs of nested Rcu-lock and Rcu-unlock *)
37let matched = let rec
38 unmatched-locks = Rcu-lock \ domain(matched)
39 and unmatched-unlocks = Rcu-unlock \ range(matched)
40 and unmatched = unmatched-locks | unmatched-unlocks
41 and unmatched-po = [unmatched] ; po ; [unmatched]
42 and unmatched-locks-to-unlocks =
43 [unmatched-locks] ; po ; [unmatched-unlocks]
44 and matched = matched | (unmatched-locks-to-unlocks \
45 (unmatched-po ; unmatched-po))
46 in matched
47
48(* Validate nesting *)
49flag ~empty Rcu-lock \ domain(matched) as unbalanced-rcu-locking
50flag ~empty Rcu-unlock \ range(matched) as unbalanced-rcu-locking
51
52(* Outermost level of nesting only *)
53let crit = matched \ (po^-1 ; matched ; po^-1)