]> git.sesse.net Git - stockfish/blob - src/misc.cpp
Additional work in bitbases
[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-2015 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 #include <chrono>
21 #include <fstream>
22 #include <iomanip>
23 #include <iostream>
24 #include <sstream>
25
26 #include "misc.h"
27 #include "thread.h"
28
29 using namespace std;
30 using namespace std::chrono;
31
32 namespace {
33
34 /// Version number. If Version is left empty, then compile date in the format
35 /// DD-MM-YY and show in engine_info.
36 const string Version = "";
37
38 /// Debug counters
39 int64_t hits[2], means[2];
40
41 /// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
42 /// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
43 /// can toggle the logging of std::cout and std:cin at runtime whilst preserving
44 /// usual i/o functionality, all without changing a single line of code!
45 /// Idea from http://groups.google.com/group/comp.lang.c++/msg/1d941c0f26ea0d81
46
47 struct Tie: public streambuf { // MSVC requires splitted streambuf for cin and cout
48
49   Tie(streambuf* b, ofstream* f) : buf(b), file(f) {}
50
51   int sync() { return file->rdbuf()->pubsync(), buf->pubsync(); }
52   int overflow(int c) { return log(buf->sputc((char)c), "<< "); }
53   int underflow() { return buf->sgetc(); }
54   int uflow() { return log(buf->sbumpc(), ">> "); }
55
56   streambuf* buf;
57   ofstream* file;
58
59   int log(int c, const char* prefix) {
60
61     static int last = '\n';
62
63     if (last == '\n')
64         file->rdbuf()->sputn(prefix, 3);
65
66     return last = file->rdbuf()->sputc((char)c);
67   }
68 };
69
70 class Logger {
71
72   Logger() : in(cin.rdbuf(), &file), out(cout.rdbuf(), &file) {}
73  ~Logger() { start(false); }
74
75   ofstream file;
76   Tie in, out;
77
78 public:
79   static void start(bool b) {
80
81     static Logger l;
82
83     if (b && !l.file.is_open())
84     {
85         l.file.open("io_log.txt", ifstream::out | ifstream::app);
86         cin.rdbuf(&l.in);
87         cout.rdbuf(&l.out);
88     }
89     else if (!b && l.file.is_open())
90     {
91         cout.rdbuf(l.out.buf);
92         cin.rdbuf(l.in.buf);
93         l.file.close();
94     }
95   }
96 };
97
98 } // namespace
99
100 /// engine_info() returns the full name of the current Stockfish version. This
101 /// will be either "Stockfish <Tag> DD-MM-YY" (where DD-MM-YY is the date when
102 /// the program was compiled) or "Stockfish <Version>", depending on whether
103 /// Version is empty.
104
105 const string engine_info(bool to_uci) {
106
107   const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
108   string month, day, year;
109   stringstream ss, date(__DATE__); // From compiler, format is "Sep 21 2008"
110
111   ss << "Stockfish " << Version << setfill('0');
112
113   if (Version.empty())
114   {
115       date >> month >> day >> year;
116       ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2);
117   }
118
119   ss << (Is64Bit ? " 64" : "")
120      << (HasPext ? " BMI2" : (HasPopCnt ? " POPCNT" : ""))
121      << (to_uci  ? "\nid author ": " by ")
122      << "Tord Romstad, Marco Costalba and Joona Kiiski";
123
124   return ss.str();
125 }
126
127
128 /// Convert system time to milliseconds. That's all we need.
129
130 Time::point Time::now() {
131   return duration_cast<milliseconds>(steady_clock::now().time_since_epoch()).count();
132 }
133
134
135 /// Debug functions used mainly to collect run-time statistics
136
137 void dbg_hit_on(bool b) { ++hits[0]; if (b) ++hits[1]; }
138 void dbg_hit_on_c(bool c, bool b) { if (c) dbg_hit_on(b); }
139 void dbg_mean_of(int v) { ++means[0]; means[1] += v; }
140
141 void dbg_print() {
142
143   if (hits[0])
144       cerr << "Total " << hits[0] << " Hits " << hits[1]
145            << " hit rate (%) " << 100 * hits[1] / hits[0] << endl;
146
147   if (means[0])
148       cerr << "Total " << means[0] << " Mean "
149            << (double)means[1] / means[0] << endl;
150 }
151
152
153 /// Used to serialize access to std::cout to avoid multiple threads writing at
154 /// the same time.
155
156 std::ostream& operator<<(std::ostream& os, SyncCout sc) {
157
158   static std::mutex m;
159
160   if (sc == IO_LOCK)
161       m.lock();
162
163   if (sc == IO_UNLOCK)
164       m.unlock();
165
166   return os;
167 }
168
169
170 /// Trampoline helper to avoid moving Logger to misc.h
171 void start_logger(bool b) { Logger::start(b); }
172
173
174 /// prefetch() preloads the given address in L1/L2 cache. This is a non-blocking
175 /// function that doesn't stall the CPU waiting for data to be loaded from memory,
176 /// which can be quite slow.
177 #ifdef NO_PREFETCH
178
179 void prefetch(char*) {}
180
181 #else
182
183 void prefetch(char* addr) {
184
185 #  if defined(__INTEL_COMPILER)
186    // This hack prevents prefetches from being optimized away by
187    // Intel compiler. Both MSVC and gcc seem not be affected by this.
188    __asm__ ("");
189 #  endif
190
191 #  if defined(__INTEL_COMPILER) || defined(_MSC_VER)
192   _mm_prefetch(addr, _MM_HINT_T0);
193 #  else
194   __builtin_prefetch(addr);
195 #  endif
196 }
197
198 #endif