This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from faa78cf0541 [X86] Remove remaining OpndItins/SizeItins from all instruc [...] new 9a2e6e5e410 [X86][AVX512] UNPCKL/H PS and PD should be scheduled with W [...] new bb755986cfa [AArch64][SVE] Asm: Support for contiguous LD1 (scalar+imm) [...] new 6d335d78426 Remove comment reference to itineraries. NFCI. new 5031ac2c1dc [llvm-exegesis] Fix use after free.
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/AArch64RegisterInfo.td | 3 + lib/Target/AArch64/AArch64SVEInstrInfo.td | 17 ++ lib/Target/AArch64/SVEInstrFormats.td | 44 +++ lib/Target/X86/X86InstrAVX512.td | 4 +- lib/Target/X86/X86ScheduleAtom.td | 2 +- test/CodeGen/X86/avx512-shuffle-schedule.ll | 384 +++++++++++++------------- test/MC/AArch64/SVE/ld1b-diagnostics.s | 87 ++++++ test/MC/AArch64/SVE/ld1b.s | 104 +++++++ test/MC/AArch64/SVE/ld1d-diagnostics.s | 42 +++ test/MC/AArch64/SVE/ld1d.s | 32 +++ test/MC/AArch64/SVE/ld1h-diagnostics.s | 72 +++++ test/MC/AArch64/SVE/ld1h.s | 80 ++++++ test/MC/AArch64/SVE/ld1sb-diagnostics.s | 86 ++++++ test/MC/AArch64/SVE/ld1sb.s | 80 ++++++ test/MC/AArch64/SVE/ld1sh-diagnostics.s | 71 +++++ test/MC/AArch64/SVE/ld1sh.s | 56 ++++ test/MC/AArch64/SVE/ld1sw-diagnostics.s | 56 ++++ test/MC/AArch64/SVE/ld1sw.s | 32 +++ test/MC/AArch64/SVE/ld1w-diagnostics.s | 57 ++++ test/MC/AArch64/SVE/ld1w.s | 56 ++++ tools/llvm-exegesis/lib/InMemoryAssembler.cpp | 2 +- 21 files changed, 1171 insertions(+), 196 deletions(-) create mode 100644 test/MC/AArch64/SVE/ld1b-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1b.s create mode 100644 test/MC/AArch64/SVE/ld1d-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1d.s create mode 100644 test/MC/AArch64/SVE/ld1h-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1h.s create mode 100644 test/MC/AArch64/SVE/ld1sb-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1sb.s create mode 100644 test/MC/AArch64/SVE/ld1sh-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1sh.s create mode 100644 test/MC/AArch64/SVE/ld1sw-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1sw.s create mode 100644 test/MC/AArch64/SVE/ld1w-diagnostics.s create mode 100644 test/MC/AArch64/SVE/ld1w.s