| /freebsd/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 | 342 for (unsigned I = 0; I < getBlocks().size(); ++I) { in print() 343 MachineBasicBlock *MBB = getBlocks()[I]; in print()
|
| H A D | WebAssemblyFixIrreducibleControlFlow.cpp | 199 BlockSet &getBlocks() { return Blocks; } in getBlocks() function in __anon5f812d3b0111::LoopBlocks 322 if (processRegion(LoopEntry, InnerBlocks.getBlocks(), MF)) { in processRegion()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/Transforms/ |
| H A D | CIRCanonicalize.cpp | 77 if (region.getBlocks().front().getOperations().size() == 1 && in matchAndRewrite() 78 isa<YieldOp>(region.getBlocks().front().front())) { in matchAndRewrite()
|
| H A D | FlattenCFG.cpp | 251 llvm::make_early_inc_range(op.getBody().getBlocks())) in matchAndRewrite() 323 for (mlir::Block &blk : region.getBlocks()) { in matchAndRewrite() 462 for (mlir::Block &blk : op.getBody().getBlocks()) { in matchAndRewrite()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | GenericLoopInfo.h | 90 BlockT *getHeader() const { return getBlocks().front(); } in getHeader() 173 ArrayRef<BlockT *> getBlocks() const { in getBlocks() function 178 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() 179 block_iterator block_end() const { return getBlocks().end(); } in block_end()
|
| H A D | GenericLoopInfoImpl.h | 422 for (unsigned i = 0; i < getBlocks().size(); ++i) { in print() 423 BlockT *BB = getBlocks()[i]; in print() 704 std::vector<BlockT *> BBs = L->getBlocks(); in compareLoops() 705 std::vector<BlockT *> OtherBBs = OtherL->getBlocks(); in compareLoops()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | EdgeBundles.h | 53 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; } in getBlocks() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopVersioningLICM.cpp | 228 for (auto *Block : CurLoop->getBlocks()) { in legalLoopMemoryAccesses() 379 for (auto *Block : CurLoop->getBlocks()) in legalLoopInstructions()
|
| H A D | LoopDistribute.cpp | 158 for (auto *B : OrigLoop->getBlocks()) in populateUsedSet() 213 for (auto *Block : OrigLoop->getBlocks()) in removeUnusedInsts() 243 for (auto *BB : getDistributedLoop()->getBlocks()) in printBlocks()
|
| H A D | LoopUnrollAndJamPass.cpp | 247 if (SubLoop->getBlocks().size() != 1) { in computeUnrollAndJamCount() 258 for (BasicBlock *BB : SubLoop->getBlocks()) { in computeUnrollAndJamCount()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUnroll.cpp | 375 for (BasicBlock *BB : L->getBlocks()) { in simplifyLoopAfterUnroll() 494 std::vector<BasicBlock *> OriginalLoopBlocks = L->getBlocks(); in UnrollLoop() 678 std::vector<BasicBlock*> UnrolledLoopBlocks = L->getBlocks(); in UnrollLoop() 691 for (BasicBlock *BB : L->getBlocks()) in UnrollLoop() 707 identifyNoAliasScopesToClone(L->getBlocks(), LoopLocalNoAliasDeclScopes); in UnrollLoop()
|
| H A D | LoopSimplify.cpp | 316 for (unsigned i = 0; i != L->getBlocks().size(); ++i) { in separateNestedLoop() 317 BasicBlock *BB = L->getBlocks()[i]; in separateNestedLoop()
|
| H A D | LoopConstrainer.cpp | 470 for (BasicBlock *BB : OriginalLoop.getBlocks()) { in cloneLoop() 494 BasicBlock *OriginalBB = OriginalLoop.getBlocks()[i]; in cloneLoop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIMachineScheduler.h | 250 getBlocks(SISchedulerBlockCreatorVariant BlockVariant); 351 std::vector<SIScheduleBlock*> getBlocks() { return BlocksScheduled; } in getBlocks() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86CmovConversion.cpp | 251 if (!collectCmovCandidates(CurrLoop->getBlocks(), CmovInstGroups)) in runOnMachineFunction() 254 if (!checkForProfitableCmovCandidates(CurrLoop->getBlocks(), in runOnMachineFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | LoopExtractor.cpp | 244 CodeExtractor Extractor(L->getBlocks(), &DT, false, nullptr, nullptr, AC); in extractLoop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCCTRLoops.cpp | 208 for (auto *MBB : reverse(ML->getBlocks())) { in processLoop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64FalkorHWPFFix.cpp | 672 for (MachineBasicBlock *MBB : L.getBlocks()) in runOnLoop() 706 for (MachineBasicBlock *MBB : L.getBlocks()) { in runOnLoop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/ |
| H A D | SPIRVConvergenceRegionAnalysis.cpp | 235 for (auto *BB : L->getBlocks()) { in findPathsToMatch()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SpillPlacement.cpp | 269 if (bundles->getBlocks(n).size() > 100) { in activate()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenFunction.cpp | 351 mlir::Block *entryBB = &fn.getBlocks().front(); in startFunction() 428 for (mlir::Block &block : func.getBlocks()) { in eraseEmptyAndUnusedBlocks()
|
| H A D | CIRGenStmt.cpp | 281 unsigned numBlocks = r.getBlocks().size(); in terminateBody() 282 for (auto &block : r.getBlocks()) { in terminateBody()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | MVETailPredication.cpp | 416 for (auto *BB : L->getBlocks()) in TryConvertActiveLaneMask()
|
| H A D | ARMLowOverheadLoops.cpp | 605 assert(ML.getBlocks().size() == 1 && in ValidateTailPredicate() 1324 for (auto *MBB : ML->getBlocks()) in ProcessLoop() 1353 for (auto *MBB : reverse(ML->getBlocks())) { in ProcessLoop()
|