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

  /external/llvm/lib/Analysis/
LoopInfo.cpp 49 /// isLoopInvariant - Return true if the specified value is loop invariant
51 bool Loop::isLoopInvariant(Value *V) const {
61 if (!isLoopInvariant(I->getOperand(i)))
71 /// isLoopInvariant.
87 /// isLoopInvariant.
95 if (isLoopInvariant(I))
LoopDependenceAnalysis.cpp 137 if (!SE->isLoopInvariant(S, L))
141 bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const {
149 return isLoopInvariant(S) || (rec && rec->isAffine());
153 return isLoopInvariant(A) && isLoopInvariant(B);
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 573 if (!SE->isLoopInvariant(ExitValue, L))
661 if (SE->isLoopInvariant(S, L)) return true;
712 if (SE->isLoopInvariant(ExitVal, L))
    [all...]

Completed in 67 milliseconds