blob: c8382186df3afe8fb365c0b55d50293b22d70827 [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"
Chris Lattner9fc5cdf2011-01-02 22:09:33 +000024#include "llvm/Assembly/Writer.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000025#include "llvm/ADT/STLExtras.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Support/raw_ostream.h"
28#include <algorithm>
29using namespace llvm;
30
31char IVUsers::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +000032INITIALIZE_PASS_BEGIN(IVUsers, "iv-users",
33 "Induction Variable Users", false, true)
34INITIALIZE_PASS_DEPENDENCY(LoopInfo)
35INITIALIZE_PASS_DEPENDENCY(DominatorTree)
36INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
37INITIALIZE_PASS_END(IVUsers, "iv-users",
38 "Induction Variable Users", false, true)
Dan Gohman81db61a2009-05-12 02:17:14 +000039
40Pass *llvm::createIVUsersPass() {
41 return new IVUsers();
42}
43
Dan Gohman191bd642010-09-01 01:45:53 +000044/// isInteresting - Test whether the given expression is "interesting" when
45/// used by the given expression, within the context of analyzing the
46/// given loop.
47static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L,
48 ScalarEvolution *SE) {
Dan Gohman448db1c2010-04-07 22:27:08 +000049 // An addrec is interesting if it's affine or if it has an interesting start.
50 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
51 // Keep things simple. Don't touch loop-variant strides.
Dan Gohmanb3cdb0e2010-04-09 01:22:56 +000052 if (AR->getLoop() == L)
Dan Gohman191bd642010-09-01 01:45:53 +000053 return AR->isAffine() || !L->contains(I);
54 // Otherwise recurse to see if the start value is interesting, and that
55 // the step value is not interesting, since we don't yet know how to
56 // do effective SCEV expansions for addrecs with interesting steps.
57 return isInteresting(AR->getStart(), I, L, SE) &&
58 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE);
Dan Gohman448db1c2010-04-07 22:27:08 +000059 }
Dan Gohman81db61a2009-05-12 02:17:14 +000060
Dan Gohmanbbc1da82010-08-17 22:50:37 +000061 // An add is interesting if exactly one of its operands is interesting.
Dan Gohman448db1c2010-04-07 22:27:08 +000062 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman191bd642010-09-01 01:45:53 +000063 bool AnyInterestingYet = false;
Dan Gohman448db1c2010-04-07 22:27:08 +000064 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
65 OI != OE; ++OI)
Dan Gohman191bd642010-09-01 01:45:53 +000066 if (isInteresting(*OI, I, L, SE)) {
67 if (AnyInterestingYet)
68 return false;
69 AnyInterestingYet = true;
70 }
71 return AnyInterestingYet;
Dan Gohman448db1c2010-04-07 22:27:08 +000072 }
Dan Gohman81db61a2009-05-12 02:17:14 +000073
Dan Gohman448db1c2010-04-07 22:27:08 +000074 // Nothing else is interesting here.
Dan Gohman191bd642010-09-01 01:45:53 +000075 return false;
Dan Gohman81db61a2009-05-12 02:17:14 +000076}
77
78/// AddUsersIfInteresting - Inspect the specified instruction. If it is a
79/// reducible SCEV, recursively add its users to the IVUsesByStride set and
80/// return true. Otherwise, return false.
Dan Gohman191bd642010-09-01 01:45:53 +000081bool IVUsers::AddUsersIfInteresting(Instruction *I) {
Dan Gohmaneaa40ff2010-08-29 16:40:03 +000082 if (!SE->isSCEVable(I->getType()))
Dan Gohman191bd642010-09-01 01:45:53 +000083 return false; // Void and FP expressions cannot be reduced.
Dan Gohman81db61a2009-05-12 02:17:14 +000084
Dan Gohman191bd642010-09-01 01:45:53 +000085 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
86 if (SE->getTypeSizeInBits(I->getType()) > 64)
87 return false;
Jim Grosbach97200e42009-11-19 02:05:44 +000088
Dan Gohman191bd642010-09-01 01:45:53 +000089 if (!Processed.insert(I))
90 return true; // Instruction already handled.
Dan Gohman81db61a2009-05-12 02:17:14 +000091
Dan Gohman191bd642010-09-01 01:45:53 +000092 // Get the symbolic expression for this instruction.
93 const SCEV *ISE = SE->getSCEV(I);
Dan Gohman81db61a2009-05-12 02:17:14 +000094
Dan Gohman191bd642010-09-01 01:45:53 +000095 // If we've come to an uninteresting expression, stop the traversal and
96 // call this a user.
97 if (!isInteresting(ISE, I, L, SE))
98 return false;
Dan Gohmaneaa40ff2010-08-29 16:40:03 +000099
Dan Gohman191bd642010-09-01 01:45:53 +0000100 SmallPtrSet<Instruction *, 4> UniqueUsers;
101 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
102 UI != E; ++UI) {
103 Instruction *User = cast<Instruction>(*UI);
104 if (!UniqueUsers.insert(User))
105 continue;
106
107 // Do not infinitely recurse on PHI nodes.
108 if (isa<PHINode>(User) && Processed.count(User))
109 continue;
110
111 // Descend recursively, but not into PHI nodes outside the current loop.
112 // It's important to see the entire expression outside the loop to get
113 // choices that depend on addressing mode use right, although we won't
114 // consider references outside the loop in all cases.
115 // If User is already in Processed, we don't want to recurse into it again,
116 // but do want to record a second reference in the same instruction.
117 bool AddUserToIVUsers = false;
118 if (LI->getLoopFor(User->getParent()) != L) {
119 if (isa<PHINode>(User) || Processed.count(User) ||
120 !AddUsersIfInteresting(User)) {
121 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
122 << " OF SCEV: " << *ISE << '\n');
123 AddUserToIVUsers = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000124 }
Dan Gohman191bd642010-09-01 01:45:53 +0000125 } else if (Processed.count(User) ||
126 !AddUsersIfInteresting(User)) {
127 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
128 << " OF SCEV: " << *ISE << '\n');
129 AddUserToIVUsers = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000130 }
Dan Gohman191bd642010-09-01 01:45:53 +0000131
132 if (AddUserToIVUsers) {
133 // Okay, we found a user that we cannot reduce.
134 IVUses.push_back(new IVStrideUse(this, User, I));
135 IVStrideUse &NewUse = IVUses.back();
136 // Transform the expression into a normalized form.
137 ISE = TransformForPostIncUse(NormalizeAutodetect,
138 ISE, User, I,
139 NewUse.PostIncLoops,
140 *SE, *DT);
141 DEBUG(dbgs() << " NORMALIZED TO: " << *ISE << '\n');
142 }
143 }
144 return true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000145}
146
Dan Gohmanc0564542010-04-19 21:48:58 +0000147IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
148 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman191bd642010-09-01 01:45:53 +0000149 return IVUses.back();
Evan Cheng586f69a2009-11-12 07:35:05 +0000150}
151
Dan Gohman81db61a2009-05-12 02:17:14 +0000152IVUsers::IVUsers()
Owen Anderson081c34b2010-10-19 17:21:58 +0000153 : LoopPass(ID) {
154 initializeIVUsersPass(*PassRegistry::getPassRegistry());
Dan Gohman81db61a2009-05-12 02:17:14 +0000155}
156
157void IVUsers::getAnalysisUsage(AnalysisUsage &AU) const {
158 AU.addRequired<LoopInfo>();
159 AU.addRequired<DominatorTree>();
160 AU.addRequired<ScalarEvolution>();
161 AU.setPreservesAll();
162}
163
164bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
165
166 L = l;
167 LI = &getAnalysis<LoopInfo>();
168 DT = &getAnalysis<DominatorTree>();
169 SE = &getAnalysis<ScalarEvolution>();
170
171 // Find all uses of induction variables in this loop, and categorize
172 // them by stride. Start by finding all of the PHI nodes in the header for
173 // this loop. If they are induction variables, inspect their uses.
174 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Dan Gohman191bd642010-09-01 01:45:53 +0000175 (void)AddUsersIfInteresting(I);
Dan Gohman81db61a2009-05-12 02:17:14 +0000176
177 return false;
178}
179
Dan Gohman81db61a2009-05-12 02:17:14 +0000180void IVUsers::print(raw_ostream &OS, const Module *M) const {
181 OS << "IV Users for loop ";
182 WriteAsOperand(OS, L->getHeader(), false);
183 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
184 OS << " with backedge-taken count "
185 << *SE->getBackedgeTakenCount(L);
186 }
187 OS << ":\n";
188
Dan Gohman572645c2010-02-12 10:34:29 +0000189 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
190 E = IVUses.end(); UI != E; ++UI) {
191 OS << " ";
192 WriteAsOperand(OS, UI->getOperandValToReplace(), false);
Dan Gohmanc0564542010-04-19 21:48:58 +0000193 OS << " = " << *getReplacementExpr(*UI);
Dan Gohman448db1c2010-04-07 22:27:08 +0000194 for (PostIncLoopSet::const_iterator
195 I = UI->PostIncLoops.begin(),
196 E = UI->PostIncLoops.end(); I != E; ++I) {
197 OS << " (post-inc with loop ";
198 WriteAsOperand(OS, (*I)->getHeader(), false);
199 OS << ")";
200 }
Dan Gohman572645c2010-02-12 10:34:29 +0000201 OS << " in ";
Chris Lattner831c8ec2010-09-02 23:03:10 +0000202 UI->getUser()->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +0000203 OS << '\n';
Dan Gohman81db61a2009-05-12 02:17:14 +0000204 }
205}
206
Dan Gohman81db61a2009-05-12 02:17:14 +0000207void IVUsers::dump() const {
David Greene63c45602009-12-23 20:20:46 +0000208 print(dbgs());
Dan Gohman81db61a2009-05-12 02:17:14 +0000209}
210
211void IVUsers::releaseMemory() {
Evan Cheng04149f72009-12-17 09:39:49 +0000212 Processed.clear();
Dan Gohman6bec5bb2009-12-18 00:06:20 +0000213 IVUses.clear();
Dan Gohman81db61a2009-05-12 02:17:14 +0000214}
215
Dan Gohmanc0564542010-04-19 21:48:58 +0000216/// getReplacementExpr - Return a SCEV expression which computes the
217/// value of the OperandValToReplace.
218const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
219 return SE->getSCEV(IU.getOperandValToReplace());
220}
221
222/// getExpr - Return the expression for the use.
223const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
224 return
225 TransformForPostIncUse(Normalize, getReplacementExpr(IU),
226 IU.getUser(), IU.getOperandValToReplace(),
227 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()),
228 *SE, *DT);
229}
230
Dan Gohman448db1c2010-04-07 22:27:08 +0000231static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
232 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
233 if (AR->getLoop() == L)
234 return AR;
235 return findAddRecForLoop(AR->getStart(), L);
236 }
237
238 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
239 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
240 I != E; ++I)
241 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L))
242 return AR;
243 return 0;
244 }
245
246 return 0;
247}
248
Dan Gohmanc0564542010-04-19 21:48:58 +0000249const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
250 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
251 return AR->getStepRecurrence(*SE);
Dan Gohman448db1c2010-04-07 22:27:08 +0000252 return 0;
253}
254
255void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohman448db1c2010-04-07 22:27:08 +0000256 PostIncLoops.insert(L);
257}
258
Dan Gohman81db61a2009-05-12 02:17:14 +0000259void IVStrideUse::deleted() {
260 // Remove this user from the list.
Dan Gohman572645c2010-02-12 10:34:29 +0000261 Parent->IVUses.erase(this);
Dan Gohman81db61a2009-05-12 02:17:14 +0000262 // this now dangles!
263}