summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFContext.h
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-09-19 23:01:29 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-09-19 23:01:29 +0000
commit404d3047c00e9a0e3fa53ccc2d24161e9a82d33b (patch)
tree545780e6bdb933a4de836bf0eab6d9aa2e945cbc /llvm/lib/DebugInfo/DWARFContext.h
parentd09bb4614b81cb9969240f7db4b706dbd7f61ec6 (diff)
downloadbcm5719-llvm-404d3047c00e9a0e3fa53ccc2d24161e9a82d33b.tar.gz
bcm5719-llvm-404d3047c00e9a0e3fa53ccc2d24161e9a82d33b.zip
DebugInfo: llvm-dwarfdump support for gnu_pubnames section
llvm-svn: 191050
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFContext.h')
-rw-r--r--llvm/lib/DebugInfo/DWARFContext.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/DebugInfo/DWARFContext.h b/llvm/lib/DebugInfo/DWARFContext.h
index c491b4ca492..e4b640e4c90 100644
--- a/llvm/lib/DebugInfo/DWARFContext.h
+++ b/llvm/lib/DebugInfo/DWARFContext.h
@@ -125,6 +125,7 @@ public:
virtual StringRef getStringSection() = 0;
virtual StringRef getRangeSection() = 0;
virtual StringRef getPubNamesSection() = 0;
+ virtual StringRef getGnuPubNamesSection() = 0;
// Sections for DWARF5 split dwarf proposal.
virtual StringRef getInfoDWOSection() = 0;
@@ -166,6 +167,7 @@ class DWARFContextInMemory : public DWARFContext {
StringRef StringSection;
StringRef RangeSection;
StringRef PubNamesSection;
+ StringRef GnuPubNamesSection;
// Sections for DWARF5 split dwarf proposal.
RelocAddrMap InfoDWORelocMap;
@@ -195,6 +197,7 @@ public:
virtual StringRef getStringSection() { return StringSection; }
virtual StringRef getRangeSection() { return RangeSection; }
virtual StringRef getPubNamesSection() { return PubNamesSection; }
+ virtual StringRef getGnuPubNamesSection() { return GnuPubNamesSection; }
// Sections for DWARF5 split dwarf proposal.
virtual StringRef getInfoDWOSection() { return InfoDWOSection; }
OpenPOWER on IntegriCloud