| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_debugging.cpp | 209 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_locate_address() local 210 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_locate_address() 249 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_get_alloc_stack() local 250 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_get_alloc_stack()
|
| H A D | tsan_external.cpp | 112 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_external_assign_tag() local 113 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_external_assign_tag()
|
| H A D | tsan_rtl_report.cpp | 297 uptr block_begin = 0; in AddLocation() local 300 block_begin = (uptr)a->GetBlockBegin((void *)addr); in AddLocation() 301 if (block_begin) in AddLocation() 302 b = ctx->metamap.GetBlock(block_begin); in AddLocation() 305 b = JavaHeapBlock(addr, &block_begin); in AddLocation() 309 loc->heap_chunk_start = block_begin; in AddLocation()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 500 block_iterator block_begin() { 504 const_block_iterator block_begin() const { 508 block_iterator block_end() { return block_begin() + getNumOperands(); } 511 return block_begin() + getNumOperands(); 515 return make_range(block_begin(), block_end()); 519 return make_range(block_begin(), block_end()); 540 BasicBlock *getIncomingBlock(unsigned I) const { return block_begin()[I]; } 557 block_begin()[I] = BB; 574 if (block_begin()[I] == BB) 594 setIncomingBlock(I, block_begin()[E - 1]); [all …]
|
| H A D | RegionInfo.h | 609 block_iterator block_begin() { return block_iterator(getEntry(), getExit()); } 613 const_block_iterator block_begin() const { 623 return block_range(block_begin(), block_end()); 630 return const_block_range(block_begin(), block_end());
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyExceptionInfo.h | 80 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function 83 return make_range(block_begin(), block_end()); in blocks()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | GenericCycleInfo.h | 172 const_block_iterator block_begin() const { in block_begin() function 180 return llvm::make_range(block_begin(), block_end()); in blocks()
|
| H A D | GenericCycleImpl.h | 180 NewParent->Blocks.insert(Child->block_begin(), Child->block_end()); in moveTopLevelCycleToNewParent()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | GenericLoopInfo.h | 178 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function 182 return make_range(block_begin(), block_end()); in blocks()
|
| H A D | GenericLoopInfoImpl.h | 375 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end(); in verifyLoop()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUnrollAndJam.cpp | 104 JamLoopBlocks.insert(JamLoop.block_begin(), JamLoop.block_end()); in partitionOuterLoopBlocks() 124 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end()); in partitionOuterLoopBlocks()
|
| H A D | LoopUtils.cpp | 596 SmallSetVector<BasicBlock *, 8> DeadBlockSet(L->block_begin(), in deleteDeadLoop() 702 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
|
| H A D | Local.cpp | 1411 hash_combine_range(PN->block_begin(), PN->block_end()))); in EliminateDuplicatePHINodesSetBasedImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LoopIdiomRecognize.cpp | 1570 LoopEntry = *(CurLoop->block_begin()); in detectPopcountIdiom() 1700 LoopEntry = *(CurLoop->block_begin()); in detectShiftUntilZeroIdiom() 1872 BasicBlock *LoopBody = *(CurLoop->block_begin()); in recognizePopcount() 2023 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToCountable() 2128 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToPopcount()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instruction.cpp | 786 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined() 787 otherPHI->block_begin()); in isIdenticalToWhenDefined()
|
| H A D | Instructions.cpp | 118 copyIncomingBlocks(make_range(PN.block_begin(), PN.block_end())); in PHINode() 166 (void)std::remove_if(const_cast<block_iterator>(block_begin()), in removeIncomingValueIf() 168 return RemoveIndices.contains(&BB - block_begin()); in removeIncomingValueIf()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 2781 const_block_iterator block_begin() const { 2786 return block_begin() + getNumOperands(); 2790 return make_range(block_begin(), block_end()); 2824 return block_begin()[i]; 2843 const_cast<block_iterator>(block_begin())[i] = BB; 2850 copy(BBRange, const_cast<block_iterator>(block_begin()) + ToIdx); 2898 if (block_begin()[i] == BB)
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineBlockPlacement.cpp | 2592 LoopBlockSet.insert(L.block_begin(), L.block_end()); in collectLoopBlockSet() 2665 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains() 2675 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains() 2685 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonHardwareLoops.cpp | 1023 << printMBBReference(**L->block_begin())); in containsInvalidInstruction() 1368 << printMBBReference(**L->block_begin())); in isLoopFeeder()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSAUpdater.cpp | 114 std::copy(pred_begin(BB), pred_end(BB), Phi->block_begin()); in getPreviousDefRecursive()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 16478 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I) in getPrefLoopAlignment()
|