summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexey Samsonov <vonosmas@gmail.com>2014-06-12 18:52:35 +0000
committerAlexey Samsonov <vonosmas@gmail.com>2014-06-12 18:52:35 +0000
commit4dfa6812d7e70e419dd2f302b4108f205145aa4b (patch)
tree5f8bd25dfd3a07ce9b58ee7a2f3f09842b459358 /lib
parent7c3436d9411f96d39b7de17d997289893c330d44 (diff)
downloadllvm-4dfa6812d7e70e419dd2f302b4108f205145aa4b.tar.gz
llvm-4dfa6812d7e70e419dd2f302b4108f205145aa4b.tar.bz2
llvm-4dfa6812d7e70e419dd2f302b4108f205145aa4b.tar.xz
[llvm-symbolizer] Fix parsing DW_AT_ranges in Fission skeleton compile unit DIEs.
Turns out that DW_AT_ranges_base attribute sets the offset for DW_AT_ranges values specified in the .dwo file, but not for DW_AT_ranges specified in the skeleton compile unit DIE in the main executable. This is extremely confusing, and would hopefully be fixed in DWARF-5 when it's finalized. For now this behavior makes sense, as otherwise Fission would break DWARF consumers who doesn't know anything about DW_AT_ranges_base. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210809 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/DebugInfo/DWARFUnit.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/DebugInfo/DWARFUnit.cpp b/lib/DebugInfo/DWARFUnit.cpp
index f5f5072b9d..027827735c 100644
--- a/lib/DebugInfo/DWARFUnit.cpp
+++ b/lib/DebugInfo/DWARFUnit.cpp
@@ -225,8 +225,12 @@ size_t DWARFUnit::extractDIEsIfNeeded(bool CUDieOnly) {
setBaseAddress(BaseAddr);
AddrOffsetSectionBase = DieArray[0].getAttributeValueAsSectionOffset(
this, DW_AT_GNU_addr_base, 0);
- RangeSectionBase = DieArray[0].getAttributeValueAsSectionOffset(
- this, DW_AT_GNU_ranges_base, 0);
+ // Users of old DWARF may not know about DW_AT_ranges_base, so it is ignored
+ // for skeleton CU DIE (e.g. DW_AT_ranges are *not* relative to it).
+ if (Version > 4) {
+ RangeSectionBase = DieArray[0].getAttributeValueAsSectionOffset(
+ this, DW_AT_GNU_ranges_base, 0);
+ }
}
setDIERelations();
@@ -272,7 +276,9 @@ bool DWARFUnit::parseDWO() {
}
// Share .debug_addr and .debug_ranges section with compile unit in .dwo
DWOCU->setAddrOffsetSection(AddrOffsetSection, AddrOffsetSectionBase);
- DWOCU->setRangesSection(RangeSection, RangeSectionBase);
+ uint32_t DWORangesBase = DieArray[0].getAttributeValueAsSectionOffset(
+ this, DW_AT_GNU_ranges_base, 0);
+ DWOCU->setRangesSection(RangeSection, DWORangesBase);
return true;
}