36#ifndef IMT_BASE_CORE_UTIL_BITUTIL_H
37#define IMT_BASE_CORE_UTIL_BITUTIL_H
65 template<u
int8_t Bit,
typename T>
67 static_assert(Bit < (
sizeof(T) * CHAR_BIT),
"Bit index out of range");
68 T
const mask {
static_cast<T
>(0x01U) << Bit};
69 return (data & mask) != 0;
83 if (bit < (
sizeof(T) * CHAR_BIT)) {
84 mask =
static_cast<T
>(0x01U) << bit;
86 return (data & mask) != 0;
95 template<u
int8_t Bit,
typename T>
96 static void setBit(T& data)
noexcept {
97 static_assert(Bit < (
sizeof(T) * CHAR_BIT),
"Bit index out of range");
98 data |=
static_cast<T
>(0x01U) << Bit;
110 data |=
static_cast<T
>(0x01U) << bit;
119 template<u
int8_t Bit,
typename T>
121 static_assert(Bit < (
sizeof(T) * CHAR_BIT),
"Bit index out of range");
122 T
const bitSelection {
static_cast<T
>(0x01U) << Bit};
123 data &=
static_cast<T
>(~bitSelection);
135 T
const bitSelection {
static_cast<T
>(0x01U << bit)};
136 data &=
static_cast<T
>(~bitSelection);
149 template<
unsigned Mask,
typename T>
151 return static_cast<T
>(data & Mask);
166 template<
unsigned Mask,
unsigned CheckValue,
typename T>
169 static_assert((~Mask & CheckValue) == 0,
"Value does not contain any bits which are not in the mask");
170 return filterBits<Mask, T>(data) == CheckValue;
183 template<
unsigned Mask,
typename T>
184 static void setBits(T& data, T
const value)
noexcept {
185 data |= Mask & value;
198 template<
unsigned Mask,
typename T>
199 static void clearBits(T& data, T
const value)
noexcept {
200 data &= ~(Mask & value);
212 template<
unsigned Mask,
typename T>
214 clearBits<Mask, T>(data, ~value);
215 setBits<Mask, T>(data, value);
225 template<u
int8_t Bit,
typename T>
226 static void changeBit(T& data,
bool const value)
noexcept {
228 static_assert(Bit < (
sizeof(T) * CHAR_BIT),
"Bit index out of range");
230 setBit<Bit, T>(data);
233 clearBit<Bit, T>(data);
249 setBit<T>(data, bit);
252 clearBit<T>(data, bit);
void ASSERT_DEBUG(bool const condition) noexcept
Bit Utility class pure static class.
static void changeBit(T &data, uint8_t const bit, bool const value) noexcept
Set or clear a single bit in a data value.
static void clearBit(T &data, uint8_t const bit) noexcept
Clear one bit.
static void setBits(T &data, T const value) noexcept
Set some bits.
static void changeBits(T &data, T const value) noexcept
Change some bits.
static void clearBits(T &data, T const value) noexcept
Clear some bits.
static void setBit(T &data, uint8_t const bit) noexcept
Set one bit.
static bool isBitSet(T const data) noexcept
Check if a single bit in a data value is set.
static bool matchBits(T const data) noexcept
Check if a value is equal to another one, but only some bits have an influence on the result.
static T filterBits(T const data) noexcept
Filter some bits out of a data value.
static bool isBitSet(T const data, uint8_t const bit) noexcept
Check if a single bit in a data value is set.
static void clearBit(T &data) noexcept
Clear one bit.
static void changeBit(T &data, bool const value) noexcept
Set or clear a single bit in a data value.
static void setBit(T &data) noexcept
Set one bit.
This is a application specific file which is used to configure Imt.Base.Core.Math.