[clang] [compiler-rt] [llvm] [X86] Support APXF to enable __builtin_cpu_supports. (PR #80636)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 22 00:28:34 PST 2024
================
@@ -1845,6 +1845,12 @@ bool sys::getHostCPUFeatures(StringMap<bool> &Features) {
Features["prefetchi"] = HasLeaf7Subleaf1 && ((EDX >> 14) & 1);
Features["usermsr"] = HasLeaf7Subleaf1 && ((EDX >> 15) & 1);
Features["avx10.1-256"] = HasLeaf7Subleaf1 && ((EDX >> 19) & 1);
+ Features["egpr"] = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);
+ Features["push2pop2"] = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);
+ Features["ppx"] = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);
+ Features["ndd"] = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);
+ Features["ccmp"] = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);
+ Features["cf"] = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);
----------------
phoebewang wrote:
You should use a variable like `bool HasAPXF = HasLeaf7Subleaf1 && ((EDX >> 21) & 1);`
https://github.com/llvm/llvm-project/pull/80636
More information about the llvm-commits
mailing list