Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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.cpp60 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind()
80 RETURN_CASE(DebugSubsectionKind, InlineeLines, "DEBUG_S_INLINEELINES"); in formatChunkKind()
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h68 return S->kind() == DebugSubsectionKind::InlineeLines;
98 return S->kind() == DebugSubsectionKind::InlineeLines;
H A DCodeView.h319 InlineeLines = 0xf6, enumerator
/openbsd/gnu/llvm/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.cpp241 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp179 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind()
180 return opts::ModuleSubsection::InlineeLines; in convertSubsectionKind()
H A Dllvm-pdbutil.h43 InlineeLines, enumerator
H A Dllvm-pdbutil.cpp140 clEnumValN(ModuleSubsection::InlineeLines, "ilines",
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp111 if (ss.kind() != DebugSubsectionKind::InlineeLines) in ParseInlineeLineTableForCompileUnit()
/openbsd/gnu/llvm/lld/COFF/
H A DPDB.cpp791 case DebugSubsectionKind::InlineeLines: in handleDebugS()
870 if (kind() == DebugSubsectionKind::InlineeLines && in commit()
/openbsd/gnu/llvm/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp558 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
1113 case DebugSubsectionKind::InlineeLines: in printCodeViewSymbolSection()
/openbsd/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp969 MCSymbol *InlineEnd = beginCVSubsection(DebugSubsectionKind::InlineeLines); in emitInlineeLinesSubsection()