From ad9ab66175f4ed93e44857cd061aa16046f9ca40 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 19 Mar 2007 13:28:36 +0000 Subject: Reworked the BitUnion stuff a bit. There is moderately better isolation of the backend parts, although there are still macros. --HG-- extra : convert_revision : e9692c5e697c96061ef70cf78ef532c99dbbd672 --- src/base/bitfield.hh | 258 ++++++++++++++++++++++----------------------------- 1 file changed, 110 insertions(+), 148 deletions(-) (limited to 'src') diff --git a/src/base/bitfield.hh b/src/base/bitfield.hh index 179e14896..5af453a76 100644 --- a/src/base/bitfield.hh +++ b/src/base/bitfield.hh @@ -33,7 +33,6 @@ #define __BASE_BITFIELD_HH__ #include -//#include "base/misc.hh" /** * Generate a 64-bit mask of 'nbits' 1s, right justified. @@ -131,149 +130,100 @@ findMsbSet(uint64_t val) { return msb; } -template -class BitfieldBase +namespace BitfieldBackend { - protected: - uint8_t __data[sizeof(Data)]; - - //These are defined here so it can be specialized for Data, but can be - //hidden by RO and WO variants. - inline uint64_t getBits(int _first, int _last) - { - //build up the right bits from the byte array "data" - //panic("Not yet implemented.\n"); - return 0; - } - - inline void setBits(int _first, int _last, uint64_t val) - { - //Set the right bits from the byte array "data" - //panic("Not yet implemented.\n"); - } -}; - -template -class BitfieldNativeBase -{ - protected: - Data __data; - - inline uint64_t getBits(int _first, int _last) - { - return bits(__data, first, last); - } - - inline void setBits(int _first, int _last, uint64_t val) - { - replaceBits(__data, first, last, val); - } -}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class BitfieldBase : - public BitfieldNativeBase -{}; - -template -class _BitfieldRO : public BitfieldBase -{ - public: - operator const Data & () - { - return this->getBits(first, last); - } -}; - -template -class _BitfieldWO : public BitfieldBase -{ - public: - const Data & operator = (const Data & _data) - { - this->setBits(first, last, _data); - return *this; - } -}; - -template -class _BitfieldRW : public BitfieldBase -{ - public: - operator const Data () + template + class BitfieldBase { - return this->getBits(first, last); - } - - const Data operator = (const Data & _data) - { - this->setBits(first, last, _data); - return *this; - } -}; - -template -class BitUnionOperators : public Base -{ - public: - operator const Type () + protected: + Data __data; + + inline uint64_t + getBits(int first, int last) + { + return bits(__data, first, last); + } + + inline void + setBits(int first, int last, uint64_t val) + { + replaceBits(__data, first, last, val); + } + }; + + template + class _BitfieldRO : public Base { - return Base::__data; - } - - const Type operator = (const Type & _data) + public: + operator const Type () + { + return *((Base *)this); + } + }; + + template + class _BitfieldWO : public Base { - Base::__data = _data; - } - - bool operator < (const Base & base) + public: + const Type operator = (const Type & _data) + { + *((Base *)this) = _data; + return _data; + } + }; + + template + class _Bitfield : public BitfieldBase { - return Base::__data < base.__data; - } - - bool operator == (const Base & base) + public: + operator const Data () + { + return this->getBits(first, last); + } + + const Data + operator = (const Data & _data) + { + this->setBits(first, last, _data); + return _data; + } + }; + + template + class BitUnionOperators : public Base { - return Base::__data == base.__data; - } -}; + public: + operator const Type () + { + return Base::__data; + } + + const Type + operator = (const Type & _data) + { + Base::__data = _data; + } + + bool + operator < (const Base & base) + { + return Base::__data < base.__data; + } + + bool + operator == (const Base & base) + { + return Base::__data == base.__data; + } + }; +} #define __BitUnion(type, name) \ - class __##name { \ + namespace BitfieldUnderlyingClasses \ + { \ + class name; \ + } \ + class BitfieldUnderlyingClasses::name { \ public: \ typedef type __DataType; \ union { \ @@ -282,7 +232,9 @@ class BitUnionOperators : public Base #define EndBitUnion(name) \ }; \ }; \ - typedef BitUnionOperators<__##name::__DataType, __##name> name; + typedef BitfieldBackend::BitUnionOperators< \ + BitfieldUnderlyingClasses::name::__DataType, \ + BitfieldUnderlyingClasses::name> name; #define __SubBitUnion(type, name) \ union { \ @@ -295,22 +247,32 @@ class BitUnionOperators : public Base #define EndSubBitUnion(name) } name; -//Regular read/write bitfields -#define BitfieldRW(first, last) _BitfieldRW<__DataType, first, last> -#define SubBitUnionRW(name, first, last) \ - __SubBitUnion(BitfieldRW(first, last), name) -#define Bitfield(first, last) BitfieldRW(first, last) -#define SubBitUnion(name, first, last) SubBitUnionRW(name, first, last) +//This is so we can send in parameters with commas +#define wrap(guts) guts //Read only bitfields -#define BitfieldRO(first, last) _BitfieldRO<__DataType, first, last> -#define SubBitUnionRO(name, first, last) \ - __SubBitUnion(BitfieldRO(first, last), name) +#define __BitfieldRO(base) \ + BitfieldBackend::_BitfieldRO<__DataType, base> +#define __SubBitUnionRO(name, base) \ + __SubBitUnion(wrap(_BitfieldRO<__DataType, base>), name) //Write only bitfields -#define BitfieldWO(first, last) _BitfieldWO<__DataType, first, last> +#define __BitfieldWO(base) \ + BitfieldBackend::_BitfieldWO<__DataType, base> +#define __SubBitUnionWO(name, base) \ + __SubBitUnion(wrap(_BitfieldWO<__DataType, base>), name) + +//Regular bitfields +#define Bitfield(first, last) \ + BitfieldBackend::_Bitfield<__DataType, first, last> +#define SubBitUnion(name, first, last) \ + __SubBitUnion(Bitfield(first, last), name) +#define BitfieldRO(first, last) __BitfieldRO(Bitfield(first, last)) +#define SubBitUnionRO(name, first, last) \ + __SubBitUnionRO(Bitfield(first, last), name) +#define BitfieldWO(first, last) __BitfieldWO(Bitfield(first, last)) #define SubBitUnionWO(name, first, last) \ - __SubBitUnion(BitfieldWO(first, last), name) + __SubBitUnionWO(Bitfield(first, last), name) #define BitUnion(type, name) __BitUnion(type, name) -- cgit v1.2.3