Go to the documentation of this file.
29 #ifndef __BASE_BITUNION_HH__
30 #define __BASE_BITUNION_HH__
34 #include <type_traits>
55 static_assert(std::is_empty<Base>::value,
56 "Bitfield base class must be empty.");
65 template<
typename C,
typename Type1,
typename Type2>
66 struct T<void (C::*)(Type1 &, Type2)>
108 return *
this = (
Type)other;
124 operator Type ()
const {
return Impl::operator
Type(); }
146 operator Type ()
const {
return Impl::operator
Type(); }
150 template <
class Base>
173 template<
class Storage,
int first,
int last>
176 static_assert(first >= last,
177 "Bitfield ranges must be specified as <msb, lsb>");
183 return bits(storage, first, last);
193 template<
class Storage,
int first,
int last>
196 static_assert(first >= last,
197 "Bitfield ranges must be specified as <msb, lsb>");
203 return sext<first - last + 1>(
bits(storage, first, last));
216 template<
class Storage>
221 template<
int first,
int last=first>
223 template<
int first,
int last=first>
226 template<
int first,
int last=first>
230 template<
int first,
int last=first>
233 template<
int first,
int last=first>
236 template<
int first,
int last=first>
247 template <
class Base>
250 static_assert(
sizeof(Base) ==
sizeof(
typename Base::__StorageType),
251 "BitUnion larger than its storage type.");
256 Base::__storage =
val;
264 operator const typename Base::__StorageType ()
const
266 return Base::__storage;
273 Base::__storage =
val;
318 Base::__storage +=
val;
325 Base::__storage -=
val;
332 Base::__storage *=
val;
339 Base::__storage /=
val;
346 Base::__storage %=
val;
353 Base::__storage &=
val;
360 Base::__storage |=
val;
367 Base::__storage ^=
val;
374 Base::__storage <<=
val;
381 Base::__storage >>=
val;
402 #define __BitUnion(type, name) \
403 class BitfieldUnderlyingClasses##name : \
404 public BitfieldBackend::BitfieldTypes<type> \
407 typedef type __StorageType; \
408 friend BitfieldBackend::BitUnionBaseType< \
409 BitfieldBackend::BitUnionOperators< \
410 BitfieldUnderlyingClasses##name> >; \
411 friend BitfieldBackend::BitUnionBaseType< \
412 BitfieldUnderlyingClasses##name>; \
425 #define EndBitUnion(name) \
428 typedef BitfieldBackend::BitUnionOperators< \
429 BitfieldUnderlyingClasses##name> name;
436 #define __SubBitUnion(name, fieldType, ...) \
441 fieldType<__VA_ARGS__> __storage;
452 #define EndSubBitUnion(name) \
454 inline operator __StorageType () const \
455 { return __storage; } \
457 inline __StorageType operator = (const __StorageType & _storage) \
458 { return __storage = _storage;} \
467 #define SubBitUnion(name, first, last) \
468 __SubBitUnion(name, Bitfield, first, last)
476 #define SignedSubBitUnion(name, first, last) \
477 __SubBitUnion(name, SignedBitfield, first, last)
484 #define BitUnion(type, name) __BitUnion(type, name)
491 #define BitUnion64(name) __BitUnion(uint64_t, name)
492 #define BitUnion32(name) __BitUnion(uint32_t, name)
493 #define BitUnion16(name) __BitUnion(uint16_t, name)
494 #define BitUnion8(name) __BitUnion(uint8_t, name)
515 template <
typename T>
536 template <
typename T>
543 template <
typename T>
549 return hash<BitUnionBaseType<T> >::operator()(
val);
559 static inline std::ostream &
570 inline std::ostream &
578 inline std::ostream &
581 os << (
unsigned int)
t;
592 template <
typename T>
626 #endif // __BASE_BITUNION_HH__
BitUnionOperators(typename Base::__StorageType const &val)
BitUnionOperators & operator&=(typename Base::__StorageType const &val)
BitUnionOperators operator--(int)
BitUnionOperators & operator%=(typename Base::__StorageType const &val)
BitUnionOperators & operator^=(typename Base::__StorageType const &val)
BitUnionOperators & operator-=(typename Base::__StorageType const &val)
T< decltype(&Wrapper::setter)>::Storage Storage
BitUnionOperators & operator+=(typename Base::__StorageType const &val)
int64_t getter(const Storage &storage) const
BitfieldTypeImpl()=default
TypeDeducer::Storage Storage
Type getter(const Storage &storage) const =delete
constexpr uint64_t sext(uint64_t val)
Sign-extend an N-bit value to 64 bits.
Type operator=(const Type val)
void setter(Storage &storage, uint64_t val)
bool to_number(const std::string &value, VecPredRegContainer< NumBits, Packed > &p)
Helper functions used for serialization/de-serialization.
BitUnionOperators & operator<<=(typename Base::__StorageType const &val)
void setter(Storage &storage, int64_t val)
void setter(Storage &storage, Type val)=delete
T< decltype(&Wrapper::setter)>::Type Type
BitUnionOperators & operator/=(typename Base::__StorageType const &val)
BitUnionOperators & operator--()
BitUnionOperators & operator=(BitUnionOperators const &other)
BitUnionOperators operator++(int)
BitUnionOperators & operator>>=(typename Base::__StorageType const &val)
BitUnionType< T >::__StorageType Type
BitUnionOperators & operator|=(typename Base::__StorageType const &val)
uint64_t getter(const Storage &storage) const
Type operator=(const Type val)
Type operator=(BitfieldType< Base > const &other)
Overload hash function for BasicBlockRange type.
static bool parse(const std::string &s, BitUnionType< T > &value)
static std::ostream & bitfieldBackendPrinter(std::ostream &os, const T &t)
BitUnionOperators & operator*=(typename Base::__StorageType const &val)
std::ostream & operator<<(std::ostream &os, const BitUnionType< T > &bu)
A default << operator which casts a bitunion to its underlying type and passes it to BitfieldBackend:...
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Type operator=(const Type val)
BitUnionOperators & operator=(typename Base::__StorageType const &val)
BitUnionOperators & operator++()
static void show(std::ostream &os, const T &value)
Type operator=(BitfieldROType< Base > const &other)=delete
BitUnionType< T >::__StorageType Type
Type operator=(BitfieldTypeImpl< Base > const &other)
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.
Type operator=(BitfieldWOType< Base > const &other)
typename BitfieldBackend::BitUnionBaseType< T >::Type BitUnionBaseType
static void show(std::ostream &os, const BitUnionType< T > &value)
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17