Searched refs:UseBBs (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopSink.cpp27 // InsertBBs = UseBBs - DomBBs + BB
98 /// * For each UseBB in \p UseBBs, there is at least one BB in BBsToSinkInto
117 /// The complexity of the function is O(UseBBs.size() * ColdLoopBBs.size()).
118 /// To avoid expensive computation, we cap the maximum UseBBs.size() in its
121 findBBsToSinkInto(const Loop &L, const SmallPtrSetImpl<BasicBlock *> &UseBBs, argument
125 if (UseBBs.size() == 0)
128 BBsToSinkInto.insert(UseBBs.begin(), UseBBs.end());

Completed in 56 milliseconds