]> git.sesse.net Git - stockfish/blob - src/misc.cpp
Standardize Comments
[stockfish] / src / misc.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2023 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 #include "misc.h"
20
21 #ifdef _WIN32
22 #if _WIN32_WINNT < 0x0601
23 #undef  _WIN32_WINNT
24 #define _WIN32_WINNT 0x0601 // Force to include needed API prototypes
25 #endif
26
27 #ifndef NOMINMAX
28 #define NOMINMAX
29 #endif
30
31 #include <windows.h>
32 // The needed Windows API for processor groups could be missed from old Windows
33 // versions, so instead of calling them directly (forcing the linker to resolve
34 // the calls at compile time), try to load them at runtime. To do this we need
35 // first to define the corresponding function pointers.
36 extern "C" {
37 using fun1_t = bool(*)(LOGICAL_PROCESSOR_RELATIONSHIP,
38                        PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX, PDWORD);
39 using fun2_t = bool(*)(USHORT, PGROUP_AFFINITY);
40 using fun3_t = bool(*)(HANDLE, CONST GROUP_AFFINITY*, PGROUP_AFFINITY);
41 using fun4_t = bool(*)(USHORT, PGROUP_AFFINITY, USHORT, PUSHORT);
42 using fun5_t = WORD(*)();
43 using fun6_t = bool(*)(HANDLE, DWORD, PHANDLE);
44 using fun7_t = bool(*)(LPCSTR, LPCSTR, PLUID);
45 using fun8_t = bool(*)(HANDLE, BOOL, PTOKEN_PRIVILEGES, DWORD, PTOKEN_PRIVILEGES, PDWORD);
46 }
47 #endif
48
49 #include <atomic>
50 #include <cmath>
51 #include <cstdlib>
52 #include <fstream>
53 #include <iomanip>
54 #include <iostream>
55 #include <mutex>
56 #include <sstream>
57 #include <string_view>
58
59 #include "types.h"
60
61 #if defined(__linux__) && !defined(__ANDROID__)
62 #include <sys/mman.h>
63 #endif
64
65 #if defined(__APPLE__) || defined(__ANDROID__) || defined(__OpenBSD__) || (defined(__GLIBCXX__) && !defined(_GLIBCXX_HAVE_ALIGNED_ALLOC) && !defined(_WIN32)) || defined(__e2k__)
66 #define POSIXALIGNEDALLOC
67 #include <stdlib.h>
68 #endif
69
70 namespace Stockfish {
71
72 namespace {
73
74 // Version number or dev.
75 constexpr std::string_view version = "dev";
76
77 // Our fancy logging facility. The trick here is to replace cin.rdbuf() and
78 // cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
79 // can toggle the logging of std::cout and std:cin at runtime whilst preserving
80 // usual I/O functionality, all without changing a single line of code!
81 // Idea from http://groups.google.com/group/comp.lang.c++/msg/1d941c0f26ea0d81
82
83 struct Tie: public std::streambuf { // MSVC requires split streambuf for cin and cout
84
85   Tie(std::streambuf* b, std::streambuf* l) : buf(b), logBuf(l) {}
86
87   int sync() override { return logBuf->pubsync(), buf->pubsync(); }
88   int overflow(int c) override { return log(buf->sputc(char(c)), "<< "); }
89   int underflow() override { return buf->sgetc(); }
90   int uflow() override { return log(buf->sbumpc(), ">> "); }
91
92   std::streambuf *buf, *logBuf;
93
94   int log(int c, const char* prefix) {
95
96     static int last = '\n'; // Single log file
97
98     if (last == '\n')
99         logBuf->sputn(prefix, 3);
100
101     return last = logBuf->sputc(char(c));
102   }
103 };
104
105 class Logger {
106
107   Logger() : in(std::cin.rdbuf(), file.rdbuf()), out(std::cout.rdbuf(), file.rdbuf()) {}
108  ~Logger() { start(""); }
109
110   std::ofstream file;
111   Tie in, out;
112
113 public:
114   static void start(const std::string& fname) {
115
116     static Logger l;
117
118     if (l.file.is_open())
119     {
120         std::cout.rdbuf(l.out.buf);
121         std::cin.rdbuf(l.in.buf);
122         l.file.close();
123     }
124
125     if (!fname.empty())
126     {
127         l.file.open(fname, std::ifstream::out);
128
129         if (!l.file.is_open())
130         {
131             std::cerr << "Unable to open debug log file " << fname << std::endl;
132             exit(EXIT_FAILURE);
133         }
134
135         std::cin.rdbuf(&l.in);
136         std::cout.rdbuf(&l.out);
137     }
138   }
139 };
140
141 } // namespace
142
143
144 // engine_info() returns the full name of the current Stockfish version.
145 // For local dev compiles we try to append the commit sha and commit date
146 // from git if that fails only the local compilation date is set and "nogit" is specified:
147 // Stockfish dev-YYYYMMDD-SHA
148 // or
149 // Stockfish dev-YYYYMMDD-nogit
150 //
151 // For releases (non-dev builds) we only include the version number:
152 // Stockfish version
153
154 std::string engine_info(bool to_uci) {
155   std::stringstream ss;
156   ss << "Stockfish " << version << std::setfill('0');
157
158   if constexpr (version == "dev")
159   {
160       ss << "-";
161       #ifdef GIT_DATE
162       ss << stringify(GIT_DATE);
163       #else
164       constexpr std::string_view months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec");
165       std::string month, day, year;
166       std::stringstream date(__DATE__); // From compiler, format is "Sep 21 2008"
167
168       date >> month >> day >> year;
169       ss << year << std::setw(2) << std::setfill('0') << (1 + months.find(month) / 4) << std::setw(2) << std::setfill('0') << day;
170       #endif
171
172       ss << "-";
173
174       #ifdef GIT_SHA
175       ss << stringify(GIT_SHA);
176       #else
177       ss << "nogit";
178       #endif
179   }
180
181   ss << (to_uci  ? "\nid author ": " by ")
182      << "the Stockfish developers (see AUTHORS file)";
183
184   return ss.str();
185 }
186
187
188 // compiler_info() returns a string trying to describe the compiler we use
189
190 std::string compiler_info() {
191
192   #define make_version_string(major, minor, patch) stringify(major) "." stringify(minor) "." stringify(patch)
193
194 // Predefined macros hell:
195 //
196 // __GNUC__                Compiler is GCC, Clang or ICX
197 // __clang__               Compiler is Clang or ICX
198 // __INTEL_LLVM_COMPILER   Compiler is ICX
199 // _MSC_VER                Compiler is MSVC
200 // _WIN32                  Building on Windows (any)
201 // _WIN64                  Building on Windows 64 bit
202
203   std::string compiler = "\nCompiled by                : ";
204
205   #if defined(__INTEL_LLVM_COMPILER)
206      compiler += "ICX ";
207      compiler += stringify(__INTEL_LLVM_COMPILER);
208   #elif defined(__clang__)
209      compiler += "clang++ ";
210      compiler += make_version_string(__clang_major__, __clang_minor__, __clang_patchlevel__);
211   #elif _MSC_VER
212      compiler += "MSVC ";
213      compiler += "(version ";
214      compiler += stringify(_MSC_FULL_VER) "." stringify(_MSC_BUILD);
215      compiler += ")";
216   #elif defined(__e2k__) && defined(__LCC__)
217     #define dot_ver2(n) \
218       compiler += char('.'); \
219       compiler += char('0' + (n) / 10); \
220       compiler += char('0' + (n) % 10);
221
222      compiler += "MCST LCC ";
223      compiler += "(version ";
224      compiler += std::to_string(__LCC__ / 100);
225      dot_ver2(__LCC__ % 100)
226      dot_ver2(__LCC_MINOR__)
227      compiler += ")";
228   #elif __GNUC__
229      compiler += "g++ (GNUC) ";
230      compiler += make_version_string(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
231   #else
232      compiler += "Unknown compiler ";
233      compiler += "(unknown version)";
234   #endif
235
236   #if defined(__APPLE__)
237      compiler += " on Apple";
238   #elif defined(__CYGWIN__)
239      compiler += " on Cygwin";
240   #elif defined(__MINGW64__)
241      compiler += " on MinGW64";
242   #elif defined(__MINGW32__)
243      compiler += " on MinGW32";
244   #elif defined(__ANDROID__)
245      compiler += " on Android";
246   #elif defined(__linux__)
247      compiler += " on Linux";
248   #elif defined(_WIN64)
249      compiler += " on Microsoft Windows 64-bit";
250   #elif defined(_WIN32)
251      compiler += " on Microsoft Windows 32-bit";
252   #else
253      compiler += " on unknown system";
254   #endif
255
256   compiler += "\nCompilation architecture   : ";
257   #if defined(ARCH)
258      compiler += stringify(ARCH);
259   #else
260      compiler += "(undefined architecture)";
261   #endif
262
263   compiler += "\nCompilation settings       : ";
264   compiler += (Is64Bit ? "64bit" : "32bit");
265   #if defined(USE_VNNI)
266     compiler += " VNNI";
267   #endif
268   #if defined(USE_AVX512)
269     compiler += " AVX512";
270   #endif
271   compiler += (HasPext ? " BMI2" : "");
272   #if defined(USE_AVX2)
273     compiler += " AVX2";
274   #endif
275   #if defined(USE_SSE41)
276     compiler += " SSE41";
277   #endif
278   #if defined(USE_SSSE3)
279     compiler += " SSSE3";
280   #endif
281   #if defined(USE_SSE2)
282     compiler += " SSE2";
283   #endif
284   compiler += (HasPopCnt ? " POPCNT" : "");
285   #if defined(USE_NEON_DOTPROD)
286     compiler += " NEON_DOTPROD";
287   #elif defined(USE_NEON)
288     compiler += " NEON";
289   #endif
290
291   #if !defined(NDEBUG)
292     compiler += " DEBUG";
293   #endif
294
295   compiler += "\nCompiler __VERSION__ macro : ";
296   #ifdef __VERSION__
297      compiler += __VERSION__;
298   #else
299      compiler += "(undefined macro)";
300   #endif
301
302   compiler += "\n";
303
304   return compiler;
305 }
306
307
308 // Debug functions used mainly to collect run-time statistics
309 constexpr int MaxDebugSlots = 32;
310
311 namespace {
312
313 template<size_t N>
314 struct DebugInfo {
315     std::atomic<int64_t> data[N] = { 0 };
316
317     constexpr inline std::atomic<int64_t>& operator[](int index) { return data[index]; }
318 };
319
320 DebugInfo<2> hit[MaxDebugSlots];
321 DebugInfo<2> mean[MaxDebugSlots];
322 DebugInfo<3> stdev[MaxDebugSlots];
323 DebugInfo<6> correl[MaxDebugSlots];
324
325 }  // namespace
326
327 void dbg_hit_on(bool cond, int slot) {
328
329     ++hit[slot][0];
330     if (cond)
331         ++hit[slot][1];
332 }
333
334 void dbg_mean_of(int64_t value, int slot) {
335
336     ++mean[slot][0];
337     mean[slot][1] += value;
338 }
339
340 void dbg_stdev_of(int64_t value, int slot) {
341
342     ++stdev[slot][0];
343     stdev[slot][1] += value;
344     stdev[slot][2] += value * value;
345 }
346
347 void dbg_correl_of(int64_t value1, int64_t value2, int slot) {
348
349     ++correl[slot][0];
350     correl[slot][1] += value1;
351     correl[slot][2] += value1 * value1;
352     correl[slot][3] += value2;
353     correl[slot][4] += value2 * value2;
354     correl[slot][5] += value1 * value2;
355 }
356
357 void dbg_print() {
358
359     int64_t n;
360     auto E   = [&n](int64_t x) { return double(x) / n; };
361     auto sqr = [](double x) { return x * x; };
362
363     for (int i = 0; i < MaxDebugSlots; ++i)
364         if ((n = hit[i][0]))
365             std::cerr << "Hit #" << i
366                       << ": Total " << n << " Hits " << hit[i][1]
367                       << " Hit Rate (%) " << 100.0 * E(hit[i][1])
368                       << std::endl;
369
370     for (int i = 0; i < MaxDebugSlots; ++i)
371         if ((n = mean[i][0]))
372         {
373             std::cerr << "Mean #" << i
374                       << ": Total " << n << " Mean " << E(mean[i][1])
375                       << std::endl;
376         }
377
378     for (int i = 0; i < MaxDebugSlots; ++i)
379         if ((n = stdev[i][0]))
380         {
381             double r = sqrt(E(stdev[i][2]) - sqr(E(stdev[i][1])));
382             std::cerr << "Stdev #" << i
383                       << ": Total " << n << " Stdev " << r
384                       << std::endl;
385         }
386
387     for (int i = 0; i < MaxDebugSlots; ++i)
388         if ((n = correl[i][0]))
389         {
390             double r = (E(correl[i][5]) - E(correl[i][1]) * E(correl[i][3]))
391                        / (  sqrt(E(correl[i][2]) - sqr(E(correl[i][1])))
392                           * sqrt(E(correl[i][4]) - sqr(E(correl[i][3]))));
393             std::cerr << "Correl. #" << i
394                       << ": Total " << n << " Coefficient " << r
395                       << std::endl;
396         }
397 }
398
399
400 // Used to serialize access to std::cout to avoid multiple threads writing at
401 // the same time.
402
403 std::ostream& operator<<(std::ostream& os, SyncCout sc) {
404
405   static std::mutex m;
406
407   if (sc == IO_LOCK)
408       m.lock();
409
410   if (sc == IO_UNLOCK)
411       m.unlock();
412
413   return os;
414 }
415
416
417 // Trampoline helper to avoid moving Logger to misc.h
418 void start_logger(const std::string& fname) { Logger::start(fname); }
419
420
421 // prefetch() preloads the given address in L1/L2 cache. This is a non-blocking
422 // function that doesn't stall the CPU waiting for data to be loaded from memory,
423 // which can be quite slow.
424 #ifdef NO_PREFETCH
425
426 void prefetch(void*) {}
427
428 #else
429
430 void prefetch(void* addr) {
431
432 #  if defined(_MSC_VER)
433   _mm_prefetch((char*)addr, _MM_HINT_T0);
434 #  else
435   __builtin_prefetch(addr);
436 #  endif
437 }
438
439 #endif
440
441
442 // std_aligned_alloc() is our wrapper for systems where the c++17 implementation
443 // does not guarantee the availability of aligned_alloc(). Memory allocated with
444 // std_aligned_alloc() must be freed with std_aligned_free().
445
446 void* std_aligned_alloc(size_t alignment, size_t size) {
447
448 #if defined(POSIXALIGNEDALLOC)
449   void *mem;
450   return posix_memalign(&mem, alignment, size) ? nullptr : mem;
451 #elif defined(_WIN32) && !defined(_M_ARM) && !defined(_M_ARM64)
452   return _mm_malloc(size, alignment);
453 #elif defined(_WIN32)
454   return _aligned_malloc(size, alignment);
455 #else
456   return std::aligned_alloc(alignment, size);
457 #endif
458 }
459
460 void std_aligned_free(void* ptr) {
461
462 #if defined(POSIXALIGNEDALLOC)
463   free(ptr);
464 #elif defined(_WIN32) && !defined(_M_ARM) && !defined(_M_ARM64)
465   _mm_free(ptr);
466 #elif defined(_WIN32)
467   _aligned_free(ptr);
468 #else
469   free(ptr);
470 #endif
471 }
472
473 // aligned_large_pages_alloc() will return suitably aligned memory, if possible using large pages.
474
475 #if defined(_WIN32)
476
477 static void* aligned_large_pages_alloc_windows([[maybe_unused]] size_t allocSize) {
478
479   #if !defined(_WIN64)
480     return nullptr;
481   #else
482
483   HANDLE hProcessToken { };
484   LUID luid { };
485   void* mem = nullptr;
486
487   const size_t largePageSize = GetLargePageMinimum();
488   if (!largePageSize)
489       return nullptr;
490
491   // Dynamically link OpenProcessToken, LookupPrivilegeValue and AdjustTokenPrivileges
492
493   HMODULE hAdvapi32 = GetModuleHandle(TEXT("advapi32.dll"));
494
495   if (!hAdvapi32)
496       hAdvapi32 = LoadLibrary(TEXT("advapi32.dll"));
497
498   auto fun6 = fun6_t((void(*)())GetProcAddress(hAdvapi32, "OpenProcessToken"));
499   if (!fun6)
500       return nullptr;
501   auto fun7 = fun7_t((void(*)())GetProcAddress(hAdvapi32, "LookupPrivilegeValueA"));
502   if (!fun7)
503       return nullptr;
504   auto fun8 = fun8_t((void(*)())GetProcAddress(hAdvapi32, "AdjustTokenPrivileges"));
505   if (!fun8)
506       return nullptr;
507
508   // We need SeLockMemoryPrivilege, so try to enable it for the process
509   if (!fun6( // OpenProcessToken()
510       GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hProcessToken))
511           return nullptr;
512
513   if (fun7( // LookupPrivilegeValue(nullptr, SE_LOCK_MEMORY_NAME, &luid)
514       nullptr, "SeLockMemoryPrivilege", &luid))
515   {
516       TOKEN_PRIVILEGES tp { };
517       TOKEN_PRIVILEGES prevTp { };
518       DWORD prevTpLen = 0;
519
520       tp.PrivilegeCount = 1;
521       tp.Privileges[0].Luid = luid;
522       tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
523
524       // Try to enable SeLockMemoryPrivilege. Note that even if AdjustTokenPrivileges() succeeds,
525       // we still need to query GetLastError() to ensure that the privileges were actually obtained.
526       if (fun8( // AdjustTokenPrivileges()
527               hProcessToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), &prevTp, &prevTpLen) &&
528           GetLastError() == ERROR_SUCCESS)
529       {
530           // Round up size to full pages and allocate
531           allocSize = (allocSize + largePageSize - 1) & ~size_t(largePageSize - 1);
532           mem = VirtualAlloc(
533               nullptr, allocSize, MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES, PAGE_READWRITE);
534
535           // Privilege no longer needed, restore previous state
536           fun8( // AdjustTokenPrivileges ()
537               hProcessToken, FALSE, &prevTp, 0, nullptr, nullptr);
538       }
539   }
540
541   CloseHandle(hProcessToken);
542
543   return mem;
544
545   #endif
546 }
547
548 void* aligned_large_pages_alloc(size_t allocSize) {
549
550   // Try to allocate large pages
551   void* mem = aligned_large_pages_alloc_windows(allocSize);
552
553   // Fall back to regular, page-aligned, allocation if necessary
554   if (!mem)
555       mem = VirtualAlloc(nullptr, allocSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
556
557   return mem;
558 }
559
560 #else
561
562 void* aligned_large_pages_alloc(size_t allocSize) {
563
564 #if defined(__linux__)
565   constexpr size_t alignment = 2 * 1024 * 1024; // assumed 2MB page size
566 #else
567   constexpr size_t alignment = 4096; // assumed small page size
568 #endif
569
570   // round up to multiples of alignment
571   size_t size = ((allocSize + alignment - 1) / alignment) * alignment;
572   void *mem = std_aligned_alloc(alignment, size);
573 #if defined(MADV_HUGEPAGE)
574   madvise(mem, size, MADV_HUGEPAGE);
575 #endif
576   return mem;
577 }
578
579 #endif
580
581
582 // aligned_large_pages_free() will free the previously allocated ttmem
583
584 #if defined(_WIN32)
585
586 void aligned_large_pages_free(void* mem) {
587
588   if (mem && !VirtualFree(mem, 0, MEM_RELEASE))
589   {
590       DWORD err = GetLastError();
591       std::cerr << "Failed to free large page memory. Error code: 0x"
592                 << std::hex << err
593                 << std::dec << std::endl;
594       exit(EXIT_FAILURE);
595   }
596 }
597
598 #else
599
600 void aligned_large_pages_free(void *mem) {
601   std_aligned_free(mem);
602 }
603
604 #endif
605
606
607 namespace WinProcGroup {
608
609 #ifndef _WIN32
610
611 void bindThisThread(size_t) {}
612
613 #else
614
615 // best_node() retrieves logical processor information using Windows specific
616 // API and returns the best node id for the thread with index idx. Original
617 // code from Texel by Peter Ă–sterlund.
618
619 static int best_node(size_t idx) {
620
621   int threads = 0;
622   int nodes = 0;
623   int cores = 0;
624   DWORD returnLength = 0;
625   DWORD byteOffset = 0;
626
627   // Early exit if the needed API is not available at runtime
628   HMODULE k32 = GetModuleHandle(TEXT("Kernel32.dll"));
629   auto fun1 = (fun1_t)(void(*)())GetProcAddress(k32, "GetLogicalProcessorInformationEx");
630   if (!fun1)
631       return -1;
632
633   // First call to GetLogicalProcessorInformationEx() to get returnLength.
634   // We expect the call to fail due to null buffer.
635   if (fun1(RelationAll, nullptr, &returnLength))
636       return -1;
637
638   // Once we know returnLength, allocate the buffer
639   SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX *buffer, *ptr;
640   ptr = buffer = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*)malloc(returnLength);
641
642   // Second call to GetLogicalProcessorInformationEx(), now we expect to succeed
643   if (!fun1(RelationAll, buffer, &returnLength))
644   {
645       free(buffer);
646       return -1;
647   }
648
649   while (byteOffset < returnLength)
650   {
651       if (ptr->Relationship == RelationNumaNode)
652           nodes++;
653
654       else if (ptr->Relationship == RelationProcessorCore)
655       {
656           cores++;
657           threads += (ptr->Processor.Flags == LTP_PC_SMT) ? 2 : 1;
658       }
659
660       assert(ptr->Size);
661       byteOffset += ptr->Size;
662       ptr = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*)(((char*)ptr) + ptr->Size);
663   }
664
665   free(buffer);
666
667   std::vector<int> groups;
668
669   // Run as many threads as possible on the same node until the core limit is
670   // reached, then move on to filling the next node.
671   for (int n = 0; n < nodes; n++)
672       for (int i = 0; i < cores / nodes; i++)
673           groups.push_back(n);
674
675   // In case a core has more than one logical processor (we assume 2) and we
676   // have still threads to allocate, then spread them evenly across available
677   // nodes.
678   for (int t = 0; t < threads - cores; t++)
679       groups.push_back(t % nodes);
680
681   // If we still have more threads than the total number of logical processors
682   // then return -1 and let the OS to decide what to do.
683   return idx < groups.size() ? groups[idx] : -1;
684 }
685
686
687 // bindThisThread() sets the group affinity of the current thread
688
689 void bindThisThread(size_t idx) {
690
691   // Use only local variables to be thread-safe
692   int node = best_node(idx);
693
694   if (node == -1)
695       return;
696
697   // Early exit if the needed API are not available at runtime
698   HMODULE k32 = GetModuleHandle(TEXT("Kernel32.dll"));
699   auto fun2 = fun2_t((void(*)())GetProcAddress(k32, "GetNumaNodeProcessorMaskEx"));
700   auto fun3 = fun3_t((void(*)())GetProcAddress(k32, "SetThreadGroupAffinity"));
701   auto fun4 = fun4_t((void(*)())GetProcAddress(k32, "GetNumaNodeProcessorMask2"));
702   auto fun5 = fun5_t((void(*)())GetProcAddress(k32, "GetMaximumProcessorGroupCount"));
703
704   if (!fun2 || !fun3)
705       return;
706
707   if (!fun4 || !fun5)
708   {
709       GROUP_AFFINITY affinity;
710       if (fun2(node, &affinity))                                                 // GetNumaNodeProcessorMaskEx
711           fun3(GetCurrentThread(), &affinity, nullptr);                          // SetThreadGroupAffinity
712   }
713   else
714   {
715       // If a numa node has more than one processor group, we assume they are
716       // sized equal and we spread threads evenly across the groups.
717       USHORT elements, returnedElements;
718       elements = fun5();                                                         // GetMaximumProcessorGroupCount
719       GROUP_AFFINITY *affinity = (GROUP_AFFINITY*)malloc(elements * sizeof(GROUP_AFFINITY));
720       if (fun4(node, affinity, elements, &returnedElements))                     // GetNumaNodeProcessorMask2
721           fun3(GetCurrentThread(), &affinity[idx % returnedElements], nullptr);  // SetThreadGroupAffinity
722       free(affinity);
723   }
724 }
725
726 #endif
727
728 } // namespace WinProcGroup
729
730 #ifdef _WIN32
731 #include <direct.h>
732 #define GETCWD _getcwd
733 #else
734 #include <unistd.h>
735 #define GETCWD getcwd
736 #endif
737
738 namespace CommandLine {
739
740 std::string argv0;            // path+name of the executable binary, as given by argv[0]
741 std::string binaryDirectory;  // path of the executable directory
742 std::string workingDirectory; // path of the working directory
743
744 void init([[maybe_unused]] int argc, char* argv[]) {
745     std::string pathSeparator;
746
747     // extract the path+name of the executable binary
748     argv0 = argv[0];
749
750 #ifdef _WIN32
751     pathSeparator = "\\";
752   #ifdef _MSC_VER
753     // Under windows argv[0] may not have the extension. Also _get_pgmptr() had
754     // issues in some Windows 10 versions, so check returned values carefully.
755     char* pgmptr = nullptr;
756     if (!_get_pgmptr(&pgmptr) && pgmptr != nullptr && *pgmptr)
757         argv0 = pgmptr;
758   #endif
759 #else
760     pathSeparator = "/";
761 #endif
762
763     // extract the working directory
764     workingDirectory = "";
765     char buff[40000];
766     char* cwd = GETCWD(buff, 40000);
767     if (cwd)
768         workingDirectory = cwd;
769
770     // extract the binary directory path from argv0
771     binaryDirectory = argv0;
772     size_t pos = binaryDirectory.find_last_of("\\/");
773     if (pos == std::string::npos)
774         binaryDirectory = "." + pathSeparator;
775     else
776         binaryDirectory.resize(pos + 1);
777
778     // pattern replacement: "./" at the start of path is replaced by the working directory
779     if (binaryDirectory.find("." + pathSeparator) == 0)
780         binaryDirectory.replace(0, 1, workingDirectory);
781 }
782
783
784 } // namespace CommandLine
785
786 } // namespace Stockfish