]> git.sesse.net Git - stockfish/blob - src/misc.cpp
0db22dd2b39ca3f043e3fe905c5c074233495470
[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-2012 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(_WIN32) || defined(_WIN64)
21
22 #define NOMINMAX // disable macros min() and max()
23 #include <windows.h>
24
25 #else
26
27 #  include <unistd.h>
28 #  if defined(__hpux)
29 #     include <sys/pstat.h>
30 #  endif
31
32 #endif
33
34 #if !defined(NO_PREFETCH)
35 #  include <xmmintrin.h>
36 #endif
37
38 #include <algorithm>
39 #include <iomanip>
40 #include <iostream>
41 #include <sstream>
42 #include <streambuf>
43
44 #include "misc.h"
45 #include "thread.h"
46
47 using namespace std;
48
49 /// Version number. If Version is left empty, then Tag plus current
50 /// date (in the format YYMMDD) is used as a version number.
51
52 static const string Version = "";
53 static const string Tag = "";
54
55
56 /// engine_info() returns the full name of the current Stockfish version.
57 /// This will be either "Stockfish YYMMDD" (where YYMMDD is the date when
58 /// the program was compiled) or "Stockfish <version number>", depending
59 /// on whether Version is empty.
60
61 const string engine_info(bool to_uci) {
62
63   const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
64   const string cpu64(Is64Bit ? " 64bit" : "");
65   const string popcnt(HasPopCnt ? " SSE4.2" : "");
66
67   string month, day, year;
68   stringstream s, date(__DATE__); // From compiler, format is "Sep 21 2008"
69
70   if (Version.empty())
71   {
72       date >> month >> day >> year;
73
74       s << "Stockfish " << Tag
75         << setfill('0') << " " << year.substr(2)
76         << setw(2) << (1 + months.find(month) / 4)
77         << setw(2) << day;
78   }
79   else
80       s << "Stockfish " << Version;
81
82   s << cpu64 << popcnt << (to_uci ? "\nid author ": " by ")
83     << "Tord Romstad, Marco Costalba and Joona Kiiski";
84
85   return s.str();
86 }
87
88
89 /// Debug functions used mainly to collect run-time statistics
90
91 static uint64_t hits[2], means[2];
92
93 void dbg_hit_on(bool b) { hits[0]++; if (b) hits[1]++; }
94 void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
95 void dbg_mean_of(int v) { means[0]++; means[1] += v; }
96
97 void dbg_print() {
98
99   if (hits[0])
100       cerr << "Total " << hits[0] << " Hits " << hits[1]
101            << " hit rate (%) " << 100 * hits[1] / hits[0] << endl;
102
103   if (means[0])
104       cerr << "Total " << means[0] << " Mean "
105            << (float)means[1] / means[0] << endl;
106 }
107
108
109 /// Our fancy logging facility. The trick here is to replace cout.rdbuf() with
110 /// this one that sends the output both to console and to a file, this allow us
111 /// to toggle the logging of std::cout to a file while preserving output to
112 /// stdout and without changing a single line of code! Idea and code from:
113 /// http://groups.google.com/group/comp.lang.c++/msg/1d941c0f26ea0d81
114
115 class Tee: public streambuf {
116 public:
117   typedef char_traits<char> traits_type;
118   typedef traits_type::int_type int_type;
119
120   Tee(ios& s, ofstream& f) : stream(s), file(f), stream_buf(s.rdbuf()) {}
121   ~Tee() { set(false); }
122
123   void set(bool b) { stream.rdbuf(b ? this : stream_buf); }
124
125 private:
126   int_type overflow(int_type c) {
127
128     if (traits_type::eq_int_type(c, traits_type::eof()))
129         return traits_type::not_eof(c);
130
131     c = stream_buf->sputc(traits_type::to_char_type(c));
132
133     if (!traits_type::eq_int_type(c, traits_type::eof()))
134         c = file.rdbuf()->sputc(traits_type::to_char_type(c));
135
136     return c;
137   }
138
139   int sync() {
140
141     int c = stream_buf->pubsync();
142
143     if (c != -1)
144         c = file.rdbuf()->pubsync();
145
146     return c;
147   }
148
149   int underflow() { return traits_type::not_eof(stream_buf->sgetc()); }
150
151   int uflow() {
152
153       int c = stream_buf->sbumpc();
154
155       if (!traits_type::eq_int_type(c, traits_type::eof()))
156           file.rdbuf()->sputc(traits_type::to_char_type(c));
157
158       return traits_type::not_eof(c);
159   }
160
161   ios& stream;
162   ofstream& file;
163   streambuf* stream_buf;
164 };
165
166 class Logger {
167 public:
168    Logger() : in(cin, file), out(cout, file) {}
169   ~Logger() { set(false); }
170
171   void set(bool b) {
172
173     if (b && !file.is_open())
174     {
175         file.open("io_log.txt", ifstream::out | ifstream::app);
176         in.set(true);
177         out.set(true);
178     }
179     else if (!b && file.is_open())
180     {
181         out.set(false);
182         in.set(false);
183         file.close();
184     }
185   }
186
187 private:
188   Tee in, out;
189   ofstream file;
190 };
191
192 void logger_set(bool b) {
193
194   static Logger l;
195   l.set(b);
196 }
197
198
199 /// cpu_count() tries to detect the number of CPU cores
200
201 int cpu_count() {
202
203 #if defined(_WIN32) || defined(_WIN64)
204   SYSTEM_INFO s;
205   GetSystemInfo(&s);
206   return std::min(int(s.dwNumberOfProcessors), MAX_THREADS);
207 #else
208
209 #  if defined(_SC_NPROCESSORS_ONLN)
210   return std::min((int)sysconf(_SC_NPROCESSORS_ONLN), MAX_THREADS);
211 #  elif defined(__hpux)
212   struct pst_dynamic psd;
213   if (pstat_getdynamic(&psd, sizeof(psd), (size_t)1, 0) == -1)
214       return 1;
215   return std::min((int)psd.psd_proc_cnt, MAX_THREADS);
216 #  else
217   return 1;
218 #  endif
219
220 #endif
221 }
222
223
224 /// timed_wait() waits for msec milliseconds. It is mainly an helper to wrap
225 /// conversion from milliseconds to struct timespec, as used by pthreads.
226
227 void timed_wait(WaitCondition& sleepCond, Lock& sleepLock, int msec) {
228
229 #if defined(_WIN32) || defined(_WIN64)
230   int tm = msec;
231 #else
232   timespec ts, *tm = &ts;
233   uint64_t ms = Time::current_time().msec() + msec;
234
235   ts.tv_sec = ms / 1000;
236   ts.tv_nsec = (ms % 1000) * 1000000LL;
237 #endif
238
239   cond_timedwait(sleepCond, sleepLock, tm);
240 }
241
242
243 /// prefetch() preloads the given address in L1/L2 cache. This is a non
244 /// blocking function and do not stalls the CPU waiting for data to be
245 /// loaded from memory, that can be quite slow.
246 #if defined(NO_PREFETCH)
247
248 void prefetch(char*) {}
249
250 #else
251
252 void prefetch(char* addr) {
253
254 #  if defined(__INTEL_COMPILER) || defined(__ICL)
255    // This hack prevents prefetches to be optimized away by
256    // Intel compiler. Both MSVC and gcc seems not affected.
257    __asm__ ("");
258 #  endif
259
260   _mm_prefetch(addr, _MM_HINT_T2);
261   _mm_prefetch(addr+64, _MM_HINT_T2); // 64 bytes ahead
262 }
263
264 #endif