]> git.sesse.net Git - stockfish/blob - src/bitboard.cpp
Reduce negative quiets by ONE_PLY / 2
[stockfish] / src / bitboard.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2013 Marco Costalba, Joona Kiiski, Tord Romstad
5
6   Stockfish is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Stockfish is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <algorithm>
21 #include <cstring>
22 #include <iostream>
23
24 #include "bitboard.h"
25 #include "bitcount.h"
26 #include "misc.h"
27 #include "rkiss.h"
28
29 CACHE_LINE_ALIGNMENT
30
31 Bitboard RMasks[SQUARE_NB];
32 Bitboard RMagics[SQUARE_NB];
33 Bitboard* RAttacks[SQUARE_NB];
34 unsigned RShifts[SQUARE_NB];
35
36 Bitboard BMasks[SQUARE_NB];
37 Bitboard BMagics[SQUARE_NB];
38 Bitboard* BAttacks[SQUARE_NB];
39 unsigned BShifts[SQUARE_NB];
40
41 Bitboard SquareBB[SQUARE_NB];
42 Bitboard FileBB[FILE_NB];
43 Bitboard RankBB[RANK_NB];
44 Bitboard AdjacentFilesBB[FILE_NB];
45 Bitboard InFrontBB[COLOR_NB][RANK_NB];
46 Bitboard StepAttacksBB[PIECE_NB][SQUARE_NB];
47 Bitboard BetweenBB[SQUARE_NB][SQUARE_NB];
48 Bitboard DistanceRingsBB[SQUARE_NB][8];
49 Bitboard ForwardBB[COLOR_NB][SQUARE_NB];
50 Bitboard PassedPawnMask[COLOR_NB][SQUARE_NB];
51 Bitboard PawnAttackSpan[COLOR_NB][SQUARE_NB];
52 Bitboard PseudoAttacks[PIECE_TYPE_NB][SQUARE_NB];
53
54 int SquareDistance[SQUARE_NB][SQUARE_NB];
55
56 namespace {
57
58   // De Bruijn sequences. See chessprogramming.wikispaces.com/BitScan
59   const uint64_t DeBruijn_64 = 0x3F79D71B4CB0A89ULL;
60   const uint32_t DeBruijn_32 = 0x783A9B23;
61
62   CACHE_LINE_ALIGNMENT
63
64   int MS1BTable[256];
65   Square BSFTable[SQUARE_NB];
66   Bitboard RTable[0x19000]; // Storage space for rook attacks
67   Bitboard BTable[0x1480];  // Storage space for bishop attacks
68
69   typedef unsigned (Fn)(Square, Bitboard);
70
71   void init_magics(Bitboard table[], Bitboard* attacks[], Bitboard magics[],
72                    Bitboard masks[], unsigned shifts[], Square deltas[], Fn index);
73
74   FORCE_INLINE unsigned bsf_index(Bitboard b) {
75
76     // Matt Taylor's folding for 32 bit systems, extended to 64 bits by Kim Walisch
77     b ^= (b - 1);
78     return Is64Bit ? (b * DeBruijn_64) >> 58
79                    : ((unsigned(b) ^ unsigned(b >> 32)) * DeBruijn_32) >> 26;
80   }
81 }
82
83 /// lsb()/msb() finds the least/most significant bit in a nonzero bitboard.
84 /// pop_lsb() finds and clears the least significant bit in a nonzero bitboard.
85
86 #ifndef USE_BSFQ
87
88 Square lsb(Bitboard b) { return BSFTable[bsf_index(b)]; }
89
90 Square pop_lsb(Bitboard* b) {
91
92   Bitboard bb = *b;
93   *b = bb & (bb - 1);
94   return BSFTable[bsf_index(bb)];
95 }
96
97 Square msb(Bitboard b) {
98
99   unsigned b32;
100   int result = 0;
101
102   if (b > 0xFFFFFFFF)
103   {
104       b >>= 32;
105       result = 32;
106   }
107
108   b32 = unsigned(b);
109
110   if (b32 > 0xFFFF)
111   {
112       b32 >>= 16;
113       result += 16;
114   }
115
116   if (b32 > 0xFF)
117   {
118       b32 >>= 8;
119       result += 8;
120   }
121
122   return (Square)(result + MS1BTable[b32]);
123 }
124
125 #endif // ifndef USE_BSFQ
126
127
128 /// Bitboards::print() prints a bitboard in an easily readable format to the
129 /// standard output. This is sometimes useful for debugging.
130
131 void Bitboards::print(Bitboard b) {
132
133   sync_cout;
134
135   for (Rank rank = RANK_8; rank >= RANK_1; --rank)
136   {
137       std::cout << "+---+---+---+---+---+---+---+---+" << '\n';
138
139       for (File file = FILE_A; file <= FILE_H; ++file)
140           std::cout << "| " << (b & (file | rank) ? "X " : "  ");
141
142       std::cout << "|\n";
143   }
144   std::cout << "+---+---+---+---+---+---+---+---+" << sync_endl;
145 }
146
147
148 /// Bitboards::init() initializes various bitboard arrays. It is called during
149 /// program initialization.
150
151 void Bitboards::init() {
152
153   for (int k = 0, i = 0; i < 8; ++i)
154       while (k < (2 << i))
155           MS1BTable[k++] = i;
156
157   for (int i = 0; i < 64; ++i)
158       BSFTable[bsf_index(1ULL << i)] = Square(i);
159
160   for (Square s = SQ_A1; s <= SQ_H8; ++s)
161       SquareBB[s] = 1ULL << s;
162
163   FileBB[FILE_A] = FileABB;
164   RankBB[RANK_1] = Rank1BB;
165
166   for (int i = 1; i < 8; ++i)
167   {
168       FileBB[i] = FileBB[i - 1] << 1;
169       RankBB[i] = RankBB[i - 1] << 8;
170   }
171
172   for (File f = FILE_A; f <= FILE_H; ++f)
173       AdjacentFilesBB[f] = (f > FILE_A ? FileBB[f - 1] : 0) | (f < FILE_H ? FileBB[f + 1] : 0);
174
175   for (Rank r = RANK_1; r < RANK_8; ++r)
176       InFrontBB[WHITE][r] = ~(InFrontBB[BLACK][r + 1] = InFrontBB[BLACK][r] | RankBB[r]);
177
178   for (Color c = WHITE; c <= BLACK; ++c)
179       for (Square s = SQ_A1; s <= SQ_H8; ++s)
180       {
181           ForwardBB[c][s]      = InFrontBB[c][rank_of(s)] & FileBB[file_of(s)];
182           PawnAttackSpan[c][s] = InFrontBB[c][rank_of(s)] & AdjacentFilesBB[file_of(s)];
183           PassedPawnMask[c][s] = ForwardBB[c][s] | PawnAttackSpan[c][s];
184       }
185
186   for (Square s1 = SQ_A1; s1 <= SQ_H8; ++s1)
187       for (Square s2 = SQ_A1; s2 <= SQ_H8; ++s2)
188       {
189           SquareDistance[s1][s2] = std::max(file_distance(s1, s2), rank_distance(s1, s2));
190           if (s1 != s2)
191              DistanceRingsBB[s1][SquareDistance[s1][s2] - 1] |= s2;
192       }
193
194   int steps[][9] = { {}, { 7, 9 }, { 17, 15, 10, 6, -6, -10, -15, -17 },
195                      {}, {}, {}, { 9, 7, -7, -9, 8, 1, -1, -8 } };
196
197   for (Color c = WHITE; c <= BLACK; ++c)
198       for (PieceType pt = PAWN; pt <= KING; ++pt)
199           for (Square s = SQ_A1; s <= SQ_H8; ++s)
200               for (int k = 0; steps[pt][k]; k++)
201               {
202                   Square to = s + Square(c == WHITE ? steps[pt][k] : -steps[pt][k]);
203
204                   if (is_ok(to) && square_distance(s, to) < 3)
205                       StepAttacksBB[make_piece(c, pt)][s] |= to;
206               }
207
208   Square RDeltas[] = { DELTA_N,  DELTA_E,  DELTA_S,  DELTA_W  };
209   Square BDeltas[] = { DELTA_NE, DELTA_SE, DELTA_SW, DELTA_NW };
210
211   init_magics(RTable, RAttacks, RMagics, RMasks, RShifts, RDeltas, magic_index<ROOK>);
212   init_magics(BTable, BAttacks, BMagics, BMasks, BShifts, BDeltas, magic_index<BISHOP>);
213
214   for (Square s = SQ_A1; s <= SQ_H8; ++s)
215   {
216       PseudoAttacks[QUEEN][s]  = PseudoAttacks[BISHOP][s] = attacks_bb<BISHOP>(s, 0);
217       PseudoAttacks[QUEEN][s] |= PseudoAttacks[  ROOK][s] = attacks_bb<  ROOK>(s, 0);
218   }
219
220   for (Square s1 = SQ_A1; s1 <= SQ_H8; ++s1)
221       for (Square s2 = SQ_A1; s2 <= SQ_H8; ++s2)
222           if (PseudoAttacks[QUEEN][s1] & s2)
223           {
224               Square delta = (s2 - s1) / square_distance(s1, s2);
225
226               for (Square s = s1 + delta; s != s2; s += delta)
227                   BetweenBB[s1][s2] |= s;
228           }
229 }
230
231
232 namespace {
233
234   Bitboard sliding_attack(Square deltas[], Square sq, Bitboard occupied) {
235
236     Bitboard attack = 0;
237
238     for (int i = 0; i < 4; ++i)
239         for (Square s = sq + deltas[i];
240              is_ok(s) && square_distance(s, s - deltas[i]) == 1;
241              s += deltas[i])
242         {
243             attack |= s;
244
245             if (occupied & s)
246                 break;
247         }
248
249     return attack;
250   }
251
252
253   Bitboard pick_random(RKISS& rk, int booster) {
254
255     // Values s1 and s2 are used to rotate the candidate magic of a
256     // quantity known to be the optimal to quickly find the magics.
257     int s1 = booster & 63, s2 = (booster >> 6) & 63;
258
259     Bitboard m = rk.rand<Bitboard>();
260     m = (m >> s1) | (m << (64 - s1));
261     m &= rk.rand<Bitboard>();
262     m = (m >> s2) | (m << (64 - s2));
263     return m & rk.rand<Bitboard>();
264   }
265
266
267   // init_magics() computes all rook and bishop attacks at startup. Magic
268   // bitboards are used to look up attacks of sliding pieces. As a reference see
269   // chessprogramming.wikispaces.com/Magic+Bitboards. In particular, here we
270   // use the so called "fancy" approach.
271
272   void init_magics(Bitboard table[], Bitboard* attacks[], Bitboard magics[],
273                    Bitboard masks[], unsigned shifts[], Square deltas[], Fn index) {
274
275     int MagicBoosters[][8] = { { 3191, 2184, 1310, 3618, 2091, 1308, 2452, 3996 },
276                                { 1059, 3608,  605, 3234, 3326,   38, 2029, 3043 } };
277     RKISS rk;
278     Bitboard occupancy[4096], reference[4096], edges, b;
279     int i, size, booster;
280
281     // attacks[s] is a pointer to the beginning of the attacks table for square 's'
282     attacks[SQ_A1] = table;
283
284     for (Square s = SQ_A1; s <= SQ_H8; ++s)
285     {
286         // Board edges are not considered in the relevant occupancies
287         edges = ((Rank1BB | Rank8BB) & ~rank_bb(s)) | ((FileABB | FileHBB) & ~file_bb(s));
288
289         // Given a square 's', the mask is the bitboard of sliding attacks from
290         // 's' computed on an empty board. The index must be big enough to contain
291         // all the attacks for each possible subset of the mask and so is 2 power
292         // the number of 1s of the mask. Hence we deduce the size of the shift to
293         // apply to the 64 or 32 bits word to get the index.
294         masks[s]  = sliding_attack(deltas, s, 0) & ~edges;
295         shifts[s] = (Is64Bit ? 64 : 32) - popcount<Max15>(masks[s]);
296
297         // Use Carry-Rippler trick to enumerate all subsets of masks[s] and
298         // store the corresponding sliding attack bitboard in reference[].
299         b = size = 0;
300         do {
301             occupancy[size] = b;
302             reference[size++] = sliding_attack(deltas, s, b);
303             b = (b - masks[s]) & masks[s];
304         } while (b);
305
306         // Set the offset for the table of the next square. We have individual
307         // table sizes for each square with "Fancy Magic Bitboards".
308         if (s < SQ_H8)
309             attacks[s + 1] = attacks[s] + size;
310
311         booster = MagicBoosters[Is64Bit][rank_of(s)];
312
313         // Find a magic for square 's' picking up an (almost) random number
314         // until we find the one that passes the verification test.
315         do {
316             do magics[s] = pick_random(rk, booster);
317             while (popcount<Max15>((magics[s] * masks[s]) >> 56) < 6);
318
319             std::memset(attacks[s], 0, size * sizeof(Bitboard));
320
321             // A good magic must map every possible occupancy to an index that
322             // looks up the correct sliding attack in the attacks[s] database.
323             // Note that we build up the database for square 's' as a side
324             // effect of verifying the magic.
325             for (i = 0; i < size; ++i)
326             {
327                 Bitboard& attack = attacks[s][index(s, occupancy[i])];
328
329                 if (attack && attack != reference[i])
330                     break;
331
332                 assert(reference[i] != 0);
333
334                 attack = reference[i];
335             }
336         } while (i != size);
337     }
338   }
339 }