| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyExceptionInfo.h | 78 ArrayRef<MachineBasicBlock *> getBlocks() const { return Blocks; } in getBlocks() function 80 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() 81 block_iterator block_end() const { return getBlocks().end(); } in block_end()
|
| H A D | WebAssemblyExceptionInfo.cpp | 339 for (unsigned I = 0; I < getBlocks().size(); ++I) { in print() 340 MachineBasicBlock *MBB = getBlocks()[I]; in print()
|
| H A D | WebAssemblyFixIrreducibleControlFlow.cpp | 198 BlockSet &getBlocks() { return Blocks; } in getBlocks() function in __anonf457146f0111::LoopBlocks 323 if (processRegion(LoopEntry, InnerBlocks.getBlocks(), MF)) { in processRegion()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | EdgeBundles.h | 47 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; } in getBlocks() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUnroll.cpp | 226 for (BasicBlock *BB : L->getBlocks()) { in simplifyLoopAfterUnroll() 299 std::vector<BasicBlock *> OriginalLoopBlocks = L->getBlocks(); in UnrollLoop() 487 std::vector<BasicBlock*> UnrolledLoopBlocks = L->getBlocks(); in UnrollLoop() 500 for (BasicBlock *BB : L->getBlocks()) in UnrollLoop() 516 identifyNoAliasScopesToClone(L->getBlocks(), LoopLocalNoAliasDeclScopes); in UnrollLoop()
|
| H A D | LoopSimplify.cpp | 325 for (unsigned i = 0; i != L->getBlocks().size(); ++i) { in separateNestedLoop() 326 BasicBlock *BB = L->getBlocks()[i]; in separateNestedLoop()
|
| H A D | CloneFunction.cpp | 846 for (BasicBlock *BB : OrigLoop->getBlocks()) { in cloneLoopWithPreheader() 864 for (BasicBlock *BB : OrigLoop->getBlocks()) { in cloneLoopWithPreheader()
|
| H A D | LoopRotationUtils.cpp | 272 if (L->getBlocks().size() == 1) in rotateLoop()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopVersioningLICM.cpp | 406 for (auto *Block : CurLoop->getBlocks()) in legalLoopInstructions() 560 for (auto *Block : CurLoop->getBlocks()) { in setNoAliasToLoop() 611 for (auto *Block : L->getBlocks()) { in runOnLoop()
|
| H A D | LoopUnrollAndJamPass.cpp | 253 if (SubLoop->getBlocks().size() != 1) { in computeUnrollAndJamCount() 264 for (BasicBlock *BB : SubLoop->getBlocks()) { in computeUnrollAndJamCount()
|
| H A D | LoopDistribute.cpp | 163 for (auto *B : OrigLoop->getBlocks()) in populateUsedSet() 218 for (auto *Block : OrigLoop->getBlocks()) in removeUnusedInsts() 248 for (auto *BB : getDistributedLoop()->getBlocks()) in printBlocks()
|
| H A D | LICM.cpp | 359 for (auto *BB : L->getBlocks()) in SinkAndHoistLICMFlags() 402 bool HasCoroSuspendInst = llvm::any_of(L->getBlocks(), [](BasicBlock *BB) { in runOnLoop() 1162 for (auto *BB : L->getBlocks()) in isReadOnly() 1172 for (auto *BB : L->getBlocks()) in isOnlyMemoryAccess() 1354 for (auto *BB : CurLoop->getBlocks()) in canSinkOrHoistInst() 2407 for (BasicBlock *BB : CurLoop->getBlocks()) in pointerInvalidatedByLoop() 2462 for (auto *BB : CurLoop->getBlocks()) in pointerInvalidatedByLoopWithMSSA()
|
| H A D | InductiveRangeCheckElimination.cpp | 1146 for (BasicBlock *BB : OriginalLoop.getBlocks()) { in cloneLoop() 1170 BasicBlock *OriginalBB = OriginalLoop.getBlocks()[i]; in cloneLoop() 1885 if (L->getBlocks().size() >= LoopSizeCutoff) { in run() 1899 for (auto BBI : L->getBlocks()) in run()
|
| H A D | LoopSimplifyCFG.cpp | 456 for (auto *BB : DL->getBlocks()) in deleteDeadLoopBlocks()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | LoopInfoImpl.h | 392 for (unsigned i = 0; i < getBlocks().size(); ++i) { in print() 393 BlockT *BB = getBlocks()[i]; in print() 674 std::vector<BlockT *> BBs = L->getBlocks(); in compareLoops() 675 std::vector<BlockT *> OtherBBs = OtherL->getBlocks(); in compareLoops()
|
| H A D | LoopInfo.h | 104 BlockT *getHeader() const { return getBlocks().front(); } in getHeader() 171 ArrayRef<BlockT *> getBlocks() const { in getBlocks() function 176 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() 177 block_iterator block_end() const { return getBlocks().end(); } in block_end()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIMachineScheduler.h | 251 getBlocks(SISchedulerBlockCreatorVariant BlockVariant); 352 std::vector<SIScheduleBlock*> getBlocks() { return BlocksScheduled; } in getBlocks() function
|
| H A D | SIMachineScheduler.cpp | 608 SIScheduleBlockCreator::getBlocks(SISchedulerBlockCreatorVariant BlockVariant) { in getBlocks() function in SIScheduleBlockCreator 1755 SIScheduleBlocks Blocks = BlockCreator.getBlocks(BlockVariant); in scheduleVariant() 1760 ScheduledBlocks = Scheduler.getBlocks(); in scheduleVariant()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86CmovConversion.cpp | 240 if (!collectCmovCandidates(CurrLoop->getBlocks(), CmovInstGroups)) in runOnMachineFunction() 243 if (!checkForProfitableCmovCandidates(CurrLoop->getBlocks(), in runOnMachineFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SpillPlacement.cpp | 239 if (bundles->getBlocks(n).size() > 100) { in activate()
|
| H A D | MachineLICM.cpp | 526 for (MachineBasicBlock *BB : CurLoop->getBlocks()) { in HoistRegionPostRA() 598 for (MachineBasicBlock *BB : CurLoop->getBlocks()) { in AddToLiveIns()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64FalkorHWPFFix.cpp | 680 for (MachineBasicBlock *MBB : L.getBlocks()) in runOnLoop() 714 for (MachineBasicBlock *MBB : L.getBlocks()) { in runOnLoop()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | MVETailPredication.cpp | 395 for (auto *BB : L->getBlocks()) in TryConvertActiveLaneMask()
|
| H A D | ARMLowOverheadLoops.cpp | 611 assert(ML.getBlocks().size() == 1 && in ValidateTailPredicate() 1284 for (auto *MBB : ML->getBlocks()) in ProcessLoop() 1313 for (auto *MBB : reverse(ML->getBlocks())) { in ProcessLoop()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LoopCacheAnalysis.cpp | 545 for (BasicBlock *BB : InnerMostLoop->getBlocks()) { in populateReferenceGroups()
|