This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 8ad8fd6 [GlobalISel] Auto-brief LowLevelType. NFC. new bbbcccb Initial support for vectorization using svml (short vector ma [...] new a6ad276 [Hexagon] Custom lower VECTOR_SHUFFLE and EXTRACT_SUBVECTOR for HVX new c1359c9 MachinePipeliner pass that implements Swing Modulo Scheduling
The 3 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/Analysis/TargetLibraryInfo.h | 5 +- include/llvm/CodeGen/Passes.h | 3 + include/llvm/InitializePasses.h | 1 + include/llvm/Target/TargetInstrInfo.h | 39 + lib/Analysis/TargetLibraryInfo.cpp | 72 +- lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/MachinePipeliner.cpp | 3943 +++++++++++++++++++++++ lib/Target/Hexagon/HexagonISelLowering.cpp | 177 +- lib/Target/Hexagon/HexagonISelLowering.h | 4 + lib/Target/Hexagon/HexagonInstrInfo.cpp | 107 + lib/Target/Hexagon/HexagonInstrInfo.h | 33 +- lib/Target/Hexagon/HexagonInstrInfoV60.td | 40 + lib/Target/Hexagon/HexagonTargetMachine.cpp | 3 +- test/CodeGen/Hexagon/bit-gen-rseq.ll | 2 +- test/CodeGen/Hexagon/hwloop1.ll | 2 +- test/CodeGen/Hexagon/lower-extract-subvector.ll | 47 + test/CodeGen/Hexagon/swp-const-tc.ll | 51 + test/CodeGen/Hexagon/swp-dag-phi.ll | 42 + test/CodeGen/Hexagon/swp-epilog-reuse.ll | 65 + test/CodeGen/Hexagon/swp-matmul-bitext.ll | 75 + test/CodeGen/Hexagon/swp-max.ll | 42 + test/CodeGen/Hexagon/swp-multi-loops.ll | 75 + test/CodeGen/Hexagon/swp-vect-dotprod.ll | 41 + test/CodeGen/Hexagon/swp-vmult.ll | 33 + test/CodeGen/Hexagon/swp-vsum.ll | 29 + test/CodeGen/Hexagon/v60-cur.ll | 2 +- test/CodeGen/Hexagon/vdmpy-halide-test.ll | 167 + test/CodeGen/Hexagon/vmpa-halide-test.ll | 145 + test/CodeGen/Hexagon/vpack_eo.ll | 73 + test/Transforms/LoopVectorize/X86/svml-calls.ll | 185 ++ 31 files changed, 5473 insertions(+), 32 deletions(-) create mode 100644 lib/CodeGen/MachinePipeliner.cpp create mode 100644 test/CodeGen/Hexagon/lower-extract-subvector.ll create mode 100644 test/CodeGen/Hexagon/swp-const-tc.ll create mode 100644 test/CodeGen/Hexagon/swp-dag-phi.ll create mode 100644 test/CodeGen/Hexagon/swp-epilog-reuse.ll create mode 100644 test/CodeGen/Hexagon/swp-matmul-bitext.ll create mode 100644 test/CodeGen/Hexagon/swp-max.ll create mode 100644 test/CodeGen/Hexagon/swp-multi-loops.ll create mode 100644 test/CodeGen/Hexagon/swp-vect-dotprod.ll create mode 100644 test/CodeGen/Hexagon/swp-vmult.ll create mode 100644 test/CodeGen/Hexagon/swp-vsum.ll create mode 100644 test/CodeGen/Hexagon/vdmpy-halide-test.ll create mode 100644 test/CodeGen/Hexagon/vmpa-halide-test.ll create mode 100644 test/CodeGen/Hexagon/vpack_eo.ll create mode 100644 test/Transforms/LoopVectorize/X86/svml-calls.ll