linux-kernel.def 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. // SPDX-License-Identifier: GPL-2.0+
  2. //
  3. // An earlier version of this file appears in the companion webpage for
  4. // "Frightening small children and disconcerting grown-ups: Concurrency
  5. // in the Linux kernel" by Alglave, Maranget, McKenney, Parri, and Stern,
  6. // which is to appear in ASPLOS 2018.
  7. // ONCE
  8. READ_ONCE(X) __load{once}(X)
  9. WRITE_ONCE(X,V) { __store{once}(X,V); }
  10. // Release Acquire and friends
  11. smp_store_release(X,V) { __store{release}(*X,V); }
  12. smp_load_acquire(X) __load{acquire}(*X)
  13. rcu_assign_pointer(X,V) { __store{release}(X,V); }
  14. rcu_dereference(X) __load{once}(X)
  15. // Fences
  16. smp_mb() { __fence{mb} ; }
  17. smp_rmb() { __fence{rmb} ; }
  18. smp_wmb() { __fence{wmb} ; }
  19. smp_mb__before_atomic() { __fence{before-atomic} ; }
  20. smp_mb__after_atomic() { __fence{after-atomic} ; }
  21. smp_mb__after_spinlock() { __fence{after-spinlock} ; }
  22. // Exchange
  23. xchg(X,V) __xchg{mb}(X,V)
  24. xchg_relaxed(X,V) __xchg{once}(X,V)
  25. xchg_release(X,V) __xchg{release}(X,V)
  26. xchg_acquire(X,V) __xchg{acquire}(X,V)
  27. cmpxchg(X,V,W) __cmpxchg{mb}(X,V,W)
  28. cmpxchg_relaxed(X,V,W) __cmpxchg{once}(X,V,W)
  29. cmpxchg_acquire(X,V,W) __cmpxchg{acquire}(X,V,W)
  30. cmpxchg_release(X,V,W) __cmpxchg{release}(X,V,W)
  31. // Spinlocks
  32. spin_lock(X) { __lock(X) ; }
  33. spin_unlock(X) { __unlock(X) ; }
  34. spin_trylock(X) __trylock(X)
  35. // RCU
  36. rcu_read_lock() { __fence{rcu-lock}; }
  37. rcu_read_unlock() { __fence{rcu-unlock};}
  38. synchronize_rcu() { __fence{sync-rcu}; }
  39. synchronize_rcu_expedited() { __fence{sync-rcu}; }
  40. // Atomic
  41. atomic_read(X) READ_ONCE(*X)
  42. atomic_set(X,V) { WRITE_ONCE(*X,V) ; }
  43. atomic_read_acquire(X) smp_load_acquire(X)
  44. atomic_set_release(X,V) { smp_store_release(X,V); }
  45. atomic_add(V,X) { __atomic_op(X,+,V) ; }
  46. atomic_sub(V,X) { __atomic_op(X,-,V) ; }
  47. atomic_inc(X) { __atomic_op(X,+,1) ; }
  48. atomic_dec(X) { __atomic_op(X,-,1) ; }
  49. atomic_add_return(V,X) __atomic_op_return{mb}(X,+,V)
  50. atomic_add_return_relaxed(V,X) __atomic_op_return{once}(X,+,V)
  51. atomic_add_return_acquire(V,X) __atomic_op_return{acquire}(X,+,V)
  52. atomic_add_return_release(V,X) __atomic_op_return{release}(X,+,V)
  53. atomic_fetch_add(V,X) __atomic_fetch_op{mb}(X,+,V)
  54. atomic_fetch_add_relaxed(V,X) __atomic_fetch_op{once}(X,+,V)
  55. atomic_fetch_add_acquire(V,X) __atomic_fetch_op{acquire}(X,+,V)
  56. atomic_fetch_add_release(V,X) __atomic_fetch_op{release}(X,+,V)
  57. atomic_inc_return(X) __atomic_op_return{mb}(X,+,1)
  58. atomic_inc_return_relaxed(X) __atomic_op_return{once}(X,+,1)
  59. atomic_inc_return_acquire(X) __atomic_op_return{acquire}(X,+,1)
  60. atomic_inc_return_release(X) __atomic_op_return{release}(X,+,1)
  61. atomic_fetch_inc(X) __atomic_fetch_op{mb}(X,+,1)
  62. atomic_fetch_inc_relaxed(X) __atomic_fetch_op{once}(X,+,1)
  63. atomic_fetch_inc_acquire(X) __atomic_fetch_op{acquire}(X,+,1)
  64. atomic_fetch_inc_release(X) __atomic_fetch_op{release}(X,+,1)
  65. atomic_sub_return(V,X) __atomic_op_return{mb}(X,-,V)
  66. atomic_sub_return_relaxed(V,X) __atomic_op_return{once}(X,-,V)
  67. atomic_sub_return_acquire(V,X) __atomic_op_return{acquire}(X,-,V)
  68. atomic_sub_return_release(V,X) __atomic_op_return{release}(X,-,V)
  69. atomic_fetch_sub(V,X) __atomic_fetch_op{mb}(X,-,V)
  70. atomic_fetch_sub_relaxed(V,X) __atomic_fetch_op{once}(X,-,V)
  71. atomic_fetch_sub_acquire(V,X) __atomic_fetch_op{acquire}(X,-,V)
  72. atomic_fetch_sub_release(V,X) __atomic_fetch_op{release}(X,-,V)
  73. atomic_dec_return(X) __atomic_op_return{mb}(X,-,1)
  74. atomic_dec_return_relaxed(X) __atomic_op_return{once}(X,-,1)
  75. atomic_dec_return_acquire(X) __atomic_op_return{acquire}(X,-,1)
  76. atomic_dec_return_release(X) __atomic_op_return{release}(X,-,1)
  77. atomic_fetch_dec(X) __atomic_fetch_op{mb}(X,-,1)
  78. atomic_fetch_dec_relaxed(X) __atomic_fetch_op{once}(X,-,1)
  79. atomic_fetch_dec_acquire(X) __atomic_fetch_op{acquire}(X,-,1)
  80. atomic_fetch_dec_release(X) __atomic_fetch_op{release}(X,-,1)
  81. atomic_xchg(X,V) __xchg{mb}(X,V)
  82. atomic_xchg_relaxed(X,V) __xchg{once}(X,V)
  83. atomic_xchg_release(X,V) __xchg{release}(X,V)
  84. atomic_xchg_acquire(X,V) __xchg{acquire}(X,V)
  85. atomic_cmpxchg(X,V,W) __cmpxchg{mb}(X,V,W)
  86. atomic_cmpxchg_relaxed(X,V,W) __cmpxchg{once}(X,V,W)
  87. atomic_cmpxchg_acquire(X,V,W) __cmpxchg{acquire}(X,V,W)
  88. atomic_cmpxchg_release(X,V,W) __cmpxchg{release}(X,V,W)
  89. atomic_sub_and_test(V,X) __atomic_op_return{mb}(X,-,V) == 0
  90. atomic_dec_and_test(X) __atomic_op_return{mb}(X,-,1) == 0
  91. atomic_inc_and_test(X) __atomic_op_return{mb}(X,+,1) == 0
  92. atomic_add_negative(V,X) __atomic_op_return{mb}(X,+,V) < 0