This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 913d272566c Memory intrinsic value profile optimization: Improve debug [...] new 9dc569fec52 [GlobalOpt] Correctly update metadata when localizing a global. new 1d4cf6e01f2 [PM/LoopUnswitch] Introduce a new, simpler loop unswitch pass.
The 2 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/InitializePasses.h | 1 + .../llvm/Transforms/Scalar/SimpleLoopUnswitch.h | 53 ++ lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/IPO/GlobalOpt.cpp | 4 +- lib/Transforms/IPO/PassManagerBuilder.cpp | 11 +- lib/Transforms/Scalar/CMakeLists.txt | 1 + lib/Transforms/Scalar/Scalar.cpp | 2 + lib/Transforms/Scalar/SimpleLoopUnswitch.cpp | 626 +++++++++++++++++++++ .../GlobalOpt/localize-constexpr-debuginfo.ll | 70 +++ .../2006-06-13-SingleEntryPHI.ll | 35 ++ .../2006-06-27-DeadSwitchCase.ll | 25 + .../SimpleLoopUnswitch/2007-05-09-Unreachable.ll | 28 + .../Transforms/SimpleLoopUnswitch/2007-05-09-tl.ll | 95 ++++ .../SimpleLoopUnswitch/2007-07-12-ExitDomInfo.ll | 45 ++ .../SimpleLoopUnswitch/2007-07-13-DomInfo.ll | 27 + .../SimpleLoopUnswitch/2007-07-18-DomInfo.ll | 66 +++ .../SimpleLoopUnswitch/2007-08-01-Dom.ll | 30 + .../SimpleLoopUnswitch/2007-08-01-LCSSA.ll | 55 ++ .../2007-10-04-DomFrontier.ll | 0 .../SimpleLoopUnswitch/2008-06-02-DomInfo.ll | 26 + .../SimpleLoopUnswitch/2008-06-17-DomFrontier.ll | 22 + .../SimpleLoopUnswitch/2010-11-18-LCSSA.ll | 28 + .../SimpleLoopUnswitch/2011-06-02-CritSwitch.ll | 28 + .../SimpleLoopUnswitch/2011-09-26-EHCrash.ll | 63 +++ .../SimpleLoopUnswitch/2012-04-02-IndirectBr.ll | 41 ++ .../2012-04-30-LoopUnswitch-LPad-Crash.ll | 97 ++++ .../SimpleLoopUnswitch/2012-05-20-Phi.ll | 25 + .../SimpleLoopUnswitch/2015-09-18-Addrspace.ll | 28 + .../SimpleLoopUnswitch/LIV-loop-condtion.ll | 28 + test/Transforms/SimpleLoopUnswitch/basictest.ll | 184 ++++++ test/Transforms/SimpleLoopUnswitch/cleanuppad.ll | 44 ++ .../Transforms/SimpleLoopUnswitch/copy-metadata.ll | 34 ++ test/Transforms/SimpleLoopUnswitch/crash.ll | 66 +++ .../SimpleLoopUnswitch/exponential-behavior.ll | 51 ++ .../Transforms/SimpleLoopUnswitch/infinite-loop.ll | 64 +++ test/Transforms/SimpleLoopUnswitch/msan.ll | 141 +++++ .../SimpleLoopUnswitch/preserve-analyses.ll | 129 +++++ .../SimpleLoopUnswitch/trivial-unswitch.ll | 185 ++++++ 39 files changed, 2458 insertions(+), 2 deletions(-) create mode 100644 include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h create mode 100644 lib/Transforms/Scalar/SimpleLoopUnswitch.cpp create mode 100644 test/Transforms/GlobalOpt/localize-constexpr-debuginfo.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2006-06-13-SingleEntryPHI.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2006-06-27-DeadSwitchCase.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-05-09-Unreachable.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-05-09-tl.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-07-12-ExitDomInfo.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-07-13-DomInfo.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-07-18-DomInfo.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-08-01-Dom.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2007-08-01-LCSSA.ll copy test/Transforms/{LoopUnswitch => SimpleLoopUnswitch}/2007-10-04-DomFrontier.l [...] create mode 100644 test/Transforms/SimpleLoopUnswitch/2008-06-02-DomInfo.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2008-06-17-DomFrontier.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2010-11-18-LCSSA.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2011-06-02-CritSwitch.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2011-09-26-EHCrash.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2012-04-02-IndirectBr.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2012-04-30-LoopUnswitch-LPad [...] create mode 100644 test/Transforms/SimpleLoopUnswitch/2012-05-20-Phi.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/2015-09-18-Addrspace.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/LIV-loop-condtion.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/basictest.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/cleanuppad.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/copy-metadata.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/crash.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/exponential-behavior.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/infinite-loop.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/msan.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/preserve-analyses.ll create mode 100644 test/Transforms/SimpleLoopUnswitch/trivial-unswitch.ll