| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_debugging.cc | 208 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_locate_address() local 209 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_locate_address() 248 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_get_alloc_stack() local 249 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_get_alloc_stack()
|
| H A D | tsan_external.cc | 104 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_external_assign_tag() local 105 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_external_assign_tag()
|
| H A D | tsan_rtl_report.cc | 331 void *block_begin = a->GetBlockBegin((void*)addr); in AddLocation() local 332 if (block_begin) in AddLocation() 333 b = ctx->metamap.GetBlock((uptr)block_begin); in AddLocation()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | MemorySSA.h | 498 block_iterator block_begin() { 503 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 | 612 block_iterator block_begin() { return block_iterator(getEntry(), getExit()); } 616 const_block_iterator block_begin() const { 626 return block_range(block_begin(), block_end()); 633 return const_block_range(block_begin(), block_end());
|
| H A D | LoopInfo.h | 154 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function 158 return make_range(block_begin(), block_end()); in blocks()
|
| H A D | LoopInfoImpl.h | 365 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end(); in verifyLoop()
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyExceptionInfo.h | 79 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function 82 return make_range(block_begin(), block_end()); in blocks()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | LoopIdiomRecognize.cpp | 797 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E; in mayLoopAccessLocation() 1195 LoopEntry = *(CurLoop->block_begin()); in detectPopcountIdiom() 1327 LoopEntry = *(CurLoop->block_begin()); in detectShiftUntilZeroIdiom() 1493 BasicBlock *LoopBody = *(CurLoop->block_begin()); in recognizePopcount() 1642 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToCountable() 1748 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToPopcount()
|
| H A D | LoopUnswitch.cpp | 299 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); I != E; in countLoop() 713 for (Loop::block_iterator I = currentLoop->block_begin(), in processCurrentLoop() 914 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in CloneLoop() 1251 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); in UnswitchNontrivialCondition()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/ |
| H A D | GCOV.h | 290 BlockIterator block_begin() const { return Blocks.begin(); } in block_begin() function 293 return make_range(block_begin(), block_end()); in blocks()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAnnotateUniformValues.cpp | 103 Checklist.insert(L->block_begin(), L->block_end()); in isClobberedInFunction()
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/ |
| H A D | PPCLoopPreIncPrep.cpp | 261 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in runOnLoop() 525 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in runOnLoop()
|
| H A D | PPCCTRLoops.cpp | 535 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in convertToCTRLoop()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | LoopInfo.cpp | 499 for (Loop::block_iterator BI = Unloop.block_begin(), BE = Unloop.block_end(); in removeBlocksFromAncestors() 619 for (Loop::block_iterator I = Unloop->block_begin(), in erase()
|
| H A D | MustExecute.cpp | 56 for (Loop::block_iterator BB = std::next(CurLoop->block_begin()), in computeLoopSafetyInfo()
|
| H A D | MemorySSAUpdater.cpp | 97 std::copy(pred_begin(BB), pred_end(BB), Phi->block_begin()); in getPreviousDefRecursive() 239 for (auto BBIter = MP->block_begin() + i; BBIter != MP->block_end(); in setMemoryPhiValueForBlock()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | LoopSimplify.cpp | 272 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in separateNestedLoop() 472 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); in simplifyOneLoop()
|
| H A D | LoopUtils.cpp | 599 for (Loop::block_iterator LpI = L->block_begin(), LpE = L->block_end(); in deleteDeadLoop() 607 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
|
| H A D | SSAUpdater.cpp | 264 Preds->append(SomePhi->block_begin(), SomePhi->block_end()); in FindPredecessorBlocks()
|
| H A D | LoopUnrollAndJam.cpp | 58 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end()); in partitionOuterLoopBlocks()
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Instruction.cpp | 456 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined() 457 otherPHI->block_begin()); in isIdenticalToWhenDefined()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 2617 block_iterator block_begin() { 2623 const_block_iterator block_begin() const { 2630 return block_begin() + getNumOperands(); 2634 return block_begin() + getNumOperands(); 2638 return make_range(block_begin(), block_end()); 2642 return make_range(block_begin(), block_end()); 2676 return block_begin()[i]; 2696 block_begin()[i] = BB; 2731 if (block_begin()[i] == BB)
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachineBlockPlacement.cpp | 2207 LoopBlockSet.insert(L.block_begin(), L.block_end()); in collectLoopBlockSet() 2281 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains() 2291 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains() 2301 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | HexagonHardwareLoops.cpp | 1015 << printMBBReference(**L->block_begin())); in containsInvalidInstruction() 1371 << printMBBReference(**L->block_begin())); in isLoopFeeder()
|