Home
last modified time | relevance | path

Searched refs:DebugSubsectionRef (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h22 class LLVM_ABI DebugSubsectionRef {
24 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() function
25 virtual ~DebugSubsectionRef();
27 static bool classof(const DebugSubsectionRef *S) { return true; } in classof()
H A DDebugSymbolsSubsection.h19 class DebugSymbolsSubsectionRef final : public DebugSubsectionRef {
22 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsectionRef()
24 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugCrossExSubsection.h26 class DebugCrossModuleExportsSubsectionRef final : public DebugSubsectionRef {
32 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef()
34 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugCrossImpSubsection.h49 class DebugCrossModuleImportsSubsectionRef final : public DebugSubsectionRef {
55 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {}
57 static bool classof(const DebugSubsectionRef *S) {
H A DDebugChecksumsSubsection.h52 class DebugChecksumsSubsectionRef final : public DebugSubsectionRef {
58 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
60 static bool classof(const DebugSubsectionRef *S) {
H A DDebugUnknownSubsection.h18 class DebugUnknownSubsectionRef final : public DebugSubsectionRef {
21 : DebugSubsectionRef(Kind), Data(Data) {} in DebugUnknownSubsectionRef()
H A DDebugSymbolRVASubsection.h26 class DebugSymbolRVASubsectionRef final : public DebugSubsectionRef {
32 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugFrameDataSubsection.h25 class DebugFrameDataSubsectionRef final : public DebugSubsectionRef {
28 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
H A DDebugStringTableSubsection.h32 class DebugStringTableSubsectionRef : public DebugSubsectionRef {
36 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugInlineeLinesSubsection.h61 class DebugInlineeLinesSubsectionRef final : public DebugSubsectionRef {
68 static bool classof(const DebugSubsectionRef *S) {
H A DDebugLinesSubsection.h80 class DebugLinesSubsectionRef final : public DebugSubsectionRef {
89 static bool classof(const DebugSubsectionRef *S) { in classof()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsection.cpp13 DebugSubsectionRef::~DebugSubsectionRef() = default;
H A DDebugSymbolRVASubsection.cpp20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
H A DDebugStringTableSubsection.cpp22 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
H A DDebugInlineeLinesSubsection.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
H A DDebugLinesSubsection.cpp54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()