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.cpp51 /// isLoopInvariant - Return true if the specified value is loop invariant
53 bool Loop::isLoopInvariant(Value *V) const { function in class:Loop
63 if (!isLoopInvariant(I->getOperand(i)))
73 /// isLoopInvariant.
89 /// isLoopInvariant.
97 if (isLoopInvariant(I))
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp535 if (!SE->isLoopInvariant(ExitValue, L))
717 /// isLoopInvariant - Perform a quick domtree based check for loop invariance
718 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems
720 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) { function
734 L && L->getLoopPreheader() && isLoopInvariant(NarrowOper, L, DT);
1202 if (isLoopInvariant(IncI->getOperand(1), L, DT))
1212 if (isLoopInvariant(IncI->getOperand(0), L, DT))
1244 if (!isLoopInvariant(RHS, L, DT)) {
1245 if (!isLoopInvariant(LHS, L, DT))
1378 assert(SE->isLoopInvariant(IVOffse
[all...]

Completed in 56 milliseconds