This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b9d744a0d2c [mips] Addition of the [d]rem and [d]remu instructions new f03a571cbf3 [InstCombine] fix shuffle-of-binops transform to avoid pois [...] new 317ed53ce58 [AArch64][SVE] Asm: Support for remaining shift instructions.
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: lib/Target/AArch64/AArch64SVEInstrInfo.td | 30 +++- lib/Target/AArch64/SVEInstrFormats.td | 123 +++++++++++++--- .../InstCombine/InstCombineVectorOps.cpp | 73 ++++++--- test/MC/AArch64/SVE/asr-diagnostics.s | 124 ++++++++++++++++ test/MC/AArch64/SVE/asr.s | 164 +++++++++++++++++++++ test/MC/AArch64/SVE/asrd-diagnostics.s | 41 ++++++ test/MC/AArch64/SVE/asrd.s | 56 +++++++ test/MC/AArch64/SVE/asrr-diagnostics.s | 21 +++ test/MC/AArch64/SVE/asrr.s | 32 ++++ test/MC/AArch64/SVE/lsl-diagnostics.s | 63 ++++++++ test/MC/AArch64/SVE/lsl.s | 108 ++++++++++++-- test/MC/AArch64/SVE/lslr-diagnostics.s | 21 +++ test/MC/AArch64/SVE/lslr.s | 32 ++++ test/MC/AArch64/SVE/lsr-diagnostics.s | 64 ++++++++ test/MC/AArch64/SVE/lsr.s | 156 +++++++++++++++----- test/MC/AArch64/SVE/lsrr-diagnostics.s | 21 +++ test/MC/AArch64/SVE/lsrr.s | 32 ++++ test/Transforms/InstCombine/shuffle_select.ll | 105 +++++++------ 18 files changed, 1124 insertions(+), 142 deletions(-) create mode 100644 test/MC/AArch64/SVE/asr-diagnostics.s create mode 100644 test/MC/AArch64/SVE/asr.s create mode 100644 test/MC/AArch64/SVE/asrd-diagnostics.s create mode 100644 test/MC/AArch64/SVE/asrd.s create mode 100644 test/MC/AArch64/SVE/asrr-diagnostics.s create mode 100644 test/MC/AArch64/SVE/asrr.s create mode 100644 test/MC/AArch64/SVE/lslr-diagnostics.s create mode 100644 test/MC/AArch64/SVE/lslr.s create mode 100644 test/MC/AArch64/SVE/lsrr-diagnostics.s create mode 100644 test/MC/AArch64/SVE/lsrr.s