Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopSimplifyCFG.cpp93 Loop *BBL = LI.getLoopFor(BB); in getInnermostLoopFor() local
94 while (BBL && !BBL->contains(L.getHeader())) in getInnermostLoopFor()
95 BBL = BBL->getParentLoop(); in getInnermostLoopFor()
96 if (BBL == &L) in getInnermostLoopFor()
97 BBL = BBL->getParentLoop(); in getInnermostLoopFor()
98 if (!BBL) in getInnermostLoopFor()
100 if (!Innermost || BBL->getLoopDepth() > Innermost->getLoopDepth()) in getInnermostLoopFor()
101 Innermost = BBL; in getInnermostLoopFor()
H A DSimpleLoopUnswitch.cpp2045 if (Loop *BBL = LI.getLoopFor(BB)) in rebuildLoopAfterUnswitch()
2046 if (BBL == &L || !L.contains(BBL)) in rebuildLoopAfterUnswitch()
2059 if (Loop *BBL = LI.getLoopFor(BB)) in rebuildLoopAfterUnswitch()
2060 if (BBL == &L || !L.contains(BBL)) in rebuildLoopAfterUnswitch()
2044 if (Loop *BBL = LI.getLoopFor(BB)) rebuildLoopAfterUnswitch() local
2058 if (Loop *BBL = LI.getLoopFor(BB)) rebuildLoopAfterUnswitch() local
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp913 int FunctionComparator::cmpBasicBlocks(const BasicBlock *BBL, in cmpBasicBlocks() argument
915 BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end(); in cmpBasicBlocks()
1011 const BasicBlock *BBL = FnLBBs.pop_back_val(); in compare() local
1014 if (int Res = cmpValues(BBL, BBR)) in compare()
1017 if (int Res = cmpBasicBlocks(BBL, BBR)) in compare()
1020 const Instruction *TermL = BBL->getTerminator(); in compare()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h113 int cmpBasicBlocks(const BasicBlock *BBL, const BasicBlock *BBR) const;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp873 ArrayRef<Value *> BBL = ItB->getBlockOperVals(); in compareStructure() local
878 ABL.size() != BBL.size()) in compareStructure()
883 assert(RelBlockLocsB.size() == BBL.size() && in compareStructure()
887 zip(RelBlockLocsA, RelBlockLocsB, ABL, BBL); in compareStructure()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp18156 Loop *BBL = LI->getLoopFor(ParentBB); in getReductionInstr() local
18157 if (!BBL) in getReductionInstr()
18159 BasicBlock *BBLatch = BBL->getLoopLatch(); in getReductionInstr()