29 #ifndef __BASE_BITUNION_HH__ 30 #define __BASE_BITUNION_HH__ 34 #include <type_traits> 54 static_assert(std::is_empty<Base>::value,
55 "Bitfield base class must be empty.");
64 template<
typename C,
typename Type1,
typename Type2>
65 struct T<void (C::*)(Type1 &, Type2)>
84 Type
getter(
const Storage &storage)
const =
delete;
85 void setter(Storage &storage, Type
val) =
delete;
94 return Base::getter(__storage);
100 Base::setter(__storage, val);
107 return *
this = (
Type)other;
123 operator Type ()
const {
return Impl::operator
Type(); }
128 return Impl::operator=(other);
144 operator Type ()
const {
return Impl::operator
Type(); }
148 template <
class Base>
163 return Impl::operator=(other);
171 template<
class Storage,
int first,
int last>
174 static_assert(first >= last,
175 "Bitfield ranges must be specified as <msb, lsb>");
181 return bits(storage, first, last);
191 template<
class Storage,
int first,
int last>
194 static_assert(first >= last,
195 "Bitfield ranges must be specified as <msb, lsb>");
201 return sext<first - last + 1>(
bits(storage, first, last));
214 template<
class Storage>
219 template<
int first,
int last=first>
221 template<
int first,
int last=first>
224 template<
int first,
int last=first>
228 template<
int first,
int last=first>
231 template<
int first,
int last=first>
234 template<
int first,
int last=first>
245 template <
class Base>
248 static_assert(
sizeof(Base) ==
sizeof(
typename Base::__StorageType),
249 "BitUnion larger than its storage type.");
254 Base::__storage =
val;
261 operator const typename Base::__StorageType ()
const 263 return Base::__storage;
266 typename Base::__StorageType
269 Base::__storage =
val;
273 typename Base::__StorageType
276 Base::__storage = other;
277 return Base::__storage;
283 return Base::__storage < base.__storage;
289 return Base::__storage == base.__storage;
309 #define __BitUnion(type, name) \ 310 class BitfieldUnderlyingClasses##name : \ 311 public BitfieldBackend::BitfieldTypes<type> \ 314 typedef type __StorageType; \ 315 friend BitfieldBackend::BitUnionBaseType< \ 316 BitfieldBackend::BitUnionOperators< \ 317 BitfieldUnderlyingClasses##name> >; \ 318 friend BitfieldBackend::BitUnionBaseType< \ 319 BitfieldUnderlyingClasses##name>; \ 328 #define EndBitUnion(name) \ 331 typedef BitfieldBackend::BitUnionOperators< \ 332 BitfieldUnderlyingClasses##name> name; 339 #define __SubBitUnion(name, fieldType, ...) \ 344 fieldType<__VA_ARGS__> __storage; 351 #define EndSubBitUnion(name) \ 353 inline operator __StorageType () const \ 354 { return __storage; } \ 356 inline __StorageType operator = (const __StorageType & _storage) \ 357 { return __storage = _storage;} \ 362 #define SubBitUnion(name, first, last) \ 363 __SubBitUnion(name, Bitfield, first, last) 367 #define SignedSubBitUnion(name, first, last) \ 368 __SubBitUnion(name, SignedBitfield, first, last) 371 #define BitUnion(type, name) __BitUnion(type, name) 374 #define BitUnion64(name) __BitUnion(uint64_t, name) 375 #define BitUnion32(name) __BitUnion(uint32_t, name) 376 #define BitUnion16(name) __BitUnion(uint16_t, name) 377 #define BitUnion8(name) __BitUnion(uint8_t, name) 395 template <
typename T>
413 template <
typename T>
420 template <
typename T>
426 return hash<BitUnionBaseType<T> >::operator()(
val);
436 static inline std::ostream &
447 inline std::ostream &
455 inline std::ostream &
458 os << (
unsigned int)t;
465 template <
typename T>
467 operator << (std::ostream &os, const BitUnionType<T> &bu)
473 #endif // __BASE_BITUNION_HH__ Type operator=(const Type val)
T< decltype(&Wrapper::setter)>::Storage Storage
static std::ostream & bitfieldBackendPrinter(std::ostream &os, const T &t)
uint64_t getter(const Storage &storage) const
Type operator=(const Type val)
void setter(Storage &storage, int64_t val)
std::ostream & bitfieldBackendPrinter(std::ostream &os, const unsigned char &t)
BitUnionType< T >::__StorageType Type
Type operator=(BitfieldType< Base > const &other)
Overload hash function for BasicBlockRange type.
int64_t getter(const Storage &storage) const
Base::__StorageType operator=(typename Base::__StorageType const &val)
void replaceBits(T &val, int first, int last, B bit_val)
A convenience function to replace bits first to last of val with bit_val in place.
T< decltype(&Wrapper::setter)>::Type Type
Type operator=(const Type val)
bool operator==(Base const &base) const
Type operator=(BitfieldWOType< Base > const &other)
Type getter(const Storage &storage) const =delete
typename BitfieldBackend::BitUnionBaseType< T >::Type BitUnionBaseType
BitUnionType< T >::__StorageType Type
BitfieldTypeImpl()=default
BitUnionOperators(typename Base::__StorageType const &val)
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
bool operator<(const Time &l, const Time &r)
void setter(Storage &storage, uint64_t val)
void setter(Storage &storage, Type val)=delete
uint64_t sext(uint64_t val)
Sign-extend an N-bit value to 64 bits.
Type operator=(BitfieldTypeImpl< Base > const &other)
Base::__StorageType operator=(BitUnionOperators const &other)
TypeDeducer::Storage Storage