/external/llvm/lib/Transforms/Scalar/ |
IndVarSimplify.cpp | 535 if (!SE->isLoopInvariant(ExitValue, L) || !isSafeToExpand(ExitValue)) 758 /// isLoopInvariant - Perform a quick domtree based check for loop invariance 759 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems 761 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) { 775 L && L->getLoopPreheader() && isLoopInvariant(NarrowOper, L, DT); [all...] |
LICM.cpp | 729 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue())) [all...] |
LoopIdiomRecognize.cpp | [all...] |
LoopStrengthReduce.cpp | [all...] |
/external/llvm/lib/Analysis/ |
LoopInfo.cpp | 60 /// isLoopInvariant - Return true if the specified value is loop invariant 62 bool Loop::isLoopInvariant(Value *V) const { 72 if (!isLoopInvariant(I->getOperand(i))) 82 /// isLoopInvariant. 98 /// isLoopInvariant. 106 if (isLoopInvariant(I))
|
DependenceAnalysis.cpp | 757 bool DependenceAnalysis::isLoopInvariant(const SCEV *Expression, 761 return SE->isLoopInvariant(Expression, LoopNest) && 762 isLoopInvariant(Expression, LoopNest->getParentLoop()); 774 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest)) 807 return isLoopInvariant(Src, LoopNest); 810 if (!isLoopInvariant(Step, LoopNest)) 825 return isLoopInvariant(Dst, LoopNest); 828 if (!isLoopInvariant(Step, LoopNest)) [all...] |
ScalarEvolutionExpander.cpp | 184 if (!L->isLoopInvariant(LHS) || !L->isLoopInvariant(RHS)) break; 556 if (!L->isLoopInvariant(V) || !L->isLoopInvariant(Idx)) break; 581 if (!L->isLoopInvariant(V)) break; 586 if (!L->isLoopInvariant(*I)) { [all...] |
ScalarEvolution.cpp | [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
LoopVectorize.cpp | [all...] |
/external/llvm/include/llvm/Analysis/ |
DependenceAnalysis.h | 522 /// isLoopInvariant - Returns true if Expression is loop invariant 524 bool isLoopInvariant(const SCEV *Expression, const Loop *LoopNest) const; [all...] |
LoopInfo.h | 328 /// isLoopInvariant - Return true if the specified value is loop invariant 330 bool isLoopInvariant(Value *V) const; 340 /// isLoopInvariant. 352 /// isLoopInvariant.
|
ScalarEvolution.h | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCCTRLoops.cpp | 422 } else if (!SE->isLoopInvariant(EC, L))
|