Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DFormatUtil.cpp55 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind()
56 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind()
57 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind()
75 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind()
82 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, in formatChunkKind()
84 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, in formatChunkKind()
87 RETURN_CASE(DebugSubsectionKind, FuncMDTokenMap, in formatChunkKind()
89 RETURN_CASE(DebugSubsectionKind, TypeMDTokenMap, in formatChunkKind()
93 RETURN_CASE(DebugSubsectionKind, CoffSymbolRVA, in formatChunkKind()
95 RETURN_CASE(DebugSubsectionKind, XfgHashType, in formatChunkKind()
[all …]
/freebsd/contrib/llvm-project/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 DDebugSubsectionRecord.cpp24 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord()
35 DebugSubsectionKind Kind = in initialize()
36 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize()
47 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
H A DEnumTables.cpp236 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None),
237 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
238 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
239 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable),
240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums),
241 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
242 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
245 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines),
246 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap),
247 CV_ENUM_CLASS_ENT(DebugSubsectionKind, TypeMDTokenMap),
[all …]
H A DDebugSymbolRVASubsection.cpp20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
H A DStringsAndChecksums.cpp33 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings()
72 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.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h23 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef()
28 DebugSubsectionKind kind() const { return Kind; } in kind()
31 DebugSubsectionKind Kind;
36 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection()
41 DebugSubsectionKind kind() const { return Kind; } in kind()
47 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.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 DDebugSubsectionRecord.h38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data);
43 DebugSubsectionKind kind() const;
47 DebugSubsectionKind Kind = DebugSubsectionKind::None;
H A DDebugFrameDataSubsection.h27 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
29 return S->kind() == DebugSubsectionKind::FrameData; in classof()
48 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
51 return S->kind() == DebugSubsectionKind::FrameData; in classof()
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.h57 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
60 return S->kind() == DebugSubsectionKind::FileChecksums;
82 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.h46 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize()
50 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
H A DDebugInlineeLinesSubsection.h68 return S->kind() == DebugSubsectionKind::InlineeLines;
98 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.h20 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
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()
/freebsd/contrib/llvm-project/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()
137 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection()
153 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection()
167 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection()
195 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection()
209 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection()
224 : YAMLSubsectionBase(DebugSubsectionKind::CoffSymbolRVA) {} in YAMLCoffSymbolRVASubsection()
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DPDB.cpp776 case DebugSubsectionKind::StringTable: { in handleDebugS()
782 case DebugSubsectionKind::FileChecksums: in handleDebugS()
787 case DebugSubsectionKind::Lines: in handleDebugS()
788 case DebugSubsectionKind::InlineeLines: in handleDebugS()
791 case DebugSubsectionKind::FrameData: in handleDebugS()
794 case DebugSubsectionKind::Symbols: in handleDebugS()
806 case DebugSubsectionKind::ILLines: in handleDebugS()
807 case DebugSubsectionKind::FuncMDTokenMap: in handleDebugS()
813 case DebugSubsectionKind::CoffSymbolRVA: in handleDebugS()
817 case DebugSubsectionKind::XfgHashType: in handleDebugS()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp555 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
556 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
1110 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables()
1111 case DebugSubsectionKind::FileChecksums: in initializeFileAndStringTables()
1115 case DebugSubsectionKind::StringTable: in initializeFileAndStringTables()
1195 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection()
1196 case DebugSubsectionKind::Symbols: in printCodeViewSymbolSection()
1200 case DebugSubsectionKind::InlineeLines: in printCodeViewSymbolSection()
1204 case DebugSubsectionKind::FileChecksums: in printCodeViewSymbolSection()
1208 case DebugSubsectionKind::Lines: { in printCodeViewSymbolSection()
[all …]

12