Home
last modified time | relevance | path

Searched refs:IsLoopNestPass (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPassManager.cpp49 assert(LoopPasses.size() + LoopNestPasses.size() == IsLoopNestPass.size()); in printPipeline()
52 for (unsigned Idx = 0, Size = IsLoopNestPass.size(); Idx != Size; ++Idx) { in printPipeline()
53 if (IsLoopNestPass[Idx]) { in printPipeline()
88 for (size_t I = 0, E = IsLoopNestPass.size(); I != E; ++I) { in runWithLoopNestPasses()
90 if (!IsLoopNestPass[I]) { in runWithLoopNestPasses()
129 AM.invalidate(IsLoopNestPass[I] ? *OuterMostLoop : L, *PassPA); in runWithLoopNestPasses()
141 U.setParentLoop((IsLoopNestPass[I] ? *OuterMostLoop : L).getParentLoop()); in runWithLoopNestPasses()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DLoopPassManager.h84 : IsLoopNestPass(std::move(Arg.IsLoopNestPass)), in PassManager()
89 IsLoopNestPass = std::move(RHS.IsLoopNestPass);
113 IsLoopNestPass.push_back(false); in addPass()
122 IsLoopNestPass.push_back(true); in addPass()
147 BitVector IsLoopNestPass; variable