Lines Matching refs:DebugLines
584 void LVBinaryReader::processLines(LVLines *DebugLines, in processLines() argument
587 assert(DebugLines && "DebugLines is null."); in processLines()
591 if (DebugLines->empty() && !options().getPrintInstructions()) in processLines()
602 dbgs() << format("\nProcess debug lines: %d\n", DebugLines->size()); in processLines()
603 for (const LVLine *Line : *DebugLines) { in processLines()
613 LVLines::iterator Iter = DebugLines->begin(); in processLines()
614 while (TraverseLines && Iter != DebugLines->end()) { in processLines()
660 while (Iter != DebugLines->end()) { in processLines()
678 Iter = DebugLines->insert(Iter, InstructionLine); in processLines()
686 if (Iter == DebugLines->end()) { in processLines()
690 DebugLines->push_back(InstructionLine); in processLines()
693 DebugLines->push_back(InstructionLine); in processLines()
699 dbgs() << format("Lines after merge: %d\n", DebugLines->size()); in processLines()
701 for (const LVLine *Line : *DebugLines) { in processLines()
714 if (DebugLines->empty()) { in processLines()
736 DebugLines->append(*Lines); in processLines()
748 for (LVLine *Line : *DebugLines) { in processLines()
789 void LVBinaryReader::processLines(LVLines *DebugLines, in processLines() argument
791 assert(DebugLines && "DebugLines is null."); in processLines()
792 if (DebugLines->empty() && !ScopeInstructions.findMap(SectionIndex)) in processLines()
798 processLines(DebugLines, SectionIndex, nullptr); in processLines()
805 std::find_if(std::begin(*DebugLines), std::end(*DebugLines), in processLines()
807 while (It != std::end(*DebugLines)) { in processLines()
808 AddressZero.emplace_back(std::distance(std::begin(*DebugLines), It)); in processLines()
809 It = std::find_if(std::next(It), std::end(*DebugLines), in processLines()
817 processLines(DebugLines, SectionIndex, nullptr); in processLines()
835 Address = (*DebugLines)[End]->getAddress(); in processLines()
842 End = DebugLines->size() - 1; in processLines()
843 Address = (*DebugLines)[End]->getAddress(); in processLines()
878 LVLines::iterator IterStart = DebugLines->begin() + std::get<0>(Bucket); in processLines()
880 DebugLines->begin() + std::get<1>(Bucket) + 1; in processLines()