]> git.sesse.net Git - stockfish/blob - src/misc.cpp
9189e327fd1f49b2048e9a515e53ffc70c2bd6aa
[stockfish] / src / misc.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-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(_MSC_VER)
21
22 #define _CRT_SECURE_NO_DEPRECATE
23 #define NOMINMAX // disable macros min() and max()
24 #include <windows.h>
25 #include <sys/timeb.h>
26
27 #else
28
29 #  include <sys/time.h>
30 #  include <sys/types.h>
31 #  include <unistd.h>
32 #  if defined(__hpux)
33 #     include <sys/pstat.h>
34 #  endif
35
36 #endif
37
38 #if !defined(NO_PREFETCH)
39 #  include <xmmintrin.h>
40 #endif
41
42 #include <cassert>
43 #include <cstdio>
44 #include <iomanip>
45 #include <iostream>
46 #include <sstream>
47 #include <algorithm>
48
49 #include "bitcount.h"
50 #include "misc.h"
51 #include "thread.h"
52
53 using namespace std;
54
55 /// Version number. If EngineVersion is left empty, then AppTag plus
56 /// current date (in the format YYMMDD) is used as a version number.
57
58 static const string AppName = "Stockfish";
59 static const string EngineVersion = "";
60 static const string AppTag  = "";
61
62
63 /// engine_name() returns the full name of the current Stockfish version.
64 /// This will be either "Stockfish YYMMDD" (where YYMMDD is the date when
65 /// the program was compiled) or "Stockfish <version number>", depending
66 /// on whether the constant EngineVersion is empty.
67
68 const string engine_name() {
69
70   const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
71   const string cpu64(Is64Bit ? " 64bit" : "");
72   const string popcnt(HasPopCnt ? " SSE4.2" : "");
73
74   if (!EngineVersion.empty())
75       return AppName + " " + EngineVersion + cpu64 + popcnt;
76
77   stringstream s, date(__DATE__); // From compiler, format is "Sep 21 2008"
78   string month, day, year;
79
80   date >> month >> day >> year;
81
82   s << AppName + " " + AppTag + " "
83     << setfill('0') << year.substr(2)
84     << setw(2) << (1 + months.find(month) / 4)
85     << setw(2) << day << cpu64 << popcnt;
86
87   return s.str();
88 }
89
90
91 /// Our brave developers! Required by UCI
92
93 const string engine_authors() {
94
95   return "Tord Romstad, Marco Costalba and Joona Kiiski";
96 }
97
98
99 /// Debug stuff. Helper functions used mainly for debugging purposes
100
101 static uint64_t dbg_hit_cnt0;
102 static uint64_t dbg_hit_cnt1;
103 static uint64_t dbg_mean_cnt0;
104 static uint64_t dbg_mean_cnt1;
105
106 void dbg_print_hit_rate() {
107
108   if (dbg_hit_cnt0)
109       cerr << "Total " << dbg_hit_cnt0 << " Hit " << dbg_hit_cnt1
110            << " hit rate (%) " << 100 * dbg_hit_cnt1 / dbg_hit_cnt0 << endl;
111 }
112
113 void dbg_print_mean() {
114
115   if (dbg_mean_cnt0)
116       cerr << "Total " << dbg_mean_cnt0 << " Mean "
117            << (float)dbg_mean_cnt1 / dbg_mean_cnt0 << endl;
118 }
119
120 void dbg_mean_of(int v) {
121
122   dbg_mean_cnt0++;
123   dbg_mean_cnt1 += v;
124 }
125
126 void dbg_hit_on(bool b) {
127
128   dbg_hit_cnt0++;
129   if (b)
130       dbg_hit_cnt1++;
131 }
132
133 void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
134 void dbg_before() { dbg_hit_on(false); }
135 void dbg_after()  { dbg_hit_on(true); dbg_hit_cnt0--; }
136
137
138 /// system_time() returns the current system time, measured in milliseconds
139
140 int system_time() {
141
142 #if defined(_MSC_VER)
143   struct _timeb t;
144   _ftime(&t);
145   return int(t.time * 1000 + t.millitm);
146 #else
147   struct timeval t;
148   gettimeofday(&t, NULL);
149   return t.tv_sec * 1000 + t.tv_usec / 1000;
150 #endif
151 }
152
153
154 /// cpu_count() tries to detect the number of CPU cores
155
156 int cpu_count() {
157
158 #if defined(_MSC_VER)
159   SYSTEM_INFO s;
160   GetSystemInfo(&s);
161   return std::min(int(s.dwNumberOfProcessors), MAX_THREADS);
162 #else
163
164 #  if defined(_SC_NPROCESSORS_ONLN)
165   return std::min((int)sysconf(_SC_NPROCESSORS_ONLN), MAX_THREADS);
166 #  elif defined(__hpux)
167   struct pst_dynamic psd;
168   if (pstat_getdynamic(&psd, sizeof(psd), (size_t)1, 0) == -1)
169       return 1;
170   return std::min((int)psd.psd_proc_cnt, MAX_THREADS);
171 #  else
172   return 1;
173 #  endif
174
175 #endif
176 }
177
178
179 /// timed_wait() waits for msec milliseconds. It is mainly an helper to wrap
180 /// conversion from milliseconds to struct timespec, as used by pthreads.
181
182 void timed_wait(WaitCondition* sleepCond, Lock* sleepLock, int msec) {
183
184 #if defined(_MSC_VER)
185   int tm = msec;
186 #else
187   struct timeval t;
188   struct timespec abstime, *tm = &abstime;
189
190   gettimeofday(&t, NULL);
191
192   abstime.tv_sec = t.tv_sec + (msec / 1000);
193   abstime.tv_nsec = (t.tv_usec + (msec % 1000) * 1000) * 1000;
194
195   if (abstime.tv_nsec > 1000000000LL)
196   {
197       abstime.tv_sec += 1;
198       abstime.tv_nsec -= 1000000000LL;
199   }
200 #endif
201
202   cond_timedwait(sleepCond, sleepLock, tm);
203 }
204
205
206 /// prefetch() preloads the given address in L1/L2 cache. This is a non
207 /// blocking function and do not stalls the CPU waiting for data to be
208 /// loaded from memory, that can be quite slow.
209 #if defined(NO_PREFETCH)
210
211 void prefetch(char*) {}
212
213 #else
214
215 void prefetch(char* addr) {
216
217 #if defined(__INTEL_COMPILER) || defined(__ICL)
218    // This hack prevents prefetches to be optimized away by
219    // Intel compiler. Both MSVC and gcc seems not affected.
220    __asm__ ("");
221 #endif
222
223   _mm_prefetch(addr, _MM_HINT_T2);
224   _mm_prefetch(addr+64, _MM_HINT_T2); // 64 bytes ahead
225 }
226
227 #endif