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 59 /// isLoopInvariant - Return true if the specified value is loop invariant
61 bool Loop::isLoopInvariant(Value *V) const {
71 if (!isLoopInvariant(I->getOperand(i)))
81 /// isLoopInvariant.
97 /// isLoopInvariant.
105 if (isLoopInvariant(I))
DependenceAnalysis.cpp 762 bool DependenceAnalysis::isLoopInvariant(const SCEV *Expression,
766 return SE->isLoopInvariant(Expression, LoopNest) &&
767 isLoopInvariant(Expression, LoopNest->getParentLoop());
779 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest))
812 return isLoopInvariant(Src, LoopNest);
815 if (!isLoopInvariant(Step, LoopNest))
830 return isLoopInvariant(Dst, LoopNest);
833 if (!isLoopInvariant(Step, LoopNest))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 554 if (!SE->isLoopInvariant(ExitValue, L) ||
766 /// isLoopInvariant - Perform a quick domtree based check for loop invariance
767 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems
769 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) {
783 L && L->getLoopPreheader() && isLoopInvariant(NarrowOper, L, DT);
    [all...]

Completed in 166 milliseconds