an icelake promotion of AES
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/Support/Host.cpp | ||
---|---|---|
433 | This isn't needed if it isn't used by code in getHostCPUName | |
1062 | This isn't needed if it isn't used by code in getHostCPUName. | |
1478 | Please use ECX >> 9 or whatever the correct bit is like the rest of the code. Qualify with HasAVXSave as well. | |
lib/Target/X86/X86.td | ||
174 | Should this imply FeatureAES as well? | |
lib/Target/X86/X86InstrInfo.td | ||
829 | I don't think you nee the assembler predicate. We only need it on the core AVX512 features because it enables the parser to recognize mask registers and embeded rounding. In general we don't do fine grained control of what instructinos are available to the assembler. |
lib/Target/X86/X86.td | ||
---|---|---|
174 | not sure, |
lib/Support/Host.cpp | ||
---|---|---|
433 | The first 31 values need to be kept in sync with compiler-rt since we have a copy and paste of some of this code in compiler-rt. For runtime CPU detection in compiled binaries. It makes diffing easier if they are synchronized. I just committed some comments that clarify that a little better. I'm hoping to move this enum to a header file that clang can use as a proxy for what's in compiler-rt as well since clang can't include any files from the compiler-rt project. Currently we just have a separate copy code in clang too. | |
lib/Target/X86/X86.td | ||
174 | The EVEX->VEX pass is going to turn 128-bit EVEX encoded AES instructions into VEX encoded versions. So those instructions better be available with VAES. |
This isn't needed if it isn't used by code in getHostCPUName