Go to the documentation of this file.
41 #ifndef __BASE_BITFIELD_HH__
42 #define __BASE_BITFIELD_HH__
47 #include <type_traits>
65 return (nbits >= 64) ? (uint64_t)-1LL : (1ULL << nbits) - 1;
76 bits(T
val,
unsigned first,
unsigned last)
78 assert(first >= last);
79 int nbits = first - last + 1;
80 return (
val >> last) &
mask(nbits);
112 mask(
unsigned first,
unsigned last)
114 return mbits((uint64_t)-1LL, first, last);
128 bool sign_bit =
bits(
val, N - 1);
144 bool sign_bit =
bits(
val, N - 1);
164 template <
class T,
class B>
168 assert(first >= last);
169 T bmask =
mask(first, last);
171 val |= ((T)bit_val << last) & bmask;
180 template <
class T,
class B>
195 template <
class T,
class B>
207 template <
class T,
class B>
235 std::enable_if_t<std::is_integral_v<T>, T>
238 assert(size <=
sizeof(T));
240 if constexpr (
sizeof(T) == 1) {
245 for (
size_t byte = 0;
byte < size;
byte++) {
300 return sizeof(
val) * 8;
336 #ifndef __has_builtin
337 # define __has_builtin(foo) 0
339 #if defined(__GNUC__) || \
340 (defined(__clang__) && __has_builtin(__builtin_popcountl))
341 return __builtin_popcountl(
val);
343 const uint64_t m1 = 0x5555555555555555ULL;
344 const uint64_t m2 = 0x3333333333333333ULL;
345 const uint64_t m4 = 0x0f0f0f0f0f0f0f0fULL;
346 const uint64_t
sum = 0x0101010101010101ULL;
352 #endif // defined(__GNUC__) ||
394 return value ? __builtin_ctzl(value) : 32;
408 return value ? __builtin_ctzll(value) : 64;
413 #endif // __BASE_BITFIELD_HH__
static void output(const char *filename)
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.
constexpr uint64_t sext(uint64_t val)
Sign-extend an N-bit value to 64 bits.
constexpr T mbits(T val, unsigned first, unsigned last)
Mask off the given bits in place like bits() but without shifting.
constexpr int ctz64(uint64_t value)
Count trailing zeros in a 64-bit value.
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
constexpr int findLsbSet(uint64_t val)
Returns the bit position of the LSB that is set in the input.
constexpr int popCount(uint64_t val)
Returns the number of set ones in the provided value.
std::enable_if_t< std::is_integral_v< T >, T > reverseBits(T val, size_t size=sizeof(T))
Takes a value and returns the bit reversed version.
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.
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 uint64_t szext(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.
constexpr int findMsbSet(uint64_t val)
Returns the bit position of the MSB that is set in the input.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
constexpr uint64_t alignToPowerOfTwo(uint64_t val)
Align to the next highest power of two.
const uint8_t reverseBitsLookUpTable[]
Lookup table used for High Speed bit reversing.
Generated on Tue Dec 21 2021 11:34:23 for gem5 by doxygen 1.8.17