Home
last modified time | relevance | path

Searched refs:InlineeLines (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp46 if (SS.kind() != DebugSubsectionKind::InlineeLines) in findInlineeByTypeIndex()
49 DebugInlineeLinesSubsectionRef InlineeLines; in findInlineeByTypeIndex() local
51 if (auto EC = InlineeLines.initialize(Reader)) { in findInlineeByTypeIndex()
56 for (const InlineeSourceLine &Line : InlineeLines) in findInlineeByTypeIndex()
H A DFormatUtil.cpp61 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind()
81 RETURN_CASE(DebugSubsectionKind, InlineeLines, "DEBUG_S_INLINEELINES"); in formatChunkKind()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h68 return S->kind() == DebugSubsectionKind::InlineeLines;
98 return S->kind() == DebugSubsectionKind::InlineeLines;
H A DCodeView.h322 InlineeLines = 0xf6, enumerator
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
H A DDebugSubsectionVisitor.cpp48 case DebugSubsectionKind::InlineeLines: { in visitDebugSubsection()
H A DEnumTables.cpp242 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp137 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection()
148 InlineeInfo InlineeLines; member
336 IO.mapRequired("HasExtraFiles", InlineeLines.HasExtraFiles); in map()
337 IO.mapRequired("Sites", InlineeLines.Sites); in map()
448 *SC.checksums(), InlineeLines.HasExtraFiles); in toCodeViewSubsection()
450 for (const auto &Site : InlineeLines.Sites) { in toCodeViewSubsection()
453 if (!InlineeLines.HasExtraFiles) in toCodeViewSubsection()
624 Result->InlineeLines.HasExtraFiles = Lines.hasExtraFiles(); in fromCodeViewSubsection()
641 Result->InlineeLines.Sites.push_back(Site); in fromCodeViewSubsection()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVBinaryReader.cpp885 LVLines *InlineeLines = InlineeIter->second.get(); in includeInlineeLines() local
888 for (const LVLine *Line : *InlineeLines) in includeInlineeLines()
901 if (InlineeLines->size()) { in includeInlineeLines()
903 uint64_t InlineeStart = (InlineeLines->front())->getAddress(); in includeInlineeLines()
915 (*Iter)->setLineNumber((*InlineeLines->begin())->getLineNumber()); in includeInlineeLines()
917 CULines.insert(Iter, InlineeLines->begin() + 1, InlineeLines->end()); in includeInlineeLines()
924 InlineeLines->clear(); in includeInlineeLines()
H A DLVCodeViewVisitor.cpp3492 LVLines InlineeLines; in inlineSiteAnnotation() local
3501 InlineeLines.push_back(Line); in inlineSiteAnnotation()
3560 Reader->addInlineeLines(InlinedFunction, InlineeLines); in inlineSiteAnnotation()
H A DLVCodeViewReader.cpp702 case DebugSubsectionKind::InlineeLines: in traverseSymbolSection()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp179 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind()
180 return opts::ModuleSubsection::InlineeLines; in convertSubsectionKind()
H A Dllvm-pdbutil.h42 InlineeLines, enumerator
H A Dllvm-pdbutil.cpp138 clEnumValN(ModuleSubsection::InlineeLines, "ilines",
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp111 if (ss.kind() != DebugSubsectionKind::InlineeLines) in ParseInlineeLineTableForCompileUnit()
/freebsd/contrib/llvm-project/lld/COFF/
H A DPDB.cpp788 case DebugSubsectionKind::InlineeLines: in handleDebugS()
867 if (kind() == DebugSubsectionKind::InlineeLines && in commit()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp560 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
1200 case DebugSubsectionKind::InlineeLines: in printCodeViewSymbolSection()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp975 MCSymbol *InlineEnd = beginCVSubsection(DebugSubsectionKind::InlineeLines); in emitInlineeLinesSubsection()