Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DFormatUtil.cpp102 std::string llvm::pdb::formatChunkKind(DebugSubsectionKind Kind, in formatChunkKind()
106 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind()
107 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind()
108 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind()
109 RETURN_CASE(DebugSubsectionKind, StringTable, "strings"); in formatChunkKind()
110 RETURN_CASE(DebugSubsectionKind, FileChecksums, "checksums"); in formatChunkKind()
111 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind()
112 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind()
113 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, "xmi"); in formatChunkKind()
114 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, "xme"); in formatChunkKind()
[all …]
DYAMLOutputStyle.cpp166 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { in convertSubsectionKind()
168 case DebugSubsectionKind::CrossScopeExports: in convertSubsectionKind()
170 case DebugSubsectionKind::CrossScopeImports: in convertSubsectionKind()
172 case DebugSubsectionKind::FileChecksums: in convertSubsectionKind()
174 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind()
176 case DebugSubsectionKind::Lines: in convertSubsectionKind()
178 case DebugSubsectionKind::Symbols: in convertSubsectionKind()
180 case DebugSubsectionKind::StringTable: in convertSubsectionKind()
182 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
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()
DEnumTables.cpp211 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None),
212 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
213 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
214 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable),
215 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums),
216 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
217 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
218 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports),
219 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports),
220 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines),
[all …]
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()
DDebugSymbolRVASubsection.cpp21 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
28 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
DStringsAndChecksums.cpp35 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings()
74 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
DDebugStringTableSubsection.cpp24 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
46 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
DDebugInlineeLinesSubsection.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
DDebugLinesSubsection.cpp55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()
74 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
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;
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()
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()
DDebugFrameDataSubsection.h23 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
25 return S->kind() == DebugSubsectionKind::FrameData; in classof()
43 : DebugSubsection(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsection()
45 return S->kind() == DebugSubsectionKind::FrameData; in classof()
DDebugSubsectionRecord.h39 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data,
46 DebugSubsectionKind kind() const;
51 DebugSubsectionKind Kind = DebugSubsectionKind::None;
DDebugCrossImpSubsection.h54 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {}
57 return S->kind() == DebugSubsectionKind::CrossScopeImports;
74 : DebugSubsection(DebugSubsectionKind::CrossScopeImports),
78 return S->kind() == DebugSubsectionKind::CrossScopeImports;
DDebugChecksumsSubsection.h56 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
59 return S->kind() == DebugSubsectionKind::FileChecksums;
81 return S->kind() == DebugSubsectionKind::FileChecksums;
DDebugSymbolRVASubsection.h34 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
51 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
DDebugStringTableSubsection.h37 return S->kind() == DebugSubsectionKind::StringTable; in classof()
62 return S->kind() == DebugSubsectionKind::StringTable; in classof()
DStringsAndChecksums.h45 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize()
49 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
DDebugInlineeLinesSubsection.h70 return S->kind() == DebugSubsectionKind::InlineeLines;
95 return S->kind() == DebugSubsectionKind::InlineeLines;
DDebugLinesSubsection.h89 return S->kind() == DebugSubsectionKind::Lines; in classof()
121 return S->kind() == DebugSubsectionKind::Lines; in classof()
DDebugUnknownSubsection.h21 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
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()
122 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} in YAMLLinesSubsection()
138 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection()
154 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection()
168 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection()
182 YAMLSymbolsSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Symbols) {} in YAMLSymbolsSubsection()
196 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DCOFFDumper.cpp537 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols),
538 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines),
539 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable),
540 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums),
541 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData),
542 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines),
543 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports),
544 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports),
545 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines),
546 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap),
[all …]

12