blob: e6e0129fa447af64b7ee72f11b88eae3f3fee8d5 [file] [log] [blame]
Chris Lattner6148c022001-12-03 17:28:42 +00001//===- IndVarSimplify.cpp - Induction Variable Elimination ----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner6148c022001-12-03 17:28:42 +00009//
Chris Lattner40bf8b42004-04-02 20:24:31 +000010// This transformation analyzes and transforms the induction variables (and
11// computations derived from them) into simpler forms suitable for subsequent
12// analysis and transformation.
13//
Reid Spencer47a53ac2006-08-18 09:01:07 +000014// This transformation makes the following changes to each loop with an
Chris Lattner40bf8b42004-04-02 20:24:31 +000015// identifiable induction variable:
16// 1. All loops are transformed to have a SINGLE canonical induction variable
17// which starts at zero and steps by one.
18// 2. The canonical induction variable is guaranteed to be the first PHI node
19// in the loop header block.
Dan Gohmanea73f3c2009-06-14 22:38:41 +000020// 3. The canonical induction variable is guaranteed to be in a wide enough
21// type so that IV expressions need not be (directly) zero-extended or
22// sign-extended.
23// 4. Any pointer arithmetic recurrences are raised to use array subscripts.
Chris Lattner40bf8b42004-04-02 20:24:31 +000024//
25// If the trip count of a loop is computable, this pass also makes the following
26// changes:
27// 1. The exit condition for the loop is canonicalized to compare the
28// induction value against the exit value. This turns loops like:
29// 'for (i = 7; i*i < 1000; ++i)' into 'for (i = 0; i != 25; ++i)'
30// 2. Any use outside of the loop of an expression derived from the indvar
31// is changed to compute the derived value outside of the loop, eliminating
32// the dependence on the exit value of the induction variable. If the only
33// purpose of the loop is to compute the exit value of some derived
34// expression, this transformation will make the loop dead.
35//
36// This transformation should be followed by strength reduction after all of the
Dan Gohmanc2c4cbf2009-05-19 20:38:47 +000037// desired loop transformations have been performed.
Chris Lattner6148c022001-12-03 17:28:42 +000038//
39//===----------------------------------------------------------------------===//
40
Chris Lattner0e5f4992006-12-19 21:40:18 +000041#define DEBUG_TYPE "indvars"
Chris Lattner022103b2002-05-07 20:03:00 +000042#include "llvm/Transforms/Scalar.h"
Chris Lattner40bf8b42004-04-02 20:24:31 +000043#include "llvm/BasicBlock.h"
Chris Lattner59fdaee2004-04-15 15:21:43 +000044#include "llvm/Constants.h"
Chris Lattner18b3c972003-12-22 05:02:01 +000045#include "llvm/Instructions.h"
Devang Patel7b9f6b12010-03-15 22:23:03 +000046#include "llvm/IntrinsicInst.h"
Owen Andersond672ecb2009-07-03 00:17:18 +000047#include "llvm/LLVMContext.h"
Chris Lattner40bf8b42004-04-02 20:24:31 +000048#include "llvm/Type.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000049#include "llvm/Analysis/Dominators.h"
50#include "llvm/Analysis/IVUsers.h"
Nate Begeman36f891b2005-07-30 00:12:19 +000051#include "llvm/Analysis/ScalarEvolutionExpander.h"
John Criswell47df12d2003-12-18 17:19:19 +000052#include "llvm/Analysis/LoopInfo.h"
Devang Patel5ee99972007-03-07 06:39:01 +000053#include "llvm/Analysis/LoopPass.h"
Chris Lattner455889a2002-02-12 22:39:50 +000054#include "llvm/Support/CFG.h"
Chris Lattnerbdff5482009-08-23 04:37:46 +000055#include "llvm/Support/CommandLine.h"
Chris Lattneree4f13a2007-01-07 01:14:12 +000056#include "llvm/Support/Debug.h"
Chris Lattnerbdff5482009-08-23 04:37:46 +000057#include "llvm/Support/raw_ostream.h"
John Criswell47df12d2003-12-18 17:19:19 +000058#include "llvm/Transforms/Utils/Local.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000059#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Reid Spencera54b7cb2007-01-12 07:05:14 +000060#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000061#include "llvm/ADT/Statistic.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000062#include "llvm/ADT/STLExtras.h"
John Criswell47df12d2003-12-18 17:19:19 +000063using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000064
Chris Lattner0e5f4992006-12-19 21:40:18 +000065STATISTIC(NumRemoved , "Number of aux indvars removed");
Chris Lattner0e5f4992006-12-19 21:40:18 +000066STATISTIC(NumInserted, "Number of canonical indvars added");
67STATISTIC(NumReplaced, "Number of exit values replaced");
68STATISTIC(NumLFTR , "Number of loop exit tests replaced");
Chris Lattner3324e712003-12-22 03:58:44 +000069
Chris Lattner0e5f4992006-12-19 21:40:18 +000070namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000071 class IndVarSimplify : public LoopPass {
Dan Gohman81db61a2009-05-12 02:17:14 +000072 IVUsers *IU;
Chris Lattner40bf8b42004-04-02 20:24:31 +000073 LoopInfo *LI;
74 ScalarEvolution *SE;
Dan Gohmande53dc02009-06-27 05:16:57 +000075 DominatorTree *DT;
Chris Lattner15cad752003-12-23 07:47:09 +000076 bool Changed;
Chris Lattner3324e712003-12-22 03:58:44 +000077 public:
Devang Patel794fd752007-05-01 21:15:47 +000078
Dan Gohman5668cf72009-07-15 01:26:32 +000079 static char ID; // Pass identification, replacement for typeid
80 IndVarSimplify() : LoopPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000081
Dan Gohman5668cf72009-07-15 01:26:32 +000082 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Dan Gohman60f8a632009-02-17 20:49:49 +000083
Dan Gohman5668cf72009-07-15 01:26:32 +000084 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
85 AU.addRequired<DominatorTree>();
86 AU.addRequired<LoopInfo>();
87 AU.addRequired<ScalarEvolution>();
88 AU.addRequiredID(LoopSimplifyID);
89 AU.addRequiredID(LCSSAID);
90 AU.addRequired<IVUsers>();
91 AU.addPreserved<ScalarEvolution>();
92 AU.addPreservedID(LoopSimplifyID);
93 AU.addPreservedID(LCSSAID);
94 AU.addPreserved<IVUsers>();
95 AU.setPreservesCFG();
96 }
Chris Lattner15cad752003-12-23 07:47:09 +000097
Chris Lattner40bf8b42004-04-02 20:24:31 +000098 private:
Devang Patel5ee99972007-03-07 06:39:01 +000099
Dan Gohman931e3452010-04-12 02:21:50 +0000100 void EliminateIVComparisons();
Dan Gohman60f8a632009-02-17 20:49:49 +0000101 void RewriteNonIntegerIVs(Loop *L);
102
Dan Gohman0bba49c2009-07-07 17:06:11 +0000103 ICmpInst *LinearFunctionTestReplace(Loop *L, const SCEV *BackedgeTakenCount,
Dan Gohmana5758712009-02-17 15:57:39 +0000104 Value *IndVar,
Dan Gohmanc2390b12009-02-12 22:19:27 +0000105 BasicBlock *ExitingBlock,
106 BranchInst *BI,
Dan Gohman15cab282009-02-23 23:20:35 +0000107 SCEVExpander &Rewriter);
Dan Gohman454d26d2010-02-22 04:11:59 +0000108 void RewriteLoopExitValues(Loop *L, SCEVExpander &Rewriter);
Chris Lattner40bf8b42004-04-02 20:24:31 +0000109
Dan Gohman454d26d2010-02-22 04:11:59 +0000110 void RewriteIVExpressions(Loop *L, SCEVExpander &Rewriter);
Devang Pateld22a8492008-09-09 21:41:07 +0000111
Dan Gohman667d7872009-06-26 22:53:46 +0000112 void SinkUnusedInvariants(Loop *L);
Dan Gohman81db61a2009-05-12 02:17:14 +0000113
114 void HandleFloatingPointIV(Loop *L, PHINode *PH);
Chris Lattner3324e712003-12-22 03:58:44 +0000115 };
Chris Lattner5e761402002-09-10 05:24:05 +0000116}
Chris Lattner394437f2001-12-04 04:32:29 +0000117
Dan Gohman844731a2008-05-13 00:00:25 +0000118char IndVarSimplify::ID = 0;
119static RegisterPass<IndVarSimplify>
120X("indvars", "Canonicalize Induction Variables");
121
Daniel Dunbar394f0442008-10-22 23:32:42 +0000122Pass *llvm::createIndVarSimplifyPass() {
Chris Lattner3324e712003-12-22 03:58:44 +0000123 return new IndVarSimplify();
Chris Lattner394437f2001-12-04 04:32:29 +0000124}
125
Chris Lattner40bf8b42004-04-02 20:24:31 +0000126/// LinearFunctionTestReplace - This method rewrites the exit condition of the
Chris Lattner59fdaee2004-04-15 15:21:43 +0000127/// loop to be a canonical != comparison against the incremented loop induction
128/// variable. This pass is able to rewrite the exit tests of any loop where the
129/// SCEV analysis can determine a loop-invariant trip count of the loop, which
130/// is actually a much broader range than just linear tests.
Dan Gohman81db61a2009-05-12 02:17:14 +0000131ICmpInst *IndVarSimplify::LinearFunctionTestReplace(Loop *L,
Dan Gohman0bba49c2009-07-07 17:06:11 +0000132 const SCEV *BackedgeTakenCount,
Dan Gohmanc2390b12009-02-12 22:19:27 +0000133 Value *IndVar,
134 BasicBlock *ExitingBlock,
135 BranchInst *BI,
Dan Gohman15cab282009-02-23 23:20:35 +0000136 SCEVExpander &Rewriter) {
Chris Lattnerd2440572004-04-15 20:26:22 +0000137 // If the exiting block is not the same as the backedge block, we must compare
138 // against the preincremented value, otherwise we prefer to compare against
139 // the post-incremented value.
Dan Gohmanc2390b12009-02-12 22:19:27 +0000140 Value *CmpIndVar;
Dan Gohman0bba49c2009-07-07 17:06:11 +0000141 const SCEV *RHS = BackedgeTakenCount;
Dan Gohmanc2390b12009-02-12 22:19:27 +0000142 if (ExitingBlock == L->getLoopLatch()) {
Dan Gohman46bdfb02009-02-24 18:55:53 +0000143 // Add one to the "backedge-taken" count to get the trip count.
144 // If this addition may overflow, we have to be more pessimistic and
145 // cast the induction variable before doing the add.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000146 const SCEV *Zero = SE->getIntegerSCEV(0, BackedgeTakenCount->getType());
147 const SCEV *N =
Dan Gohman46bdfb02009-02-24 18:55:53 +0000148 SE->getAddExpr(BackedgeTakenCount,
149 SE->getIntegerSCEV(1, BackedgeTakenCount->getType()));
Dan Gohmanc2390b12009-02-12 22:19:27 +0000150 if ((isa<SCEVConstant>(N) && !N->isZero()) ||
Dan Gohman3948d0b2010-04-11 19:27:13 +0000151 SE->isLoopEntryGuardedByCond(L, ICmpInst::ICMP_NE, N, Zero)) {
Dan Gohmanc2390b12009-02-12 22:19:27 +0000152 // No overflow. Cast the sum.
Dan Gohman46bdfb02009-02-24 18:55:53 +0000153 RHS = SE->getTruncateOrZeroExtend(N, IndVar->getType());
Dan Gohmanc2390b12009-02-12 22:19:27 +0000154 } else {
155 // Potential overflow. Cast before doing the add.
Dan Gohman46bdfb02009-02-24 18:55:53 +0000156 RHS = SE->getTruncateOrZeroExtend(BackedgeTakenCount,
157 IndVar->getType());
158 RHS = SE->getAddExpr(RHS,
159 SE->getIntegerSCEV(1, IndVar->getType()));
Dan Gohmanc2390b12009-02-12 22:19:27 +0000160 }
Chris Lattner59fdaee2004-04-15 15:21:43 +0000161
Dan Gohman46bdfb02009-02-24 18:55:53 +0000162 // The BackedgeTaken expression contains the number of times that the
163 // backedge branches to the loop header. This is one less than the
164 // number of times the loop executes, so use the incremented indvar.
Dan Gohmanc2390b12009-02-12 22:19:27 +0000165 CmpIndVar = L->getCanonicalInductionVariableIncrement();
Chris Lattnerd2440572004-04-15 20:26:22 +0000166 } else {
167 // We have to use the preincremented value...
Dan Gohman46bdfb02009-02-24 18:55:53 +0000168 RHS = SE->getTruncateOrZeroExtend(BackedgeTakenCount,
169 IndVar->getType());
Dan Gohmanc2390b12009-02-12 22:19:27 +0000170 CmpIndVar = IndVar;
Chris Lattnerd2440572004-04-15 20:26:22 +0000171 }
Chris Lattner59fdaee2004-04-15 15:21:43 +0000172
Dan Gohman667d7872009-06-26 22:53:46 +0000173 // Expand the code for the iteration count.
Dan Gohman40a5a1b2009-06-24 01:18:18 +0000174 assert(RHS->isLoopInvariant(L) &&
175 "Computed iteration count is not loop invariant!");
Dan Gohman667d7872009-06-26 22:53:46 +0000176 Value *ExitCnt = Rewriter.expandCodeFor(RHS, IndVar->getType(), BI);
Chris Lattner40bf8b42004-04-02 20:24:31 +0000177
Reid Spencere4d87aa2006-12-23 06:05:41 +0000178 // Insert a new icmp_ne or icmp_eq instruction before the branch.
179 ICmpInst::Predicate Opcode;
Chris Lattner40bf8b42004-04-02 20:24:31 +0000180 if (L->contains(BI->getSuccessor(0)))
Reid Spencere4d87aa2006-12-23 06:05:41 +0000181 Opcode = ICmpInst::ICMP_NE;
Chris Lattner40bf8b42004-04-02 20:24:31 +0000182 else
Reid Spencere4d87aa2006-12-23 06:05:41 +0000183 Opcode = ICmpInst::ICMP_EQ;
Chris Lattner40bf8b42004-04-02 20:24:31 +0000184
David Greenef67ef312010-01-05 01:27:06 +0000185 DEBUG(dbgs() << "INDVARS: Rewriting loop exit condition to:\n"
Chris Lattnerbdff5482009-08-23 04:37:46 +0000186 << " LHS:" << *CmpIndVar << '\n'
187 << " op:\t"
188 << (Opcode == ICmpInst::ICMP_NE ? "!=" : "==") << "\n"
189 << " RHS:\t" << *RHS << "\n");
Dan Gohmanc2390b12009-02-12 22:19:27 +0000190
Owen Anderson333c4002009-07-09 23:48:35 +0000191 ICmpInst *Cond = new ICmpInst(BI, Opcode, CmpIndVar, ExitCnt, "exitcond");
Dan Gohman81db61a2009-05-12 02:17:14 +0000192
Dan Gohman24440802010-02-22 02:07:36 +0000193 Value *OrigCond = BI->getCondition();
Dan Gohman95bdbfa2009-05-24 19:11:38 +0000194 // It's tempting to use replaceAllUsesWith here to fully replace the old
195 // comparison, but that's not immediately safe, since users of the old
196 // comparison may not be dominated by the new comparison. Instead, just
197 // update the branch to use the new comparison; in the common case this
198 // will make old comparison dead.
199 BI->setCondition(Cond);
Dan Gohman81db61a2009-05-12 02:17:14 +0000200 RecursivelyDeleteTriviallyDeadInstructions(OrigCond);
201
Chris Lattner40bf8b42004-04-02 20:24:31 +0000202 ++NumLFTR;
203 Changed = true;
Dan Gohman81db61a2009-05-12 02:17:14 +0000204 return Cond;
Chris Lattner40bf8b42004-04-02 20:24:31 +0000205}
206
Chris Lattner40bf8b42004-04-02 20:24:31 +0000207/// RewriteLoopExitValues - Check to see if this loop has a computable
208/// loop-invariant execution count. If so, this means that we can compute the
209/// final value of any expressions that are recurrent in the loop, and
210/// substitute the exit values from the loop into any instructions outside of
211/// the loop that use the final values of the current expressions.
Dan Gohman81db61a2009-05-12 02:17:14 +0000212///
213/// This is mostly redundant with the regular IndVarSimplify activities that
214/// happen later, except that it's more powerful in some cases, because it's
215/// able to brute-force evaluate arbitrary instructions as long as they have
216/// constant operands at the beginning of the loop.
Dan Gohman890f92b2009-04-18 17:56:28 +0000217void IndVarSimplify::RewriteLoopExitValues(Loop *L,
Dan Gohman667d7872009-06-26 22:53:46 +0000218 SCEVExpander &Rewriter) {
Dan Gohman81db61a2009-05-12 02:17:14 +0000219 // Verify the input to the pass in already in LCSSA form.
Dan Gohmanbbf81d82010-03-10 19:38:49 +0000220 assert(L->isLCSSAForm(*DT));
Dan Gohman81db61a2009-05-12 02:17:14 +0000221
Devang Patelb7211a22007-08-21 00:31:24 +0000222 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner9f3d7382007-03-04 03:43:23 +0000223 L->getUniqueExitBlocks(ExitBlocks);
Misha Brukmanfd939082005-04-21 23:48:37 +0000224
Chris Lattner9f3d7382007-03-04 03:43:23 +0000225 // Find all values that are computed inside the loop, but used outside of it.
226 // Because of LCSSA, these values will only occur in LCSSA PHI Nodes. Scan
227 // the exit blocks of the loop to find them.
228 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
229 BasicBlock *ExitBB = ExitBlocks[i];
Dan Gohmancafb8132009-02-17 19:13:57 +0000230
Chris Lattner9f3d7382007-03-04 03:43:23 +0000231 // If there are no PHI nodes in this exit block, then no values defined
232 // inside the loop are used on this path, skip it.
233 PHINode *PN = dyn_cast<PHINode>(ExitBB->begin());
234 if (!PN) continue;
Dan Gohmancafb8132009-02-17 19:13:57 +0000235
Chris Lattner9f3d7382007-03-04 03:43:23 +0000236 unsigned NumPreds = PN->getNumIncomingValues();
Dan Gohmancafb8132009-02-17 19:13:57 +0000237
Chris Lattner9f3d7382007-03-04 03:43:23 +0000238 // Iterate over all of the PHI nodes.
239 BasicBlock::iterator BBI = ExitBB->begin();
240 while ((PN = dyn_cast<PHINode>(BBI++))) {
Torok Edwin3790fb02009-05-24 19:36:09 +0000241 if (PN->use_empty())
242 continue; // dead use, don't replace it
Dan Gohman814f2b22010-02-18 21:34:02 +0000243
244 // SCEV only supports integer expressions for now.
245 if (!PN->getType()->isIntegerTy() && !PN->getType()->isPointerTy())
246 continue;
247
Dale Johannesen45a2d7d2010-02-19 07:14:22 +0000248 // It's necessary to tell ScalarEvolution about this explicitly so that
249 // it can walk the def-use list and forget all SCEVs, as it may not be
250 // watching the PHI itself. Once the new exit value is in place, there
251 // may not be a def-use connection between the loop and every instruction
252 // which got a SCEVAddRecExpr for that loop.
253 SE->forgetValue(PN);
254
Chris Lattner9f3d7382007-03-04 03:43:23 +0000255 // Iterate over all of the values in all the PHI nodes.
256 for (unsigned i = 0; i != NumPreds; ++i) {
257 // If the value being merged in is not integer or is not defined
258 // in the loop, skip it.
259 Value *InVal = PN->getIncomingValue(i);
Dan Gohman814f2b22010-02-18 21:34:02 +0000260 if (!isa<Instruction>(InVal))
Chris Lattner9f3d7382007-03-04 03:43:23 +0000261 continue;
Chris Lattner40bf8b42004-04-02 20:24:31 +0000262
Chris Lattner9f3d7382007-03-04 03:43:23 +0000263 // If this pred is for a subloop, not L itself, skip it.
Dan Gohmancafb8132009-02-17 19:13:57 +0000264 if (LI->getLoopFor(PN->getIncomingBlock(i)) != L)
Chris Lattner9f3d7382007-03-04 03:43:23 +0000265 continue; // The Block is in a subloop, skip it.
266
267 // Check that InVal is defined in the loop.
268 Instruction *Inst = cast<Instruction>(InVal);
Dan Gohman92329c72009-12-18 01:24:09 +0000269 if (!L->contains(Inst))
Chris Lattner9f3d7382007-03-04 03:43:23 +0000270 continue;
Dan Gohmancafb8132009-02-17 19:13:57 +0000271
Chris Lattner9f3d7382007-03-04 03:43:23 +0000272 // Okay, this instruction has a user outside of the current loop
273 // and varies predictably *inside* the loop. Evaluate the value it
274 // contains when the loop exits, if possible.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000275 const SCEV *ExitValue = SE->getSCEVAtScope(Inst, L->getParentLoop());
Dan Gohmand594e6f2009-05-24 23:25:42 +0000276 if (!ExitValue->isLoopInvariant(L))
Chris Lattner9f3d7382007-03-04 03:43:23 +0000277 continue;
Chris Lattner9caed542007-03-04 01:00:28 +0000278
Chris Lattner9f3d7382007-03-04 03:43:23 +0000279 Changed = true;
280 ++NumReplaced;
Dan Gohmancafb8132009-02-17 19:13:57 +0000281
Dan Gohman667d7872009-06-26 22:53:46 +0000282 Value *ExitVal = Rewriter.expandCodeFor(ExitValue, PN->getType(), Inst);
Dan Gohmancafb8132009-02-17 19:13:57 +0000283
David Greenef67ef312010-01-05 01:27:06 +0000284 DEBUG(dbgs() << "INDVARS: RLEV: AfterLoopVal = " << *ExitVal << '\n'
Chris Lattnerbdff5482009-08-23 04:37:46 +0000285 << " LoopVal = " << *Inst << "\n");
Chris Lattner9f3d7382007-03-04 03:43:23 +0000286
287 PN->setIncomingValue(i, ExitVal);
Dan Gohmancafb8132009-02-17 19:13:57 +0000288
Dan Gohman81db61a2009-05-12 02:17:14 +0000289 // If this instruction is dead now, delete it.
290 RecursivelyDeleteTriviallyDeadInstructions(Inst);
Dan Gohmancafb8132009-02-17 19:13:57 +0000291
Dan Gohman65d1e2b2009-07-14 01:09:02 +0000292 if (NumPreds == 1) {
293 // Completely replace a single-pred PHI. This is safe, because the
294 // NewVal won't be variant in the loop, so we don't need an LCSSA phi
295 // node anymore.
Chris Lattner9f3d7382007-03-04 03:43:23 +0000296 PN->replaceAllUsesWith(ExitVal);
Dan Gohman81db61a2009-05-12 02:17:14 +0000297 RecursivelyDeleteTriviallyDeadInstructions(PN);
Chris Lattnerc9838f22007-03-03 22:48:48 +0000298 }
299 }
Dan Gohman65d1e2b2009-07-14 01:09:02 +0000300 if (NumPreds != 1) {
Dan Gohman667d7872009-06-26 22:53:46 +0000301 // Clone the PHI and delete the original one. This lets IVUsers and
302 // any other maps purge the original user from their records.
Devang Patel50b6e332009-10-27 22:16:29 +0000303 PHINode *NewPN = cast<PHINode>(PN->clone());
Dan Gohman667d7872009-06-26 22:53:46 +0000304 NewPN->takeName(PN);
305 NewPN->insertBefore(PN);
306 PN->replaceAllUsesWith(NewPN);
307 PN->eraseFromParent();
308 }
Chris Lattnerc9838f22007-03-03 22:48:48 +0000309 }
310 }
Dan Gohman472fdf72010-03-20 03:53:53 +0000311
312 // The insertion point instruction may have been deleted; clear it out
313 // so that the rewriter doesn't trip over it later.
314 Rewriter.clearInsertPoint();
Chris Lattner40bf8b42004-04-02 20:24:31 +0000315}
316
Dan Gohman60f8a632009-02-17 20:49:49 +0000317void IndVarSimplify::RewriteNonIntegerIVs(Loop *L) {
Dan Gohman2d1be872009-04-16 03:18:22 +0000318 // First step. Check to see if there are any floating-point recurrences.
Chris Lattner40bf8b42004-04-02 20:24:31 +0000319 // If there are, change them into integer recurrences, permitting analysis by
320 // the SCEV routines.
321 //
322 BasicBlock *Header = L->getHeader();
Misha Brukmanfd939082005-04-21 23:48:37 +0000323
Dan Gohman81db61a2009-05-12 02:17:14 +0000324 SmallVector<WeakVH, 8> PHIs;
325 for (BasicBlock::iterator I = Header->begin();
326 PHINode *PN = dyn_cast<PHINode>(I); ++I)
327 PHIs.push_back(PN);
328
329 for (unsigned i = 0, e = PHIs.size(); i != e; ++i)
330 if (PHINode *PN = dyn_cast_or_null<PHINode>(PHIs[i]))
331 HandleFloatingPointIV(L, PN);
Chris Lattner40bf8b42004-04-02 20:24:31 +0000332
Dan Gohman2d1be872009-04-16 03:18:22 +0000333 // If the loop previously had floating-point IV, ScalarEvolution
Dan Gohman60f8a632009-02-17 20:49:49 +0000334 // may not have been able to compute a trip count. Now that we've done some
335 // re-writing, the trip count may be computable.
336 if (Changed)
Dan Gohman4c7279a2009-10-31 15:04:55 +0000337 SE->forgetLoop(L);
Dale Johannesenc671d892009-04-15 23:31:51 +0000338}
339
Dan Gohman931e3452010-04-12 02:21:50 +0000340void IndVarSimplify::EliminateIVComparisons() {
Dan Gohmandd842e32010-04-12 07:29:15 +0000341 SmallVector<WeakVH, 16> DeadInsts;
342
Dan Gohman931e3452010-04-12 02:21:50 +0000343 // Look for ICmp users.
Dan Gohmandd842e32010-04-12 07:29:15 +0000344 for (IVUsers::iterator I = IU->begin(), E = IU->end(); I != E; ++I) {
345 IVStrideUse &UI = *I;
Dan Gohman931e3452010-04-12 02:21:50 +0000346 ICmpInst *ICmp = dyn_cast<ICmpInst>(UI.getUser());
347 if (!ICmp) continue;
348
349 bool Swapped = UI.getOperandValToReplace() == ICmp->getOperand(1);
350 ICmpInst::Predicate Pred = ICmp->getPredicate();
351 if (Swapped) Pred = ICmpInst::getSwappedPredicate(Pred);
352
353 // Get the SCEVs for the ICmp operands.
354 const SCEV *S = IU->getReplacementExpr(UI);
355 const SCEV *X = SE->getSCEV(ICmp->getOperand(!Swapped));
356
357 // Simplify unnecessary loops away.
358 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent());
359 S = SE->getSCEVAtScope(S, ICmpLoop);
360 X = SE->getSCEVAtScope(X, ICmpLoop);
361
362 // If the condition is always true or always false, replace it with
363 // a constant value.
364 if (SE->isKnownPredicate(Pred, S, X))
365 ICmp->replaceAllUsesWith(ConstantInt::getTrue(ICmp->getContext()));
366 else if (SE->isKnownPredicate(ICmpInst::getInversePredicate(Pred), S, X))
367 ICmp->replaceAllUsesWith(ConstantInt::getFalse(ICmp->getContext()));
368 else
369 continue;
370
371 DEBUG(dbgs() << "INDVARS: Eliminated comparison: " << *ICmp << '\n');
Dan Gohmandd842e32010-04-12 07:29:15 +0000372 DeadInsts.push_back(ICmp);
Dan Gohman931e3452010-04-12 02:21:50 +0000373 }
Dan Gohmandd842e32010-04-12 07:29:15 +0000374
375 // Now that we're done iterating through lists, clean up any instructions
376 // which are now dead.
377 while (!DeadInsts.empty())
378 if (Instruction *Inst =
379 dyn_cast_or_null<Instruction>(DeadInsts.pop_back_val()))
380 RecursivelyDeleteTriviallyDeadInstructions(Inst);
Dan Gohman931e3452010-04-12 02:21:50 +0000381}
382
Dan Gohmanc2390b12009-02-12 22:19:27 +0000383bool IndVarSimplify::runOnLoop(Loop *L, LPPassManager &LPM) {
Dan Gohman81db61a2009-05-12 02:17:14 +0000384 IU = &getAnalysis<IVUsers>();
Devang Patel5ee99972007-03-07 06:39:01 +0000385 LI = &getAnalysis<LoopInfo>();
386 SE = &getAnalysis<ScalarEvolution>();
Dan Gohmande53dc02009-06-27 05:16:57 +0000387 DT = &getAnalysis<DominatorTree>();
Devang Patel5ee99972007-03-07 06:39:01 +0000388 Changed = false;
Dan Gohman60f8a632009-02-17 20:49:49 +0000389
Dan Gohman2d1be872009-04-16 03:18:22 +0000390 // If there are any floating-point recurrences, attempt to
Dan Gohman60f8a632009-02-17 20:49:49 +0000391 // transform them to use integer recurrences.
392 RewriteNonIntegerIVs(L);
393
Dan Gohman81db61a2009-05-12 02:17:14 +0000394 BasicBlock *ExitingBlock = L->getExitingBlock(); // may be null
Dan Gohman0bba49c2009-07-07 17:06:11 +0000395 const SCEV *BackedgeTakenCount = SE->getBackedgeTakenCount(L);
Chris Lattner9caed542007-03-04 01:00:28 +0000396
Dan Gohman667d7872009-06-26 22:53:46 +0000397 // Create a rewriter object which we'll use to transform the code with.
398 SCEVExpander Rewriter(*SE);
399
Chris Lattner40bf8b42004-04-02 20:24:31 +0000400 // Check to see if this loop has a computable loop-invariant execution count.
401 // If so, this means that we can compute the final value of any expressions
402 // that are recurrent in the loop, and substitute the exit values from the
403 // loop into any instructions outside of the loop that use the final values of
404 // the current expressions.
Chris Lattner3dec1f22002-05-10 15:38:35 +0000405 //
Dan Gohman46bdfb02009-02-24 18:55:53 +0000406 if (!isa<SCEVCouldNotCompute>(BackedgeTakenCount))
Dan Gohman454d26d2010-02-22 04:11:59 +0000407 RewriteLoopExitValues(L, Rewriter);
Chris Lattner6148c022001-12-03 17:28:42 +0000408
Dan Gohman81db61a2009-05-12 02:17:14 +0000409 // Compute the type of the largest recurrence expression, and decide whether
410 // a canonical induction variable should be inserted.
Dan Gohmanc2390b12009-02-12 22:19:27 +0000411 const Type *LargestType = 0;
Dan Gohman81db61a2009-05-12 02:17:14 +0000412 bool NeedCannIV = false;
Dan Gohman46bdfb02009-02-24 18:55:53 +0000413 if (!isa<SCEVCouldNotCompute>(BackedgeTakenCount)) {
414 LargestType = BackedgeTakenCount->getType();
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000415 LargestType = SE->getEffectiveSCEVType(LargestType);
Dan Gohman81db61a2009-05-12 02:17:14 +0000416 // If we have a known trip count and a single exit block, we'll be
417 // rewriting the loop exit test condition below, which requires a
418 // canonical induction variable.
419 if (ExitingBlock)
420 NeedCannIV = true;
Chris Lattnerf50af082004-04-17 18:08:33 +0000421 }
Dan Gohman572645c2010-02-12 10:34:29 +0000422 for (IVUsers::const_iterator I = IU->begin(), E = IU->end(); I != E; ++I) {
423 const Type *Ty =
424 SE->getEffectiveSCEVType(I->getOperandValToReplace()->getType());
Dan Gohmanc2390b12009-02-12 22:19:27 +0000425 if (!LargestType ||
Dan Gohman81db61a2009-05-12 02:17:14 +0000426 SE->getTypeSizeInBits(Ty) >
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000427 SE->getTypeSizeInBits(LargestType))
Dan Gohman81db61a2009-05-12 02:17:14 +0000428 LargestType = Ty;
Dan Gohman572645c2010-02-12 10:34:29 +0000429 NeedCannIV = true;
Chris Lattner6148c022001-12-03 17:28:42 +0000430 }
431
Dan Gohmanf451cb82010-02-10 16:03:48 +0000432 // Now that we know the largest of the induction variable expressions
Dan Gohman81db61a2009-05-12 02:17:14 +0000433 // in this loop, insert a canonical induction variable of the largest size.
Dan Gohmanc2390b12009-02-12 22:19:27 +0000434 Value *IndVar = 0;
Dan Gohman81db61a2009-05-12 02:17:14 +0000435 if (NeedCannIV) {
Dan Gohman85669632010-02-25 06:57:05 +0000436 // Check to see if the loop already has any canonical-looking induction
437 // variables. If any are present and wider than the planned canonical
438 // induction variable, temporarily remove them, so that the Rewriter
439 // doesn't attempt to reuse them.
440 SmallVector<PHINode *, 2> OldCannIVs;
441 while (PHINode *OldCannIV = L->getCanonicalInductionVariable()) {
Dan Gohman4d8414f2009-06-13 16:25:49 +0000442 if (SE->getTypeSizeInBits(OldCannIV->getType()) >
443 SE->getTypeSizeInBits(LargestType))
444 OldCannIV->removeFromParent();
445 else
Dan Gohman85669632010-02-25 06:57:05 +0000446 break;
447 OldCannIVs.push_back(OldCannIV);
Dan Gohman4d8414f2009-06-13 16:25:49 +0000448 }
449
Dan Gohman667d7872009-06-26 22:53:46 +0000450 IndVar = Rewriter.getOrInsertCanonicalInductionVariable(L, LargestType);
Dan Gohman4d8414f2009-06-13 16:25:49 +0000451
Dan Gohmanc2390b12009-02-12 22:19:27 +0000452 ++NumInserted;
453 Changed = true;
David Greenef67ef312010-01-05 01:27:06 +0000454 DEBUG(dbgs() << "INDVARS: New CanIV: " << *IndVar << '\n');
Dan Gohman4d8414f2009-06-13 16:25:49 +0000455
456 // Now that the official induction variable is established, reinsert
Dan Gohman85669632010-02-25 06:57:05 +0000457 // any old canonical-looking variables after it so that the IR remains
458 // consistent. They will be deleted as part of the dead-PHI deletion at
Dan Gohman4d8414f2009-06-13 16:25:49 +0000459 // the end of the pass.
Dan Gohman85669632010-02-25 06:57:05 +0000460 while (!OldCannIVs.empty()) {
461 PHINode *OldCannIV = OldCannIVs.pop_back_val();
462 OldCannIV->insertBefore(L->getHeader()->getFirstNonPHI());
463 }
Dan Gohmand19534a2007-06-15 14:38:12 +0000464 }
Chris Lattner15cad752003-12-23 07:47:09 +0000465
Dan Gohmanc2390b12009-02-12 22:19:27 +0000466 // If we have a trip count expression, rewrite the loop's exit condition
467 // using it. We can currently only handle loops with a single exit.
Dan Gohman81db61a2009-05-12 02:17:14 +0000468 ICmpInst *NewICmp = 0;
Dan Gohman85669632010-02-25 06:57:05 +0000469 if (!isa<SCEVCouldNotCompute>(BackedgeTakenCount) &&
470 !BackedgeTakenCount->isZero() &&
471 ExitingBlock) {
Dan Gohman81db61a2009-05-12 02:17:14 +0000472 assert(NeedCannIV &&
473 "LinearFunctionTestReplace requires a canonical induction variable");
Dan Gohman931e3452010-04-12 02:21:50 +0000474
Dan Gohmanc2390b12009-02-12 22:19:27 +0000475 // Can't rewrite non-branch yet.
Dan Gohman931e3452010-04-12 02:21:50 +0000476 if (BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator())) {
477 // Eliminate comparisons which are always true or always false, due to
478 // the known backedge-taken count. This may include comparisons which
479 // are currently controlling (part of) the loop exit, so we can only do
480 // it when we know we're going to insert our own loop exit code.
481 EliminateIVComparisons();
482
483 // Insert new loop exit code.
Dan Gohman81db61a2009-05-12 02:17:14 +0000484 NewICmp = LinearFunctionTestReplace(L, BackedgeTakenCount, IndVar,
485 ExitingBlock, BI, Rewriter);
Dan Gohman931e3452010-04-12 02:21:50 +0000486 }
Chris Lattnerfcb81f52004-04-22 14:59:40 +0000487 }
488
Torok Edwin3d431382009-05-24 20:08:21 +0000489 // Rewrite IV-derived expressions. Clears the rewriter cache.
Dan Gohman454d26d2010-02-22 04:11:59 +0000490 RewriteIVExpressions(L, Rewriter);
Dan Gohmanc2390b12009-02-12 22:19:27 +0000491
Dan Gohman667d7872009-06-26 22:53:46 +0000492 // The Rewriter may not be used from this point on.
Torok Edwin3d431382009-05-24 20:08:21 +0000493
Dan Gohman81db61a2009-05-12 02:17:14 +0000494 // Loop-invariant instructions in the preheader that aren't used in the
495 // loop may be sunk below the loop to reduce register pressure.
Dan Gohman667d7872009-06-26 22:53:46 +0000496 SinkUnusedInvariants(L);
Dan Gohman81db61a2009-05-12 02:17:14 +0000497
498 // For completeness, inform IVUsers of the IV use in the newly-created
499 // loop exit test instruction.
500 if (NewICmp)
501 IU->AddUsersIfInteresting(cast<Instruction>(NewICmp->getOperand(0)));
502
503 // Clean up dead instructions.
Dan Gohman9fff2182010-01-05 16:31:45 +0000504 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohman81db61a2009-05-12 02:17:14 +0000505 // Check a post-condition.
Dan Gohmanbbf81d82010-03-10 19:38:49 +0000506 assert(L->isLCSSAForm(*DT) && "Indvars did not leave the loop in lcssa form!");
Devang Patel5ee99972007-03-07 06:39:01 +0000507 return Changed;
Chris Lattner6148c022001-12-03 17:28:42 +0000508}
Devang Pateld22a8492008-09-09 21:41:07 +0000509
Dan Gohman448db1c2010-04-07 22:27:08 +0000510// FIXME: It is an extremely bad idea to indvar substitute anything more
511// complex than affine induction variables. Doing so will put expensive
512// polynomial evaluations inside of the loop, and the str reduction pass
513// currently can only reduce affine polynomials. For now just disable
514// indvar subst on anything more complex than an affine addrec, unless
515// it can be expanded to a trivial value.
516static bool isSafe(const SCEV *S, const Loop *L) {
517 // Loop-invariant values are safe.
518 if (S->isLoopInvariant(L)) return true;
519
520 // Affine addrecs are safe. Non-affine are not, because LSR doesn't know how
521 // to transform them into efficient code.
522 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
523 return AR->isAffine();
524
525 // An add is safe it all its operands are safe.
526 if (const SCEVCommutativeExpr *Commutative = dyn_cast<SCEVCommutativeExpr>(S)) {
527 for (SCEVCommutativeExpr::op_iterator I = Commutative->op_begin(),
528 E = Commutative->op_end(); I != E; ++I)
529 if (!isSafe(*I, L)) return false;
530 return true;
531 }
532
533 // A cast is safe if its operand is.
534 if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
535 return isSafe(C->getOperand(), L);
536
537 // A udiv is safe if its operands are.
538 if (const SCEVUDivExpr *UD = dyn_cast<SCEVUDivExpr>(S))
539 return isSafe(UD->getLHS(), L) &&
540 isSafe(UD->getRHS(), L);
541
542 // SCEVUnknown is always safe.
543 if (isa<SCEVUnknown>(S))
544 return true;
545
546 // Nothing else is safe.
547 return false;
548}
549
Dan Gohman454d26d2010-02-22 04:11:59 +0000550void IndVarSimplify::RewriteIVExpressions(Loop *L, SCEVExpander &Rewriter) {
Dan Gohman81db61a2009-05-12 02:17:14 +0000551 SmallVector<WeakVH, 16> DeadInsts;
552
553 // Rewrite all induction variable expressions in terms of the canonical
554 // induction variable.
555 //
556 // If there were induction variables of other sizes or offsets, manually
557 // add the offsets to the primary induction variable and cast, avoiding
558 // the need for the code evaluation methods to insert induction variables
559 // of different sizes.
Dan Gohman572645c2010-02-12 10:34:29 +0000560 for (IVUsers::iterator UI = IU->begin(), E = IU->end(); UI != E; ++UI) {
Dan Gohman572645c2010-02-12 10:34:29 +0000561 Value *Op = UI->getOperandValToReplace();
562 const Type *UseTy = Op->getType();
563 Instruction *User = UI->getUser();
Dan Gohman81db61a2009-05-12 02:17:14 +0000564
Dan Gohman572645c2010-02-12 10:34:29 +0000565 // Compute the final addrec to expand into code.
566 const SCEV *AR = IU->getReplacementExpr(*UI);
Dan Gohman81db61a2009-05-12 02:17:14 +0000567
Dan Gohman572645c2010-02-12 10:34:29 +0000568 // Evaluate the expression out of the loop, if possible.
569 if (!L->contains(UI->getUser())) {
570 const SCEV *ExitVal = SE->getSCEVAtScope(AR, L->getParentLoop());
571 if (ExitVal->isLoopInvariant(L))
572 AR = ExitVal;
Dan Gohman81db61a2009-05-12 02:17:14 +0000573 }
Dan Gohman572645c2010-02-12 10:34:29 +0000574
575 // FIXME: It is an extremely bad idea to indvar substitute anything more
576 // complex than affine induction variables. Doing so will put expensive
577 // polynomial evaluations inside of the loop, and the str reduction pass
578 // currently can only reduce affine polynomials. For now just disable
579 // indvar subst on anything more complex than an affine addrec, unless
580 // it can be expanded to a trivial value.
Dan Gohman448db1c2010-04-07 22:27:08 +0000581 if (!isSafe(AR, L))
Dan Gohman572645c2010-02-12 10:34:29 +0000582 continue;
583
584 // Determine the insertion point for this user. By default, insert
585 // immediately before the user. The SCEVExpander class will automatically
586 // hoist loop invariants out of the loop. For PHI nodes, there may be
587 // multiple uses, so compute the nearest common dominator for the
588 // incoming blocks.
589 Instruction *InsertPt = User;
590 if (PHINode *PHI = dyn_cast<PHINode>(InsertPt))
591 for (unsigned i = 0, e = PHI->getNumIncomingValues(); i != e; ++i)
592 if (PHI->getIncomingValue(i) == Op) {
593 if (InsertPt == User)
594 InsertPt = PHI->getIncomingBlock(i)->getTerminator();
595 else
596 InsertPt =
597 DT->findNearestCommonDominator(InsertPt->getParent(),
598 PHI->getIncomingBlock(i))
599 ->getTerminator();
600 }
601
602 // Now expand it into actual Instructions and patch it into place.
603 Value *NewVal = Rewriter.expandCodeFor(AR, UseTy, InsertPt);
604
Dan Gohmand7bfd002010-04-02 14:48:31 +0000605 // Inform ScalarEvolution that this value is changing. The change doesn't
606 // affect its value, but it does potentially affect which use lists the
607 // value will be on after the replacement, which affects ScalarEvolution's
608 // ability to walk use lists and drop dangling pointers when a value is
609 // deleted.
610 SE->forgetValue(User);
611
Dan Gohman572645c2010-02-12 10:34:29 +0000612 // Patch the new value into place.
613 if (Op->hasName())
614 NewVal->takeName(Op);
615 User->replaceUsesOfWith(Op, NewVal);
616 UI->setOperandValToReplace(NewVal);
617 DEBUG(dbgs() << "INDVARS: Rewrote IV '" << *AR << "' " << *Op << '\n'
618 << " into = " << *NewVal << "\n");
619 ++NumRemoved;
620 Changed = true;
621
622 // The old value may be dead now.
623 DeadInsts.push_back(Op);
Dan Gohman81db61a2009-05-12 02:17:14 +0000624 }
625
Torok Edwin3d431382009-05-24 20:08:21 +0000626 // Clear the rewriter cache, because values that are in the rewriter's cache
627 // can be deleted in the loop below, causing the AssertingVH in the cache to
628 // trigger.
629 Rewriter.clear();
Dan Gohman81db61a2009-05-12 02:17:14 +0000630 // Now that we're done iterating through lists, clean up any instructions
631 // which are now dead.
Dan Gohmana10756e2010-01-21 02:09:26 +0000632 while (!DeadInsts.empty())
633 if (Instruction *Inst =
634 dyn_cast_or_null<Instruction>(DeadInsts.pop_back_val()))
Dan Gohman81db61a2009-05-12 02:17:14 +0000635 RecursivelyDeleteTriviallyDeadInstructions(Inst);
Dan Gohman81db61a2009-05-12 02:17:14 +0000636}
637
638/// If there's a single exit block, sink any loop-invariant values that
639/// were defined in the preheader but not used inside the loop into the
640/// exit block to reduce register pressure in the loop.
Dan Gohman667d7872009-06-26 22:53:46 +0000641void IndVarSimplify::SinkUnusedInvariants(Loop *L) {
Dan Gohman81db61a2009-05-12 02:17:14 +0000642 BasicBlock *ExitBlock = L->getExitBlock();
643 if (!ExitBlock) return;
644
Dan Gohman81db61a2009-05-12 02:17:14 +0000645 BasicBlock *Preheader = L->getLoopPreheader();
Dan Gohman03e896b2009-11-05 21:11:53 +0000646 if (!Preheader) return;
647
648 Instruction *InsertPt = ExitBlock->getFirstNonPHI();
Dan Gohman81db61a2009-05-12 02:17:14 +0000649 BasicBlock::iterator I = Preheader->getTerminator();
650 while (I != Preheader->begin()) {
651 --I;
Dan Gohman667d7872009-06-26 22:53:46 +0000652 // New instructions were inserted at the end of the preheader.
653 if (isa<PHINode>(I))
Dan Gohman81db61a2009-05-12 02:17:14 +0000654 break;
Bill Wendling87a10f52010-03-23 21:15:59 +0000655
Eli Friedman0c77db32009-07-15 22:48:29 +0000656 // Don't move instructions which might have side effects, since the side
Bill Wendling87a10f52010-03-23 21:15:59 +0000657 // effects need to complete before instructions inside the loop. Also don't
658 // move instructions which might read memory, since the loop may modify
659 // memory. Note that it's okay if the instruction might have undefined
660 // behavior: LoopSimplify guarantees that the preheader dominates the exit
661 // block.
Eli Friedman0c77db32009-07-15 22:48:29 +0000662 if (I->mayHaveSideEffects() || I->mayReadFromMemory())
Dan Gohman667d7872009-06-26 22:53:46 +0000663 continue;
Bill Wendling87a10f52010-03-23 21:15:59 +0000664
Devang Patel7b9f6b12010-03-15 22:23:03 +0000665 // Skip debug info intrinsics.
666 if (isa<DbgInfoIntrinsic>(I))
667 continue;
Bill Wendling87a10f52010-03-23 21:15:59 +0000668
Dan Gohman76f497a2009-08-25 17:42:10 +0000669 // Don't sink static AllocaInsts out of the entry block, which would
670 // turn them into dynamic allocas!
671 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
672 if (AI->isStaticAlloca())
673 continue;
Bill Wendling87a10f52010-03-23 21:15:59 +0000674
Dan Gohman81db61a2009-05-12 02:17:14 +0000675 // Determine if there is a use in or before the loop (direct or
676 // otherwise).
677 bool UsedInLoop = false;
678 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
679 UI != UE; ++UI) {
680 BasicBlock *UseBB = cast<Instruction>(UI)->getParent();
681 if (PHINode *P = dyn_cast<PHINode>(UI)) {
682 unsigned i =
683 PHINode::getIncomingValueNumForOperand(UI.getOperandNo());
684 UseBB = P->getIncomingBlock(i);
685 }
686 if (UseBB == Preheader || L->contains(UseBB)) {
687 UsedInLoop = true;
688 break;
689 }
690 }
Bill Wendling87a10f52010-03-23 21:15:59 +0000691
Dan Gohman81db61a2009-05-12 02:17:14 +0000692 // If there is, the def must remain in the preheader.
693 if (UsedInLoop)
694 continue;
Bill Wendling87a10f52010-03-23 21:15:59 +0000695
Dan Gohman81db61a2009-05-12 02:17:14 +0000696 // Otherwise, sink it to the exit block.
697 Instruction *ToMove = I;
698 bool Done = false;
Bill Wendling87a10f52010-03-23 21:15:59 +0000699
700 if (I != Preheader->begin()) {
701 // Skip debug info intrinsics.
702 do {
703 --I;
704 } while (isa<DbgInfoIntrinsic>(I) && I != Preheader->begin());
705
706 if (isa<DbgInfoIntrinsic>(I) && I == Preheader->begin())
707 Done = true;
708 } else {
Dan Gohman81db61a2009-05-12 02:17:14 +0000709 Done = true;
Bill Wendling87a10f52010-03-23 21:15:59 +0000710 }
711
Dan Gohman667d7872009-06-26 22:53:46 +0000712 ToMove->moveBefore(InsertPt);
Bill Wendling87a10f52010-03-23 21:15:59 +0000713 if (Done) break;
Dan Gohman667d7872009-06-26 22:53:46 +0000714 InsertPt = ToMove;
Dan Gohman81db61a2009-05-12 02:17:14 +0000715 }
716}
717
Chris Lattnerbbb91492010-04-03 06:41:49 +0000718/// ConvertToSInt - Convert APF to an integer, if possible.
719static bool ConvertToSInt(const APFloat &APF, int64_t &IntVal) {
Devang Patelcd402332008-11-17 23:27:13 +0000720 bool isExact = false;
Evan Cheng794a7db2008-11-26 01:11:57 +0000721 if (&APF.getSemantics() == &APFloat::PPCDoubleDouble)
722 return false;
Chris Lattnerbbb91492010-04-03 06:41:49 +0000723 // See if we can convert this to an int64_t
724 uint64_t UIntVal;
725 if (APF.convertToInteger(&UIntVal, 64, true, APFloat::rmTowardZero,
726 &isExact) != APFloat::opOK || !isExact)
Devang Patelcd402332008-11-17 23:27:13 +0000727 return false;
Chris Lattnerbbb91492010-04-03 06:41:49 +0000728 IntVal = UIntVal;
Devang Patelcd402332008-11-17 23:27:13 +0000729 return true;
Devang Patelcd402332008-11-17 23:27:13 +0000730}
731
Devang Patel58d43d42008-11-03 18:32:19 +0000732/// HandleFloatingPointIV - If the loop has floating induction variable
733/// then insert corresponding integer induction variable if possible.
Devang Patel84e35152008-11-17 21:32:02 +0000734/// For example,
735/// for(double i = 0; i < 10000; ++i)
736/// bar(i)
737/// is converted into
738/// for(int i = 0; i < 10000; ++i)
739/// bar((double)i);
740///
Chris Lattnerc91961e2010-04-03 06:17:08 +0000741void IndVarSimplify::HandleFloatingPointIV(Loop *L, PHINode *PN) {
742 unsigned IncomingEdge = L->contains(PN->getIncomingBlock(0));
Devang Patel84e35152008-11-17 21:32:02 +0000743 unsigned BackEdge = IncomingEdge^1;
Dan Gohmancafb8132009-02-17 19:13:57 +0000744
Devang Patel84e35152008-11-17 21:32:02 +0000745 // Check incoming value.
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000746 ConstantFP *InitValueVal =
Chris Lattnerc91961e2010-04-03 06:17:08 +0000747 dyn_cast<ConstantFP>(PN->getIncomingValue(IncomingEdge));
Chris Lattner96fd7662010-04-03 07:18:48 +0000748
Chris Lattnerbbb91492010-04-03 06:41:49 +0000749 int64_t InitValue;
Chris Lattner96fd7662010-04-03 07:18:48 +0000750 if (!InitValueVal || !ConvertToSInt(InitValueVal->getValueAPF(), InitValue))
Devang Patelcd402332008-11-17 23:27:13 +0000751 return;
752
Chris Lattnerc91961e2010-04-03 06:17:08 +0000753 // Check IV increment. Reject this PN if increment operation is not
Devang Patelcd402332008-11-17 23:27:13 +0000754 // an add or increment value can not be represented by an integer.
Dan Gohmancafb8132009-02-17 19:13:57 +0000755 BinaryOperator *Incr =
Chris Lattnerc91961e2010-04-03 06:17:08 +0000756 dyn_cast<BinaryOperator>(PN->getIncomingValue(BackEdge));
Chris Lattner07aa76a2010-04-03 05:54:59 +0000757 if (Incr == 0 || Incr->getOpcode() != Instruction::FAdd) return;
758
759 // If this is not an add of the PHI with a constantfp, or if the constant fp
760 // is not an integer, bail out.
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000761 ConstantFP *IncValueVal = dyn_cast<ConstantFP>(Incr->getOperand(1));
Chris Lattner96fd7662010-04-03 07:18:48 +0000762 int64_t IncValue;
Chris Lattnerc91961e2010-04-03 06:17:08 +0000763 if (IncValueVal == 0 || Incr->getOperand(0) != PN ||
Chris Lattner96fd7662010-04-03 07:18:48 +0000764 !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
Devang Patelcd402332008-11-17 23:27:13 +0000765 return;
Dan Gohmancafb8132009-02-17 19:13:57 +0000766
Chris Lattnerc91961e2010-04-03 06:17:08 +0000767 // Check Incr uses. One user is PN and the other user is an exit condition
Chris Lattner07aa76a2010-04-03 05:54:59 +0000768 // used by the conditional terminator.
Devang Patel84e35152008-11-17 21:32:02 +0000769 Value::use_iterator IncrUse = Incr->use_begin();
770 Instruction *U1 = cast<Instruction>(IncrUse++);
771 if (IncrUse == Incr->use_end()) return;
772 Instruction *U2 = cast<Instruction>(IncrUse++);
773 if (IncrUse != Incr->use_end()) return;
Dan Gohmancafb8132009-02-17 19:13:57 +0000774
Chris Lattner07aa76a2010-04-03 05:54:59 +0000775 // Find exit condition, which is an fcmp. If it doesn't exist, or if it isn't
776 // only used by a branch, we can't transform it.
Chris Lattnerca703bd2010-04-03 06:11:07 +0000777 FCmpInst *Compare = dyn_cast<FCmpInst>(U1);
778 if (!Compare)
779 Compare = dyn_cast<FCmpInst>(U2);
780 if (Compare == 0 || !Compare->hasOneUse() ||
781 !isa<BranchInst>(Compare->use_back()))
Chris Lattner07aa76a2010-04-03 05:54:59 +0000782 return;
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000783
Chris Lattnerca703bd2010-04-03 06:11:07 +0000784 BranchInst *TheBr = cast<BranchInst>(Compare->use_back());
Devang Patel84e35152008-11-17 21:32:02 +0000785
Chris Lattnerd52c0722010-04-03 07:21:39 +0000786 // We need to verify that the branch actually controls the iteration count
787 // of the loop. If not, the new IV can overflow and no one will notice.
788 // The branch block must be in the loop and one of the successors must be out
789 // of the loop.
790 assert(TheBr->isConditional() && "Can't use fcmp if not conditional");
791 if (!L->contains(TheBr->getParent()) ||
792 (L->contains(TheBr->getSuccessor(0)) &&
793 L->contains(TheBr->getSuccessor(1))))
794 return;
Chris Lattner96fd7662010-04-03 07:18:48 +0000795
796
Chris Lattner07aa76a2010-04-03 05:54:59 +0000797 // If it isn't a comparison with an integer-as-fp (the exit value), we can't
798 // transform it.
Chris Lattnerca703bd2010-04-03 06:11:07 +0000799 ConstantFP *ExitValueVal = dyn_cast<ConstantFP>(Compare->getOperand(1));
Chris Lattnerbbb91492010-04-03 06:41:49 +0000800 int64_t ExitValue;
801 if (ExitValueVal == 0 ||
802 !ConvertToSInt(ExitValueVal->getValueAPF(), ExitValue))
Devang Patel84e35152008-11-17 21:32:02 +0000803 return;
Chris Lattnerbbb91492010-04-03 06:41:49 +0000804
Devang Patel84e35152008-11-17 21:32:02 +0000805 // Find new predicate for integer comparison.
806 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
Chris Lattnerca703bd2010-04-03 06:11:07 +0000807 switch (Compare->getPredicate()) {
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000808 default: return; // Unknown comparison.
Devang Patel84e35152008-11-17 21:32:02 +0000809 case CmpInst::FCMP_OEQ:
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000810 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
Chris Lattner96fd7662010-04-03 07:18:48 +0000811 case CmpInst::FCMP_ONE:
812 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
Devang Patel84e35152008-11-17 21:32:02 +0000813 case CmpInst::FCMP_OGT:
Chris Lattnera40e4a02010-04-03 06:25:21 +0000814 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
Devang Patel84e35152008-11-17 21:32:02 +0000815 case CmpInst::FCMP_OGE:
Chris Lattnera40e4a02010-04-03 06:25:21 +0000816 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
Devang Patel84e35152008-11-17 21:32:02 +0000817 case CmpInst::FCMP_OLT:
Chris Lattner43b85272010-04-03 06:30:03 +0000818 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
Devang Patel84e35152008-11-17 21:32:02 +0000819 case CmpInst::FCMP_OLE:
Chris Lattner43b85272010-04-03 06:30:03 +0000820 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
Devang Patel58d43d42008-11-03 18:32:19 +0000821 }
Chris Lattner96fd7662010-04-03 07:18:48 +0000822
823 // We convert the floating point induction variable to a signed i32 value if
824 // we can. This is only safe if the comparison will not overflow in a way
825 // that won't be trapped by the integer equivalent operations. Check for this
826 // now.
827 // TODO: We could use i64 if it is native and the range requires it.
828
829 // The start/stride/exit values must all fit in signed i32.
830 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
831 return;
832
833 // If not actually striding (add x, 0.0), avoid touching the code.
834 if (IncValue == 0)
835 return;
836
837 // Positive and negative strides have different safety conditions.
838 if (IncValue > 0) {
839 // If we have a positive stride, we require the init to be less than the
840 // exit value and an equality or less than comparison.
841 if (InitValue >= ExitValue ||
842 NewPred == CmpInst::ICMP_SGT || NewPred == CmpInst::ICMP_SGE)
843 return;
844
845 uint32_t Range = uint32_t(ExitValue-InitValue);
846 if (NewPred == CmpInst::ICMP_SLE) {
847 // Normalize SLE -> SLT, check for infinite loop.
848 if (++Range == 0) return; // Range overflows.
849 }
850
851 unsigned Leftover = Range % uint32_t(IncValue);
852
853 // If this is an equality comparison, we require that the strided value
854 // exactly land on the exit value, otherwise the IV condition will wrap
855 // around and do things the fp IV wouldn't.
856 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
857 Leftover != 0)
858 return;
859
860 // If the stride would wrap around the i32 before exiting, we can't
861 // transform the IV.
862 if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
863 return;
864
865 } else {
866 // If we have a negative stride, we require the init to be greater than the
867 // exit value and an equality or greater than comparison.
868 if (InitValue >= ExitValue ||
869 NewPred == CmpInst::ICMP_SLT || NewPred == CmpInst::ICMP_SLE)
870 return;
871
872 uint32_t Range = uint32_t(InitValue-ExitValue);
873 if (NewPred == CmpInst::ICMP_SGE) {
874 // Normalize SGE -> SGT, check for infinite loop.
875 if (++Range == 0) return; // Range overflows.
876 }
877
878 unsigned Leftover = Range % uint32_t(-IncValue);
879
880 // If this is an equality comparison, we require that the strided value
881 // exactly land on the exit value, otherwise the IV condition will wrap
882 // around and do things the fp IV wouldn't.
883 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
884 Leftover != 0)
885 return;
886
887 // If the stride would wrap around the i32 before exiting, we can't
888 // transform the IV.
889 if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
890 return;
891 }
892
893 const IntegerType *Int32Ty = Type::getInt32Ty(PN->getContext());
Dan Gohmancafb8132009-02-17 19:13:57 +0000894
Chris Lattnerbbb91492010-04-03 06:41:49 +0000895 // Insert new integer induction variable.
Chris Lattnerc91961e2010-04-03 06:17:08 +0000896 PHINode *NewPHI = PHINode::Create(Int32Ty, PN->getName()+".int", PN);
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000897 NewPHI->addIncoming(ConstantInt::get(Int32Ty, InitValue),
Chris Lattnerc91961e2010-04-03 06:17:08 +0000898 PN->getIncomingBlock(IncomingEdge));
Devang Patel84e35152008-11-17 21:32:02 +0000899
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000900 Value *NewAdd =
Chris Lattner96fd7662010-04-03 07:18:48 +0000901 BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),
Chris Lattnerc4f7e802010-04-03 06:05:10 +0000902 Incr->getName()+".int", Incr);
Chris Lattnerc91961e2010-04-03 06:17:08 +0000903 NewPHI->addIncoming(NewAdd, PN->getIncomingBlock(BackEdge));
Devang Patel84e35152008-11-17 21:32:02 +0000904
Chris Lattnerca703bd2010-04-03 06:11:07 +0000905 ICmpInst *NewCompare = new ICmpInst(TheBr, NewPred, NewAdd,
906 ConstantInt::get(Int32Ty, ExitValue),
907 Compare->getName());
Dan Gohmancafb8132009-02-17 19:13:57 +0000908
Chris Lattnerc91961e2010-04-03 06:17:08 +0000909 // In the following deletions, PN may become dead and may be deleted.
Dan Gohman81db61a2009-05-12 02:17:14 +0000910 // Use a WeakVH to observe whether this happens.
Chris Lattnerc91961e2010-04-03 06:17:08 +0000911 WeakVH WeakPH = PN;
Dan Gohman81db61a2009-05-12 02:17:14 +0000912
Chris Lattnerca703bd2010-04-03 06:11:07 +0000913 // Delete the old floating point exit comparison. The branch starts using the
914 // new comparison.
915 NewCompare->takeName(Compare);
916 Compare->replaceAllUsesWith(NewCompare);
917 RecursivelyDeleteTriviallyDeadInstructions(Compare);
Dan Gohmancafb8132009-02-17 19:13:57 +0000918
Chris Lattnerca703bd2010-04-03 06:11:07 +0000919 // Delete the old floating point increment.
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000920 Incr->replaceAllUsesWith(UndefValue::get(Incr->getType()));
Dan Gohman81db61a2009-05-12 02:17:14 +0000921 RecursivelyDeleteTriviallyDeadInstructions(Incr);
Dan Gohmancafb8132009-02-17 19:13:57 +0000922
Chris Lattner70c0d4f2010-04-03 06:16:22 +0000923 // If the FP induction variable still has uses, this is because something else
924 // in the loop uses its value. In order to canonicalize the induction
925 // variable, we chose to eliminate the IV and rewrite it in terms of an
926 // int->fp cast.
927 //
928 // We give preference to sitofp over uitofp because it is faster on most
929 // platforms.
930 if (WeakPH) {
Chris Lattnera40e4a02010-04-03 06:25:21 +0000931 Value *Conv = new SIToFPInst(NewPHI, PN->getType(), "indvar.conv",
932 PN->getParent()->getFirstNonPHI());
933 PN->replaceAllUsesWith(Conv);
Chris Lattnerc91961e2010-04-03 06:17:08 +0000934 RecursivelyDeleteTriviallyDeadInstructions(PN);
Devang Patelcd402332008-11-17 23:27:13 +0000935 }
Devang Patel58d43d42008-11-03 18:32:19 +0000936
Dan Gohman81db61a2009-05-12 02:17:14 +0000937 // Add a new IVUsers entry for the newly-created integer PHI.
938 IU->AddUsersIfInteresting(NewPHI);
939}