This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 692eabe [llvm-pdbdump-fuzzer] Add a fuzzer for llvm-pdbdump new a2bdb6d X86: permit using SjLj EH on x86 targets as an option new acc7ed7 [AVX512] Remove masked store intrinsics. Clang now emits gene [...]
The 2 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/Analysis/EHPersonalities.h | 2 + include/llvm/CodeGen/CommandFlags.h | 17 ++ include/llvm/IR/IntrinsicsX86.td | 130 ---------- include/llvm/MC/MCAsmInfo.h | 4 + lib/Analysis/EHPersonalities.cpp | 2 + lib/CodeGen/LLVMTargetMachine.cpp | 3 + lib/IR/AutoUpgrade.cpp | 66 ++++++ lib/Target/X86/X86ISelLowering.cpp | 261 ++++++++++++++++++++- lib/Target/X86/X86ISelLowering.h | 10 + lib/Target/X86/X86InstrInfo.td | 7 + lib/Target/X86/X86IntrinsicsInfo.h | 30 --- .../InstCombine/InstructionCombining.cpp | 2 + test/CodeGen/X86/avx512-intrinsics-upgrade.ll | 114 +++++++++ test/CodeGen/X86/avx512-intrinsics.ll | 112 --------- test/CodeGen/X86/avx512bw-intrinsics-upgrade.ll | 49 ++++ test/CodeGen/X86/avx512bw-intrinsics.ll | 48 ---- test/CodeGen/X86/avx512bwvl-intrinsics-upgrade.ll | 58 +++++ test/CodeGen/X86/avx512bwvl-intrinsics.ll | 56 ----- test/CodeGen/X86/avx512vl-intrinsics-upgrade.ll | 226 ++++++++++++++++++ test/CodeGen/X86/avx512vl-intrinsics.ll | 224 ------------------ test/CodeGen/X86/sjlj-eh.ll | 72 ++++++ 21 files changed, 892 insertions(+), 601 deletions(-) create mode 100644 test/CodeGen/X86/avx512-intrinsics-upgrade.ll create mode 100644 test/CodeGen/X86/avx512bw-intrinsics-upgrade.ll create mode 100644 test/CodeGen/X86/avx512bwvl-intrinsics-upgrade.ll create mode 100644 test/CodeGen/X86/avx512vl-intrinsics-upgrade.ll create mode 100644 test/CodeGen/X86/sjlj-eh.ll