1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#include <terraces/definitions.hpp>
namespace terraces {
namespace bits {
#if defined(__LP64__) || defined(_LP64)
inline index popcount(index word) { return index(_popcnt64(word)); }
inline index bitscan(index word) {
unsigned int idx;
_BitScanForward64(&idx, word);
return index(idx);
}
inline index rbitscan(index word) {
unsigned int idx;
_BitScanReverse64(&idx, word);
return index(idx);
}
#else
inline index popcount(index word) { return index(_popcnt(word)); }
inline index bitscan(index word) {
unsigned int idx;
_BitScanForward(&idx, word);
return index(idx);
}
inline index rbitscan(index word) {
unsigned int idx;
_BitScanReverse(&idx, word);
return index(idx);
}
#endif
namespace {
constexpr index max_index = std::numeric_limits<index>::max();
}
inline bool add_overflow(index a, index b, index& result) {
result = a + b;
if (max_index - b < a) {
return true;
} else {
return false;
}
}
inline bool mul_overflow(index a, index b, index& result) {
result = a * b;
if (max_index / b < a) {
return true;
} else {
return false;
}
}
} // namespace bits
} // namespace terraces
|