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