From: Chad Rosier Date: Wed, 7 Sep 2016 15:56:59 +0000 (+0000) Subject: [LoopInterchange] Improve debug output. NFC. X-Git-Tag: llvmorg-4.0.0-rc1~10452 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f5814f56b8cd1eefbd37a80b802f5ac0d4bf420e;p=platform%2Fupstream%2Fllvm.git [LoopInterchange] Improve debug output. NFC. llvm-svn: 280819 --- diff --git a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp index 8bd0a96..428daac 100644 --- a/llvm/lib/Transforms/Scalar/LoopInterchange.cpp +++ b/llvm/lib/Transforms/Scalar/LoopInterchange.cpp @@ -122,11 +122,11 @@ static bool populateDependencyMatrix(CharMatrix &DepMatrix, unsigned Level, if (D->isFlow()) { // TODO: Handle Flow dependence.Check if it is sufficient to populate // the Dependence Matrix with the direction reversed. - DEBUG(dbgs() << "Flow dependence not handled"); + DEBUG(dbgs() << "Flow dependence not handled\n"); return false; } if (D->isAnti()) { - DEBUG(dbgs() << "Found Anti dependence \n"); + DEBUG(dbgs() << "Found Anti dependence\n"); unsigned Levels = D->getLevels(); char Direction; for (unsigned II = 1; II <= Levels; ++II) { @@ -278,7 +278,9 @@ static bool isLegalToInterChangeLoops(CharMatrix &DepMatrix, static void populateWorklist(Loop &L, SmallVector &V) { - DEBUG(dbgs() << "Calling populateWorklist called\n"); + DEBUG(dbgs() << "Calling populateWorklist on Func: " + << L.getHeader()->getParent()->getName() << " Loop: %" + << L.getHeader()->getName() << '\n'); LoopVector LoopList; Loop *CurrentLoop = &L; const std::vector *Vec = &CurrentLoop->getSubLoops(); @@ -296,6 +298,7 @@ static void populateWorklist(Loop &L, SmallVector &V) { } LoopList.push_back(CurrentLoop); V.push_back(std::move(LoopList)); + DEBUG(dbgs() << "Worklist size = " << V.size() << "\n"); } static PHINode *getInductionVariable(Loop *L, ScalarEvolution *SE) { @@ -461,7 +464,6 @@ struct LoopInterchange : public FunctionPass { for (Loop *L : *LI) populateWorklist(*L, Worklist); - DEBUG(dbgs() << "Worklist size = " << Worklist.size() << "\n"); bool Changed = true; while (!Worklist.empty()) { LoopVector LoopList = Worklist.pop_back_val();