Searched defs:isLoopInvariant (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DLoopDependenceAnalysis.cpp141 if (!SE->isLoopInvariant(S, L))
145 bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const { function in class:LoopDependenceAnalysis
153 return isLoopInvariant(S) || (rec && rec->isAffine());
157 return isLoopInvariant(A) && isLoopInvariant(B);
H A DLoopInfo.cpp56 /// isLoopInvariant - Return true if the specified value is loop invariant
58 bool Loop::isLoopInvariant(Value *V) const { function in class:Loop
68 if (!isLoopInvariant(I->getOperand(i)))
78 /// isLoopInvariant.
94 /// isLoopInvariant.
102 if (isLoopInvariant(I))
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp537 if (!SE->isLoopInvariant(ExitValue, L))
719 /// isLoopInvariant - Perform a quick domtree based check for loop invariance
720 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems
722 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) { function
736 L && L->getLoopPreheader() && isLoopInvariant(NarrowOper, L, DT);
1204 if (isLoopInvariant(IncI->getOperand(1), L, DT))
1214 if (isLoopInvariant(IncI->getOperand(0), L, DT))
1251 if (!isLoopInvariant(RHS, L, DT)) {
1252 if (!isLoopInvariant(LHS, L, DT))
1442 assert(SE->isLoopInvariant(IVOffse
[all...]

Completed in 105 milliseconds