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

  /external/llvm/lib/Analysis/
LoopInfo.cpp 55 bool Loop::isLoopInvariant(const Value *V) const {
62 return all_of(I->operands(), [this](Value *V) { return isLoopInvariant(V); });
75 if (isLoopInvariant(I))
DependenceAnalysis.cpp 754 bool DependenceInfo::isLoopInvariant(const SCEV *Expression,
758 return SE->isLoopInvariant(Expression, LoopNest) &&
759 isLoopInvariant(Expression, LoopNest->getParentLoop());
771 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest))
857 return isLoopInvariant(Src, LoopNest);
868 if (!isLoopInvariant(Step, LoopNest))
882 return isLoopInvariant(Dst, LoopNest);
893 if (!isLoopInvariant(Step, LoopNest))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopDependenceAnalysis.cpp 143 if (!SE->isLoopInvariant(S, L))
147 bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const {
155 return isLoopInvariant(S) || (rec && rec->isAffine());
159 return isLoopInvariant(A) && isLoopInvariant(B);
LoopInfo.cpp 50 /// isLoopInvariant - Return true if the specified value is loop invariant
52 bool Loop::isLoopInvariant(Value *V) const {
62 if (!isLoopInvariant(I->getOperand(i)))
72 /// isLoopInvariant.
88 /// isLoopInvariant.
96 if (isLoopInvariant(I))
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 563 if (!SE->isLoopInvariant(ExitValue, L) ||
708 if (!L->isLoopInvariant(Cond))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp 552 if (!SE->isLoopInvariant(ExitValue, L))
610 if (SE->isLoopInvariant(S, L)) return true;
662 if (SE->isLoopInvariant(ExitVal, L))
852 /// isLoopInvariant - Perform a quick domtree based check for loop invariance
853 /// assuming that V is used within the loop. LoopInfo::isLoopInvariant() seems
855 static bool isLoopInvariant(Value *V, const Loop *L, const DominatorTree *DT) {
    [all...]

Completed in 536 milliseconds