This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a07e32d Fix DbgValue handling in SelectionDAG. new 5559171 [Hexagon] Implement MI-level constant propagation
The 1 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/Hexagon/CMakeLists.txt | 1 + lib/Target/Hexagon/HexagonConstPropagation.cpp | 3208 +++++++++++++++++++++++ lib/Target/Hexagon/HexagonTargetMachine.cpp | 9 + test/CodeGen/Hexagon/constp-clb.ll | 23 + test/CodeGen/Hexagon/constp-combine-neg.ll | 27 + test/CodeGen/Hexagon/constp-ctb.ll | 26 + test/CodeGen/Hexagon/constp-extract.ll | 31 + test/CodeGen/Hexagon/constp-physreg.ll | 21 + test/CodeGen/Hexagon/constp-rewrite-branches.ll | 17 + test/CodeGen/Hexagon/constp-rseq.ll | 19 + test/CodeGen/Hexagon/constp-vsplat.ll | 18 + test/CodeGen/Hexagon/vect/vect-vsplatb.ll | 2 +- test/CodeGen/Hexagon/vect/vect-vsplath.ll | 2 +- 13 files changed, 3402 insertions(+), 2 deletions(-) create mode 100644 lib/Target/Hexagon/HexagonConstPropagation.cpp create mode 100644 test/CodeGen/Hexagon/constp-clb.ll create mode 100644 test/CodeGen/Hexagon/constp-combine-neg.ll create mode 100644 test/CodeGen/Hexagon/constp-ctb.ll create mode 100644 test/CodeGen/Hexagon/constp-extract.ll create mode 100644 test/CodeGen/Hexagon/constp-physreg.ll create mode 100644 test/CodeGen/Hexagon/constp-rewrite-branches.ll create mode 100644 test/CodeGen/Hexagon/constp-rseq.ll create mode 100644 test/CodeGen/Hexagon/constp-vsplat.ll