Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DMemorySSA.h501 block_iterator block_begin() {
506 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 …]
DRegionInfo.h611 block_iterator block_begin() { return block_iterator(getEntry(), getExit()); }
615 const_block_iterator block_begin() const {
625 return block_range(block_begin(), block_end());
632 return const_block_range(block_begin(), block_end());
DLoopInfo.h159 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function
163 return make_range(block_begin(), block_end()); in blocks()
DLoopInfoImpl.h349 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end(); in verifyLoop()
/third_party/mesa3d/src/compiler/nir/
Dnir_control_flow.c688 nir_block *block_begin, *block_end, *block_before, *block_after; in nir_cf_extract() local
696 split_block_cursor(begin, &block_before, &block_begin); in nir_cf_extract()
709 end.block = block_begin; in nir_cf_extract()
720 if (block_begin == block_after) in nir_cf_extract()
721 block_begin = block_end; in nir_cf_extract()
723 extracted->impl = nir_cf_node_get_function(&block_begin->cf_node); in nir_cf_extract()
729 nir_cf_node *cf_node = &block_begin->cf_node; in nir_cf_extract()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyExceptionInfo.h78 block_iterator block_begin() const { return getBlocks().begin(); } in block_begin() function
81 return make_range(block_begin(), block_end()); in blocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopIdiomRecognize.cpp820 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E; in mayLoopAccessLocation()
1238 LoopEntry = *(CurLoop->block_begin()); in detectPopcountIdiom()
1370 LoopEntry = *(CurLoop->block_begin()); in detectShiftUntilZeroIdiom()
1542 BasicBlock *LoopBody = *(CurLoop->block_begin()); in recognizePopcount()
1691 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToCountable()
1797 BasicBlock *Body = *(CurLoop->block_begin()); in transformLoopToPopcount()
DLoopUnswitch.cpp299 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); I != E; in countLoop()
715 for (Loop::block_iterator I = currentLoop->block_begin(), in processCurrentLoop()
918 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in CloneLoop()
1260 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); in UnswitchNontrivialCondition()
DLoopFuse.cpp1302 SmallVector<BasicBlock *, 8> Blocks(FC1.L->block_begin(), in performFusion()
1565 SmallVector<BasicBlock *, 8> Blocks(FC1.L->block_begin(), in fuseGuardedLoops()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DGCOV.h291 BlockIterator block_begin() const { return Blocks.begin(); } in block_begin() function
294 return make_range(block_begin(), block_end()); in blocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUAnnotateUniformValues.cpp102 Checklist.insert(L->block_begin(), L->block_end()); in isClobberedInFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstruction.cpp463 return std::equal(thisPHI->block_begin(), thisPHI->block_end(), in isIdenticalToWhenDefined()
464 otherPHI->block_begin()); in isIdenticalToWhenDefined()
DInstructions.cpp111 std::copy(PN.block_begin(), PN.block_end(), block_begin()); in PHINode()
126 std::copy(block_begin() + Idx + 1, block_end(), block_begin() + Idx); in removeIncomingValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopSimplify.cpp280 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); in separateNestedLoop()
486 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); in simplifyOneLoop()
DLoopUtils.cpp662 for (Loop::block_iterator LpI = L->block_begin(), LpE = L->block_end(); in deleteDeadLoop()
670 blocks.insert(L->block_begin(), L->block_end()); in deleteDeadLoop()
DSSAUpdater.cpp263 Preds->append(SomePhi->block_begin(), SomePhi->block_end()); in FindPredecessorBlocks()
DLoopUnrollAndJam.cpp56 SubLoopBlocks.insert(SubLoop->block_begin(), SubLoop->block_end()); in partitionOuterLoopBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstructions.h2612 block_iterator block_begin() {
2618 const_block_iterator block_begin() const {
2625 return block_begin() + getNumOperands();
2629 return block_begin() + getNumOperands();
2633 return make_range(block_begin(), block_end());
2637 return make_range(block_begin(), block_end());
2671 return block_begin()[i];
2691 block_begin()[i] = BB;
2734 if (block_begin()[i] == BB)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopInfo.cpp746 for (Loop::block_iterator BI = Unloop.block_begin(), BE = Unloop.block_end(); in removeBlocksFromAncestors()
866 for (Loop::block_iterator I = Unloop->block_begin(), in erase()
DMustExecute.cpp62 for (Loop::block_iterator BB = std::next(CurLoop->block_begin()), in computeLoopSafetyInfo()
DMemorySSAUpdater.cpp119 std::copy(pred_begin(BB), pred_end(BB), Phi->block_begin()); in getPreviousDefRecursive()
297 for (auto BBIter = MP->block_begin() + i; BBIter != MP->block_end(); in setMemoryPhiValueForBlock()
/third_party/ntfs-3g/libntfs-3g/
Dattrib.c2015 VCN block_begin; local
2019 block_begin = pos >> vol->cluster_size_bits;
2021 block_begin = na->initialized_size >> vol->cluster_size_bits;
2024 block_begin &= -na->compression_block_clusters;
2025 if (block_begin)
2026 block_begin--;
2027 if (ntfs_attr_map_partial_runlist(na, block_begin))
2029 if ((update_from == -1) || (block_begin < update_from))
2030 update_from = block_begin;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineBlockPlacement.cpp2512 LoopBlockSet.insert(L.block_begin(), L.block_end()); in collectLoopBlockSet()
2585 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
2595 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
2605 << " Loop header: " << getBlockName(*L.block_begin()) << "\n" in buildLoopChains()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonHardwareLoops.cpp1015 << printMBBReference(**L->block_begin())); in containsInvalidInstruction()
1371 << printMBBReference(**L->block_begin())); in isLoopFeeder()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCTargetTransformInfo.cpp501 for (Loop::block_iterator I = L->block_begin(), IE = L->block_end(); in isHardwareLoopProfitable()

12