Go to the documentation of this file.
41 #ifndef __BASE_BITFIELD_HH__
42 #define __BASE_BITFIELD_HH__
47 #include <type_traits>
59 constexpr
inline uint64_t
62 return (nbits >= 64) ? (uint64_t)-1
LL : (1
ULL << nbits) - 1;
73 bits(T
val,
unsigned first,
unsigned last)
75 assert(first >= last);
76 int nbits = first - last + 1;
77 return (
val >> last) &
mask(nbits);
108 constexpr
inline uint64_t
109 mask(
unsigned first,
unsigned last)
111 return mbits((uint64_t)-1
LL, first, last);
120 constexpr
inline uint64_t
123 bool sign_bit =
bits(
val, N - 1);
141 template <
class T,
class B>
145 assert(first >= last);
146 T bmask =
mask(first, last);
148 val |= ((T)bit_val << last) & bmask;
157 template <
class T,
class B>
172 template <
class T,
class B>
173 constexpr
inline void
184 template <
class T,
class B>
185 constexpr
inline void
212 std::enable_if_t<std::is_integral<T>::value &&
sizeof(T) != 1, T>
215 assert(size <=
sizeof(T));
218 for (
size_t byte = 0;
byte < size;
byte++) {
227 std::enable_if_t<std::is_integral<T>::value &&
sizeof(T) == 1, T>
280 return sizeof(
val) * 8;
316 #ifndef __has_builtin
317 # define __has_builtin(foo) 0
319 #if defined(__GNUC__) || \
320 (defined(__clang__) && __has_builtin(__builtin_popcountl))
321 return __builtin_popcountl(
val);
323 const uint64_t m1 = 0x5555555555555555
ULL;
324 const uint64_t m2 = 0x3333333333333333
ULL;
325 const uint64_t m4 = 0x0f0f0f0f0f0f0f0f
ULL;
326 const uint64_t
sum = 0x0101010101010101
ULL;
332 #endif // defined(__GNUC__) ||
348 constexpr
inline uint64_t
374 return value ? __builtin_ctzl(value) : 32;
388 return value ? __builtin_ctzll(value) : 64;
391 #endif // __BASE_BITFIELD_HH__
static void output(const char *filename)
constexpr T insertBits(T val, unsigned first, unsigned last, B bit_val)
Returns val with bits first to last set to the LSBs of bit_val.
#define LL(N)
int64_t constant
constexpr int popCount(uint64_t val)
Returns the number of set ones in the provided value.
std::enable_if_t< std::is_integral< T >::value &&sizeof(T) !=1, T > reverseBits(T val, size_t size=sizeof(T))
Takes a value and returns the bit reversed version.
constexpr uint64_t sext(uint64_t val)
Sign-extend an N-bit value to 64 bits.
constexpr int ctz32(uint32_t value)
Count trailing zeros in a 32-bit value.
const uint8_t reverseBitsLookUpTable[]
Lookup table used for High Speed bit reversing.
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
constexpr uint64_t alignToPowerOfTwo(uint64_t val)
Align to the next highest power of two.
constexpr int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
constexpr int ctz64(uint64_t value)
Count trailing zeros in a 64-bit value.
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
constexpr int findLsbSet(uint64_t val)
Returns the bit position of the LSB that is set in the input.
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
#define ULL(N)
uint64_t constant
constexpr void replaceBits(T &val, unsigned first, unsigned last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17