]> git.sesse.net Git - stockfish/blob - src/types.h
Parse halfmove clock and fullmove number from FEN
[stockfish] / src / types.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-2010 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 #if !defined(TYPES_H_INCLUDED)
21 #define TYPES_H_INCLUDED
22
23 #if !defined(_MSC_VER)
24
25 #include <inttypes.h>
26
27 #else
28
29 // Disable some silly and noisy warning from MSVC compiler
30 #pragma warning(disable: 4800) // Forcing value to bool 'true' or 'false'
31 #pragma warning(disable: 4127) // Conditional expression is constant
32
33 typedef __int8 int8_t;
34 typedef unsigned __int8 uint8_t;
35 typedef __int16 int16;
36 typedef unsigned __int16 uint16_t;
37 typedef __int32 int32_t;
38 typedef unsigned __int32 uint32_t;
39 typedef __int64 int64_t;
40 typedef unsigned __int64 uint64_t;
41
42 typedef __int16 int16_t;
43 typedef __int64 int64_t;
44
45 #endif // !defined(_MSC_VER)
46
47 // Hash keys
48 typedef uint64_t Key;
49
50 // Bitboard type
51 typedef uint64_t Bitboard;
52
53 #include <cstdlib>
54
55 ////
56 //// Configuration
57 ////
58
59 //// For Linux and OSX configuration is done automatically using Makefile.
60 //// To get started type "make help".
61 ////
62 //// For windows part of the configuration is detected automatically, but
63 //// some switches need to be set manually:
64 ////
65 //// -DNDEBUG       | Disable debugging mode. Use always.
66 ////
67 //// -DNO_PREFETCH  | Disable use of prefetch asm-instruction. A must if you want the
68 ////                | executable to run on some very old machines.
69 ////
70 //// -DUSE_POPCNT   | Add runtime support for use of popcnt asm-instruction.
71 ////                | Works only in 64-bit mode. For compiling requires hardware
72 ////                | with popcnt support. Around 4% speed-up.
73 ////
74 //// -DOLD_LOCKS    | By default under Windows are used the fast Slim Reader/Writer (SRW)
75 ////                | Locks and Condition Variables: these are not supported by Windows XP
76 ////                | and older, to compile for those platforms you should enable OLD_LOCKS.
77
78 // Automatic detection for 64-bit under Windows
79 #if defined(_WIN64)
80 #define IS_64BIT
81 #endif
82
83 // Automatic detection for use of bsfq asm-instruction under Windows.
84 // Works only in 64-bit mode. Does not work with MSVC.
85 #if defined(_WIN64) && defined(__INTEL_COMPILER)
86 #define USE_BSFQ
87 #endif
88
89 // Intel header for _mm_popcnt_u64() intrinsic
90 #if defined(USE_POPCNT) && defined(_MSC_VER) && defined(__INTEL_COMPILER)
91 #include <nmmintrin.h>
92 #endif
93
94 // Cache line alignment specification
95 #if defined(_MSC_VER) || defined(__INTEL_COMPILER)
96 #define CACHE_LINE_ALIGNMENT __declspec(align(64))
97 #else
98 #define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(64)))
99 #endif
100
101 // Define a __cpuid() function for gcc compilers, for Intel and MSVC
102 // is already available as an intrinsic.
103 #if defined(_MSC_VER)
104 #include <intrin.h>
105 #elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
106 inline void __cpuid(int CPUInfo[4], int InfoType)
107 {
108   int* eax = CPUInfo + 0;
109   int* ebx = CPUInfo + 1;
110   int* ecx = CPUInfo + 2;
111   int* edx = CPUInfo + 3;
112
113   *eax = InfoType;
114   *ecx = 0;
115   __asm__("cpuid" : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
116                   : "0" (*eax), "2" (*ecx));
117 }
118 #else
119 inline void __cpuid(int CPUInfo[4], int)
120 {
121    CPUInfo[0] = CPUInfo[1] = CPUInfo[2] = CPUInfo[3] = 0;
122 }
123 #endif
124
125 // Operators used by enum types like Depth, Piece, Square and so on.
126
127 #define ENABLE_OPERATORS_ON(T) \
128 inline T operator+ (const T d1, const T d2) { return T(int(d1) + int(d2)); } \
129 inline T operator- (const T d1, const T d2) { return T(int(d1) - int(d2)); } \
130 inline T operator* (int i, const T d) {  return T(i * int(d)); } \
131 inline T operator* (const T d, int i) {  return T(int(d) * i); } \
132 inline T operator/ (const T d, int i) { return T(int(d) / i); } \
133 inline T operator- (const T d) { return T(-int(d)); } \
134 inline T operator++ (T& d, int) {d = T(int(d) + 1); return d; } \
135 inline T operator-- (T& d, int) { d = T(int(d) - 1); return d; } \
136 inline void operator+= (T& d1, const T d2) { d1 = d1 + d2; } \
137 inline void operator-= (T& d1, const T d2) { d1 = d1 - d2; } \
138 inline void operator*= (T& d, int i) { d = T(int(d) * i); } \
139 inline void operator/= (T& d, int i) { d = T(int(d) / i); }
140
141 #endif // !defined(TYPES_H_INCLUDED)