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.cpp2050 if (Loop *BBL = LI.getLoopFor(BB)) in rebuildLoopAfterUnswitch() local
2051 if (BBL == &L || !L.contains(BBL)) in rebuildLoopAfterUnswitch()
2064 if (Loop *BBL = LI.getLoopFor(BB)) in rebuildLoopAfterUnswitch() local
2065 if (BBL == &L || !L.contains(BBL)) in rebuildLoopAfterUnswitch()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp927 int FunctionComparator::cmpBasicBlocks(const BasicBlock *BBL, in cmpBasicBlocks() argument
929 BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end(); in cmpBasicBlocks()
1025 const BasicBlock *BBL = FnLBBs.pop_back_val(); in compare() local
1028 if (int Res = cmpValues(BBL, BBR)) in compare()
1031 if (int Res = cmpBasicBlocks(BBL, BBR)) in compare()
1034 const Instruction *TermL = BBL->getTerminator(); in compare()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h114 LLVM_ABI int cmpBasicBlocks(const BasicBlock *BBL,
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp867 ArrayRef<Value *> BBL = ItB->getBlockOperVals(); in compareStructure() local
872 ABL.size() != BBL.size()) in compareStructure()
877 assert(RelBlockLocsB.size() == BBL.size() && in compareStructure()
881 zip(RelBlockLocsA, RelBlockLocsB, ABL, BBL); in compareStructure()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp23586 Loop *BBL = LI->getLoopFor(ParentBB); in getReductionInstr() local
23587 if (!BBL) in getReductionInstr()
23589 BasicBlock *BBLatch = BBL->getLoopLatch(); in getReductionInstr()