Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h21 class DebugSubsectionRef {
23 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() function
24 virtual ~DebugSubsectionRef();
26 static bool classof(const DebugSubsectionRef *S) { return true; } in classof()
H A DDebugSymbolsSubsection.h18 class DebugSymbolsSubsectionRef final : public DebugSubsectionRef {
21 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsectionRef()
23 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.h51 class DebugChecksumsSubsectionRef final : public DebugSubsectionRef {
57 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
59 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.h24 class DebugFrameDataSubsectionRef final : public DebugSubsectionRef {
27 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef()
H A DDebugStringTableSubsection.h31 class DebugStringTableSubsectionRef : public DebugSubsectionRef {
35 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugInlineeLinesSubsection.h60 class DebugInlineeLinesSubsectionRef final : public DebugSubsectionRef {
67 static bool classof(const DebugSubsectionRef *S) {
H A DDebugLinesSubsection.h79 class DebugLinesSubsectionRef final : public DebugSubsectionRef {
88 static bool classof(const DebugSubsectionRef *S) { in classof()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsection.cpp13 DebugSubsectionRef::~DebugSubsectionRef() = default;
H A DDebugSymbolRVASubsection.cpp20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
H A DDebugStringTableSubsection.cpp23 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
H A DDebugInlineeLinesSubsection.cpp44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
H A DDebugLinesSubsection.cpp54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()