]> git.sesse.net Git - stockfish/commitdiff
Use bsfq asm instruction to count bits
authorMarco Costalba <mcostalba@gmail.com>
Fri, 3 Jul 2009 07:28:13 +0000 (08:28 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Fri, 3 Jul 2009 08:18:14 +0000 (10:18 +0200)
On 64 bit systems we can use bsfq instruction to count
set bits in a bitboard.

This is a patch for GCC and Intel compilers to take advantage
of that and get a 2% speed up.

Original patch from Heinz van Saanen, adapted to current tree
by me.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/bitboard.cpp
src/bitboard.h

index ba03d66ef85669cfe4d9f3c8ddf3fa19e272d99c..0bdb9d3ae627bf1793d5cf450fb814f50360b5bd 100644 (file)
@@ -161,7 +161,7 @@ const int RShift[64] = {
   21, 22, 22, 22, 22, 22, 22, 21, 20, 21, 21, 21, 21, 21, 21, 20
 };
 
-#endif
+#endif // defined(IS_64BIT)
 
 
 Bitboard RMask[64];
@@ -245,16 +245,16 @@ void init_bitboards() {
 /// pop_1st_bit() finds and clears the least significant nonzero bit in a
 /// nonzero bitboard.
 
-#if defined(IS_64BIT)
+#if defined(IS_64BIT) && !defined(USE_BSFQ)
 
-Square pop_1st_bit(Bitboard *b) {
+Square pop_1st_bit(Bitboardb) {
   Bitboard bb = *b ^ (*b - 1);
   uint32_t fold = int(bb) ^ int(bb >> 32);
   *b &= (*b - 1);
   return Square(BitTable[(fold * 0x783a9b23) >> 26]);
 }
 
-#else
+#elif !defined(USE_BSFQ)
 
 // Use type-punning
 union b_union {
@@ -267,7 +267,7 @@ union b_union {
 };
 
 // WARNING: Needs -fno-strict-aliasing compiler option
-Square pop_1st_bit(Bitboard *bb) {
+Square pop_1st_bit(Bitboardbb) {
 
   b_union u;
   uint32_t b;
index 3429c42ea02a0146fe05c767634ef346d7a96396..d5c16a919006f75caf3ddd44ae0c406c3a5440dc 100644 (file)
 #define IS_64BIT
 #endif
 
+#if defined(IS_64BIT) && (defined(__GNUC__) || defined(__INTEL_COMPILER))
+#define USE_BSFQ
+#endif
+
+
 ////
 //// Includes
 ////
@@ -383,14 +388,24 @@ inline Bitboard isolated_pawn_mask(Square s) {
 
 
 /// first_1() finds the least significant nonzero bit in a nonzero bitboard.
+/// pop_1st_bit() finds and clears the least significant nonzero bit in a
+/// nonzero bitboard.
 
-#if defined(IS_64BIT)
+#if defined(USE_BSFQ) // Assembly code by Heinz van Saanen
 
-inline Square first_1(Bitboard b) {
-  return Square(BitTable[((b & -b) * 0x218a392cd3d5dbfULL) >> 58]);
+inline Square __attribute__((always_inline)) first_1(Bitboard b) {
+  Bitboard dummy;
+  __asm__("bsfq %1, %0": "=r"(dummy): "rm"(b) );
+  return (Square)(dummy);
+}
+
+inline Square __attribute__((always_inline)) pop_1st_bit(Bitboard* b) {
+  const Square s = first_1(*b);
+  *b &= ~(1ULL<<s);
+  return s;
 }
 
-#else
+#else // if !defined(USE_BSFQ)
 
 inline Square first_1(Bitboard b) {
   b ^= (b - 1);
@@ -398,6 +413,8 @@ inline Square first_1(Bitboard b) {
   return Square(BitTable[(fold * 0x783a9b23) >> 26]);
 }
 
+extern Square pop_1st_bit(Bitboard* b);
+
 #endif
 
 
@@ -407,7 +424,6 @@ inline Square first_1(Bitboard b) {
 
 extern void print_bitboard(Bitboard b);
 extern void init_bitboards();
-extern Square pop_1st_bit(Bitboard *b);
 
 
 #endif // !defined(BITBOARD_H_INCLUDED)