]> git.sesse.net Git - stockfish/blob - src/types.h
Do not initialize ss->reduction to zero in the beginning of node
[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
21 #if !defined(TYPES_H_INCLUDED)
22 #define TYPES_H_INCLUDED
23
24 #if !defined(_MSC_VER)
25
26 #include <inttypes.h>
27
28 #else
29
30 typedef __int8 int8_t;
31 typedef unsigned __int8 uint8_t;
32 typedef __int16 int16;
33 typedef unsigned __int16 uint16_t;
34 typedef __int32 int32_t;
35 typedef unsigned __int32 uint32_t;
36 typedef __int64 int64_t;
37 typedef unsigned __int64 uint64_t;
38
39 typedef __int16 int16_t;
40 typedef __int64 int64_t;
41
42 #endif // !defined(_MSC_VER)
43
44 // Hash keys
45 typedef uint64_t Key;
46
47 // Bitboard type
48 typedef uint64_t Bitboard;
49
50
51 ////
52 //// Configuration
53 ////
54
55 //// For Linux and OSX configuration is done automatically using Makefile.
56 //// To get started type "make help".
57 ////
58 //// For windows part of the configuration is detected automatically, but
59 //// some switches need to be set manually:
60 ////
61 //// -DNDEBUG       | Disable debugging mode. Use always.
62 ////
63 //// -DNO_PREFETCH  | Disable use of prefetch asm-instruction. A must if you want the
64 ////                | executable to run on some very old machines.
65 ////
66 //// -DUSE_POPCNT   | Add runtime support for use of popcnt asm-instruction.
67 ////                | Works only in 64-bit mode. For compiling requires hardware
68 ////                | with popcnt support. Around 4% speed-up.
69
70 // Automatic detection for 64-bit under Windows
71 #if defined(_WIN64)
72 #define IS_64BIT
73 #endif
74
75 // Automatic detection for use of bsfq asm-instruction under Windows.
76 // Works only in 64-bit mode. Does not work with MSVC.
77 #if defined(_WIN64) && defined(__INTEL_COMPILER)
78 #define USE_BSFQ
79 #endif
80
81 // Cache line alignment specification
82 #if defined(_MSC_VER) || defined(__INTEL_COMPILER)
83 #define CACHE_LINE_ALIGNMENT __declspec(align(64))
84 #else
85 #define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(64)))
86 #endif
87
88 // Define a __cpuid() function for gcc compilers, for Intel and MSVC
89 // is already available as an intrinsic.
90 #if defined(_MSC_VER)
91 #include <intrin.h>
92 #elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
93 inline void __cpuid(int CPUInfo[4], int InfoType)
94 {
95   int* eax = CPUInfo + 0;
96   int* ebx = CPUInfo + 1;
97   int* ecx = CPUInfo + 2;
98   int* edx = CPUInfo + 3;
99
100   *eax = InfoType;
101   *ecx = 0;
102   __asm__("cpuid" : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
103                   : "0" (*eax), "2" (*ecx));
104 }
105 #else
106 inline void __cpuid(int CPUInfo[4], int)
107 {
108    CPUInfo[0] = CPUInfo[1] = CPUInfo[2] = CPUInfo[3] = 0;
109 }
110 #endif
111
112 #endif // !defined(TYPES_H_INCLUDED)