Home
last modified time | relevance | path

Searched refs:DebugSubsectionKind (Results 1 – 25 of 37) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DFormatUtil.cpp101 std::string llvm::pdb::formatChunkKind(DebugSubsectionKind Kind, in formatChunkKind()
105 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind()
106 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind()
107 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind()
108 RETURN_CASE(DebugSubsectionKind, StringTable, "strings"); in formatChunkKind()
109 RETURN_CASE(DebugSubsectionKind, FileChecksums, "checksums"); in formatChunkKind()
110 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind()
111 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind()
112 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, "xmi"); in formatChunkKind()
113 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, "xme"); in formatChunkKind()
[all …]
H A DYAMLOutputStyle.cpp171 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { in convertSubsectionKind()
173 case DebugSubsectionKind::CrossScopeExports: in convertSubsectionKind()
175 case DebugSubsectionKind::CrossScopeImports: in convertSubsectionKind()
177 case DebugSubsectionKind::FileChecksums: in convertSubsectionKind()
179 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind()
181 case DebugSubsectionKind::Lines: in convertSubsectionKind()
183 case DebugSubsectionKind::Symbols: in convertSubsectionKind()
185 case DebugSubsectionKind::StringTable: in convertSubsectionKind()
187 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionVisitor.cpp33 case DebugSubsectionKind::Lines: { in visitDebugSubsection()
40 case DebugSubsectionKind::FileChecksums: { in visitDebugSubsection()
47 case DebugSubsectionKind::InlineeLines: { in visitDebugSubsection()
53 case DebugSubsectionKind::CrossScopeExports: { in visitDebugSubsection()
59 case DebugSubsectionKind::CrossScopeImports: { in visitDebugSubsection()
65 case DebugSubsectionKind::Symbols: { in visitDebugSubsection()
71 case DebugSubsectionKind::StringTable: { in visitDebugSubsection()
77 case DebugSubsectionKind::FrameData: { in visitDebugSubsection()
83 case DebugSubsectionKind::CoffSymbolRVA: { in visitDebugSubsection()
H A DEnumTables.cpp232 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None),
233 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
234 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
235 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable),
236 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums),
237 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
238 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
239 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports),
240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports),
241 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines),
[all …]
H A DDebugSubsectionRecord.cpp25 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord()
36 DebugSubsectionKind Kind = in initialize()
37 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize()
48 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
H A DDebugSymbolRVASubsection.cpp20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
H A DStringsAndChecksums.cpp34 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings()
73 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
H A DDebugStringTableSubsection.cpp23 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
45 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
H A DDebugInlineeLinesSubsection.cpp43 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
63 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
H A DDebugLinesSubsection.cpp54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()
73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h21 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef()
26 DebugSubsectionKind kind() const { return Kind; } in kind()
29 DebugSubsectionKind Kind;
34 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection()
39 DebugSubsectionKind kind() const { return Kind; } in kind()
45 DebugSubsectionKind Kind;
H A DDebugSymbolsSubsection.h21 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsectionRef()
24 return S->kind() == DebugSubsectionKind::Symbols; in classof()
38 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection()
40 return S->kind() == DebugSubsectionKind::Symbols; in classof()
H A DDebugCrossExSubsection.h30 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef()
33 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof()
49 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection()
52 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof()
H A DDebugSubsectionRecord.h38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data);
43 DebugSubsectionKind kind() const;
47 DebugSubsectionKind Kind = DebugSubsectionKind::None;
H A DDebugFrameDataSubsection.h23 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
25 return S->kind() == DebugSubsectionKind::FrameData; in classof()
44 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
47 return S->kind() == DebugSubsectionKind::FrameData; in classof()
H A DDebugCrossImpSubsection.h53 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {}
56 return S->kind() == DebugSubsectionKind::CrossScopeImports;
73 : DebugSubsection(DebugSubsectionKind::CrossScopeImports),
77 return S->kind() == DebugSubsectionKind::CrossScopeImports;
H A DDebugChecksumsSubsection.h55 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
58 return S->kind() == DebugSubsectionKind::FileChecksums;
80 return S->kind() == DebugSubsectionKind::FileChecksums;
H A DDebugSymbolRVASubsection.h33 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
50 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
H A DDebugStringTableSubsection.h36 return S->kind() == DebugSubsectionKind::StringTable; in classof()
61 return S->kind() == DebugSubsectionKind::StringTable; in classof()
H A DStringsAndChecksums.h44 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize()
48 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
H A DDebugInlineeLinesSubsection.h69 return S->kind() == DebugSubsectionKind::InlineeLines;
99 return S->kind() == DebugSubsectionKind::InlineeLines;
H A DDebugLinesSubsection.h88 return S->kind() == DebugSubsectionKind::Lines; in classof()
120 return S->kind() == DebugSubsectionKind::Lines; in classof()
H A DDebugUnknownSubsection.h20 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp69 LLVM_YAML_DECLARE_ENUM_TRAITS(DebugSubsectionKind)
88 explicit YAMLSubsectionBase(DebugSubsectionKind Kind) : Kind(Kind) {} in YAMLSubsectionBase()
96 DebugSubsectionKind Kind;
107 : YAMLSubsectionBase(DebugSubsectionKind::FileChecksums) {} in YAMLChecksumsSubsection()
121 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} in YAMLLinesSubsection()
137 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection()
153 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection()
167 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection()
181 YAMLSymbolsSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Symbols) {} in YAMLSymbolsSubsection()
195 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp552 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
553 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
554 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable),
555 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums),
556 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
557 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
558 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports),
559 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports),
560 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines),
561 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap),
[all …]

12