blob: eb3782c36319621613b94fc1cf742efc6550af44 [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"
Dan Gohmand76d71a2009-05-12 02:17:14 +000019#include "llvm/Analysis/LoopPass.h"
Dehao Chen1a444522016-07-16 22:51:33 +000020#include "llvm/Analysis/LoopPassManager.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000021#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Andrew Trickee760652012-07-13 23:33:05 +000022#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
25#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000026#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Instructions.h"
Mehdi Amini46a43552015-03-04 18:43:29 +000028#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Type.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000030#include "llvm/Support/Debug.h"
31#include "llvm/Support/raw_ostream.h"
32#include <algorithm>
33using namespace llvm;
34
Chandler Carruthf1221bd2014-04-22 02:48:03 +000035#define DEBUG_TYPE "iv-users"
36
Chandler Carruthdab4eae2016-11-23 17:53:26 +000037AnalysisKey IVUsersAnalysis::Key;
Dehao Chen1a444522016-07-16 22:51:33 +000038
Chandler Carruth410eaeb2017-01-11 06:23:21 +000039IVUsers IVUsersAnalysis::run(Loop &L, LoopAnalysisManager &AM,
40 LoopStandardAnalysisResults &AR) {
41 return IVUsers(&L, &AR.AC, &AR.LI, &AR.DT, &AR.SE);
Dehao Chen1a444522016-07-16 22:51:33 +000042}
43
Chandler Carruth410eaeb2017-01-11 06:23:21 +000044PreservedAnalyses IVUsersPrinterPass::run(Loop &L, LoopAnalysisManager &AM,
45 LoopStandardAnalysisResults &AR,
46 LPMUpdater &U) {
47 AM.getResult<IVUsersAnalysis>(L, AR).print(OS);
Dehao Chen1a444522016-07-16 22:51:33 +000048 return PreservedAnalyses::all();
49}
50
51char IVUsersWrapperPass::ID = 0;
52INITIALIZE_PASS_BEGIN(IVUsersWrapperPass, "iv-users",
Owen Anderson8ac477f2010-10-12 19:48:12 +000053 "Induction Variable Users", false, true)
Daniel Jasperaec2fa32016-12-19 08:22:17 +000054INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth4f8f3072015-01-17 14:16:18 +000055INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +000056INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth2f1fd162015-08-17 02:08:17 +000057INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Dehao Chen1a444522016-07-16 22:51:33 +000058INITIALIZE_PASS_END(IVUsersWrapperPass, "iv-users", "Induction Variable Users",
59 false, true)
Dan Gohmand76d71a2009-05-12 02:17:14 +000060
Dehao Chen1a444522016-07-16 22:51:33 +000061Pass *llvm::createIVUsersPass() { return new IVUsersWrapperPass(); }
Dan Gohmand76d71a2009-05-12 02:17:14 +000062
Dan Gohman110ed642010-09-01 01:45:53 +000063/// isInteresting - Test whether the given expression is "interesting" when
64/// used by the given expression, within the context of analyzing the
65/// given loop.
66static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L,
Dan Gohmana293f242011-07-01 22:05:19 +000067 ScalarEvolution *SE, LoopInfo *LI) {
Dan Gohmand006ab92010-04-07 22:27:08 +000068 // An addrec is interesting if it's affine or if it has an interesting start.
69 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmana293f242011-07-01 22:05:19 +000070 // Keep things simple. Don't touch loop-variant strides unless they're
71 // only used outside the loop and we can simplify them.
Dan Gohmanee6451d2010-04-09 01:22:56 +000072 if (AR->getLoop() == L)
Dan Gohmana293f242011-07-01 22:05:19 +000073 return AR->isAffine() ||
74 (!L->contains(I) &&
75 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
Dan Gohman110ed642010-09-01 01:45:53 +000076 // Otherwise recurse to see if the start value is interesting, and that
77 // the step value is not interesting, since we don't yet know how to
78 // do effective SCEV expansions for addrecs with interesting steps.
Dan Gohmana293f242011-07-01 22:05:19 +000079 return isInteresting(AR->getStart(), I, L, SE, LI) &&
80 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI);
Dan Gohmand006ab92010-04-07 22:27:08 +000081 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000082
Dan Gohmaned2b0052010-08-17 22:50:37 +000083 // An add is interesting if exactly one of its operands is interesting.
Dan Gohmand006ab92010-04-07 22:27:08 +000084 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman110ed642010-09-01 01:45:53 +000085 bool AnyInterestingYet = false;
Dan Gohmand006ab92010-04-07 22:27:08 +000086 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
87 OI != OE; ++OI)
Dan Gohmana293f242011-07-01 22:05:19 +000088 if (isInteresting(*OI, I, L, SE, LI)) {
Dan Gohman110ed642010-09-01 01:45:53 +000089 if (AnyInterestingYet)
90 return false;
91 AnyInterestingYet = true;
92 }
93 return AnyInterestingYet;
Dan Gohmand006ab92010-04-07 22:27:08 +000094 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000095
Dan Gohmand006ab92010-04-07 22:27:08 +000096 // Nothing else is interesting here.
Dan Gohman110ed642010-09-01 01:45:53 +000097 return false;
Dan Gohmand76d71a2009-05-12 02:17:14 +000098}
99
Andrew Trick36607352012-03-20 21:24:40 +0000100/// Return true if all loop headers that dominate this block are in simplified
101/// form.
102static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT,
103 const LoopInfo *LI,
Craig Topper71b7b682014-08-21 05:55:13 +0000104 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Craig Topper9f008862014-04-15 04:59:12 +0000105 Loop *NearestLoop = nullptr;
Andrew Trick36607352012-03-20 21:24:40 +0000106 for (DomTreeNode *Rung = DT->getNode(BB);
Andrew Trick070e5402012-03-16 03:16:56 +0000107 Rung; Rung = Rung->getIDom()) {
Andrew Trick36607352012-03-20 21:24:40 +0000108 BasicBlock *DomBB = Rung->getBlock();
109 Loop *DomLoop = LI->getLoopFor(DomBB);
110 if (DomLoop && DomLoop->getHeader() == DomBB) {
111 // If the domtree walk reaches a loop with no preheader, return false.
Andrew Trick070e5402012-03-16 03:16:56 +0000112 if (!DomLoop->isLoopSimplifyForm())
113 return false;
Andrew Trick36607352012-03-20 21:24:40 +0000114 // If we have already checked this loop nest, stop checking.
115 if (SimpleLoopNests.count(DomLoop))
116 break;
117 // If we have not already checked this loop nest, remember the loop
118 // header nearest to BB. The nearest loop may not contain BB.
119 if (!NearestLoop)
120 NearestLoop = DomLoop;
Andrew Trick070e5402012-03-16 03:16:56 +0000121 }
122 }
Andrew Trick36607352012-03-20 21:24:40 +0000123 if (NearestLoop)
124 SimpleLoopNests.insert(NearestLoop);
Andrew Trick070e5402012-03-16 03:16:56 +0000125 return true;
126}
127
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000128/// AddUsersImpl - Inspect the specified instruction. If it is a
Dan Gohmand76d71a2009-05-12 02:17:14 +0000129/// reducible SCEV, recursively add its users to the IVUsesByStride set and
130/// return true. Otherwise, return false.
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000131bool IVUsers::AddUsersImpl(Instruction *I,
Craig Topper71b7b682014-08-21 05:55:13 +0000132 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000133 const DataLayout &DL = I->getModule()->getDataLayout();
134
Andrew Trick9a5b2422012-01-06 21:41:55 +0000135 // Add this IV user to the Processed set before returning false to ensure that
136 // all IV users are members of the set. See IVUsers::isIVUserOrOperand.
David Blaikie70573dc2014-11-19 07:49:26 +0000137 if (!Processed.insert(I).second)
Andrew Trick9a5b2422012-01-06 21:41:55 +0000138 return true; // Instruction already handled.
139
Dan Gohman3a08ed72010-08-29 16:40:03 +0000140 if (!SE->isSCEVable(I->getType()))
Dan Gohman110ed642010-09-01 01:45:53 +0000141 return false; // Void and FP expressions cannot be reduced.
Dan Gohmand76d71a2009-05-12 02:17:14 +0000142
Andrew Trickee760652012-07-13 23:33:05 +0000143 // IVUsers is used by LSR which assumes that all SCEV expressions are safe to
144 // pass to SCEVExpander. Expressions are not safe to expand if they represent
145 // operations that are not safe to speculate, namely integer division.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000146 if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I))
Andrew Trickee760652012-07-13 23:33:05 +0000147 return false;
148
Dan Gohman110ed642010-09-01 01:45:53 +0000149 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
Andrew Trick1c4b42d2011-03-18 16:50:32 +0000150 // Also avoid creating IVs of non-native types. For example, we don't want a
151 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast.
152 uint64_t Width = SE->getTypeSizeInBits(I->getType());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000153 if (Width > 64 || !DL.isLegalInteger(Width))
Dan Gohman110ed642010-09-01 01:45:53 +0000154 return false;
Jim Grosbach50d67e72009-11-19 02:05:44 +0000155
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000156 // Don't attempt to promote ephemeral values to indvars. They will be removed
157 // later anyway.
158 if (EphValues.count(I))
159 return false;
160
Dan Gohman110ed642010-09-01 01:45:53 +0000161 // Get the symbolic expression for this instruction.
162 const SCEV *ISE = SE->getSCEV(I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000163
Dan Gohman110ed642010-09-01 01:45:53 +0000164 // If we've come to an uninteresting expression, stop the traversal and
165 // call this a user.
Dan Gohmana293f242011-07-01 22:05:19 +0000166 if (!isInteresting(ISE, I, L, SE, LI))
Dan Gohman110ed642010-09-01 01:45:53 +0000167 return false;
Dan Gohman3a08ed72010-08-29 16:40:03 +0000168
Dan Gohman110ed642010-09-01 01:45:53 +0000169 SmallPtrSet<Instruction *, 4> UniqueUsers;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000170 for (Use &U : I->uses()) {
171 Instruction *User = cast<Instruction>(U.getUser());
David Blaikie70573dc2014-11-19 07:49:26 +0000172 if (!UniqueUsers.insert(User).second)
Dan Gohman110ed642010-09-01 01:45:53 +0000173 continue;
174
175 // Do not infinitely recurse on PHI nodes.
176 if (isa<PHINode>(User) && Processed.count(User))
177 continue;
178
Andrew Trick070e5402012-03-16 03:16:56 +0000179 // Only consider IVUsers that are dominated by simplified loop
180 // headers. Otherwise, SCEVExpander will crash.
Andrew Trick9c457062012-03-20 21:24:44 +0000181 BasicBlock *UseBB = User->getParent();
182 // A phi's use is live out of its predecessor block.
183 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000184 unsigned OperandNo = U.getOperandNo();
Andrew Trick9c457062012-03-20 21:24:44 +0000185 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo);
186 UseBB = PHI->getIncomingBlock(ValNo);
187 }
188 if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests))
Andrew Trick36607352012-03-20 21:24:40 +0000189 return false;
Andrew Trick070e5402012-03-16 03:16:56 +0000190
Dan Gohman110ed642010-09-01 01:45:53 +0000191 // Descend recursively, but not into PHI nodes outside the current loop.
192 // It's important to see the entire expression outside the loop to get
193 // choices that depend on addressing mode use right, although we won't
194 // consider references outside the loop in all cases.
195 // If User is already in Processed, we don't want to recurse into it again,
196 // but do want to record a second reference in the same instruction.
197 bool AddUserToIVUsers = false;
Andrew Trick36607352012-03-20 21:24:40 +0000198 if (LI->getLoopFor(User->getParent()) != L) {
Dan Gohman110ed642010-09-01 01:45:53 +0000199 if (isa<PHINode>(User) || Processed.count(User) ||
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000200 !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000201 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
202 << " OF SCEV: " << *ISE << '\n');
203 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000204 }
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000205 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000206 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
207 << " OF SCEV: " << *ISE << '\n');
208 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000209 }
Dan Gohman110ed642010-09-01 01:45:53 +0000210
211 if (AddUserToIVUsers) {
212 // Okay, we found a user that we cannot reduce.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000213 IVStrideUse &NewUse = AddUser(User, I);
Dan Gohmanc6f2ddf2011-05-27 18:42:33 +0000214 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
215 // The regular return value here is discarded; instead of recording
216 // it, we just recompute it when we need it.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000217 const SCEV *OriginalISE = ISE;
Dan Gohman110ed642010-09-01 01:45:53 +0000218 ISE = TransformForPostIncUse(NormalizeAutodetect,
219 ISE, User, I,
220 NewUse.PostIncLoops,
221 *SE, *DT);
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000222
223 // PostIncNormalization effectively simplifies the expression under
224 // pre-increment assumptions. Those assumptions (no wrapping) might not
225 // hold for the post-inc value. Catch such cases by making sure the
226 // transformation is invertible.
227 if (OriginalISE != ISE) {
228 const SCEV *DenormalizedISE =
229 TransformForPostIncUse(Denormalize, ISE, User, I,
230 NewUse.PostIncLoops, *SE, *DT);
231
232 // If we normalized the expression, but denormalization doesn't give the
233 // original one, discard this user.
234 if (OriginalISE != DenormalizedISE) {
235 DEBUG(dbgs() << " DISCARDING (NORMALIZATION ISN'T INVERTIBLE): "
236 << *ISE << '\n');
237 IVUses.pop_back();
238 return false;
239 }
240 }
Andrew Trickadfe72b2011-10-13 17:06:38 +0000241 DEBUG(if (SE->getSCEV(I) != ISE)
242 dbgs() << " NORMALIZED TO: " << *ISE << '\n');
Dan Gohman110ed642010-09-01 01:45:53 +0000243 }
244 }
245 return true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000246}
247
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000248bool IVUsers::AddUsersIfInteresting(Instruction *I) {
249 // SCEVExpander can only handle users that are dominated by simplified loop
250 // entries. Keep track of all loops that are only dominated by other simple
251 // loops so we don't traverse the domtree for each user.
252 SmallPtrSet<Loop*,16> SimpleLoopNests;
253
254 return AddUsersImpl(I, SimpleLoopNests);
255}
256
Andrew Trickfc4ccb22011-06-21 15:43:52 +0000257IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
258 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman110ed642010-09-01 01:45:53 +0000259 return IVUses.back();
Evan Cheng85a9f432009-11-12 07:35:05 +0000260}
261
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000262IVUsers::IVUsers(Loop *L, AssumptionCache *AC, LoopInfo *LI, DominatorTree *DT,
263 ScalarEvolution *SE)
264 : L(L), AC(AC), LI(LI), DT(DT), SE(SE), IVUses() {
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000265 // Collect ephemeral values so that AddUsersIfInteresting skips them.
266 EphValues.clear();
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000267 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Jingyue Wu9a92d4f2015-07-13 03:28:53 +0000268
Dan Gohmand76d71a2009-05-12 02:17:14 +0000269 // Find all uses of induction variables in this loop, and categorize
270 // them by stride. Start by finding all of the PHI nodes in the header for
271 // this loop. If they are induction variables, inspect their uses.
272 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Duncan P. N. Exon Smith5a82c912015-10-10 00:53:03 +0000273 (void)AddUsersIfInteresting(&*I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000274}
275
Dan Gohmand76d71a2009-05-12 02:17:14 +0000276void IVUsers::print(raw_ostream &OS, const Module *M) const {
277 OS << "IV Users for loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000278 L->getHeader()->printAsOperand(OS, false);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000279 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
Dehao Chen1a444522016-07-16 22:51:33 +0000280 OS << " with backedge-taken count " << *SE->getBackedgeTakenCount(L);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000281 }
282 OS << ":\n";
283
Benjamin Krameraa209152016-06-26 17:27:42 +0000284 for (const IVStrideUse &IVUse : IVUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000285 OS << " ";
Benjamin Krameraa209152016-06-26 17:27:42 +0000286 IVUse.getOperandValToReplace()->printAsOperand(OS, false);
287 OS << " = " << *getReplacementExpr(IVUse);
288 for (auto PostIncLoop : IVUse.PostIncLoops) {
Dan Gohmand006ab92010-04-07 22:27:08 +0000289 OS << " (post-inc with loop ";
Benjamin Krameraa209152016-06-26 17:27:42 +0000290 PostIncLoop->getHeader()->printAsOperand(OS, false);
Dan Gohmand006ab92010-04-07 22:27:08 +0000291 OS << ")";
292 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000293 OS << " in ";
Benjamin Krameraa209152016-06-26 17:27:42 +0000294 if (IVUse.getUser())
295 IVUse.getUser()->print(OS);
Richard Trieuc1485222014-06-21 02:43:02 +0000296 else
297 OS << "Printing <null> User";
Dan Gohman45774ce2010-02-12 10:34:29 +0000298 OS << '\n';
Dan Gohmand76d71a2009-05-12 02:17:14 +0000299 }
300}
301
Manman Ren49d684e2012-09-12 05:06:18 +0000302#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dehao Chen1a444522016-07-16 22:51:33 +0000303LLVM_DUMP_METHOD void IVUsers::dump() const { print(dbgs()); }
Manman Renc3366cc2012-09-06 19:55:56 +0000304#endif
Dan Gohmand76d71a2009-05-12 02:17:14 +0000305
306void IVUsers::releaseMemory() {
Evan Cheng090ac082009-12-17 09:39:49 +0000307 Processed.clear();
Dan Gohman92c36962009-12-18 00:06:20 +0000308 IVUses.clear();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000309}
310
Dehao Chen1a444522016-07-16 22:51:33 +0000311IVUsersWrapperPass::IVUsersWrapperPass() : LoopPass(ID) {
312 initializeIVUsersWrapperPassPass(*PassRegistry::getPassRegistry());
313}
314
315void IVUsersWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000316 AU.addRequired<AssumptionCacheTracker>();
Dehao Chen1a444522016-07-16 22:51:33 +0000317 AU.addRequired<LoopInfoWrapperPass>();
318 AU.addRequired<DominatorTreeWrapperPass>();
319 AU.addRequired<ScalarEvolutionWrapperPass>();
320 AU.setPreservesAll();
321}
322
323bool IVUsersWrapperPass::runOnLoop(Loop *L, LPPassManager &LPM) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000324 auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
325 *L->getHeader()->getParent());
Dehao Chen1a444522016-07-16 22:51:33 +0000326 auto *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
327 auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
328 auto *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
329
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000330 IU.reset(new IVUsers(L, AC, LI, DT, SE));
Dehao Chen1a444522016-07-16 22:51:33 +0000331 return false;
332}
333
334void IVUsersWrapperPass::print(raw_ostream &OS, const Module *M) const {
335 IU->print(OS, M);
336}
337
338void IVUsersWrapperPass::releaseMemory() { IU->releaseMemory(); }
339
Dan Gohmane637ff52010-04-19 21:48:58 +0000340/// getReplacementExpr - Return a SCEV expression which computes the
341/// value of the OperandValToReplace.
342const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
343 return SE->getSCEV(IU.getOperandValToReplace());
344}
345
346/// getExpr - Return the expression for the use.
347const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
348 return
349 TransformForPostIncUse(Normalize, getReplacementExpr(IU),
350 IU.getUser(), IU.getOperandValToReplace(),
351 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()),
352 *SE, *DT);
353}
354
Dan Gohmand006ab92010-04-07 22:27:08 +0000355static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
356 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
357 if (AR->getLoop() == L)
358 return AR;
359 return findAddRecForLoop(AR->getStart(), L);
360 }
361
362 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
363 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
364 I != E; ++I)
365 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L))
366 return AR;
Craig Topper9f008862014-04-15 04:59:12 +0000367 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000368 }
369
Craig Topper9f008862014-04-15 04:59:12 +0000370 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000371}
372
Dan Gohmane637ff52010-04-19 21:48:58 +0000373const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
374 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
375 return AR->getStepRecurrence(*SE);
Craig Topper9f008862014-04-15 04:59:12 +0000376 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000377}
378
379void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohmand006ab92010-04-07 22:27:08 +0000380 PostIncLoops.insert(L);
381}
382
Dan Gohmand76d71a2009-05-12 02:17:14 +0000383void IVStrideUse::deleted() {
384 // Remove this user from the list.
Andrew Trick9a5b2422012-01-06 21:41:55 +0000385 Parent->Processed.erase(this->getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +0000386 Parent->IVUses.erase(this);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000387 // this now dangles!
388}