blob: e3bd759ba94bc6017299ac9b5fc6b5cd00d98996 [file] [log] [blame]
Eugene Zelenkoe94042c2017-02-27 23:43:14 +00001//===- DWARFDie.cpp -------------------------------------------------------===//
Greg Claytonc8c10322016-12-13 18:25:19 +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
Greg Claytonc8c10322016-12-13 18:25:19 +000010#include "SyntaxHighlighting.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000011#include "llvm/ADT/None.h"
12#include "llvm/ADT/Optional.h"
13#include "llvm/ADT/StringRef.h"
14#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
Greg Claytonc8c10322016-12-13 18:25:19 +000015#include "llvm/DebugInfo/DWARF/DWARFContext.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000016#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
17#include "llvm/DebugInfo/DWARF/DWARFDie.h"
Greg Claytonc8c10322016-12-13 18:25:19 +000018#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000019#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
20#include "llvm/Support/DataExtractor.h"
Greg Claytonc8c10322016-12-13 18:25:19 +000021#include "llvm/Support/Dwarf.h"
22#include "llvm/Support/Format.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000023#include "llvm/Support/MathExtras.h"
Greg Claytonc8c10322016-12-13 18:25:19 +000024#include "llvm/Support/raw_ostream.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000025#include <algorithm>
26#include <cassert>
27#include <cinttypes>
28#include <cstdint>
29#include <string>
30#include <utility>
Greg Claytonc8c10322016-12-13 18:25:19 +000031
32using namespace llvm;
33using namespace dwarf;
34using namespace syntax;
35
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000036static void dumpApplePropertyAttribute(raw_ostream &OS, uint64_t Val) {
Greg Claytonc8c10322016-12-13 18:25:19 +000037 OS << " (";
38 do {
39 uint64_t Shift = countTrailingZeros(Val);
40 assert(Shift < 64 && "undefined behavior");
41 uint64_t Bit = 1ULL << Shift;
42 auto PropName = ApplePropertyString(Bit);
43 if (!PropName.empty())
44 OS << PropName;
45 else
46 OS << format("DW_APPLE_PROPERTY_0x%" PRIx64, Bit);
47 if (!(Val ^= Bit))
48 break;
49 OS << ", ";
50 } while (true);
51 OS << ")";
52}
53
54static void dumpRanges(raw_ostream &OS, const DWARFAddressRangesVector& Ranges,
55 unsigned AddressSize, unsigned Indent) {
56 if (Ranges.empty())
57 return;
58
59 for (const auto &Range: Ranges) {
60 OS << '\n';
61 OS.indent(Indent);
62 OS << format("[0x%0*" PRIx64 " - 0x%0*" PRIx64 ")",
George Rimar8680b6e2017-05-16 11:54:19 +000063 AddressSize*2, Range.LowPC,
64 AddressSize*2, Range.HighPC);
Greg Claytonc8c10322016-12-13 18:25:19 +000065 }
66}
67
68static void dumpAttribute(raw_ostream &OS, const DWARFDie &Die,
69 uint32_t *OffsetPtr, dwarf::Attribute Attr,
70 dwarf::Form Form, unsigned Indent) {
71 if (!Die.isValid())
72 return;
73 const char BaseIndent[] = " ";
74 OS << BaseIndent;
75 OS.indent(Indent+2);
76 auto attrString = AttributeString(Attr);
77 if (!attrString.empty())
78 WithColor(OS, syntax::Attribute) << attrString;
79 else
80 WithColor(OS, syntax::Attribute).get() << format("DW_AT_Unknown_%x", Attr);
81
82 auto formString = FormEncodingString(Form);
83 if (!formString.empty())
84 OS << " [" << formString << ']';
85 else
86 OS << format(" [DW_FORM_Unknown_%x]", Form);
87
88 DWARFUnit *U = Die.getDwarfUnit();
89 DWARFFormValue formValue(Form);
90
91 if (!formValue.extractValue(U->getDebugInfoExtractor(), OffsetPtr, U))
92 return;
93
94 OS << "\t(";
95
96 StringRef Name;
97 std::string File;
98 auto Color = syntax::Enumerator;
99 if (Attr == DW_AT_decl_file || Attr == DW_AT_call_file) {
100 Color = syntax::String;
101 if (const auto *LT = U->getContext().getLineTableForUnit(U))
102 if (LT->getFileNameByIndex(formValue.getAsUnsignedConstant().getValue(), U->getCompilationDir(), DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, File)) {
103 File = '"' + File + '"';
104 Name = File;
105 }
106 } else if (Optional<uint64_t> Val = formValue.getAsUnsignedConstant())
107 Name = AttributeValueString(Attr, *Val);
108
109 if (!Name.empty())
110 WithColor(OS, Color) << Name;
111 else if (Attr == DW_AT_decl_line || Attr == DW_AT_call_line)
112 OS << *formValue.getAsUnsignedConstant();
113 else
114 formValue.dump(OS);
115
116 // We have dumped the attribute raw value. For some attributes
117 // having both the raw value and the pretty-printed value is
118 // interesting. These attributes are handled below.
119 if (Attr == DW_AT_specification || Attr == DW_AT_abstract_origin) {
120 if (const char *Name = Die.getAttributeValueAsReferencedDie(Attr).getName(DINameKind::LinkageName))
121 OS << " \"" << Name << '\"';
122 } else if (Attr == DW_AT_APPLE_property_attribute) {
123 if (Optional<uint64_t> OptVal = formValue.getAsUnsignedConstant())
124 dumpApplePropertyAttribute(OS, *OptVal);
125 } else if (Attr == DW_AT_ranges) {
126 dumpRanges(OS, Die.getAddressRanges(), U->getAddressByteSize(),
127 sizeof(BaseIndent)+Indent+4);
128 }
129
130 OS << ")\n";
131}
132
Greg Claytonc8c10322016-12-13 18:25:19 +0000133bool DWARFDie::isSubprogramDIE() const {
134 return getTag() == DW_TAG_subprogram;
135}
136
137bool DWARFDie::isSubroutineDIE() const {
138 auto Tag = getTag();
139 return Tag == DW_TAG_subprogram || Tag == DW_TAG_inlined_subroutine;
140}
141
Greg Clayton1cbf3fa2016-12-13 23:20:56 +0000142Optional<DWARFFormValue>
Greg Clayton97d22182017-01-13 21:08:18 +0000143DWARFDie::find(dwarf::Attribute Attr) const {
Greg Clayton1cbf3fa2016-12-13 23:20:56 +0000144 if (!isValid())
145 return None;
Greg Claytonc8c10322016-12-13 18:25:19 +0000146 auto AbbrevDecl = getAbbreviationDeclarationPtr();
147 if (AbbrevDecl)
Greg Clayton1cbf3fa2016-12-13 23:20:56 +0000148 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U);
149 return None;
Greg Claytonc8c10322016-12-13 18:25:19 +0000150}
151
Greg Clayton97d22182017-01-13 21:08:18 +0000152Optional<DWARFFormValue>
Greg Claytonc109bbe2017-01-13 22:32:12 +0000153DWARFDie::find(ArrayRef<dwarf::Attribute> Attrs) const {
154 if (!isValid())
155 return None;
156 auto AbbrevDecl = getAbbreviationDeclarationPtr();
157 if (AbbrevDecl) {
158 for (auto Attr : Attrs) {
159 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U))
160 return Value;
161 }
162 }
163 return None;
164}
165
166Optional<DWARFFormValue>
167DWARFDie::findRecursively(ArrayRef<dwarf::Attribute> Attrs) const {
168 if (!isValid())
169 return None;
David Blaikie1914c822017-03-13 21:46:37 +0000170 auto Die = *this;
171 if (auto Value = Die.find(Attrs))
Greg Claytonc109bbe2017-01-13 22:32:12 +0000172 return Value;
David Blaikie1914c822017-03-13 21:46:37 +0000173 if (auto D = Die.getAttributeValueAsReferencedDie(DW_AT_abstract_origin))
174 Die = D;
175 if (auto Value = Die.find(Attrs))
176 return Value;
177 if (auto D = Die.getAttributeValueAsReferencedDie(DW_AT_specification))
178 Die = D;
179 if (auto Value = Die.find(Attrs))
180 return Value;
Greg Claytonc109bbe2017-01-13 22:32:12 +0000181 return None;
182}
183
Greg Claytonc8c10322016-12-13 18:25:19 +0000184DWARFDie
185DWARFDie::getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000186 auto SpecRef = toReference(find(Attr));
Greg Clayton52fe1f62016-12-14 22:38:08 +0000187 if (SpecRef) {
188 auto SpecUnit = U->getUnitSection().getUnitForOffset(*SpecRef);
Greg Claytonc8c10322016-12-13 18:25:19 +0000189 if (SpecUnit)
Greg Clayton52fe1f62016-12-14 22:38:08 +0000190 return SpecUnit->getDIEForOffset(*SpecRef);
Greg Claytonc8c10322016-12-13 18:25:19 +0000191 }
192 return DWARFDie();
193}
194
Greg Clayton52fe1f62016-12-14 22:38:08 +0000195Optional<uint64_t>
196DWARFDie::getRangesBaseAttribute() const {
Greg Claytonc109bbe2017-01-13 22:32:12 +0000197 return toSectionOffset(find({DW_AT_rnglists_base, DW_AT_GNU_ranges_base}));
Greg Claytonc8c10322016-12-13 18:25:19 +0000198}
199
Greg Clayton2520c9e2016-12-19 20:36:41 +0000200Optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000201 if (auto FormValue = find(DW_AT_high_pc)) {
Greg Clayton2520c9e2016-12-19 20:36:41 +0000202 if (auto Address = FormValue->getAsAddress()) {
203 // High PC is an address.
204 return Address;
205 }
206 if (auto Offset = FormValue->getAsUnsignedConstant()) {
207 // High PC is an offset from LowPC.
208 return LowPC + *Offset;
209 }
210 }
211 return None;
212}
Greg Clayton52fe1f62016-12-14 22:38:08 +0000213
Greg Clayton2520c9e2016-12-19 20:36:41 +0000214bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000215 auto LowPcAddr = toAddress(find(DW_AT_low_pc));
Greg Clayton2520c9e2016-12-19 20:36:41 +0000216 if (!LowPcAddr)
Greg Clayton52fe1f62016-12-14 22:38:08 +0000217 return false;
Greg Clayton2520c9e2016-12-19 20:36:41 +0000218 if (auto HighPcAddr = getHighPC(*LowPcAddr)) {
219 LowPC = *LowPcAddr;
220 HighPC = *HighPcAddr;
221 return true;
222 }
223 return false;
Greg Claytonc8c10322016-12-13 18:25:19 +0000224}
225
226DWARFAddressRangesVector
227DWARFDie::getAddressRanges() const {
228 if (isNULL())
229 return DWARFAddressRangesVector();
230 // Single range specified by low/high PC.
231 uint64_t LowPC, HighPC;
George Rimar8680b6e2017-05-16 11:54:19 +0000232 if (getLowAndHighPC(LowPC, HighPC))
233 return {{LowPC, HighPC}};
234
Greg Claytonc8c10322016-12-13 18:25:19 +0000235 // Multiple ranges from .debug_ranges section.
Greg Clayton97d22182017-01-13 21:08:18 +0000236 auto RangesOffset = toSectionOffset(find(DW_AT_ranges));
Greg Clayton52fe1f62016-12-14 22:38:08 +0000237 if (RangesOffset) {
Greg Claytonc8c10322016-12-13 18:25:19 +0000238 DWARFDebugRangeList RangeList;
Greg Clayton52fe1f62016-12-14 22:38:08 +0000239 if (U->extractRangeList(*RangesOffset, RangeList))
Greg Claytonc8c10322016-12-13 18:25:19 +0000240 return RangeList.getAbsoluteRanges(U->getBaseAddress());
241 }
242 return DWARFAddressRangesVector();
243}
244
245void
246DWARFDie::collectChildrenAddressRanges(DWARFAddressRangesVector& Ranges) const {
247 if (isNULL())
248 return;
249 if (isSubprogramDIE()) {
250 const auto &DIERanges = getAddressRanges();
251 Ranges.insert(Ranges.end(), DIERanges.begin(), DIERanges.end());
252 }
253
Greg Clayton93e4fe82017-01-05 23:47:37 +0000254 for (auto Child: children())
Greg Claytonc8c10322016-12-13 18:25:19 +0000255 Child.collectChildrenAddressRanges(Ranges);
Greg Claytonc8c10322016-12-13 18:25:19 +0000256}
257
258bool DWARFDie::addressRangeContainsAddress(const uint64_t Address) const {
259 for (const auto& R : getAddressRanges()) {
George Rimar8680b6e2017-05-16 11:54:19 +0000260 if (R.LowPC <= Address && Address < R.HighPC)
Greg Claytonc8c10322016-12-13 18:25:19 +0000261 return true;
262 }
263 return false;
264}
265
266const char *
267DWARFDie::getSubroutineName(DINameKind Kind) const {
268 if (!isSubroutineDIE())
269 return nullptr;
270 return getName(Kind);
271}
272
273const char *
274DWARFDie::getName(DINameKind Kind) const {
275 if (!isValid() || Kind == DINameKind::None)
276 return nullptr;
Greg Claytonc8c10322016-12-13 18:25:19 +0000277 // Try to get mangled name only if it was asked for.
278 if (Kind == DINameKind::LinkageName) {
Greg Claytonc109bbe2017-01-13 22:32:12 +0000279 if (auto Name = dwarf::toString(findRecursively({DW_AT_MIPS_linkage_name,
280 DW_AT_linkage_name}), nullptr))
Greg Clayton97d22182017-01-13 21:08:18 +0000281 return Name;
Greg Claytonc8c10322016-12-13 18:25:19 +0000282 }
Greg Clayton97d22182017-01-13 21:08:18 +0000283 if (auto Name = dwarf::toString(findRecursively(DW_AT_name), nullptr))
284 return Name;
Greg Claytonc8c10322016-12-13 18:25:19 +0000285 return nullptr;
286}
287
David Blaikieefc4eba2017-02-06 20:19:02 +0000288uint64_t DWARFDie::getDeclLine() const {
289 return toUnsigned(findRecursively(DW_AT_decl_line), 0);
290}
291
Greg Claytonc8c10322016-12-13 18:25:19 +0000292void DWARFDie::getCallerFrame(uint32_t &CallFile, uint32_t &CallLine,
Dehao Chenef700d52017-04-17 20:10:39 +0000293 uint32_t &CallColumn,
294 uint32_t &CallDiscriminator) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000295 CallFile = toUnsigned(find(DW_AT_call_file), 0);
296 CallLine = toUnsigned(find(DW_AT_call_line), 0);
297 CallColumn = toUnsigned(find(DW_AT_call_column), 0);
Dehao Chenef700d52017-04-17 20:10:39 +0000298 CallDiscriminator = toUnsigned(find(DW_AT_GNU_discriminator), 0);
Greg Claytonc8c10322016-12-13 18:25:19 +0000299}
300
301void DWARFDie::dump(raw_ostream &OS, unsigned RecurseDepth,
302 unsigned Indent) const {
303 if (!isValid())
304 return;
305 DataExtractor debug_info_data = U->getDebugInfoExtractor();
306 const uint32_t Offset = getOffset();
307 uint32_t offset = Offset;
308
309 if (debug_info_data.isValidOffset(offset)) {
310 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
311 WithColor(OS, syntax::Address).get() << format("\n0x%8.8x: ", Offset);
312
313 if (abbrCode) {
314 auto AbbrevDecl = getAbbreviationDeclarationPtr();
315 if (AbbrevDecl) {
316 auto tagString = TagString(getTag());
317 if (!tagString.empty())
318 WithColor(OS, syntax::Tag).get().indent(Indent) << tagString;
319 else
320 WithColor(OS, syntax::Tag).get().indent(Indent)
321 << format("DW_TAG_Unknown_%x", getTag());
322
323 OS << format(" [%u] %c\n", abbrCode,
324 AbbrevDecl->hasChildren() ? '*' : ' ');
325
326 // Dump all data in the DIE for the attributes.
327 for (const auto &AttrSpec : AbbrevDecl->attributes()) {
Victor Leschuk96d99812017-02-25 13:15:57 +0000328 if (AttrSpec.Form == DW_FORM_implicit_const) {
329 // We are dumping .debug_info section ,
330 // implicit_const attribute values are not really stored here,
331 // but in .debug_abbrev section. So we just skip such attrs.
332 continue;
333 }
Greg Claytonc8c10322016-12-13 18:25:19 +0000334 dumpAttribute(OS, *this, &offset, AttrSpec.Attr, AttrSpec.Form,
335 Indent);
336 }
337
338 DWARFDie child = getFirstChild();
339 if (RecurseDepth > 0 && child) {
340 while (child) {
341 child.dump(OS, RecurseDepth-1, Indent+2);
342 child = child.getSibling();
343 }
344 }
345 } else {
346 OS << "Abbreviation code not found in 'debug_abbrev' class for code: "
347 << abbrCode << '\n';
348 }
349 } else {
350 OS.indent(Indent) << "NULL\n";
351 }
352 }
353}
354
Greg Clayton78a07bf2016-12-21 21:37:06 +0000355DWARFDie DWARFDie::getParent() const {
356 if (isValid())
357 return U->getParent(Die);
358 return DWARFDie();
359}
360
361DWARFDie DWARFDie::getSibling() const {
362 if (isValid())
363 return U->getSibling(Die);
364 return DWARFDie();
365}
Greg Clayton0e62ee72017-01-13 00:13:42 +0000366
367iterator_range<DWARFDie::attribute_iterator>
368DWARFDie::attributes() const {
369 return make_range(attribute_iterator(*this, false),
370 attribute_iterator(*this, true));
371}
372
373DWARFDie::attribute_iterator::attribute_iterator(DWARFDie D, bool End) :
374 Die(D), AttrValue(0), Index(0) {
375 auto AbbrDecl = Die.getAbbreviationDeclarationPtr();
376 assert(AbbrDecl && "Must have abbreviation declaration");
377 if (End) {
378 // This is the end iterator so we set the index to the attribute count.
379 Index = AbbrDecl->getNumAttributes();
380 } else {
381 // This is the begin iterator so we extract the value for this->Index.
382 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize();
383 updateForIndex(*AbbrDecl, 0);
384 }
385}
386
387void DWARFDie::attribute_iterator::updateForIndex(
388 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) {
389 Index = I;
390 // AbbrDecl must be valid befor calling this function.
391 auto NumAttrs = AbbrDecl.getNumAttributes();
392 if (Index < NumAttrs) {
393 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index);
394 // Add the previous byte size of any previous attribute value.
395 AttrValue.Offset += AttrValue.ByteSize;
396 AttrValue.Value.setForm(AbbrDecl.getFormByIndex(Index));
397 uint32_t ParseOffset = AttrValue.Offset;
398 auto U = Die.getDwarfUnit();
399 assert(U && "Die must have valid DWARF unit");
400 bool b = AttrValue.Value.extractValue(U->getDebugInfoExtractor(),
401 &ParseOffset, U);
402 (void)b;
403 assert(b && "extractValue cannot fail on fully parsed DWARF");
404 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
405 } else {
406 assert(Index == NumAttrs && "Indexes should be [0, NumAttrs) only");
407 AttrValue.clear();
408 }
409}
410
411DWARFDie::attribute_iterator &DWARFDie::attribute_iterator::operator++() {
412 if (auto AbbrDecl = Die.getAbbreviationDeclarationPtr())
413 updateForIndex(*AbbrDecl, Index + 1);
414 return *this;
415}