[PATCH] D114771: [NPM] -print-pipeline-passes fix printing of LoopNestPasses
Markus Lavin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 30 22:58:50 PST 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGce22b7f17b6a: [NPM] Fix LoopNestPasses in -print-pipeline-passes (authored by markus).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114771/new/
https://reviews.llvm.org/D114771
Files:
llvm/lib/Transforms/Scalar/LoopPassManager.cpp
llvm/test/Other/new-pm-print-pipeline.ll
Index: llvm/test/Other/new-pm-print-pipeline.ll
===================================================================
--- llvm/test/Other/new-pm-print-pipeline.ll
+++ llvm/test/Other/new-pm-print-pipeline.ll
@@ -69,3 +69,7 @@
; RUN: opt -disable-output -disable-verify -print-pipeline-passes -passes='cgscc(function<eager-inv>(no-op-function)),function<eager-inv>(no-op-function)' < %s | FileCheck %s --match-full-lines --check-prefixes=CHECK-22
; CHECK-22: cgscc(function<eager-inv>(no-op-function)),function<eager-inv>(no-op-function)
+
+;; Test that the loop-nest-pass lnicm is printed with the other loop-passes in the pipeline.
+; RUN: opt -disable-output -disable-verify -print-pipeline-passes -passes='function(loop-mssa(licm,loop-rotate,loop-deletion,lnicm,loop-rotate))' < %s | FileCheck %s --match-full-lines --check-prefixes=CHECK-23
+; CHECK-23: function(loop-mssa(licm,loop-rotate,loop-deletion,lnicm,loop-rotate))
Index: llvm/lib/Transforms/Scalar/LoopPassManager.cpp
===================================================================
--- llvm/lib/Transforms/Scalar/LoopPassManager.cpp
+++ llvm/lib/Transforms/Scalar/LoopPassManager.cpp
@@ -49,9 +49,17 @@
LPMUpdater &>::printPipeline(raw_ostream &OS,
function_ref<StringRef(StringRef)>
MapClassName2PassName) {
- for (unsigned Idx = 0, Size = LoopPasses.size(); Idx != Size; ++Idx) {
- auto *P = LoopPasses[Idx].get();
- P->printPipeline(OS, MapClassName2PassName);
+ assert(LoopPasses.size() + LoopNestPasses.size() == IsLoopNestPass.size());
+
+ unsigned IdxLP = 0, IdxLNP = 0;
+ for (unsigned Idx = 0, Size = IsLoopNestPass.size(); Idx != Size; ++Idx) {
+ if (IsLoopNestPass[Idx]) {
+ auto *P = LoopNestPasses[IdxLNP++].get();
+ P->printPipeline(OS, MapClassName2PassName);
+ } else {
+ auto *P = LoopPasses[IdxLP++].get();
+ P->printPipeline(OS, MapClassName2PassName);
+ }
if (Idx + 1 < Size)
OS << ",";
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D114771.390923.patch
Type: text/x-patch
Size: 2049 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211201/21e6b407/attachment.bin>
More information about the llvm-commits
mailing list