PMDK C++ bindings  1.9.1
This is the C++ bindings documentation for PMDK's libpmemobj.
atomic_backoff.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2019-2020, Intel Corporation
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in
13  * the documentation and/or other materials provided with the
14  * distribution.
15  *
16  * * Neither the name of the copyright holder nor the names of its
17  * contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
42 #ifndef LIBPMEMOBJ_ATOMIC_BACKOFF_HPP
43 #define LIBPMEMOBJ_ATOMIC_BACKOFF_HPP
44 
45 #include <thread>
46 
47 #if _MSC_VER
48 #include <intrin.h>
49 #include <windows.h>
50 #endif
51 
52 namespace pmem
53 {
54 namespace detail
55 {
56 
57 class atomic_backoff {
63  static const int32_t LOOPS_BEFORE_YIELD = 16;
64  int32_t count;
65 
66  static inline void
67  __pause(int32_t delay)
68  {
69  for (; delay > 0; --delay) {
70 #if _MSC_VER
71  YieldProcessor();
72 #elif __GNUC__ && (__i386__ || __x86_64__)
73  // Only i386 and x86-64 have pause instruction
74  __builtin_ia32_pause();
75 #endif
76  }
77  }
78 
79 public:
83  atomic_backoff(const atomic_backoff &) = delete;
87  atomic_backoff &operator=(const atomic_backoff &) = delete;
88 
90  /* In many cases, an object of this type is initialized eagerly on hot
91  * path, as in for(atomic_backoff b; ; b.pause()) {...} For this reason,
92  * the construction cost must be very small! */
93  atomic_backoff() : count(1)
94  {
95  }
96 
100  atomic_backoff(bool) : count(1)
101  {
102  pause();
103  }
104 
108  void
109  pause()
110  {
111  if (count <= LOOPS_BEFORE_YIELD) {
112  __pause(count);
113  /* Pause twice as long the next time. */
114  count *= 2;
115  } else {
116  /* Pause is so long that we might as well yield CPU to
117  * scheduler. */
118  std::this_thread::yield();
119  }
120  }
121 
125  bool
126  bounded_pause()
127  {
128  __pause(count);
129  if (count < LOOPS_BEFORE_YIELD) {
130  /* Pause twice as long the next time. */
131  count *= 2;
132  return true;
133  } else {
134  return false;
135  }
136  }
137 
138  void
139  reset()
140  {
141  count = 1;
142  }
143 }; /* class atomic_backoff */
144 
145 } /* namespace detail */
146 
147 } /* namespace pmem */
148 
149 #endif
pmem
Persistent memory namespace.
Definition: allocation_flag.hpp:44