blob: e0c5d8fa5f5a6d8c008892d99c152b39412abed3 [file] [log] [blame]
Dan Gohmand76d71a2009-05-12 02:17:14 +00001//===- 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
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/STLExtras.h"
Jingyue Wu9a92d4f2015-07-13 03:28:53 +000016#include "llvm/Analysis/AssumptionCache.h"
17#include "llvm/Analysis/CodeMetrics.h"
18#include "llvm/Analysis/IVUsers.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000019#include "llvm/Analysis/LoopPass.h"
20#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Andrew Trickee760652012-07-13 23:33:05 +000021#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/Constants.h"
23#include "llvm/IR/DataLayout.h"
24#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000025#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Instructions.h"
Mehdi Amini46a43552015-03-04 18:43:29 +000027#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Type.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000029#include "llvm/Support/Debug.h"
30#include "llvm/Support/raw_ostream.h"
31#include <algorithm>
32using namespace llvm;
33
Chandler Carruthf1221bd2014-04-22 02:48:03 +000034#define DEBUG_TYPE "iv-users"
35
Dan Gohmand76d71a2009-05-12 02:17:14 +000036char IVUsers::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000037INITIALIZE_PASS_BEGIN(IVUsers, "iv-users",
38 "Induction Variable Users", false, true)
Jingyue Wu9a92d4f2015-07-13 03:28:53 +000039INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth4f8f3072015-01-17 14:16:18 +000040INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +000041INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth2f1fd162015-08-17 02:08:17 +000042INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +000043INITIALIZE_PASS_END(IVUsers, "iv-users",
44 "Induction Variable Users", false, true)
Dan Gohmand76d71a2009-05-12 02:17:14 +000045
46Pass *llvm::createIVUsersPass() {
47 return new IVUsers();
48}
49
Dan Gohman110ed642010-09-01 01:45:53 +000050/// isInteresting - Test whether the given expression is "interesting" when
51/// used by the given expression, within the context of analyzing the
52/// given loop.
53static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L,
Dan Gohmana293f242011-07-01 22:05:19 +000054 ScalarEvolution *SE, LoopInfo *LI) {
Dan Gohmand006ab92010-04-07 22:27:08 +000055 // An addrec is interesting if it's affine or if it has an interesting start.
56 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmana293f242011-07-01 22:05:19 +000057 // Keep things simple. Don't touch loop-variant strides unless they're
58 // only used outside the loop and we can simplify them.
Dan Gohmanee6451d2010-04-09 01:22:56 +000059 if (AR->getLoop() == L)
Dan Gohmana293f242011-07-01 22:05:19 +000060 return AR->isAffine() ||
61 (!L->contains(I) &&
62 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
Dan Gohman110ed642010-09-01 01:45:53 +000063 // Otherwise recurse to see if the start value is interesting, and that
64 // the step value is not interesting, since we don't yet know how to
65 // do effective SCEV expansions for addrecs with interesting steps.
Dan Gohmana293f242011-07-01 22:05:19 +000066 return isInteresting(AR->getStart(), I, L, SE, LI) &&
67 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI);
Dan Gohmand006ab92010-04-07 22:27:08 +000068 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000069
Dan Gohmaned2b0052010-08-17 22:50:37 +000070 // An add is interesting if exactly one of its operands is interesting.
Dan Gohmand006ab92010-04-07 22:27:08 +000071 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman110ed642010-09-01 01:45:53 +000072 bool AnyInterestingYet = false;
Dan Gohmand006ab92010-04-07 22:27:08 +000073 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
74 OI != OE; ++OI)
Dan Gohmana293f242011-07-01 22:05:19 +000075 if (isInteresting(*OI, I, L, SE, LI)) {
Dan Gohman110ed642010-09-01 01:45:53 +000076 if (AnyInterestingYet)
77 return false;
78 AnyInterestingYet = true;
79 }
80 return AnyInterestingYet;
Dan Gohmand006ab92010-04-07 22:27:08 +000081 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000082
Dan Gohmand006ab92010-04-07 22:27:08 +000083 // Nothing else is interesting here.
Dan Gohman110ed642010-09-01 01:45:53 +000084 return false;
Dan Gohmand76d71a2009-05-12 02:17:14 +000085}
86
Andrew Trick36607352012-03-20 21:24:40 +000087/// Return true if all loop headers that dominate this block are in simplified
88/// form.
89static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT,
90 const LoopInfo *LI,
Craig Topper71b7b682014-08-21 05:55:13 +000091 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Craig Topper9f008862014-04-15 04:59:12 +000092 Loop *NearestLoop = nullptr;
Andrew Trick36607352012-03-20 21:24:40 +000093 for (DomTreeNode *Rung = DT->getNode(BB);
Andrew Trick070e5402012-03-16 03:16:56 +000094 Rung; Rung = Rung->getIDom()) {
Andrew Trick36607352012-03-20 21:24:40 +000095 BasicBlock *DomBB = Rung->getBlock();
96 Loop *DomLoop = LI->getLoopFor(DomBB);
97 if (DomLoop && DomLoop->getHeader() == DomBB) {
98 // If the domtree walk reaches a loop with no preheader, return false.
Andrew Trick070e5402012-03-16 03:16:56 +000099 if (!DomLoop->isLoopSimplifyForm())
100 return false;
Andrew Trick36607352012-03-20 21:24:40 +0000101 // If we have already checked this loop nest, stop checking.
102 if (SimpleLoopNests.count(DomLoop))
103 break;
104 // If we have not already checked this loop nest, remember the loop
105 // header nearest to BB. The nearest loop may not contain BB.
106 if (!NearestLoop)
107 NearestLoop = DomLoop;
Andrew Trick070e5402012-03-16 03:16:56 +0000108 }
109 }
Andrew Trick36607352012-03-20 21:24:40 +0000110 if (NearestLoop)
111 SimpleLoopNests.insert(NearestLoop);
Andrew Trick070e5402012-03-16 03:16:56 +0000112 return true;
113}
114
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000115/// AddUsersImpl - Inspect the specified instruction. If it is a
Dan Gohmand76d71a2009-05-12 02:17:14 +0000116/// reducible SCEV, recursively add its users to the IVUsesByStride set and
117/// return true. Otherwise, return false.
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000118bool IVUsers::AddUsersImpl(Instruction *I,
Craig Topper71b7b682014-08-21 05:55:13 +0000119 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000120 const DataLayout &DL = I->getModule()->getDataLayout();
121
Andrew Trick9a5b2422012-01-06 21:41:55 +0000122 // Add this IV user to the Processed set before returning false to ensure that
123 // all IV users are members of the set. See IVUsers::isIVUserOrOperand.
David Blaikie70573dc2014-11-19 07:49:26 +0000124 if (!Processed.insert(I).second)
Andrew Trick9a5b2422012-01-06 21:41:55 +0000125 return true; // Instruction already handled.
126
Dan Gohman3a08ed72010-08-29 16:40:03 +0000127 if (!SE->isSCEVable(I->getType()))
Dan Gohman110ed642010-09-01 01:45:53 +0000128 return false; // Void and FP expressions cannot be reduced.
Dan Gohmand76d71a2009-05-12 02:17:14 +0000129
Andrew Trickee760652012-07-13 23:33:05 +0000130 // IVUsers is used by LSR which assumes that all SCEV expressions are safe to
131 // pass to SCEVExpander. Expressions are not safe to expand if they represent
132 // operations that are not safe to speculate, namely integer division.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000133 if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I))
Andrew Trickee760652012-07-13 23:33:05 +0000134 return false;
135
Dan Gohman110ed642010-09-01 01:45:53 +0000136 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
Andrew Trick1c4b42d2011-03-18 16:50:32 +0000137 // Also avoid creating IVs of non-native types. For example, we don't want a
138 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast.
139 uint64_t Width = SE->getTypeSizeInBits(I->getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000140 if (Width > 64 || !DL.isLegalInteger(Width))
Dan Gohman110ed642010-09-01 01:45:53 +0000141 return false;
Jim Grosbach50d67e72009-11-19 02:05:44 +0000142
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000143 // Don't attempt to promote ephemeral values to indvars. They will be removed
144 // later anyway.
145 if (EphValues.count(I))
146 return false;
147
Dan Gohman110ed642010-09-01 01:45:53 +0000148 // Get the symbolic expression for this instruction.
149 const SCEV *ISE = SE->getSCEV(I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000150
Dan Gohman110ed642010-09-01 01:45:53 +0000151 // If we've come to an uninteresting expression, stop the traversal and
152 // call this a user.
Dan Gohmana293f242011-07-01 22:05:19 +0000153 if (!isInteresting(ISE, I, L, SE, LI))
Dan Gohman110ed642010-09-01 01:45:53 +0000154 return false;
Dan Gohman3a08ed72010-08-29 16:40:03 +0000155
Dan Gohman110ed642010-09-01 01:45:53 +0000156 SmallPtrSet<Instruction *, 4> UniqueUsers;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000157 for (Use &U : I->uses()) {
158 Instruction *User = cast<Instruction>(U.getUser());
David Blaikie70573dc2014-11-19 07:49:26 +0000159 if (!UniqueUsers.insert(User).second)
Dan Gohman110ed642010-09-01 01:45:53 +0000160 continue;
161
162 // Do not infinitely recurse on PHI nodes.
163 if (isa<PHINode>(User) && Processed.count(User))
164 continue;
165
Andrew Trick070e5402012-03-16 03:16:56 +0000166 // Only consider IVUsers that are dominated by simplified loop
167 // headers. Otherwise, SCEVExpander will crash.
Andrew Trick9c457062012-03-20 21:24:44 +0000168 BasicBlock *UseBB = User->getParent();
169 // A phi's use is live out of its predecessor block.
170 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000171 unsigned OperandNo = U.getOperandNo();
Andrew Trick9c457062012-03-20 21:24:44 +0000172 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo);
173 UseBB = PHI->getIncomingBlock(ValNo);
174 }
175 if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests))
Andrew Trick36607352012-03-20 21:24:40 +0000176 return false;
Andrew Trick070e5402012-03-16 03:16:56 +0000177
Dan Gohman110ed642010-09-01 01:45:53 +0000178 // Descend recursively, but not into PHI nodes outside the current loop.
179 // It's important to see the entire expression outside the loop to get
180 // choices that depend on addressing mode use right, although we won't
181 // consider references outside the loop in all cases.
182 // If User is already in Processed, we don't want to recurse into it again,
183 // but do want to record a second reference in the same instruction.
184 bool AddUserToIVUsers = false;
Andrew Trick36607352012-03-20 21:24:40 +0000185 if (LI->getLoopFor(User->getParent()) != L) {
Dan Gohman110ed642010-09-01 01:45:53 +0000186 if (isa<PHINode>(User) || Processed.count(User) ||
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000187 !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000188 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
189 << " OF SCEV: " << *ISE << '\n');
190 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000191 }
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000192 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000193 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
194 << " OF SCEV: " << *ISE << '\n');
195 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000196 }
Dan Gohman110ed642010-09-01 01:45:53 +0000197
198 if (AddUserToIVUsers) {
199 // Okay, we found a user that we cannot reduce.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000200 IVStrideUse &NewUse = AddUser(User, I);
Dan Gohmanc6f2ddf2011-05-27 18:42:33 +0000201 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
202 // The regular return value here is discarded; instead of recording
203 // it, we just recompute it when we need it.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000204 const SCEV *OriginalISE = ISE;
Dan Gohman110ed642010-09-01 01:45:53 +0000205 ISE = TransformForPostIncUse(NormalizeAutodetect,
206 ISE, User, I,
207 NewUse.PostIncLoops,
208 *SE, *DT);
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000209
210 // PostIncNormalization effectively simplifies the expression under
211 // pre-increment assumptions. Those assumptions (no wrapping) might not
212 // hold for the post-inc value. Catch such cases by making sure the
213 // transformation is invertible.
214 if (OriginalISE != ISE) {
215 const SCEV *DenormalizedISE =
216 TransformForPostIncUse(Denormalize, ISE, User, I,
217 NewUse.PostIncLoops, *SE, *DT);
218
219 // If we normalized the expression, but denormalization doesn't give the
220 // original one, discard this user.
221 if (OriginalISE != DenormalizedISE) {
222 DEBUG(dbgs() << " DISCARDING (NORMALIZATION ISN'T INVERTIBLE): "
223 << *ISE << '\n');
224 IVUses.pop_back();
225 return false;
226 }
227 }
Andrew Trickadfe72b2011-10-13 17:06:38 +0000228 DEBUG(if (SE->getSCEV(I) != ISE)
229 dbgs() << " NORMALIZED TO: " << *ISE << '\n');
Dan Gohman110ed642010-09-01 01:45:53 +0000230 }
231 }
232 return true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000233}
234
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000235bool IVUsers::AddUsersIfInteresting(Instruction *I) {
236 // SCEVExpander can only handle users that are dominated by simplified loop
237 // entries. Keep track of all loops that are only dominated by other simple
238 // loops so we don't traverse the domtree for each user.
239 SmallPtrSet<Loop*,16> SimpleLoopNests;
240
241 return AddUsersImpl(I, SimpleLoopNests);
242}
243
Andrew Trickfc4ccb22011-06-21 15:43:52 +0000244IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
245 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman110ed642010-09-01 01:45:53 +0000246 return IVUses.back();
Evan Cheng85a9f432009-11-12 07:35:05 +0000247}
248
Dan Gohmand76d71a2009-05-12 02:17:14 +0000249IVUsers::IVUsers()
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000250 : LoopPass(ID) {
251 initializeIVUsersPass(*PassRegistry::getPassRegistry());
Dan Gohmand76d71a2009-05-12 02:17:14 +0000252}
253
254void IVUsers::getAnalysisUsage(AnalysisUsage &AU) const {
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000255 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000256 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth73523022014-01-13 13:07:17 +0000257 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000258 AU.addRequired<ScalarEvolutionWrapperPass>();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000259 AU.setPreservesAll();
260}
261
262bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
263
264 L = l;
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000265 AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
266 *L->getHeader()->getParent());
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000267 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth73523022014-01-13 13:07:17 +0000268 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000269 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000270
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000271 // Collect ephemeral values so that AddUsersIfInteresting skips them.
272 EphValues.clear();
273 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
274
Dan Gohmand76d71a2009-05-12 02:17:14 +0000275 // Find all uses of induction variables in this loop, and categorize
276 // them by stride. Start by finding all of the PHI nodes in the header for
277 // this loop. If they are induction variables, inspect their uses.
278 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000279 (void)AddUsersIfInteresting(&*I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000280
281 return false;
282}
283
Dan Gohmand76d71a2009-05-12 02:17:14 +0000284void IVUsers::print(raw_ostream &OS, const Module *M) const {
285 OS << "IV Users for loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000286 L->getHeader()->printAsOperand(OS, false);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000287 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
288 OS << " with backedge-taken count "
289 << *SE->getBackedgeTakenCount(L);
290 }
291 OS << ":\n";
292
Dan Gohman45774ce2010-02-12 10:34:29 +0000293 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
294 E = IVUses.end(); UI != E; ++UI) {
295 OS << " ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000296 UI->getOperandValToReplace()->printAsOperand(OS, false);
Dan Gohmane637ff52010-04-19 21:48:58 +0000297 OS << " = " << *getReplacementExpr(*UI);
Dan Gohmand006ab92010-04-07 22:27:08 +0000298 for (PostIncLoopSet::const_iterator
299 I = UI->PostIncLoops.begin(),
300 E = UI->PostIncLoops.end(); I != E; ++I) {
301 OS << " (post-inc with loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000302 (*I)->getHeader()->printAsOperand(OS, false);
Dan Gohmand006ab92010-04-07 22:27:08 +0000303 OS << ")";
304 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000305 OS << " in ";
Richard Trieuc1485222014-06-21 02:43:02 +0000306 if (UI->getUser())
307 UI->getUser()->print(OS);
308 else
309 OS << "Printing <null> User";
Dan Gohman45774ce2010-02-12 10:34:29 +0000310 OS << '\n';
Dan Gohmand76d71a2009-05-12 02:17:14 +0000311 }
312}
313
Manman Ren49d684e2012-09-12 05:06:18 +0000314#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohmand76d71a2009-05-12 02:17:14 +0000315void IVUsers::dump() const {
David Greene069857e2009-12-23 20:20:46 +0000316 print(dbgs());
Dan Gohmand76d71a2009-05-12 02:17:14 +0000317}
Manman Renc3366cc2012-09-06 19:55:56 +0000318#endif
Dan Gohmand76d71a2009-05-12 02:17:14 +0000319
320void IVUsers::releaseMemory() {
Evan Cheng090ac082009-12-17 09:39:49 +0000321 Processed.clear();
Dan Gohman92c36962009-12-18 00:06:20 +0000322 IVUses.clear();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000323}
324
Dan Gohmane637ff52010-04-19 21:48:58 +0000325/// getReplacementExpr - Return a SCEV expression which computes the
326/// value of the OperandValToReplace.
327const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
328 return SE->getSCEV(IU.getOperandValToReplace());
329}
330
331/// getExpr - Return the expression for the use.
332const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
333 return
334 TransformForPostIncUse(Normalize, getReplacementExpr(IU),
335 IU.getUser(), IU.getOperandValToReplace(),
336 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()),
337 *SE, *DT);
338}
339
Dan Gohmand006ab92010-04-07 22:27:08 +0000340static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
341 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
342 if (AR->getLoop() == L)
343 return AR;
344 return findAddRecForLoop(AR->getStart(), L);
345 }
346
347 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
348 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
349 I != E; ++I)
350 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L))
351 return AR;
Craig Topper9f008862014-04-15 04:59:12 +0000352 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000353 }
354
Craig Topper9f008862014-04-15 04:59:12 +0000355 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000356}
357
Dan Gohmane637ff52010-04-19 21:48:58 +0000358const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
359 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
360 return AR->getStepRecurrence(*SE);
Craig Topper9f008862014-04-15 04:59:12 +0000361 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000362}
363
364void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohmand006ab92010-04-07 22:27:08 +0000365 PostIncLoops.insert(L);
366}
367
Dan Gohmand76d71a2009-05-12 02:17:14 +0000368void IVStrideUse::deleted() {
369 // Remove this user from the list.
Andrew Trick9a5b2422012-01-06 21:41:55 +0000370 Parent->Processed.erase(this->getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +0000371 Parent->IVUses.erase(this);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000372 // this now dangles!
373}