Lines Matching refs:Lines
467 if (SS.kind() != DebugSubsectionKind::Lines) in findLineTable()
470 DebugLinesSubsectionRef Lines; in findLineTable() local
472 if (auto EC = Lines.initialize(Reader)) { in findLineTable()
477 uint32_t RelocSegment = Lines.header()->RelocSegment; in findLineTable()
478 uint32_t RelocOffset = Lines.header()->RelocOffset; in findLineTable()
479 for (const LineColumnEntry &Group : Lines) { in findLineTable()
495 (Lines.hasColumnInfo()) ? Group.Columns.front().StartColumn : 0; in findLineTable()
504 if (Lines.hasColumnInfo() && ColIt != ColsEnd) { in findLineTable()
512 uint64_t EndAddr = StartAddr + Lines.header()->CodeSize; in findLineTable()
514 ColNum = (Lines.hasColumnInfo()) ? Group.Columns.back().StartColumn : 0; in findLineTable()
538 std::vector<LineTableEntry> Lines = findLineTable(Modi); in findLineNumbersByVA() local
539 if (Lines.empty()) in findLineNumbersByVA()
544 auto LineIter = llvm::partition_point(Lines, [&](const LineTableEntry &E) { in findLineNumbersByVA()
549 if (LineIter == Lines.end() || LineIter->Addr > VA) { in findLineNumbersByVA()
550 if (LineIter == Lines.begin() || std::prev(LineIter)->IsTerminalEntry) in findLineNumbersByVA()
571 while (LineIter != Lines.end()) { in findLineNumbersByVA()