Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.cpp526 auto BlockStart = orc::ExecutorAddr(BlockSyms.front()->Value); in graphifyRegularSymbols()
530 orc::ExecutorAddrDiff BlockOffset = BlockStart - NSec.Address; in graphifyRegularSymbols()
531 orc::ExecutorAddrDiff BlockSize = BlockEnd - BlockStart; in graphifyRegularSymbols()
534 dbgs() << " Creating block for " << formatv("{0:x16}", BlockStart) in graphifyRegularSymbols()
546 BlockStart, NSec.Alignment, BlockStart % NSec.Alignment) in graphifyRegularSymbols()
548 BlockStart, NSec.Alignment, in graphifyRegularSymbols()
549 BlockStart % NSec.Alignment); in graphifyRegularSymbols()
666 orc::ExecutorAddrDiff BlockStart = 0; in graphifyCStringSection()
671 size_t BlockSize = I + 1 - BlockStart; in graphifyCStringSection()
525 auto BlockStart = orc::ExecutorAddr(BlockSyms.front()->Value); graphifyRegularSymbols() local
665 orc::ExecutorAddrDiff BlockStart = 0; graphifyCStringSection() local
[all...]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp921 SourceLocation BlockStart) { in checkExportedDeclContext() argument
924 AllUnnamed &= checkExportedDecl(S, D, BlockStart); in checkExportedDeclContext()
929 static bool checkExportedDecl(Sema &S, Decl *D, SourceLocation BlockStart) { in checkExportedDecl() argument
950 if (BlockStart.isValid()) in checkExportedDecl()
951 S.Diag(BlockStart, diag::note_export); in checkExportedDecl()
966 if (BlockStart.isValid()) in checkExportedDecl()
967 S.Diag(BlockStart, diag::note_export); in checkExportedDecl()
981 if (BlockStart.isValid()) in checkExportedDecl()
982 S.Diag(BlockStart, diag::note_export); in checkExportedDecl()
986 return checkExportedDeclContext(S, DC, BlockStart); in checkExportedDecl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSplitKit.cpp1189 SlotIndex BlockStart, BlockEnd; in transferValues() local
1190 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB); in transferValues()
1193 if (Start != BlockStart) { in transferValues()
1194 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1203 BlockStart = BlockEnd; in transferValues()
1207 assert(Start <= BlockStart && "Expected live-in block"); in transferValues()
1208 while (BlockStart < End) { in transferValues()
1211 if (BlockStart == ParentVNI->def) { in transferValues()
1214 VNInfo *VNI = LI.extendInBlock(BlockStart, std::min(BlockEnd, End)); in transferValues()
1229 BlockStart = BlockEnd; in transferValues()
H A DLiveIntervals.cpp418 SlotIndex BlockStart = Indexes->getMBBStartIdx(MBB); in extendSegmentsToUses() local
421 if (VNInfo *ExtVNI = Segments.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses()
425 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses()
441 LLVM_DEBUG(dbgs() << " live-in at " << BlockStart << '\n'); in extendSegmentsToUses()
442 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
H A DAssignmentTrackingAnalysis.cpp226 unsigned BlockStart = VarLocRecords.size(); in init() local
242 if (BlockEnd != BlockStart) in init()
243 VarLocsBeforeInst[I] = {BlockStart, BlockEnd}; in init()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.cpp97 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset()
98 assert(FileOffset >= BlockStart); in pdbBlockOffset() local
99 return FileOffset - BlockStart; in pdbBlockOffset()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp507 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in RecallHistory()
904 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in BufferStartCommand()
1467 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in Cancel()
1529 MoveCursor(CursorLocation::BlockEnd, CursorLocation::BlockStart); in GetLines()
1558 MoveCursor(CursorLocation::EditingCursor, CursorLocation::BlockStart); in PrintAsync()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h127 BlockStart, enumerator