Home
last modified time | relevance | path

Searched refs:DebugLines (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp569 void LVBinaryReader::processLines(LVLines *DebugLines, in processLines() argument
572 assert(DebugLines && "DebugLines is null."); in processLines()
576 if (DebugLines->empty() && !options().getPrintInstructions()) in processLines()
587 dbgs() << format("\nProcess debug lines: %d\n", DebugLines->size()); in processLines()
588 for (const LVLine *Line : *DebugLines) { in processLines()
598 LVLines::iterator Iter = DebugLines->begin(); in processLines()
599 while (TraverseLines && Iter != DebugLines->end()) { in processLines()
645 while (Iter != DebugLines->end()) { in processLines()
663 Iter = DebugLines->insert(Iter, InstructionLine); in processLines()
671 if (Iter == DebugLines->end()) { in processLines()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.h183 void processLines(LVLines *DebugLines, LVSectionIndex SectionIndex);
184 void processLines(LVLines *DebugLines, LVSectionIndex SectionIndex,
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp33 if (!DebugLines.empty()) in getNonEmptySectionNames()
105 IO.mapOptional("debug_line", DWARF.DebugLines); in mapping()
H A DDWARFEmitter.cpp598 for (const DWARFYAML::LineTable &LineTable : DI.DebugLines) { in emitDebugLine()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h254 std::vector<LineTable> DebugLines; member