Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 1 | //===- IVUsers.cpp - Induction Variable Users -------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements bookkeeping for "interesting" users of expressions |
| 11 | // computed from induction variables. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 15 | #include "llvm/Analysis/IVUsers.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/AssumptionCache.h" |
Jingyue Wu | 9a92d4f | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/CodeMetrics.h" |
Chandler Carruth | 3bab7e1 | 2017-01-11 09:43:56 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/LoopAnalysisManager.h" |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/LoopPass.h" |
| 21 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Andrew Trick | ee76065 | 2012-07-13 23:33:05 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 23 | #include "llvm/IR/Constants.h" |
| 24 | #include "llvm/IR/DataLayout.h" |
| 25 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 26 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Instructions.h" |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 28 | #include "llvm/IR/Module.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Type.h" |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Debug.h" |
| 31 | #include "llvm/Support/raw_ostream.h" |
| 32 | #include <algorithm> |
| 33 | using namespace llvm; |
| 34 | |
Chandler Carruth | f1221bd | 2014-04-22 02:48:03 +0000 | [diff] [blame] | 35 | #define DEBUG_TYPE "iv-users" |
| 36 | |
Chandler Carruth | dab4eae | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 37 | AnalysisKey IVUsersAnalysis::Key; |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 38 | |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 39 | IVUsers IVUsersAnalysis::run(Loop &L, LoopAnalysisManager &AM, |
| 40 | LoopStandardAnalysisResults &AR) { |
| 41 | return IVUsers(&L, &AR.AC, &AR.LI, &AR.DT, &AR.SE); |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 42 | } |
| 43 | |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 44 | char IVUsersWrapperPass::ID = 0; |
| 45 | INITIALIZE_PASS_BEGIN(IVUsersWrapperPass, "iv-users", |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 46 | "Induction Variable Users", false, true) |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 47 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 48 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 49 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 50 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass) |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 51 | INITIALIZE_PASS_END(IVUsersWrapperPass, "iv-users", "Induction Variable Users", |
| 52 | false, true) |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 53 | |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 54 | Pass *llvm::createIVUsersPass() { return new IVUsersWrapperPass(); } |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 55 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 56 | /// isInteresting - Test whether the given expression is "interesting" when |
| 57 | /// used by the given expression, within the context of analyzing the |
| 58 | /// given loop. |
| 59 | static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L, |
Dan Gohman | a293f24 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 60 | ScalarEvolution *SE, LoopInfo *LI) { |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 61 | // An addrec is interesting if it's affine or if it has an interesting start. |
| 62 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
Dan Gohman | a293f24 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 63 | // Keep things simple. Don't touch loop-variant strides unless they're |
| 64 | // only used outside the loop and we can simplify them. |
Dan Gohman | ee6451d | 2010-04-09 01:22:56 +0000 | [diff] [blame] | 65 | if (AR->getLoop() == L) |
Dan Gohman | a293f24 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 66 | return AR->isAffine() || |
| 67 | (!L->contains(I) && |
| 68 | SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 69 | // Otherwise recurse to see if the start value is interesting, and that |
| 70 | // the step value is not interesting, since we don't yet know how to |
| 71 | // do effective SCEV expansions for addrecs with interesting steps. |
Dan Gohman | a293f24 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 72 | return isInteresting(AR->getStart(), I, L, SE, LI) && |
| 73 | !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 74 | } |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 75 | |
Dan Gohman | ed2b005 | 2010-08-17 22:50:37 +0000 | [diff] [blame] | 76 | // An add is interesting if exactly one of its operands is interesting. |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 77 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 78 | bool AnyInterestingYet = false; |
Sanjoy Das | b465429 | 2017-04-14 01:33:15 +0000 | [diff] [blame^] | 79 | for (const auto *Op : Add->operands()) |
| 80 | if (isInteresting(Op, I, L, SE, LI)) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 81 | if (AnyInterestingYet) |
| 82 | return false; |
| 83 | AnyInterestingYet = true; |
| 84 | } |
| 85 | return AnyInterestingYet; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 86 | } |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 87 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 88 | // Nothing else is interesting here. |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 89 | return false; |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 92 | /// Return true if all loop headers that dominate this block are in simplified |
| 93 | /// form. |
| 94 | static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT, |
| 95 | const LoopInfo *LI, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 96 | SmallPtrSetImpl<Loop*> &SimpleLoopNests) { |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 97 | Loop *NearestLoop = nullptr; |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 98 | for (DomTreeNode *Rung = DT->getNode(BB); |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 99 | Rung; Rung = Rung->getIDom()) { |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 100 | BasicBlock *DomBB = Rung->getBlock(); |
| 101 | Loop *DomLoop = LI->getLoopFor(DomBB); |
| 102 | if (DomLoop && DomLoop->getHeader() == DomBB) { |
| 103 | // If the domtree walk reaches a loop with no preheader, return false. |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 104 | if (!DomLoop->isLoopSimplifyForm()) |
| 105 | return false; |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 106 | // If we have already checked this loop nest, stop checking. |
| 107 | if (SimpleLoopNests.count(DomLoop)) |
| 108 | break; |
| 109 | // If we have not already checked this loop nest, remember the loop |
| 110 | // header nearest to BB. The nearest loop may not contain BB. |
| 111 | if (!NearestLoop) |
| 112 | NearestLoop = DomLoop; |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 113 | } |
| 114 | } |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 115 | if (NearestLoop) |
| 116 | SimpleLoopNests.insert(NearestLoop); |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 117 | return true; |
| 118 | } |
| 119 | |
Andrew Trick | 6d1bbb8 | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 120 | /// AddUsersImpl - Inspect the specified instruction. If it is a |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 121 | /// reducible SCEV, recursively add its users to the IVUsesByStride set and |
| 122 | /// return true. Otherwise, return false. |
Andrew Trick | 6d1bbb8 | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 123 | bool IVUsers::AddUsersImpl(Instruction *I, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 124 | SmallPtrSetImpl<Loop*> &SimpleLoopNests) { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 125 | const DataLayout &DL = I->getModule()->getDataLayout(); |
| 126 | |
Andrew Trick | 9a5b242 | 2012-01-06 21:41:55 +0000 | [diff] [blame] | 127 | // Add this IV user to the Processed set before returning false to ensure that |
| 128 | // all IV users are members of the set. See IVUsers::isIVUserOrOperand. |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 129 | if (!Processed.insert(I).second) |
Andrew Trick | 9a5b242 | 2012-01-06 21:41:55 +0000 | [diff] [blame] | 130 | return true; // Instruction already handled. |
| 131 | |
Dan Gohman | 3a08ed7 | 2010-08-29 16:40:03 +0000 | [diff] [blame] | 132 | if (!SE->isSCEVable(I->getType())) |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 133 | return false; // Void and FP expressions cannot be reduced. |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 134 | |
Andrew Trick | ee76065 | 2012-07-13 23:33:05 +0000 | [diff] [blame] | 135 | // IVUsers is used by LSR which assumes that all SCEV expressions are safe to |
| 136 | // pass to SCEVExpander. Expressions are not safe to expand if they represent |
| 137 | // operations that are not safe to speculate, namely integer division. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 138 | if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I)) |
Andrew Trick | ee76065 | 2012-07-13 23:33:05 +0000 | [diff] [blame] | 139 | return false; |
| 140 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 141 | // LSR is not APInt clean, do not touch integers bigger than 64-bits. |
Andrew Trick | 1c4b42d | 2011-03-18 16:50:32 +0000 | [diff] [blame] | 142 | // Also avoid creating IVs of non-native types. For example, we don't want a |
| 143 | // 64-bit IV in 32-bit code just because the loop has one 64-bit cast. |
| 144 | uint64_t Width = SE->getTypeSizeInBits(I->getType()); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 145 | if (Width > 64 || !DL.isLegalInteger(Width)) |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 146 | return false; |
Jim Grosbach | 50d67e7 | 2009-11-19 02:05:44 +0000 | [diff] [blame] | 147 | |
Jingyue Wu | 9a92d4f | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 148 | // Don't attempt to promote ephemeral values to indvars. They will be removed |
| 149 | // later anyway. |
| 150 | if (EphValues.count(I)) |
| 151 | return false; |
| 152 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 153 | // Get the symbolic expression for this instruction. |
| 154 | const SCEV *ISE = SE->getSCEV(I); |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 155 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 156 | // If we've come to an uninteresting expression, stop the traversal and |
| 157 | // call this a user. |
Dan Gohman | a293f24 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 158 | if (!isInteresting(ISE, I, L, SE, LI)) |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 159 | return false; |
Dan Gohman | 3a08ed7 | 2010-08-29 16:40:03 +0000 | [diff] [blame] | 160 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 161 | SmallPtrSet<Instruction *, 4> UniqueUsers; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 162 | for (Use &U : I->uses()) { |
| 163 | Instruction *User = cast<Instruction>(U.getUser()); |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 164 | if (!UniqueUsers.insert(User).second) |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 165 | continue; |
| 166 | |
| 167 | // Do not infinitely recurse on PHI nodes. |
| 168 | if (isa<PHINode>(User) && Processed.count(User)) |
| 169 | continue; |
| 170 | |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 171 | // Only consider IVUsers that are dominated by simplified loop |
| 172 | // headers. Otherwise, SCEVExpander will crash. |
Andrew Trick | 9c45706 | 2012-03-20 21:24:44 +0000 | [diff] [blame] | 173 | BasicBlock *UseBB = User->getParent(); |
| 174 | // A phi's use is live out of its predecessor block. |
| 175 | if (PHINode *PHI = dyn_cast<PHINode>(User)) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 176 | unsigned OperandNo = U.getOperandNo(); |
Andrew Trick | 9c45706 | 2012-03-20 21:24:44 +0000 | [diff] [blame] | 177 | unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo); |
| 178 | UseBB = PHI->getIncomingBlock(ValNo); |
| 179 | } |
| 180 | if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests)) |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 181 | return false; |
Andrew Trick | 070e540 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 182 | |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 183 | // Descend recursively, but not into PHI nodes outside the current loop. |
| 184 | // It's important to see the entire expression outside the loop to get |
| 185 | // choices that depend on addressing mode use right, although we won't |
| 186 | // consider references outside the loop in all cases. |
| 187 | // If User is already in Processed, we don't want to recurse into it again, |
| 188 | // but do want to record a second reference in the same instruction. |
| 189 | bool AddUserToIVUsers = false; |
Andrew Trick | 3660735 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 190 | if (LI->getLoopFor(User->getParent()) != L) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 191 | if (isa<PHINode>(User) || Processed.count(User) || |
Andrew Trick | 6d1bbb8 | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 192 | !AddUsersImpl(User, SimpleLoopNests)) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 193 | DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n' |
| 194 | << " OF SCEV: " << *ISE << '\n'); |
| 195 | AddUserToIVUsers = true; |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 196 | } |
Andrew Trick | 6d1bbb8 | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 197 | } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 198 | DEBUG(dbgs() << "FOUND USER: " << *User << '\n' |
| 199 | << " OF SCEV: " << *ISE << '\n'); |
| 200 | AddUserToIVUsers = true; |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 201 | } |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 202 | |
| 203 | if (AddUserToIVUsers) { |
| 204 | // Okay, we found a user that we cannot reduce. |
Michael Zolotukhin | 66806ae | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 205 | IVStrideUse &NewUse = AddUser(User, I); |
Dan Gohman | c6f2ddf | 2011-05-27 18:42:33 +0000 | [diff] [blame] | 206 | // Autodetect the post-inc loop set, populating NewUse.PostIncLoops. |
| 207 | // The regular return value here is discarded; instead of recording |
| 208 | // it, we just recompute it when we need it. |
Michael Zolotukhin | 66806ae | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 209 | const SCEV *OriginalISE = ISE; |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 210 | ISE = TransformForPostIncUse(NormalizeAutodetect, |
| 211 | ISE, User, I, |
| 212 | NewUse.PostIncLoops, |
| 213 | *SE, *DT); |
Michael Zolotukhin | 66806ae | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 214 | |
| 215 | // PostIncNormalization effectively simplifies the expression under |
| 216 | // pre-increment assumptions. Those assumptions (no wrapping) might not |
| 217 | // hold for the post-inc value. Catch such cases by making sure the |
| 218 | // transformation is invertible. |
| 219 | if (OriginalISE != ISE) { |
| 220 | const SCEV *DenormalizedISE = |
| 221 | TransformForPostIncUse(Denormalize, ISE, User, I, |
| 222 | NewUse.PostIncLoops, *SE, *DT); |
| 223 | |
| 224 | // If we normalized the expression, but denormalization doesn't give the |
| 225 | // original one, discard this user. |
| 226 | if (OriginalISE != DenormalizedISE) { |
| 227 | DEBUG(dbgs() << " DISCARDING (NORMALIZATION ISN'T INVERTIBLE): " |
| 228 | << *ISE << '\n'); |
| 229 | IVUses.pop_back(); |
| 230 | return false; |
| 231 | } |
| 232 | } |
Andrew Trick | adfe72b | 2011-10-13 17:06:38 +0000 | [diff] [blame] | 233 | DEBUG(if (SE->getSCEV(I) != ISE) |
| 234 | dbgs() << " NORMALIZED TO: " << *ISE << '\n'); |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 235 | } |
| 236 | } |
| 237 | return true; |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 238 | } |
| 239 | |
Andrew Trick | 6d1bbb8 | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 240 | bool IVUsers::AddUsersIfInteresting(Instruction *I) { |
| 241 | // SCEVExpander can only handle users that are dominated by simplified loop |
| 242 | // entries. Keep track of all loops that are only dominated by other simple |
| 243 | // loops so we don't traverse the domtree for each user. |
| 244 | SmallPtrSet<Loop*,16> SimpleLoopNests; |
| 245 | |
| 246 | return AddUsersImpl(I, SimpleLoopNests); |
| 247 | } |
| 248 | |
Andrew Trick | fc4ccb2 | 2011-06-21 15:43:52 +0000 | [diff] [blame] | 249 | IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) { |
| 250 | IVUses.push_back(new IVStrideUse(this, User, Operand)); |
Dan Gohman | 110ed64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 251 | return IVUses.back(); |
Evan Cheng | 85a9f43 | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 254 | IVUsers::IVUsers(Loop *L, AssumptionCache *AC, LoopInfo *LI, DominatorTree *DT, |
| 255 | ScalarEvolution *SE) |
| 256 | : L(L), AC(AC), LI(LI), DT(DT), SE(SE), IVUses() { |
Jingyue Wu | 9a92d4f | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 257 | // Collect ephemeral values so that AddUsersIfInteresting skips them. |
| 258 | EphValues.clear(); |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 259 | CodeMetrics::collectEphemeralValues(L, AC, EphValues); |
Jingyue Wu | 9a92d4f | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 260 | |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 261 | // Find all uses of induction variables in this loop, and categorize |
| 262 | // them by stride. Start by finding all of the PHI nodes in the header for |
| 263 | // this loop. If they are induction variables, inspect their uses. |
| 264 | for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) |
Duncan P. N. Exon Smith | 5a82c91 | 2015-10-10 00:53:03 +0000 | [diff] [blame] | 265 | (void)AddUsersIfInteresting(&*I); |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 266 | } |
| 267 | |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 268 | void IVUsers::print(raw_ostream &OS, const Module *M) const { |
| 269 | OS << "IV Users for loop "; |
Chandler Carruth | d48cdbf | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 270 | L->getHeader()->printAsOperand(OS, false); |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 271 | if (SE->hasLoopInvariantBackedgeTakenCount(L)) { |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 272 | OS << " with backedge-taken count " << *SE->getBackedgeTakenCount(L); |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 273 | } |
| 274 | OS << ":\n"; |
| 275 | |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 276 | for (const IVStrideUse &IVUse : IVUses) { |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 277 | OS << " "; |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 278 | IVUse.getOperandValToReplace()->printAsOperand(OS, false); |
| 279 | OS << " = " << *getReplacementExpr(IVUse); |
| 280 | for (auto PostIncLoop : IVUse.PostIncLoops) { |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 281 | OS << " (post-inc with loop "; |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 282 | PostIncLoop->getHeader()->printAsOperand(OS, false); |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 283 | OS << ")"; |
| 284 | } |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 285 | OS << " in "; |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 286 | if (IVUse.getUser()) |
| 287 | IVUse.getUser()->print(OS); |
Richard Trieu | c148522 | 2014-06-21 02:43:02 +0000 | [diff] [blame] | 288 | else |
| 289 | OS << "Printing <null> User"; |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 290 | OS << '\n'; |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
Manman Ren | 49d684e | 2012-09-12 05:06:18 +0000 | [diff] [blame] | 294 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 295 | LLVM_DUMP_METHOD void IVUsers::dump() const { print(dbgs()); } |
Manman Ren | c3366cc | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 296 | #endif |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 297 | |
| 298 | void IVUsers::releaseMemory() { |
Evan Cheng | 090ac08 | 2009-12-17 09:39:49 +0000 | [diff] [blame] | 299 | Processed.clear(); |
Dan Gohman | 92c3696 | 2009-12-18 00:06:20 +0000 | [diff] [blame] | 300 | IVUses.clear(); |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 303 | IVUsersWrapperPass::IVUsersWrapperPass() : LoopPass(ID) { |
| 304 | initializeIVUsersWrapperPassPass(*PassRegistry::getPassRegistry()); |
| 305 | } |
| 306 | |
| 307 | void IVUsersWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 308 | AU.addRequired<AssumptionCacheTracker>(); |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 309 | AU.addRequired<LoopInfoWrapperPass>(); |
| 310 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 311 | AU.addRequired<ScalarEvolutionWrapperPass>(); |
| 312 | AU.setPreservesAll(); |
| 313 | } |
| 314 | |
| 315 | bool IVUsersWrapperPass::runOnLoop(Loop *L, LPPassManager &LPM) { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 316 | auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache( |
| 317 | *L->getHeader()->getParent()); |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 318 | auto *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
| 319 | auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 320 | auto *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
| 321 | |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 322 | IU.reset(new IVUsers(L, AC, LI, DT, SE)); |
Dehao Chen | 1a44452 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 323 | return false; |
| 324 | } |
| 325 | |
| 326 | void IVUsersWrapperPass::print(raw_ostream &OS, const Module *M) const { |
| 327 | IU->print(OS, M); |
| 328 | } |
| 329 | |
| 330 | void IVUsersWrapperPass::releaseMemory() { IU->releaseMemory(); } |
| 331 | |
Dan Gohman | e637ff5 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 332 | /// getReplacementExpr - Return a SCEV expression which computes the |
| 333 | /// value of the OperandValToReplace. |
| 334 | const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const { |
| 335 | return SE->getSCEV(IU.getOperandValToReplace()); |
| 336 | } |
| 337 | |
| 338 | /// getExpr - Return the expression for the use. |
| 339 | const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const { |
| 340 | return |
| 341 | TransformForPostIncUse(Normalize, getReplacementExpr(IU), |
| 342 | IU.getUser(), IU.getOperandValToReplace(), |
| 343 | const_cast<PostIncLoopSet &>(IU.getPostIncLoops()), |
| 344 | *SE, *DT); |
| 345 | } |
| 346 | |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 347 | static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) { |
| 348 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 349 | if (AR->getLoop() == L) |
| 350 | return AR; |
| 351 | return findAddRecForLoop(AR->getStart(), L); |
| 352 | } |
| 353 | |
| 354 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Sanjoy Das | b465429 | 2017-04-14 01:33:15 +0000 | [diff] [blame^] | 355 | for (const auto *Op : Add->operands()) |
| 356 | if (const SCEVAddRecExpr *AR = findAddRecForLoop(Op, L)) |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 357 | return AR; |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 358 | return nullptr; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 361 | return nullptr; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 362 | } |
| 363 | |
Dan Gohman | e637ff5 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 364 | const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const { |
| 365 | if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L)) |
| 366 | return AR->getStepRecurrence(*SE); |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 367 | return nullptr; |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | void IVStrideUse::transformToPostInc(const Loop *L) { |
Dan Gohman | d006ab9 | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 371 | PostIncLoops.insert(L); |
| 372 | } |
| 373 | |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 374 | void IVStrideUse::deleted() { |
| 375 | // Remove this user from the list. |
Andrew Trick | 9a5b242 | 2012-01-06 21:41:55 +0000 | [diff] [blame] | 376 | Parent->Processed.erase(this->getUser()); |
Dan Gohman | 45774ce | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 377 | Parent->IVUses.erase(this); |
Dan Gohman | d76d71a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 378 | // this now dangles! |
| 379 | } |