Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h35 class LLVM_ABI DebugSubsection {
37 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection() function
38 virtual ~DebugSubsection();
40 static bool classof(const DebugSubsection *S) { return true; } in classof()
H A DDebugFrameDataSubsection.h29 static bool classof(const DebugSubsection *S) { in classof()
46 class LLVM_ABI DebugFrameDataSubsection final : public DebugSubsection {
49 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection()
51 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugSymbolsSubsection.h37 class LLVM_ABI DebugSymbolsSubsection final : public DebugSubsection {
39 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection()
40 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugCrossExSubsection.h49 : public DebugSubsection {
52 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection()
54 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugSubsectionRecord.h28 class DebugSubsection; variable
57 DebugSubsectionRecordBuilder(std::shared_ptr<DebugSubsection> Subsection);
70 std::shared_ptr<DebugSubsection> Subsection;
H A DDebugCrossImpSubsection.h72 : public DebugSubsection {
76 : DebugSubsection(DebugSubsectionKind::CrossScopeImports),
79 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.h57 class LLVM_ABI DebugStringTableSubsection : public DebugSubsection {
61 static bool classof(const DebugSubsection *S) { in classof()
H A DDebugChecksumsSubsection.h78 class LLVM_ABI DebugChecksumsSubsection final : public DebugSubsection {
82 static bool classof(const DebugSubsection *S) {
H A DDebugInlineeLinesSubsection.h88 class LLVM_ABI DebugInlineeLinesSubsection final : public DebugSubsection {
98 static bool classof(const DebugSubsection *S) {
H A DDebugLinesSubsection.h107 class LLVM_ABI DebugLinesSubsection final : public DebugSubsection {
121 static bool classof(const DebugSubsection *S) { in classof()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp90 virtual std::shared_ptr<DebugSubsection>
108 std::shared_ptr<DebugSubsection>
122 std::shared_ptr<DebugSubsection>
138 std::shared_ptr<DebugSubsection>
154 std::shared_ptr<DebugSubsection>
168 std::shared_ptr<DebugSubsection>
182 std::shared_ptr<DebugSubsection>
196 std::shared_ptr<DebugSubsection>
210 std::shared_ptr<DebugSubsection>
225 std::shared_ptr<DebugSubsection>
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsection.cpp15 DebugSubsection::~DebugSubsection() = default;
H A DDebugSymbolRVASubsection.cpp27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
H A DDebugSubsectionRecord.cpp52 std::shared_ptr<DebugSubsection> Subsection) in DebugSubsectionRecordBuilder()
H A DDebugStringTableSubsection.cpp44 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
H A DDebugChecksumsSubsection.cpp65 : DebugSubsection(DebugSubsectionKind::FileChecksums), Strings(Strings) {} in DebugChecksumsSubsection()
H A DDebugInlineeLinesSubsection.cpp64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
H A DDebugLinesSubsection.cpp73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.h27 class DebugSubsection; variable
101 addDebugSubsection(std::shared_ptr<codeview::DebugSubsection> Subsection);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp28 class DebugSubsection;
214 std::shared_ptr<DebugSubsection> Subsection) { in addDebugSubsection()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h119 LLVM_ABI Expected<std::vector<std::shared_ptr<codeview::DebugSubsection>>>
/freebsd/contrib/llvm-project/lld/COFF/
H A DPDB.cpp838 class UnrelocatedDebugSubsection : public DebugSubsection {
842 : DebugSubsection(k), debugChunk(debugChunk), subsec(subsec), in UnrelocatedDebugSubsection()
/freebsd/lib/clang/libllvm/
H A DMakefile580 SRCS_MIN+= DebugInfo/CodeView/DebugSubsection.cpp