This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 28f2dc50704 [AArch64][SVE2] Asm: add integer add/sub long/wide instructions new 85b221a6c24 [AArch64][SVE2] Asm: add PMULLB/PMULLT instructions new 128852a784f [SelectionDAG] computeKnownBits - support constant pool val [...]
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/CodeGen/TargetLowering.h | 4 + lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 +- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 55 +- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 12 + lib/Target/AArch64/AArch64SVEInstrInfo.td | 12 + lib/Target/AArch64/SVEInstrFormats.td | 5 + lib/Target/X86/X86ISelLowering.cpp | 16 +- lib/Target/X86/X86ISelLowering.h | 2 + test/CodeGen/X86/avx512-vec-cmp.ll | 5 +- test/CodeGen/X86/bitreverse.ll | 18 +- test/CodeGen/X86/combine-bitreverse.ll | 18 +- test/CodeGen/X86/combine-shl.ll | 11 +- test/CodeGen/X86/movmsk-cmp.ll | 16 - test/CodeGen/X86/vector-bitreverse.ll | 553 ++++-------- test/CodeGen/X86/vector-pcmp.ll | 3 +- test/CodeGen/X86/vector-reduce-mul-widen.ll | 1147 ++++++++++--------------- test/CodeGen/X86/vector-reduce-mul.ll | 1122 ++++++++++-------------- test/CodeGen/X86/vector-shift-lshr-sub128.ll | 24 +- test/CodeGen/X86/vector-zext.ll | 2 - test/MC/AArch64/SVE2/pmullb-128-diagnostics.s | 25 + test/MC/AArch64/SVE2/pmullb-128.s | 15 + test/MC/AArch64/SVE2/pmullb-diagnostics.s | 45 + test/MC/AArch64/SVE2/pmullb.s | 21 + test/MC/AArch64/SVE2/pmullt-128-diagnostics.s | 25 + test/MC/AArch64/SVE2/pmullt-128.s | 15 + test/MC/AArch64/SVE2/pmullt-diagnostics.s | 45 + test/MC/AArch64/SVE2/pmullt.s | 21 + 27 files changed, 1422 insertions(+), 1817 deletions(-) create mode 100644 test/MC/AArch64/SVE2/pmullb-128-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/pmullb-128.s create mode 100644 test/MC/AArch64/SVE2/pmullb-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/pmullb.s create mode 100644 test/MC/AArch64/SVE2/pmullt-128-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/pmullt-128.s create mode 100644 test/MC/AArch64/SVE2/pmullt-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/pmullt.s