Home
last modified time | relevance | path

Searched refs:BlockRange (Results 1 – 22 of 22) sorted by relevance

/external/llvm-project/mlir/lib/IR/
DBlock.cpp322 BlockRange::BlockRange(ArrayRef<Block *> blocks) : BlockRange(nullptr, 0) { in BlockRange() function in BlockRange
327 BlockRange::BlockRange(SuccessorRange successors) in BlockRange() function in BlockRange
328 : BlockRange(successors.begin().getBase(), successors.size()) {} in BlockRange()
331 BlockRange::OwnerT BlockRange::offset_base(OwnerT object, ptrdiff_t index) { in offset_base()
338 Block *BlockRange::dereference_iterator(OwnerT object, ptrdiff_t index) { in dereference_iterator()
DOperationSupport.cpp204 BlockRange successors, in OperationState()
219 void OperationState::addSuccessors(BlockRange newSuccessors) { in addSuccessors()
DOperation.cpp77 BlockRange successors, unsigned numRegions) { in create()
92 BlockRange successors, RegionRange regions) { in create()
107 BlockRange successors, unsigned numRegions) { in create()
/external/llvm-project/mlir/include/mlir/IR/
DBlockSupport.h88 class BlockRange final
90 BlockRange, llvm::PointerUnion<BlockOperand *, Block *const *>,
94 BlockRange(ArrayRef<Block *> blocks = llvm::None);
95 BlockRange(SuccessorRange successors);
99 BlockRange(Arg &&arg) in BlockRange() function
100 : BlockRange(ArrayRef<Block *>(std::forward<Arg>(arg))) {} in BlockRange()
101 BlockRange(std::initializer_list<Block *> blocks) in BlockRange() function
102 : BlockRange(ArrayRef<Block *>(blocks)) {} in BlockRange()
DOperation.h37 BlockRange successors, unsigned numRegions);
44 BlockRange successors, unsigned numRegions);
53 BlockRange successors = {},
DOperationSupport.h408 BlockRange successors = {},
438 void addSuccessors(BlockRange newSuccessors);
/external/llvm/lib/CodeGen/
DSafeStackColoring.cpp248 auto BlockRange = BlockInstRange[BB]; in dumpBlockLiveness() local
249 dbgs() << " BB [" << BlockRange.first << ", " << BlockRange.second in dumpBlockLiveness()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSafeStackColoring.cpp266 auto BlockRange = BlockInstRange[BB]; in dumpBlockLiveness() local
267 dbgs() << " BB [" << BlockRange.first << ", " << BlockRange.second in dumpBlockLiveness()
/external/skia/modules/skparagraph/include/
DTextStyle.h311 typedef SkRange<size_t> BlockRange; typedef
318 BlockRange blocksBefore, TextRange textBefore) in Placeholder()
328 BlockRange fBlocksBefore;
/external/skia/modules/skparagraph/src/
DTextLine.h49 BlockRange blocks,
134 BlockRange fBlockRange;
DParagraphImpl.h178 SkSpan<Block> blocks(BlockRange blockRange);
214 BlockRange findAllBlocks(TextRange textRange);
DParagraphBuilderImpl.cpp125 BlockRange stylesBefore(fPlaceholders.empty() ? 0 : fPlaceholders.back().fBlocksBefore.end + 1, in addPlaceholder()
DParagraphImpl.cpp614 BlockRange ParagraphImpl::findAllBlocks(TextRange textRange) { in findAllBlocks()
833 SkSpan<Block> ParagraphImpl::blocks(BlockRange blockRange) { in blocks()
DOneLineShaper.cpp448BlockRange blockRange(std::max(block.fRange.start, textRange.start), std::min(block.fRange.end, te… in iterateThroughFontStyles()
DTextLine.cpp84 BlockRange blocks, in TextLine()
/external/llvm-project/llvm/lib/Analysis/
DStackLifetime.cpp294 auto BlockRange = BlockInstRange.find(BB)->getSecond(); in dumpBlockLiveness() local
295 dbgs() << " BB (" << BB->getName() << ") [" << BlockRange.first << ", " << BlockRange.second in dumpBlockLiveness()
/external/llvm-project/clang-tools-extra/modularize/
DModularize.cpp581 SourceRange BlockRange = D->getSourceRange(); in VisitLinkageSpecDecl() local
591 if (!PPTracker.checkForIncludesInBlock(PP, BlockRange, LinkageLabel, in VisitLinkageSpecDecl()
599 SourceRange BlockRange = D->getSourceRange(); in VisitNamespaceDecl() local
603 if (!PPTracker.checkForIncludesInBlock(PP, BlockRange, Label.c_str(), in VisitNamespaceDecl()
/external/llvm-project/clang-tools-extra/clangd/
DConfigCompile.cpp280 llvm::SMRange BlockRange) { in compile()
292 diag(Error, "Exactly one of File or Server must be set.", BlockRange); in compile()
311 diag(Error, "A mountpoint is required.", BlockRange); in compile()
/external/llvm-project/mlir/include/mlir/Dialect/PDLInterp/IR/
DPDLInterpOps.td785 "Block *":$defaultDest, "BlockRange":$dests), [{
818 "Block *":$defaultDest, "BlockRange":$dests), [{
852 "Block *":$defaultDest, "BlockRange":$dests), [{
888 "Block *":$defaultDest, "BlockRange":$dests), [{
920 "BlockRange":$dests), [{
/external/llvm-project/llvm/lib/Transforms/Scalar/
DNewGVN.cpp3399 const auto &BlockRange = assignDFSNumbers(B, ICount); in runGVN() local
3400 BlockInstRange.insert({B, BlockRange}); in runGVN()
3401 ICount += BlockRange.second - BlockRange.first; in runGVN()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DNewGVN.cpp3446 const auto &BlockRange = assignDFSNumbers(B, ICount); in runGVN() local
3447 BlockInstRange.insert({B, BlockRange}); in runGVN()
3448 ICount += BlockRange.second - BlockRange.first; in runGVN()
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/
DSerializer.cpp67 bool skipHeader = false, BlockRange skipBlocks = {}) { in visitInPrettyBlockOrder()