Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 1 | //===- ScalarEvolutionExpander.cpp - Scalar Evolution Analysis --*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the implementation of the scalar evolution expander, |
| 11 | // which is used to generate the code corresponding to a given scalar evolution |
| 12 | // expression. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/LoopInfo.h" |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 18 | using namespace llvm; |
| 19 | |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 20 | /// InsertCastOfTo - Insert a cast of V to the specified type, doing what |
| 21 | /// we can to share the casts. |
Reid Spencer | 3ba68b9 | 2006-12-13 08:06:42 +0000 | [diff] [blame] | 22 | Value *SCEVExpander::InsertCastOfTo(Instruction::CastOps opcode, Value *V, |
| 23 | const Type *Ty) { |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 24 | // Short-circuit unnecessary bitcasts. |
| 25 | if (opcode == Instruction::BitCast && V->getType() == Ty) |
| 26 | return V; |
| 27 | |
Dan Gohman | f04fa48 | 2009-04-16 15:52:57 +0000 | [diff] [blame] | 28 | // Short-circuit unnecessary inttoptr<->ptrtoint casts. |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 29 | if ((opcode == Instruction::PtrToInt || opcode == Instruction::IntToPtr) && |
Dan Gohman | 80dcdee | 2009-05-01 17:00:00 +0000 | [diff] [blame] | 30 | SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType())) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 31 | if (CastInst *CI = dyn_cast<CastInst>(V)) |
| 32 | if ((CI->getOpcode() == Instruction::PtrToInt || |
| 33 | CI->getOpcode() == Instruction::IntToPtr) && |
| 34 | SE.getTypeSizeInBits(CI->getType()) == |
| 35 | SE.getTypeSizeInBits(CI->getOperand(0)->getType())) |
| 36 | return CI->getOperand(0); |
Dan Gohman | 80dcdee | 2009-05-01 17:00:00 +0000 | [diff] [blame] | 37 | if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) |
| 38 | if ((CE->getOpcode() == Instruction::PtrToInt || |
| 39 | CE->getOpcode() == Instruction::IntToPtr) && |
| 40 | SE.getTypeSizeInBits(CE->getType()) == |
| 41 | SE.getTypeSizeInBits(CE->getOperand(0)->getType())) |
| 42 | return CE->getOperand(0); |
| 43 | } |
Dan Gohman | f04fa48 | 2009-04-16 15:52:57 +0000 | [diff] [blame] | 44 | |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 45 | // FIXME: keep track of the cast instruction. |
| 46 | if (Constant *C = dyn_cast<Constant>(V)) |
Reid Spencer | d977d86 | 2006-12-12 23:36:14 +0000 | [diff] [blame] | 47 | return ConstantExpr::getCast(opcode, C, Ty); |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 48 | |
| 49 | if (Argument *A = dyn_cast<Argument>(V)) { |
| 50 | // Check to see if there is already a cast! |
| 51 | for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); |
| 52 | UI != E; ++UI) { |
| 53 | if ((*UI)->getType() == Ty) |
Wojciech Matyjewicz | 3913187 | 2008-02-09 18:30:13 +0000 | [diff] [blame] | 54 | if (CastInst *CI = dyn_cast<CastInst>(cast<Instruction>(*UI))) |
| 55 | if (CI->getOpcode() == opcode) { |
| 56 | // If the cast isn't the first instruction of the function, move it. |
| 57 | if (BasicBlock::iterator(CI) != |
| 58 | A->getParent()->getEntryBlock().begin()) { |
Dan Gohman | aabb04f | 2009-04-22 16:11:16 +0000 | [diff] [blame] | 59 | // If the CastInst is the insert point, change the insert point. |
| 60 | if (CI == InsertPt) ++InsertPt; |
| 61 | // Splice the cast at the beginning of the entry block. |
Wojciech Matyjewicz | 3913187 | 2008-02-09 18:30:13 +0000 | [diff] [blame] | 62 | CI->moveBefore(A->getParent()->getEntryBlock().begin()); |
| 63 | } |
| 64 | return CI; |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 65 | } |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 66 | } |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 67 | Instruction *I = CastInst::Create(opcode, V, Ty, V->getName(), |
| 68 | A->getParent()->getEntryBlock().begin()); |
| 69 | InsertedValues.insert(I); |
| 70 | return I; |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 71 | } |
Wojciech Matyjewicz | 3913187 | 2008-02-09 18:30:13 +0000 | [diff] [blame] | 72 | |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 73 | Instruction *I = cast<Instruction>(V); |
Wojciech Matyjewicz | 3913187 | 2008-02-09 18:30:13 +0000 | [diff] [blame] | 74 | |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 75 | // Check to see if there is already a cast. If there is, use it. |
| 76 | for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); |
| 77 | UI != E; ++UI) { |
| 78 | if ((*UI)->getType() == Ty) |
Wojciech Matyjewicz | 3913187 | 2008-02-09 18:30:13 +0000 | [diff] [blame] | 79 | if (CastInst *CI = dyn_cast<CastInst>(cast<Instruction>(*UI))) |
| 80 | if (CI->getOpcode() == opcode) { |
| 81 | BasicBlock::iterator It = I; ++It; |
| 82 | if (isa<InvokeInst>(I)) |
| 83 | It = cast<InvokeInst>(I)->getNormalDest()->begin(); |
| 84 | while (isa<PHINode>(It)) ++It; |
| 85 | if (It != BasicBlock::iterator(CI)) { |
Dan Gohman | aabb04f | 2009-04-22 16:11:16 +0000 | [diff] [blame] | 86 | // If the CastInst is the insert point, change the insert point. |
| 87 | if (CI == InsertPt) ++InsertPt; |
Wojciech Matyjewicz | 3913187 | 2008-02-09 18:30:13 +0000 | [diff] [blame] | 88 | // Splice the cast immediately after the operand in question. |
| 89 | CI->moveBefore(It); |
| 90 | } |
| 91 | return CI; |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 92 | } |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 93 | } |
| 94 | BasicBlock::iterator IP = I; ++IP; |
| 95 | if (InvokeInst *II = dyn_cast<InvokeInst>(I)) |
| 96 | IP = II->getNormalDest()->begin(); |
| 97 | while (isa<PHINode>(IP)) ++IP; |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 98 | Instruction *CI = CastInst::Create(opcode, V, Ty, V->getName(), IP); |
| 99 | InsertedValues.insert(CI); |
| 100 | return CI; |
Chris Lattner | ca1a4be | 2006-02-04 09:51:53 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 103 | /// InsertNoopCastOfTo - Insert a cast of V to the specified type, |
| 104 | /// which must be possible with a noop cast. |
| 105 | Value *SCEVExpander::InsertNoopCastOfTo(Value *V, const Type *Ty) { |
| 106 | Instruction::CastOps Op = CastInst::getCastOpcode(V, false, Ty, false); |
| 107 | assert((Op == Instruction::BitCast || |
Devang Patel | e2a1746 | 2009-04-22 18:51:05 +0000 | [diff] [blame] | 108 | Op == Instruction::PtrToInt || |
| 109 | Op == Instruction::IntToPtr) && |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 110 | "InsertNoopCastOfTo cannot perform non-noop casts!"); |
| 111 | assert(SE.getTypeSizeInBits(V->getType()) == SE.getTypeSizeInBits(Ty) && |
| 112 | "InsertNoopCastOfTo cannot change sizes!"); |
| 113 | return InsertCastOfTo(Op, V, Ty); |
| 114 | } |
| 115 | |
Chris Lattner | 7fec90e | 2007-04-13 05:04:18 +0000 | [diff] [blame] | 116 | /// InsertBinop - Insert the specified binary operator, doing a small amount |
| 117 | /// of work to avoid inserting an obviously redundant operation. |
| 118 | Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode, Value *LHS, |
Dan Gohman | 6cdc727 | 2009-04-22 16:05:50 +0000 | [diff] [blame] | 119 | Value *RHS, BasicBlock::iterator InsertPt) { |
Dan Gohman | 0f0eb18 | 2007-06-15 19:21:55 +0000 | [diff] [blame] | 120 | // Fold a binop with constant operands. |
| 121 | if (Constant *CLHS = dyn_cast<Constant>(LHS)) |
| 122 | if (Constant *CRHS = dyn_cast<Constant>(RHS)) |
| 123 | return ConstantExpr::get(Opcode, CLHS, CRHS); |
| 124 | |
Chris Lattner | 7fec90e | 2007-04-13 05:04:18 +0000 | [diff] [blame] | 125 | // Do a quick scan to see if we have this binop nearby. If so, reuse it. |
| 126 | unsigned ScanLimit = 6; |
Wojciech Matyjewicz | 8a08769 | 2008-06-15 19:07:39 +0000 | [diff] [blame] | 127 | BasicBlock::iterator BlockBegin = InsertPt->getParent()->begin(); |
| 128 | if (InsertPt != BlockBegin) { |
| 129 | // Scanning starts from the last instruction before InsertPt. |
| 130 | BasicBlock::iterator IP = InsertPt; |
| 131 | --IP; |
| 132 | for (; ScanLimit; --IP, --ScanLimit) { |
| 133 | if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(IP)) |
| 134 | if (BinOp->getOpcode() == Opcode && BinOp->getOperand(0) == LHS && |
| 135 | BinOp->getOperand(1) == RHS) |
| 136 | return BinOp; |
| 137 | if (IP == BlockBegin) break; |
| 138 | } |
Chris Lattner | 7fec90e | 2007-04-13 05:04:18 +0000 | [diff] [blame] | 139 | } |
Wojciech Matyjewicz | 8a08769 | 2008-06-15 19:07:39 +0000 | [diff] [blame] | 140 | |
| 141 | // If we haven't found this binop, insert it. |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 142 | Instruction *BO = BinaryOperator::Create(Opcode, LHS, RHS, "tmp", InsertPt); |
| 143 | InsertedValues.insert(BO); |
| 144 | return BO; |
Chris Lattner | 7fec90e | 2007-04-13 05:04:18 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 147 | Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 148 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Dan Gohman | e24fa64 | 2008-06-18 16:37:11 +0000 | [diff] [blame] | 149 | Value *V = expand(S->getOperand(S->getNumOperands()-1)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 150 | V = InsertNoopCastOfTo(V, Ty); |
Dan Gohman | e24fa64 | 2008-06-18 16:37:11 +0000 | [diff] [blame] | 151 | |
| 152 | // Emit a bunch of add instructions |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 153 | for (int i = S->getNumOperands()-2; i >= 0; --i) { |
| 154 | Value *W = expand(S->getOperand(i)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 155 | W = InsertNoopCastOfTo(W, Ty); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 156 | V = InsertBinop(Instruction::Add, V, W, InsertPt); |
| 157 | } |
Dan Gohman | e24fa64 | 2008-06-18 16:37:11 +0000 | [diff] [blame] | 158 | return V; |
| 159 | } |
| 160 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 161 | Value *SCEVExpander::visitMulExpr(const SCEVMulExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 162 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 163 | int FirstOp = 0; // Set if we should emit a subtract. |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 164 | if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getOperand(0))) |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 165 | if (SC->getValue()->isAllOnesValue()) |
| 166 | FirstOp = 1; |
| 167 | |
| 168 | int i = S->getNumOperands()-2; |
Dan Gohman | d19534a | 2007-06-15 14:38:12 +0000 | [diff] [blame] | 169 | Value *V = expand(S->getOperand(i+1)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 170 | V = InsertNoopCastOfTo(V, Ty); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 171 | |
| 172 | // Emit a bunch of multiply instructions |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 173 | for (; i >= FirstOp; --i) { |
| 174 | Value *W = expand(S->getOperand(i)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 175 | W = InsertNoopCastOfTo(W, Ty); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 176 | V = InsertBinop(Instruction::Mul, V, W, InsertPt); |
| 177 | } |
| 178 | |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 179 | // -1 * ... ---> 0 - ... |
| 180 | if (FirstOp == 1) |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 181 | V = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), V, InsertPt); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 182 | return V; |
| 183 | } |
| 184 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 185 | Value *SCEVExpander::visitUDivExpr(const SCEVUDivExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 186 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 187 | |
Nick Lewycky | 6177fd4 | 2008-07-08 05:05:37 +0000 | [diff] [blame] | 188 | Value *LHS = expand(S->getLHS()); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 189 | LHS = InsertNoopCastOfTo(LHS, Ty); |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 190 | if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getRHS())) { |
Nick Lewycky | 6177fd4 | 2008-07-08 05:05:37 +0000 | [diff] [blame] | 191 | const APInt &RHS = SC->getValue()->getValue(); |
| 192 | if (RHS.isPowerOf2()) |
| 193 | return InsertBinop(Instruction::LShr, LHS, |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 194 | ConstantInt::get(Ty, RHS.logBase2()), |
Nick Lewycky | 6177fd4 | 2008-07-08 05:05:37 +0000 | [diff] [blame] | 195 | InsertPt); |
| 196 | } |
| 197 | |
| 198 | Value *RHS = expand(S->getRHS()); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 199 | RHS = InsertNoopCastOfTo(RHS, Ty); |
Nick Lewycky | 6177fd4 | 2008-07-08 05:05:37 +0000 | [diff] [blame] | 200 | return InsertBinop(Instruction::UDiv, LHS, RHS, InsertPt); |
| 201 | } |
| 202 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 203 | Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 204 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 205 | const Loop *L = S->getLoop(); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 206 | |
| 207 | // {X,+,F} --> X + {0,+,F} |
Dan Gohman | cfeb6a4 | 2008-06-18 16:23:07 +0000 | [diff] [blame] | 208 | if (!S->getStart()->isZero()) { |
Dan Gohman | d19534a | 2007-06-15 14:38:12 +0000 | [diff] [blame] | 209 | Value *Start = expand(S->getStart()); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 210 | Start = InsertNoopCastOfTo(Start, Ty); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 211 | std::vector<SCEVHandle> NewOps(S->op_begin(), S->op_end()); |
Dan Gohman | 246b256 | 2007-10-22 18:31:58 +0000 | [diff] [blame] | 212 | NewOps[0] = SE.getIntegerSCEV(0, Ty); |
| 213 | Value *Rest = expand(SE.getAddRecExpr(NewOps, L)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 214 | Rest = InsertNoopCastOfTo(Rest, Ty); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 215 | |
| 216 | // FIXME: look for an existing add to use. |
Chris Lattner | 7fec90e | 2007-04-13 05:04:18 +0000 | [diff] [blame] | 217 | return InsertBinop(Instruction::Add, Rest, Start, InsertPt); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | // {0,+,1} --> Insert a canonical induction variable into the loop! |
Dan Gohman | 17f1972 | 2008-06-22 19:23:09 +0000 | [diff] [blame] | 221 | if (S->isAffine() && |
Dan Gohman | 246b256 | 2007-10-22 18:31:58 +0000 | [diff] [blame] | 222 | S->getOperand(1) == SE.getIntegerSCEV(1, Ty)) { |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 223 | // Create and insert the PHI node for the induction variable in the |
| 224 | // specified loop. |
| 225 | BasicBlock *Header = L->getHeader(); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 226 | PHINode *PN = PHINode::Create(Ty, "indvar", Header->begin()); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 227 | InsertedValues.insert(PN); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 228 | PN->addIncoming(Constant::getNullValue(Ty), L->getLoopPreheader()); |
| 229 | |
| 230 | pred_iterator HPI = pred_begin(Header); |
| 231 | assert(HPI != pred_end(Header) && "Loop with zero preds???"); |
| 232 | if (!L->contains(*HPI)) ++HPI; |
| 233 | assert(HPI != pred_end(Header) && L->contains(*HPI) && |
| 234 | "No backedge in loop?"); |
| 235 | |
| 236 | // Insert a unit add instruction right before the terminator corresponding |
| 237 | // to the back-edge. |
Reid Spencer | 24d6da5 | 2007-01-21 00:29:26 +0000 | [diff] [blame] | 238 | Constant *One = ConstantInt::get(Ty, 1); |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 239 | Instruction *Add = BinaryOperator::CreateAdd(PN, One, "indvar.next", |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 240 | (*HPI)->getTerminator()); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 241 | InsertedValues.insert(Add); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 242 | |
| 243 | pred_iterator PI = pred_begin(Header); |
| 244 | if (*PI == L->getLoopPreheader()) |
| 245 | ++PI; |
| 246 | PN->addIncoming(Add, *PI); |
| 247 | return PN; |
| 248 | } |
| 249 | |
| 250 | // Get the canonical induction variable I for this loop. |
| 251 | Value *I = getOrInsertCanonicalInductionVariable(L, Ty); |
| 252 | |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 253 | // If this is a simple linear addrec, emit it now as a special case. |
Dan Gohman | 17f1972 | 2008-06-22 19:23:09 +0000 | [diff] [blame] | 254 | if (S->isAffine()) { // {0,+,F} --> i*F |
Dan Gohman | d19534a | 2007-06-15 14:38:12 +0000 | [diff] [blame] | 255 | Value *F = expand(S->getOperand(1)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 256 | F = InsertNoopCastOfTo(F, Ty); |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 257 | |
| 258 | // IF the step is by one, just return the inserted IV. |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 259 | if (ConstantInt *CI = dyn_cast<ConstantInt>(F)) |
Reid Spencer | 4d050d7 | 2007-03-01 19:45:00 +0000 | [diff] [blame] | 260 | if (CI->getValue() == 1) |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 261 | return I; |
| 262 | |
| 263 | // If the insert point is directly inside of the loop, emit the multiply at |
| 264 | // the insert point. Otherwise, L is a loop that is a parent of the insert |
| 265 | // point loop. If we can, move the multiply to the outer most loop that it |
| 266 | // is safe to be in. |
Dan Gohman | 6cdc727 | 2009-04-22 16:05:50 +0000 | [diff] [blame] | 267 | BasicBlock::iterator MulInsertPt = getInsertionPoint(); |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 268 | Loop *InsertPtLoop = LI.getLoopFor(MulInsertPt->getParent()); |
| 269 | if (InsertPtLoop != L && InsertPtLoop && |
| 270 | L->contains(InsertPtLoop->getHeader())) { |
Wojciech Matyjewicz | 5d2bc85 | 2008-06-14 16:48:22 +0000 | [diff] [blame] | 271 | do { |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 272 | // If we cannot hoist the multiply out of this loop, don't. |
| 273 | if (!InsertPtLoop->isLoopInvariant(F)) break; |
| 274 | |
Wojciech Matyjewicz | 5d2bc85 | 2008-06-14 16:48:22 +0000 | [diff] [blame] | 275 | BasicBlock *InsertPtLoopPH = InsertPtLoop->getLoopPreheader(); |
| 276 | |
| 277 | // If this loop hasn't got a preheader, we aren't able to hoist the |
| 278 | // multiply. |
| 279 | if (!InsertPtLoopPH) |
| 280 | break; |
| 281 | |
| 282 | // Otherwise, move the insert point to the preheader. |
| 283 | MulInsertPt = InsertPtLoopPH->getTerminator(); |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 284 | InsertPtLoop = InsertPtLoop->getParentLoop(); |
Wojciech Matyjewicz | 5d2bc85 | 2008-06-14 16:48:22 +0000 | [diff] [blame] | 285 | } while (InsertPtLoop != L); |
Chris Lattner | df14a04 | 2005-10-30 06:24:33 +0000 | [diff] [blame] | 286 | } |
| 287 | |
Chris Lattner | 7fec90e | 2007-04-13 05:04:18 +0000 | [diff] [blame] | 288 | return InsertBinop(Instruction::Mul, I, F, MulInsertPt); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | // If this is a chain of recurrences, turn it into a closed form, using the |
| 292 | // folders, then expandCodeFor the closed form. This allows the folders to |
| 293 | // simplify the expression without having to build a bunch of special code |
| 294 | // into this folder. |
Dan Gohman | 246b256 | 2007-10-22 18:31:58 +0000 | [diff] [blame] | 295 | SCEVHandle IH = SE.getUnknown(I); // Get I as a "symbolic" SCEV. |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 296 | |
Dan Gohman | 246b256 | 2007-10-22 18:31:58 +0000 | [diff] [blame] | 297 | SCEVHandle V = S->evaluateAtIteration(IH, SE); |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame] | 298 | //cerr << "Evaluated: " << *this << "\n to: " << *V << "\n"; |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 299 | |
Dan Gohman | d19534a | 2007-06-15 14:38:12 +0000 | [diff] [blame] | 300 | return expand(V); |
Nate Begeman | 36f891b | 2005-07-30 00:12:19 +0000 | [diff] [blame] | 301 | } |
Anton Korobeynikov | 96fea33 | 2007-08-20 21:17:26 +0000 | [diff] [blame] | 302 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 303 | Value *SCEVExpander::visitTruncateExpr(const SCEVTruncateExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 304 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 305 | Value *V = expand(S->getOperand()); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 306 | V = InsertNoopCastOfTo(V, SE.getEffectiveSCEVType(V->getType())); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 307 | Instruction *I = new TruncInst(V, Ty, "tmp.", InsertPt); |
| 308 | InsertedValues.insert(I); |
| 309 | return I; |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 310 | } |
| 311 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 312 | Value *SCEVExpander::visitZeroExtendExpr(const SCEVZeroExtendExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 313 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 314 | Value *V = expand(S->getOperand()); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 315 | V = InsertNoopCastOfTo(V, SE.getEffectiveSCEVType(V->getType())); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 316 | Instruction *I = new ZExtInst(V, Ty, "tmp.", InsertPt); |
| 317 | InsertedValues.insert(I); |
| 318 | return I; |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 319 | } |
| 320 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 321 | Value *SCEVExpander::visitSignExtendExpr(const SCEVSignExtendExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 322 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 323 | Value *V = expand(S->getOperand()); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 324 | V = InsertNoopCastOfTo(V, SE.getEffectiveSCEVType(V->getType())); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 325 | Instruction *I = new SExtInst(V, Ty, "tmp.", InsertPt); |
| 326 | InsertedValues.insert(I); |
| 327 | return I; |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 330 | Value *SCEVExpander::visitSMaxExpr(const SCEVSMaxExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 331 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Nick Lewycky | c54c561 | 2007-11-25 22:41:31 +0000 | [diff] [blame] | 332 | Value *LHS = expand(S->getOperand(0)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 333 | LHS = InsertNoopCastOfTo(LHS, Ty); |
Nick Lewycky | c54c561 | 2007-11-25 22:41:31 +0000 | [diff] [blame] | 334 | for (unsigned i = 1; i < S->getNumOperands(); ++i) { |
| 335 | Value *RHS = expand(S->getOperand(i)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 336 | RHS = InsertNoopCastOfTo(RHS, Ty); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 337 | Instruction *ICmp = |
| 338 | new ICmpInst(ICmpInst::ICMP_SGT, LHS, RHS, "tmp", InsertPt); |
| 339 | InsertedValues.insert(ICmp); |
| 340 | Instruction *Sel = SelectInst::Create(ICmp, LHS, RHS, "smax", InsertPt); |
| 341 | InsertedValues.insert(Sel); |
| 342 | LHS = Sel; |
Nick Lewycky | c54c561 | 2007-11-25 22:41:31 +0000 | [diff] [blame] | 343 | } |
| 344 | return LHS; |
| 345 | } |
| 346 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 347 | Value *SCEVExpander::visitUMaxExpr(const SCEVUMaxExpr *S) { |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 348 | const Type *Ty = SE.getEffectiveSCEVType(S->getType()); |
Nick Lewycky | 3e63076 | 2008-02-20 06:48:22 +0000 | [diff] [blame] | 349 | Value *LHS = expand(S->getOperand(0)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 350 | LHS = InsertNoopCastOfTo(LHS, Ty); |
Nick Lewycky | 3e63076 | 2008-02-20 06:48:22 +0000 | [diff] [blame] | 351 | for (unsigned i = 1; i < S->getNumOperands(); ++i) { |
| 352 | Value *RHS = expand(S->getOperand(i)); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 353 | RHS = InsertNoopCastOfTo(RHS, Ty); |
Dan Gohman | cf5ab82 | 2009-05-01 17:13:31 +0000 | [diff] [blame] | 354 | Instruction *ICmp = |
| 355 | new ICmpInst(ICmpInst::ICMP_UGT, LHS, RHS, "tmp", InsertPt); |
| 356 | InsertedValues.insert(ICmp); |
| 357 | Instruction *Sel = SelectInst::Create(ICmp, LHS, RHS, "umax", InsertPt); |
| 358 | InsertedValues.insert(Sel); |
| 359 | LHS = Sel; |
Nick Lewycky | 3e63076 | 2008-02-20 06:48:22 +0000 | [diff] [blame] | 360 | } |
| 361 | return LHS; |
| 362 | } |
| 363 | |
Dan Gohman | 752ec7d | 2009-04-23 15:16:49 +0000 | [diff] [blame] | 364 | Value *SCEVExpander::expandCodeFor(SCEVHandle SH, const Type *Ty) { |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 365 | // Expand the code for this SCEV. |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 366 | assert(SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(SH->getType()) && |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 367 | "non-trivial casts should be done with the SCEVs directly!"); |
Dan Gohman | 2d1be87 | 2009-04-16 03:18:22 +0000 | [diff] [blame] | 368 | Value *V = expand(SH); |
Dan Gohman | af79fb5 | 2009-04-21 01:07:12 +0000 | [diff] [blame] | 369 | return InsertNoopCastOfTo(V, Ty); |
Dan Gohman | 11f6d3b | 2008-06-22 19:09:18 +0000 | [diff] [blame] | 370 | } |
| 371 | |
Dan Gohman | 890f92b | 2009-04-18 17:56:28 +0000 | [diff] [blame] | 372 | Value *SCEVExpander::expand(const SCEV *S) { |
Anton Korobeynikov | 96fea33 | 2007-08-20 21:17:26 +0000 | [diff] [blame] | 373 | // Check to see if we already expanded this. |
| 374 | std::map<SCEVHandle, Value*>::iterator I = InsertedExpressions.find(S); |
| 375 | if (I != InsertedExpressions.end()) |
| 376 | return I->second; |
| 377 | |
| 378 | Value *V = visit(S); |
| 379 | InsertedExpressions[S] = V; |
| 380 | return V; |
| 381 | } |