X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbitboard.h;h=21dc6e44087a36e5c527d0d9a15b78119aa48463;hp=2ad8773634dce967e6cc6b223e68eeb3d4d66f05;hb=29b5842da8d5477c0aea924cfd364c9e619456a2;hpb=db4b0d8b7db8db15c16a71212990354094f00b0d diff --git a/src/bitboard.h b/src/bitboard.h index 2ad87736..21dc6e44 100644 --- a/src/bitboard.h +++ b/src/bitboard.h @@ -257,22 +257,57 @@ inline Bitboard attacks_bb(Piece pc, Square s, Bitboard occupied) { } +/// popcount() counts the number of non-zero bits in a bitboard + +inline int popcount(Bitboard b) { + +#ifndef USE_POPCNT + + extern uint8_t PopCnt16[1 << 16]; + union { Bitboard bb; uint16_t u[4]; } v = { b }; + return PopCnt16[v.u[0]] + PopCnt16[v.u[1]] + PopCnt16[v.u[2]] + PopCnt16[v.u[3]]; + +#elif defined(_MSC_VER) && defined(__INTEL_COMPILER) + + return _mm_popcnt_u64(b); + +#elif defined(_MSC_VER) + + return (int)__popcnt64(b); + +#else // Assumed gcc or compatible compiler + + return __builtin_popcountll(b); + +#endif +} + + /// lsb() and msb() return the least/most significant bit in a non-zero bitboard #if defined(__GNUC__) -inline Square lsb(Bitboard b) { return Square(__builtin_ctzll(b)); } -inline Square msb(Bitboard b) { return Square(63 - __builtin_clzll(b)); } +inline Square lsb(Bitboard b) { + assert(b); + return Square(__builtin_ctzll(b)); +} + +inline Square msb(Bitboard b) { + assert(b); + return Square(63 - __builtin_clzll(b)); +} #elif defined(_WIN64) && defined(_MSC_VER) inline Square lsb(Bitboard b) { + assert(b); unsigned long idx; _BitScanForward64(&idx, b); return (Square) idx; } inline Square msb(Bitboard b) { + assert(b); unsigned long idx; _BitScanReverse64(&idx, b); return (Square) idx;