tracy/server/TracyPopcnt.hpp

18 lines
417 B
C++
Raw Normal View History

#ifndef __TRACYPOPCNT_HPP__
#define __TRACYPOPCNT_HPP__
2019-01-19 11:03:30 +00:00
#ifdef _WIN32
# include <intrin.h>
# define TracyCountBits __popcnt64
#else
static inline int TracyCountBits( uint64_t i )
{
i = i - ( (i >> 1) & 0x5555555555555555 );
i = ( i & 0x3333333333333333 ) + ( (i >> 2) & 0x3333333333333333 );
i = ( (i + (i >> 4) ) & 0x0F0F0F0F0F0F0F0F );
return ( i * (0x0101010101010101) ) >> 56;
}
#endif
#endif