Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A DFormatUtil.cpp106 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind()
107 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind()
108 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind()
118 RETURN_CASE(DebugSubsectionKind, MergedAssemblyInput, in formatChunkKind()
124 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind()
131 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, in formatChunkKind()
133 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, in formatChunkKind()
136 RETURN_CASE(DebugSubsectionKind, FuncMDTokenMap, in formatChunkKind()
138 RETURN_CASE(DebugSubsectionKind, TypeMDTokenMap, in formatChunkKind()
140 RETURN_CASE(DebugSubsectionKind, MergedAssemblyInput, in formatChunkKind()
[all …]
H A DYAMLOutputStyle.cpp172 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { in convertSubsectionKind()
174 case DebugSubsectionKind::CrossScopeExports: in convertSubsectionKind()
176 case DebugSubsectionKind::CrossScopeImports: in convertSubsectionKind()
178 case DebugSubsectionKind::FileChecksums: in convertSubsectionKind()
180 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind()
182 case DebugSubsectionKind::Lines: in convertSubsectionKind()
184 case DebugSubsectionKind::Symbols: in convertSubsectionKind()
186 case DebugSubsectionKind::StringTable: in convertSubsectionKind()
188 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionVisitor.cpp34 case DebugSubsectionKind::Lines: { in visitDebugSubsection()
41 case DebugSubsectionKind::FileChecksums: { in visitDebugSubsection()
48 case DebugSubsectionKind::InlineeLines: { in visitDebugSubsection()
54 case DebugSubsectionKind::CrossScopeExports: { in visitDebugSubsection()
60 case DebugSubsectionKind::CrossScopeImports: { in visitDebugSubsection()
66 case DebugSubsectionKind::Symbols: { in visitDebugSubsection()
72 case DebugSubsectionKind::StringTable: { in visitDebugSubsection()
78 case DebugSubsectionKind::FrameData: { in visitDebugSubsection()
84 case DebugSubsectionKind::CoffSymbolRVA: { in visitDebugSubsection()
H A DEnumTables.cpp213 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None),
214 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
215 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
216 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable),
217 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums),
218 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
219 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
222 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines),
223 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap),
224 CV_ENUM_CLASS_ENT(DebugSubsectionKind, TypeMDTokenMap),
[all …]
H A DDebugSubsectionRecord.cpp26 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord()
39 DebugSubsectionKind Kind = in initialize()
40 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize()
52 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
H A DDebugSymbolRVASubsection.cpp21 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
28 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
H A DStringsAndChecksums.cpp35 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings()
74 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
H A DDebugStringTableSubsection.cpp24 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
46 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
H A DDebugInlineeLinesSubsection.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
H A DDebugLinesSubsection.cpp55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()
74 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h22 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef()
27 DebugSubsectionKind kind() const { return Kind; } in kind()
30 DebugSubsectionKind Kind;
35 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection()
40 DebugSubsectionKind kind() const { return Kind; } in kind()
46 DebugSubsectionKind Kind;
H A DDebugSymbolsSubsection.h22 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsectionRef()
25 return S->kind() == DebugSubsectionKind::Symbols; in classof()
39 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection()
41 return S->kind() == DebugSubsectionKind::Symbols; in classof()
H A DDebugCrossExSubsection.h31 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef()
34 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof()
50 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection()
53 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof()
H A DDebugFrameDataSubsection.h24 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
26 return S->kind() == DebugSubsectionKind::FrameData; in classof()
45 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
48 return S->kind() == DebugSubsectionKind::FrameData; in classof()
H A DDebugSubsectionRecord.h39 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data,
46 DebugSubsectionKind kind() const;
51 DebugSubsectionKind Kind = DebugSubsectionKind::None;
H A DDebugCrossImpSubsection.h54 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {}
57 return S->kind() == DebugSubsectionKind::CrossScopeImports;
74 : DebugSubsection(DebugSubsectionKind::CrossScopeImports),
78 return S->kind() == DebugSubsectionKind::CrossScopeImports;
H A DDebugChecksumsSubsection.h56 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
59 return S->kind() == DebugSubsectionKind::FileChecksums;
81 return S->kind() == DebugSubsectionKind::FileChecksums;
H A DDebugSymbolRVASubsection.h34 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
51 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
H A DDebugStringTableSubsection.h37 return S->kind() == DebugSubsectionKind::StringTable; in classof()
62 return S->kind() == DebugSubsectionKind::StringTable; in classof()
H A DStringsAndChecksums.h45 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize()
49 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
H A DDebugInlineeLinesSubsection.h70 return S->kind() == DebugSubsectionKind::InlineeLines;
95 return S->kind() == DebugSubsectionKind::InlineeLines;
H A DDebugLinesSubsection.h89 return S->kind() == DebugSubsectionKind::Lines; in classof()
121 return S->kind() == DebugSubsectionKind::Lines; in classof()
H A DDebugUnknownSubsection.h21 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp70 LLVM_YAML_DECLARE_ENUM_TRAITS(DebugSubsectionKind)
89 explicit YAMLSubsectionBase(DebugSubsectionKind Kind) : Kind(Kind) {} in YAMLSubsectionBase()
97 DebugSubsectionKind Kind;
108 : YAMLSubsectionBase(DebugSubsectionKind::FileChecksums) {} in YAMLChecksumsSubsection()
138 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection()
154 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection()
168 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection()
196 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection()
210 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection()
225 : YAMLSubsectionBase(DebugSubsectionKind::CoffSymbolRVA) {} in YAMLCoffSymbolRVASubsection()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp543 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
544 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
936 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
937 case DebugSubsectionKind::FileChecksums: in initializeFileAndStringTables()
940 case DebugSubsectionKind::StringTable: in initializeFileAndStringTables()
1006 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection()
1007 case DebugSubsectionKind::Symbols: in printCodeViewSymbolSection()
1011 case DebugSubsectionKind::InlineeLines: in printCodeViewSymbolSection()
1015 case DebugSubsectionKind::FileChecksums: in printCodeViewSymbolSection()
1019 case DebugSubsectionKind::Lines: { in printCodeViewSymbolSection()
[all …]

12