]> git.sesse.net Git - stockfish/blobdiff - src/types.h
Fix __cpuid() compile error with gcc
[stockfish] / src / types.h
index 0d0d8485ecdbec7f4f248a828e4a27fa9a08bee2..3d0305de78c3153b7a5c04602d2ba1d6eb4426cf 100644 (file)
@@ -73,4 +73,25 @@ typedef uint64_t Bitboard;
 #define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(64)))
 #endif
 
+// Define a __cpuid() function for gcc compilers, for Intel and MSVC
+// is already available as an intrinsic.
+#if defined(__INTEL_COMPILER)
+#include <nmmintrin.h>
+#elif defined(_MSC_VER)
+#include <intrin.h>
+#elif defined(__GNUC__)
+inline void __cpuid(int CPUInfo[4], int InfoType)
+{
+  int* eax = CPUInfo + 0;
+  int* ebx = CPUInfo + 1;
+  int* ecx = CPUInfo + 2;
+  int* edx = CPUInfo + 3;
+
+  *eax = InfoType;
+  *ecx = 0;
+  __asm__("cpuid" : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
+                  : "0" (*eax), "2" (*ecx));
+}
+#endif
+
 #endif // !defined(TYPES_H_INCLUDED)