]> git.sesse.net Git - stockfish/blob - src/misc.cpp
Tweak hybrid treshold.
[stockfish] / src / misc.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2020 The Stockfish developers (see AUTHORS file)
4
5   Stockfish is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   Stockfish is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #ifdef _WIN32
20 #if _WIN32_WINNT < 0x0601
21 #undef  _WIN32_WINNT
22 #define _WIN32_WINNT 0x0601 // Force to include needed API prototypes
23 #endif
24
25 #ifndef NOMINMAX
26 #define NOMINMAX
27 #endif
28
29 #include <windows.h>
30 // The needed Windows API for processor groups could be missed from old Windows
31 // versions, so instead of calling them directly (forcing the linker to resolve
32 // the calls at compile time), try to load them at runtime. To do this we need
33 // first to define the corresponding function pointers.
34 extern "C" {
35 typedef bool(*fun1_t)(LOGICAL_PROCESSOR_RELATIONSHIP,
36                       PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX, PDWORD);
37 typedef bool(*fun2_t)(USHORT, PGROUP_AFFINITY);
38 typedef bool(*fun3_t)(HANDLE, CONST GROUP_AFFINITY*, PGROUP_AFFINITY);
39 }
40 #endif
41
42 #include <fstream>
43 #include <iomanip>
44 #include <iostream>
45 #include <sstream>
46 #include <vector>
47 #include <cstdlib>
48
49 #if defined(__linux__) && !defined(__ANDROID__)
50 #include <stdlib.h>
51 #include <sys/mman.h>
52 #endif
53
54 #if defined(__APPLE__) || defined(__ANDROID__) || defined(__OpenBSD__) || (defined(__GLIBCXX__) && !defined(_GLIBCXX_HAVE_ALIGNED_ALLOC) && !defined(_WIN32))
55 #define POSIXALIGNEDALLOC
56 #include <stdlib.h>
57 #endif
58
59 #include "misc.h"
60 #include "thread.h"
61
62 using namespace std;
63
64 namespace {
65
66 /// Version number. If Version is left empty, then compile date in the format
67 /// DD-MM-YY and show in engine_info.
68 const string Version = "";
69
70 /// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
71 /// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
72 /// can toggle the logging of std::cout and std:cin at runtime whilst preserving
73 /// usual I/O functionality, all without changing a single line of code!
74 /// Idea from http://groups.google.com/group/comp.lang.c++/msg/1d941c0f26ea0d81
75
76 struct Tie: public streambuf { // MSVC requires split streambuf for cin and cout
77
78   Tie(streambuf* b, streambuf* l) : buf(b), logBuf(l) {}
79
80   int sync() override { return logBuf->pubsync(), buf->pubsync(); }
81   int overflow(int c) override { return log(buf->sputc((char)c), "<< "); }
82   int underflow() override { return buf->sgetc(); }
83   int uflow() override { return log(buf->sbumpc(), ">> "); }
84
85   streambuf *buf, *logBuf;
86
87   int log(int c, const char* prefix) {
88
89     static int last = '\n'; // Single log file
90
91     if (last == '\n')
92         logBuf->sputn(prefix, 3);
93
94     return last = logBuf->sputc((char)c);
95   }
96 };
97
98 class Logger {
99
100   Logger() : in(cin.rdbuf(), file.rdbuf()), out(cout.rdbuf(), file.rdbuf()) {}
101  ~Logger() { start(""); }
102
103   ofstream file;
104   Tie in, out;
105
106 public:
107   static void start(const std::string& fname) {
108
109     static Logger l;
110
111     if (!fname.empty() && !l.file.is_open())
112     {
113         l.file.open(fname, ifstream::out);
114
115         if (!l.file.is_open())
116         {
117             cerr << "Unable to open debug log file " << fname << endl;
118             exit(EXIT_FAILURE);
119         }
120
121         cin.rdbuf(&l.in);
122         cout.rdbuf(&l.out);
123     }
124     else if (fname.empty() && l.file.is_open())
125     {
126         cout.rdbuf(l.out.buf);
127         cin.rdbuf(l.in.buf);
128         l.file.close();
129     }
130   }
131 };
132
133 } // namespace
134
135
136 /// engine_info() returns the full name of the current Stockfish version. This
137 /// will be either "Stockfish <Tag> DD-MM-YY" (where DD-MM-YY is the date when
138 /// the program was compiled) or "Stockfish <Version>", depending on whether
139 /// Version is empty.
140
141 const string engine_info(bool to_uci) {
142
143   const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
144   string month, day, year;
145   stringstream ss, date(__DATE__); // From compiler, format is "Sep 21 2008"
146
147   ss << "Stockfish " << Version << setfill('0');
148
149   if (Version.empty())
150   {
151       date >> month >> day >> year;
152       ss << setw(2) << day << setw(2) << (1 + months.find(month) / 4) << year.substr(2);
153   }
154
155   ss << (to_uci  ? "\nid author ": " by ")
156      << "the Stockfish developers (see AUTHORS file)";
157
158   return ss.str();
159 }
160
161
162 /// compiler_info() returns a string trying to describe the compiler we use
163
164 const std::string compiler_info() {
165
166   #define stringify2(x) #x
167   #define stringify(x) stringify2(x)
168   #define make_version_string(major, minor, patch) stringify(major) "." stringify(minor) "." stringify(patch)
169
170 /// Predefined macros hell:
171 ///
172 /// __GNUC__           Compiler is gcc, Clang or Intel on Linux
173 /// __INTEL_COMPILER   Compiler is Intel
174 /// _MSC_VER           Compiler is MSVC or Intel on Windows
175 /// _WIN32             Building on Windows (any)
176 /// _WIN64             Building on Windows 64 bit
177
178   std::string compiler = "\nCompiled by ";
179
180   #ifdef __clang__
181      compiler += "clang++ ";
182      compiler += make_version_string(__clang_major__, __clang_minor__, __clang_patchlevel__);
183   #elif __INTEL_COMPILER
184      compiler += "Intel compiler ";
185      compiler += "(version ";
186      compiler += stringify(__INTEL_COMPILER) " update " stringify(__INTEL_COMPILER_UPDATE);
187      compiler += ")";
188   #elif _MSC_VER
189      compiler += "MSVC ";
190      compiler += "(version ";
191      compiler += stringify(_MSC_FULL_VER) "." stringify(_MSC_BUILD);
192      compiler += ")";
193   #elif __GNUC__
194      compiler += "g++ (GNUC) ";
195      compiler += make_version_string(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
196   #else
197      compiler += "Unknown compiler ";
198      compiler += "(unknown version)";
199   #endif
200
201   #if defined(__APPLE__)
202      compiler += " on Apple";
203   #elif defined(__CYGWIN__)
204      compiler += " on Cygwin";
205   #elif defined(__MINGW64__)
206      compiler += " on MinGW64";
207   #elif defined(__MINGW32__)
208      compiler += " on MinGW32";
209   #elif defined(__ANDROID__)
210      compiler += " on Android";
211   #elif defined(__linux__)
212      compiler += " on Linux";
213   #elif defined(_WIN64)
214      compiler += " on Microsoft Windows 64-bit";
215   #elif defined(_WIN32)
216      compiler += " on Microsoft Windows 32-bit";
217   #else
218      compiler += " on unknown system";
219   #endif
220
221   compiler += "\nCompilation settings include: ";
222   compiler += (Is64Bit ? " 64bit" : " 32bit");
223   #if defined(USE_VNNI)
224     compiler += " VNNI";
225   #endif
226   #if defined(USE_AVX512)
227     compiler += " AVX512";
228   #endif
229   compiler += (HasPext ? " BMI2" : "");
230   #if defined(USE_AVX2)
231     compiler += " AVX2";
232   #endif
233   #if defined(USE_SSE41)
234     compiler += " SSE41";
235   #endif
236   #if defined(USE_SSSE3)
237     compiler += " SSSE3";
238   #endif
239   #if defined(USE_SSE2)
240     compiler += " SSE2";
241   #endif
242   compiler += (HasPopCnt ? " POPCNT" : "");
243   #if defined(USE_MMX)
244     compiler += " MMX";
245   #endif
246   #if defined(USE_NEON)
247     compiler += " NEON";
248   #endif
249
250   #if !defined(NDEBUG)
251     compiler += " DEBUG";
252   #endif
253
254   compiler += "\n__VERSION__ macro expands to: ";
255   #ifdef __VERSION__
256      compiler += __VERSION__;
257   #else
258      compiler += "(undefined macro)";
259   #endif
260   compiler += "\n";
261
262   return compiler;
263 }
264
265
266 /// Debug functions used mainly to collect run-time statistics
267 static std::atomic<int64_t> hits[2], means[2];
268
269 void dbg_hit_on(bool b) { ++hits[0]; if (b) ++hits[1]; }
270 void dbg_hit_on(bool c, bool b) { if (c) dbg_hit_on(b); }
271 void dbg_mean_of(int v) { ++means[0]; means[1] += v; }
272
273 void dbg_print() {
274
275   if (hits[0])
276       cerr << "Total " << hits[0] << " Hits " << hits[1]
277            << " hit rate (%) " << 100 * hits[1] / hits[0] << endl;
278
279   if (means[0])
280       cerr << "Total " << means[0] << " Mean "
281            << (double)means[1] / means[0] << endl;
282 }
283
284
285 /// Used to serialize access to std::cout to avoid multiple threads writing at
286 /// the same time.
287
288 std::ostream& operator<<(std::ostream& os, SyncCout sc) {
289
290   static std::mutex m;
291
292   if (sc == IO_LOCK)
293       m.lock();
294
295   if (sc == IO_UNLOCK)
296       m.unlock();
297
298   return os;
299 }
300
301
302 /// Trampoline helper to avoid moving Logger to misc.h
303 void start_logger(const std::string& fname) { Logger::start(fname); }
304
305
306 /// prefetch() preloads the given address in L1/L2 cache. This is a non-blocking
307 /// function that doesn't stall the CPU waiting for data to be loaded from memory,
308 /// which can be quite slow.
309 #ifdef NO_PREFETCH
310
311 void prefetch(void*) {}
312
313 #else
314
315 void prefetch(void* addr) {
316
317 #  if defined(__INTEL_COMPILER)
318    // This hack prevents prefetches from being optimized away by
319    // Intel compiler. Both MSVC and gcc seem not be affected by this.
320    __asm__ ("");
321 #  endif
322
323 #  if defined(__INTEL_COMPILER) || defined(_MSC_VER)
324   _mm_prefetch((char*)addr, _MM_HINT_T0);
325 #  else
326   __builtin_prefetch(addr);
327 #  endif
328 }
329
330 #endif
331
332
333 /// std_aligned_alloc() is our wrapper for systems where the c++17 implementation
334 /// does not guarantee the availability of aligned_alloc(). Memory allocated with
335 /// std_aligned_alloc() must be freed with std_aligned_free().
336
337 void* std_aligned_alloc(size_t alignment, size_t size) {
338
339 #if defined(POSIXALIGNEDALLOC)
340   void *mem;
341   return posix_memalign(&mem, alignment, size) ? nullptr : mem;
342 #elif defined(_WIN32)
343   return _mm_malloc(size, alignment);
344 #else
345   return std::aligned_alloc(alignment, size);
346 #endif
347 }
348
349 void std_aligned_free(void* ptr) {
350
351 #if defined(POSIXALIGNEDALLOC)
352   free(ptr);
353 #elif defined(_WIN32)
354   _mm_free(ptr);
355 #else
356   free(ptr);
357 #endif
358 }
359
360 /// aligned_ttmem_alloc() will return suitably aligned memory, if possible using large pages.
361 /// The returned pointer is the aligned one, while the mem argument is the one that needs
362 /// to be passed to free. With c++17 some of this functionality could be simplified.
363
364 #if defined(__linux__) && !defined(__ANDROID__)
365
366 void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
367
368   constexpr size_t alignment = 2 * 1024 * 1024; // assumed 2MB page sizes
369   size_t size = ((allocSize + alignment - 1) / alignment) * alignment; // multiple of alignment
370   if (posix_memalign(&mem, alignment, size))
371      mem = nullptr;
372 #if defined(MADV_HUGEPAGE)
373   madvise(mem, allocSize, MADV_HUGEPAGE);
374 #endif
375   return mem;
376 }
377
378 #elif defined(_WIN64)
379
380 static void* aligned_ttmem_alloc_large_pages(size_t allocSize) {
381
382   HANDLE hProcessToken { };
383   LUID luid { };
384   void* mem = nullptr;
385
386   const size_t largePageSize = GetLargePageMinimum();
387   if (!largePageSize)
388       return nullptr;
389
390   // We need SeLockMemoryPrivilege, so try to enable it for the process
391   if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hProcessToken))
392       return nullptr;
393
394   if (LookupPrivilegeValue(NULL, SE_LOCK_MEMORY_NAME, &luid))
395   {
396       TOKEN_PRIVILEGES tp { };
397       TOKEN_PRIVILEGES prevTp { };
398       DWORD prevTpLen = 0;
399
400       tp.PrivilegeCount = 1;
401       tp.Privileges[0].Luid = luid;
402       tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
403
404       // Try to enable SeLockMemoryPrivilege. Note that even if AdjustTokenPrivileges() succeeds,
405       // we still need to query GetLastError() to ensure that the privileges were actually obtained.
406       if (AdjustTokenPrivileges(
407               hProcessToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), &prevTp, &prevTpLen) &&
408           GetLastError() == ERROR_SUCCESS)
409       {
410           // Round up size to full pages and allocate
411           allocSize = (allocSize + largePageSize - 1) & ~size_t(largePageSize - 1);
412           mem = VirtualAlloc(
413               NULL, allocSize, MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES, PAGE_READWRITE);
414
415           // Privilege no longer needed, restore previous state
416           AdjustTokenPrivileges(hProcessToken, FALSE, &prevTp, 0, NULL, NULL);
417       }
418   }
419
420   CloseHandle(hProcessToken);
421
422   return mem;
423 }
424
425 void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
426
427   static bool firstCall = true;
428
429   // Try to allocate large pages
430   mem = aligned_ttmem_alloc_large_pages(allocSize);
431
432   // Suppress info strings on the first call. The first call occurs before 'uci'
433   // is received and in that case this output confuses some GUIs.
434   if (!firstCall)
435   {
436       if (mem)
437           sync_cout << "info string Hash table allocation: Windows large pages used." << sync_endl;
438       else
439           sync_cout << "info string Hash table allocation: Windows large pages not used." << sync_endl;
440   }
441   firstCall = false;
442
443   // Fall back to regular, page aligned, allocation if necessary
444   if (!mem)
445       mem = VirtualAlloc(NULL, allocSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
446
447   return mem;
448 }
449
450 #else
451
452 void* aligned_ttmem_alloc(size_t allocSize, void*& mem) {
453
454   constexpr size_t alignment = 64; // assumed cache line size
455   size_t size = allocSize + alignment - 1; // allocate some extra space
456   mem = malloc(size);
457   void* ret = reinterpret_cast<void*>((uintptr_t(mem) + alignment - 1) & ~uintptr_t(alignment - 1));
458   return ret;
459 }
460
461 #endif
462
463
464 /// aligned_ttmem_free() will free the previously allocated ttmem
465
466 #if defined(_WIN64)
467
468 void aligned_ttmem_free(void* mem) {
469
470   if (mem && !VirtualFree(mem, 0, MEM_RELEASE))
471   {
472       DWORD err = GetLastError();
473       std::cerr << "Failed to free transposition table. Error code: 0x" <<
474           std::hex << err << std::dec << std::endl;
475       exit(EXIT_FAILURE);
476   }
477 }
478
479 #else
480
481 void aligned_ttmem_free(void *mem) {
482   free(mem);
483 }
484
485 #endif
486
487
488 namespace WinProcGroup {
489
490 #ifndef _WIN32
491
492 void bindThisThread(size_t) {}
493
494 #else
495
496 /// best_group() retrieves logical processor information using Windows specific
497 /// API and returns the best group id for the thread with index idx. Original
498 /// code from Texel by Peter Ă–sterlund.
499
500 int best_group(size_t idx) {
501
502   int threads = 0;
503   int nodes = 0;
504   int cores = 0;
505   DWORD returnLength = 0;
506   DWORD byteOffset = 0;
507
508   // Early exit if the needed API is not available at runtime
509   HMODULE k32 = GetModuleHandle("Kernel32.dll");
510   auto fun1 = (fun1_t)(void(*)())GetProcAddress(k32, "GetLogicalProcessorInformationEx");
511   if (!fun1)
512       return -1;
513
514   // First call to get returnLength. We expect it to fail due to null buffer
515   if (fun1(RelationAll, nullptr, &returnLength))
516       return -1;
517
518   // Once we know returnLength, allocate the buffer
519   SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX *buffer, *ptr;
520   ptr = buffer = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*)malloc(returnLength);
521
522   // Second call, now we expect to succeed
523   if (!fun1(RelationAll, buffer, &returnLength))
524   {
525       free(buffer);
526       return -1;
527   }
528
529   while (byteOffset < returnLength)
530   {
531       if (ptr->Relationship == RelationNumaNode)
532           nodes++;
533
534       else if (ptr->Relationship == RelationProcessorCore)
535       {
536           cores++;
537           threads += (ptr->Processor.Flags == LTP_PC_SMT) ? 2 : 1;
538       }
539
540       assert(ptr->Size);
541       byteOffset += ptr->Size;
542       ptr = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*)(((char*)ptr) + ptr->Size);
543   }
544
545   free(buffer);
546
547   std::vector<int> groups;
548
549   // Run as many threads as possible on the same node until core limit is
550   // reached, then move on filling the next node.
551   for (int n = 0; n < nodes; n++)
552       for (int i = 0; i < cores / nodes; i++)
553           groups.push_back(n);
554
555   // In case a core has more than one logical processor (we assume 2) and we
556   // have still threads to allocate, then spread them evenly across available
557   // nodes.
558   for (int t = 0; t < threads - cores; t++)
559       groups.push_back(t % nodes);
560
561   // If we still have more threads than the total number of logical processors
562   // then return -1 and let the OS to decide what to do.
563   return idx < groups.size() ? groups[idx] : -1;
564 }
565
566
567 /// bindThisThread() set the group affinity of the current thread
568
569 void bindThisThread(size_t idx) {
570
571   // Use only local variables to be thread-safe
572   int group = best_group(idx);
573
574   if (group == -1)
575       return;
576
577   // Early exit if the needed API are not available at runtime
578   HMODULE k32 = GetModuleHandle("Kernel32.dll");
579   auto fun2 = (fun2_t)(void(*)())GetProcAddress(k32, "GetNumaNodeProcessorMaskEx");
580   auto fun3 = (fun3_t)(void(*)())GetProcAddress(k32, "SetThreadGroupAffinity");
581
582   if (!fun2 || !fun3)
583       return;
584
585   GROUP_AFFINITY affinity;
586   if (fun2(group, &affinity))
587       fun3(GetCurrentThread(), &affinity, nullptr);
588 }
589
590 #endif
591
592 } // namespace WinProcGroup
593
594 #ifdef _WIN32
595 #include <direct.h>
596 #define GETCWD _getcwd
597 #else
598 #include <unistd.h>
599 #define GETCWD getcwd
600 #endif
601
602 namespace CommandLine {
603
604 string argv0;            // path+name of the executable binary, as given by argv[0]
605 string binaryDirectory;  // path of the executable directory
606 string workingDirectory; // path of the working directory
607 string pathSeparator;    // Separator for our current OS
608
609 void init(int argc, char* argv[]) {
610     (void)argc;
611     string separator;
612
613     // extract the path+name of the executable binary
614     argv0 = argv[0];
615
616 #ifdef _WIN32
617     pathSeparator = "\\";
618   #ifdef _MSC_VER
619     // Under windows argv[0] may not have the extension. Also _get_pgmptr() had
620     // issues in some windows 10 versions, so check returned values carefully.
621     char* pgmptr = nullptr;
622     if (!_get_pgmptr(&pgmptr) && pgmptr != nullptr && *pgmptr)
623         argv0 = pgmptr;
624   #endif
625 #else
626     pathSeparator = "/";
627 #endif
628
629     // extract the working directory
630     workingDirectory = "";
631     char buff[40000];
632     char* cwd = GETCWD(buff, 40000);
633     if (cwd)
634         workingDirectory = cwd;
635
636     // extract the binary directory path from argv0
637     binaryDirectory = argv0;
638     size_t pos = binaryDirectory.find_last_of("\\/");
639     if (pos == std::string::npos)
640         binaryDirectory = "." + pathSeparator;
641     else
642         binaryDirectory.resize(pos + 1);
643
644     // pattern replacement: "./" at the start of path is replaced by the working directory
645     if (binaryDirectory.find("." + pathSeparator) == 0)
646         binaryDirectory.replace(0, 1, workingDirectory);
647 }
648
649
650 } // namespace CommandLine