Lines Matching refs:Line

469       LVLineAssembler *Line = createLineAssembler();  in createInstructions()  local
470 Line->setAddress(Address); in createInstructions()
471 Line->setName(StringRef(Stream.str()).trim()); in createInstructions()
472 Instructions.push_back(Line); in createInstructions()
487 for (const LVLine *Line : Instructions) in createInstructions()
489 << hexValue(Line->getOffset()) << ", (" << Line->getName() in createInstructions()
574 for (const LVLine *Line : *DebugLines) { in processLines()
575 dbgs() << format_decimal(Index, 5) << ": " << hexValue(Line->getOffset()) in processLines()
576 << ", (" << Line->getLineNumber() << ")" in processLines()
612 for (const LVLine *Line : InstructionLines) in processLines()
614 << hexValue(Line->getOffset()) << ", (" << Line->getName() in processLines()
672 for (const LVLine *Line : *DebugLines) { in processLines()
674 << hexValue(Line->getOffset()) << ", (" in processLines()
675 << ((Line->getIsLineDebug()) in processLines()
676 ? Line->lineNumberAsStringStripped(/*ShowZero=*/true) in processLines()
677 : Line->getName()) in processLines()
696 for (const LVLine *Line : *Lines) in processLines()
698 << hexValue(Line->getOffset()) << ", (" << Line->getName() in processLines()
704 for (LVLine *Line : *Lines) in processLines()
705 Scope->addElement(Line); in processLines()
719 for (LVLine *Line : *DebugLines) { in processLines()
722 Scope = ScopesWithRanges->getEntry(Line->getAddress()); in processLines()
727 dbgs() << "Adding line to CU: " << hexValue(Line->getOffset()) << ", (" in processLines()
728 << ((Line->getIsLineDebug()) in processLines()
729 ? Line->lineNumberAsStringStripped(/*ShowZero=*/true) in processLines()
730 : Line->getName()) in processLines()
736 Scope->addElement(Line); in processLines()
739 if (options().getWarningLines() && Line->getIsLineDebug() && in processLines()
740 !Line->getLineNumber()) in processLines()
741 CompileUnit->addLineZero(Line); in processLines()
750 if (Line->getIsLineDebug()) in processLines()
751 CompileUnit->addMapping(Line, SectionIndex); in processLines()
754 patterns().resolvePatternMatch(Line); in processLines()
777 [](LVLine *Line) { return !Line->getAddress(); }); in processLines() argument
781 [](LVLine *Line) { return !Line->getAddress(); }); in processLines() argument
888 for (const LVLine *Line : *InlineeLines) in includeInlineeLines()
889 dbgs() << "[" << hexValue(Line->getAddress()) << "] " in includeInlineeLines()
890 << Line->getLineNumber() << "\n"; in includeInlineeLines()
892 for (const LVLine *Line : CULines) in includeInlineeLines()
893 dbgs() << "Line address: " << hexValue(Line->getOffset()) << ", (" in includeInlineeLines()
894 << Line->getLineNumber() << ")\n"; in includeInlineeLines()
929 for (const LVLine *Line : CULines) in includeInlineeLines()
930 dbgs() << "Line address: " << hexValue(Line->getOffset()) << ", (" in includeInlineeLines()
931 << Line->getLineNumber() << ")\n"; in includeInlineeLines()