blob: 6b7970d426bb39d533e54caa616a55a61d7e9051 [file] [log] [blame]
Eugene Zelenko2db0cfa2017-06-23 21:57:40 +00001//===- DWARFUnit.cpp ------------------------------------------------------===//
David Blaikie07e22442013-09-23 22:44:40 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Chandler Carruth6bda14b2017-06-06 11:49:48 +000010#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000011#include "llvm/ADT/SmallString.h"
Eugene Zelenko570e39a2016-11-23 23:16:32 +000012#include "llvm/ADT/StringRef.h"
13#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
Zachary Turner82af9432015-01-30 18:07:45 +000014#include "llvm/DebugInfo/DWARF/DWARFContext.h"
Eugene Zelenko570e39a2016-11-23 23:16:32 +000015#include "llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h"
Eugene Zelenko28db7e62017-03-01 01:14:23 +000016#include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
Wolfgang Piebad605592018-05-18 20:12:54 +000017#include "llvm/DebugInfo/DWARF/DWARFDebugRnglists.h"
Eugene Zelenko28db7e62017-03-01 01:14:23 +000018#include "llvm/DebugInfo/DWARF/DWARFDie.h"
Greg Clayton97d22182017-01-13 21:08:18 +000019#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
Eugene Zelenko570e39a2016-11-23 23:16:32 +000020#include "llvm/Support/DataExtractor.h"
David Blaikie07e22442013-09-23 22:44:40 +000021#include "llvm/Support/Path.h"
Jonas Devlieghere84e99262018-04-14 22:07:23 +000022#include "llvm/Support/WithColor.h"
Eugene Zelenko570e39a2016-11-23 23:16:32 +000023#include <algorithm>
24#include <cassert>
Eugene Zelenko28db7e62017-03-01 01:14:23 +000025#include <cstddef>
Eugene Zelenko570e39a2016-11-23 23:16:32 +000026#include <cstdint>
David Blaikie8de5e982013-09-23 23:15:57 +000027#include <cstdio>
Eugene Zelenko2db0cfa2017-06-23 21:57:40 +000028#include <utility>
Eugene Zelenko570e39a2016-11-23 23:16:32 +000029#include <vector>
David Blaikie07e22442013-09-23 22:44:40 +000030
Eugene Zelenko28db7e62017-03-01 01:14:23 +000031using namespace llvm;
David Blaikie07e22442013-09-23 22:44:40 +000032using namespace dwarf;
33
Alexey Samsonov8cd4c9d2014-10-08 00:07:53 +000034void DWARFUnitSectionBase::parse(DWARFContext &C, const DWARFSection &Section) {
Rafael Espindolac398e672017-07-19 22:27:28 +000035 const DWARFObject &D = C.getDWARFObj();
Rafael Espindolac51dc902018-03-21 21:31:25 +000036 parseImpl(C, D, Section, C.getDebugAbbrev(), &D.getRangeSection(),
Rafael Espindolac398e672017-07-19 22:27:28 +000037 D.getStringSection(), D.getStringOffsetSection(),
Paul Robinsond0c89f82018-01-29 22:02:56 +000038 &D.getAddrSection(), D.getLineSection(), D.isLittleEndian(), false,
39 false);
Frederic Riss6005dbd2014-10-06 03:36:18 +000040}
41
Alexey Samsonov8cd4c9d2014-10-08 00:07:53 +000042void DWARFUnitSectionBase::parseDWO(DWARFContext &C,
David Blaikiee79dda32017-09-19 18:36:11 +000043 const DWARFSection &DWOSection, bool Lazy) {
Rafael Espindolac398e672017-07-19 22:27:28 +000044 const DWARFObject &D = C.getDWARFObj();
Rafael Espindolac51dc902018-03-21 21:31:25 +000045 parseImpl(C, D, DWOSection, C.getDebugAbbrevDWO(), &D.getRangeDWOSection(),
Rafael Espindolac398e672017-07-19 22:27:28 +000046 D.getStringDWOSection(), D.getStringOffsetDWOSection(),
Paul Robinsond0c89f82018-01-29 22:02:56 +000047 &D.getAddrSection(), D.getLineDWOSection(), C.isLittleEndian(),
48 true, Lazy);
Frederic Riss6005dbd2014-10-06 03:36:18 +000049}
50
Alexey Samsonov4b4d64b2014-10-08 00:24:41 +000051DWARFUnit::DWARFUnit(DWARFContext &DC, const DWARFSection &Section,
Paul Robinson5f53f072018-05-14 20:32:31 +000052 const DWARFUnitHeader &Header,
George Rimarca532112017-04-24 10:19:45 +000053 const DWARFDebugAbbrev *DA, const DWARFSection *RS,
Wolfgang Pieb77d3e932017-06-06 01:22:34 +000054 StringRef SS, const DWARFSection &SOS,
Paul Robinsond0c89f82018-01-29 22:02:56 +000055 const DWARFSection *AOS, const DWARFSection &LS, bool LE,
Paul Robinson5f53f072018-05-14 20:32:31 +000056 bool IsDWO, const DWARFUnitSectionBase &UnitSection)
57 : Context(DC), InfoSection(Section), Header(Header), Abbrev(DA),
58 RangeSection(RS), LineSection(LS), StringSection(SS),
59 StringOffsetSection(SOS), AddrOffsetSection(AOS), isLittleEndian(LE),
60 isDWO(IsDWO), UnitSection(UnitSection) {
David Blaikie07e22442013-09-23 22:44:40 +000061 clear();
62}
63
Eugene Zelenko570e39a2016-11-23 23:16:32 +000064DWARFUnit::~DWARFUnit() = default;
David Blaikie07e22442013-09-23 22:44:40 +000065
Rafael Espindolac398e672017-07-19 22:27:28 +000066DWARFDataExtractor DWARFUnit::getDebugInfoExtractor() const {
67 return DWARFDataExtractor(Context.getDWARFObj(), InfoSection, isLittleEndian,
68 getAddressByteSize());
69}
70
David Blaikie07e22442013-09-23 22:44:40 +000071bool DWARFUnit::getAddrOffsetSectionItem(uint32_t Index,
72 uint64_t &Result) const {
Paul Robinson75c068c2017-06-26 18:43:01 +000073 uint32_t Offset = AddrOffsetSectionBase + Index * getAddressByteSize();
74 if (AddrOffsetSection->Data.size() < Offset + getAddressByteSize())
David Blaikie07e22442013-09-23 22:44:40 +000075 return false;
Rafael Espindolac398e672017-07-19 22:27:28 +000076 DWARFDataExtractor DA(Context.getDWARFObj(), *AddrOffsetSection,
77 isLittleEndian, getAddressByteSize());
Paul Robinson17536b92017-06-29 16:52:08 +000078 Result = DA.getRelocatedAddress(&Offset);
David Blaikie07e22442013-09-23 22:44:40 +000079 return true;
80}
81
82bool DWARFUnit::getStringOffsetSectionItem(uint32_t Index,
Wolfgang Pieb77d3e932017-06-06 01:22:34 +000083 uint64_t &Result) const {
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +000084 if (!StringOffsetsTableContribution)
85 return false;
86 unsigned ItemSize = getDwarfStringOffsetsByteSize();
87 uint32_t Offset = getStringOffsetsBase() + Index * ItemSize;
Wolfgang Pieb77d3e932017-06-06 01:22:34 +000088 if (StringOffsetSection.Data.size() < Offset + ItemSize)
David Blaikie07e22442013-09-23 22:44:40 +000089 return false;
Rafael Espindolac398e672017-07-19 22:27:28 +000090 DWARFDataExtractor DA(Context.getDWARFObj(), StringOffsetSection,
91 isLittleEndian, 0);
Paul Robinson17536b92017-06-29 16:52:08 +000092 Result = DA.getRelocatedValue(ItemSize, &Offset);
David Blaikie07e22442013-09-23 22:44:40 +000093 return true;
94}
95
Paul Robinson5f53f072018-05-14 20:32:31 +000096bool DWARFUnitHeader::extract(DWARFContext &Context,
97 const DWARFDataExtractor &debug_info,
98 uint32_t *offset_ptr,
99 DWARFSectionKind SectionKind,
100 const DWARFUnitIndex *Index) {
101 Offset = *offset_ptr;
102 IndexEntry = Index ? Index->getFromOffset(*offset_ptr) : nullptr;
David Blaikie07e22442013-09-23 22:44:40 +0000103 Length = debug_info.getU32(offset_ptr);
Paul Robinson75c068c2017-06-26 18:43:01 +0000104 // FIXME: Support DWARF64.
Paul Robinson5f53f072018-05-14 20:32:31 +0000105 unsigned SizeOfLength = 4;
Paul Robinson75c068c2017-06-26 18:43:01 +0000106 FormParams.Format = DWARF32;
107 FormParams.Version = debug_info.getU16(offset_ptr);
Paul Robinson75c068c2017-06-26 18:43:01 +0000108 if (FormParams.Version >= 5) {
Paul Robinsoncddd6042017-02-28 20:24:55 +0000109 UnitType = debug_info.getU8(offset_ptr);
Paul Robinson75c068c2017-06-26 18:43:01 +0000110 FormParams.AddrSize = debug_info.getU8(offset_ptr);
Paul Robinsoncddd6042017-02-28 20:24:55 +0000111 AbbrOffset = debug_info.getU32(offset_ptr);
112 } else {
Rafael Espindolac51dc902018-03-21 21:31:25 +0000113 AbbrOffset = debug_info.getRelocatedValue(4, offset_ptr);
Paul Robinson75c068c2017-06-26 18:43:01 +0000114 FormParams.AddrSize = debug_info.getU8(offset_ptr);
Paul Robinson5f53f072018-05-14 20:32:31 +0000115 // Fake a unit type based on the section type. This isn't perfect,
116 // but distinguishing compile and type units is generally enough.
117 if (SectionKind == DW_SECT_TYPES)
118 UnitType = DW_UT_type;
119 else
120 UnitType = DW_UT_compile;
Paul Robinsoncddd6042017-02-28 20:24:55 +0000121 }
David Blaikie82641be2015-11-17 00:39:55 +0000122 if (IndexEntry) {
123 if (AbbrOffset)
124 return false;
125 auto *UnitContrib = IndexEntry->getOffset();
126 if (!UnitContrib || UnitContrib->Length != (Length + 4))
127 return false;
128 auto *AbbrEntry = IndexEntry->getOffset(DW_SECT_ABBREV);
129 if (!AbbrEntry)
130 return false;
131 AbbrOffset = AbbrEntry->Offset;
132 }
Paul Robinson5f53f072018-05-14 20:32:31 +0000133 if (isTypeUnit()) {
134 TypeHash = debug_info.getU64(offset_ptr);
135 TypeOffset = debug_info.getU32(offset_ptr);
Paul Robinson543c0e12018-05-22 17:27:31 +0000136 } else if (UnitType == DW_UT_split_compile || UnitType == DW_UT_skeleton)
137 DWOId = debug_info.getU64(offset_ptr);
138
139 // Header fields all parsed, capture the size of this unit header.
140 assert(*offset_ptr - Offset <= 255 && "unexpected header size");
141 Size = uint8_t(*offset_ptr - Offset);
142
143 // Type offset is unit-relative; should be after the header and before
144 // the end of the current unit.
145 bool TypeOffsetOK =
146 !isTypeUnit()
147 ? true
148 : TypeOffset >= Size && TypeOffset < getLength() + SizeOfLength;
Alexey Samsonov7682f812014-04-24 22:51:03 +0000149 bool LengthOK = debug_info.isValidOffset(getNextUnitOffset() - 1);
Paul Robinson75c068c2017-06-26 18:43:01 +0000150 bool VersionOK = DWARFContext::isSupportedVersion(getVersion());
151 bool AddrSizeOK = getAddressByteSize() == 4 || getAddressByteSize() == 8;
David Blaikie07e22442013-09-23 22:44:40 +0000152
Paul Robinson5f53f072018-05-14 20:32:31 +0000153 if (!LengthOK || !VersionOK || !AddrSizeOK || !TypeOffsetOK)
David Blaikie07e22442013-09-23 22:44:40 +0000154 return false;
155
Wolfgang Pieb77d3e932017-06-06 01:22:34 +0000156 // Keep track of the highest DWARF version we encounter across all units.
Paul Robinson75c068c2017-06-26 18:43:01 +0000157 Context.setMaxVersionIfGreater(getVersion());
David Blaikie485e01b2017-09-19 15:13:55 +0000158 return true;
David Blaikie07e22442013-09-23 22:44:40 +0000159}
160
Wolfgang Piebad605592018-05-18 20:12:54 +0000161// Parse the rangelist table header, including the optional array of offsets
162// following it (DWARF v5 and later).
163static Expected<DWARFDebugRnglistTable>
164parseRngListTableHeader(DWARFDataExtractor &DA, uint32_t Offset) {
165 // TODO: Support DWARF64
166 // We are expected to be called with Offset 0 or pointing just past the table
167 // header, which is 12 bytes long for DWARF32.
168 if (Offset > 0) {
169 if (Offset < 12U) {
170 std::string Buffer;
171 raw_string_ostream Stream(Buffer);
172 Stream << format(
173 "Did not detect a valid range list table with base = 0x%x", Offset);
174 return make_error<StringError>(Stream.str(), inconvertibleErrorCode());
175 }
176 Offset -= 12U;
177 }
178 llvm::DWARFDebugRnglistTable Table;
179 if (Error E = Table.extractHeaderAndOffsets(DA, &Offset))
Wolfgang Piebda716392018-05-18 20:35:13 +0000180 return std::move(E);
Wolfgang Piebad605592018-05-18 20:12:54 +0000181 return Table;
182}
183
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000184Error DWARFUnit::extractRangeList(uint32_t RangeListOffset,
185 DWARFDebugRangeList &RangeList) const {
David Blaikie07e22442013-09-23 22:44:40 +0000186 // Require that compile unit is extracted.
Eugene Zelenko570e39a2016-11-23 23:16:32 +0000187 assert(!DieArray.empty());
Rafael Espindolac398e672017-07-19 22:27:28 +0000188 DWARFDataExtractor RangesData(Context.getDWARFObj(), *RangeSection,
189 isLittleEndian, getAddressByteSize());
David Blaikie07e22442013-09-23 22:44:40 +0000190 uint32_t ActualRangeListOffset = RangeSectionBase + RangeListOffset;
Paul Robinson17536b92017-06-29 16:52:08 +0000191 return RangeList.extract(RangesData, &ActualRangeListOffset);
David Blaikie07e22442013-09-23 22:44:40 +0000192}
193
194void DWARFUnit::clear() {
Craig Topper2617dcc2014-04-15 06:32:26 +0000195 Abbrevs = nullptr;
George Rimar2f95c8b2017-09-04 10:30:39 +0000196 BaseAddr.reset();
David Blaikie07e22442013-09-23 22:44:40 +0000197 RangeSectionBase = 0;
198 AddrOffsetSectionBase = 0;
199 clearDIEs(false);
200 DWO.reset();
201}
202
203const char *DWARFUnit::getCompilationDir() {
Eugene Zelenko28db7e62017-03-01 01:14:23 +0000204 return dwarf::toString(getUnitDIE().find(DW_AT_comp_dir), nullptr);
David Blaikie07e22442013-09-23 22:44:40 +0000205}
206
David Blaikie07e22442013-09-23 22:44:40 +0000207void DWARFUnit::extractDIEsToVector(
208 bool AppendCUDie, bool AppendNonCUDies,
Greg Claytonc8c10322016-12-13 18:25:19 +0000209 std::vector<DWARFDebugInfoEntry> &Dies) const {
David Blaikie07e22442013-09-23 22:44:40 +0000210 if (!AppendCUDie && !AppendNonCUDies)
211 return;
212
213 // Set the offset to that of the first DIE and calculate the start of the
214 // next compilation unit header.
Paul Robinson5f53f072018-05-14 20:32:31 +0000215 uint32_t DIEOffset = getOffset() + getHeaderSize();
David Blaikie07e22442013-09-23 22:44:40 +0000216 uint32_t NextCUOffset = getNextUnitOffset();
Greg Claytonc8c10322016-12-13 18:25:19 +0000217 DWARFDebugInfoEntry DIE;
Paul Robinson17536b92017-06-29 16:52:08 +0000218 DWARFDataExtractor DebugInfoData = getDebugInfoExtractor();
David Blaikie07e22442013-09-23 22:44:40 +0000219 uint32_t Depth = 0;
David Blaikie07e22442013-09-23 22:44:40 +0000220 bool IsCUDie = true;
221
Greg Clayton78a07bf2016-12-21 21:37:06 +0000222 while (DIE.extractFast(*this, &DIEOffset, DebugInfoData, NextCUOffset,
223 Depth)) {
David Blaikie07e22442013-09-23 22:44:40 +0000224 if (IsCUDie) {
225 if (AppendCUDie)
226 Dies.push_back(DIE);
227 if (!AppendNonCUDies)
228 break;
229 // The average bytes per DIE entry has been seen to be
230 // around 14-20 so let's pre-reserve the needed memory for
231 // our DIE entries accordingly.
232 Dies.reserve(Dies.size() + getDebugInfoSize() / 14);
233 IsCUDie = false;
234 } else {
235 Dies.push_back(DIE);
236 }
237
Alexey Samsonov8e4cf3b2014-04-29 17:12:42 +0000238 if (const DWARFAbbreviationDeclaration *AbbrDecl =
239 DIE.getAbbreviationDeclarationPtr()) {
David Blaikie07e22442013-09-23 22:44:40 +0000240 // Normal DIE
241 if (AbbrDecl->hasChildren())
242 ++Depth;
243 } else {
244 // NULL DIE.
245 if (Depth > 0)
246 --Depth;
247 if (Depth == 0)
248 break; // We are done with this compile unit!
249 }
250 }
251
252 // Give a little bit of info if we encounter corrupt DWARF (our offset
253 // should always terminate at or before the start of the next compilation
254 // unit header).
Alexey Samsonov19f76f22014-04-24 23:08:56 +0000255 if (DIEOffset > NextCUOffset)
Jonas Devlieghere84e99262018-04-14 22:07:23 +0000256 WithColor::warning() << format("DWARF compile unit extends beyond its "
257 "bounds cu 0x%8.8x at 0x%8.8x\n",
258 getOffset(), DIEOffset);
David Blaikie07e22442013-09-23 22:44:40 +0000259}
260
261size_t DWARFUnit::extractDIEsIfNeeded(bool CUDieOnly) {
Eugene Zelenko570e39a2016-11-23 23:16:32 +0000262 if ((CUDieOnly && !DieArray.empty()) ||
David Blaikie07e22442013-09-23 22:44:40 +0000263 DieArray.size() > 1)
264 return 0; // Already parsed.
265
Eugene Zelenko570e39a2016-11-23 23:16:32 +0000266 bool HasCUDie = !DieArray.empty();
David Blaikie07e22442013-09-23 22:44:40 +0000267 extractDIEsToVector(!HasCUDie, !CUDieOnly, DieArray);
268
269 if (DieArray.empty())
270 return 0;
271
272 // If CU DIE was just parsed, copy several attribute values from it.
273 if (!HasCUDie) {
Greg Claytonc8c10322016-12-13 18:25:19 +0000274 DWARFDie UnitDie = getUnitDIE();
Paul Robinson543c0e12018-05-22 17:27:31 +0000275 if (Optional<uint64_t> DWOId = toUnsigned(UnitDie.find(DW_AT_GNU_dwo_id)))
276 Header.setDWOId(*DWOId);
David Blaikie22dc4472017-08-02 20:16:22 +0000277 if (!isDWO) {
278 assert(AddrOffsetSectionBase == 0);
279 assert(RangeSectionBase == 0);
280 AddrOffsetSectionBase =
281 toSectionOffset(UnitDie.find(DW_AT_GNU_addr_base), 0);
282 RangeSectionBase = toSectionOffset(UnitDie.find(DW_AT_rnglists_base), 0);
283 }
Wolfgang Pieb77d3e932017-06-06 01:22:34 +0000284
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000285 // In general, in DWARF v5 and beyond we derive the start of the unit's
286 // contribution to the string offsets table from the unit DIE's
287 // DW_AT_str_offsets_base attribute. Split DWARF units do not use this
288 // attribute, so we assume that there is a contribution to the string
289 // offsets table starting at offset 0 of the debug_str_offsets.dwo section.
290 // In both cases we need to determine the format of the contribution,
291 // which may differ from the unit's format.
292 uint64_t StringOffsetsContributionBase =
293 isDWO ? 0 : toSectionOffset(UnitDie.find(DW_AT_str_offsets_base), 0);
Paul Robinson5f53f072018-05-14 20:32:31 +0000294 auto IndexEntry = Header.getIndexEntry();
Wolfgang Pieb77d3e932017-06-06 01:22:34 +0000295 if (IndexEntry)
296 if (const auto *C = IndexEntry->getOffset(DW_SECT_STR_OFFSETS))
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000297 StringOffsetsContributionBase += C->Offset;
298
299 DWARFDataExtractor DA(Context.getDWARFObj(), StringOffsetSection,
300 isLittleEndian, 0);
301 if (isDWO)
302 StringOffsetsTableContribution =
303 determineStringOffsetsTableContributionDWO(
304 DA, StringOffsetsContributionBase);
305 else if (getVersion() >= 5)
306 StringOffsetsTableContribution = determineStringOffsetsTableContribution(
307 DA, StringOffsetsContributionBase);
Wolfgang Pieb77d3e932017-06-06 01:22:34 +0000308
Wolfgang Piebad605592018-05-18 20:12:54 +0000309 // DWARF v5 uses the .debug_rnglists and .debug_rnglists.dwo sections to
310 // describe address ranges.
311 if (getVersion() >= 5) {
312 if (isDWO)
313 setRangesSection(&Context.getDWARFObj().getRnglistsDWOSection(), 0);
314 else
315 setRangesSection(&Context.getDWARFObj().getRnglistsSection(),
316 toSectionOffset(UnitDie.find(DW_AT_rnglists_base), 0));
317 // Parse the range list table header. Individual range lists are
318 // extracted lazily.
319 DWARFDataExtractor RangesDA(Context.getDWARFObj(), *RangeSection,
320 isLittleEndian, 0);
321 if (auto TableOrError =
322 parseRngListTableHeader(RangesDA, RangeSectionBase))
323 RngListTable = TableOrError.get();
324 else
325 WithColor::error() << "parsing a range list table: "
Wolfgang Pieb401b5ec2018-05-18 20:51:16 +0000326 << toString(TableOrError.takeError())
Wolfgang Piebad605592018-05-18 20:12:54 +0000327 << '\n';
328
329 // In a split dwarf unit, there is no DW_AT_rnglists_base attribute.
330 // Adjust RangeSectionBase to point past the table header.
331 if (isDWO && RngListTable)
332 RangeSectionBase = RngListTable->getHeaderSize();
333 }
334
Alexey Samsonovaa909982014-06-13 22:31:03 +0000335 // Don't fall back to DW_AT_GNU_ranges_base: it should be ignored for
336 // skeleton CU DIE, so that DWARF users not aware of it are not broken.
David Blaikie07e22442013-09-23 22:44:40 +0000337 }
338
David Blaikie07e22442013-09-23 22:44:40 +0000339 return DieArray.size();
340}
341
David Blaikie07e22442013-09-23 22:44:40 +0000342bool DWARFUnit::parseDWO() {
David Blaikiee438cff2016-04-22 22:50:56 +0000343 if (isDWO)
344 return false;
Craig Topper2617dcc2014-04-15 06:32:26 +0000345 if (DWO.get())
David Blaikie07e22442013-09-23 22:44:40 +0000346 return false;
Greg Claytonc8c10322016-12-13 18:25:19 +0000347 DWARFDie UnitDie = getUnitDIE();
348 if (!UnitDie)
David Blaikie07e22442013-09-23 22:44:40 +0000349 return false;
Eugene Zelenko28db7e62017-03-01 01:14:23 +0000350 auto DWOFileName = dwarf::toString(UnitDie.find(DW_AT_GNU_dwo_name));
Craig Topper2617dcc2014-04-15 06:32:26 +0000351 if (!DWOFileName)
David Blaikie07e22442013-09-23 22:44:40 +0000352 return false;
Eugene Zelenko28db7e62017-03-01 01:14:23 +0000353 auto CompilationDir = dwarf::toString(UnitDie.find(DW_AT_comp_dir));
David Blaikie07e22442013-09-23 22:44:40 +0000354 SmallString<16> AbsolutePath;
Greg Clayton97d22182017-01-13 21:08:18 +0000355 if (sys::path::is_relative(*DWOFileName) && CompilationDir &&
356 *CompilationDir) {
357 sys::path::append(AbsolutePath, *CompilationDir);
David Blaikie07e22442013-09-23 22:44:40 +0000358 }
Greg Clayton97d22182017-01-13 21:08:18 +0000359 sys::path::append(AbsolutePath, *DWOFileName);
David Blaikie8d039d42017-05-20 03:32:49 +0000360 auto DWOId = getDWOId();
361 if (!DWOId)
362 return false;
David Blaikief9803fb2017-05-23 00:30:42 +0000363 auto DWOContext = Context.getDWOContext(AbsolutePath);
364 if (!DWOContext)
David Blaikie07e22442013-09-23 22:44:40 +0000365 return false;
David Blaikief9803fb2017-05-23 00:30:42 +0000366
David Blaikie15d85fc2017-05-23 06:48:53 +0000367 DWARFCompileUnit *DWOCU = DWOContext->getDWOCompileUnitForHash(*DWOId);
368 if (!DWOCU)
David Blaikief9803fb2017-05-23 00:30:42 +0000369 return false;
David Blaikie15d85fc2017-05-23 06:48:53 +0000370 DWO = std::shared_ptr<DWARFCompileUnit>(std::move(DWOContext), DWOCU);
David Blaikie07e22442013-09-23 22:44:40 +0000371 // Share .debug_addr and .debug_ranges section with compile unit in .dwo
David Blaikief9803fb2017-05-23 00:30:42 +0000372 DWO->setAddrOffsetSection(AddrOffsetSection, AddrOffsetSectionBase);
Wolfgang Piebad605592018-05-18 20:12:54 +0000373 if (getVersion() >= 5) {
374 DWO->setRangesSection(&Context.getDWARFObj().getRnglistsDWOSection(), 0);
375 DWARFDataExtractor RangesDA(Context.getDWARFObj(), *RangeSection,
376 isLittleEndian, 0);
377 if (auto TableOrError = parseRngListTableHeader(RangesDA, RangeSectionBase))
378 DWO->RngListTable = TableOrError.get();
379 else
380 WithColor::error() << "parsing a range list table: "
Wolfgang Pieb401b5ec2018-05-18 20:51:16 +0000381 << toString(TableOrError.takeError())
Wolfgang Piebad605592018-05-18 20:12:54 +0000382 << '\n';
383 if (DWO->RngListTable)
384 DWO->RangeSectionBase = DWO->RngListTable->getHeaderSize();
385 } else {
386 auto DWORangesBase = UnitDie.getRangesBaseAttribute();
387 DWO->setRangesSection(RangeSection, DWORangesBase ? *DWORangesBase : 0);
388 }
389
David Blaikie07e22442013-09-23 22:44:40 +0000390 return true;
391}
392
393void DWARFUnit::clearDIEs(bool KeepCUDie) {
394 if (DieArray.size() > (unsigned)KeepCUDie) {
Benjamin Kramer295cf4d2017-08-01 14:38:08 +0000395 DieArray.resize((unsigned)KeepCUDie);
396 DieArray.shrink_to_fit();
David Blaikie07e22442013-09-23 22:44:40 +0000397 }
398}
399
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000400Expected<DWARFAddressRangesVector>
401DWARFUnit::findRnglistFromOffset(uint32_t Offset) {
Wolfgang Piebad605592018-05-18 20:12:54 +0000402 if (getVersion() <= 4) {
403 DWARFDebugRangeList RangeList;
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000404 if (Error E = extractRangeList(Offset, RangeList))
405 return std::move(E);
406 return RangeList.getAbsoluteRanges(getBaseAddress());
Wolfgang Piebad605592018-05-18 20:12:54 +0000407 }
408 if (RngListTable) {
409 DWARFDataExtractor RangesData(Context.getDWARFObj(), *RangeSection,
410 isLittleEndian, RngListTable->getAddrSize());
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000411 auto RangeListOrError = RngListTable->findRangeList(RangesData, Offset);
412 if (RangeListOrError)
413 return RangeListOrError.get().getAbsoluteRanges(getBaseAddress());
414 return RangeListOrError.takeError();
Wolfgang Piebad605592018-05-18 20:12:54 +0000415 }
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000416
417 return make_error<StringError>("missing or invalid range list table",
418 inconvertibleErrorCode());
Wolfgang Piebad605592018-05-18 20:12:54 +0000419}
420
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000421Expected<DWARFAddressRangesVector>
422DWARFUnit::findRnglistFromIndex(uint32_t Index) {
Wolfgang Piebad605592018-05-18 20:12:54 +0000423 if (auto Offset = getRnglistOffset(Index))
424 return findRnglistFromOffset(*Offset + RangeSectionBase);
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000425
426 std::string Buffer;
427 raw_string_ostream Stream(Buffer);
428 if (RngListTable)
429 Stream << format("invalid range list table index %d", Index);
430 else
431 Stream << "missing or invalid range list table";
432 return make_error<StringError>(Stream.str(), inconvertibleErrorCode());
Wolfgang Piebad605592018-05-18 20:12:54 +0000433}
434
Alexey Samsonov762343d2014-04-18 17:25:46 +0000435void DWARFUnit::collectAddressRanges(DWARFAddressRangesVector &CURanges) {
Greg Claytonc8c10322016-12-13 18:25:19 +0000436 DWARFDie UnitDie = getUnitDIE();
437 if (!UnitDie)
Alexey Samsonov7a18c062015-05-19 21:54:32 +0000438 return;
439 // First, check if unit DIE describes address ranges for the whole unit.
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000440 auto CUDIERangesOrError = UnitDie.getAddressRanges();
441 if (CUDIERangesOrError) {
442 if (!CUDIERangesOrError.get().empty()) {
443 CURanges.insert(CURanges.end(), CUDIERangesOrError.get().begin(),
444 CUDIERangesOrError.get().end());
445 return;
446 }
447 } else
448 WithColor::error() << "decoding address ranges: "
449 << toString(CUDIERangesOrError.takeError()) << '\n';
Alexey Samsonov84e24232014-04-18 20:30:27 +0000450
David Blaikie07e22442013-09-23 22:44:40 +0000451 // This function is usually called if there in no .debug_aranges section
452 // in order to produce a compile unit level set of address ranges that
453 // is accurate. If the DIEs weren't parsed, then we don't want all dies for
454 // all compile units to stay loaded when they weren't needed. So we can end
455 // up parsing the DWARF and then throwing them all away to keep memory usage
456 // down.
Alexey Samsonov762343d2014-04-18 17:25:46 +0000457 const bool ClearDIEs = extractDIEsIfNeeded(false) > 1;
Greg Claytonc8c10322016-12-13 18:25:19 +0000458 getUnitDIE().collectChildrenAddressRanges(CURanges);
Alexey Samsonov762343d2014-04-18 17:25:46 +0000459
460 // Collect address ranges from DIEs in .dwo if necessary.
David Blaikie07e22442013-09-23 22:44:40 +0000461 bool DWOCreated = parseDWO();
David Blaikief9803fb2017-05-23 00:30:42 +0000462 if (DWO)
463 DWO->collectAddressRanges(CURanges);
Alexey Samsonov762343d2014-04-18 17:25:46 +0000464 if (DWOCreated)
David Blaikie07e22442013-09-23 22:44:40 +0000465 DWO.reset();
466
467 // Keep memory down by clearing DIEs if this generate function
468 // caused them to be parsed.
Alexey Samsonov762343d2014-04-18 17:25:46 +0000469 if (ClearDIEs)
David Blaikie07e22442013-09-23 22:44:40 +0000470 clearDIEs(true);
471}
472
David Blaikie3b6de6fe2018-02-13 01:52:30 +0000473void DWARFUnit::updateAddressDieMap(DWARFDie Die) {
474 if (Die.isSubroutineDIE()) {
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000475 auto DIERangesOrError = Die.getAddressRanges();
476 if (DIERangesOrError) {
477 for (const auto &R : DIERangesOrError.get()) {
478 // Ignore 0-sized ranges.
479 if (R.LowPC == R.HighPC)
480 continue;
481 auto B = AddrDieMap.upper_bound(R.LowPC);
482 if (B != AddrDieMap.begin() && R.LowPC < (--B)->second.first) {
483 // The range is a sub-range of existing ranges, we need to split the
484 // existing range.
485 if (R.HighPC < B->second.first)
486 AddrDieMap[R.HighPC] = B->second;
487 if (R.LowPC > B->first)
488 AddrDieMap[B->first].first = R.LowPC;
489 }
490 AddrDieMap[R.LowPC] = std::make_pair(R.HighPC, Die);
Chandler Carruth54a5ad32017-12-22 06:41:23 +0000491 }
Wolfgang Pieb61d8c8d2018-06-20 22:56:37 +0000492 } else
493 llvm::consumeError(DIERangesOrError.takeError());
Chandler Carruth54a5ad32017-12-22 06:41:23 +0000494 }
David Blaikie3b6de6fe2018-02-13 01:52:30 +0000495 // Parent DIEs are added to the AddrDieMap prior to the Children DIEs to
496 // simplify the logic to update AddrDieMap. The child's range will always
497 // be equal or smaller than the parent's range. With this assumption, when
498 // adding one range into the map, it will at most split a range into 3
499 // sub-ranges.
500 for (DWARFDie Child = Die.getFirstChild(); Child; Child = Child.getSibling())
501 updateAddressDieMap(Child);
Dehao Chena364f092017-04-19 20:09:38 +0000502}
503
504DWARFDie DWARFUnit::getSubroutineForAddress(uint64_t Address) {
505 extractDIEsIfNeeded(false);
David Blaikie3b6de6fe2018-02-13 01:52:30 +0000506 if (AddrDieMap.empty())
507 updateAddressDieMap(getUnitDIE());
508 auto R = AddrDieMap.upper_bound(Address);
509 if (R == AddrDieMap.begin())
Dehao Chena364f092017-04-19 20:09:38 +0000510 return DWARFDie();
David Blaikie3b6de6fe2018-02-13 01:52:30 +0000511 // upper_bound's previous item contains Address.
512 --R;
513 if (Address >= R->second.first)
Dehao Chena364f092017-04-19 20:09:38 +0000514 return DWARFDie();
David Blaikie3b6de6fe2018-02-13 01:52:30 +0000515 return R->second.second;
David Blaikie07e22442013-09-23 22:44:40 +0000516}
517
Greg Claytonc8c10322016-12-13 18:25:19 +0000518void
519DWARFUnit::getInlinedChainForAddress(uint64_t Address,
520 SmallVectorImpl<DWARFDie> &InlinedChain) {
Dehao Chendb569ba2017-04-19 20:52:21 +0000521 assert(InlinedChain.empty());
David Blaikie9a4f3cb2016-04-22 21:32:59 +0000522 // Try to look for subprogram DIEs in the DWO file.
523 parseDWO();
Dehao Chendb569ba2017-04-19 20:52:21 +0000524 // First, find the subroutine that contains the given address (the leaf
525 // of inlined chain).
526 DWARFDie SubroutineDIE =
David Blaikief9803fb2017-05-23 00:30:42 +0000527 (DWO ? DWO.get() : this)->getSubroutineForAddress(Address);
David Blaikie07e22442013-09-23 22:44:40 +0000528
David Blaikieaa537da2018-05-01 18:08:45 +0000529 if (!SubroutineDIE)
530 return;
531
532 while (!SubroutineDIE.isSubprogramDIE()) {
533 if (SubroutineDIE.getTag() == DW_TAG_inlined_subroutine)
Dehao Chendb569ba2017-04-19 20:52:21 +0000534 InlinedChain.push_back(SubroutineDIE);
535 SubroutineDIE = SubroutineDIE.getParent();
536 }
David Blaikieaa537da2018-05-01 18:08:45 +0000537 InlinedChain.push_back(SubroutineDIE);
David Blaikie07e22442013-09-23 22:44:40 +0000538}
David Blaikie82641be2015-11-17 00:39:55 +0000539
Eugene Zelenko28db7e62017-03-01 01:14:23 +0000540const DWARFUnitIndex &llvm::getDWARFUnitIndex(DWARFContext &Context,
541 DWARFSectionKind Kind) {
David Blaikie82641be2015-11-17 00:39:55 +0000542 if (Kind == DW_SECT_INFO)
543 return Context.getCUIndex();
544 assert(Kind == DW_SECT_TYPES);
545 return Context.getTUIndex();
546}
Eugene Zelenko570e39a2016-11-23 23:16:32 +0000547
Greg Clayton78a07bf2016-12-21 21:37:06 +0000548DWARFDie DWARFUnit::getParent(const DWARFDebugInfoEntry *Die) {
549 if (!Die)
550 return DWARFDie();
551 const uint32_t Depth = Die->getDepth();
552 // Unit DIEs always have a depth of zero and never have parents.
553 if (Depth == 0)
554 return DWARFDie();
555 // Depth of 1 always means parent is the compile/type unit.
556 if (Depth == 1)
557 return getUnitDIE();
558 // Look for previous DIE with a depth that is one less than the Die's depth.
559 const uint32_t ParentDepth = Depth - 1;
560 for (uint32_t I = getDIEIndex(Die) - 1; I > 0; --I) {
561 if (DieArray[I].getDepth() == ParentDepth)
562 return DWARFDie(this, &DieArray[I]);
563 }
564 return DWARFDie();
565}
566
567DWARFDie DWARFUnit::getSibling(const DWARFDebugInfoEntry *Die) {
568 if (!Die)
569 return DWARFDie();
570 uint32_t Depth = Die->getDepth();
571 // Unit DIEs always have a depth of zero and never have siblings.
572 if (Depth == 0)
573 return DWARFDie();
574 // NULL DIEs don't have siblings.
575 if (Die->getAbbreviationDeclarationPtr() == nullptr)
576 return DWARFDie();
Jonas Devliegheref63ee642017-10-25 21:56:41 +0000577
Greg Clayton78a07bf2016-12-21 21:37:06 +0000578 // Find the next DIE whose depth is the same as the Die's depth.
Eugene Zelenko28db7e62017-03-01 01:14:23 +0000579 for (size_t I = getDIEIndex(Die) + 1, EndIdx = DieArray.size(); I < EndIdx;
580 ++I) {
Greg Clayton78a07bf2016-12-21 21:37:06 +0000581 if (DieArray[I].getDepth() == Depth)
582 return DWARFDie(this, &DieArray[I]);
583 }
584 return DWARFDie();
585}
David Blaikie485e01b2017-09-19 15:13:55 +0000586
George Rimar0be860f2017-10-25 10:23:49 +0000587DWARFDie DWARFUnit::getFirstChild(const DWARFDebugInfoEntry *Die) {
588 if (!Die->hasChildren())
589 return DWARFDie();
590
591 // We do not want access out of bounds when parsing corrupted debug data.
592 size_t I = getDIEIndex(Die) + 1;
593 if (I >= DieArray.size())
594 return DWARFDie();
595 return DWARFDie(this, &DieArray[I]);
596}
597
David Blaikie485e01b2017-09-19 15:13:55 +0000598const DWARFAbbreviationDeclarationSet *DWARFUnit::getAbbreviations() const {
599 if (!Abbrevs)
Paul Robinson5f53f072018-05-14 20:32:31 +0000600 Abbrevs = Abbrev->getAbbreviationDeclarationSet(Header.getAbbrOffset());
David Blaikie485e01b2017-09-19 15:13:55 +0000601 return Abbrevs;
602}
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000603
Jonas Devliegherec1113822018-05-21 19:36:54 +0000604llvm::Optional<BaseAddress> DWARFUnit::getBaseAddress() {
605 if (BaseAddr)
606 return BaseAddr;
607
608 DWARFDie UnitDie = getUnitDIE();
609 Optional<DWARFFormValue> PC = UnitDie.find({DW_AT_low_pc, DW_AT_entry_pc});
610 if (Optional<uint64_t> Addr = toAddress(PC))
611 BaseAddr = {*Addr, PC->getSectionIndex()};
612
613 return BaseAddr;
614}
615
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000616Optional<StrOffsetsContributionDescriptor>
617StrOffsetsContributionDescriptor::validateContributionSize(
618 DWARFDataExtractor &DA) {
619 uint8_t EntrySize = getDwarfOffsetByteSize();
620 // In order to ensure that we don't read a partial record at the end of
621 // the section we validate for a multiple of the entry size.
622 uint64_t ValidationSize = alignTo(Size, EntrySize);
623 // Guard against overflow.
624 if (ValidationSize >= Size)
625 if (DA.isValidOffsetForDataOfSize((uint32_t)Base, ValidationSize))
626 return *this;
627 return Optional<StrOffsetsContributionDescriptor>();
628}
629
630// Look for a DWARF64-formatted contribution to the string offsets table
631// starting at a given offset and record it in a descriptor.
632static Optional<StrOffsetsContributionDescriptor>
633parseDWARF64StringOffsetsTableHeader(DWARFDataExtractor &DA, uint32_t Offset) {
634 if (!DA.isValidOffsetForDataOfSize(Offset, 16))
635 return Optional<StrOffsetsContributionDescriptor>();
636
637 if (DA.getU32(&Offset) != 0xffffffff)
638 return Optional<StrOffsetsContributionDescriptor>();
639
640 uint64_t Size = DA.getU64(&Offset);
641 uint8_t Version = DA.getU16(&Offset);
642 (void)DA.getU16(&Offset); // padding
Wolfgang Piebf2b6915e2018-05-10 20:02:34 +0000643 // The encoded length includes the 2-byte version field and the 2-byte
644 // padding, so we need to subtract them out when we populate the descriptor.
645 return StrOffsetsContributionDescriptor(Offset, Size - 4, Version, DWARF64);
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000646 //return Optional<StrOffsetsContributionDescriptor>(Descriptor);
647}
648
649// Look for a DWARF32-formatted contribution to the string offsets table
650// starting at a given offset and record it in a descriptor.
651static Optional<StrOffsetsContributionDescriptor>
652parseDWARF32StringOffsetsTableHeader(DWARFDataExtractor &DA, uint32_t Offset) {
653 if (!DA.isValidOffsetForDataOfSize(Offset, 8))
654 return Optional<StrOffsetsContributionDescriptor>();
655 uint32_t ContributionSize = DA.getU32(&Offset);
656 if (ContributionSize >= 0xfffffff0)
657 return Optional<StrOffsetsContributionDescriptor>();
658 uint8_t Version = DA.getU16(&Offset);
659 (void)DA.getU16(&Offset); // padding
Wolfgang Piebf2b6915e2018-05-10 20:02:34 +0000660 // The encoded length includes the 2-byte version field and the 2-byte
661 // padding, so we need to subtract them out when we populate the descriptor.
662 return StrOffsetsContributionDescriptor(Offset, ContributionSize - 4, Version,
663 DWARF32);
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000664 //return Optional<StrOffsetsContributionDescriptor>(Descriptor);
665}
666
667Optional<StrOffsetsContributionDescriptor>
668DWARFUnit::determineStringOffsetsTableContribution(DWARFDataExtractor &DA,
669 uint64_t Offset) {
670 Optional<StrOffsetsContributionDescriptor> Descriptor;
671 // Attempt to find a DWARF64 contribution 16 bytes before the base.
672 if (Offset >= 16)
673 Descriptor =
674 parseDWARF64StringOffsetsTableHeader(DA, (uint32_t)Offset - 16);
675 // Try to find a DWARF32 contribution 8 bytes before the base.
676 if (!Descriptor && Offset >= 8)
677 Descriptor = parseDWARF32StringOffsetsTableHeader(DA, (uint32_t)Offset - 8);
678 return Descriptor ? Descriptor->validateContributionSize(DA) : Descriptor;
679}
680
681Optional<StrOffsetsContributionDescriptor>
682DWARFUnit::determineStringOffsetsTableContributionDWO(DWARFDataExtractor &DA,
683 uint64_t Offset) {
684 if (getVersion() >= 5) {
685 // Look for a valid contribution at the given offset.
686 auto Descriptor =
687 parseDWARF64StringOffsetsTableHeader(DA, (uint32_t)Offset);
688 if (!Descriptor)
689 Descriptor = parseDWARF32StringOffsetsTableHeader(DA, (uint32_t)Offset);
690 return Descriptor ? Descriptor->validateContributionSize(DA) : Descriptor;
691 }
692 // Prior to DWARF v5, we derive the contribution size from the
693 // index table (in a package file). In a .dwo file it is simply
694 // the length of the string offsets section.
695 uint64_t Size = 0;
Paul Robinson5f53f072018-05-14 20:32:31 +0000696 auto IndexEntry = Header.getIndexEntry();
Wolfgang Pieb6ecd6a82017-12-21 19:38:13 +0000697 if (!IndexEntry)
698 Size = StringOffsetSection.Data.size();
699 else if (const auto *C = IndexEntry->getOffset(DW_SECT_STR_OFFSETS))
700 Size = C->Length;
701 // Return a descriptor with the given offset as base, version 4 and
702 // DWARF32 format.
703 //return Optional<StrOffsetsContributionDescriptor>(
704 //StrOffsetsContributionDescriptor(Offset, Size, 4, DWARF32));
705 return StrOffsetsContributionDescriptor(Offset, Size, 4, DWARF32);
706}