mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-03 14:21:30 +00:00
Move SCEVExpander::getOrInsertCanonicalInductionVariable out of line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72949 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -60,12 +60,7 @@ namespace llvm {
|
|||||||
/// canonical induction variable of the specified type for the specified
|
/// canonical induction variable of the specified type for the specified
|
||||||
/// loop (inserting one if there is none). A canonical induction variable
|
/// loop (inserting one if there is none). A canonical induction variable
|
||||||
/// starts at zero and steps by one on each iteration.
|
/// starts at zero and steps by one on each iteration.
|
||||||
Value *getOrInsertCanonicalInductionVariable(const Loop *L, const Type *Ty){
|
Value *getOrInsertCanonicalInductionVariable(const Loop *L, const Type *Ty);
|
||||||
assert(Ty->isInteger() && "Can only insert integer induction variables!");
|
|
||||||
SCEVHandle H = SE.getAddRecExpr(SE.getIntegerSCEV(0, Ty),
|
|
||||||
SE.getIntegerSCEV(1, Ty), L);
|
|
||||||
return expand(H);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// addInsertedValue - Remember the specified instruction as being the
|
/// addInsertedValue - Remember the specified instruction as being the
|
||||||
/// canonical form for the specified SCEV.
|
/// canonical form for the specified SCEV.
|
||||||
|
|||||||
@@ -644,3 +644,16 @@ Value *SCEVExpander::expand(const SCEV *S) {
|
|||||||
InsertedExpressions[S] = V;
|
InsertedExpressions[S] = V;
|
||||||
return V;
|
return V;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// getOrInsertCanonicalInductionVariable - This method returns the
|
||||||
|
/// canonical induction variable of the specified type for the specified
|
||||||
|
/// loop (inserting one if there is none). A canonical induction variable
|
||||||
|
/// starts at zero and steps by one on each iteration.
|
||||||
|
Value *
|
||||||
|
SCEVExpander::getOrInsertCanonicalInductionVariable(const Loop *L,
|
||||||
|
const Type *Ty) {
|
||||||
|
assert(Ty->isInteger() && "Can only insert integer induction variables!");
|
||||||
|
SCEVHandle H = SE.getAddRecExpr(SE.getIntegerSCEV(0, Ty),
|
||||||
|
SE.getIntegerSCEV(1, Ty), L);
|
||||||
|
return expand(H);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user