blob: 74c11183e81e15e0729a780af032b30bdbccd955 [file] [log] [blame]
Nate Begeman36f891b2005-07-30 00:12:19 +00001//===- ScalarEvolutionExpander.cpp - Scalar Evolution Analysis --*- C++ -*-===//
2//
3// 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.
Nate Begeman36f891b2005-07-30 00:12:19 +00007//
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 Begeman36f891b2005-07-30 00:12:19 +000016#include "llvm/Analysis/ScalarEvolutionExpander.h"
Bill Wendlinge8156192006-12-07 01:30:32 +000017#include "llvm/Analysis/LoopInfo.h"
Nate Begeman36f891b2005-07-30 00:12:19 +000018using namespace llvm;
19
Chris Lattnerca1a4be2006-02-04 09:51:53 +000020/// InsertCastOfTo - Insert a cast of V to the specified type, doing what
21/// we can to share the casts.
Reid Spencer3ba68b92006-12-13 08:06:42 +000022Value *SCEVExpander::InsertCastOfTo(Instruction::CastOps opcode, Value *V,
23 const Type *Ty) {
Dan Gohman2d1be872009-04-16 03:18:22 +000024 // Short-circuit unnecessary bitcasts.
25 if (opcode == Instruction::BitCast && V->getType() == Ty)
26 return V;
27
Dan Gohmanf04fa482009-04-16 15:52:57 +000028 // Short-circuit unnecessary inttoptr<->ptrtoint casts.
Dan Gohmanaf79fb52009-04-21 01:07:12 +000029 if ((opcode == Instruction::PtrToInt || opcode == Instruction::IntToPtr) &&
30 SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType()))
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 Gohmanf04fa482009-04-16 15:52:57 +000037
Chris Lattnerca1a4be2006-02-04 09:51:53 +000038 // FIXME: keep track of the cast instruction.
39 if (Constant *C = dyn_cast<Constant>(V))
Reid Spencerd977d862006-12-12 23:36:14 +000040 return ConstantExpr::getCast(opcode, C, Ty);
Chris Lattnerca1a4be2006-02-04 09:51:53 +000041
42 if (Argument *A = dyn_cast<Argument>(V)) {
43 // Check to see if there is already a cast!
44 for (Value::use_iterator UI = A->use_begin(), E = A->use_end();
45 UI != E; ++UI) {
46 if ((*UI)->getType() == Ty)
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000047 if (CastInst *CI = dyn_cast<CastInst>(cast<Instruction>(*UI)))
48 if (CI->getOpcode() == opcode) {
49 // If the cast isn't the first instruction of the function, move it.
50 if (BasicBlock::iterator(CI) !=
51 A->getParent()->getEntryBlock().begin()) {
Dan Gohmanaabb04f2009-04-22 16:11:16 +000052 // If the CastInst is the insert point, change the insert point.
53 if (CI == InsertPt) ++InsertPt;
54 // Splice the cast at the beginning of the entry block.
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000055 CI->moveBefore(A->getParent()->getEntryBlock().begin());
56 }
57 return CI;
Chris Lattnerca1a4be2006-02-04 09:51:53 +000058 }
Chris Lattnerca1a4be2006-02-04 09:51:53 +000059 }
Gabor Greif7cbd8a32008-05-16 19:29:10 +000060 return CastInst::Create(opcode, V, Ty, V->getName(),
Reid Spencerd977d862006-12-12 23:36:14 +000061 A->getParent()->getEntryBlock().begin());
Chris Lattnerca1a4be2006-02-04 09:51:53 +000062 }
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000063
Chris Lattnerca1a4be2006-02-04 09:51:53 +000064 Instruction *I = cast<Instruction>(V);
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000065
Chris Lattnerca1a4be2006-02-04 09:51:53 +000066 // Check to see if there is already a cast. If there is, use it.
67 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
68 UI != E; ++UI) {
69 if ((*UI)->getType() == Ty)
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000070 if (CastInst *CI = dyn_cast<CastInst>(cast<Instruction>(*UI)))
71 if (CI->getOpcode() == opcode) {
72 BasicBlock::iterator It = I; ++It;
73 if (isa<InvokeInst>(I))
74 It = cast<InvokeInst>(I)->getNormalDest()->begin();
75 while (isa<PHINode>(It)) ++It;
76 if (It != BasicBlock::iterator(CI)) {
Dan Gohmanaabb04f2009-04-22 16:11:16 +000077 // If the CastInst is the insert point, change the insert point.
78 if (CI == InsertPt) ++InsertPt;
Wojciech Matyjewicz39131872008-02-09 18:30:13 +000079 // Splice the cast immediately after the operand in question.
80 CI->moveBefore(It);
81 }
82 return CI;
Chris Lattnerca1a4be2006-02-04 09:51:53 +000083 }
Chris Lattnerca1a4be2006-02-04 09:51:53 +000084 }
85 BasicBlock::iterator IP = I; ++IP;
86 if (InvokeInst *II = dyn_cast<InvokeInst>(I))
87 IP = II->getNormalDest()->begin();
88 while (isa<PHINode>(IP)) ++IP;
Gabor Greif7cbd8a32008-05-16 19:29:10 +000089 return CastInst::Create(opcode, V, Ty, V->getName(), IP);
Chris Lattnerca1a4be2006-02-04 09:51:53 +000090}
91
Dan Gohmanaf79fb52009-04-21 01:07:12 +000092/// InsertNoopCastOfTo - Insert a cast of V to the specified type,
93/// which must be possible with a noop cast.
94Value *SCEVExpander::InsertNoopCastOfTo(Value *V, const Type *Ty) {
95 Instruction::CastOps Op = CastInst::getCastOpcode(V, false, Ty, false);
96 assert((Op == Instruction::BitCast ||
97 Op == Instruction::Instruction::PtrToInt ||
98 Op == Instruction::Instruction::IntToPtr) &&
99 "InsertNoopCastOfTo cannot perform non-noop casts!");
100 assert(SE.getTypeSizeInBits(V->getType()) == SE.getTypeSizeInBits(Ty) &&
101 "InsertNoopCastOfTo cannot change sizes!");
102 return InsertCastOfTo(Op, V, Ty);
103}
104
Chris Lattner7fec90e2007-04-13 05:04:18 +0000105/// InsertBinop - Insert the specified binary operator, doing a small amount
106/// of work to avoid inserting an obviously redundant operation.
107Value *SCEVExpander::InsertBinop(Instruction::BinaryOps Opcode, Value *LHS,
Dan Gohman6cdc7272009-04-22 16:05:50 +0000108 Value *RHS, BasicBlock::iterator InsertPt) {
Dan Gohman0f0eb182007-06-15 19:21:55 +0000109 // Fold a binop with constant operands.
110 if (Constant *CLHS = dyn_cast<Constant>(LHS))
111 if (Constant *CRHS = dyn_cast<Constant>(RHS))
112 return ConstantExpr::get(Opcode, CLHS, CRHS);
113
Chris Lattner7fec90e2007-04-13 05:04:18 +0000114 // Do a quick scan to see if we have this binop nearby. If so, reuse it.
115 unsigned ScanLimit = 6;
Wojciech Matyjewicz8a087692008-06-15 19:07:39 +0000116 BasicBlock::iterator BlockBegin = InsertPt->getParent()->begin();
117 if (InsertPt != BlockBegin) {
118 // Scanning starts from the last instruction before InsertPt.
119 BasicBlock::iterator IP = InsertPt;
120 --IP;
121 for (; ScanLimit; --IP, --ScanLimit) {
122 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(IP))
123 if (BinOp->getOpcode() == Opcode && BinOp->getOperand(0) == LHS &&
124 BinOp->getOperand(1) == RHS)
125 return BinOp;
126 if (IP == BlockBegin) break;
127 }
Chris Lattner7fec90e2007-04-13 05:04:18 +0000128 }
Wojciech Matyjewicz8a087692008-06-15 19:07:39 +0000129
130 // If we haven't found this binop, insert it.
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000131 return BinaryOperator::Create(Opcode, LHS, RHS, "tmp", InsertPt);
Chris Lattner7fec90e2007-04-13 05:04:18 +0000132}
133
Dan Gohman890f92b2009-04-18 17:56:28 +0000134Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000135 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohmane24fa642008-06-18 16:37:11 +0000136 Value *V = expand(S->getOperand(S->getNumOperands()-1));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000137 V = InsertNoopCastOfTo(V, Ty);
Dan Gohmane24fa642008-06-18 16:37:11 +0000138
139 // Emit a bunch of add instructions
Dan Gohman2d1be872009-04-16 03:18:22 +0000140 for (int i = S->getNumOperands()-2; i >= 0; --i) {
141 Value *W = expand(S->getOperand(i));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000142 W = InsertNoopCastOfTo(W, Ty);
Dan Gohman2d1be872009-04-16 03:18:22 +0000143 V = InsertBinop(Instruction::Add, V, W, InsertPt);
144 }
Dan Gohmane24fa642008-06-18 16:37:11 +0000145 return V;
146}
147
Dan Gohman890f92b2009-04-18 17:56:28 +0000148Value *SCEVExpander::visitMulExpr(const SCEVMulExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000149 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman36f891b2005-07-30 00:12:19 +0000150 int FirstOp = 0; // Set if we should emit a subtract.
Dan Gohman890f92b2009-04-18 17:56:28 +0000151 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getOperand(0)))
Nate Begeman36f891b2005-07-30 00:12:19 +0000152 if (SC->getValue()->isAllOnesValue())
153 FirstOp = 1;
154
155 int i = S->getNumOperands()-2;
Dan Gohmand19534a2007-06-15 14:38:12 +0000156 Value *V = expand(S->getOperand(i+1));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000157 V = InsertNoopCastOfTo(V, Ty);
Nate Begeman36f891b2005-07-30 00:12:19 +0000158
159 // Emit a bunch of multiply instructions
Dan Gohman2d1be872009-04-16 03:18:22 +0000160 for (; i >= FirstOp; --i) {
161 Value *W = expand(S->getOperand(i));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000162 W = InsertNoopCastOfTo(W, Ty);
Dan Gohman2d1be872009-04-16 03:18:22 +0000163 V = InsertBinop(Instruction::Mul, V, W, InsertPt);
164 }
165
Nate Begeman36f891b2005-07-30 00:12:19 +0000166 // -1 * ... ---> 0 - ...
167 if (FirstOp == 1)
Dan Gohman2d1be872009-04-16 03:18:22 +0000168 V = InsertBinop(Instruction::Sub, Constant::getNullValue(Ty), V, InsertPt);
Nate Begeman36f891b2005-07-30 00:12:19 +0000169 return V;
170}
171
Dan Gohman890f92b2009-04-18 17:56:28 +0000172Value *SCEVExpander::visitUDivExpr(const SCEVUDivExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000173 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman2d1be872009-04-16 03:18:22 +0000174
Nick Lewycky6177fd42008-07-08 05:05:37 +0000175 Value *LHS = expand(S->getLHS());
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000176 LHS = InsertNoopCastOfTo(LHS, Ty);
Dan Gohman890f92b2009-04-18 17:56:28 +0000177 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(S->getRHS())) {
Nick Lewycky6177fd42008-07-08 05:05:37 +0000178 const APInt &RHS = SC->getValue()->getValue();
179 if (RHS.isPowerOf2())
180 return InsertBinop(Instruction::LShr, LHS,
Dan Gohman2d1be872009-04-16 03:18:22 +0000181 ConstantInt::get(Ty, RHS.logBase2()),
Nick Lewycky6177fd42008-07-08 05:05:37 +0000182 InsertPt);
183 }
184
185 Value *RHS = expand(S->getRHS());
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000186 RHS = InsertNoopCastOfTo(RHS, Ty);
Nick Lewycky6177fd42008-07-08 05:05:37 +0000187 return InsertBinop(Instruction::UDiv, LHS, RHS, InsertPt);
188}
189
Dan Gohman890f92b2009-04-18 17:56:28 +0000190Value *SCEVExpander::visitAddRecExpr(const SCEVAddRecExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000191 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nate Begeman36f891b2005-07-30 00:12:19 +0000192 const Loop *L = S->getLoop();
Nate Begeman36f891b2005-07-30 00:12:19 +0000193
194 // {X,+,F} --> X + {0,+,F}
Dan Gohmancfeb6a42008-06-18 16:23:07 +0000195 if (!S->getStart()->isZero()) {
Dan Gohmand19534a2007-06-15 14:38:12 +0000196 Value *Start = expand(S->getStart());
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000197 Start = InsertNoopCastOfTo(Start, Ty);
Nate Begeman36f891b2005-07-30 00:12:19 +0000198 std::vector<SCEVHandle> NewOps(S->op_begin(), S->op_end());
Dan Gohman246b2562007-10-22 18:31:58 +0000199 NewOps[0] = SE.getIntegerSCEV(0, Ty);
200 Value *Rest = expand(SE.getAddRecExpr(NewOps, L));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000201 Rest = InsertNoopCastOfTo(Rest, Ty);
Nate Begeman36f891b2005-07-30 00:12:19 +0000202
203 // FIXME: look for an existing add to use.
Chris Lattner7fec90e2007-04-13 05:04:18 +0000204 return InsertBinop(Instruction::Add, Rest, Start, InsertPt);
Nate Begeman36f891b2005-07-30 00:12:19 +0000205 }
206
207 // {0,+,1} --> Insert a canonical induction variable into the loop!
Dan Gohman17f19722008-06-22 19:23:09 +0000208 if (S->isAffine() &&
Dan Gohman246b2562007-10-22 18:31:58 +0000209 S->getOperand(1) == SE.getIntegerSCEV(1, Ty)) {
Nate Begeman36f891b2005-07-30 00:12:19 +0000210 // Create and insert the PHI node for the induction variable in the
211 // specified loop.
212 BasicBlock *Header = L->getHeader();
Gabor Greif051a9502008-04-06 20:25:17 +0000213 PHINode *PN = PHINode::Create(Ty, "indvar", Header->begin());
Nate Begeman36f891b2005-07-30 00:12:19 +0000214 PN->addIncoming(Constant::getNullValue(Ty), L->getLoopPreheader());
215
216 pred_iterator HPI = pred_begin(Header);
217 assert(HPI != pred_end(Header) && "Loop with zero preds???");
218 if (!L->contains(*HPI)) ++HPI;
219 assert(HPI != pred_end(Header) && L->contains(*HPI) &&
220 "No backedge in loop?");
221
222 // Insert a unit add instruction right before the terminator corresponding
223 // to the back-edge.
Reid Spencer24d6da52007-01-21 00:29:26 +0000224 Constant *One = ConstantInt::get(Ty, 1);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000225 Instruction *Add = BinaryOperator::CreateAdd(PN, One, "indvar.next",
Nate Begeman36f891b2005-07-30 00:12:19 +0000226 (*HPI)->getTerminator());
227
228 pred_iterator PI = pred_begin(Header);
229 if (*PI == L->getLoopPreheader())
230 ++PI;
231 PN->addIncoming(Add, *PI);
232 return PN;
233 }
234
235 // Get the canonical induction variable I for this loop.
236 Value *I = getOrInsertCanonicalInductionVariable(L, Ty);
237
Chris Lattnerdf14a042005-10-30 06:24:33 +0000238 // If this is a simple linear addrec, emit it now as a special case.
Dan Gohman17f19722008-06-22 19:23:09 +0000239 if (S->isAffine()) { // {0,+,F} --> i*F
Dan Gohmand19534a2007-06-15 14:38:12 +0000240 Value *F = expand(S->getOperand(1));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000241 F = InsertNoopCastOfTo(F, Ty);
Chris Lattnerdf14a042005-10-30 06:24:33 +0000242
243 // IF the step is by one, just return the inserted IV.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000244 if (ConstantInt *CI = dyn_cast<ConstantInt>(F))
Reid Spencer4d050d72007-03-01 19:45:00 +0000245 if (CI->getValue() == 1)
Chris Lattnerdf14a042005-10-30 06:24:33 +0000246 return I;
247
248 // If the insert point is directly inside of the loop, emit the multiply at
249 // the insert point. Otherwise, L is a loop that is a parent of the insert
250 // point loop. If we can, move the multiply to the outer most loop that it
251 // is safe to be in.
Dan Gohman6cdc7272009-04-22 16:05:50 +0000252 BasicBlock::iterator MulInsertPt = getInsertionPoint();
Chris Lattnerdf14a042005-10-30 06:24:33 +0000253 Loop *InsertPtLoop = LI.getLoopFor(MulInsertPt->getParent());
254 if (InsertPtLoop != L && InsertPtLoop &&
255 L->contains(InsertPtLoop->getHeader())) {
Wojciech Matyjewicz5d2bc852008-06-14 16:48:22 +0000256 do {
Chris Lattnerdf14a042005-10-30 06:24:33 +0000257 // If we cannot hoist the multiply out of this loop, don't.
258 if (!InsertPtLoop->isLoopInvariant(F)) break;
259
Wojciech Matyjewicz5d2bc852008-06-14 16:48:22 +0000260 BasicBlock *InsertPtLoopPH = InsertPtLoop->getLoopPreheader();
261
262 // If this loop hasn't got a preheader, we aren't able to hoist the
263 // multiply.
264 if (!InsertPtLoopPH)
265 break;
266
267 // Otherwise, move the insert point to the preheader.
268 MulInsertPt = InsertPtLoopPH->getTerminator();
Chris Lattnerdf14a042005-10-30 06:24:33 +0000269 InsertPtLoop = InsertPtLoop->getParentLoop();
Wojciech Matyjewicz5d2bc852008-06-14 16:48:22 +0000270 } while (InsertPtLoop != L);
Chris Lattnerdf14a042005-10-30 06:24:33 +0000271 }
272
Chris Lattner7fec90e2007-04-13 05:04:18 +0000273 return InsertBinop(Instruction::Mul, I, F, MulInsertPt);
Nate Begeman36f891b2005-07-30 00:12:19 +0000274 }
275
276 // If this is a chain of recurrences, turn it into a closed form, using the
277 // folders, then expandCodeFor the closed form. This allows the folders to
278 // simplify the expression without having to build a bunch of special code
279 // into this folder.
Dan Gohman246b2562007-10-22 18:31:58 +0000280 SCEVHandle IH = SE.getUnknown(I); // Get I as a "symbolic" SCEV.
Nate Begeman36f891b2005-07-30 00:12:19 +0000281
Dan Gohman246b2562007-10-22 18:31:58 +0000282 SCEVHandle V = S->evaluateAtIteration(IH, SE);
Bill Wendlinge8156192006-12-07 01:30:32 +0000283 //cerr << "Evaluated: " << *this << "\n to: " << *V << "\n";
Nate Begeman36f891b2005-07-30 00:12:19 +0000284
Dan Gohmand19534a2007-06-15 14:38:12 +0000285 return expand(V);
Nate Begeman36f891b2005-07-30 00:12:19 +0000286}
Anton Korobeynikov96fea332007-08-20 21:17:26 +0000287
Dan Gohman890f92b2009-04-18 17:56:28 +0000288Value *SCEVExpander::visitTruncateExpr(const SCEVTruncateExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000289 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000290 Value *V = expand(S->getOperand());
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000291 V = InsertNoopCastOfTo(V, SE.getEffectiveSCEVType(V->getType()));
Dan Gohman6cdc7272009-04-22 16:05:50 +0000292 return new TruncInst(V, Ty, "tmp.", InsertPt);
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000293}
294
Dan Gohman890f92b2009-04-18 17:56:28 +0000295Value *SCEVExpander::visitZeroExtendExpr(const SCEVZeroExtendExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000296 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000297 Value *V = expand(S->getOperand());
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000298 V = InsertNoopCastOfTo(V, SE.getEffectiveSCEVType(V->getType()));
Dan Gohman6cdc7272009-04-22 16:05:50 +0000299 return new ZExtInst(V, Ty, "tmp.", InsertPt);
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000300}
301
Dan Gohman890f92b2009-04-18 17:56:28 +0000302Value *SCEVExpander::visitSignExtendExpr(const SCEVSignExtendExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000303 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000304 Value *V = expand(S->getOperand());
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000305 V = InsertNoopCastOfTo(V, SE.getEffectiveSCEVType(V->getType()));
Dan Gohman6cdc7272009-04-22 16:05:50 +0000306 return new SExtInst(V, Ty, "tmp.", InsertPt);
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000307}
308
Dan Gohman890f92b2009-04-18 17:56:28 +0000309Value *SCEVExpander::visitSMaxExpr(const SCEVSMaxExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000310 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nick Lewyckyc54c5612007-11-25 22:41:31 +0000311 Value *LHS = expand(S->getOperand(0));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000312 LHS = InsertNoopCastOfTo(LHS, Ty);
Nick Lewyckyc54c5612007-11-25 22:41:31 +0000313 for (unsigned i = 1; i < S->getNumOperands(); ++i) {
314 Value *RHS = expand(S->getOperand(i));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000315 RHS = InsertNoopCastOfTo(RHS, Ty);
Nick Lewyckyc54c5612007-11-25 22:41:31 +0000316 Value *ICmp = new ICmpInst(ICmpInst::ICMP_SGT, LHS, RHS, "tmp", InsertPt);
Gabor Greif051a9502008-04-06 20:25:17 +0000317 LHS = SelectInst::Create(ICmp, LHS, RHS, "smax", InsertPt);
Nick Lewyckyc54c5612007-11-25 22:41:31 +0000318 }
319 return LHS;
320}
321
Dan Gohman890f92b2009-04-18 17:56:28 +0000322Value *SCEVExpander::visitUMaxExpr(const SCEVUMaxExpr *S) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000323 const Type *Ty = SE.getEffectiveSCEVType(S->getType());
Nick Lewycky3e630762008-02-20 06:48:22 +0000324 Value *LHS = expand(S->getOperand(0));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000325 LHS = InsertNoopCastOfTo(LHS, Ty);
Nick Lewycky3e630762008-02-20 06:48:22 +0000326 for (unsigned i = 1; i < S->getNumOperands(); ++i) {
327 Value *RHS = expand(S->getOperand(i));
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000328 RHS = InsertNoopCastOfTo(RHS, Ty);
Nick Lewycky3e630762008-02-20 06:48:22 +0000329 Value *ICmp = new ICmpInst(ICmpInst::ICMP_UGT, LHS, RHS, "tmp", InsertPt);
Gabor Greif051a9502008-04-06 20:25:17 +0000330 LHS = SelectInst::Create(ICmp, LHS, RHS, "umax", InsertPt);
Nick Lewycky3e630762008-02-20 06:48:22 +0000331 }
332 return LHS;
333}
334
Dan Gohman2d1be872009-04-16 03:18:22 +0000335Value *SCEVExpander::expandCodeFor(SCEVHandle SH, const Type *Ty,
Dan Gohman6cdc7272009-04-22 16:05:50 +0000336 BasicBlock::iterator IP) {
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000337 // Expand the code for this SCEV.
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000338 assert(SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(SH->getType()) &&
Dan Gohman2d1be872009-04-16 03:18:22 +0000339 "non-trivial casts should be done with the SCEVs directly!");
Dan Gohman6cdc7272009-04-22 16:05:50 +0000340 InsertPt = IP;
Dan Gohman2d1be872009-04-16 03:18:22 +0000341 Value *V = expand(SH);
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000342 return InsertNoopCastOfTo(V, Ty);
Dan Gohman11f6d3b2008-06-22 19:09:18 +0000343}
344
Dan Gohman890f92b2009-04-18 17:56:28 +0000345Value *SCEVExpander::expand(const SCEV *S) {
Anton Korobeynikov96fea332007-08-20 21:17:26 +0000346 // Check to see if we already expanded this.
347 std::map<SCEVHandle, Value*>::iterator I = InsertedExpressions.find(S);
348 if (I != InsertedExpressions.end())
349 return I->second;
350
351 Value *V = visit(S);
352 InsertedExpressions[S] = V;
353 return V;
354}