]> git.sesse.net Git - stockfish/blob - src/misc.cpp
Cleanup code after dropping ICC support in favor of ICX
[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 settings include: ";
257   compiler += (Is64Bit ? " 64bit" : " 32bit");
258   #if defined(USE_VNNI)
259     compiler += " VNNI";
260   #endif
261   #if defined(USE_AVX512)
262     compiler += " AVX512";
263   #endif
264   compiler += (HasPext ? " BMI2" : "");
265   #if defined(USE_AVX2)
266     compiler += " AVX2";
267   #endif
268   #if defined(USE_SSE41)
269     compiler += " SSE41";
270   #endif
271   #if defined(USE_SSSE3)
272     compiler += " SSSE3";
273   #endif
274   #if defined(USE_SSE2)
275     compiler += " SSE2";
276   #endif
277   compiler += (HasPopCnt ? " POPCNT" : "");
278   #if defined(USE_MMX)
279     compiler += " MMX";
280   #endif
281   #if defined(USE_NEON_DOTPROD)
282     compiler += " NEON_DOTPROD";
283   #elif defined(USE_NEON)
284     compiler += " NEON";
285   #endif
286
287   #if !defined(NDEBUG)
288     compiler += " DEBUG";
289   #endif
290
291   compiler += "\n__VERSION__ macro expands to: ";
292   #ifdef __VERSION__
293      compiler += __VERSION__;
294   #else
295      compiler += "(undefined macro)";
296   #endif
297   compiler += "\n";
298
299   return compiler;
300 }
301
302
303 /// Debug functions used mainly to collect run-time statistics
304 constexpr int MaxDebugSlots = 32;
305
306 namespace {
307
308 template<size_t N>
309 struct DebugInfo {
310     std::atomic<int64_t> data[N] = { 0 };
311
312     constexpr inline std::atomic<int64_t>& operator[](int index) { return data[index]; }
313 };
314
315 DebugInfo<2> hit[MaxDebugSlots];
316 DebugInfo<2> mean[MaxDebugSlots];
317 DebugInfo<3> stdev[MaxDebugSlots];
318 DebugInfo<6> correl[MaxDebugSlots];
319
320 }  // namespace
321
322 void dbg_hit_on(bool cond, int slot) {
323
324     ++hit[slot][0];
325     if (cond)
326         ++hit[slot][1];
327 }
328
329 void dbg_mean_of(int64_t value, int slot) {
330
331     ++mean[slot][0];
332     mean[slot][1] += value;
333 }
334
335 void dbg_stdev_of(int64_t value, int slot) {
336
337     ++stdev[slot][0];
338     stdev[slot][1] += value;
339     stdev[slot][2] += value * value;
340 }
341
342 void dbg_correl_of(int64_t value1, int64_t value2, int slot) {
343
344     ++correl[slot][0];
345     correl[slot][1] += value1;
346     correl[slot][2] += value1 * value1;
347     correl[slot][3] += value2;
348     correl[slot][4] += value2 * value2;
349     correl[slot][5] += value1 * value2;
350 }
351
352 void dbg_print() {
353
354     int64_t n;
355     auto E   = [&n](int64_t x) { return double(x) / n; };
356     auto sqr = [](double x) { return x * x; };
357
358     for (int i = 0; i < MaxDebugSlots; ++i)
359         if ((n = hit[i][0]))
360             std::cerr << "Hit #" << i
361                       << ": Total " << n << " Hits " << hit[i][1]
362                       << " Hit Rate (%) " << 100.0 * E(hit[i][1])
363                       << std::endl;
364
365     for (int i = 0; i < MaxDebugSlots; ++i)
366         if ((n = mean[i][0]))
367         {
368             std::cerr << "Mean #" << i
369                       << ": Total " << n << " Mean " << E(mean[i][1])
370                       << std::endl;
371         }
372
373     for (int i = 0; i < MaxDebugSlots; ++i)
374         if ((n = stdev[i][0]))
375         {
376             double r = sqrt(E(stdev[i][2]) - sqr(E(stdev[i][1])));
377             std::cerr << "Stdev #" << i
378                       << ": Total " << n << " Stdev " << r
379                       << std::endl;
380         }
381
382     for (int i = 0; i < MaxDebugSlots; ++i)
383         if ((n = correl[i][0]))
384         {
385             double r = (E(correl[i][5]) - E(correl[i][1]) * E(correl[i][3]))
386                        / (  sqrt(E(correl[i][2]) - sqr(E(correl[i][1])))
387                           * sqrt(E(correl[i][4]) - sqr(E(correl[i][3]))));
388             std::cerr << "Correl. #" << i
389                       << ": Total " << n << " Coefficient " << r
390                       << std::endl;
391         }
392 }
393
394
395 /// Used to serialize access to std::cout to avoid multiple threads writing at
396 /// the same time.
397
398 std::ostream& operator<<(std::ostream& os, SyncCout sc) {
399
400   static std::mutex m;
401
402   if (sc == IO_LOCK)
403       m.lock();
404
405   if (sc == IO_UNLOCK)
406       m.unlock();
407
408   return os;
409 }
410
411
412 /// Trampoline helper to avoid moving Logger to misc.h
413 void start_logger(const std::string& fname) { Logger::start(fname); }
414
415
416 /// prefetch() preloads the given address in L1/L2 cache. This is a non-blocking
417 /// function that doesn't stall the CPU waiting for data to be loaded from memory,
418 /// which can be quite slow.
419 #ifdef NO_PREFETCH
420
421 void prefetch(void*) {}
422
423 #else
424
425 void prefetch(void* addr) {
426
427 #  if defined(_MSC_VER)
428   _mm_prefetch((char*)addr, _MM_HINT_T0);
429 #  else
430   __builtin_prefetch(addr);
431 #  endif
432 }
433
434 #endif
435
436
437 /// std_aligned_alloc() is our wrapper for systems where the c++17 implementation
438 /// does not guarantee the availability of aligned_alloc(). Memory allocated with
439 /// std_aligned_alloc() must be freed with std_aligned_free().
440
441 void* std_aligned_alloc(size_t alignment, size_t size) {
442
443 #if defined(POSIXALIGNEDALLOC)
444   void *mem;
445   return posix_memalign(&mem, alignment, size) ? nullptr : mem;
446 #elif defined(_WIN32) && !defined(_M_ARM) && !defined(_M_ARM64)
447   return _mm_malloc(size, alignment);
448 #elif defined(_WIN32)
449   return _aligned_malloc(size, alignment);
450 #else
451   return std::aligned_alloc(alignment, size);
452 #endif
453 }
454
455 void std_aligned_free(void* ptr) {
456
457 #if defined(POSIXALIGNEDALLOC)
458   free(ptr);
459 #elif defined(_WIN32) && !defined(_M_ARM) && !defined(_M_ARM64)
460   _mm_free(ptr);
461 #elif defined(_WIN32)
462   _aligned_free(ptr);
463 #else
464   free(ptr);
465 #endif
466 }
467
468 /// aligned_large_pages_alloc() will return suitably aligned memory, if possible using large pages.
469
470 #if defined(_WIN32)
471
472 static void* aligned_large_pages_alloc_windows([[maybe_unused]] size_t allocSize) {
473
474   #if !defined(_WIN64)
475     return nullptr;
476   #else
477
478   HANDLE hProcessToken { };
479   LUID luid { };
480   void* mem = nullptr;
481
482   const size_t largePageSize = GetLargePageMinimum();
483   if (!largePageSize)
484       return nullptr;
485
486   // Dynamically link OpenProcessToken, LookupPrivilegeValue and AdjustTokenPrivileges
487
488   HMODULE hAdvapi32 = GetModuleHandle(TEXT("advapi32.dll"));
489
490   if (!hAdvapi32)
491       hAdvapi32 = LoadLibrary(TEXT("advapi32.dll"));
492
493   auto fun6 = (fun6_t)(void(*)())GetProcAddress(hAdvapi32, "OpenProcessToken");
494   if (!fun6)
495       return nullptr;
496   auto fun7 = (fun7_t)(void(*)())GetProcAddress(hAdvapi32, "LookupPrivilegeValueA");
497   if (!fun7)
498       return nullptr;
499   auto fun8 = (fun8_t)(void(*)())GetProcAddress(hAdvapi32, "AdjustTokenPrivileges");
500   if (!fun8)
501       return nullptr;
502
503   // We need SeLockMemoryPrivilege, so try to enable it for the process
504   if (!fun6( // OpenProcessToken()
505       GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hProcessToken))
506           return nullptr;
507
508   if (fun7( // LookupPrivilegeValue(nullptr, SE_LOCK_MEMORY_NAME, &luid)
509       nullptr, "SeLockMemoryPrivilege", &luid))
510   {
511       TOKEN_PRIVILEGES tp { };
512       TOKEN_PRIVILEGES prevTp { };
513       DWORD prevTpLen = 0;
514
515       tp.PrivilegeCount = 1;
516       tp.Privileges[0].Luid = luid;
517       tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
518
519       // Try to enable SeLockMemoryPrivilege. Note that even if AdjustTokenPrivileges() succeeds,
520       // we still need to query GetLastError() to ensure that the privileges were actually obtained.
521       if (fun8( // AdjustTokenPrivileges()
522               hProcessToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), &prevTp, &prevTpLen) &&
523           GetLastError() == ERROR_SUCCESS)
524       {
525           // Round up size to full pages and allocate
526           allocSize = (allocSize + largePageSize - 1) & ~size_t(largePageSize - 1);
527           mem = VirtualAlloc(
528               nullptr, allocSize, MEM_RESERVE | MEM_COMMIT | MEM_LARGE_PAGES, PAGE_READWRITE);
529
530           // Privilege no longer needed, restore previous state
531           fun8( // AdjustTokenPrivileges ()
532               hProcessToken, FALSE, &prevTp, 0, nullptr, nullptr);
533       }
534   }
535
536   CloseHandle(hProcessToken);
537
538   return mem;
539
540   #endif
541 }
542
543 void* aligned_large_pages_alloc(size_t allocSize) {
544
545   // Try to allocate large pages
546   void* mem = aligned_large_pages_alloc_windows(allocSize);
547
548   // Fall back to regular, page aligned, allocation if necessary
549   if (!mem)
550       mem = VirtualAlloc(nullptr, allocSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
551
552   return mem;
553 }
554
555 #else
556
557 void* aligned_large_pages_alloc(size_t allocSize) {
558
559 #if defined(__linux__)
560   constexpr size_t alignment = 2 * 1024 * 1024; // assumed 2MB page size
561 #else
562   constexpr size_t alignment = 4096; // assumed small page size
563 #endif
564
565   // round up to multiples of alignment
566   size_t size = ((allocSize + alignment - 1) / alignment) * alignment;
567   void *mem = std_aligned_alloc(alignment, size);
568 #if defined(MADV_HUGEPAGE)
569   madvise(mem, size, MADV_HUGEPAGE);
570 #endif
571   return mem;
572 }
573
574 #endif
575
576
577 /// aligned_large_pages_free() will free the previously allocated ttmem
578
579 #if defined(_WIN32)
580
581 void aligned_large_pages_free(void* mem) {
582
583   if (mem && !VirtualFree(mem, 0, MEM_RELEASE))
584   {
585       DWORD err = GetLastError();
586       std::cerr << "Failed to free large page memory. Error code: 0x"
587                 << std::hex << err
588                 << std::dec << std::endl;
589       exit(EXIT_FAILURE);
590   }
591 }
592
593 #else
594
595 void aligned_large_pages_free(void *mem) {
596   std_aligned_free(mem);
597 }
598
599 #endif
600
601
602 namespace WinProcGroup {
603
604 #ifndef _WIN32
605
606 void bindThisThread(size_t) {}
607
608 #else
609
610 /// best_node() retrieves logical processor information using Windows specific
611 /// API and returns the best node id for the thread with index idx. Original
612 /// code from Texel by Peter Ă–sterlund.
613
614 static int best_node(size_t idx) {
615
616   int threads = 0;
617   int nodes = 0;
618   int cores = 0;
619   DWORD returnLength = 0;
620   DWORD byteOffset = 0;
621
622   // Early exit if the needed API is not available at runtime
623   HMODULE k32 = GetModuleHandle(TEXT("Kernel32.dll"));
624   auto fun1 = (fun1_t)(void(*)())GetProcAddress(k32, "GetLogicalProcessorInformationEx");
625   if (!fun1)
626       return -1;
627
628   // First call to GetLogicalProcessorInformationEx() to get returnLength.
629   // We expect the call to fail due to null buffer.
630   if (fun1(RelationAll, nullptr, &returnLength))
631       return -1;
632
633   // Once we know returnLength, allocate the buffer
634   SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX *buffer, *ptr;
635   ptr = buffer = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*)malloc(returnLength);
636
637   // Second call to GetLogicalProcessorInformationEx(), now we expect to succeed
638   if (!fun1(RelationAll, buffer, &returnLength))
639   {
640       free(buffer);
641       return -1;
642   }
643
644   while (byteOffset < returnLength)
645   {
646       if (ptr->Relationship == RelationNumaNode)
647           nodes++;
648
649       else if (ptr->Relationship == RelationProcessorCore)
650       {
651           cores++;
652           threads += (ptr->Processor.Flags == LTP_PC_SMT) ? 2 : 1;
653       }
654
655       assert(ptr->Size);
656       byteOffset += ptr->Size;
657       ptr = (SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX*)(((char*)ptr) + ptr->Size);
658   }
659
660   free(buffer);
661
662   std::vector<int> groups;
663
664   // Run as many threads as possible on the same node until core limit is
665   // reached, then move on filling the next node.
666   for (int n = 0; n < nodes; n++)
667       for (int i = 0; i < cores / nodes; i++)
668           groups.push_back(n);
669
670   // In case a core has more than one logical processor (we assume 2) and we
671   // have still threads to allocate, then spread them evenly across available
672   // nodes.
673   for (int t = 0; t < threads - cores; t++)
674       groups.push_back(t % nodes);
675
676   // If we still have more threads than the total number of logical processors
677   // then return -1 and let the OS to decide what to do.
678   return idx < groups.size() ? groups[idx] : -1;
679 }
680
681
682 /// bindThisThread() set the group affinity of the current thread
683
684 void bindThisThread(size_t idx) {
685
686   // Use only local variables to be thread-safe
687   int node = best_node(idx);
688
689   if (node == -1)
690       return;
691
692   // Early exit if the needed API are not available at runtime
693   HMODULE k32 = GetModuleHandle(TEXT("Kernel32.dll"));
694   auto fun2 = (fun2_t)(void(*)())GetProcAddress(k32, "GetNumaNodeProcessorMaskEx");
695   auto fun3 = (fun3_t)(void(*)())GetProcAddress(k32, "SetThreadGroupAffinity");
696   auto fun4 = (fun4_t)(void(*)())GetProcAddress(k32, "GetNumaNodeProcessorMask2");
697   auto fun5 = (fun5_t)(void(*)())GetProcAddress(k32, "GetMaximumProcessorGroupCount");
698
699   if (!fun2 || !fun3)
700       return;
701
702   if (!fun4 || !fun5)
703   {
704       GROUP_AFFINITY affinity;
705       if (fun2(node, &affinity))                                                 // GetNumaNodeProcessorMaskEx
706           fun3(GetCurrentThread(), &affinity, nullptr);                          // SetThreadGroupAffinity
707   }
708   else
709   {
710       // If a numa node has more than one processor group, we assume they are
711       // sized equal and we spread threads evenly across the groups.
712       USHORT elements, returnedElements;
713       elements = fun5();                                                         // GetMaximumProcessorGroupCount
714       GROUP_AFFINITY *affinity = (GROUP_AFFINITY*)malloc(elements * sizeof(GROUP_AFFINITY));
715       if (fun4(node, affinity, elements, &returnedElements))                     // GetNumaNodeProcessorMask2
716           fun3(GetCurrentThread(), &affinity[idx % returnedElements], nullptr);  // SetThreadGroupAffinity
717       free(affinity);
718   }
719 }
720
721 #endif
722
723 } // namespace WinProcGroup
724
725 #ifdef _WIN32
726 #include <direct.h>
727 #define GETCWD _getcwd
728 #else
729 #include <unistd.h>
730 #define GETCWD getcwd
731 #endif
732
733 namespace CommandLine {
734
735 std::string argv0;            // path+name of the executable binary, as given by argv[0]
736 std::string binaryDirectory;  // path of the executable directory
737 std::string workingDirectory; // path of the working directory
738
739 void init([[maybe_unused]] int argc, char* argv[]) {
740     std::string pathSeparator;
741
742     // extract the path+name of the executable binary
743     argv0 = argv[0];
744
745 #ifdef _WIN32
746     pathSeparator = "\\";
747   #ifdef _MSC_VER
748     // Under windows argv[0] may not have the extension. Also _get_pgmptr() had
749     // issues in some windows 10 versions, so check returned values carefully.
750     char* pgmptr = nullptr;
751     if (!_get_pgmptr(&pgmptr) && pgmptr != nullptr && *pgmptr)
752         argv0 = pgmptr;
753   #endif
754 #else
755     pathSeparator = "/";
756 #endif
757
758     // extract the working directory
759     workingDirectory = "";
760     char buff[40000];
761     char* cwd = GETCWD(buff, 40000);
762     if (cwd)
763         workingDirectory = cwd;
764
765     // extract the binary directory path from argv0
766     binaryDirectory = argv0;
767     size_t pos = binaryDirectory.find_last_of("\\/");
768     if (pos == std::string::npos)
769         binaryDirectory = "." + pathSeparator;
770     else
771         binaryDirectory.resize(pos + 1);
772
773     // pattern replacement: "./" at the start of path is replaced by the working directory
774     if (binaryDirectory.find("." + pathSeparator) == 0)
775         binaryDirectory.replace(0, 1, workingDirectory);
776 }
777
778
779 } // namespace CommandLine
780
781 } // namespace Stockfish