blob: f028dd0ef0d1ace8122b468e019cbaaaaa9d8dd6 [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
Dehao Chen1a444522016-07-16 22:51:33 +000015#include "llvm/Analysis/IVUsers.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/STLExtras.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000017#include "llvm/Analysis/AssumptionCache.h"
Jingyue Wu9a92d4f2015-07-13 03:28:53 +000018#include "llvm/Analysis/CodeMetrics.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000019#include "llvm/Analysis/LoopAnalysisManager.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000020#include "llvm/Analysis/LoopPass.h"
21#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Andrew Trickee760652012-07-13 23:33:05 +000022#include "llvm/Analysis/ValueTracking.h"
Nico Weber432a3882018-04-30 14:59:11 +000023#include "llvm/Config/llvm-config.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/Constants.h"
25#include "llvm/IR/DataLayout.h"
26#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000027#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
Mehdi Amini46a43552015-03-04 18:43:29 +000029#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Type.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000031#include "llvm/Support/Debug.h"
32#include "llvm/Support/raw_ostream.h"
33#include <algorithm>
34using namespace llvm;
35
Chandler Carruthf1221bd2014-04-22 02:48:03 +000036#define DEBUG_TYPE "iv-users"
37
Chandler Carruthdab4eae2016-11-23 17:53:26 +000038AnalysisKey IVUsersAnalysis::Key;
Dehao Chen1a444522016-07-16 22:51:33 +000039
Chandler Carruth410eaeb2017-01-11 06:23:21 +000040IVUsers IVUsersAnalysis::run(Loop &L, LoopAnalysisManager &AM,
41 LoopStandardAnalysisResults &AR) {
42 return IVUsers(&L, &AR.AC, &AR.LI, &AR.DT, &AR.SE);
Dehao Chen1a444522016-07-16 22:51:33 +000043}
44
Dehao Chen1a444522016-07-16 22:51:33 +000045char IVUsersWrapperPass::ID = 0;
46INITIALIZE_PASS_BEGIN(IVUsersWrapperPass, "iv-users",
Owen Anderson8ac477f2010-10-12 19:48:12 +000047 "Induction Variable Users", false, true)
Daniel Jasperaec2fa32016-12-19 08:22:17 +000048INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth4f8f3072015-01-17 14:16:18 +000049INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +000050INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth2f1fd162015-08-17 02:08:17 +000051INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Dehao Chen1a444522016-07-16 22:51:33 +000052INITIALIZE_PASS_END(IVUsersWrapperPass, "iv-users", "Induction Variable Users",
53 false, true)
Dan Gohmand76d71a2009-05-12 02:17:14 +000054
Dehao Chen1a444522016-07-16 22:51:33 +000055Pass *llvm::createIVUsersPass() { return new IVUsersWrapperPass(); }
Dan Gohmand76d71a2009-05-12 02:17:14 +000056
Dan Gohman110ed642010-09-01 01:45:53 +000057/// isInteresting - Test whether the given expression is "interesting" when
58/// used by the given expression, within the context of analyzing the
59/// given loop.
60static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L,
Dan Gohmana293f242011-07-01 22:05:19 +000061 ScalarEvolution *SE, LoopInfo *LI) {
Dan Gohmand006ab92010-04-07 22:27:08 +000062 // An addrec is interesting if it's affine or if it has an interesting start.
63 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmana293f242011-07-01 22:05:19 +000064 // Keep things simple. Don't touch loop-variant strides unless they're
65 // only used outside the loop and we can simplify them.
Dan Gohmanee6451d2010-04-09 01:22:56 +000066 if (AR->getLoop() == L)
Dan Gohmana293f242011-07-01 22:05:19 +000067 return AR->isAffine() ||
68 (!L->contains(I) &&
69 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
Dan Gohman110ed642010-09-01 01:45:53 +000070 // Otherwise recurse to see if the start value is interesting, and that
71 // the step value is not interesting, since we don't yet know how to
72 // do effective SCEV expansions for addrecs with interesting steps.
Dan Gohmana293f242011-07-01 22:05:19 +000073 return isInteresting(AR->getStart(), I, L, SE, LI) &&
74 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI);
Dan Gohmand006ab92010-04-07 22:27:08 +000075 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000076
Dan Gohmaned2b0052010-08-17 22:50:37 +000077 // An add is interesting if exactly one of its operands is interesting.
Dan Gohmand006ab92010-04-07 22:27:08 +000078 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman110ed642010-09-01 01:45:53 +000079 bool AnyInterestingYet = false;
Sanjoy Dasb4654292017-04-14 01:33:15 +000080 for (const auto *Op : Add->operands())
81 if (isInteresting(Op, I, L, SE, LI)) {
Dan Gohman110ed642010-09-01 01:45:53 +000082 if (AnyInterestingYet)
83 return false;
84 AnyInterestingYet = true;
85 }
86 return AnyInterestingYet;
Dan Gohmand006ab92010-04-07 22:27:08 +000087 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000088
Dan Gohmand006ab92010-04-07 22:27:08 +000089 // Nothing else is interesting here.
Dan Gohman110ed642010-09-01 01:45:53 +000090 return false;
Dan Gohmand76d71a2009-05-12 02:17:14 +000091}
92
Andrew Trick36607352012-03-20 21:24:40 +000093/// Return true if all loop headers that dominate this block are in simplified
94/// form.
95static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT,
96 const LoopInfo *LI,
Craig Topper71b7b682014-08-21 05:55:13 +000097 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Craig Topper9f008862014-04-15 04:59:12 +000098 Loop *NearestLoop = nullptr;
Andrew Trick36607352012-03-20 21:24:40 +000099 for (DomTreeNode *Rung = DT->getNode(BB);
Andrew Trick070e5402012-03-16 03:16:56 +0000100 Rung; Rung = Rung->getIDom()) {
Andrew Trick36607352012-03-20 21:24:40 +0000101 BasicBlock *DomBB = Rung->getBlock();
102 Loop *DomLoop = LI->getLoopFor(DomBB);
103 if (DomLoop && DomLoop->getHeader() == DomBB) {
104 // If the domtree walk reaches a loop with no preheader, return false.
Andrew Trick070e5402012-03-16 03:16:56 +0000105 if (!DomLoop->isLoopSimplifyForm())
106 return false;
Andrew Trick36607352012-03-20 21:24:40 +0000107 // If we have already checked this loop nest, stop checking.
108 if (SimpleLoopNests.count(DomLoop))
109 break;
110 // If we have not already checked this loop nest, remember the loop
111 // header nearest to BB. The nearest loop may not contain BB.
112 if (!NearestLoop)
113 NearestLoop = DomLoop;
Andrew Trick070e5402012-03-16 03:16:56 +0000114 }
115 }
Andrew Trick36607352012-03-20 21:24:40 +0000116 if (NearestLoop)
117 SimpleLoopNests.insert(NearestLoop);
Andrew Trick070e5402012-03-16 03:16:56 +0000118 return true;
119}
120
Sanjoy Dasac9f3ea2017-04-14 15:49:53 +0000121/// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression
122/// and now we need to decide whether the user should use the preinc or post-inc
123/// value. If this user should use the post-inc version of the IV, return true.
124///
125/// Choosing wrong here can break dominance properties (if we choose to use the
126/// post-inc value when we cannot) or it can end up adding extra live-ranges to
127/// the loop, resulting in reg-reg copies (if we use the pre-inc value when we
128/// should use the post-inc value).
129static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand,
130 const Loop *L, DominatorTree *DT) {
131 // If the user is in the loop, use the preinc value.
132 if (L->contains(User))
133 return false;
134
135 BasicBlock *LatchBlock = L->getLoopLatch();
136 if (!LatchBlock)
137 return false;
138
139 // Ok, the user is outside of the loop. If it is dominated by the latch
140 // block, use the post-inc value.
141 if (DT->dominates(LatchBlock, User->getParent()))
142 return true;
143
144 // There is one case we have to be careful of: PHI nodes. These little guys
145 // can live in blocks that are not dominated by the latch block, but (since
146 // their uses occur in the predecessor block, not the block the PHI lives in)
147 // should still use the post-inc value. Check for this case now.
148 PHINode *PN = dyn_cast<PHINode>(User);
149 if (!PN || !Operand)
150 return false; // not a phi, not dominated by latch block.
151
152 // Look at all of the uses of Operand by the PHI node. If any use corresponds
153 // to a block that is not dominated by the latch block, give up and use the
154 // preincremented value.
155 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
156 if (PN->getIncomingValue(i) == Operand &&
157 !DT->dominates(LatchBlock, PN->getIncomingBlock(i)))
158 return false;
159
160 // Okay, all uses of Operand by PN are in predecessor blocks that really are
161 // dominated by the latch block. Use the post-incremented value.
162 return true;
163}
164
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000165/// AddUsersImpl - Inspect the specified instruction. If it is a
Dan Gohmand76d71a2009-05-12 02:17:14 +0000166/// reducible SCEV, recursively add its users to the IVUsesByStride set and
167/// return true. Otherwise, return false.
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000168bool IVUsers::AddUsersImpl(Instruction *I,
Craig Topper71b7b682014-08-21 05:55:13 +0000169 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000170 const DataLayout &DL = I->getModule()->getDataLayout();
171
Andrew Trick9a5b2422012-01-06 21:41:55 +0000172 // Add this IV user to the Processed set before returning false to ensure that
173 // all IV users are members of the set. See IVUsers::isIVUserOrOperand.
David Blaikie70573dc2014-11-19 07:49:26 +0000174 if (!Processed.insert(I).second)
Andrew Trick9a5b2422012-01-06 21:41:55 +0000175 return true; // Instruction already handled.
176
Dan Gohman3a08ed72010-08-29 16:40:03 +0000177 if (!SE->isSCEVable(I->getType()))
Dan Gohman110ed642010-09-01 01:45:53 +0000178 return false; // Void and FP expressions cannot be reduced.
Dan Gohmand76d71a2009-05-12 02:17:14 +0000179
Andrew Trickee760652012-07-13 23:33:05 +0000180 // IVUsers is used by LSR which assumes that all SCEV expressions are safe to
181 // pass to SCEVExpander. Expressions are not safe to expand if they represent
182 // operations that are not safe to speculate, namely integer division.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000183 if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I))
Andrew Trickee760652012-07-13 23:33:05 +0000184 return false;
185
Dan Gohman110ed642010-09-01 01:45:53 +0000186 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
Andrew Trick1c4b42d2011-03-18 16:50:32 +0000187 // Also avoid creating IVs of non-native types. For example, we don't want a
188 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast.
189 uint64_t Width = SE->getTypeSizeInBits(I->getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000190 if (Width > 64 || !DL.isLegalInteger(Width))
Dan Gohman110ed642010-09-01 01:45:53 +0000191 return false;
Jim Grosbach50d67e72009-11-19 02:05:44 +0000192
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000193 // Don't attempt to promote ephemeral values to indvars. They will be removed
194 // later anyway.
195 if (EphValues.count(I))
196 return false;
197
Dan Gohman110ed642010-09-01 01:45:53 +0000198 // Get the symbolic expression for this instruction.
199 const SCEV *ISE = SE->getSCEV(I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000200
Dan Gohman110ed642010-09-01 01:45:53 +0000201 // If we've come to an uninteresting expression, stop the traversal and
202 // call this a user.
Dan Gohmana293f242011-07-01 22:05:19 +0000203 if (!isInteresting(ISE, I, L, SE, LI))
Dan Gohman110ed642010-09-01 01:45:53 +0000204 return false;
Dan Gohman3a08ed72010-08-29 16:40:03 +0000205
Dan Gohman110ed642010-09-01 01:45:53 +0000206 SmallPtrSet<Instruction *, 4> UniqueUsers;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000207 for (Use &U : I->uses()) {
208 Instruction *User = cast<Instruction>(U.getUser());
David Blaikie70573dc2014-11-19 07:49:26 +0000209 if (!UniqueUsers.insert(User).second)
Dan Gohman110ed642010-09-01 01:45:53 +0000210 continue;
211
212 // Do not infinitely recurse on PHI nodes.
213 if (isa<PHINode>(User) && Processed.count(User))
214 continue;
215
Andrew Trick070e5402012-03-16 03:16:56 +0000216 // Only consider IVUsers that are dominated by simplified loop
217 // headers. Otherwise, SCEVExpander will crash.
Andrew Trick9c457062012-03-20 21:24:44 +0000218 BasicBlock *UseBB = User->getParent();
219 // A phi's use is live out of its predecessor block.
220 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000221 unsigned OperandNo = U.getOperandNo();
Andrew Trick9c457062012-03-20 21:24:44 +0000222 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo);
223 UseBB = PHI->getIncomingBlock(ValNo);
224 }
225 if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests))
Andrew Trick36607352012-03-20 21:24:40 +0000226 return false;
Andrew Trick070e5402012-03-16 03:16:56 +0000227
Dan Gohman110ed642010-09-01 01:45:53 +0000228 // Descend recursively, but not into PHI nodes outside the current loop.
229 // It's important to see the entire expression outside the loop to get
230 // choices that depend on addressing mode use right, although we won't
231 // consider references outside the loop in all cases.
232 // If User is already in Processed, we don't want to recurse into it again,
233 // but do want to record a second reference in the same instruction.
234 bool AddUserToIVUsers = false;
Andrew Trick36607352012-03-20 21:24:40 +0000235 if (LI->getLoopFor(User->getParent()) != L) {
Dan Gohman110ed642010-09-01 01:45:53 +0000236 if (isa<PHINode>(User) || Processed.count(User) ||
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000237 !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000238 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
239 << " OF SCEV: " << *ISE << '\n');
240 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000241 }
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000242 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000243 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
244 << " OF SCEV: " << *ISE << '\n');
245 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000246 }
Dan Gohman110ed642010-09-01 01:45:53 +0000247
248 if (AddUserToIVUsers) {
249 // Okay, we found a user that we cannot reduce.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000250 IVStrideUse &NewUse = AddUser(User, I);
Dan Gohmanc6f2ddf2011-05-27 18:42:33 +0000251 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
252 // The regular return value here is discarded; instead of recording
253 // it, we just recompute it when we need it.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000254 const SCEV *OriginalISE = ISE;
Sanjoy Dasac9f3ea2017-04-14 15:49:53 +0000255
256 auto NormalizePred = [&](const SCEVAddRecExpr *AR) {
Sanjoy Dasac9f3ea2017-04-14 15:49:53 +0000257 auto *L = AR->getLoop();
Sanjoy Das561247a82017-04-25 06:53:25 +0000258 bool Result = IVUseShouldUsePostIncValue(User, I, L, DT);
Sanjoy Dasac9f3ea2017-04-14 15:49:53 +0000259 if (Result)
260 NewUse.PostIncLoops.insert(L);
261 return Result;
262 };
263
Sanjoy Dase3a15e82017-04-14 15:49:59 +0000264 ISE = normalizeForPostIncUseIf(ISE, NormalizePred, *SE);
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000265
266 // PostIncNormalization effectively simplifies the expression under
267 // pre-increment assumptions. Those assumptions (no wrapping) might not
268 // hold for the post-inc value. Catch such cases by making sure the
269 // transformation is invertible.
270 if (OriginalISE != ISE) {
Sanjoy Dase3a15e82017-04-14 15:49:59 +0000271 const SCEV *DenormalizedISE =
272 denormalizeForPostIncUse(ISE, NewUse.PostIncLoops, *SE);
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000273
274 // If we normalized the expression, but denormalization doesn't give the
275 // original one, discard this user.
276 if (OriginalISE != DenormalizedISE) {
277 DEBUG(dbgs() << " DISCARDING (NORMALIZATION ISN'T INVERTIBLE): "
278 << *ISE << '\n');
279 IVUses.pop_back();
280 return false;
281 }
282 }
Andrew Trickadfe72b2011-10-13 17:06:38 +0000283 DEBUG(if (SE->getSCEV(I) != ISE)
284 dbgs() << " NORMALIZED TO: " << *ISE << '\n');
Dan Gohman110ed642010-09-01 01:45:53 +0000285 }
286 }
287 return true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000288}
289
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000290bool IVUsers::AddUsersIfInteresting(Instruction *I) {
291 // SCEVExpander can only handle users that are dominated by simplified loop
292 // entries. Keep track of all loops that are only dominated by other simple
293 // loops so we don't traverse the domtree for each user.
294 SmallPtrSet<Loop*,16> SimpleLoopNests;
295
296 return AddUsersImpl(I, SimpleLoopNests);
297}
298
Andrew Trickfc4ccb22011-06-21 15:43:52 +0000299IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
300 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman110ed642010-09-01 01:45:53 +0000301 return IVUses.back();
Evan Cheng85a9f432009-11-12 07:35:05 +0000302}
303
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000304IVUsers::IVUsers(Loop *L, AssumptionCache *AC, LoopInfo *LI, DominatorTree *DT,
305 ScalarEvolution *SE)
306 : L(L), AC(AC), LI(LI), DT(DT), SE(SE), IVUses() {
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000307 // Collect ephemeral values so that AddUsersIfInteresting skips them.
308 EphValues.clear();
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000309 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000310
Dan Gohmand76d71a2009-05-12 02:17:14 +0000311 // Find all uses of induction variables in this loop, and categorize
312 // them by stride. Start by finding all of the PHI nodes in the header for
313 // this loop. If they are induction variables, inspect their uses.
314 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000315 (void)AddUsersIfInteresting(&*I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000316}
317
Dan Gohmand76d71a2009-05-12 02:17:14 +0000318void IVUsers::print(raw_ostream &OS, const Module *M) const {
319 OS << "IV Users for loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000320 L->getHeader()->printAsOperand(OS, false);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000321 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
Dehao Chen1a444522016-07-16 22:51:33 +0000322 OS << " with backedge-taken count " << *SE->getBackedgeTakenCount(L);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000323 }
324 OS << ":\n";
325
Benjamin Krameraa209152016-06-26 17:27:42 +0000326 for (const IVStrideUse &IVUse : IVUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000327 OS << " ";
Benjamin Krameraa209152016-06-26 17:27:42 +0000328 IVUse.getOperandValToReplace()->printAsOperand(OS, false);
329 OS << " = " << *getReplacementExpr(IVUse);
330 for (auto PostIncLoop : IVUse.PostIncLoops) {
Dan Gohmand006ab92010-04-07 22:27:08 +0000331 OS << " (post-inc with loop ";
Benjamin Krameraa209152016-06-26 17:27:42 +0000332 PostIncLoop->getHeader()->printAsOperand(OS, false);
Dan Gohmand006ab92010-04-07 22:27:08 +0000333 OS << ")";
334 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000335 OS << " in ";
Benjamin Krameraa209152016-06-26 17:27:42 +0000336 if (IVUse.getUser())
337 IVUse.getUser()->print(OS);
Richard Trieuc1485222014-06-21 02:43:02 +0000338 else
339 OS << "Printing <null> User";
Dan Gohman45774ce2010-02-12 10:34:29 +0000340 OS << '\n';
Dan Gohmand76d71a2009-05-12 02:17:14 +0000341 }
342}
343
Aaron Ballman615eb472017-10-15 14:32:27 +0000344#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dehao Chen1a444522016-07-16 22:51:33 +0000345LLVM_DUMP_METHOD void IVUsers::dump() const { print(dbgs()); }
Manman Renc3366cc2012-09-06 19:55:56 +0000346#endif
Dan Gohmand76d71a2009-05-12 02:17:14 +0000347
348void IVUsers::releaseMemory() {
Evan Cheng090ac082009-12-17 09:39:49 +0000349 Processed.clear();
Dan Gohman92c36962009-12-18 00:06:20 +0000350 IVUses.clear();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000351}
352
Dehao Chen1a444522016-07-16 22:51:33 +0000353IVUsersWrapperPass::IVUsersWrapperPass() : LoopPass(ID) {
354 initializeIVUsersWrapperPassPass(*PassRegistry::getPassRegistry());
355}
356
357void IVUsersWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000358 AU.addRequired<AssumptionCacheTracker>();
Dehao Chen1a444522016-07-16 22:51:33 +0000359 AU.addRequired<LoopInfoWrapperPass>();
360 AU.addRequired<DominatorTreeWrapperPass>();
361 AU.addRequired<ScalarEvolutionWrapperPass>();
362 AU.setPreservesAll();
363}
364
365bool IVUsersWrapperPass::runOnLoop(Loop *L, LPPassManager &LPM) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000366 auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
367 *L->getHeader()->getParent());
Dehao Chen1a444522016-07-16 22:51:33 +0000368 auto *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
369 auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
370 auto *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
371
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000372 IU.reset(new IVUsers(L, AC, LI, DT, SE));
Dehao Chen1a444522016-07-16 22:51:33 +0000373 return false;
374}
375
376void IVUsersWrapperPass::print(raw_ostream &OS, const Module *M) const {
377 IU->print(OS, M);
378}
379
380void IVUsersWrapperPass::releaseMemory() { IU->releaseMemory(); }
381
Dan Gohmane637ff52010-04-19 21:48:58 +0000382/// getReplacementExpr - Return a SCEV expression which computes the
383/// value of the OperandValToReplace.
384const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
385 return SE->getSCEV(IU.getOperandValToReplace());
386}
387
388/// getExpr - Return the expression for the use.
389const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
Sanjoy Dase3a15e82017-04-14 15:49:59 +0000390 return normalizeForPostIncUse(getReplacementExpr(IU), IU.getPostIncLoops(),
391 *SE);
Dan Gohmane637ff52010-04-19 21:48:58 +0000392}
393
Dan Gohmand006ab92010-04-07 22:27:08 +0000394static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
395 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
396 if (AR->getLoop() == L)
397 return AR;
398 return findAddRecForLoop(AR->getStart(), L);
399 }
400
401 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Sanjoy Dasb4654292017-04-14 01:33:15 +0000402 for (const auto *Op : Add->operands())
403 if (const SCEVAddRecExpr *AR = findAddRecForLoop(Op, L))
Dan Gohmand006ab92010-04-07 22:27:08 +0000404 return AR;
Craig Topper9f008862014-04-15 04:59:12 +0000405 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000406 }
407
Craig Topper9f008862014-04-15 04:59:12 +0000408 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000409}
410
Dan Gohmane637ff52010-04-19 21:48:58 +0000411const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
412 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
413 return AR->getStepRecurrence(*SE);
Craig Topper9f008862014-04-15 04:59:12 +0000414 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000415}
416
417void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohmand006ab92010-04-07 22:27:08 +0000418 PostIncLoops.insert(L);
419}
420
Dan Gohmand76d71a2009-05-12 02:17:14 +0000421void IVStrideUse::deleted() {
422 // Remove this user from the list.
Andrew Trick9a5b2422012-01-06 21:41:55 +0000423 Parent->Processed.erase(this->getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +0000424 Parent->IVUses.erase(this);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000425 // this now dangles!
426}