PMDK C++ bindings  1.8.1
This is the C++ bindings documentation for PMDK's libpmemobj.
atomic_backoff.hpp
1 /*
2  * Copyright 2019, 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 
38 #ifndef LIBPMEMOBJ_ATOMIC_BACKOFF_HPP
39 #define LIBPMEMOBJ_ATOMIC_BACKOFF_HPP
40 
41 #include <thread>
42 
43 #if _MSC_VER
44 #include <intrin.h>
45 #include <windows.h>
46 #endif
47 
48 namespace pmem
49 {
50 namespace detail
51 {
52 
53 class atomic_backoff {
59  static const int32_t LOOPS_BEFORE_YIELD = 16;
60  int32_t count;
61 
62  static inline void
63  __pause(int32_t delay)
64  {
65  for (; delay > 0; --delay) {
66 #if _MSC_VER
67  YieldProcessor();
68 #elif __GNUC__ && (__i386__ || __x86_64__)
69  // Only i386 and x86-64 have pause instruction
70  __builtin_ia32_pause();
71 #endif
72  }
73  }
74 
75 public:
79  atomic_backoff(const atomic_backoff &) = delete;
83  atomic_backoff &operator=(const atomic_backoff &) = delete;
84 
86  /* In many cases, an object of this type is initialized eagerly on hot
87  * path, as in for(atomic_backoff b; ; b.pause()) {...} For this reason,
88  * the construction cost must be very small! */
89  atomic_backoff() : count(1)
90  {
91  }
92 
96  atomic_backoff(bool) : count(1)
97  {
98  pause();
99  }
100 
104  void
105  pause()
106  {
107  if (count <= LOOPS_BEFORE_YIELD) {
108  __pause(count);
109  /* Pause twice as long the next time. */
110  count *= 2;
111  } else {
112  /* Pause is so long that we might as well yield CPU to
113  * scheduler. */
114  std::this_thread::yield();
115  }
116  }
117 
121  bool
122  bounded_pause()
123  {
124  __pause(count);
125  if (count < LOOPS_BEFORE_YIELD) {
126  /* Pause twice as long the next time. */
127  count *= 2;
128  return true;
129  } else {
130  return false;
131  }
132  }
133 
134  void
135  reset()
136  {
137  count = 1;
138  }
139 }; /* class atomic_backoff */
140 
141 } /* namespace detail */
142 
143 } /* namespace pmem */
144 
145 #endif
pmem
A persistent version of concurrent hash map implementation Ref: https://arxiv.org/abs/1509....
Definition: allocation_flag.hpp:44