linux-kernel.def 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. // SPDX-License-Identifier: GPL-2.0+
  2. //
  3. // An earlier version of this file appeared 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 appeared 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. smp_store_mb(X,V) { __store{ONCE}(X,V); __fence{MB}; }
  16. // Fences
  17. smp_mb() { __fence{MB}; }
  18. smp_rmb() { __fence{rmb}; }
  19. smp_wmb() { __fence{wmb}; }
  20. smp_mb__before_atomic() { __fence{before-atomic}; }
  21. smp_mb__after_atomic() { __fence{after-atomic}; }
  22. smp_mb__after_spinlock() { __fence{after-spinlock}; }
  23. smp_mb__after_unlock_lock() { __fence{after-unlock-lock}; }
  24. smp_mb__after_srcu_read_unlock() { __fence{after-srcu-read-unlock}; }
  25. barrier() { __fence{barrier}; }
  26. // Exchange
  27. xchg(X,V) __xchg{MB}(X,V)
  28. xchg_relaxed(X,V) __xchg{ONCE}(X,V)
  29. xchg_release(X,V) __xchg{RELEASE}(X,V)
  30. xchg_acquire(X,V) __xchg{ACQUIRE}(X,V)
  31. cmpxchg(X,V,W) __cmpxchg{MB}(X,V,W)
  32. cmpxchg_relaxed(X,V,W) __cmpxchg{ONCE}(X,V,W)
  33. cmpxchg_acquire(X,V,W) __cmpxchg{ACQUIRE}(X,V,W)
  34. cmpxchg_release(X,V,W) __cmpxchg{RELEASE}(X,V,W)
  35. // Spinlocks
  36. spin_lock(X) { __lock(X); }
  37. spin_unlock(X) { __unlock(X); }
  38. spin_trylock(X) __trylock(X)
  39. spin_is_locked(X) __islocked(X)
  40. // RCU
  41. rcu_read_lock() { __fence{rcu-lock}; }
  42. rcu_read_unlock() { __fence{rcu-unlock}; }
  43. synchronize_rcu() { __fence{sync-rcu}; }
  44. synchronize_rcu_expedited() { __fence{sync-rcu}; }
  45. // SRCU
  46. srcu_read_lock(X) __load{srcu-lock}(*X)
  47. srcu_read_unlock(X,Y) { __store{srcu-unlock}(*X,Y); }
  48. srcu_down_read(X) __load{srcu-lock}(*X)
  49. srcu_up_read(X,Y) { __store{srcu-unlock}(*X,Y); }
  50. synchronize_srcu(X) { __srcu{sync-srcu}(X); }
  51. synchronize_srcu_expedited(X) { __srcu{sync-srcu}(X); }
  52. // Atomic
  53. atomic_read(X) READ_ONCE(*X)
  54. atomic_set(X,V) { WRITE_ONCE(*X,V); }
  55. atomic_read_acquire(X) smp_load_acquire(X)
  56. atomic_set_release(X,V) { smp_store_release(X,V); }
  57. atomic_add(V,X) { __atomic_op{NORETURN}(X,+,V); }
  58. atomic_sub(V,X) { __atomic_op{NORETURN}(X,-,V); }
  59. atomic_and(V,X) { __atomic_op{NORETURN}(X,&,V); }
  60. atomic_or(V,X) { __atomic_op{NORETURN}(X,|,V); }
  61. atomic_xor(V,X) { __atomic_op{NORETURN}(X,^,V); }
  62. atomic_inc(X) { __atomic_op{NORETURN}(X,+,1); }
  63. atomic_dec(X) { __atomic_op{NORETURN}(X,-,1); }
  64. atomic_andnot(V,X) { __atomic_op{NORETURN}(X,&~,V); }
  65. atomic_add_return(V,X) __atomic_op_return{MB}(X,+,V)
  66. atomic_add_return_relaxed(V,X) __atomic_op_return{ONCE}(X,+,V)
  67. atomic_add_return_acquire(V,X) __atomic_op_return{ACQUIRE}(X,+,V)
  68. atomic_add_return_release(V,X) __atomic_op_return{RELEASE}(X,+,V)
  69. atomic_fetch_add(V,X) __atomic_fetch_op{MB}(X,+,V)
  70. atomic_fetch_add_relaxed(V,X) __atomic_fetch_op{ONCE}(X,+,V)
  71. atomic_fetch_add_acquire(V,X) __atomic_fetch_op{ACQUIRE}(X,+,V)
  72. atomic_fetch_add_release(V,X) __atomic_fetch_op{RELEASE}(X,+,V)
  73. atomic_fetch_and(V,X) __atomic_fetch_op{MB}(X,&,V)
  74. atomic_fetch_and_relaxed(V,X) __atomic_fetch_op{ONCE}(X,&,V)
  75. atomic_fetch_and_acquire(V,X) __atomic_fetch_op{ACQUIRE}(X,&,V)
  76. atomic_fetch_and_release(V,X) __atomic_fetch_op{RELEASE}(X,&,V)
  77. atomic_fetch_or(V,X) __atomic_fetch_op{MB}(X,|,V)
  78. atomic_fetch_or_relaxed(V,X) __atomic_fetch_op{ONCE}(X,|,V)
  79. atomic_fetch_or_acquire(V,X) __atomic_fetch_op{ACQUIRE}(X,|,V)
  80. atomic_fetch_or_release(V,X) __atomic_fetch_op{RELEASE}(X,|,V)
  81. atomic_fetch_xor(V,X) __atomic_fetch_op{MB}(X,^,V)
  82. atomic_fetch_xor_relaxed(V,X) __atomic_fetch_op{ONCE}(X,^,V)
  83. atomic_fetch_xor_acquire(V,X) __atomic_fetch_op{ACQUIRE}(X,^,V)
  84. atomic_fetch_xor_release(V,X) __atomic_fetch_op{RELEASE}(X,^,V)
  85. atomic_inc_return(X) __atomic_op_return{MB}(X,+,1)
  86. atomic_inc_return_relaxed(X) __atomic_op_return{ONCE}(X,+,1)
  87. atomic_inc_return_acquire(X) __atomic_op_return{ACQUIRE}(X,+,1)
  88. atomic_inc_return_release(X) __atomic_op_return{RELEASE}(X,+,1)
  89. atomic_fetch_inc(X) __atomic_fetch_op{MB}(X,+,1)
  90. atomic_fetch_inc_relaxed(X) __atomic_fetch_op{ONCE}(X,+,1)
  91. atomic_fetch_inc_acquire(X) __atomic_fetch_op{ACQUIRE}(X,+,1)
  92. atomic_fetch_inc_release(X) __atomic_fetch_op{RELEASE}(X,+,1)
  93. atomic_sub_return(V,X) __atomic_op_return{MB}(X,-,V)
  94. atomic_sub_return_relaxed(V,X) __atomic_op_return{ONCE}(X,-,V)
  95. atomic_sub_return_acquire(V,X) __atomic_op_return{ACQUIRE}(X,-,V)
  96. atomic_sub_return_release(V,X) __atomic_op_return{RELEASE}(X,-,V)
  97. atomic_fetch_sub(V,X) __atomic_fetch_op{MB}(X,-,V)
  98. atomic_fetch_sub_relaxed(V,X) __atomic_fetch_op{ONCE}(X,-,V)
  99. atomic_fetch_sub_acquire(V,X) __atomic_fetch_op{ACQUIRE}(X,-,V)
  100. atomic_fetch_sub_release(V,X) __atomic_fetch_op{RELEASE}(X,-,V)
  101. atomic_dec_return(X) __atomic_op_return{MB}(X,-,1)
  102. atomic_dec_return_relaxed(X) __atomic_op_return{ONCE}(X,-,1)
  103. atomic_dec_return_acquire(X) __atomic_op_return{ACQUIRE}(X,-,1)
  104. atomic_dec_return_release(X) __atomic_op_return{RELEASE}(X,-,1)
  105. atomic_fetch_dec(X) __atomic_fetch_op{MB}(X,-,1)
  106. atomic_fetch_dec_relaxed(X) __atomic_fetch_op{ONCE}(X,-,1)
  107. atomic_fetch_dec_acquire(X) __atomic_fetch_op{ACQUIRE}(X,-,1)
  108. atomic_fetch_dec_release(X) __atomic_fetch_op{RELEASE}(X,-,1)
  109. atomic_xchg(X,V) __xchg{MB}(X,V)
  110. atomic_xchg_relaxed(X,V) __xchg{ONCE}(X,V)
  111. atomic_xchg_release(X,V) __xchg{RELEASE}(X,V)
  112. atomic_xchg_acquire(X,V) __xchg{ACQUIRE}(X,V)
  113. atomic_cmpxchg(X,V,W) __cmpxchg{MB}(X,V,W)
  114. atomic_cmpxchg_relaxed(X,V,W) __cmpxchg{ONCE}(X,V,W)
  115. atomic_cmpxchg_acquire(X,V,W) __cmpxchg{ACQUIRE}(X,V,W)
  116. atomic_cmpxchg_release(X,V,W) __cmpxchg{RELEASE}(X,V,W)
  117. atomic_sub_and_test(V,X) __atomic_op_return{MB}(X,-,V) == 0
  118. atomic_dec_and_test(X) __atomic_op_return{MB}(X,-,1) == 0
  119. atomic_inc_and_test(X) __atomic_op_return{MB}(X,+,1) == 0
  120. atomic_add_negative(V,X) __atomic_op_return{MB}(X,+,V) < 0
  121. atomic_add_negative_relaxed(V,X) __atomic_op_return{ONCE}(X,+,V) < 0
  122. atomic_add_negative_acquire(V,X) __atomic_op_return{ACQUIRE}(X,+,V) < 0
  123. atomic_add_negative_release(V,X) __atomic_op_return{RELEASE}(X,+,V) < 0
  124. atomic_fetch_andnot(V,X) __atomic_fetch_op{MB}(X,&~,V)
  125. atomic_fetch_andnot_acquire(V,X) __atomic_fetch_op{ACQUIRE}(X,&~,V)
  126. atomic_fetch_andnot_release(V,X) __atomic_fetch_op{RELEASE}(X,&~,V)
  127. atomic_fetch_andnot_relaxed(V,X) __atomic_fetch_op{ONCE}(X,&~,V)
  128. atomic_add_unless(X,V,W) __atomic_add_unless{MB}(X,V,W)