blob: 2cda7913f024842e01a1f18d2363e24413716f90 [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,
49 ScalarEvolution *SE) {
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)) {
52 // Keep things simple. Don't touch loop-variant strides.
Dan Gohmanb3cdb0e2010-04-09 01:22:56 +000053 if (AR->getLoop() == L)
Dan Gohman191bd642010-09-01 01:45:53 +000054 return AR->isAffine() || !L->contains(I);
55 // Otherwise recurse to see if the start value is interesting, and that
56 // the step value is not interesting, since we don't yet know how to
57 // do effective SCEV expansions for addrecs with interesting steps.
58 return isInteresting(AR->getStart(), I, L, SE) &&
59 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE);
Dan Gohman448db1c2010-04-07 22:27:08 +000060 }
Dan Gohman81db61a2009-05-12 02:17:14 +000061
Dan Gohmanbbc1da82010-08-17 22:50:37 +000062 // An add is interesting if exactly one of its operands is interesting.
Dan Gohman448db1c2010-04-07 22:27:08 +000063 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman191bd642010-09-01 01:45:53 +000064 bool AnyInterestingYet = false;
Dan Gohman448db1c2010-04-07 22:27:08 +000065 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
66 OI != OE; ++OI)
Dan Gohman191bd642010-09-01 01:45:53 +000067 if (isInteresting(*OI, I, L, SE)) {
68 if (AnyInterestingYet)
69 return false;
70 AnyInterestingYet = true;
71 }
72 return AnyInterestingYet;
Dan Gohman448db1c2010-04-07 22:27:08 +000073 }
Dan Gohman81db61a2009-05-12 02:17:14 +000074
Dan Gohman448db1c2010-04-07 22:27:08 +000075 // Nothing else is interesting here.
Dan Gohman191bd642010-09-01 01:45:53 +000076 return false;
Dan Gohman81db61a2009-05-12 02:17:14 +000077}
78
79/// AddUsersIfInteresting - Inspect the specified instruction. If it is a
80/// reducible SCEV, recursively add its users to the IVUsesByStride set and
81/// return true. Otherwise, return false.
Dan Gohman191bd642010-09-01 01:45:53 +000082bool IVUsers::AddUsersIfInteresting(Instruction *I) {
Dan Gohmaneaa40ff2010-08-29 16:40:03 +000083 if (!SE->isSCEVable(I->getType()))
Dan Gohman191bd642010-09-01 01:45:53 +000084 return false; // Void and FP expressions cannot be reduced.
Dan Gohman81db61a2009-05-12 02:17:14 +000085
Dan Gohman191bd642010-09-01 01:45:53 +000086 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
Andrew Trick5fd5b122011-03-18 16:50:32 +000087 // Also avoid creating IVs of non-native types. For example, we don't want a
88 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast.
89 uint64_t Width = SE->getTypeSizeInBits(I->getType());
90 if (Width > 64 || (TD && !TD->isLegalInteger(Width)))
Dan Gohman191bd642010-09-01 01:45:53 +000091 return false;
Jim Grosbach97200e42009-11-19 02:05:44 +000092
Dan Gohman191bd642010-09-01 01:45:53 +000093 if (!Processed.insert(I))
94 return true; // Instruction already handled.
Dan Gohman81db61a2009-05-12 02:17:14 +000095
Dan Gohman191bd642010-09-01 01:45:53 +000096 // Get the symbolic expression for this instruction.
97 const SCEV *ISE = SE->getSCEV(I);
Dan Gohman81db61a2009-05-12 02:17:14 +000098
Dan Gohman191bd642010-09-01 01:45:53 +000099 // If we've come to an uninteresting expression, stop the traversal and
100 // call this a user.
101 if (!isInteresting(ISE, I, L, SE))
102 return false;
Dan Gohmaneaa40ff2010-08-29 16:40:03 +0000103
Dan Gohman191bd642010-09-01 01:45:53 +0000104 SmallPtrSet<Instruction *, 4> UniqueUsers;
105 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
106 UI != E; ++UI) {
107 Instruction *User = cast<Instruction>(*UI);
108 if (!UniqueUsers.insert(User))
109 continue;
110
111 // Do not infinitely recurse on PHI nodes.
112 if (isa<PHINode>(User) && Processed.count(User))
113 continue;
114
115 // Descend recursively, but not into PHI nodes outside the current loop.
116 // It's important to see the entire expression outside the loop to get
117 // choices that depend on addressing mode use right, although we won't
118 // consider references outside the loop in all cases.
119 // If User is already in Processed, we don't want to recurse into it again,
120 // but do want to record a second reference in the same instruction.
121 bool AddUserToIVUsers = false;
122 if (LI->getLoopFor(User->getParent()) != L) {
123 if (isa<PHINode>(User) || Processed.count(User) ||
124 !AddUsersIfInteresting(User)) {
125 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
126 << " OF SCEV: " << *ISE << '\n');
127 AddUserToIVUsers = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000128 }
Dan Gohman191bd642010-09-01 01:45:53 +0000129 } else if (Processed.count(User) ||
130 !AddUsersIfInteresting(User)) {
131 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
132 << " OF SCEV: " << *ISE << '\n');
133 AddUserToIVUsers = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000134 }
Dan Gohman191bd642010-09-01 01:45:53 +0000135
136 if (AddUserToIVUsers) {
137 // Okay, we found a user that we cannot reduce.
138 IVUses.push_back(new IVStrideUse(this, User, I));
139 IVStrideUse &NewUse = IVUses.back();
140 // Transform the expression into a normalized form.
141 ISE = TransformForPostIncUse(NormalizeAutodetect,
142 ISE, User, I,
143 NewUse.PostIncLoops,
144 *SE, *DT);
145 DEBUG(dbgs() << " NORMALIZED TO: " << *ISE << '\n');
146 }
147 }
148 return true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000149}
150
Dan Gohmanc0564542010-04-19 21:48:58 +0000151IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
152 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman191bd642010-09-01 01:45:53 +0000153 return IVUses.back();
Evan Cheng586f69a2009-11-12 07:35:05 +0000154}
155
Dan Gohman81db61a2009-05-12 02:17:14 +0000156IVUsers::IVUsers()
Owen Anderson081c34b2010-10-19 17:21:58 +0000157 : LoopPass(ID) {
158 initializeIVUsersPass(*PassRegistry::getPassRegistry());
Dan Gohman81db61a2009-05-12 02:17:14 +0000159}
160
161void IVUsers::getAnalysisUsage(AnalysisUsage &AU) const {
162 AU.addRequired<LoopInfo>();
163 AU.addRequired<DominatorTree>();
164 AU.addRequired<ScalarEvolution>();
165 AU.setPreservesAll();
166}
167
168bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
169
170 L = l;
171 LI = &getAnalysis<LoopInfo>();
172 DT = &getAnalysis<DominatorTree>();
173 SE = &getAnalysis<ScalarEvolution>();
Andrew Trick5fd5b122011-03-18 16:50:32 +0000174 TD = getAnalysisIfAvailable<TargetData>();
Dan Gohman81db61a2009-05-12 02:17:14 +0000175
176 // Find all uses of induction variables in this loop, and categorize
177 // them by stride. Start by finding all of the PHI nodes in the header for
178 // this loop. If they are induction variables, inspect their uses.
179 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Dan Gohman191bd642010-09-01 01:45:53 +0000180 (void)AddUsersIfInteresting(I);
Dan Gohman81db61a2009-05-12 02:17:14 +0000181
182 return false;
183}
184
Dan Gohman81db61a2009-05-12 02:17:14 +0000185void IVUsers::print(raw_ostream &OS, const Module *M) const {
186 OS << "IV Users for loop ";
187 WriteAsOperand(OS, L->getHeader(), false);
188 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
189 OS << " with backedge-taken count "
190 << *SE->getBackedgeTakenCount(L);
191 }
192 OS << ":\n";
193
Dan Gohman572645c2010-02-12 10:34:29 +0000194 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
195 E = IVUses.end(); UI != E; ++UI) {
196 OS << " ";
197 WriteAsOperand(OS, UI->getOperandValToReplace(), false);
Dan Gohmanc0564542010-04-19 21:48:58 +0000198 OS << " = " << *getReplacementExpr(*UI);
Dan Gohman448db1c2010-04-07 22:27:08 +0000199 for (PostIncLoopSet::const_iterator
200 I = UI->PostIncLoops.begin(),
201 E = UI->PostIncLoops.end(); I != E; ++I) {
202 OS << " (post-inc with loop ";
203 WriteAsOperand(OS, (*I)->getHeader(), false);
204 OS << ")";
205 }
Dan Gohman572645c2010-02-12 10:34:29 +0000206 OS << " in ";
Chris Lattner831c8ec2010-09-02 23:03:10 +0000207 UI->getUser()->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +0000208 OS << '\n';
Dan Gohman81db61a2009-05-12 02:17:14 +0000209 }
210}
211
Dan Gohman81db61a2009-05-12 02:17:14 +0000212void IVUsers::dump() const {
David Greene63c45602009-12-23 20:20:46 +0000213 print(dbgs());
Dan Gohman81db61a2009-05-12 02:17:14 +0000214}
215
216void IVUsers::releaseMemory() {
Evan Cheng04149f72009-12-17 09:39:49 +0000217 Processed.clear();
Dan Gohman6bec5bb2009-12-18 00:06:20 +0000218 IVUses.clear();
Dan Gohman81db61a2009-05-12 02:17:14 +0000219}
220
Dan Gohmanc0564542010-04-19 21:48:58 +0000221/// getReplacementExpr - Return a SCEV expression which computes the
222/// value of the OperandValToReplace.
223const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
224 return SE->getSCEV(IU.getOperandValToReplace());
225}
226
227/// getExpr - Return the expression for the use.
228const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
229 return
230 TransformForPostIncUse(Normalize, getReplacementExpr(IU),
231 IU.getUser(), IU.getOperandValToReplace(),
232 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()),
233 *SE, *DT);
234}
235
Dan Gohman448db1c2010-04-07 22:27:08 +0000236static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
237 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
238 if (AR->getLoop() == L)
239 return AR;
240 return findAddRecForLoop(AR->getStart(), L);
241 }
242
243 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
244 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
245 I != E; ++I)
246 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L))
247 return AR;
248 return 0;
249 }
250
251 return 0;
252}
253
Dan Gohmanc0564542010-04-19 21:48:58 +0000254const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
255 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
256 return AR->getStepRecurrence(*SE);
Dan Gohman448db1c2010-04-07 22:27:08 +0000257 return 0;
258}
259
260void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohman448db1c2010-04-07 22:27:08 +0000261 PostIncLoops.insert(L);
262}
263
Dan Gohman81db61a2009-05-12 02:17:14 +0000264void IVStrideUse::deleted() {
265 // Remove this user from the list.
Dan Gohman572645c2010-02-12 10:34:29 +0000266 Parent->IVUses.erase(this);
Dan Gohman81db61a2009-05-12 02:17:14 +0000267 // this now dangles!
268}