Home
last modified time | relevance | path

Searched refs:BBL (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopSimplifyCFG.cpp102 Loop *BBL = LI.getLoopFor(BB); in getInnermostLoopFor() local
103 while (BBL && !BBL->contains(L.getHeader())) in getInnermostLoopFor()
104 BBL = BBL->getParentLoop(); in getInnermostLoopFor()
105 if (BBL == &L) in getInnermostLoopFor()
106 BBL = BBL->getParentLoop(); in getInnermostLoopFor()
107 if (!BBL) in getInnermostLoopFor()
109 if (!Innermost || BBL->getLoopDepth() > Innermost->getLoopDepth()) in getInnermostLoopFor()
110 Innermost = BBL; in getInnermostLoopFor()
DSimpleLoopUnswitch.cpp1930 if (Loop *BBL = LI.getLoopFor(BB)) in rebuildLoopAfterUnswitch() local
1931 if (BBL == &L || !L.contains(BBL)) in rebuildLoopAfterUnswitch()
1944 if (Loop *BBL = LI.getLoopFor(BB)) in rebuildLoopAfterUnswitch() local
1945 if (BBL == &L || !L.contains(BBL)) in rebuildLoopAfterUnswitch()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp792 int FunctionComparator::cmpBasicBlocks(const BasicBlock *BBL, in cmpBasicBlocks() argument
794 BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end(); in cmpBasicBlocks()
890 const BasicBlock *BBL = FnLBBs.pop_back_val(); in compare() local
893 if (int Res = cmpValues(BBL, BBR)) in compare()
896 if (int Res = cmpBasicBlocks(BBL, BBR)) in compare()
899 const Instruction *TermL = BBL->getTerminator(); in compare()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
DFunctionComparator.h118 int cmpBasicBlocks(const BasicBlock *BBL, const BasicBlock *BBR) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DWholeProgramDevirt.cpp1772 const auto &BBL = Fn.getBasicBlockList(); in areRemarksEnabled() local
1773 if (BBL.empty()) in areRemarksEnabled()
1775 auto DI = OptimizationRemark(DEBUG_TYPE, "", DebugLoc(), &BBL.front()); in areRemarksEnabled()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp8161 Loop *BBL = LI->getLoopFor(ParentBB); in getReductionValue() local
8162 if (!BBL) in getReductionValue()
8164 BasicBlock *BBLatch = BBL->getLoopLatch(); in getReductionValue()