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