This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 19f4c1ecb2b [ARM] Regenerated arg endian test new 1726fda3b28 [AArch64] Updated bigendian buildvector tests new ce729e20ee9 [AArch64][SVE] Asm: Vector Unpack Low/High instructions. new 27babdf37a5 [llvm-mca] Removed unused arguments from methods in class P [...] new ed770b652cb [llvm-mca] Simplify the Pipeline constructor. NFC
The 4 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 | 8 + lib/Target/AArch64/SVEInstrFormats.td | 37 +++++ test/CodeGen/AArch64/aarch64-be-bv.ll | 256 +++++++++++++++--------------- test/MC/AArch64/SVE/punpkhi-diagnostics.s | 15 ++ test/MC/AArch64/SVE/punpkhi.s | 20 +++ test/MC/AArch64/SVE/punpklo-diagnostics.s | 15 ++ test/MC/AArch64/SVE/punpklo.s | 20 +++ test/MC/AArch64/SVE/sunpkhi-diagnostics.s | 20 +++ test/MC/AArch64/SVE/sunpkhi.s | 26 +++ test/MC/AArch64/SVE/sunpklo-diagnostics.s | 20 +++ test/MC/AArch64/SVE/sunpklo.s | 26 +++ test/MC/AArch64/SVE/uunpkhi-diagnostics.s | 20 +++ test/MC/AArch64/SVE/uunpkhi.s | 26 +++ test/MC/AArch64/SVE/uunpklo-diagnostics.s | 20 +++ test/MC/AArch64/SVE/uunpklo.s | 26 +++ tools/llvm-mca/Context.cpp | 4 +- tools/llvm-mca/Pipeline.cpp | 22 +-- tools/llvm-mca/Pipeline.h | 12 +- 18 files changed, 444 insertions(+), 149 deletions(-) create mode 100644 test/MC/AArch64/SVE/punpkhi-diagnostics.s create mode 100644 test/MC/AArch64/SVE/punpkhi.s create mode 100644 test/MC/AArch64/SVE/punpklo-diagnostics.s create mode 100644 test/MC/AArch64/SVE/punpklo.s create mode 100644 test/MC/AArch64/SVE/sunpkhi-diagnostics.s create mode 100644 test/MC/AArch64/SVE/sunpkhi.s create mode 100644 test/MC/AArch64/SVE/sunpklo-diagnostics.s create mode 100644 test/MC/AArch64/SVE/sunpklo.s create mode 100644 test/MC/AArch64/SVE/uunpkhi-diagnostics.s create mode 100644 test/MC/AArch64/SVE/uunpkhi.s create mode 100644 test/MC/AArch64/SVE/uunpklo-diagnostics.s create mode 100644 test/MC/AArch64/SVE/uunpklo.s