Lines Matching refs:DebugLines

555 void LVBinaryReader::processLines(LVLines *DebugLines,  in processLines()  argument
558 assert(DebugLines && "DebugLines is null."); in processLines()
562 if (DebugLines->empty() && !options().getPrintInstructions()) in processLines()
573 dbgs() << format("\nProcess debug lines: %d\n", DebugLines->size()); in processLines()
574 for (const LVLine *Line : *DebugLines) { in processLines()
584 LVLines::iterator Iter = DebugLines->begin(); in processLines()
585 while (TraverseLines && Iter != DebugLines->end()) { in processLines()
631 while (Iter != DebugLines->end()) { in processLines()
649 Iter = DebugLines->insert(Iter, InstructionLine); in processLines()
657 if (Iter == DebugLines->end()) { in processLines()
661 DebugLines->push_back(InstructionLine); in processLines()
664 DebugLines->push_back(InstructionLine); in processLines()
670 dbgs() << format("Lines after merge: %d\n", DebugLines->size()); in processLines()
672 for (const LVLine *Line : *DebugLines) { in processLines()
685 if (DebugLines->empty()) { in processLines()
707 DebugLines->append(*Lines); in processLines()
719 for (LVLine *Line : *DebugLines) { in processLines()
760 void LVBinaryReader::processLines(LVLines *DebugLines, in processLines() argument
762 assert(DebugLines && "DebugLines is null."); in processLines()
763 if (DebugLines->empty() && !ScopeInstructions.findMap(SectionIndex)) in processLines()
769 processLines(DebugLines, SectionIndex, nullptr); in processLines()
776 std::find_if(std::begin(*DebugLines), std::end(*DebugLines), in processLines()
778 while (It != std::end(*DebugLines)) { in processLines()
779 AddressZero.emplace_back(std::distance(std::begin(*DebugLines), It)); in processLines()
780 It = std::find_if(std::next(It), std::end(*DebugLines), in processLines()
788 processLines(DebugLines, SectionIndex, nullptr); in processLines()
806 Address = (*DebugLines)[End]->getAddress(); in processLines()
813 End = DebugLines->size() - 1; in processLines()
814 Address = (*DebugLines)[End]->getAddress(); in processLines()
849 LVLines::iterator IterStart = DebugLines->begin() + std::get<0>(Bucket); in processLines()
851 DebugLines->begin() + std::get<1>(Bucket) + 1; in processLines()