Go to the documentation of this file.
30 #ifndef __BASE_FLAGS_HH__
31 #define __BASE_FLAGS_HH__
33 #include <type_traits>
44 static_assert(std::is_unsigned<T>::value,
"Flag type must be unsigned");
145 #endif // __BASE_FLAGS_HH__
Wrapper that groups a few flag bits under the same undelying container.
bool noneSet(Type mask) const
Verifies whether no bits matching the given mask are set.
const Flags< FlagsType > & operator=(FlagsType flags)
void clear()
Clear all flag's bits.
void set(Type mask, bool condition)
Conditionally set or clear some bits of the flag, given a mask.
void set(Type mask)
Set all flag's bits matching the given mask.
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
bool allSet(Type mask) const
Verifies whether no bits matching the given mask are set.
void replace(Type flags, Type mask)
Replace the contents of the bits matching the mask with the corresponding bits in the provided flags.
Flags(Type flags=0)
Initialize flags with a given value.
void clear(Type mask)
Clear all flag's bits matching the given mask.
FlagsType _flags
The undelying container of the flags' bits.
Generated on Tue Jun 22 2021 15:28:25 for gem5 by doxygen 1.8.17