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 60 /// isLoopInvariant - Return true if the specified value is loop invariant
62 bool Loop::isLoopInvariant(Value *V) const {
72 if (!isLoopInvariant(I->getOperand(i)))
82 /// isLoopInvariant.
98 /// isLoopInvariant.
106 if (isLoopInvariant(I))
DependenceAnalysis.cpp 757 bool DependenceAnalysis::isLoopInvariant(const SCEV *Expression,
761 return SE->isLoopInvariant(Expression, LoopNest) &&
762 isLoopInvariant(Expression, LoopNest->getParentLoop());
774 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest))
807 return isLoopInvariant(Src, LoopNest);
810 if (!isLoopInvariant(Step, LoopNest))
825 return isLoopInvariant(Dst, LoopNest);
828 if (!isLoopInvariant(Step, LoopNest))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 535 if (!SE->isLoopInvariant(ExitValue, L) || !isSafeToExpand(ExitValue))
758 /// isLoopInvariant - Perform a quick domtree based check for loop invariance
759 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems
761 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) {
775 L && L->getLoopPreheader() && isLoopInvariant(NarrowOper, L, DT);
    [all...]

Completed in 761 milliseconds