Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 1 | //===- IndVarSimplify.cpp - Induction Variable Elimination ----------------===// |
| 2 | // |
| 3 | // InductionVariableSimplify - Transform induction variables in a program |
| 4 | // to all use a single cannonical induction variable per loop. |
| 5 | // |
| 6 | //===----------------------------------------------------------------------===// |
| 7 | |
| 8 | #include "llvm/Transforms/Scalar/IndVarSimplify.h" |
| 9 | #include "llvm/Analysis/InductionVariable.h" |
| 10 | #include "llvm/Analysis/LoopInfo.h" |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 11 | #include "llvm/iPHINode.h" |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 12 | #include "llvm/iOther.h" |
| 13 | #include "llvm/Type.h" |
Chris Lattner | 221d688 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 14 | #include "llvm/BasicBlock.h" |
Chris Lattner | 31bcdb8 | 2002-04-28 19:55:58 +0000 | [diff] [blame^] | 15 | #include "llvm/Constants.h" |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 16 | #include "llvm/Pass.h" |
Chris Lattner | 455889a | 2002-02-12 22:39:50 +0000 | [diff] [blame] | 17 | #include "llvm/Support/CFG.h" |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 18 | #include "Support/STLExtras.h" |
| 19 | |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 20 | #if 0 |
| 21 | #define DEBUG |
| 22 | #include "llvm/Analysis/Writer.h" |
| 23 | #endif |
| 24 | |
| 25 | // InsertCast - Cast Val to Ty, setting a useful name on the cast if Val has a |
| 26 | // name... |
| 27 | // |
| 28 | static Instruction *InsertCast(Instruction *Val, const Type *Ty, |
| 29 | BasicBlock::iterator It) { |
| 30 | Instruction *Cast = new CastInst(Val, Ty); |
| 31 | if (Val->hasName()) Cast->setName(Val->getName()+"-casted"); |
| 32 | Val->getParent()->getInstList().insert(It, Cast); |
| 33 | return Cast; |
| 34 | } |
| 35 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 36 | static bool TransformLoop(LoopInfo *Loops, Loop *Loop) { |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 37 | // Transform all subloops before this loop... |
| 38 | bool Changed = reduce_apply_bool(Loop->getSubLoops().begin(), |
| 39 | Loop->getSubLoops().end(), |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 40 | std::bind1st(std::ptr_fun(TransformLoop), Loops)); |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 41 | // Get the header node for this loop. All of the phi nodes that could be |
| 42 | // induction variables must live in this basic block. |
| 43 | BasicBlock *Header = (BasicBlock*)Loop->getBlocks().front(); |
| 44 | |
| 45 | // Loop over all of the PHI nodes in the basic block, calculating the |
| 46 | // induction variables that they represent... stuffing the induction variable |
| 47 | // info into a vector... |
| 48 | // |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 49 | std::vector<InductionVariable> IndVars; // Induction variables for block |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 50 | for (BasicBlock::iterator I = Header->begin(); |
| 51 | PHINode *PN = dyn_cast<PHINode>(*I); ++I) |
| 52 | IndVars.push_back(InductionVariable(PN, Loops)); |
| 53 | |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 54 | // If there are no phi nodes in this basic block, there can't be indvars... |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 55 | if (IndVars.empty()) return Changed; |
| 56 | |
| 57 | // Loop over the induction variables, looking for a cannonical induction |
| 58 | // variable, and checking to make sure they are not all unknown induction |
| 59 | // variables. |
| 60 | // |
| 61 | bool FoundIndVars = false; |
| 62 | InductionVariable *Cannonical = 0; |
| 63 | for (unsigned i = 0; i < IndVars.size(); ++i) { |
| 64 | if (IndVars[i].InductionType == InductionVariable::Cannonical) |
| 65 | Cannonical = &IndVars[i]; |
| 66 | if (IndVars[i].InductionType != InductionVariable::Unknown) |
| 67 | FoundIndVars = true; |
| 68 | } |
| 69 | |
| 70 | // No induction variables, bail early... don't add a cannonnical indvar |
| 71 | if (!FoundIndVars) return Changed; |
| 72 | |
| 73 | // Okay, we want to convert other induction variables to use a cannonical |
| 74 | // indvar. If we don't have one, add one now... |
| 75 | if (!Cannonical) { |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 76 | // Create the PHI node for the new induction variable |
| 77 | PHINode *PN = new PHINode(Type::UIntTy, "cann-indvar"); |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 79 | // Insert the phi node at the end of the other phi nodes... |
| 80 | Header->getInstList().insert(Header->begin()+IndVars.size(), PN); |
| 81 | |
| 82 | // Create the increment instruction to add one to the counter... |
| 83 | Instruction *Add = BinaryOperator::create(Instruction::Add, PN, |
| 84 | ConstantUInt::get(Type::UIntTy,1), |
| 85 | "add1-indvar"); |
| 86 | |
| 87 | // Insert the add instruction after all of the PHI nodes... |
| 88 | Header->getInstList().insert(Header->begin()+(IndVars.size()+1), Add); |
| 89 | |
| 90 | // Figure out which block is incoming and which is the backedge for the loop |
| 91 | BasicBlock *Incoming, *BackEdgeBlock; |
Chris Lattner | 455889a | 2002-02-12 22:39:50 +0000 | [diff] [blame] | 92 | pred_iterator PI = pred_begin(Header); |
| 93 | assert(PI != pred_end(Header) && "Loop headers should have 2 preds!"); |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 94 | if (Loop->contains(*PI)) { // First pred is back edge... |
| 95 | BackEdgeBlock = *PI++; |
| 96 | Incoming = *PI++; |
| 97 | } else { |
| 98 | Incoming = *PI++; |
| 99 | BackEdgeBlock = *PI++; |
| 100 | } |
Chris Lattner | 455889a | 2002-02-12 22:39:50 +0000 | [diff] [blame] | 101 | assert(PI == pred_end(Header) && "Loop headers should have 2 preds!"); |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 102 | |
| 103 | // Add incoming values for the PHI node... |
Chris Lattner | 1a18b7c | 2002-04-27 02:25:14 +0000 | [diff] [blame] | 104 | PN->addIncoming(Constant::getNullValue(Type::UIntTy), Incoming); |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 105 | PN->addIncoming(Add, BackEdgeBlock); |
| 106 | |
| 107 | // Analyze the new induction variable... |
| 108 | IndVars.push_back(InductionVariable(PN, Loops)); |
| 109 | assert(IndVars.back().InductionType == InductionVariable::Cannonical && |
| 110 | "Just inserted cannonical indvar that is not cannonical!"); |
| 111 | Cannonical = &IndVars.back(); |
Chris Lattner | 4753bf2 | 2001-12-05 19:41:33 +0000 | [diff] [blame] | 112 | Changed = true; |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | #ifdef DEBUG |
| 116 | cerr << "Induction variables:\n"; |
| 117 | #endif |
| 118 | |
| 119 | // Get the current loop iteration count, which is always the value of the |
| 120 | // cannonical phi node... |
| 121 | // |
| 122 | PHINode *IterCount = Cannonical->Phi; |
| 123 | |
| 124 | // Loop through and replace all of the auxillary induction variables with |
| 125 | // references to the primary induction variable... |
| 126 | // |
| 127 | unsigned InsertPos = IndVars.size(); |
| 128 | for (unsigned i = 0; i < IndVars.size(); ++i) { |
| 129 | InductionVariable *IV = &IndVars[i]; |
| 130 | #ifdef DEBUG |
| 131 | cerr << IndVars[i]; |
| 132 | #endif |
Chris Lattner | 3bf915f | 2001-12-04 08:13:06 +0000 | [diff] [blame] | 133 | // Don't modify the cannonical indvar or unrecognized indvars... |
| 134 | if (IV != Cannonical && IV->InductionType != InductionVariable::Unknown) { |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 135 | Instruction *Val = IterCount; |
| 136 | if (!isa<ConstantInt>(IV->Step) || // If the step != 1 |
| 137 | !cast<ConstantInt>(IV->Step)->equalsInt(1)) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 138 | std::string Name; // Create a scale by the step value... |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 139 | if (IV->Phi->hasName()) Name = IV->Phi->getName()+"-scale"; |
| 140 | |
| 141 | // If the types are not compatible, insert a cast now... |
| 142 | if (Val->getType() != IV->Step->getType()) |
| 143 | Val = InsertCast(Val, IV->Step->getType(), |
| 144 | Header->begin()+InsertPos++); |
| 145 | |
| 146 | Val = BinaryOperator::create(Instruction::Mul, Val, IV->Step, Name); |
| 147 | // Insert the phi node at the end of the other phi nodes... |
| 148 | Header->getInstList().insert(Header->begin()+InsertPos++, Val); |
| 149 | } |
| 150 | |
| 151 | if (!isa<Constant>(IV->Start) || // If the start != 0 |
| 152 | !cast<Constant>(IV->Start)->isNullValue()) { |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 153 | std::string Name; // Create a offset by the start value... |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 154 | if (IV->Phi->hasName()) Name = IV->Phi->getName()+"-offset"; |
| 155 | |
| 156 | // If the types are not compatible, insert a cast now... |
| 157 | if (Val->getType() != IV->Start->getType()) |
| 158 | Val = InsertCast(Val, IV->Start->getType(), |
| 159 | Header->begin()+InsertPos++); |
| 160 | |
| 161 | Val = BinaryOperator::create(Instruction::Add, Val, IV->Start, Name); |
| 162 | // Insert the phi node at the end of the other phi nodes... |
| 163 | Header->getInstList().insert(Header->begin()+InsertPos++, Val); |
| 164 | } |
| 165 | |
| 166 | // If the PHI node has a different type than val is, insert a cast now... |
| 167 | if (Val->getType() != IV->Phi->getType()) |
| 168 | Val = InsertCast(Val, IV->Phi->getType(), |
| 169 | Header->begin()+InsertPos++); |
| 170 | |
| 171 | // Replace all uses of the old PHI node with the new computed value... |
| 172 | IV->Phi->replaceAllUsesWith(Val); |
| 173 | |
| 174 | // Move the PHI name to it's new equivalent value... |
Chris Lattner | 697954c | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 175 | std::string OldName = IV->Phi->getName(); |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 176 | IV->Phi->setName(""); |
| 177 | Val->setName(OldName); |
| 178 | |
| 179 | // Delete the old, now unused, phi node... |
| 180 | Header->getInstList().remove(IV->Phi); |
| 181 | delete IV->Phi; |
| 182 | InsertPos--; // Deleted an instr, decrement insert position |
Chris Lattner | 4753bf2 | 2001-12-05 19:41:33 +0000 | [diff] [blame] | 183 | Changed = true; |
Chris Lattner | 394437f | 2001-12-04 04:32:29 +0000 | [diff] [blame] | 184 | } |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | return Changed; |
| 188 | } |
| 189 | |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 190 | static bool doit(Function *M, LoopInfo &Loops) { |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 191 | // Induction Variables live in the header nodes of the loops of the function |
Chris Lattner | 6148c02 | 2001-12-03 17:28:42 +0000 | [diff] [blame] | 192 | return reduce_apply_bool(Loops.getTopLevelLoops().begin(), |
| 193 | Loops.getTopLevelLoops().end(), |
| 194 | std::bind1st(std::ptr_fun(TransformLoop), &Loops)); |
| 195 | } |
Chris Lattner | 793c6b8 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 196 | |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 197 | |
| 198 | namespace { |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 199 | struct InductionVariableSimplify : public FunctionPass { |
| 200 | virtual bool runOnFunction(Function *F) { |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 201 | return doit(F, getAnalysis<LoopInfo>()); |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Chris Lattner | f57b845 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 204 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 1b7f7dc | 2002-04-28 16:21:30 +0000 | [diff] [blame] | 205 | AU.addRequired(LoopInfo::ID); |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 206 | } |
| 207 | }; |
Chris Lattner | 793c6b8 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 208 | } |
| 209 | |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 210 | Pass *createIndVarSimplifyPass() { |
| 211 | return new InductionVariableSimplify(); |
Chris Lattner | 793c6b8 | 2002-01-31 00:45:11 +0000 | [diff] [blame] | 212 | } |
Chris Lattner | bd0ef77 | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 213 | |