[PATCH] D21033: Add runtime support for __cpu_model (__builtin_cpu_supports)

Joerg Sonnenberger via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 15 13:51:17 PDT 2016


joerg added inline comments.

================
Comment at: lib/builtins/cpu_model.c:729
@@ +728,3 @@
+
+  /* Assume cpuid insn present. Run in level 0 to get vendor id. */
+  if (getX86CpuIDAndInfo(0, &MaxLeaf, &Vendor, &ECX, &EDX)) {
----------------
asbirlea wrote:
> echristo wrote:
> > joerg wrote:
> > > This assumption will bit us, BTW. We've bug reports for OpenSSL crashing not too long ago on CPUs without CPUID support. At least for i386, presence definitely must be checked first via the corresponding eflags bit.
> > Yeesh. You should probably update the code in Host.cpp then :)
> I'm not familiar with what flags need to be checked. Could you elaborate or update Host.cpp to resolve this? 
Take a look at clang's cpuid.h and __get_cpuid_max. I wonder if we can/should assume the presence of that header. What's the Windows situation here?


http://reviews.llvm.org/D21033





More information about the llvm-commits mailing list