abseil-cpp/absl/numeric/internal/bits.h
Go to the documentation of this file.
1 // Copyright 2020 The Abseil Authors
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // https://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef ABSL_NUMERIC_INTERNAL_BITS_H_
16 #define ABSL_NUMERIC_INTERNAL_BITS_H_
17 
18 #include <cstdint>
19 #include <limits>
20 #include <type_traits>
21 
22 // Clang on Windows has __builtin_clzll; otherwise we need to use the
23 // windows intrinsic functions.
24 #if defined(_MSC_VER) && !defined(__clang__)
25 #include <intrin.h>
26 #endif
27 
28 #include "absl/base/attributes.h"
29 #include "absl/base/config.h"
30 
31 #if defined(__GNUC__) && !defined(__clang__)
32 // GCC
33 #define ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(x) 1
34 #else
35 #define ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(x) ABSL_HAVE_BUILTIN(x)
36 #endif
37 
38 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_popcountl) && \
39  ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_popcountll)
40 #define ABSL_INTERNAL_CONSTEXPR_POPCOUNT constexpr
41 #define ABSL_INTERNAL_HAS_CONSTEXPR_POPCOUNT 1
42 #else
43 #define ABSL_INTERNAL_CONSTEXPR_POPCOUNT
44 #define ABSL_INTERNAL_HAS_CONSTEXPR_POPCOUNT 0
45 #endif
46 
47 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_clz) && \
48  ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_clzll)
49 #define ABSL_INTERNAL_CONSTEXPR_CLZ constexpr
50 #define ABSL_INTERNAL_HAS_CONSTEXPR_CLZ 1
51 #else
52 #define ABSL_INTERNAL_CONSTEXPR_CLZ
53 #define ABSL_INTERNAL_HAS_CONSTEXPR_CLZ 0
54 #endif
55 
56 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_ctz) && \
57  ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_ctzll)
58 #define ABSL_INTERNAL_CONSTEXPR_CTZ constexpr
59 #define ABSL_INTERNAL_HAS_CONSTEXPR_CTZ 1
60 #else
61 #define ABSL_INTERNAL_CONSTEXPR_CTZ
62 #define ABSL_INTERNAL_HAS_CONSTEXPR_CTZ 0
63 #endif
64 
65 namespace absl {
67 namespace numeric_internal {
68 
69 constexpr bool IsPowerOf2(unsigned int x) noexcept {
70  return x != 0 && (x & (x - 1)) == 0;
71 }
72 
73 template <class T>
75  T x, int s) noexcept {
76  static_assert(std::is_unsigned<T>::value, "T must be unsigned");
77  static_assert(IsPowerOf2(std::numeric_limits<T>::digits),
78  "T must have a power-of-2 size");
79 
80  return static_cast<T>(x >> (s & (std::numeric_limits<T>::digits - 1))) |
81  static_cast<T>(x << ((-s) & (std::numeric_limits<T>::digits - 1)));
82 }
83 
84 template <class T>
86  T x, int s) noexcept {
87  static_assert(std::is_unsigned<T>::value, "T must be unsigned");
88  static_assert(IsPowerOf2(std::numeric_limits<T>::digits),
89  "T must have a power-of-2 size");
90 
91  return static_cast<T>(x << (s & (std::numeric_limits<T>::digits - 1))) |
92  static_cast<T>(x >> ((-s) & (std::numeric_limits<T>::digits - 1)));
93 }
94 
96 Popcount32(uint32_t x) noexcept {
97 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_popcount)
98  static_assert(sizeof(unsigned int) == sizeof(x),
99  "__builtin_popcount does not take 32-bit arg");
100  return __builtin_popcount(x);
101 #else
102  x -= ((x >> 1) & 0x55555555);
103  x = ((x >> 2) & 0x33333333) + (x & 0x33333333);
104  return static_cast<int>((((x + (x >> 4)) & 0xF0F0F0F) * 0x1010101) >> 24);
105 #endif
106 }
107 
109 Popcount64(uint64_t x) noexcept {
110 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_popcountll)
111  static_assert(sizeof(unsigned long long) == sizeof(x), // NOLINT(runtime/int)
112  "__builtin_popcount does not take 64-bit arg");
113  return __builtin_popcountll(x);
114 #else
115  x -= (x >> 1) & 0x5555555555555555ULL;
116  x = ((x >> 2) & 0x3333333333333333ULL) + (x & 0x3333333333333333ULL);
117  return static_cast<int>(
118  (((x + (x >> 4)) & 0xF0F0F0F0F0F0F0FULL) * 0x101010101010101ULL) >> 56);
119 #endif
120 }
121 
122 template <class T>
124 Popcount(T x) noexcept {
125  static_assert(std::is_unsigned<T>::value, "T must be unsigned");
126  static_assert(IsPowerOf2(std::numeric_limits<T>::digits),
127  "T must have a power-of-2 size");
128  static_assert(sizeof(x) <= sizeof(uint64_t), "T is too large");
129  return sizeof(x) <= sizeof(uint32_t) ? Popcount32(x) : Popcount64(x);
130 }
131 
134 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_clz)
135  // Use __builtin_clz, which uses the following instructions:
136  // x86: bsr, lzcnt
137  // ARM64: clz
138  // PPC: cntlzd
139 
140  static_assert(sizeof(unsigned int) == sizeof(x),
141  "__builtin_clz does not take 32-bit arg");
142  // Handle 0 as a special case because __builtin_clz(0) is undefined.
143  return x == 0 ? 32 : __builtin_clz(x);
144 #elif defined(_MSC_VER) && !defined(__clang__)
145  unsigned long result = 0; // NOLINT(runtime/int)
146  if (_BitScanReverse(&result, x)) {
147  return 31 - result;
148  }
149  return 32;
150 #else
151  int zeroes = 28;
152  if (x >> 16) {
153  zeroes -= 16;
154  x >>= 16;
155  }
156  if (x >> 8) {
157  zeroes -= 8;
158  x >>= 8;
159  }
160  if (x >> 4) {
161  zeroes -= 4;
162  x >>= 4;
163  }
164  return "\4\3\2\2\1\1\1\1\0\0\0\0\0\0\0"[x] + zeroes;
165 #endif
166 }
167 
170 #if ABSL_HAVE_BUILTIN(__builtin_clzs)
171  static_assert(sizeof(unsigned short) == sizeof(x), // NOLINT(runtime/int)
172  "__builtin_clzs does not take 16-bit arg");
173  return x == 0 ? 16 : __builtin_clzs(x);
174 #else
175  return CountLeadingZeroes32(x) - 16;
176 #endif
177 }
178 
181 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_clzll)
182  // Use __builtin_clzll, which uses the following instructions:
183  // x86: bsr, lzcnt
184  // ARM64: clz
185  // PPC: cntlzd
186  static_assert(sizeof(unsigned long long) == sizeof(x), // NOLINT(runtime/int)
187  "__builtin_clzll does not take 64-bit arg");
188 
189  // Handle 0 as a special case because __builtin_clzll(0) is undefined.
190  return x == 0 ? 64 : __builtin_clzll(x);
191 #elif defined(_MSC_VER) && !defined(__clang__) && \
192  (defined(_M_X64) || defined(_M_ARM64))
193  // MSVC does not have __buitin_clzll. Use _BitScanReverse64.
194  unsigned long result = 0; // NOLINT(runtime/int)
195  if (_BitScanReverse64(&result, x)) {
196  return 63 - result;
197  }
198  return 64;
199 #elif defined(_MSC_VER) && !defined(__clang__)
200  // MSVC does not have __buitin_clzll. Compose two calls to _BitScanReverse
201  unsigned long result = 0; // NOLINT(runtime/int)
202  if ((x >> 32) &&
203  _BitScanReverse(&result, static_cast<unsigned long>(x >> 32))) {
204  return 31 - result;
205  }
206  if (_BitScanReverse(&result, static_cast<unsigned long>(x))) {
207  return 63 - result;
208  }
209  return 64;
210 #else
211  int zeroes = 60;
212  if (x >> 32) {
213  zeroes -= 32;
214  x >>= 32;
215  }
216  if (x >> 16) {
217  zeroes -= 16;
218  x >>= 16;
219  }
220  if (x >> 8) {
221  zeroes -= 8;
222  x >>= 8;
223  }
224  if (x >> 4) {
225  zeroes -= 4;
226  x >>= 4;
227  }
228  return "\4\3\2\2\1\1\1\1\0\0\0\0\0\0\0"[x] + zeroes;
229 #endif
230 }
231 
232 template <typename T>
235  static_assert(std::is_unsigned<T>::value, "T must be unsigned");
236  static_assert(IsPowerOf2(std::numeric_limits<T>::digits),
237  "T must have a power-of-2 size");
238  static_assert(sizeof(T) <= sizeof(uint64_t), "T too large");
239  return sizeof(T) <= sizeof(uint16_t)
240  ? CountLeadingZeroes16(static_cast<uint16_t>(x)) -
241  (std::numeric_limits<uint16_t>::digits -
242  std::numeric_limits<T>::digits)
243  : (sizeof(T) <= sizeof(uint32_t)
244  ? CountLeadingZeroes32(static_cast<uint32_t>(x)) -
245  (std::numeric_limits<uint32_t>::digits -
246  std::numeric_limits<T>::digits)
248 }
249 
252 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_ctz)
253  static_assert(sizeof(unsigned int) == sizeof(x),
254  "__builtin_ctz does not take 32-bit arg");
255  return __builtin_ctz(x);
256 #elif defined(_MSC_VER) && !defined(__clang__)
257  unsigned long result = 0; // NOLINT(runtime/int)
258  _BitScanForward(&result, x);
259  return result;
260 #else
261  int c = 31;
262  x &= ~x + 1;
263  if (x & 0x0000FFFF) c -= 16;
264  if (x & 0x00FF00FF) c -= 8;
265  if (x & 0x0F0F0F0F) c -= 4;
266  if (x & 0x33333333) c -= 2;
267  if (x & 0x55555555) c -= 1;
268  return c;
269 #endif
270 }
271 
274 #if ABSL_NUMERIC_INTERNAL_HAVE_BUILTIN_OR_GCC(__builtin_ctzll)
275  static_assert(sizeof(unsigned long long) == sizeof(x), // NOLINT(runtime/int)
276  "__builtin_ctzll does not take 64-bit arg");
277  return __builtin_ctzll(x);
278 #elif defined(_MSC_VER) && !defined(__clang__) && \
279  (defined(_M_X64) || defined(_M_ARM64))
280  unsigned long result = 0; // NOLINT(runtime/int)
281  _BitScanForward64(&result, x);
282  return result;
283 #elif defined(_MSC_VER) && !defined(__clang__)
284  unsigned long result = 0; // NOLINT(runtime/int)
285  if (static_cast<uint32_t>(x) == 0) {
286  _BitScanForward(&result, static_cast<unsigned long>(x >> 32));
287  return result + 32;
288  }
289  _BitScanForward(&result, static_cast<unsigned long>(x));
290  return result;
291 #else
292  int c = 63;
293  x &= ~x + 1;
294  if (x & 0x00000000FFFFFFFF) c -= 32;
295  if (x & 0x0000FFFF0000FFFF) c -= 16;
296  if (x & 0x00FF00FF00FF00FF) c -= 8;
297  if (x & 0x0F0F0F0F0F0F0F0F) c -= 4;
298  if (x & 0x3333333333333333) c -= 2;
299  if (x & 0x5555555555555555) c -= 1;
300  return c;
301 #endif
302 }
303 
306 #if ABSL_HAVE_BUILTIN(__builtin_ctzs)
307  static_assert(sizeof(unsigned short) == sizeof(x), // NOLINT(runtime/int)
308  "__builtin_ctzs does not take 16-bit arg");
309  return __builtin_ctzs(x);
310 #else
312 #endif
313 }
314 
315 template <class T>
317 CountTrailingZeroes(T x) noexcept {
318  static_assert(std::is_unsigned<T>::value, "T must be unsigned");
319  static_assert(IsPowerOf2(std::numeric_limits<T>::digits),
320  "T must have a power-of-2 size");
321  static_assert(sizeof(T) <= sizeof(uint64_t), "T too large");
322  return x == 0 ? std::numeric_limits<T>::digits
323  : (sizeof(T) <= sizeof(uint16_t)
324  ? CountTrailingZeroesNonzero16(static_cast<uint16_t>(x))
325  : (sizeof(T) <= sizeof(uint32_t)
327  static_cast<uint32_t>(x))
329 }
330 
331 // If T is narrower than unsigned, T{1} << bit_width will be promoted. We
332 // want to force it to wraparound so that bit_ceil of an invalid value are not
333 // core constant expressions.
334 template <class T>
337  BitCeilPromotionHelper(T x, T promotion) {
338  return (T{1} << (x + promotion)) >> promotion;
339 }
340 
341 template <class T>
345  // If T is narrower than unsigned, it undergoes promotion to unsigned when we
346  // shift. We calculate the number of bits added by the wider type.
347  return BitCeilPromotionHelper(
348  static_cast<T>(std::numeric_limits<T>::digits - CountLeadingZeroes(x)),
349  T{sizeof(T) >= sizeof(unsigned) ? 0
350  : std::numeric_limits<unsigned>::digits -
351  std::numeric_limits<T>::digits});
352 }
353 
354 } // namespace numeric_internal
356 } // namespace absl
357 
358 #endif // ABSL_NUMERIC_INTERNAL_BITS_H_
absl::numeric_internal::CountTrailingZeroesNonzero64
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CTZ int CountTrailingZeroesNonzero64(uint64_t x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:273
ABSL_ATTRIBUTE_ALWAYS_INLINE
#define ABSL_ATTRIBUTE_ALWAYS_INLINE
Definition: abseil-cpp/absl/base/attributes.h:105
_gevent_test_main.result
result
Definition: _gevent_test_main.py:96
absl::numeric_internal::CountLeadingZeroes32
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CLZ int CountLeadingZeroes32(uint32_t x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:133
uint16_t
unsigned short uint16_t
Definition: stdint-msvc2008.h:79
absl::FormatConversionChar::s
@ s
absl::numeric_internal::Popcount64
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_POPCOUNT int Popcount64(uint64_t x) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:109
absl::numeric_internal::CountTrailingZeroesNonzero16
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CTZ int CountTrailingZeroesNonzero16(uint16_t x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:305
absl::numeric_internal::CountTrailingZeroes
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CTZ int CountTrailingZeroes(T x) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:317
ABSL_NAMESPACE_END
#define ABSL_NAMESPACE_END
Definition: third_party/abseil-cpp/absl/base/config.h:171
T
#define T(upbtypeconst, upbtype, ctype, default_value)
ABSL_INTERNAL_CONSTEXPR_CTZ
#define ABSL_INTERNAL_CONSTEXPR_CTZ
Definition: abseil-cpp/absl/numeric/internal/bits.h:61
uint32_t
unsigned int uint32_t
Definition: stdint-msvc2008.h:80
ULL
#define ULL(x)
Definition: bloaty/third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc:57
ABSL_MUST_USE_RESULT
#define ABSL_MUST_USE_RESULT
Definition: abseil-cpp/absl/base/attributes.h:441
absl::numeric_internal::Popcount32
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_POPCOUNT int Popcount32(uint32_t x) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:96
ABSL_NAMESPACE_BEGIN
#define ABSL_NAMESPACE_BEGIN
Definition: third_party/abseil-cpp/absl/base/config.h:170
absl::numeric_internal::RotateLeft
ABSL_MUST_USE_RESULT constexpr ABSL_ATTRIBUTE_ALWAYS_INLINE T RotateLeft(T x, int s) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:85
absl::numeric_internal::IsPowerOf2
constexpr bool IsPowerOf2(unsigned int x) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:69
absl::numeric_internal::BitCeilNonPowerOf2
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, T >::type BitCeilNonPowerOf2(T x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:344
absl::numeric_internal::CountLeadingZeroes
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CLZ int CountLeadingZeroes(T x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:234
uint64_t
unsigned __int64 uint64_t
Definition: stdint-msvc2008.h:90
absl::numeric_internal::RotateRight
ABSL_MUST_USE_RESULT constexpr ABSL_ATTRIBUTE_ALWAYS_INLINE T RotateRight(T x, int s) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:74
ABSL_INTERNAL_CONSTEXPR_POPCOUNT
#define ABSL_INTERNAL_CONSTEXPR_POPCOUNT
Definition: abseil-cpp/absl/numeric/internal/bits.h:43
x
int x
Definition: bloaty/third_party/googletest/googlemock/test/gmock-matchers_test.cc:3610
value
const char * value
Definition: hpack_parser_table.cc:165
ABSL_INTERNAL_CONSTEXPR_CLZ
#define ABSL_INTERNAL_CONSTEXPR_CLZ
Definition: abseil-cpp/absl/numeric/internal/bits.h:52
absl::numeric_internal::CountTrailingZeroesNonzero32
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CTZ int CountTrailingZeroesNonzero32(uint32_t x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:251
absl::numeric_internal::CountLeadingZeroes64
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CLZ int CountLeadingZeroes64(uint64_t x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:180
absl
Definition: abseil-cpp/absl/algorithm/algorithm.h:31
asyncio_get_stats.type
type
Definition: asyncio_get_stats.py:37
intrin.h
absl::numeric_internal::BitCeilPromotionHelper
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, T >::type BitCeilPromotionHelper(T x, T promotion)
Definition: abseil-cpp/absl/numeric/internal/bits.h:337
absl::numeric_internal::CountLeadingZeroes16
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_CLZ int CountLeadingZeroes16(uint16_t x)
Definition: abseil-cpp/absl/numeric/internal/bits.h:169
absl::numeric_internal::Popcount
ABSL_ATTRIBUTE_ALWAYS_INLINE ABSL_INTERNAL_CONSTEXPR_POPCOUNT int Popcount(T x) noexcept
Definition: abseil-cpp/absl/numeric/internal/bits.h:124


grpc
Author(s):
autogenerated on Fri May 16 2025 02:57:48