Lines Matching refs:Line
498 LVLineAssembler *Line = createLineAssembler(); in createInstructions() local
499 Line->setAddress(Address); in createInstructions()
500 Line->setName(StringRef(Stream.str()).trim()); in createInstructions()
501 Instructions.push_back(Line); in createInstructions()
516 for (const LVLine *Line : Instructions) in createInstructions()
518 << hexValue(Line->getOffset()) << ", (" << Line->getName() in createInstructions()
603 for (const LVLine *Line : *DebugLines) { in processLines()
604 dbgs() << format_decimal(Index, 5) << ": " << hexValue(Line->getOffset()) in processLines()
605 << ", (" << Line->getLineNumber() << ")" in processLines()
641 for (const LVLine *Line : InstructionLines) in processLines()
643 << hexValue(Line->getOffset()) << ", (" << Line->getName() in processLines()
701 for (const LVLine *Line : *DebugLines) { in processLines()
703 << hexValue(Line->getOffset()) << ", (" in processLines()
704 << ((Line->getIsLineDebug()) in processLines()
705 ? Line->lineNumberAsStringStripped(/*ShowZero=*/true) in processLines()
706 : Line->getName()) in processLines()
725 for (const LVLine *Line : *Lines) in processLines()
727 << hexValue(Line->getOffset()) << ", (" << Line->getName() in processLines()
733 for (LVLine *Line : *Lines) in processLines()
734 Scope->addElement(Line); in processLines()
748 for (LVLine *Line : *DebugLines) { in processLines()
751 Scope = ScopesWithRanges->getEntry(Line->getAddress()); in processLines()
756 dbgs() << "Adding line to CU: " << hexValue(Line->getOffset()) << ", (" in processLines()
757 << ((Line->getIsLineDebug()) in processLines()
758 ? Line->lineNumberAsStringStripped(/*ShowZero=*/true) in processLines()
759 : Line->getName()) in processLines()
765 Scope->addElement(Line); in processLines()
768 if (options().getWarningLines() && Line->getIsLineDebug() && in processLines()
769 !Line->getLineNumber()) in processLines()
770 CompileUnit->addLineZero(Line); in processLines()
779 if (Line->getIsLineDebug()) in processLines()
780 CompileUnit->addMapping(Line, SectionIndex); in processLines()
783 patterns().resolvePatternMatch(Line); in processLines()
806 [](LVLine *Line) { return !Line->getAddress(); }); in processLines() argument
810 [](LVLine *Line) { return !Line->getAddress(); }); in processLines() argument
917 for (const LVLine *Line : *InlineeLines) in includeInlineeLines()
918 dbgs() << "[" << hexValue(Line->getAddress()) << "] " in includeInlineeLines()
919 << Line->getLineNumber() << "\n"; in includeInlineeLines()
921 for (const LVLine *Line : CULines) in includeInlineeLines()
922 dbgs() << "Line address: " << hexValue(Line->getOffset()) << ", (" in includeInlineeLines()
923 << Line->getLineNumber() << ")\n"; in includeInlineeLines()
958 for (const LVLine *Line : CULines) in includeInlineeLines()
959 dbgs() << "Line address: " << hexValue(Line->getOffset()) << ", (" in includeInlineeLines()
960 << Line->getLineNumber() << ")\n"; in includeInlineeLines()