Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSubsection.h19 class DebugSubsectionRef {
21 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() function
22 virtual ~DebugSubsectionRef();
24 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.h24 class DebugCrossModuleExportsSubsectionRef final : public DebugSubsectionRef {
30 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef()
32 static bool classof(const DebugSubsectionRef *S) { in classof()
H A DDebugCrossImpSubsection.h47 class DebugCrossModuleImportsSubsectionRef final : public DebugSubsectionRef {
53 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {}
55 static bool classof(const DebugSubsectionRef *S) {
H A DDebugChecksumsSubsection.h49 class DebugChecksumsSubsectionRef final : public DebugSubsectionRef {
55 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {}
57 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.h20 class DebugFrameDataSubsectionRef final : public DebugSubsectionRef {
23 : 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.h61 class DebugInlineeLinesSubsectionRef final : public DebugSubsectionRef {
68 static bool classof(const DebugSubsectionRef *S) {
H A DDebugLinesSubsection.h78 class DebugLinesSubsectionRef final : public DebugSubsectionRef {
87 static bool classof(const DebugSubsectionRef *S) { in classof()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsection.cpp13 DebugSubsectionRef::~DebugSubsectionRef() {} in ~DebugSubsectionRef()
H A DDebugSymbolRVASubsection.cpp20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef()
H A DDebugStringTableSubsection.cpp23 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef()
H A DDebugInlineeLinesSubsection.cpp43 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef()
H A DDebugLinesSubsection.cpp54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef()