This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f9cc39148ab [RISCV] Use register X0 (ZERO) for constant 0 new f6e1efe78a8 [x86][icelake]VAES introduction an icelake promotion of AES [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/IR/IntrinsicsX86.td | 33 ++++ lib/Support/Host.cpp | 1 + lib/Target/X86/X86.td | 3 + lib/Target/X86/X86InstrAVX512.td | 27 +++ lib/Target/X86/X86InstrInfo.td | 2 + lib/Target/X86/X86InstrSSE.td | 66 ++++--- lib/Target/X86/X86Subtarget.cpp | 1 + lib/Target/X86/X86Subtarget.h | 2 + test/CodeGen/X86/vaes-intrinsics-avx-x86.ll | 13 ++ test/CodeGen/X86/vaes-intrinsics-avx512-x86.ll | 42 +++++ test/CodeGen/X86/vaes-intrinsics-avx512vl-x86.ll | 82 ++++++++ test/MC/X86/avx512vaes-encoding.s | 114 ++++++++++++ test/MC/X86/avx512vl_vaes-encoding.s | 226 +++++++++++++++++++++++ test/MC/X86/avx_vaes-encoding.s | 114 ++++++++++++ 14 files changed, 700 insertions(+), 26 deletions(-) create mode 100644 test/CodeGen/X86/vaes-intrinsics-avx-x86.ll create mode 100644 test/CodeGen/X86/vaes-intrinsics-avx512-x86.ll create mode 100644 test/CodeGen/X86/vaes-intrinsics-avx512vl-x86.ll create mode 100644 test/MC/X86/avx512vaes-encoding.s create mode 100644 test/MC/X86/avx512vl_vaes-encoding.s create mode 100644 test/MC/X86/avx_vaes-encoding.s