blob: 308729fcf124a0dface5cccebb593fd47100480d [file] [log] [blame]
Dan Gohman81db61a2009-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
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 Gohman81db61a2009-05-12 02:17:14 +000022#include "llvm/Analysis/LoopPass.h"
23#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Andrew Trick5fd5b122011-03-18 16:50:32 +000024#include "llvm/Target/TargetData.h"
Chris Lattner9fc5cdf2011-01-02 22:09:33 +000025#include "llvm/Assembly/Writer.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000026#include "llvm/ADT/STLExtras.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/raw_ostream.h"
29#include <algorithm>
30using namespace llvm;
31
32char IVUsers::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +000033INITIALIZE_PASS_BEGIN(IVUsers, "iv-users",
34 "Induction Variable Users", false, true)
35INITIALIZE_PASS_DEPENDENCY(LoopInfo)
36INITIALIZE_PASS_DEPENDENCY(DominatorTree)
37INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
38INITIALIZE_PASS_END(IVUsers, "iv-users",
39 "Induction Variable Users", false, true)
Dan Gohman81db61a2009-05-12 02:17:14 +000040
41Pass *llvm::createIVUsersPass() {
42 return new IVUsers();
43}
44
Dan Gohman191bd642010-09-01 01:45:53 +000045/// isInteresting - Test whether the given expression is "interesting" when
46/// used by the given expression, within the context of analyzing the
47/// given loop.
48static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L,
Dan Gohman71997f32011-07-01 22:05:19 +000049 ScalarEvolution *SE, LoopInfo *LI) {
Dan Gohman448db1c2010-04-07 22:27:08 +000050 // 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 Gohman71997f32011-07-01 22:05:19 +000052 // Keep things simple. Don't touch loop-variant strides unless they're
53 // only used outside the loop and we can simplify them.
Dan Gohmanb3cdb0e2010-04-09 01:22:56 +000054 if (AR->getLoop() == L)
Dan Gohman71997f32011-07-01 22:05:19 +000055 return AR->isAffine() ||
56 (!L->contains(I) &&
57 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
Dan Gohman191bd642010-09-01 01:45:53 +000058 // 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 Gohman71997f32011-07-01 22:05:19 +000061 return isInteresting(AR->getStart(), I, L, SE, LI) &&
62 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI);
Dan Gohman448db1c2010-04-07 22:27:08 +000063 }
Dan Gohman81db61a2009-05-12 02:17:14 +000064
Dan Gohmanbbc1da82010-08-17 22:50:37 +000065 // An add is interesting if exactly one of its operands is interesting.
Dan Gohman448db1c2010-04-07 22:27:08 +000066 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman191bd642010-09-01 01:45:53 +000067 bool AnyInterestingYet = false;
Dan Gohman448db1c2010-04-07 22:27:08 +000068 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
69 OI != OE; ++OI)
Dan Gohman71997f32011-07-01 22:05:19 +000070 if (isInteresting(*OI, I, L, SE, LI)) {
Dan Gohman191bd642010-09-01 01:45:53 +000071 if (AnyInterestingYet)
72 return false;
73 AnyInterestingYet = true;
74 }
75 return AnyInterestingYet;
Dan Gohman448db1c2010-04-07 22:27:08 +000076 }
Dan Gohman81db61a2009-05-12 02:17:14 +000077
Dan Gohman448db1c2010-04-07 22:27:08 +000078 // Nothing else is interesting here.
Dan Gohman191bd642010-09-01 01:45:53 +000079 return false;
Dan Gohman81db61a2009-05-12 02:17:14 +000080}
81
Andrew Trickf9492282012-03-20 21:24:40 +000082/// Return true if all loop headers that dominate this block are in simplified
83/// form.
84static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT,
85 const LoopInfo *LI,
86 SmallPtrSet<Loop*,16> &SimpleLoopNests) {
87 Loop *NearestLoop = 0;
88 for (DomTreeNode *Rung = DT->getNode(BB);
Andrew Trick75ae2032012-03-16 03:16:56 +000089 Rung; Rung = Rung->getIDom()) {
Andrew Trickf9492282012-03-20 21:24:40 +000090 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 Trick75ae2032012-03-16 03:16:56 +000094 if (!DomLoop->isLoopSimplifyForm())
95 return false;
Andrew Trickf9492282012-03-20 21:24:40 +000096 // 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 Trick75ae2032012-03-16 03:16:56 +0000103 }
104 }
Andrew Trickf9492282012-03-20 21:24:40 +0000105 if (NearestLoop)
106 SimpleLoopNests.insert(NearestLoop);
Andrew Trick75ae2032012-03-16 03:16:56 +0000107 return true;
108}
109
Dan Gohman81db61a2009-05-12 02:17:14 +0000110/// AddUsersIfInteresting - Inspect the specified instruction. If it is a
111/// reducible SCEV, recursively add its users to the IVUsesByStride set and
112/// return true. Otherwise, return false.
Andrew Trick75ae2032012-03-16 03:16:56 +0000113bool IVUsers::AddUsersIfInteresting(Instruction *I,
114 SmallPtrSet<Loop*,16> &SimpleLoopNests) {
Andrew Trick260bf532012-01-06 21:41:55 +0000115 // 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 Gohmaneaa40ff2010-08-29 16:40:03 +0000120 if (!SE->isSCEVable(I->getType()))
Dan Gohman191bd642010-09-01 01:45:53 +0000121 return false; // Void and FP expressions cannot be reduced.
Dan Gohman81db61a2009-05-12 02:17:14 +0000122
Dan Gohman191bd642010-09-01 01:45:53 +0000123 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
Andrew Trick5fd5b122011-03-18 16:50:32 +0000124 // Also avoid creating IVs of non-native types. For example, we don't want a
125 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast.
126 uint64_t Width = SE->getTypeSizeInBits(I->getType());
127 if (Width > 64 || (TD && !TD->isLegalInteger(Width)))
Dan Gohman191bd642010-09-01 01:45:53 +0000128 return false;
Jim Grosbach97200e42009-11-19 02:05:44 +0000129
Dan Gohman191bd642010-09-01 01:45:53 +0000130 // Get the symbolic expression for this instruction.
131 const SCEV *ISE = SE->getSCEV(I);
Dan Gohman81db61a2009-05-12 02:17:14 +0000132
Dan Gohman191bd642010-09-01 01:45:53 +0000133 // If we've come to an uninteresting expression, stop the traversal and
134 // call this a user.
Dan Gohman71997f32011-07-01 22:05:19 +0000135 if (!isInteresting(ISE, I, L, SE, LI))
Dan Gohman191bd642010-09-01 01:45:53 +0000136 return false;
Dan Gohmaneaa40ff2010-08-29 16:40:03 +0000137
Dan Gohman191bd642010-09-01 01:45:53 +0000138 SmallPtrSet<Instruction *, 4> UniqueUsers;
139 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
140 UI != E; ++UI) {
141 Instruction *User = cast<Instruction>(*UI);
142 if (!UniqueUsers.insert(User))
143 continue;
144
145 // Do not infinitely recurse on PHI nodes.
146 if (isa<PHINode>(User) && Processed.count(User))
147 continue;
148
Andrew Trick75ae2032012-03-16 03:16:56 +0000149 // Only consider IVUsers that are dominated by simplified loop
150 // headers. Otherwise, SCEVExpander will crash.
Andrew Trickf9492282012-03-20 21:24:40 +0000151 if (!isSimplifiedLoopNest(User->getParent(), DT, LI, SimpleLoopNests))
152 return false;
Andrew Trick75ae2032012-03-16 03:16:56 +0000153
Dan Gohman191bd642010-09-01 01:45:53 +0000154 // Descend recursively, but not into PHI nodes outside the current loop.
155 // It's important to see the entire expression outside the loop to get
156 // choices that depend on addressing mode use right, although we won't
157 // consider references outside the loop in all cases.
158 // If User is already in Processed, we don't want to recurse into it again,
159 // but do want to record a second reference in the same instruction.
160 bool AddUserToIVUsers = false;
Andrew Trickf9492282012-03-20 21:24:40 +0000161 if (LI->getLoopFor(User->getParent()) != L) {
Dan Gohman191bd642010-09-01 01:45:53 +0000162 if (isa<PHINode>(User) || Processed.count(User) ||
Andrew Trick75ae2032012-03-16 03:16:56 +0000163 !AddUsersIfInteresting(User, SimpleLoopNests)) {
Dan Gohman191bd642010-09-01 01:45:53 +0000164 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
165 << " OF SCEV: " << *ISE << '\n');
166 AddUserToIVUsers = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000167 }
Andrew Trick75ae2032012-03-16 03:16:56 +0000168 } else if (Processed.count(User)
169 || !AddUsersIfInteresting(User, SimpleLoopNests)) {
Dan Gohman191bd642010-09-01 01:45:53 +0000170 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
171 << " OF SCEV: " << *ISE << '\n');
172 AddUserToIVUsers = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000173 }
Dan Gohman191bd642010-09-01 01:45:53 +0000174
175 if (AddUserToIVUsers) {
176 // Okay, we found a user that we cannot reduce.
Andrew Trick4417e532011-06-21 15:43:52 +0000177 IVUses.push_back(new IVStrideUse(this, User, I));
Dan Gohman191bd642010-09-01 01:45:53 +0000178 IVStrideUse &NewUse = IVUses.back();
Dan Gohmancc1ffc62011-05-27 18:42:33 +0000179 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
180 // The regular return value here is discarded; instead of recording
181 // it, we just recompute it when we need it.
Dan Gohman191bd642010-09-01 01:45:53 +0000182 ISE = TransformForPostIncUse(NormalizeAutodetect,
183 ISE, User, I,
184 NewUse.PostIncLoops,
185 *SE, *DT);
Andrew Trickce1823c2011-10-13 17:06:38 +0000186 DEBUG(if (SE->getSCEV(I) != ISE)
187 dbgs() << " NORMALIZED TO: " << *ISE << '\n');
Dan Gohman191bd642010-09-01 01:45:53 +0000188 }
189 }
190 return true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000191}
192
Andrew Trick4417e532011-06-21 15:43:52 +0000193IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
194 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman191bd642010-09-01 01:45:53 +0000195 return IVUses.back();
Evan Cheng586f69a2009-11-12 07:35:05 +0000196}
197
Dan Gohman81db61a2009-05-12 02:17:14 +0000198IVUsers::IVUsers()
Owen Anderson081c34b2010-10-19 17:21:58 +0000199 : LoopPass(ID) {
200 initializeIVUsersPass(*PassRegistry::getPassRegistry());
Dan Gohman81db61a2009-05-12 02:17:14 +0000201}
202
203void IVUsers::getAnalysisUsage(AnalysisUsage &AU) const {
204 AU.addRequired<LoopInfo>();
205 AU.addRequired<DominatorTree>();
206 AU.addRequired<ScalarEvolution>();
207 AU.setPreservesAll();
208}
209
210bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
211
212 L = l;
213 LI = &getAnalysis<LoopInfo>();
214 DT = &getAnalysis<DominatorTree>();
215 SE = &getAnalysis<ScalarEvolution>();
Andrew Trick5fd5b122011-03-18 16:50:32 +0000216 TD = getAnalysisIfAvailable<TargetData>();
Dan Gohman81db61a2009-05-12 02:17:14 +0000217
Andrew Trick75ae2032012-03-16 03:16:56 +0000218 // SCEVExpander can only handle users that are dominated by simplified loop
219 // entries. Keep track of all loops that are only dominated by other simple
220 // loops so we don't traverse the domtree for each user.
221 SmallPtrSet<Loop*,16> SimpleLoopNests;
222
Dan Gohman81db61a2009-05-12 02:17:14 +0000223 // Find all uses of induction variables in this loop, and categorize
224 // them by stride. Start by finding all of the PHI nodes in the header for
225 // this loop. If they are induction variables, inspect their uses.
226 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Andrew Trick75ae2032012-03-16 03:16:56 +0000227 (void)AddUsersIfInteresting(I, SimpleLoopNests);
Dan Gohman81db61a2009-05-12 02:17:14 +0000228
229 return false;
230}
231
Dan Gohman81db61a2009-05-12 02:17:14 +0000232void IVUsers::print(raw_ostream &OS, const Module *M) const {
233 OS << "IV Users for loop ";
234 WriteAsOperand(OS, L->getHeader(), false);
235 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
236 OS << " with backedge-taken count "
237 << *SE->getBackedgeTakenCount(L);
238 }
239 OS << ":\n";
240
Dan Gohman572645c2010-02-12 10:34:29 +0000241 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
242 E = IVUses.end(); UI != E; ++UI) {
243 OS << " ";
244 WriteAsOperand(OS, UI->getOperandValToReplace(), false);
Dan Gohmanc0564542010-04-19 21:48:58 +0000245 OS << " = " << *getReplacementExpr(*UI);
Dan Gohman448db1c2010-04-07 22:27:08 +0000246 for (PostIncLoopSet::const_iterator
247 I = UI->PostIncLoops.begin(),
248 E = UI->PostIncLoops.end(); I != E; ++I) {
249 OS << " (post-inc with loop ";
250 WriteAsOperand(OS, (*I)->getHeader(), false);
251 OS << ")";
252 }
Dan Gohman572645c2010-02-12 10:34:29 +0000253 OS << " in ";
Chris Lattner831c8ec2010-09-02 23:03:10 +0000254 UI->getUser()->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +0000255 OS << '\n';
Dan Gohman81db61a2009-05-12 02:17:14 +0000256 }
257}
258
Dan Gohman81db61a2009-05-12 02:17:14 +0000259void IVUsers::dump() const {
David Greene63c45602009-12-23 20:20:46 +0000260 print(dbgs());
Dan Gohman81db61a2009-05-12 02:17:14 +0000261}
262
263void IVUsers::releaseMemory() {
Evan Cheng04149f72009-12-17 09:39:49 +0000264 Processed.clear();
Dan Gohman6bec5bb2009-12-18 00:06:20 +0000265 IVUses.clear();
Dan Gohman81db61a2009-05-12 02:17:14 +0000266}
267
Dan Gohmanc0564542010-04-19 21:48:58 +0000268/// getReplacementExpr - Return a SCEV expression which computes the
269/// value of the OperandValToReplace.
270const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
271 return SE->getSCEV(IU.getOperandValToReplace());
272}
273
274/// getExpr - Return the expression for the use.
275const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
276 return
277 TransformForPostIncUse(Normalize, getReplacementExpr(IU),
278 IU.getUser(), IU.getOperandValToReplace(),
279 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()),
280 *SE, *DT);
281}
282
Dan Gohman448db1c2010-04-07 22:27:08 +0000283static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
284 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
285 if (AR->getLoop() == L)
286 return AR;
287 return findAddRecForLoop(AR->getStart(), L);
288 }
289
290 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
291 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
292 I != E; ++I)
293 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L))
294 return AR;
295 return 0;
296 }
297
298 return 0;
299}
300
Dan Gohmanc0564542010-04-19 21:48:58 +0000301const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
302 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
303 return AR->getStepRecurrence(*SE);
Dan Gohman448db1c2010-04-07 22:27:08 +0000304 return 0;
305}
306
307void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohman448db1c2010-04-07 22:27:08 +0000308 PostIncLoops.insert(L);
309}
310
Dan Gohman81db61a2009-05-12 02:17:14 +0000311void IVStrideUse::deleted() {
312 // Remove this user from the list.
Andrew Trick260bf532012-01-06 21:41:55 +0000313 Parent->Processed.erase(this->getUser());
Dan Gohman572645c2010-02-12 10:34:29 +0000314 Parent->IVUses.erase(this);
Dan Gohman81db61a2009-05-12 02:17:14 +0000315 // this now dangles!
316}