Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp40 if (SS.kind() != DebugSubsectionKind::InlineeLines) in findInlineeByTypeIndex()
43 DebugInlineeLinesSubsectionRef InlineeLines; in findInlineeByTypeIndex() local
45 if (auto EC = InlineeLines.initialize(Reader)) { in findInlineeByTypeIndex()
50 for (const InlineeSourceLine &Line : InlineeLines) in findInlineeByTypeIndex()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.h69 return S->kind() == DebugSubsectionKind::InlineeLines;
99 return S->kind() == DebugSubsectionKind::InlineeLines;
H A DCodeView.h317 InlineeLines = 0xf6, enumerator
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugInlineeLinesSubsection.cpp43 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
63 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
H A DDebugSubsectionVisitor.cpp47 case DebugSubsectionKind::InlineeLines: { in visitDebugSubsection()
H A DEnumTables.cpp238 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
/netbsd/external/apache2/llvm/dist/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()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DFormatUtil.cpp111 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind()
129 RETURN_CASE(DebugSubsectionKind, InlineeLines, "DEBUG_S_INLINEELINES"); in formatChunkKind()
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.cpp138 clEnumValN(ModuleSubsection::InlineeLines, "ilines",
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp557 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
1055 case DebugSubsectionKind::InlineeLines: in printCodeViewSymbolSection()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp888 MCSymbol *InlineEnd = beginCVSubsection(DebugSubsectionKind::InlineeLines); in emitInlineeLinesSubsection()