From: Marco Costalba Date: Sat, 18 Feb 2012 20:30:33 +0000 (+0100) Subject: Micro-optimize castleRights update X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=821e1c72337e435d805aa2e29743d8b79c9d65a9;ds=sidebyside Micro-optimize castleRights update When updating castleRights in do_move() perform only one 64bit xor with zobCastle[] instead of two. The trick here is to define zobCastle[] keys of composite castling rights as a xor combination of the keys of the single castling rights, instead of 16 independent keys. Idea from Critter although implementation is different. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/position.cpp b/src/position.cpp index 9fa7c729..ef510766 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -843,9 +843,9 @@ void Position::do_move(Move m, StateInfo& newSt, const CheckInfo& ci, bool moveI if ( st->castleRights != CASTLES_NONE && (castleRightsMask[from] & castleRightsMask[to]) != ALL_CASTLES) { - k ^= zobCastle[st->castleRights]; - st->castleRights &= castleRightsMask[from] & castleRightsMask[to]; - k ^= zobCastle[st->castleRights]; + int cr = castleRightsMask[from] & castleRightsMask[to]; + k ^= zobCastle[st->castleRights & (cr ^ ALL_CASTLES)]; + st->castleRights &= cr; } // Prefetch TT access as soon as we know key is updated @@ -1151,9 +1151,9 @@ void Position::do_castle_move(Move m) { } // Update castling rights - st->key ^= zobCastle[st->castleRights]; - st->castleRights &= castleRightsMask[kfrom]; - st->key ^= zobCastle[st->castleRights]; + int cr = castleRightsMask[kfrom]; + st->key ^= zobCastle[st->castleRights & (cr ^ ALL_CASTLES)]; + st->castleRights &= cr; // Update checkers BB st->checkersBB = attackers_to(king_square(~us)) & pieces(us); @@ -1545,8 +1545,15 @@ void Position::init() { for (Square s = SQ_A1; s <= SQ_H8; s++) zobEp[s] = rk.rand(); - for (int i = 0; i < 16; i++) - zobCastle[i] = rk.rand(); + for (int cr = CASTLES_NONE; cr <= ALL_CASTLES; cr++) + { + Bitboard b = cr; + while (b) + { + Key k = zobCastle[1 << pop_1st_bit(&b)]; + zobCastle[cr] ^= k ? k : rk.rand(); + } + } zobSideToMove = rk.rand(); zobExclusion = rk.rand();