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 141 if (!SE->isLoopInvariant(S, L))
145 bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const {
153 return isLoopInvariant(S) || (rec && rec->isAffine());
157 return isLoopInvariant(A) && isLoopInvariant(B);
LoopInfo.cpp 56 /// isLoopInvariant - Return true if the specified value is loop invariant
58 bool Loop::isLoopInvariant(Value *V) const {
68 if (!isLoopInvariant(I->getOperand(i)))
78 /// isLoopInvariant.
94 /// isLoopInvariant.
102 if (isLoopInvariant(I))
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 537 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) {
736 L && L->getLoopPreheader() && isLoopInvariant(NarrowOper, L, DT);
    [all...]

Completed in 71 milliseconds