Go to the documentation of this file.
30 #ifndef __BASE_FLAGS_HH__
31 #define __BASE_FLAGS_HH__
33 #include <type_traits>
47 static_assert(std::is_unsigned<T>::value,
"Flag type must be unsigned");
150 #endif // __BASE_FLAGS_HH__
const Flags< T > & operator=(T flags)
void set(Type mask)
Set all flag's bits matching the given mask.
void clear()
Clear all flag's bits.
Flags(Type flags=0)
Initialize flags with a given value.
bool allSet(Type mask) const
Verifies whether no bits matching the given mask are set.
constexpr uint64_t mask(unsigned nbits)
Generate a 64-bit mask of 'nbits' 1s, right justified.
Wrapper that groups a few flag bits under the same undelying container.
bool isSet(Type mask) const
Verifies whether any bit matching the given mask is set.
void replace(Type flags, Type mask)
Replace the contents of the bits matching the mask with the corresponding bits in the provided flags.
void set(Type mask, bool condition)
Conditionally set or clear some bits of the flag, given a mask.
T _flags
The undelying container of the flags' bits.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void clear(Type mask)
Clear all flag's bits matching the given mask.
bool noneSet(Type mask) const
Verifies whether no bits matching the given mask are set.
Generated on Tue Sep 7 2021 14:53:43 for gem5 by doxygen 1.8.17