Home
last modified time | relevance | path

Searched refs:block_begin (Results 1 – 25 of 37) sorted by relevance

12

/netbsd/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_debugging.cc202 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_locate_address() local
203 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_locate_address()
242 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_get_alloc_stack() local
243 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_get_alloc_stack()
H A Dtsan_external.cc104 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 Dtsan_rtl_report.cc331 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()
/netbsd/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_debugging.cc200 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_locate_address() local
201 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_locate_address()
240 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_get_alloc_stack() local
241 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_get_alloc_stack()
H A Dtsan_external.cc102 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_external_assign_tag() local
103 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_external_assign_tag()
H A Dtsan_rtl_report.cc329 void *block_begin = a->GetBlockBegin((void*)addr); in AddLocation() local
330 if (block_begin) in AddLocation()
331 b = ctx->metamap.GetBlock((uptr)block_begin); in AddLocation()
/netbsd/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_debugging.cc200 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_locate_address() local
201 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_locate_address()
240 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_get_alloc_stack() local
241 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_get_alloc_stack()
H A Dtsan_external.cc102 void *block_begin = a->GetBlockBegin((void *)addr); in __tsan_external_assign_tag() local
103 if (block_begin) b = ctx->metamap.GetBlock((uptr)block_begin); in __tsan_external_assign_tag()
H A Dtsan_rtl_report.cc329 void *block_begin = a->GetBlockBegin((void*)addr); in AddLocation() local
330 if (block_begin) in AddLocation()
331 b = ctx->metamap.GetBlock((uptr)block_begin); in AddLocation()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DMemorySSA.h504 block_iterator block_begin() {
508 const_block_iterator block_begin() const {
512 block_iterator block_end() { return block_begin() + getNumOperands(); }
515 return block_begin() + getNumOperands();
519 return make_range(block_begin(), block_end());
523 return make_range(block_begin(), block_end());
544 BasicBlock *getIncomingBlock(unsigned I) const { return block_begin()[I]; }
561 block_begin()[I] = BB;
578 if (block_begin()[I] == BB)
598 setIncomingBlock(I, block_begin()[E - 1]);
[all …]
H A DRegionInfo.h609 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());
H A DLoopInfo.h176 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function
180 return make_range(block_begin(), block_end()); in blocks()
H A DLoopInfoImpl.h356 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end(); in verifyLoop()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.h80 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function
83 return make_range(block_begin(), block_end()); in blocks()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp968 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E; in mayLoopAccessLocation()
1462 LoopEntry = *(CurLoop->block_begin()); in detectPopcountIdiom()
1594 LoopEntry = *(CurLoop->block_begin()); in detectShiftUntilZeroIdiom()
1768 BasicBlock *LoopBody = *(CurLoop->block_begin()); in recognizePopcount()
1919 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToCountable()
2023 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToPopcount()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLoopSimplify.cpp296 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in separateNestedLoop()
499 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); in simplifyOneLoop()
H A DLoopUtils.cpp652 SmallSetVector<BasicBlock *, 8> DeadBlockSet(L->block_begin(), in deleteDeadLoop()
730 for (Loop::block_iterator LpI = L->block_begin(), LpE = L->block_end(); in deleteDeadLoop()
738 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
1561 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in cloneLoop()
H A DLoopUnrollAndJam.cpp109 JamLoopBlocks.insert(JamLoop.block_begin(), JamLoop.block_end()); in partitionOuterLoopBlocks()
129 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end()); in partitionOuterLoopBlocks()
/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstruction.cpp492 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined()
493 otherPHI->block_begin()); in isIdenticalToWhenDefined()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DInstructions.h2648 block_iterator block_begin() {
2652 const_block_iterator block_begin() const {
2657 return block_begin() + getNumOperands();
2661 return block_begin() + getNumOperands();
2665 return make_range(block_begin(), block_end());
2669 return make_range(block_begin(), block_end());
2703 return block_begin()[i];
2723 block_begin()[i] = BB;
2766 if (block_begin()[i] == BB)
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineBlockPlacement.cpp2558 LoopBlockSet.insert(L.block_begin(), L.block_end()); in collectLoopBlockSet()
2631 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
2641 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
2651 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
/netbsd/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemorySSAUpdater.cpp121 std::copy(pred_begin(BB), pred_end(BB), Phi->block_begin()); in getPreviousDefRecursive()
299 for (auto BBIter = MP->block_begin() + i; BBIter != MP->block_end(); in setMemoryPhiValueForBlock()
H A DMustExecute.cpp65 for (Loop::block_iterator BB = std::next(CurLoop->block_begin()), in computeLoopSafetyInfo()
/netbsd/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.ml962 external block_begin : llvalue -> (llvalue, llbasicblock) llpos
982 iter_block_range f (block_begin fn) (At_end fn)
991 fold_left_block_range f init (block_begin fn) (At_end fn)
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1015 << printMBBReference(**L->block_begin())); in containsInvalidInstruction()
1371 << printMBBReference(**L->block_begin())); in isLoopFeeder()

12