This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f6e1efe78a8 [x86][icelake]VAES introduction an icelake promotion of AES [...] new 9e63bd5c712 [x86][icelake]vpclmulqdq introduction an icelake promotion [...]
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 | 8 +- lib/Support/Host.cpp | 3 + lib/Target/X86/X86.td | 3 + lib/Target/X86/X86InstrAVX512.td | 23 +++++ lib/Target/X86/X86InstrFormats.td | 8 +- lib/Target/X86/X86InstrInfo.cpp | 6 +- lib/Target/X86/X86InstrInfo.td | 3 + lib/Target/X86/X86InstrSSE.td | 132 +++++++++++++++----------- lib/Target/X86/X86Subtarget.cpp | 1 + lib/Target/X86/X86Subtarget.h | 2 + test/CodeGen/X86/avx-vpclmulqdq.ll | 13 +++ test/CodeGen/X86/avx512-vpclmulqdq.ll | 11 +++ test/CodeGen/X86/avx512vl-vpclmulqdq.ll | 22 +++++ test/CodeGen/X86/commute-vpclmulqdq-avx.ll | 42 ++++++++ test/CodeGen/X86/commute-vpclmulqdq-avx512.ll | 116 ++++++++++++++++++++++ test/MC/X86/avx512vlvpclmul.s | 58 +++++++++++ test/MC/X86/avx512vpclmul.s | 29 ++++++ test/MC/X86/vpclmulqdq.s | 30 ++++++ 18 files changed, 446 insertions(+), 64 deletions(-) create mode 100644 test/CodeGen/X86/avx-vpclmulqdq.ll create mode 100644 test/CodeGen/X86/avx512-vpclmulqdq.ll create mode 100644 test/CodeGen/X86/avx512vl-vpclmulqdq.ll create mode 100644 test/CodeGen/X86/commute-vpclmulqdq-avx.ll create mode 100644 test/CodeGen/X86/commute-vpclmulqdq-avx512.ll create mode 100644 test/MC/X86/avx512vlvpclmul.s create mode 100644 test/MC/X86/avx512vpclmul.s create mode 100644 test/MC/X86/vpclmulqdq.s