queuing_rw_mutex.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_queuing_rw_mutex_H
  24. #define __TBB_queuing_rw_mutex_H
  25. #include "tbb_config.h"
  26. #if !TBB_USE_EXCEPTIONS && _MSC_VER
  27. // Suppress "C++ exception handler used, but unwind semantics are not enabled" warning in STL headers
  28. #pragma warning (push)
  29. #pragma warning (disable: 4530)
  30. #endif
  31. #include <cstring>
  32. #if !TBB_USE_EXCEPTIONS && _MSC_VER
  33. #pragma warning (pop)
  34. #endif
  35. #include "atomic.h"
  36. #include "tbb_profiling.h"
  37. namespace tbb {
  38. //! Queuing reader-writer mutex with local-only spinning.
  39. /** Adapted from Krieger, Stumm, et al. pseudocode at
  40. http://www.eecg.toronto.edu/parallel/pubs_abs.html#Krieger_etal_ICPP93
  41. @ingroup synchronization */
  42. class queuing_rw_mutex {
  43. public:
  44. //! Construct unacquired mutex.
  45. queuing_rw_mutex() {
  46. q_tail = NULL;
  47. #if TBB_USE_THREADING_TOOLS
  48. internal_construct();
  49. #endif
  50. }
  51. //! Destructor asserts if the mutex is acquired, i.e. q_tail is non-NULL
  52. ~queuing_rw_mutex() {
  53. #if TBB_USE_ASSERT
  54. __TBB_ASSERT( !q_tail, "destruction of an acquired mutex");
  55. #endif
  56. }
  57. //! The scoped locking pattern
  58. /** It helps to avoid the common problem of forgetting to release lock.
  59. It also nicely provides the "node" for queuing locks. */
  60. class scoped_lock: internal::no_copy {
  61. //! Initialize fields to mean "no lock held".
  62. void initialize() {
  63. my_mutex = NULL;
  64. #if TBB_USE_ASSERT
  65. my_state = 0xFF; // Set to invalid state
  66. internal::poison_pointer(my_next);
  67. internal::poison_pointer(my_prev);
  68. #endif /* TBB_USE_ASSERT */
  69. }
  70. public:
  71. //! Construct lock that has not acquired a mutex.
  72. /** Equivalent to zero-initialization of *this. */
  73. scoped_lock() {initialize();}
  74. //! Acquire lock on given mutex.
  75. scoped_lock( queuing_rw_mutex& m, bool write=true ) {
  76. initialize();
  77. acquire(m,write);
  78. }
  79. //! Release lock (if lock is held).
  80. ~scoped_lock() {
  81. if( my_mutex ) release();
  82. }
  83. //! Acquire lock on given mutex.
  84. void acquire( queuing_rw_mutex& m, bool write=true );
  85. //! Acquire lock on given mutex if free (i.e. non-blocking)
  86. bool try_acquire( queuing_rw_mutex& m, bool write=true );
  87. //! Release lock.
  88. void release();
  89. //! Upgrade reader to become a writer.
  90. /** Returns whether the upgrade happened without releasing and re-acquiring the lock */
  91. bool upgrade_to_writer();
  92. //! Downgrade writer to become a reader.
  93. bool downgrade_to_reader();
  94. private:
  95. //! The pointer to the mutex owned, or NULL if not holding a mutex.
  96. queuing_rw_mutex* my_mutex;
  97. //! The pointer to the previous and next competitors for a mutex
  98. scoped_lock *__TBB_atomic my_prev, *__TBB_atomic my_next;
  99. typedef unsigned char state_t;
  100. //! State of the request: reader, writer, active reader, other service states
  101. atomic<state_t> my_state;
  102. //! The local spin-wait variable
  103. /** Corresponds to "spin" in the pseudocode but inverted for the sake of zero-initialization */
  104. unsigned char __TBB_atomic my_going;
  105. //! A tiny internal lock
  106. unsigned char my_internal_lock;
  107. //! Acquire the internal lock
  108. void acquire_internal_lock();
  109. //! Try to acquire the internal lock
  110. /** Returns true if lock was successfully acquired. */
  111. bool try_acquire_internal_lock();
  112. //! Release the internal lock
  113. void release_internal_lock();
  114. //! Wait for internal lock to be released
  115. void wait_for_release_of_internal_lock();
  116. //! A helper function
  117. void unblock_or_wait_on_internal_lock( uintptr_t );
  118. };
  119. void __TBB_EXPORTED_METHOD internal_construct();
  120. // Mutex traits
  121. static const bool is_rw_mutex = true;
  122. static const bool is_recursive_mutex = false;
  123. static const bool is_fair_mutex = true;
  124. private:
  125. //! The last competitor requesting the lock
  126. atomic<scoped_lock*> q_tail;
  127. };
  128. __TBB_DEFINE_PROFILING_SET_NAME(queuing_rw_mutex)
  129. } // namespace tbb
  130. #endif /* __TBB_queuing_rw_mutex_H */