save/restore request context in future
[folly.git] / folly / CpuId.h
index 12e9b0743293e13b89e1859c8064fb682d75698b..4a70e1464dca70a664992d421aefeeb26e257d96 100644 (file)
@@ -18,6 +18,7 @@
 #define FOLLY_CPUID_H_
 
 #include <cstdint>
+#include <folly/Portability.h>
 
 namespace folly {
 
@@ -29,7 +30,14 @@ namespace folly {
 class CpuId {
  public:
   CpuId() {
-#if defined(__x86_64__) || defined(__i386__)
+#ifdef _MSC_VER
+    int reg[4];
+
+    __cpuid((int *)reg, 1);
+    c_ = reg[2];
+    d_ = reg[3];
+
+#elif FOLLY_X64 || defined(__i386__)
     __asm__("cpuid" : "=c"(c_), "=d"(d_) : "a"(1) : "ebx");
 #else
     // On non-Intel, none of these features exist; at least not in the same form