/freebsd/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() 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() 250 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_get_alloc_stack() 207 void *block_begin = a->GetBlockBegin((void *)addr); __tsan_locate_address() local 247 void *block_begin = a->GetBlockBegin((void *)addr); __tsan_get_alloc_stack() local
|
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/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | MemorySSA.h | 501 block_iterator block_begin() { 505 const_block_iterator block_begin() const { 509 block_iterator block_end() { return block_begin() + getNumOperands(); } 512 return block_begin() + getNumOperands(); 516 return make_range(block_begin(), block_end()); 520 return make_range(block_begin(), block_end()); 541 BasicBlock *getIncomingBlock(unsigned I) const { return block_begin()[I]; } 558 block_begin()[I] = BB; 575 if (block_begin()[I] == BB) 595 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/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyExceptionInfo.h | 80 block_iterator block_begin() const { return getBlocks().begin(); } in block_end() 83 return make_range(block_begin(), block_end()); in blocks() 79 block_iterator block_begin() const { return getBlocks().begin(); } block_begin() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | GenericCycleInfo.h | 176 const_block_iterator block_begin() const { in block_begin() function 184 return llvm::make_range(block_begin(), block_end()); in blocks()
|
H A D | GenericCycleImpl.h | 195 NewParent->Blocks.insert(Child->block_begin(), Child->block_end()); in moveTopLevelCycleToNewParent()
|
/freebsd/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/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopIdiomRecognize.cpp | 1604 LoopEntry = *(CurLoop->block_begin()); in detectShiftUntilLessThanIdiom() 1705 LoopEntry = *(CurLoop->block_begin()); in detectPopcountIdiom() 1835 LoopEntry = *(CurLoop->block_begin()); in detectShiftUntilZeroIdiom() 2087 BasicBlock *LoopBody = *(CurLoop->block_begin()); in recognizePopcount() 2240 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToCountable() 2345 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToPopcount()
|
/freebsd/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 | 597 SmallSetVector<BasicBlock *, 8> DeadBlockSet(L->block_begin(), in deleteDeadLoop() 703 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
|
H A D | Local.cpp | 1422 hash_combine_range(PN->block_begin(), PN->block_end()))); in EliminateDuplicatePHINodesSetBasedImpl()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/ |
H A D | SPIRVConvergenceRegionAnalysis.cpp | 282 SmallPtrSet<BasicBlock *, 8> RegionBlocks(L->block_begin(), in analyze()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Instructions.h | 2555 const_block_iterator block_begin() const { 2560 return block_begin() + getNumOperands(); 2564 return make_range(block_begin(), block_end()); 2598 return block_begin()[i]; 2617 const_cast<block_iterator>(block_begin())[i] = BB; 2624 copy(BBRange, const_cast<block_iterator>(block_begin()) + ToIdx); 2672 if (block_begin()[i] == BB)
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instruction.cpp | 878 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined() 879 otherPHI->block_begin()); in isIdenticalToWhenDefined()
|
H A D | Instructions.cpp | 128 copyIncomingBlocks(make_range(PN.block_begin(), PN.block_end())); in PHINode() 176 (void)std::remove_if(const_cast<block_iterator>(block_begin()), in removeIncomingValueIf() 178 return RemoveIndices.contains(&BB - block_begin()); in removeIncomingValueIf()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineBlockPlacement.cpp | 2628 LoopBlockSet.insert(L.block_begin(), L.block_end()); in collectLoopBlockSet() 2701 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains() 2711 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains() 2721 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonHardwareLoops.cpp | 1022 << printMBBReference(**L->block_begin())); in containsInvalidInstruction() 1367 << printMBBReference(**L->block_begin())); in isLoopFeeder()
|
/freebsd/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/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.cpp | 16692 for (auto I = ML->block_begin(), IE = ML->block_end(); I != IE; ++I) in getPrefLoopAlignment()
|