29 #ifndef __BASE_INTMATH_HH__ 30 #define __BASE_INTMATH_HH__ 34 #include <type_traits> 43 uint64_t component =
n;
45 uint64_t last = result;
48 warn_if(result < last,
"power() overflowed!");
50 component *= component;
56 inline typename std::enable_if<std::is_integral<T>::value,
int>
::type 65 constexpr
auto ts =
sizeof(T);
67 if (ts >= 8 && (ux &
ULL(0xffffffff00000000))) { y += 32; ux >>= 32; }
68 if (ts >= 4 && (ux &
ULL(0x00000000ffff0000))) { y += 16; ux >>= 16; }
69 if (ts >= 2 && (ux &
ULL(0x000000000000ff00))) { y += 8; ux >>= 8; }
70 if (ux &
ULL(0x00000000000000f0)) { y += 4; ux >>= 4; }
71 if (ux &
ULL(0x000000000000000c)) { y += 2; ux >>= 2; }
72 if (ux &
ULL(0x0000000000000002)) { y += 1; }
94 return n && !(n & (n - 1));
97 template <
class T,
class U>
101 return (a + b - 1) /
b;
112 template <
class T,
class U>
117 T
mask = (T)align - 1;
118 return (val + mask) & ~mask;
129 template <
class T,
class U>
134 T
mask = (T)align - 1;
138 #endif // __BASE_INTMATH_HH__
T roundUp(const T &val, const U &align)
This function is used to align addresses in memory.
std::enable_if< std::is_integral< T >::value, int >::type floorLog2(T x)
void align(const scfx_rep &lhs, const scfx_rep &rhs, int &new_wp, int &len_mant, scfx_mant_ref &lhs_mant, scfx_mant_ref &rhs_mant)
uint64_t power(uint32_t n, uint32_t e)
#define warn_if(cond,...)
Conditional warning macro that checks the supplied condition and only prints a warning if the conditi...
bool isPowerOf2(const T &n)
T roundDown(const T &val, const U &align)
This function is used to align addresses in memory.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
#define ULL(N)
uint64_t constant
T divCeil(const T &a, const U &b)