HomeSort by relevance Sort by last modified time
    Searched defs:isLoopInvariant (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
LoopDependenceAnalysis.cpp 143 if (!SE->isLoopInvariant(S, L))
147 bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const {
155 return isLoopInvariant(S) || (rec && rec->isAffine());
159 return isLoopInvariant(A) && isLoopInvariant(B);
LoopInfo.cpp 50 /// isLoopInvariant - Return true if the specified value is loop invariant
52 bool Loop::isLoopInvariant(Value *V) const {
62 if (!isLoopInvariant(I->getOperand(i)))
72 /// isLoopInvariant.
88 /// isLoopInvariant.
96 if (isLoopInvariant(I))
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 552 if (!SE->isLoopInvariant(ExitValue, L))
610 if (SE->isLoopInvariant(S, L)) return true;
662 if (SE->isLoopInvariant(ExitVal, L))
852 /// isLoopInvariant - Perform a quick domtree based check for loop invariance
853 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems
855 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) {
    [all...]

Completed in 852 milliseconds