This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 6b834bb [PM] Take more drastic measures to work around MSVC's failure [...] new c68d25f [PM] Separate the LoopAnalysisManager from the LoopPassManage [...]
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/IVUsers.h | 11 +- include/llvm/Analysis/LoopAccessAnalysis.h | 13 +- include/llvm/Analysis/LoopAnalysisManager.h | 155 +++++++++++++++++++++ include/llvm/Passes/PassBuilder.h | 2 +- include/llvm/Transforms/Scalar/IVUsersPrinter.h | 30 ++++ include/llvm/Transforms/Scalar/IndVarSimplify.h | 2 +- include/llvm/Transforms/Scalar/LICM.h | 2 +- .../Transforms/Scalar/LoopAccessAnalysisPrinter.h | 31 +++++ include/llvm/Transforms/Scalar/LoopDeletion.h | 2 +- .../llvm/Transforms/Scalar/LoopIdiomRecognize.h | 2 +- include/llvm/Transforms/Scalar/LoopInstSimplify.h | 2 +- .../Scalar}/LoopPassManager.h | 120 +--------------- include/llvm/Transforms/Scalar/LoopRotation.h | 2 +- include/llvm/Transforms/Scalar/LoopSimplifyCFG.h | 2 +- .../llvm/Transforms/Scalar/LoopStrengthReduce.h | 2 +- include/llvm/Transforms/Scalar/LoopUnrollPass.h | 2 +- include/llvm/Transforms/Vectorize/LoopVectorize.h | 2 +- lib/Analysis/CMakeLists.txt | 2 +- lib/Analysis/IVUsers.cpp | 9 +- lib/Analysis/LoopAccessAnalysis.cpp | 21 +-- ...LoopPassManager.cpp => LoopAnalysisManager.cpp} | 71 +--------- lib/Analysis/LoopPass.cpp | 2 +- lib/LTO/LTOBackend.cpp | 2 +- lib/Passes/PassBuilder.cpp | 4 +- lib/Transforms/Scalar/CMakeLists.txt | 3 + lib/Transforms/Scalar/IVUsersPrinter.cpp | 22 +++ lib/Transforms/Scalar/IndVarSimplify.cpp | 6 +- lib/Transforms/Scalar/LICM.cpp | 2 +- .../Scalar/LoopAccessAnalysisPrinter.cpp | 25 ++++ lib/Transforms/Scalar/LoopDeletion.cpp | 2 +- lib/Transforms/Scalar/LoopDistribute.cpp | 2 +- lib/Transforms/Scalar/LoopIdiomRecognize.cpp | 2 +- lib/Transforms/Scalar/LoopInstSimplify.cpp | 2 +- lib/Transforms/Scalar/LoopPassManager.cpp | 85 +++++++++++ lib/Transforms/Scalar/LoopRotation.cpp | 6 +- lib/Transforms/Scalar/LoopSimplifyCFG.cpp | 4 +- lib/Transforms/Scalar/LoopSink.cpp | 2 +- lib/Transforms/Scalar/LoopStrengthReduce.cpp | 8 +- lib/Transforms/Scalar/LoopUnrollPass.cpp | 2 +- tools/opt/NewPMDriver.cpp | 2 +- unittests/Analysis/CMakeLists.txt | 1 - unittests/Transforms/CMakeLists.txt | 1 + unittests/Transforms/Scalar/CMakeLists.txt | 12 ++ .../Scalar}/LoopPassManagerTest.cpp | 2 +- 44 files changed, 418 insertions(+), 266 deletions(-) create mode 100644 include/llvm/Analysis/LoopAnalysisManager.h create mode 100644 include/llvm/Transforms/Scalar/IVUsersPrinter.h create mode 100644 include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h rename include/llvm/{Analysis => Transforms/Scalar}/LoopPassManager.h (75%) rename lib/Analysis/{LoopPassManager.cpp => LoopAnalysisManager.cpp} (71%) create mode 100644 lib/Transforms/Scalar/IVUsersPrinter.cpp create mode 100644 lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp create mode 100644 lib/Transforms/Scalar/LoopPassManager.cpp create mode 100644 unittests/Transforms/Scalar/CMakeLists.txt rename unittests/{Analysis => Transforms/Scalar}/LoopPassManagerTest.cpp (99%)