This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 72cc54d9de1 [AArch64][SVE2] Asm: add saturating multiply-add interleave [...] new 88ea3558125 [AArch64][SVE2] Asm: add int halving add/sub (predicated) i [...] new 0ddfb52ad62 [DebugInfoMetadata] Refactor DIExpression::prepend constants (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: include/llvm/IR/DebugInfoMetadata.h | 14 +++-- include/llvm/Transforms/Utils/Local.h | 6 +-- lib/CodeGen/LiveDebugValues.cpp | 6 +-- lib/CodeGen/LiveDebugVariables.cpp | 6 ++- lib/CodeGen/MachineInstr.cpp | 2 +- lib/CodeGen/PrologEpilogInserter.cpp | 6 ++- lib/CodeGen/SafeStack.cpp | 9 ++-- lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 5 +- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 +- lib/IR/DebugInfoMetadata.cpp | 11 ++-- lib/Target/AArch64/AArch64SVEInstrInfo.td | 10 ++++ lib/Target/AArch64/SVEInstrFormats.td | 33 ++++++++++++ lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp | 4 +- lib/Target/X86/X86OptimizeLEAs.cpp | 5 +- lib/Transforms/IPO/GlobalOpt.cpp | 3 +- .../Instrumentation/AddressSanitizer.cpp | 9 ++-- lib/Transforms/Utils/InlineFunction.cpp | 3 +- lib/Transforms/Utils/Local.cpp | 10 ++-- test/MC/AArch64/SVE2/shadd-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/shadd.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/shsub-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/shsub.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/shsubr-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/shsubr.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/srhadd-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/srhadd.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/uhadd-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/uhadd.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/uhsub-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/uhsub.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/uhsubr-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/uhsubr.s | 59 ++++++++++++++++++++++ test/MC/AArch64/SVE2/urhadd-diagnostics.s | 37 ++++++++++++++ test/MC/AArch64/SVE2/urhadd.s | 59 ++++++++++++++++++++++ unittests/IR/MetadataTest.cpp | 6 ++- unittests/Transforms/Utils/LocalTest.cpp | 3 +- 36 files changed, 869 insertions(+), 52 deletions(-) create mode 100644 test/MC/AArch64/SVE2/shadd-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/shadd.s create mode 100644 test/MC/AArch64/SVE2/shsub-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/shsub.s create mode 100644 test/MC/AArch64/SVE2/shsubr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/shsubr.s create mode 100644 test/MC/AArch64/SVE2/srhadd-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/srhadd.s create mode 100644 test/MC/AArch64/SVE2/uhadd-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uhadd.s create mode 100644 test/MC/AArch64/SVE2/uhsub-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uhsub.s create mode 100644 test/MC/AArch64/SVE2/uhsubr-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/uhsubr.s create mode 100644 test/MC/AArch64/SVE2/urhadd-diagnostics.s create mode 100644 test/MC/AArch64/SVE2/urhadd.s