2012-06-22 13:56:25 +00:00
|
|
|
#ifndef SPROUT_BIT_POPCOUNT_HPP
|
|
|
|
#define SPROUT_BIT_POPCOUNT_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace detail {
|
|
|
|
# if SPROUT_USE_BUILTIN_BIT_OPERATION
|
|
|
|
inline SPROUT_CONSTEXPR int
|
|
|
|
popcount(unsigned n) {
|
|
|
|
return __builtin_popcount(n);
|
|
|
|
}
|
|
|
|
inline SPROUT_CONSTEXPR int
|
|
|
|
popcount(unsigned long n) {
|
|
|
|
return __builtin_popcountl(n);
|
|
|
|
}
|
|
|
|
inline SPROUT_CONSTEXPR int
|
|
|
|
popcount(unsigned long long n) {
|
|
|
|
return __builtin_popcountll(n);
|
|
|
|
}
|
|
|
|
# endif
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
std::is_unsigned<T>::value,
|
|
|
|
int
|
|
|
|
>::type
|
2012-06-22 13:56:25 +00:00
|
|
|
popcount(T n) {
|
|
|
|
return n == 0 ? 0
|
|
|
|
: 1 + sprout::detail::popcount(static_cast<T>(n & (n - 1)))
|
|
|
|
;
|
|
|
|
}
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
std::is_signed<T>::value,
|
|
|
|
int
|
|
|
|
>::type
|
2012-06-22 13:56:25 +00:00
|
|
|
popcount(T n) {
|
|
|
|
return sprout::detail::popcount(static_cast<typename std::make_unsigned<T>::type>(n));
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
//
|
|
|
|
// popcount
|
|
|
|
//
|
2012-12-17 11:10:17 +00:00
|
|
|
template<typename T>
|
|
|
|
inline SPROUT_CONSTEXPR typename std::enable_if<
|
|
|
|
std::is_integral<T>::value,
|
|
|
|
int
|
|
|
|
>::type
|
2012-06-22 13:56:25 +00:00
|
|
|
popcount(T n) {
|
|
|
|
return sprout::detail::popcount(n);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_BIT_POPCOUNT_HPP
|