]> git.sesse.net Git - stockfish/blob - src/bitboard.h
Simplify previous patch
[stockfish] / src / bitboard.h
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
12   Stockfish is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #if !defined(BITBOARD_H_INCLUDED)
22 #define BITBOARD_H_INCLUDED
23
24 #include "types.h"
25
26 namespace Bitboards {
27
28 void init();
29 void print(Bitboard b);
30
31 }
32
33 namespace Bitbases {
34
35 void init_kpk();
36 bool probe_kpk(Square wksq, Square wpsq, Square bksq, Color us);
37
38 }
39
40 CACHE_LINE_ALIGNMENT
41
42 extern Bitboard RMasks[SQUARE_NB];
43 extern Bitboard RMagics[SQUARE_NB];
44 extern Bitboard* RAttacks[SQUARE_NB];
45 extern unsigned RShifts[SQUARE_NB];
46
47 extern Bitboard BMasks[SQUARE_NB];
48 extern Bitboard BMagics[SQUARE_NB];
49 extern Bitboard* BAttacks[SQUARE_NB];
50 extern unsigned BShifts[SQUARE_NB];
51
52 extern Bitboard SquareBB[SQUARE_NB];
53 extern Bitboard FileBB[FILE_NB];
54 extern Bitboard RankBB[RANK_NB];
55 extern Bitboard AdjacentFilesBB[FILE_NB];
56 extern Bitboard ThisAndAdjacentFilesBB[FILE_NB];
57 extern Bitboard InFrontBB[COLOR_NB][RANK_NB];
58 extern Bitboard StepAttacksBB[PIECE_NB][SQUARE_NB];
59 extern Bitboard BetweenBB[SQUARE_NB][SQUARE_NB];
60 extern Bitboard DistanceRingsBB[SQUARE_NB][8];
61 extern Bitboard ForwardBB[COLOR_NB][SQUARE_NB];
62 extern Bitboard PassedPawnMask[COLOR_NB][SQUARE_NB];
63 extern Bitboard AttackSpanMask[COLOR_NB][SQUARE_NB];
64 extern Bitboard PseudoAttacks[PIECE_TYPE_NB][SQUARE_NB];
65
66 const Bitboard BlackSquares = 0xAA55AA55AA55AA55ULL;
67
68 /// Overloads of bitwise operators between a Bitboard and a Square for testing
69 /// whether a given bit is set in a bitboard, and for setting and clearing bits.
70
71 inline Bitboard operator&(Bitboard b, Square s) {
72   return b & SquareBB[s];
73 }
74
75 inline Bitboard& operator|=(Bitboard& b, Square s) {
76   return b |= SquareBB[s];
77 }
78
79 inline Bitboard& operator^=(Bitboard& b, Square s) {
80   return b ^= SquareBB[s];
81 }
82
83 inline Bitboard operator|(Bitboard b, Square s) {
84   return b | SquareBB[s];
85 }
86
87 inline Bitboard operator^(Bitboard b, Square s) {
88   return b ^ SquareBB[s];
89 }
90
91
92 /// more_than_one() returns true if in 'b' there is more than one bit set
93
94 inline bool more_than_one(Bitboard b) {
95   return b & (b - 1);
96 }
97
98
99 /// rank_bb() and file_bb() take a file or a square as input and return
100 /// a bitboard representing all squares on the given file or rank.
101
102 inline Bitboard rank_bb(Rank r) {
103   return RankBB[r];
104 }
105
106 inline Bitboard rank_bb(Square s) {
107   return RankBB[rank_of(s)];
108 }
109
110 inline Bitboard file_bb(File f) {
111   return FileBB[f];
112 }
113
114 inline Bitboard file_bb(Square s) {
115   return FileBB[file_of(s)];
116 }
117
118
119 /// adjacent_files_bb takes a file as input and returns a bitboard representing
120 /// all squares on the adjacent files.
121
122 inline Bitboard adjacent_files_bb(File f) {
123   return AdjacentFilesBB[f];
124 }
125
126
127 /// this_and_adjacent_files_bb takes a file as input and returns a bitboard
128 /// representing all squares on the given and adjacent files.
129
130 inline Bitboard this_and_adjacent_files_bb(File f) {
131   return ThisAndAdjacentFilesBB[f];
132 }
133
134
135 /// in_front_bb() takes a color and a rank or square as input, and returns a
136 /// bitboard representing all the squares on all ranks in front of the rank
137 /// (or square), from the given color's point of view.  For instance,
138 /// in_front_bb(WHITE, RANK_5) will give all squares on ranks 6, 7 and 8, while
139 /// in_front_bb(BLACK, SQ_D3) will give all squares on ranks 1 and 2.
140
141 inline Bitboard in_front_bb(Color c, Rank r) {
142   return InFrontBB[c][r];
143 }
144
145 inline Bitboard in_front_bb(Color c, Square s) {
146   return InFrontBB[c][rank_of(s)];
147 }
148
149
150 /// between_bb returns a bitboard representing all squares between two squares.
151 /// For instance, between_bb(SQ_C4, SQ_F7) returns a bitboard with the bits for
152 /// square d5 and e6 set.  If s1 and s2 are not on the same line, file or diagonal,
153 /// 0 is returned.
154
155 inline Bitboard between_bb(Square s1, Square s2) {
156   return BetweenBB[s1][s2];
157 }
158
159
160 /// forward_bb takes a color and a square as input, and returns a bitboard
161 /// representing all squares along the line in front of the square, from the
162 /// point of view of the given color. Definition of the table is:
163 /// ForwardBB[c][s] = in_front_bb(c, s) & file_bb(s)
164
165 inline Bitboard forward_bb(Color c, Square s) {
166   return ForwardBB[c][s];
167 }
168
169
170 /// passed_pawn_mask takes a color and a square as input, and returns a
171 /// bitboard mask which can be used to test if a pawn of the given color on
172 /// the given square is a passed pawn. Definition of the table is:
173 /// PassedPawnMask[c][s] = in_front_bb(c, s) & this_and_adjacent_files_bb(s)
174
175 inline Bitboard passed_pawn_mask(Color c, Square s) {
176   return PassedPawnMask[c][s];
177 }
178
179
180 /// attack_span_mask takes a color and a square as input, and returns a bitboard
181 /// representing all squares that can be attacked by a pawn of the given color
182 /// when it moves along its file starting from the given square. Definition is:
183 /// AttackSpanMask[c][s] = in_front_bb(c, s) & adjacent_files_bb(s);
184
185 inline Bitboard attack_span_mask(Color c, Square s) {
186   return AttackSpanMask[c][s];
187 }
188
189
190 /// squares_aligned returns true if the squares s1, s2 and s3 are aligned
191 /// either on a straight or on a diagonal line.
192
193 inline bool squares_aligned(Square s1, Square s2, Square s3) {
194   return  (BetweenBB[s1][s2] | BetweenBB[s1][s3] | BetweenBB[s2][s3])
195         & (     SquareBB[s1] |      SquareBB[s2] |      SquareBB[s3]);
196 }
197
198
199 /// same_color_squares() returns a bitboard representing all squares with
200 /// the same color of the given square.
201
202 inline Bitboard same_color_squares(Square s) {
203   return BlackSquares & s ? BlackSquares : ~BlackSquares;
204 }
205
206
207 /// Functions for computing sliding attack bitboards. Function attacks_bb() takes
208 /// a square and a bitboard of occupied squares as input, and returns a bitboard
209 /// representing all squares attacked by Pt (bishop or rook) on the given square.
210 template<PieceType Pt>
211 FORCE_INLINE unsigned magic_index(Square s, Bitboard occ) {
212
213   Bitboard* const Masks  = Pt == ROOK ? RMasks  : BMasks;
214   Bitboard* const Magics = Pt == ROOK ? RMagics : BMagics;
215   unsigned* const Shifts = Pt == ROOK ? RShifts : BShifts;
216
217   if (Is64Bit)
218       return unsigned(((occ & Masks[s]) * Magics[s]) >> Shifts[s]);
219
220   unsigned lo = unsigned(occ) & unsigned(Masks[s]);
221   unsigned hi = unsigned(occ >> 32) & unsigned(Masks[s] >> 32);
222   return (lo * unsigned(Magics[s]) ^ hi * unsigned(Magics[s] >> 32)) >> Shifts[s];
223 }
224
225 template<PieceType Pt>
226 inline Bitboard attacks_bb(Square s, Bitboard occ) {
227   return (Pt == ROOK ? RAttacks : BAttacks)[s][magic_index<Pt>(s, occ)];
228 }
229
230
231 /// lsb()/msb() finds the least/most significant bit in a nonzero bitboard.
232 /// pop_lsb() finds and clears the least significant bit in a nonzero bitboard.
233
234 #if defined(USE_BSFQ)
235
236 #  if defined(_MSC_VER) && !defined(__INTEL_COMPILER)
237
238 FORCE_INLINE Square lsb(Bitboard b) {
239   unsigned long index;
240   _BitScanForward64(&index, b);
241   return (Square) index;
242 }
243
244 FORCE_INLINE Square msb(Bitboard b) {
245   unsigned long index;
246   _BitScanReverse64(&index, b);
247   return (Square) index;
248 }
249
250 #  elif defined(__arm__)
251
252 FORCE_INLINE int lsb32(uint32_t v) {
253   __asm__("rbit %0, %1" : "=r"(v) : "r"(v));
254   return __builtin_clz(v);
255 }
256
257 FORCE_INLINE Square msb(Bitboard b) {
258   return (Square) (63 - __builtin_clzll(b));
259 }
260
261 FORCE_INLINE Square lsb(Bitboard b) {
262   return (Square) (uint32_t(b) ? lsb32(uint32_t(b)) : 32 + lsb32(uint32_t(b >> 32)));
263 }
264
265 #  else
266
267 FORCE_INLINE Square lsb(Bitboard b) { // Assembly code by Heinz van Saanen
268   Bitboard index;
269   __asm__("bsfq %1, %0": "=r"(index): "rm"(b) );
270   return (Square) index;
271 }
272
273 FORCE_INLINE Square msb(Bitboard b) {
274   Bitboard index;
275   __asm__("bsrq %1, %0": "=r"(index): "rm"(b) );
276   return (Square) index;
277 }
278
279 #  endif
280
281 FORCE_INLINE Square pop_lsb(Bitboard* b) {
282   const Square s = lsb(*b);
283   *b &= *b - 1;
284   return s;
285 }
286
287 #else // if !defined(USE_BSFQ)
288
289 extern Square msb(Bitboard b);
290 extern Square lsb(Bitboard b);
291 extern Square pop_lsb(Bitboard* b);
292
293 #endif
294
295 #endif // !defined(BITBOARD_H_INCLUDED)