spin_rw_mutex.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. Copyright 2005-2013 Intel Corporation. All Rights Reserved.
  3. This file is part of Threading Building Blocks.
  4. Threading Building Blocks is free software; you can redistribute it
  5. and/or modify it under the terms of the GNU General Public License
  6. version 2 as published by the Free Software Foundation.
  7. Threading Building Blocks is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  9. of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with Threading Building Blocks; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  14. As a special exception, you may use this file as part of a free software
  15. library without restriction. Specifically, if other files instantiate
  16. templates or use macros or inline functions from this file, or you compile
  17. this file and link it with other files to produce an executable, this
  18. file does not by itself cause the resulting executable to be covered by
  19. the GNU General Public License. This exception does not however
  20. invalidate any other reasons why the executable file might be covered by
  21. the GNU General Public License.
  22. */
  23. #ifndef __TBB_spin_rw_mutex_H
  24. #define __TBB_spin_rw_mutex_H
  25. #include "tbb_stddef.h"
  26. #include "tbb_machine.h"
  27. #include "tbb_profiling.h"
  28. namespace tbb {
  29. class spin_rw_mutex_v3;
  30. typedef spin_rw_mutex_v3 spin_rw_mutex;
  31. //! Fast, unfair, spinning reader-writer lock with backoff and writer-preference
  32. /** @ingroup synchronization */
  33. class spin_rw_mutex_v3 {
  34. //! @cond INTERNAL
  35. //! Internal acquire write lock.
  36. bool __TBB_EXPORTED_METHOD internal_acquire_writer();
  37. //! Out of line code for releasing a write lock.
  38. /** This code has debug checking and instrumentation for Intel(R) Thread Checker and Intel(R) Thread Profiler. */
  39. void __TBB_EXPORTED_METHOD internal_release_writer();
  40. //! Internal acquire read lock.
  41. void __TBB_EXPORTED_METHOD internal_acquire_reader();
  42. //! Internal upgrade reader to become a writer.
  43. bool __TBB_EXPORTED_METHOD internal_upgrade();
  44. //! Out of line code for downgrading a writer to a reader.
  45. /** This code has debug checking and instrumentation for Intel(R) Thread Checker and Intel(R) Thread Profiler. */
  46. void __TBB_EXPORTED_METHOD internal_downgrade();
  47. //! Internal release read lock.
  48. void __TBB_EXPORTED_METHOD internal_release_reader();
  49. //! Internal try_acquire write lock.
  50. bool __TBB_EXPORTED_METHOD internal_try_acquire_writer();
  51. //! Internal try_acquire read lock.
  52. bool __TBB_EXPORTED_METHOD internal_try_acquire_reader();
  53. //! @endcond
  54. public:
  55. //! Construct unacquired mutex.
  56. spin_rw_mutex_v3() : state(0) {
  57. #if TBB_USE_THREADING_TOOLS
  58. internal_construct();
  59. #endif
  60. }
  61. #if TBB_USE_ASSERT
  62. //! Destructor asserts if the mutex is acquired, i.e. state is zero.
  63. ~spin_rw_mutex_v3() {
  64. __TBB_ASSERT( !state, "destruction of an acquired mutex");
  65. };
  66. #endif /* TBB_USE_ASSERT */
  67. //! The scoped locking pattern
  68. /** It helps to avoid the common problem of forgetting to release lock.
  69. It also nicely provides the "node" for queuing locks. */
  70. class scoped_lock : internal::no_copy {
  71. public:
  72. //! Construct lock that has not acquired a mutex.
  73. /** Equivalent to zero-initialization of *this. */
  74. scoped_lock() : mutex(NULL), is_writer(false) {}
  75. //! Acquire lock on given mutex.
  76. scoped_lock( spin_rw_mutex& m, bool write = true ) : mutex(NULL) {
  77. acquire(m, write);
  78. }
  79. //! Release lock (if lock is held).
  80. ~scoped_lock() {
  81. if( mutex ) release();
  82. }
  83. //! Acquire lock on given mutex.
  84. void acquire( spin_rw_mutex& m, bool write = true ) {
  85. __TBB_ASSERT( !mutex, "holding mutex already" );
  86. is_writer = write;
  87. mutex = &m;
  88. if( write ) mutex->internal_acquire_writer();
  89. else mutex->internal_acquire_reader();
  90. }
  91. //! Upgrade reader to become a writer.
  92. /** Returns whether the upgrade happened without releasing and re-acquiring the lock */
  93. bool upgrade_to_writer() {
  94. __TBB_ASSERT( mutex, "lock is not acquired" );
  95. __TBB_ASSERT( !is_writer, "not a reader" );
  96. is_writer = true;
  97. return mutex->internal_upgrade();
  98. }
  99. //! Release lock.
  100. void release() {
  101. __TBB_ASSERT( mutex, "lock is not acquired" );
  102. spin_rw_mutex *m = mutex;
  103. mutex = NULL;
  104. #if TBB_USE_THREADING_TOOLS||TBB_USE_ASSERT
  105. if( is_writer ) m->internal_release_writer();
  106. else m->internal_release_reader();
  107. #else
  108. if( is_writer ) __TBB_AtomicAND( &m->state, READERS );
  109. else __TBB_FetchAndAddWrelease( &m->state, -(intptr_t)ONE_READER);
  110. #endif /* TBB_USE_THREADING_TOOLS||TBB_USE_ASSERT */
  111. }
  112. //! Downgrade writer to become a reader.
  113. bool downgrade_to_reader() {
  114. __TBB_ASSERT( mutex, "lock is not acquired" );
  115. __TBB_ASSERT( is_writer, "not a writer" );
  116. #if TBB_USE_THREADING_TOOLS||TBB_USE_ASSERT
  117. mutex->internal_downgrade();
  118. #else
  119. __TBB_FetchAndAddW( &mutex->state, ((intptr_t)ONE_READER-WRITER));
  120. #endif /* TBB_USE_THREADING_TOOLS||TBB_USE_ASSERT */
  121. is_writer = false;
  122. return true;
  123. }
  124. //! Try acquire lock on given mutex.
  125. bool try_acquire( spin_rw_mutex& m, bool write = true ) {
  126. __TBB_ASSERT( !mutex, "holding mutex already" );
  127. bool result;
  128. is_writer = write;
  129. result = write? m.internal_try_acquire_writer()
  130. : m.internal_try_acquire_reader();
  131. if( result )
  132. mutex = &m;
  133. return result;
  134. }
  135. protected:
  136. //! The pointer to the current mutex that is held, or NULL if no mutex is held.
  137. spin_rw_mutex* mutex;
  138. //! If mutex!=NULL, then is_writer is true if holding a writer lock, false if holding a reader lock.
  139. /** Not defined if not holding a lock. */
  140. bool is_writer;
  141. };
  142. // Mutex traits
  143. static const bool is_rw_mutex = true;
  144. static const bool is_recursive_mutex = false;
  145. static const bool is_fair_mutex = false;
  146. // ISO C++0x compatibility methods
  147. //! Acquire writer lock
  148. void lock() {internal_acquire_writer();}
  149. //! Try acquiring writer lock (non-blocking)
  150. /** Return true if lock acquired; false otherwise. */
  151. bool try_lock() {return internal_try_acquire_writer();}
  152. //! Release lock
  153. void unlock() {
  154. #if TBB_USE_THREADING_TOOLS||TBB_USE_ASSERT
  155. if( state&WRITER ) internal_release_writer();
  156. else internal_release_reader();
  157. #else
  158. if( state&WRITER ) __TBB_AtomicAND( &state, READERS );
  159. else __TBB_FetchAndAddWrelease( &state, -(intptr_t)ONE_READER);
  160. #endif /* TBB_USE_THREADING_TOOLS||TBB_USE_ASSERT */
  161. }
  162. // Methods for reader locks that resemble ISO C++0x compatibility methods.
  163. //! Acquire reader lock
  164. void lock_read() {internal_acquire_reader();}
  165. //! Try acquiring reader lock (non-blocking)
  166. /** Return true if reader lock acquired; false otherwise. */
  167. bool try_lock_read() {return internal_try_acquire_reader();}
  168. private:
  169. typedef intptr_t state_t;
  170. static const state_t WRITER = 1;
  171. static const state_t WRITER_PENDING = 2;
  172. static const state_t READERS = ~(WRITER | WRITER_PENDING);
  173. static const state_t ONE_READER = 4;
  174. static const state_t BUSY = WRITER | READERS;
  175. //! State of lock
  176. /** Bit 0 = writer is holding lock
  177. Bit 1 = request by a writer to acquire lock (hint to readers to wait)
  178. Bit 2..N = number of readers holding lock */
  179. state_t state;
  180. void __TBB_EXPORTED_METHOD internal_construct();
  181. };
  182. __TBB_DEFINE_PROFILING_SET_NAME(spin_rw_mutex)
  183. } // namespace tbb
  184. #endif /* __TBB_spin_rw_mutex_H */