Searched refs:getBlocks (Results 1 - 25 of 53) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DEdgeBundles.h46 /// getBlocks - Return an array of blocks that are connected to Bundle.
47 ArrayRef<unsigned> getBlocks(unsigned Bundle) const { return Blocks[Bundle]; } function in class:llvm::EdgeBundles
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h78 ArrayRef<MachineBasicBlock *> getBlocks() const { return Blocks; } function in class:llvm::WebAssemblyException
80 block_iterator block_begin() const { return getBlocks().begin(); }
81 block_iterator block_end() const { return getBlocks().end(); }
H A DWebAssemblyExceptionInfo.cpp339 for (unsigned I = 0; I < getBlocks().size(); ++I) {
340 MachineBasicBlock *MBB = getBlocks()[I];
H A DWebAssemblyFixIrreducibleControlFlow.cpp198 BlockSet &getBlocks() { return Blocks; } function in class:__anon2667::LoopBlocks
323 if (processRegion(LoopEntry, InnerBlocks.getBlocks(), MF)) {
/netbsd-current/external/bsd/elftosb/dist/common/
H A DEncoreBootImage.h315 virtual unsigned getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data) { return 0; } function in class:elftosb::EncoreBootImage::CipherBlockGenerator
370 virtual unsigned getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data);
823 virtual unsigned getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data);
861 virtual unsigned getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data);
H A DEncoreBootImage.cpp223 nop.getBlocks(blocksWritten, 1, &block);
258 tag.getBlocks(blocksWritten, 1, &block);
282 section->getBlocks(blocksWritten, 1, &block);
608 unsigned EncoreBootImage::BootCommand::getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data) function in class:EncoreBootImage::BootCommand
1215 unsigned EncoreBootImage::BootSection::getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data) function in class:EncoreBootImage::BootSection
1246 return command->getBlocks(commandOffset, readCount, data);
1320 unsigned EncoreBootImage::DataSection::getBlocks(unsigned offset, unsigned maxCount, cipher_block_t * data) function in class:EncoreBootImage::DataSection
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopVersioningLICM.cpp406 for (auto *Block : CurLoop->getBlocks())
560 for (auto *Block : CurLoop->getBlocks()) {
611 for (auto *Block : L->getBlocks()) {
H A DLoopUnrollAndJamPass.cpp252 if (SubLoop->getBlocks().size() != 1) {
263 for (BasicBlock *BB : SubLoop->getBlocks()) {
H A DLoopDistribute.cpp163 for (auto *B : OrigLoop->getBlocks())
218 for (auto *Block : OrigLoop->getBlocks())
248 for (auto *BB : getDistributedLoop()->getBlocks())
H A DLICM.cpp332 for (auto *BB : L->getBlocks())
374 bool HasCoroSuspendInst = llvm::any_of(L->getBlocks(), [](BasicBlock *BB) {
1134 for (auto *BB : L->getBlocks())
1144 for (auto *BB : L->getBlocks())
1326 for (auto *BB : CurLoop->getBlocks())
2375 for (BasicBlock *BB : CurLoop->getBlocks())
2430 for (auto *BB : CurLoop->getBlocks())
H A DInductiveRangeCheckElimination.cpp1146 for (BasicBlock *BB : OriginalLoop.getBlocks()) {
1170 BasicBlock *OriginalBB = OriginalLoop.getBlocks()[i];
1885 if (L->getBlocks().size() >= LoopSizeCutoff) {
1899 for (auto BBI : L->getBlocks())
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.h251 getBlocks(SISchedulerBlockCreatorVariant BlockVariant);
352 std::vector<SIScheduleBlock*> getBlocks() { return BlocksScheduled; } function in class:llvm::SIScheduleBlockScheduler
H A DSIMachineScheduler.cpp608 SIScheduleBlockCreator::getBlocks(SISchedulerBlockCreatorVariant BlockVariant) { function in class:SIScheduleBlockCreator
1755 SIScheduleBlocks Blocks = BlockCreator.getBlocks(BlockVariant);
1760 ScheduledBlocks = Scheduler.getBlocks();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp227 for (BasicBlock *BB : L->getBlocks()) {
370 std::vector<BasicBlock *> OriginalLoopBlocks = L->getBlocks();
567 std::vector<BasicBlock*> UnrolledLoopBlocks = L->getBlocks();
580 for (BasicBlock *BB : L->getBlocks())
596 identifyNoAliasScopesToClone(L->getBlocks(), LoopLocalNoAliasDeclScopes);
H A DCloneFunction.cpp843 for (BasicBlock *BB : OrigLoop->getBlocks()) {
861 for (BasicBlock *BB : OrigLoop->getBlocks()) {
H A DLoopSimplify.cpp325 for (unsigned i = 0; i != L->getBlocks().size(); ++i) {
326 BasicBlock *BB = L->getBlocks()[i];
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLoopInfo.h104 BlockT *getHeader() const { return getBlocks().front(); }
171 ArrayRef<BlockT *> getBlocks() const { function in class:llvm::LoopBase
176 block_iterator block_begin() const { return getBlocks().begin(); }
177 block_iterator block_end() const { return getBlocks().end(); }
H A DLoopInfoImpl.h392 for (unsigned i = 0; i < getBlocks().size(); ++i) {
393 BlockT *BB = getBlocks()[i];
674 std::vector<BlockT *> BBs = L->getBlocks();
675 std::vector<BlockT *> OtherBBs = OtherL->getBlocks();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSpillPlacement.cpp239 if (bundles->getBlocks(n).size() > 100) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86CmovConversion.cpp239 if (!collectCmovCandidates(CurrLoop->getBlocks(), CmovInstGroups))
242 if (!checkForProfitableCmovCandidates(CurrLoop->getBlocks(),
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DMVETailPredication.cpp395 for (auto *BB : L->getBlocks())
H A DARMLowOverheadLoops.cpp615 assert(ML.getBlocks().size() == 1 &&
1207 for (auto *MBB : ML->getBlocks())
1236 for (auto *MBB : reverse(ML->getBlocks())) {
/netbsd-current/external/bsd/elftosb/dist/sbtool/
H A Dsbtool.cpp466 unsigned blocksRead = section->getBlocks(offset, 1, data);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64FalkorHWPFFix.cpp680 for (MachineBasicBlock *MBB : L.getBlocks())
714 for (MachineBasicBlock *MBB : L.getBlocks()) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp547 for (BasicBlock *BB : InnerMostLoop->getBlocks()) {

Completed in 382 milliseconds

123