Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A 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()
H A 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()
H A DDebugSymbolsSubsection.h36 class DebugSymbolsSubsection final : public DebugSubsection {
38 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection()
39 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugCrossExSubsection.h46 class DebugCrossModuleExportsSubsection final : public DebugSubsection {
49 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection()
51 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugSubsectionRecord.h27 class DebugSubsection; variable
53 DebugSubsectionRecordBuilder(std::shared_ptr<DebugSubsection> Subsection);
65 std::shared_ptr<DebugSubsection> Subsection;
H A DDebugCrossImpSubsection.h69 class DebugCrossModuleImportsSubsection final : public DebugSubsection {
73 : DebugSubsection(DebugSubsectionKind::CrossScopeImports),
76 static bool classof(const DebugSubsection *S) {
H A DDebugSymbolRVASubsection.h45 class DebugSymbolRVASubsection final : public DebugSubsection {
49 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugStringTableSubsection.h56 class DebugStringTableSubsection : public DebugSubsection {
60 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugChecksumsSubsection.h75 class DebugChecksumsSubsection final : public DebugSubsection {
79 static bool classof(const DebugSubsection *S) {
H A DDebugInlineeLinesSubsection.h88 class DebugInlineeLinesSubsection final : public DebugSubsection {
98 static bool classof(const DebugSubsection *S) {
H A DDebugLinesSubsection.h105 class DebugLinesSubsection final : public DebugSubsection {
119 static bool classof(const DebugSubsection *S) { in classof()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsection.cpp15 DebugSubsection::~DebugSubsection() {} in ~DebugSubsection()
H A DDebugSymbolRVASubsection.cpp27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
H A DCMakeLists.txt15 DebugSubsection.cpp
H A DDebugSubsectionRecord.cpp53 std::shared_ptr<DebugSubsection> Subsection) in DebugSubsectionRecordBuilder()
H A DDebugStringTableSubsection.cpp45 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
H A DDebugChecksumsSubsection.cpp65 : DebugSubsection(DebugSubsectionKind::FileChecksums), Strings(Strings) {} in DebugChecksumsSubsection()
H A DDebugInlineeLinesSubsection.cpp63 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
H A DDebugLinesSubsection.cpp73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/gn/secondary/llvm/lib/DebugInfo/CodeView/
H A DBUILD.gn21 "DebugSubsection.cpp",
/netbsd-src/external/apache2/llvm/lib/libLLVMDebugInfoCodeView/
H A DMakefile22 DebugSubsection.cpp \
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h120 Expected<std::vector<std::shared_ptr<codeview::DebugSubsection>>>
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.h102 addDebugSubsection(std::shared_ptr<codeview::DebugSubsection> Subsection);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp210 std::shared_ptr<DebugSubsection> Subsection) { in addDebugSubsection()