Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h20 class DebugSubsectionRef {
22 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() function
23 virtual ~DebugSubsectionRef();
25 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.h25 class DebugCrossModuleExportsSubsectionRef final : public DebugSubsectionRef {
31 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef()
33 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugCrossImpSubsection.h48 class DebugCrossModuleImportsSubsectionRef final : public DebugSubsectionRef {
54 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {}
56 static bool classof(const DebugSubsectionRef *S) {
H A DDebugChecksumsSubsection.h50 class DebugChecksumsSubsectionRef final : public DebugSubsectionRef {
56 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
58 static bool classof(const DebugSubsectionRef *S) {
H A DDebugUnknownSubsection.h19 class DebugUnknownSubsectionRef final : public DebugSubsectionRef {
22 : DebugSubsectionRef(Kind), Data(Data) {} in DebugUnknownSubsectionRef()
H A DDebugSymbolRVASubsection.h27 class DebugSymbolRVASubsectionRef final : public DebugSubsectionRef {
33 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugFrameDataSubsection.h21 class DebugFrameDataSubsectionRef final : public DebugSubsectionRef {
24 : 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.h62 class DebugInlineeLinesSubsectionRef final : public DebugSubsectionRef {
69 static bool classof(const DebugSubsectionRef *S) {
H A DDebugLinesSubsection.h79 class DebugLinesSubsectionRef final : public DebugSubsectionRef {
88 static bool classof(const DebugSubsectionRef *S) { in classof()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsection.cpp14 DebugSubsectionRef::~DebugSubsectionRef() {} in ~DebugSubsectionRef()
H A DDebugSymbolRVASubsection.cpp21 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
H A DDebugStringTableSubsection.cpp24 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
H A DDebugInlineeLinesSubsection.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
H A DDebugLinesSubsection.cpp55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()