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 57 /// isLoopInvariant - Return true if the specified value is loop invariant
59 bool Loop::isLoopInvariant(const Value *V) const {
68 return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); });
75 /// isLoopInvariant.
91 /// isLoopInvariant.
99 if (isLoopInvariant(I))
DependenceAnalysis.cpp 759 bool DependenceAnalysis::isLoopInvariant(const SCEV *Expression,
763 return SE->isLoopInvariant(Expression, LoopNest) &&
764 isLoopInvariant(Expression, LoopNest->getParentLoop());
776 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest))
863 return isLoopInvariant(Src, LoopNest);
874 if (!isLoopInvariant(Step, LoopNest))
889 return isLoopInvariant(Dst, LoopNest);
900 if (!isLoopInvariant(Step, LoopNest))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 616 if (!SE->isLoopInvariant(ExitValue, L) ||
    [all...]

Completed in 226 milliseconds