Searched refs:BlockStart (Results 1 – 7 of 7) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaModule.cpp | 584 SourceLocation BlockStart); 633 SourceLocation BlockStart) { in diagExportedUnnamedDecl() argument 634 S.Diag(D->getLocation(), getUnnamedDeclDiag(UDK, BlockStart.isValid())) in diagExportedUnnamedDecl() 636 if (BlockStart.isValid()) in diagExportedUnnamedDecl() 637 S.Diag(BlockStart, diag::note_export); in diagExportedUnnamedDecl() 641 static bool checkExportedDecl(Sema &S, Decl *D, SourceLocation BlockStart) { in checkExportedDecl() argument 645 diagExportedUnnamedDecl(S, *UDK, D, BlockStart); in checkExportedDecl() 653 if (BlockStart.isValid()) in checkExportedDecl() 654 S.Diag(BlockStart, diag::note_export); in checkExportedDecl() 666 if (BlockStart.isValid()) in checkExportedDecl() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/ |
H A D | MachOLinkGraphBuilder.cpp | 494 JITTargetAddress BlockStart = BlockSyms.front()->Value; in graphifyRegularSymbols() local 498 JITTargetAddress BlockOffset = BlockStart - NSec.Address; in graphifyRegularSymbols() 499 JITTargetAddress BlockSize = BlockEnd - BlockStart; in graphifyRegularSymbols() 502 dbgs() << " Creating block for " << formatv("{0:x16}", BlockStart) in graphifyRegularSymbols() 514 BlockStart, NSec.Alignment, BlockStart % NSec.Alignment) in graphifyRegularSymbols() 516 BlockStart, NSec.Alignment, in graphifyRegularSymbols() 517 BlockStart % NSec.Alignment); in graphifyRegularSymbols() 544 ? G->addDefinedSymbol(B, NSym.Value - BlockStart, *NSym.Name, in graphifyRegularSymbols() 547 : G->addAnonymousSymbol(B, NSym.Value - BlockStart, in graphifyRegularSymbols()
|
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpisrc/ |
H A D | asremove.c | 560 char *BlockStart; in AsRemoveEmptyBlocks() local 575 BlockStart = SubBuffer; in AsRemoveEmptyBlocks() 595 while (*BlockStart != '\n') in AsRemoveEmptyBlocks() 597 BlockStart--; in AsRemoveEmptyBlocks() 610 SubBuffer = AsRemoveData (BlockStart, SubBuffer); in AsRemoveEmptyBlocks()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/ |
H A D | X86Counter.cpp | 94 const uint64_t BlockStart = From == nullptr in parseDataBuffer() local 101 if (BlockStart <= Entry.from && BlockEnd >= Entry.to) in parseDataBuffer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | SplitKit.cpp | 1182 SlotIndex BlockStart, BlockEnd; in transferValues() local 1183 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB); in transferValues() 1186 if (Start != BlockStart) { in transferValues() 1187 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues() 1196 BlockStart = BlockEnd; in transferValues() 1200 assert(Start <= BlockStart && "Expected live-in block"); in transferValues() 1201 while (BlockStart < End) { in transferValues() 1204 if (BlockStart == ParentVNI->def) { in transferValues() 1207 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues() 1222 BlockStart = BlockEnd; in transferValues()
|
H A D | LiveIntervals.cpp | 405 SlotIndex BlockStart = Indexes->getMBBStartIdx(MBB); in extendSegmentsToUses() local 408 if (VNInfo *ExtVNI = Segments.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses() 412 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses() 428 LLVM_DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in extendSegmentsToUses() 429 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
H A D | ExplainOutputStyle.cpp | 95 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset() local 96 assert(FileOffset >= BlockStart); in pdbBlockOffset() 97 return FileOffset - BlockStart; in pdbBlockOffset()
|