Searched refs:LoopNest (Results 1 – 2 of 2) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | DependenceAnalysis.h | 530 bool isLoopInvariant(const SCEV *Expression, const Loop *LoopNest) const; 547 const Loop *LoopNest, 553 const Loop *LoopNest, 559 const Loop *LoopNest,
|
/external/llvm/lib/Analysis/ |
D | DependenceAnalysis.cpp | 755 const Loop *LoopNest) const { in isLoopInvariant() 756 if (!LoopNest) in isLoopInvariant() 758 return SE->isLoopInvariant(Expression, LoopNest) && in isLoopInvariant() 759 isLoopInvariant(Expression, LoopNest->getParentLoop()); in isLoopInvariant() 767 const Loop *LoopNest, in collectCommonLoops() argument 769 while (LoopNest) { in collectCommonLoops() 770 unsigned Level = LoopNest->getLoopDepth(); in collectCommonLoops() 771 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest)) in collectCommonLoops() 773 LoopNest = LoopNest->getParentLoop(); in collectCommonLoops() 853 bool DependenceInfo::checkSrcSubscript(const SCEV *Src, const Loop *LoopNest, in checkSrcSubscript() argument [all …]
|