This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a2ef53afc07 [APInt] Fix indentation of tcDivide. Combine variable decla [...] new 0dd30f878bb Add a late IR expansion pass for the experimental reduction [...]
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: include/llvm/Analysis/TargetTransformInfo.h | 7 + include/llvm/Analysis/TargetTransformInfoImpl.h | 4 + include/llvm/CodeGen/ExpandReductions.h | 24 +++ include/llvm/CodeGen/Passes.h | 4 + include/llvm/InitializePasses.h | 1 + include/llvm/Transforms/Utils/LoopUtils.h | 6 + lib/Analysis/TargetTransformInfo.cpp | 3 + lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/ExpandReductions.cpp | 167 ++++++++++++++++ lib/CodeGen/TargetPassConfig.cpp | 3 + lib/Target/AArch64/AArch64TargetTransformInfo.h | 4 + lib/Transforms/Utils/LoopUtils.cpp | 9 +- .../Generic/expand-experimental-reductions.ll | 210 +++++++++++++++++++++ test/CodeGen/X86/O0-pipeline.ll | 1 + tools/llc/llc.cpp | 1 + tools/opt/opt.cpp | 1 + 16 files changed, 441 insertions(+), 5 deletions(-) create mode 100644 include/llvm/CodeGen/ExpandReductions.h create mode 100644 lib/CodeGen/ExpandReductions.cpp create mode 100644 test/CodeGen/Generic/expand-experimental-reductions.ll