This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 942e9a55014 [AArch64][SVE2] Asm: add saturating add/sub instructions new d0eae6cedfb [AArch64][SVE2] Asm: add various bitwise shift instructions new d7d580485b1 Use the DataLayout::typeSizeEqualsStoreSize helper. NFC
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/CodeGen/CodeGenPrepare.cpp | 5 +- lib/Target/AArch64/AArch64SVEInstrInfo.td | 29 ++++- lib/Target/AArch64/SVEInstrFormats.td | 14 +-- .../InstCombine/InstCombineLoadStoreAlloca.cpp | 2 +- lib/Transforms/Scalar/SROA.cpp | 6 +- lib/Transforms/Scalar/Scalarizer.cpp | 3 +- test/MC/AArch64/SVE2/sqrshl-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/sqrshl.s | 59 ++++++++++ test/MC/AArch64/SVE2/sqrshlr-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/sqrshlr.s | 59 ++++++++++ test/MC/AArch64/SVE2/sqshl-diagnostics.s | 98 +++++++++++++++ test/MC/AArch64/SVE2/sqshl.s | 131 +++++++++++++++++++++ test/MC/AArch64/SVE2/sqshlr-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/sqshlr.s | 59 ++++++++++ test/MC/AArch64/SVE2/sqshlu-diagnostics.s | 78 ++++++++++++ test/MC/AArch64/SVE2/sqshlu.s | 83 +++++++++++++ test/MC/AArch64/SVE2/srshl-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/srshl.s | 59 ++++++++++ test/MC/AArch64/SVE2/srshlr-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/srshlr.s | 59 ++++++++++ test/MC/AArch64/SVE2/srshr-diagnostics.s | 78 ++++++++++++ test/MC/AArch64/SVE2/srshr.s | 84 +++++++++++++ test/MC/AArch64/SVE2/uqrshl-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/uqrshl.s | 59 ++++++++++ test/MC/AArch64/SVE2/uqrshlr-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/uqrshlr.s | 59 ++++++++++ test/MC/AArch64/SVE2/uqshl-diagnostics.s | 98 +++++++++++++++ test/MC/AArch64/SVE2/uqshl.s | 131 +++++++++++++++++++++ test/MC/AArch64/SVE2/uqshlr-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/uqshlr.s | 59 ++++++++++ test/MC/AArch64/SVE2/urshl-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/urshl.s | 59 ++++++++++ test/MC/AArch64/SVE2/urshlr-diagnostics.s | 37 ++++++ test/MC/AArch64/SVE2/urshlr.s | 59 ++++++++++ test/MC/AArch64/SVE2/urshr-diagnostics.s | 78 ++++++++++++ test/MC/AArch64/SVE2/urshr.s | 84 +++++++++++++ 36 files changed, 1941 insertions(+), 21 deletions(-) create mode 100644 test/MC/AArch64/SVE2/sqrshl-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sqrshl.s create mode 100644 test/MC/AArch64/SVE2/sqrshlr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sqrshlr.s create mode 100644 test/MC/AArch64/SVE2/sqshl-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sqshl.s create mode 100644 test/MC/AArch64/SVE2/sqshlr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sqshlr.s create mode 100644 test/MC/AArch64/SVE2/sqshlu-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/sqshlu.s create mode 100644 test/MC/AArch64/SVE2/srshl-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/srshl.s create mode 100644 test/MC/AArch64/SVE2/srshlr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/srshlr.s create mode 100644 test/MC/AArch64/SVE2/srshr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/srshr.s create mode 100644 test/MC/AArch64/SVE2/uqrshl-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uqrshl.s create mode 100644 test/MC/AArch64/SVE2/uqrshlr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uqrshlr.s create mode 100644 test/MC/AArch64/SVE2/uqshl-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uqshl.s create mode 100644 test/MC/AArch64/SVE2/uqshlr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uqshlr.s create mode 100644 test/MC/AArch64/SVE2/urshl-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/urshl.s create mode 100644 test/MC/AArch64/SVE2/urshlr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/urshlr.s create mode 100644 test/MC/AArch64/SVE2/urshr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/urshr.s