Home
last modified time | relevance | path

Searched refs:BlockStart (Results 1 – 9 of 9) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaModule.cpp823 SourceLocation BlockStart);
877 SourceLocation BlockStart) { in diagExportedUnnamedDecl() argument
878 S.Diag(D->getLocation(), getUnnamedDeclDiag(UDK, BlockStart.isValid())) in diagExportedUnnamedDecl()
880 if (BlockStart.isValid()) in diagExportedUnnamedDecl()
881 S.Diag(BlockStart, diag::note_export); in diagExportedUnnamedDecl()
885 static bool checkExportedDecl(Sema &S, Decl *D, SourceLocation BlockStart) { in checkExportedDecl() argument
889 diagExportedUnnamedDecl(S, *UDK, D, BlockStart); in checkExportedDecl()
899 if (BlockStart.isValid()) in checkExportedDecl()
900 S.Diag(BlockStart, diag::note_export); in checkExportedDecl()
914 if (BlockStart.isValid()) in checkExportedDecl()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp516 auto BlockStart = orc::ExecutorAddr(BlockSyms.front()->Value); in graphifyRegularSymbols() local
520 orc::ExecutorAddrDiff BlockOffset = BlockStart - NSec.Address; in graphifyRegularSymbols()
521 orc::ExecutorAddrDiff BlockSize = BlockEnd - BlockStart; in graphifyRegularSymbols()
524 dbgs() << " Creating block for " << formatv("{0:x16}", BlockStart) in graphifyRegularSymbols()
536 BlockStart, NSec.Alignment, BlockStart % NSec.Alignment) in graphifyRegularSymbols()
538 BlockStart, NSec.Alignment, in graphifyRegularSymbols()
539 BlockStart % NSec.Alignment); in graphifyRegularSymbols()
656 orc::ExecutorAddrDiff BlockStart = 0; in graphifyCStringSection() local
661 size_t BlockSize = I + 1 - BlockStart; in graphifyCStringSection()
664 {NSec.Data + BlockStart, BlockSize}, in graphifyCStringSection()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/X86/
H A DX86Counter.cpp98 const uint64_t BlockStart = From == nullptr in parseDataBuffer() local
105 if (BlockStart <= Entry.from && BlockEnd >= Entry.to) in parseDataBuffer()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DSplitKit.cpp1176 SlotIndex BlockStart, BlockEnd; in transferValues() local
1177 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB); in transferValues()
1180 if (Start != BlockStart) { in transferValues()
1181 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1190 BlockStart = BlockEnd; in transferValues()
1194 assert(Start <= BlockStart && "Expected live-in block"); in transferValues()
1195 while (BlockStart < End) { in transferValues()
1198 if (BlockStart == ParentVNI->def) { in transferValues()
1201 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1216 BlockStart = BlockEnd; in transferValues()
H A DLiveIntervals.cpp398 SlotIndex BlockStart = Indexes->getMBBStartIdx(MBB); in extendSegmentsToUses() local
401 if (VNInfo *ExtVNI = Segments.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses()
405 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses()
421 LLVM_DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in extendSegmentsToUses()
422 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
H A DAssignmentTrackingAnalysis.cpp184 unsigned BlockStart = VarLocRecords.size(); in init() local
189 if (BlockEnd != BlockStart) in init()
190 VarLocsBeforeInst[P.first] = {BlockStart, BlockEnd}; in init()
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp98 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset() local
99 assert(FileOffset >= BlockStart); in pdbBlockOffset()
100 return FileOffset - BlockStart; in pdbBlockOffset()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DEditline.cpp520 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in RecallHistory()
915 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in BufferStartCommand()
1494 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in Cancel()
1556 MoveCursor(CursorLocation::BlockEnd, CursorLocation::BlockStart); in GetLines()
1584 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in PrintAsync()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DEditline.h126 BlockStart, enumerator