blob: e3ea78311b816b188a039356b5c3114522048e77 [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
Dan Gohmand76d71a2009-05-12 02:17:14 +000015#include "llvm/Analysis/IVUsers.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/STLExtras.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000017#include "llvm/Analysis/LoopPass.h"
18#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Andrew Trickee760652012-07-13 23:33:05 +000019#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Constants.h"
21#include "llvm/IR/DataLayout.h"
22#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000023#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/Instructions.h"
Mehdi Amini46a43552015-03-04 18:43:29 +000025#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Type.h"
Dan Gohmand76d71a2009-05-12 02:17:14 +000027#include "llvm/Support/Debug.h"
28#include "llvm/Support/raw_ostream.h"
29#include <algorithm>
30using namespace llvm;
31
Chandler Carruthf1221bd2014-04-22 02:48:03 +000032#define DEBUG_TYPE "iv-users"
33
Dan Gohmand76d71a2009-05-12 02:17:14 +000034char IVUsers::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000035INITIALIZE_PASS_BEGIN(IVUsers, "iv-users",
36 "Induction Variable Users", false, true)
Chandler Carruth4f8f3072015-01-17 14:16:18 +000037INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Chandler Carruth73523022014-01-13 13:07:17 +000038INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +000039INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
40INITIALIZE_PASS_END(IVUsers, "iv-users",
41 "Induction Variable Users", false, true)
Dan Gohmand76d71a2009-05-12 02:17:14 +000042
43Pass *llvm::createIVUsersPass() {
44 return new IVUsers();
45}
46
Dan Gohman110ed642010-09-01 01:45:53 +000047/// isInteresting - Test whether the given expression is "interesting" when
48/// used by the given expression, within the context of analyzing the
49/// given loop.
50static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L,
Dan Gohmana293f242011-07-01 22:05:19 +000051 ScalarEvolution *SE, LoopInfo *LI) {
Dan Gohmand006ab92010-04-07 22:27:08 +000052 // An addrec is interesting if it's affine or if it has an interesting start.
53 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmana293f242011-07-01 22:05:19 +000054 // Keep things simple. Don't touch loop-variant strides unless they're
55 // only used outside the loop and we can simplify them.
Dan Gohmanee6451d2010-04-09 01:22:56 +000056 if (AR->getLoop() == L)
Dan Gohmana293f242011-07-01 22:05:19 +000057 return AR->isAffine() ||
58 (!L->contains(I) &&
59 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
Dan Gohman110ed642010-09-01 01:45:53 +000060 // Otherwise recurse to see if the start value is interesting, and that
61 // the step value is not interesting, since we don't yet know how to
62 // do effective SCEV expansions for addrecs with interesting steps.
Dan Gohmana293f242011-07-01 22:05:19 +000063 return isInteresting(AR->getStart(), I, L, SE, LI) &&
64 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI);
Dan Gohmand006ab92010-04-07 22:27:08 +000065 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000066
Dan Gohmaned2b0052010-08-17 22:50:37 +000067 // An add is interesting if exactly one of its operands is interesting.
Dan Gohmand006ab92010-04-07 22:27:08 +000068 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman110ed642010-09-01 01:45:53 +000069 bool AnyInterestingYet = false;
Dan Gohmand006ab92010-04-07 22:27:08 +000070 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
71 OI != OE; ++OI)
Dan Gohmana293f242011-07-01 22:05:19 +000072 if (isInteresting(*OI, I, L, SE, LI)) {
Dan Gohman110ed642010-09-01 01:45:53 +000073 if (AnyInterestingYet)
74 return false;
75 AnyInterestingYet = true;
76 }
77 return AnyInterestingYet;
Dan Gohmand006ab92010-04-07 22:27:08 +000078 }
Dan Gohmand76d71a2009-05-12 02:17:14 +000079
Dan Gohmand006ab92010-04-07 22:27:08 +000080 // Nothing else is interesting here.
Dan Gohman110ed642010-09-01 01:45:53 +000081 return false;
Dan Gohmand76d71a2009-05-12 02:17:14 +000082}
83
Andrew Trick36607352012-03-20 21:24:40 +000084/// Return true if all loop headers that dominate this block are in simplified
85/// form.
86static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT,
87 const LoopInfo *LI,
Craig Topper71b7b682014-08-21 05:55:13 +000088 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Craig Topper9f008862014-04-15 04:59:12 +000089 Loop *NearestLoop = nullptr;
Andrew Trick36607352012-03-20 21:24:40 +000090 for (DomTreeNode *Rung = DT->getNode(BB);
Andrew Trick070e5402012-03-16 03:16:56 +000091 Rung; Rung = Rung->getIDom()) {
Andrew Trick36607352012-03-20 21:24:40 +000092 BasicBlock *DomBB = Rung->getBlock();
93 Loop *DomLoop = LI->getLoopFor(DomBB);
94 if (DomLoop && DomLoop->getHeader() == DomBB) {
95 // If the domtree walk reaches a loop with no preheader, return false.
Andrew Trick070e5402012-03-16 03:16:56 +000096 if (!DomLoop->isLoopSimplifyForm())
97 return false;
Andrew Trick36607352012-03-20 21:24:40 +000098 // If we have already checked this loop nest, stop checking.
99 if (SimpleLoopNests.count(DomLoop))
100 break;
101 // If we have not already checked this loop nest, remember the loop
102 // header nearest to BB. The nearest loop may not contain BB.
103 if (!NearestLoop)
104 NearestLoop = DomLoop;
Andrew Trick070e5402012-03-16 03:16:56 +0000105 }
106 }
Andrew Trick36607352012-03-20 21:24:40 +0000107 if (NearestLoop)
108 SimpleLoopNests.insert(NearestLoop);
Andrew Trick070e5402012-03-16 03:16:56 +0000109 return true;
110}
111
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000112/// AddUsersImpl - Inspect the specified instruction. If it is a
Dan Gohmand76d71a2009-05-12 02:17:14 +0000113/// reducible SCEV, recursively add its users to the IVUsesByStride set and
114/// return true. Otherwise, return false.
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000115bool IVUsers::AddUsersImpl(Instruction *I,
Craig Topper71b7b682014-08-21 05:55:13 +0000116 SmallPtrSetImpl<Loop*> &SimpleLoopNests) {
Andrew Trick9a5b2422012-01-06 21:41:55 +0000117 // Add this IV user to the Processed set before returning false to ensure that
118 // all IV users are members of the set. See IVUsers::isIVUserOrOperand.
David Blaikie70573dc2014-11-19 07:49:26 +0000119 if (!Processed.insert(I).second)
Andrew Trick9a5b2422012-01-06 21:41:55 +0000120 return true; // Instruction already handled.
121
Dan Gohman3a08ed72010-08-29 16:40:03 +0000122 if (!SE->isSCEVable(I->getType()))
Dan Gohman110ed642010-09-01 01:45:53 +0000123 return false; // Void and FP expressions cannot be reduced.
Dan Gohmand76d71a2009-05-12 02:17:14 +0000124
Andrew Trickee760652012-07-13 23:33:05 +0000125 // IVUsers is used by LSR which assumes that all SCEV expressions are safe to
126 // pass to SCEVExpander. Expressions are not safe to expand if they represent
127 // operations that are not safe to speculate, namely integer division.
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000128 if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I, DL))
Andrew Trickee760652012-07-13 23:33:05 +0000129 return false;
130
Dan Gohman110ed642010-09-01 01:45:53 +0000131 // LSR is not APInt clean, do not touch integers bigger than 64-bits.
Andrew Trick1c4b42d2011-03-18 16:50:32 +0000132 // Also avoid creating IVs of non-native types. For example, we don't want a
133 // 64-bit IV in 32-bit code just because the loop has one 64-bit cast.
134 uint64_t Width = SE->getTypeSizeInBits(I->getType());
Rafael Espindola7c68beb2014-02-18 15:33:12 +0000135 if (Width > 64 || (DL && !DL->isLegalInteger(Width)))
Dan Gohman110ed642010-09-01 01:45:53 +0000136 return false;
Jim Grosbach50d67e72009-11-19 02:05:44 +0000137
Dan Gohman110ed642010-09-01 01:45:53 +0000138 // Get the symbolic expression for this instruction.
139 const SCEV *ISE = SE->getSCEV(I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000140
Dan Gohman110ed642010-09-01 01:45:53 +0000141 // If we've come to an uninteresting expression, stop the traversal and
142 // call this a user.
Dan Gohmana293f242011-07-01 22:05:19 +0000143 if (!isInteresting(ISE, I, L, SE, LI))
Dan Gohman110ed642010-09-01 01:45:53 +0000144 return false;
Dan Gohman3a08ed72010-08-29 16:40:03 +0000145
Dan Gohman110ed642010-09-01 01:45:53 +0000146 SmallPtrSet<Instruction *, 4> UniqueUsers;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000147 for (Use &U : I->uses()) {
148 Instruction *User = cast<Instruction>(U.getUser());
David Blaikie70573dc2014-11-19 07:49:26 +0000149 if (!UniqueUsers.insert(User).second)
Dan Gohman110ed642010-09-01 01:45:53 +0000150 continue;
151
152 // Do not infinitely recurse on PHI nodes.
153 if (isa<PHINode>(User) && Processed.count(User))
154 continue;
155
Andrew Trick070e5402012-03-16 03:16:56 +0000156 // Only consider IVUsers that are dominated by simplified loop
157 // headers. Otherwise, SCEVExpander will crash.
Andrew Trick9c457062012-03-20 21:24:44 +0000158 BasicBlock *UseBB = User->getParent();
159 // A phi's use is live out of its predecessor block.
160 if (PHINode *PHI = dyn_cast<PHINode>(User)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000161 unsigned OperandNo = U.getOperandNo();
Andrew Trick9c457062012-03-20 21:24:44 +0000162 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo);
163 UseBB = PHI->getIncomingBlock(ValNo);
164 }
165 if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests))
Andrew Trick36607352012-03-20 21:24:40 +0000166 return false;
Andrew Trick070e5402012-03-16 03:16:56 +0000167
Dan Gohman110ed642010-09-01 01:45:53 +0000168 // Descend recursively, but not into PHI nodes outside the current loop.
169 // It's important to see the entire expression outside the loop to get
170 // choices that depend on addressing mode use right, although we won't
171 // consider references outside the loop in all cases.
172 // If User is already in Processed, we don't want to recurse into it again,
173 // but do want to record a second reference in the same instruction.
174 bool AddUserToIVUsers = false;
Andrew Trick36607352012-03-20 21:24:40 +0000175 if (LI->getLoopFor(User->getParent()) != L) {
Dan Gohman110ed642010-09-01 01:45:53 +0000176 if (isa<PHINode>(User) || Processed.count(User) ||
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000177 !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000178 DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n'
179 << " OF SCEV: " << *ISE << '\n');
180 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000181 }
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000182 } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) {
Dan Gohman110ed642010-09-01 01:45:53 +0000183 DEBUG(dbgs() << "FOUND USER: " << *User << '\n'
184 << " OF SCEV: " << *ISE << '\n');
185 AddUserToIVUsers = true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000186 }
Dan Gohman110ed642010-09-01 01:45:53 +0000187
188 if (AddUserToIVUsers) {
189 // Okay, we found a user that we cannot reduce.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000190 IVStrideUse &NewUse = AddUser(User, I);
Dan Gohmanc6f2ddf2011-05-27 18:42:33 +0000191 // Autodetect the post-inc loop set, populating NewUse.PostIncLoops.
192 // The regular return value here is discarded; instead of recording
193 // it, we just recompute it when we need it.
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000194 const SCEV *OriginalISE = ISE;
Dan Gohman110ed642010-09-01 01:45:53 +0000195 ISE = TransformForPostIncUse(NormalizeAutodetect,
196 ISE, User, I,
197 NewUse.PostIncLoops,
198 *SE, *DT);
Michael Zolotukhin66806ae2014-03-12 21:31:05 +0000199
200 // PostIncNormalization effectively simplifies the expression under
201 // pre-increment assumptions. Those assumptions (no wrapping) might not
202 // hold for the post-inc value. Catch such cases by making sure the
203 // transformation is invertible.
204 if (OriginalISE != ISE) {
205 const SCEV *DenormalizedISE =
206 TransformForPostIncUse(Denormalize, ISE, User, I,
207 NewUse.PostIncLoops, *SE, *DT);
208
209 // If we normalized the expression, but denormalization doesn't give the
210 // original one, discard this user.
211 if (OriginalISE != DenormalizedISE) {
212 DEBUG(dbgs() << " DISCARDING (NORMALIZATION ISN'T INVERTIBLE): "
213 << *ISE << '\n');
214 IVUses.pop_back();
215 return false;
216 }
217 }
Andrew Trickadfe72b2011-10-13 17:06:38 +0000218 DEBUG(if (SE->getSCEV(I) != ISE)
219 dbgs() << " NORMALIZED TO: " << *ISE << '\n');
Dan Gohman110ed642010-09-01 01:45:53 +0000220 }
221 }
222 return true;
Dan Gohmand76d71a2009-05-12 02:17:14 +0000223}
224
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000225bool IVUsers::AddUsersIfInteresting(Instruction *I) {
226 // SCEVExpander can only handle users that are dominated by simplified loop
227 // entries. Keep track of all loops that are only dominated by other simple
228 // loops so we don't traverse the domtree for each user.
229 SmallPtrSet<Loop*,16> SimpleLoopNests;
230
231 return AddUsersImpl(I, SimpleLoopNests);
232}
233
Andrew Trickfc4ccb22011-06-21 15:43:52 +0000234IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) {
235 IVUses.push_back(new IVStrideUse(this, User, Operand));
Dan Gohman110ed642010-09-01 01:45:53 +0000236 return IVUses.back();
Evan Cheng85a9f432009-11-12 07:35:05 +0000237}
238
Dan Gohmand76d71a2009-05-12 02:17:14 +0000239IVUsers::IVUsers()
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000240 : LoopPass(ID) {
241 initializeIVUsersPass(*PassRegistry::getPassRegistry());
Dan Gohmand76d71a2009-05-12 02:17:14 +0000242}
243
244void IVUsers::getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000245 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth73523022014-01-13 13:07:17 +0000246 AU.addRequired<DominatorTreeWrapperPass>();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000247 AU.addRequired<ScalarEvolution>();
248 AU.setPreservesAll();
249}
250
251bool IVUsers::runOnLoop(Loop *l, LPPassManager &LPM) {
252
253 L = l;
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000254 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth73523022014-01-13 13:07:17 +0000255 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000256 SE = &getAnalysis<ScalarEvolution>();
Mehdi Amini46a43552015-03-04 18:43:29 +0000257 DL = &L->getHeader()->getModule()->getDataLayout();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000258
259 // Find all uses of induction variables in this loop, and categorize
260 // them by stride. Start by finding all of the PHI nodes in the header for
261 // this loop. If they are induction variables, inspect their uses.
262 for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I)
Andrew Trick6d1bbb82012-03-22 17:47:33 +0000263 (void)AddUsersIfInteresting(I);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000264
265 return false;
266}
267
Dan Gohmand76d71a2009-05-12 02:17:14 +0000268void IVUsers::print(raw_ostream &OS, const Module *M) const {
269 OS << "IV Users for loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000270 L->getHeader()->printAsOperand(OS, false);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000271 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
272 OS << " with backedge-taken count "
273 << *SE->getBackedgeTakenCount(L);
274 }
275 OS << ":\n";
276
Dan Gohman45774ce2010-02-12 10:34:29 +0000277 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
278 E = IVUses.end(); UI != E; ++UI) {
279 OS << " ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000280 UI->getOperandValToReplace()->printAsOperand(OS, false);
Dan Gohmane637ff52010-04-19 21:48:58 +0000281 OS << " = " << *getReplacementExpr(*UI);
Dan Gohmand006ab92010-04-07 22:27:08 +0000282 for (PostIncLoopSet::const_iterator
283 I = UI->PostIncLoops.begin(),
284 E = UI->PostIncLoops.end(); I != E; ++I) {
285 OS << " (post-inc with loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000286 (*I)->getHeader()->printAsOperand(OS, false);
Dan Gohmand006ab92010-04-07 22:27:08 +0000287 OS << ")";
288 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000289 OS << " in ";
Richard Trieuc1485222014-06-21 02:43:02 +0000290 if (UI->getUser())
291 UI->getUser()->print(OS);
292 else
293 OS << "Printing <null> User";
Dan Gohman45774ce2010-02-12 10:34:29 +0000294 OS << '\n';
Dan Gohmand76d71a2009-05-12 02:17:14 +0000295 }
296}
297
Manman Ren49d684e2012-09-12 05:06:18 +0000298#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohmand76d71a2009-05-12 02:17:14 +0000299void IVUsers::dump() const {
David Greene069857e2009-12-23 20:20:46 +0000300 print(dbgs());
Dan Gohmand76d71a2009-05-12 02:17:14 +0000301}
Manman Renc3366cc2012-09-06 19:55:56 +0000302#endif
Dan Gohmand76d71a2009-05-12 02:17:14 +0000303
304void IVUsers::releaseMemory() {
Evan Cheng090ac082009-12-17 09:39:49 +0000305 Processed.clear();
Dan Gohman92c36962009-12-18 00:06:20 +0000306 IVUses.clear();
Dan Gohmand76d71a2009-05-12 02:17:14 +0000307}
308
Dan Gohmane637ff52010-04-19 21:48:58 +0000309/// getReplacementExpr - Return a SCEV expression which computes the
310/// value of the OperandValToReplace.
311const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const {
312 return SE->getSCEV(IU.getOperandValToReplace());
313}
314
315/// getExpr - Return the expression for the use.
316const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const {
317 return
318 TransformForPostIncUse(Normalize, getReplacementExpr(IU),
319 IU.getUser(), IU.getOperandValToReplace(),
320 const_cast<PostIncLoopSet &>(IU.getPostIncLoops()),
321 *SE, *DT);
322}
323
Dan Gohmand006ab92010-04-07 22:27:08 +0000324static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) {
325 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
326 if (AR->getLoop() == L)
327 return AR;
328 return findAddRecForLoop(AR->getStart(), L);
329 }
330
331 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
332 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
333 I != E; ++I)
334 if (const SCEVAddRecExpr *AR = findAddRecForLoop(*I, L))
335 return AR;
Craig Topper9f008862014-04-15 04:59:12 +0000336 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000337 }
338
Craig Topper9f008862014-04-15 04:59:12 +0000339 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000340}
341
Dan Gohmane637ff52010-04-19 21:48:58 +0000342const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const {
343 if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L))
344 return AR->getStepRecurrence(*SE);
Craig Topper9f008862014-04-15 04:59:12 +0000345 return nullptr;
Dan Gohmand006ab92010-04-07 22:27:08 +0000346}
347
348void IVStrideUse::transformToPostInc(const Loop *L) {
Dan Gohmand006ab92010-04-07 22:27:08 +0000349 PostIncLoops.insert(L);
350}
351
Dan Gohmand76d71a2009-05-12 02:17:14 +0000352void IVStrideUse::deleted() {
353 // Remove this user from the list.
Andrew Trick9a5b2422012-01-06 21:41:55 +0000354 Parent->Processed.erase(this->getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +0000355 Parent->IVUses.erase(this);
Dan Gohmand76d71a2009-05-12 02:17:14 +0000356 // this now dangles!
357}