/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | DebugSubsection.h | 34 class DebugSubsection { 36 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection() function 37 virtual ~DebugSubsection(); 39 static bool classof(const DebugSubsection *S) { return true; } in classof()
|
H A D | DebugFrameDataSubsection.h | 28 static bool classof(const DebugSubsection *S) { in classof() 45 class DebugFrameDataSubsection final : public DebugSubsection { 48 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection() 50 static bool classof(const DebugSubsection *S) { in classof()
|
H A D | DebugSymbolsSubsection.h | 36 class DebugSymbolsSubsection final : public DebugSubsection { 38 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection() 39 static bool classof(const DebugSubsection *S) { in classof()
|
H A D | DebugCrossExSubsection.h | 47 class DebugCrossModuleExportsSubsection final : public DebugSubsection { 50 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection() 52 static bool classof(const DebugSubsection *S) { in classof()
|
H A D | DebugSubsectionRecord.h | 27 class DebugSubsection; variable 53 DebugSubsectionRecordBuilder(std::shared_ptr<DebugSubsection> Subsection); 65 std::shared_ptr<DebugSubsection> Subsection;
|
H A D | DebugCrossImpSubsection.h | 70 class DebugCrossModuleImportsSubsection final : public DebugSubsection { 74 : DebugSubsection(DebugSubsectionKind::CrossScopeImports), 77 static bool classof(const DebugSubsection *S) {
|
H A D | DebugSymbolRVASubsection.h | 45 class DebugSymbolRVASubsection final : public DebugSubsection { 49 static bool classof(const DebugSubsection *S) { in classof()
|
H A D | DebugStringTableSubsection.h | 56 class DebugStringTableSubsection : public DebugSubsection { 60 static bool classof(const DebugSubsection *S) { in classof()
|
H A D | DebugChecksumsSubsection.h | 77 class DebugChecksumsSubsection final : public DebugSubsection { 81 static bool classof(const DebugSubsection *S) {
|
H A D | DebugInlineeLinesSubsection.h | 87 class DebugInlineeLinesSubsection final : public DebugSubsection { 97 static bool classof(const DebugSubsection *S) {
|
H A D | DebugLinesSubsection.h | 106 class DebugLinesSubsection final : public DebugSubsection { 120 static bool classof(const DebugSubsection *S) { in classof()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.cpp | 28 #include "llvm/DebugInfo/CodeView/DebugSubsection.h" 92 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> [all...] |
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugSubsection.cpp | 15 DebugSubsection::~DebugSubsection() = default;
|
H A D | DebugSymbolRVASubsection.cpp | 27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
H A D | DebugSubsectionRecord.cpp | 52 std::shared_ptr<DebugSubsection> Subsection) in DebugSubsectionRecordBuilder()
|
H A D | DebugStringTableSubsection.cpp | 45 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
|
H A D | DebugChecksumsSubsection.cpp | 65 : DebugSubsection(DebugSubsectionKind::FileChecksums), Strings(Strings) {} in DebugChecksumsSubsection()
|
H A D | DebugInlineeLinesSubsection.cpp | 64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
|
H A D | DebugLinesSubsection.cpp | 73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | DbiModuleDescriptorBuilder.h | 26 class DebugSubsection; variable 100 addDebugSubsection(std::shared_ptr<codeview::DebugSubsection> Subsection);
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | DbiModuleDescriptorBuilder.cpp | 28 class DebugSubsection; 214 std::shared_ptr<DebugSubsection> Subsection) { in addDebugSubsection()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.h | 118 Expected<std::vector<std::shared_ptr<codeview::DebugSubsection>>>
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | PDB.cpp | 843 class UnrelocatedDebugSubsection : public DebugSubsection { 847 : DebugSubsection(k), debugChunk(debugChunk), subsec(subsec), in UnrelocatedDebugSubsection()
|
/freebsd/lib/clang/libllvm/ |
H A D | Makefile | 525 SRCS_MIW+= DebugInfo/CodeView/DebugSubsection.cpp
|