Go to the documentation of this file.
29 #ifndef __BASE_BITUNION_HH__
30 #define __BASE_BITUNION_HH__
34 #include <type_traits>
59 static_assert(std::is_empty<Base>::value,
60 "Bitfield base class must be empty.");
69 template<
typename C,
typename Type1,
typename Type2>
70 struct T<void (C::*)(Type1 &, Type2)>
112 return *
this = (
Type)other;
128 operator Type ()
const {
return Impl::operator
Type(); }
150 operator Type ()
const {
return Impl::operator
Type(); }
154 template <
class Base>
175 namespace bitfield_backend
177 template<
class Storage,
int first,
int last>
180 static_assert(first >= last,
181 "Bitfield ranges must be specified as <msb, lsb>");
187 return bits(storage, first, last);
197 template<
class Storage,
int first,
int last>
200 static_assert(first >= last,
201 "Bitfield ranges must be specified as <msb, lsb>");
207 return sext<first - last + 1>(
bits(storage, first, last));
220 template<
class Storage>
225 template<
int first,
int last=first>
227 template<
int first,
int last=first>
230 template<
int first,
int last=first>
234 template<
int first,
int last=first>
237 template<
int first,
int last=first>
240 template<
int first,
int last=first>
251 template <
class Base>
254 static_assert(
sizeof(
Base) ==
sizeof(
typename Base::__StorageType),
255 "BitUnion larger than its storage type.");
260 Base::__storage =
val;
268 operator const typename Base::__StorageType ()
const
270 return Base::__storage;
277 Base::__storage =
val;
322 Base::__storage +=
val;
329 Base::__storage -=
val;
336 Base::__storage *=
val;
343 Base::__storage /=
val;
350 Base::__storage %=
val;
357 Base::__storage &=
val;
364 Base::__storage |=
val;
371 Base::__storage ^=
val;
378 Base::__storage <<=
val;
385 Base::__storage >>=
val;
406 #define __BitUnion(type, name) \
407 class BitfieldUnderlyingClasses##name : \
408 public gem5::bitfield_backend::BitfieldTypes<type> \
411 typedef type __StorageType; \
412 friend gem5::bitfield_backend::BitUnionBaseType< \
413 gem5::bitfield_backend::BitUnionOperators< \
414 BitfieldUnderlyingClasses##name> >; \
415 friend gem5::bitfield_backend::BitUnionBaseType< \
416 BitfieldUnderlyingClasses##name>; \
429 #define EndBitUnion(name) \
432 typedef gem5::bitfield_backend::BitUnionOperators< \
433 BitfieldUnderlyingClasses##name> name;
440 #define __SubBitUnion(name, fieldType, ...) \
445 fieldType<__VA_ARGS__> __storage;
456 #define EndSubBitUnion(name) \
458 inline operator __StorageType () const \
459 { return __storage; } \
461 inline __StorageType operator = (const __StorageType & _storage) \
462 { return __storage = _storage;} \
471 #define SubBitUnion(name, first, last) \
472 __SubBitUnion(name, Bitfield, first, last)
480 #define SignedSubBitUnion(name, first, last) \
481 __SubBitUnion(name, SignedBitfield, first, last)
488 #define BitUnion(type, name) __BitUnion(type, name)
495 #define BitUnion64(name) __BitUnion(uint64_t, name)
496 #define BitUnion32(name) __BitUnion(uint32_t, name)
497 #define BitUnion16(name) __BitUnion(uint16_t, name)
498 #define BitUnion8(name) __BitUnion(uint8_t, name)
519 template <
typename T>
522 namespace bitfield_backend
540 template <
typename T>
543 namespace bitfield_backend
546 static inline std::ostream &
557 inline std::ostream &
565 inline std::ostream &
568 os << (
unsigned int)
t;
579 template <
typename T>
618 template <
typename T>
624 return hash<gem5::BitUnionBaseType<T> >::operator()(
val);
629 #endif // __BASE_BITUNION_HH__
std::ostream & operator<<(std::ostream &os, const ArmSemihosting::InPlaceArg &ipa)
BitUnionOperators & operator%=(typename Base::__StorageType const &val)
Type operator=(BitfieldTypeImpl< Base > const &other)
BitUnionType< T >::__StorageType Type
BitUnionOperators & operator=(BitUnionOperators const &other)
void setter(Storage &storage, uint64_t val)
int64_t getter(const Storage &storage) const
BitUnionOperators & operator>>=(typename Base::__StorageType const &val)
bitfield_backend::BitUnionOperators< T > BitUnionType
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.
BitUnionOperators operator--(int)
static void show(std::ostream &os, const T &value)
bool to_number(const std::string &value, Pixel &retval)
BitUnionOperators & operator&=(typename Base::__StorageType const &val)
BitUnionOperators(typename Base::__StorageType const &val)
uint64_t getter(const Storage &storage) const
typename bitfield_backend::BitUnionBaseType< T >::Type BitUnionBaseType
T< decltype(&Wrapper::setter)>::Storage Storage
static std::ostream & bitfieldBackendPrinter(std::ostream &os, const T &t)
BitUnionOperators & operator+=(typename Base::__StorageType const &val)
static bool parse(const std::string &s, BitUnionType< T > &value)
Type operator=(const Type val)
BitUnionOperators & operator|=(typename Base::__StorageType const &val)
BitUnionOperators & operator-=(typename Base::__StorageType const &val)
BitUnionOperators & operator/=(typename Base::__StorageType const &val)
BitfieldTypeImpl()=default
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
BitUnionOperators & operator--()
BitUnionOperators & operator*=(typename Base::__StorageType const &val)
BitUnionOperators & operator^=(typename Base::__StorageType const &val)
Type operator=(BitfieldROType< Base > const &other)=delete
BitUnionType< T >::__StorageType Type
T< decltype(&Wrapper::setter)>::Type Type
Type operator=(BitfieldWOType< Base > const &other)
BitUnionOperators & operator<<=(typename Base::__StorageType const &val)
Type operator=(const Type val)
Overload hash function for BasicBlockRange type.
Type getter(const Storage &storage) const =delete
BitUnionOperators & operator++()
BitUnionOperators & operator=(typename Base::__StorageType const &val)
void setter(Storage &storage, Type val)=delete
Type operator=(const Type val)
static void show(std::ostream &os, const BitUnionType< T > &value)
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
BitUnionOperators operator++(int)
Type operator=(BitfieldType< Base > const &other)
TypeDeducer::Storage Storage
void setter(Storage &storage, int64_t val)
Generated on Wed Jul 28 2021 12:10:22 for gem5 by doxygen 1.8.17