safe_refcount.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /*************************************************************************/
  2. /* safe_refcount.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef SAFE_REFCOUNT_H
  31. #define SAFE_REFCOUNT_H
  32. #include "core/typedefs.h"
  33. #if !defined(NO_THREADS)
  34. #include <atomic>
  35. #include <type_traits>
  36. // Design goals for these classes:
  37. // - No automatic conversions or arithmetic operators,
  38. // to keep explicit the use of atomics everywhere.
  39. // - Using acquire-release semantics, even to set the first value.
  40. // The first value may be set relaxedly in many cases, but adding the distinction
  41. // between relaxed and unrelaxed operation to the interface would make it needlessly
  42. // flexible. There's negligible waste in having release semantics for the initial
  43. // value and, as an important benefit, you can be sure the value is properly synchronized
  44. // even with threads that are already running.
  45. // This is used in very specific areas of the engine where it's critical that these guarantees are held
  46. #define SAFE_NUMERIC_TYPE_PUN_GUARANTEES(m_type) \
  47. static_assert(sizeof(SafeNumeric<m_type>) == sizeof(m_type), ""); \
  48. static_assert(alignof(SafeNumeric<m_type>) == alignof(m_type), ""); \
  49. static_assert(std::is_trivially_destructible<std::atomic<m_type> >::value, "");
  50. #if defined(DEBUG_ENABLED)
  51. void check_lockless_atomics();
  52. #endif
  53. template <class T>
  54. class SafeNumeric {
  55. std::atomic<T> value;
  56. public:
  57. _ALWAYS_INLINE_ void set(T p_value) {
  58. value.store(p_value, std::memory_order_release);
  59. }
  60. _ALWAYS_INLINE_ T get() const {
  61. return value.load(std::memory_order_acquire);
  62. }
  63. _ALWAYS_INLINE_ T increment() {
  64. return value.fetch_add(1, std::memory_order_acq_rel) + 1;
  65. }
  66. // Returns the original value instead of the new one
  67. _ALWAYS_INLINE_ T postincrement() {
  68. return value.fetch_add(1, std::memory_order_acq_rel);
  69. }
  70. _ALWAYS_INLINE_ T decrement() {
  71. return value.fetch_sub(1, std::memory_order_acq_rel) - 1;
  72. }
  73. // Returns the original value instead of the new one
  74. _ALWAYS_INLINE_ T postdecrement() {
  75. return value.fetch_sub(1, std::memory_order_acq_rel);
  76. }
  77. _ALWAYS_INLINE_ T add(T p_value) {
  78. return value.fetch_add(p_value, std::memory_order_acq_rel) + p_value;
  79. }
  80. // Returns the original value instead of the new one
  81. _ALWAYS_INLINE_ T postadd(T p_value) {
  82. return value.fetch_add(p_value, std::memory_order_acq_rel);
  83. }
  84. _ALWAYS_INLINE_ T sub(T p_value) {
  85. return value.fetch_sub(p_value, std::memory_order_acq_rel) - p_value;
  86. }
  87. // Returns the original value instead of the new one
  88. _ALWAYS_INLINE_ T postsub(T p_value) {
  89. return value.fetch_sub(p_value, std::memory_order_acq_rel);
  90. }
  91. _ALWAYS_INLINE_ T exchange_if_greater(T p_value) {
  92. while (true) {
  93. T tmp = value.load(std::memory_order_acquire);
  94. if (tmp >= p_value) {
  95. return tmp; // already greater, or equal
  96. }
  97. if (value.compare_exchange_weak(tmp, p_value, std::memory_order_release)) {
  98. return p_value;
  99. }
  100. }
  101. }
  102. _ALWAYS_INLINE_ T conditional_increment() {
  103. while (true) {
  104. T c = value.load(std::memory_order_acquire);
  105. if (c == 0) {
  106. return 0;
  107. }
  108. if (value.compare_exchange_weak(c, c + 1, std::memory_order_release)) {
  109. return c + 1;
  110. }
  111. }
  112. }
  113. _ALWAYS_INLINE_ explicit SafeNumeric(T p_value = static_cast<T>(0)) {
  114. set(p_value);
  115. }
  116. };
  117. class SafeFlag {
  118. std::atomic_bool flag;
  119. public:
  120. _ALWAYS_INLINE_ bool is_set() const {
  121. return flag.load(std::memory_order_acquire);
  122. }
  123. _ALWAYS_INLINE_ void set() {
  124. flag.store(true, std::memory_order_release);
  125. }
  126. _ALWAYS_INLINE_ void clear() {
  127. flag.store(false, std::memory_order_release);
  128. }
  129. _ALWAYS_INLINE_ void set_to(bool p_value) {
  130. flag.store(p_value, std::memory_order_release);
  131. }
  132. _ALWAYS_INLINE_ explicit SafeFlag(bool p_value = false) {
  133. set_to(p_value);
  134. }
  135. };
  136. class SafeRefCount {
  137. SafeNumeric<uint32_t> count;
  138. public:
  139. _ALWAYS_INLINE_ bool ref() { // true on success
  140. return count.conditional_increment() != 0;
  141. }
  142. _ALWAYS_INLINE_ uint32_t refval() { // none-zero on success
  143. return count.conditional_increment();
  144. }
  145. _ALWAYS_INLINE_ bool unref() { // true if must be disposed of
  146. return count.decrement() == 0;
  147. }
  148. _ALWAYS_INLINE_ uint32_t unrefval() { // 0 if must be disposed of
  149. return count.decrement();
  150. }
  151. _ALWAYS_INLINE_ uint32_t get() const {
  152. return count.get();
  153. }
  154. _ALWAYS_INLINE_ void init(uint32_t p_value = 1) {
  155. count.set(p_value);
  156. }
  157. };
  158. #else
  159. template <class T>
  160. class SafeNumeric {
  161. protected:
  162. T value;
  163. public:
  164. _ALWAYS_INLINE_ void set(T p_value) {
  165. value = p_value;
  166. }
  167. _ALWAYS_INLINE_ T get() const {
  168. return value;
  169. }
  170. _ALWAYS_INLINE_ T increment() {
  171. return ++value;
  172. }
  173. _ALWAYS_INLINE_ T postincrement() {
  174. return value++;
  175. }
  176. _ALWAYS_INLINE_ T decrement() {
  177. return --value;
  178. }
  179. _ALWAYS_INLINE_ T postdecrement() {
  180. return value--;
  181. }
  182. _ALWAYS_INLINE_ T add(T p_value) {
  183. return value += p_value;
  184. }
  185. _ALWAYS_INLINE_ T postadd(T p_value) {
  186. T old = value;
  187. value += p_value;
  188. return old;
  189. }
  190. _ALWAYS_INLINE_ T sub(T p_value) {
  191. return value -= p_value;
  192. }
  193. _ALWAYS_INLINE_ T postsub(T p_value) {
  194. T old = value;
  195. value -= p_value;
  196. return old;
  197. }
  198. _ALWAYS_INLINE_ T exchange_if_greater(T p_value) {
  199. if (value < p_value) {
  200. value = p_value;
  201. }
  202. return value;
  203. }
  204. _ALWAYS_INLINE_ T conditional_increment() {
  205. if (value == 0) {
  206. return 0;
  207. } else {
  208. return ++value;
  209. }
  210. }
  211. _ALWAYS_INLINE_ explicit SafeNumeric<T>(T p_value = static_cast<T>(0)) :
  212. value(p_value) {
  213. }
  214. };
  215. class SafeFlag {
  216. protected:
  217. bool flag;
  218. public:
  219. _ALWAYS_INLINE_ bool is_set() const {
  220. return flag;
  221. }
  222. _ALWAYS_INLINE_ void set() {
  223. flag = true;
  224. }
  225. _ALWAYS_INLINE_ void clear() {
  226. flag = false;
  227. }
  228. _ALWAYS_INLINE_ void set_to(bool p_value) {
  229. flag = p_value;
  230. }
  231. _ALWAYS_INLINE_ explicit SafeFlag(bool p_value = false) :
  232. flag(p_value) {}
  233. };
  234. class SafeRefCount {
  235. uint32_t count;
  236. public:
  237. _ALWAYS_INLINE_ bool ref() { // true on success
  238. if (count != 0) {
  239. ++count;
  240. return true;
  241. } else {
  242. return false;
  243. }
  244. }
  245. _ALWAYS_INLINE_ uint32_t refval() { // none-zero on success
  246. if (count != 0) {
  247. return ++count;
  248. } else {
  249. return 0;
  250. }
  251. }
  252. _ALWAYS_INLINE_ bool unref() { // true if must be disposed of
  253. return --count == 0;
  254. }
  255. _ALWAYS_INLINE_ uint32_t unrefval() { // 0 if must be disposed of
  256. return --count;
  257. }
  258. _ALWAYS_INLINE_ uint32_t get() const {
  259. return count;
  260. }
  261. _ALWAYS_INLINE_ void init(uint32_t p_value = 1) {
  262. count = p_value;
  263. }
  264. SafeRefCount() :
  265. count(0) {}
  266. };
  267. #endif
  268. #endif // SAFE_REFCOUNT_H