Home
last modified time | relevance | path

Searched refs:DebugSubsection (Results 1 – 23 of 23) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DDebugSubsection.h32 class DebugSubsection {
34 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection() function
35 virtual ~DebugSubsection();
37 static bool classof(const DebugSubsection *S) { return true; } in classof()
DDebugFrameDataSubsection.h24 static bool classof(const DebugSubsection *S) { in classof()
41 class DebugFrameDataSubsection final : public DebugSubsection {
44 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
46 static bool classof(const DebugSubsection *S) { in classof()
DDebugSymbolsSubsection.h36 class DebugSymbolsSubsection final : public DebugSubsection {
38 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection()
39 static bool classof(const DebugSubsection *S) { in classof()
DDebugCrossExSubsection.h46 class DebugCrossModuleExportsSubsection final : public DebugSubsection {
49 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection()
51 static bool classof(const DebugSubsection *S) { in classof()
DDebugSubsectionRecord.h27 class DebugSubsection; variable
56 DebugSubsectionRecordBuilder(std::shared_ptr<DebugSubsection> Subsection,
70 std::shared_ptr<DebugSubsection> Subsection;
DDebugCrossImpSubsection.h69 class DebugCrossModuleImportsSubsection final : public DebugSubsection {
73 : DebugSubsection(DebugSubsectionKind::CrossScopeImports),
76 static bool classof(const DebugSubsection *S) {
DDebugSymbolRVASubsection.h45 class DebugSymbolRVASubsection final : public DebugSubsection {
49 static bool classof(const DebugSubsection *S) { in classof()
DDebugStringTableSubsection.h56 class DebugStringTableSubsection : public DebugSubsection {
60 static bool classof(const DebugSubsection *S) { in classof()
DDebugChecksumsSubsection.h75 class DebugChecksumsSubsection final : public DebugSubsection {
79 static bool classof(const DebugSubsection *S) {
DDebugInlineeLinesSubsection.h88 class DebugInlineeLinesSubsection final : public DebugSubsection {
98 static bool classof(const DebugSubsection *S) {
DDebugLinesSubsection.h105 class DebugLinesSubsection final : public DebugSubsection {
119 static bool classof(const DebugSubsection *S) { in classof()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp92 virtual std::shared_ptr<DebugSubsection>
110 std::shared_ptr<DebugSubsection>
124 std::shared_ptr<DebugSubsection>
140 std::shared_ptr<DebugSubsection>
156 std::shared_ptr<DebugSubsection>
170 std::shared_ptr<DebugSubsection>
184 std::shared_ptr<DebugSubsection>
198 std::shared_ptr<DebugSubsection>
212 std::shared_ptr<DebugSubsection>
227 std::shared_ptr<DebugSubsection>
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DDebugSubsection.cpp15 DebugSubsection::~DebugSubsection() {} in ~DebugSubsection()
DDebugSymbolRVASubsection.cpp27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
DCMakeLists.txt15 DebugSubsection.cpp
DDebugSubsectionRecord.cpp56 std::shared_ptr<DebugSubsection> Subsection, CodeViewContainer Container) in DebugSubsectionRecordBuilder()
DDebugStringTableSubsection.cpp45 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
DDebugInlineeLinesSubsection.cpp63 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
DDebugChecksumsSubsection.cpp65 : DebugSubsection(DebugSubsectionKind::FileChecksums), Strings(Strings) {} in DebugChecksumsSubsection()
DDebugLinesSubsection.cpp73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
DDbiModuleDescriptorBuilder.h56 addDebugSubsection(std::shared_ptr<codeview::DebugSubsection> Subsection);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DCodeViewYAMLDebugSections.h120 Expected<std::vector<std::shared_ptr<codeview::DebugSubsection>>>
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DDbiModuleDescriptorBuilder.cpp181 std::shared_ptr<DebugSubsection> Subsection) { in addDebugSubsection()