blob: b2483dc3daa6234295f11fc6e6e4010fc712d340 [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
Chandler Carruth6bda14b2017-06-06 11:49:48 +000010#include "llvm/DebugInfo/DWARF/DWARFDie.h"
Greg Claytonc8c10322016-12-13 18:25:19 +000011#include "SyntaxHighlighting.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000012#include "llvm/ADT/None.h"
13#include "llvm/ADT/Optional.h"
14#include "llvm/ADT/StringRef.h"
15#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
Greg Claytonc8c10322016-12-13 18:25:19 +000016#include "llvm/DebugInfo/DWARF/DWARFContext.h"
Eugene Zelenkoe94042c2017-02-27 23:43:14 +000017#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.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 Rimar4671f2e2017-05-16 12:30:59 +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,
Adrian Prantl318d1192017-06-06 23:28:45 +000070 dwarf::Form Form, unsigned Indent,
71 DIDumpOptions DumpOpts) {
Greg Claytonc8c10322016-12-13 18:25:19 +000072 if (!Die.isValid())
73 return;
74 const char BaseIndent[] = " ";
75 OS << BaseIndent;
76 OS.indent(Indent+2);
77 auto attrString = AttributeString(Attr);
78 if (!attrString.empty())
79 WithColor(OS, syntax::Attribute) << attrString;
80 else
81 WithColor(OS, syntax::Attribute).get() << format("DW_AT_Unknown_%x", Attr);
Adrian Prantl318d1192017-06-06 23:28:45 +000082
83 if (!DumpOpts.Brief) {
84 auto formString = FormEncodingString(Form);
85 if (!formString.empty())
86 OS << " [" << formString << ']';
87 else
88 OS << format(" [DW_FORM_Unknown_%x]", Form);
89 }
90
Greg Claytonc8c10322016-12-13 18:25:19 +000091 DWARFUnit *U = Die.getDwarfUnit();
92 DWARFFormValue formValue(Form);
93
94 if (!formValue.extractValue(U->getDebugInfoExtractor(), OffsetPtr, U))
95 return;
96
97 OS << "\t(";
98
99 StringRef Name;
100 std::string File;
101 auto Color = syntax::Enumerator;
102 if (Attr == DW_AT_decl_file || Attr == DW_AT_call_file) {
103 Color = syntax::String;
104 if (const auto *LT = U->getContext().getLineTableForUnit(U))
105 if (LT->getFileNameByIndex(formValue.getAsUnsignedConstant().getValue(), U->getCompilationDir(), DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath, File)) {
106 File = '"' + File + '"';
107 Name = File;
108 }
109 } else if (Optional<uint64_t> Val = formValue.getAsUnsignedConstant())
110 Name = AttributeValueString(Attr, *Val);
111
112 if (!Name.empty())
113 WithColor(OS, Color) << Name;
114 else if (Attr == DW_AT_decl_line || Attr == DW_AT_call_line)
115 OS << *formValue.getAsUnsignedConstant();
116 else
117 formValue.dump(OS);
118
119 // We have dumped the attribute raw value. For some attributes
120 // having both the raw value and the pretty-printed value is
121 // interesting. These attributes are handled below.
122 if (Attr == DW_AT_specification || Attr == DW_AT_abstract_origin) {
123 if (const char *Name = Die.getAttributeValueAsReferencedDie(Attr).getName(DINameKind::LinkageName))
124 OS << " \"" << Name << '\"';
125 } else if (Attr == DW_AT_APPLE_property_attribute) {
126 if (Optional<uint64_t> OptVal = formValue.getAsUnsignedConstant())
127 dumpApplePropertyAttribute(OS, *OptVal);
128 } else if (Attr == DW_AT_ranges) {
129 dumpRanges(OS, Die.getAddressRanges(), U->getAddressByteSize(),
130 sizeof(BaseIndent)+Indent+4);
131 }
132
133 OS << ")\n";
134}
135
Greg Claytonc8c10322016-12-13 18:25:19 +0000136bool DWARFDie::isSubprogramDIE() const {
137 return getTag() == DW_TAG_subprogram;
138}
139
140bool DWARFDie::isSubroutineDIE() const {
141 auto Tag = getTag();
142 return Tag == DW_TAG_subprogram || Tag == DW_TAG_inlined_subroutine;
143}
144
Greg Clayton1cbf3fa2016-12-13 23:20:56 +0000145Optional<DWARFFormValue>
Greg Clayton97d22182017-01-13 21:08:18 +0000146DWARFDie::find(dwarf::Attribute Attr) const {
Greg Clayton1cbf3fa2016-12-13 23:20:56 +0000147 if (!isValid())
148 return None;
Greg Claytonc8c10322016-12-13 18:25:19 +0000149 auto AbbrevDecl = getAbbreviationDeclarationPtr();
150 if (AbbrevDecl)
Greg Clayton1cbf3fa2016-12-13 23:20:56 +0000151 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U);
152 return None;
Greg Claytonc8c10322016-12-13 18:25:19 +0000153}
154
Greg Clayton97d22182017-01-13 21:08:18 +0000155Optional<DWARFFormValue>
Greg Claytonc109bbe2017-01-13 22:32:12 +0000156DWARFDie::find(ArrayRef<dwarf::Attribute> Attrs) const {
157 if (!isValid())
158 return None;
159 auto AbbrevDecl = getAbbreviationDeclarationPtr();
160 if (AbbrevDecl) {
161 for (auto Attr : Attrs) {
162 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U))
163 return Value;
164 }
165 }
166 return None;
167}
168
169Optional<DWARFFormValue>
170DWARFDie::findRecursively(ArrayRef<dwarf::Attribute> Attrs) const {
171 if (!isValid())
172 return None;
David Blaikie1914c822017-03-13 21:46:37 +0000173 auto Die = *this;
174 if (auto Value = Die.find(Attrs))
Greg Claytonc109bbe2017-01-13 22:32:12 +0000175 return Value;
David Blaikie1914c822017-03-13 21:46:37 +0000176 if (auto D = Die.getAttributeValueAsReferencedDie(DW_AT_abstract_origin))
177 Die = D;
178 if (auto Value = Die.find(Attrs))
179 return Value;
180 if (auto D = Die.getAttributeValueAsReferencedDie(DW_AT_specification))
181 Die = D;
182 if (auto Value = Die.find(Attrs))
183 return Value;
Greg Claytonc109bbe2017-01-13 22:32:12 +0000184 return None;
185}
186
Greg Claytonc8c10322016-12-13 18:25:19 +0000187DWARFDie
188DWARFDie::getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000189 auto SpecRef = toReference(find(Attr));
Greg Clayton52fe1f62016-12-14 22:38:08 +0000190 if (SpecRef) {
191 auto SpecUnit = U->getUnitSection().getUnitForOffset(*SpecRef);
Greg Claytonc8c10322016-12-13 18:25:19 +0000192 if (SpecUnit)
Greg Clayton52fe1f62016-12-14 22:38:08 +0000193 return SpecUnit->getDIEForOffset(*SpecRef);
Greg Claytonc8c10322016-12-13 18:25:19 +0000194 }
195 return DWARFDie();
196}
197
Greg Clayton52fe1f62016-12-14 22:38:08 +0000198Optional<uint64_t>
199DWARFDie::getRangesBaseAttribute() const {
Greg Claytonc109bbe2017-01-13 22:32:12 +0000200 return toSectionOffset(find({DW_AT_rnglists_base, DW_AT_GNU_ranges_base}));
Greg Claytonc8c10322016-12-13 18:25:19 +0000201}
202
Greg Clayton2520c9e2016-12-19 20:36:41 +0000203Optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000204 if (auto FormValue = find(DW_AT_high_pc)) {
Greg Clayton2520c9e2016-12-19 20:36:41 +0000205 if (auto Address = FormValue->getAsAddress()) {
206 // High PC is an address.
207 return Address;
208 }
209 if (auto Offset = FormValue->getAsUnsignedConstant()) {
210 // High PC is an offset from LowPC.
211 return LowPC + *Offset;
212 }
213 }
214 return None;
215}
Greg Clayton52fe1f62016-12-14 22:38:08 +0000216
George Rimara25d3292017-05-27 18:10:23 +0000217bool DWARFDie::getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC,
218 uint64_t &SectionIndex) const {
219 auto F = find(DW_AT_low_pc);
220 auto LowPcAddr = toAddress(F);
Greg Clayton2520c9e2016-12-19 20:36:41 +0000221 if (!LowPcAddr)
Greg Clayton52fe1f62016-12-14 22:38:08 +0000222 return false;
Greg Clayton2520c9e2016-12-19 20:36:41 +0000223 if (auto HighPcAddr = getHighPC(*LowPcAddr)) {
224 LowPC = *LowPcAddr;
225 HighPC = *HighPcAddr;
George Rimara25d3292017-05-27 18:10:23 +0000226 SectionIndex = F->getSectionIndex();
Greg Clayton2520c9e2016-12-19 20:36:41 +0000227 return true;
228 }
229 return false;
Greg Claytonc8c10322016-12-13 18:25:19 +0000230}
231
232DWARFAddressRangesVector
233DWARFDie::getAddressRanges() const {
234 if (isNULL())
235 return DWARFAddressRangesVector();
236 // Single range specified by low/high PC.
George Rimara25d3292017-05-27 18:10:23 +0000237 uint64_t LowPC, HighPC, Index;
238 if (getLowAndHighPC(LowPC, HighPC, Index))
239 return {{LowPC, HighPC, Index}};
George Rimar4671f2e2017-05-16 12:30:59 +0000240
Greg Claytonc8c10322016-12-13 18:25:19 +0000241 // Multiple ranges from .debug_ranges section.
Greg Clayton97d22182017-01-13 21:08:18 +0000242 auto RangesOffset = toSectionOffset(find(DW_AT_ranges));
Greg Clayton52fe1f62016-12-14 22:38:08 +0000243 if (RangesOffset) {
Greg Claytonc8c10322016-12-13 18:25:19 +0000244 DWARFDebugRangeList RangeList;
Greg Clayton52fe1f62016-12-14 22:38:08 +0000245 if (U->extractRangeList(*RangesOffset, RangeList))
Greg Claytonc8c10322016-12-13 18:25:19 +0000246 return RangeList.getAbsoluteRanges(U->getBaseAddress());
247 }
248 return DWARFAddressRangesVector();
249}
250
251void
252DWARFDie::collectChildrenAddressRanges(DWARFAddressRangesVector& Ranges) const {
253 if (isNULL())
254 return;
255 if (isSubprogramDIE()) {
256 const auto &DIERanges = getAddressRanges();
257 Ranges.insert(Ranges.end(), DIERanges.begin(), DIERanges.end());
258 }
259
Greg Clayton93e4fe82017-01-05 23:47:37 +0000260 for (auto Child: children())
Greg Claytonc8c10322016-12-13 18:25:19 +0000261 Child.collectChildrenAddressRanges(Ranges);
Greg Claytonc8c10322016-12-13 18:25:19 +0000262}
263
264bool DWARFDie::addressRangeContainsAddress(const uint64_t Address) const {
265 for (const auto& R : getAddressRanges()) {
George Rimar4671f2e2017-05-16 12:30:59 +0000266 if (R.LowPC <= Address && Address < R.HighPC)
Greg Claytonc8c10322016-12-13 18:25:19 +0000267 return true;
268 }
269 return false;
270}
271
272const char *
273DWARFDie::getSubroutineName(DINameKind Kind) const {
274 if (!isSubroutineDIE())
275 return nullptr;
276 return getName(Kind);
277}
278
279const char *
280DWARFDie::getName(DINameKind Kind) const {
281 if (!isValid() || Kind == DINameKind::None)
282 return nullptr;
Greg Claytonc8c10322016-12-13 18:25:19 +0000283 // Try to get mangled name only if it was asked for.
284 if (Kind == DINameKind::LinkageName) {
Greg Claytonc109bbe2017-01-13 22:32:12 +0000285 if (auto Name = dwarf::toString(findRecursively({DW_AT_MIPS_linkage_name,
286 DW_AT_linkage_name}), nullptr))
Greg Clayton97d22182017-01-13 21:08:18 +0000287 return Name;
Greg Claytonc8c10322016-12-13 18:25:19 +0000288 }
Greg Clayton97d22182017-01-13 21:08:18 +0000289 if (auto Name = dwarf::toString(findRecursively(DW_AT_name), nullptr))
290 return Name;
Greg Claytonc8c10322016-12-13 18:25:19 +0000291 return nullptr;
292}
293
David Blaikieefc4eba2017-02-06 20:19:02 +0000294uint64_t DWARFDie::getDeclLine() const {
295 return toUnsigned(findRecursively(DW_AT_decl_line), 0);
296}
297
Greg Claytonc8c10322016-12-13 18:25:19 +0000298void DWARFDie::getCallerFrame(uint32_t &CallFile, uint32_t &CallLine,
Dehao Chenef700d52017-04-17 20:10:39 +0000299 uint32_t &CallColumn,
300 uint32_t &CallDiscriminator) const {
Greg Clayton97d22182017-01-13 21:08:18 +0000301 CallFile = toUnsigned(find(DW_AT_call_file), 0);
302 CallLine = toUnsigned(find(DW_AT_call_line), 0);
303 CallColumn = toUnsigned(find(DW_AT_call_column), 0);
Dehao Chenef700d52017-04-17 20:10:39 +0000304 CallDiscriminator = toUnsigned(find(DW_AT_GNU_discriminator), 0);
Greg Claytonc8c10322016-12-13 18:25:19 +0000305}
306
Adrian Prantl318d1192017-06-06 23:28:45 +0000307void DWARFDie::dump(raw_ostream &OS, unsigned RecurseDepth, unsigned Indent,
308 DIDumpOptions DumpOpts) const {
Greg Claytonc8c10322016-12-13 18:25:19 +0000309 if (!isValid())
310 return;
311 DataExtractor debug_info_data = U->getDebugInfoExtractor();
312 const uint32_t Offset = getOffset();
313 uint32_t offset = Offset;
314
315 if (debug_info_data.isValidOffset(offset)) {
316 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
317 WithColor(OS, syntax::Address).get() << format("\n0x%8.8x: ", Offset);
318
319 if (abbrCode) {
320 auto AbbrevDecl = getAbbreviationDeclarationPtr();
321 if (AbbrevDecl) {
322 auto tagString = TagString(getTag());
323 if (!tagString.empty())
324 WithColor(OS, syntax::Tag).get().indent(Indent) << tagString;
325 else
326 WithColor(OS, syntax::Tag).get().indent(Indent)
327 << format("DW_TAG_Unknown_%x", getTag());
Adrian Prantl318d1192017-06-06 23:28:45 +0000328
329 if (!DumpOpts.Brief)
330 OS << format(" [%u] %c", abbrCode,
331 AbbrevDecl->hasChildren() ? '*' : ' ');
332 OS << '\n';
333
Greg Claytonc8c10322016-12-13 18:25:19 +0000334 // Dump all data in the DIE for the attributes.
335 for (const auto &AttrSpec : AbbrevDecl->attributes()) {
Victor Leschuk96d99812017-02-25 13:15:57 +0000336 if (AttrSpec.Form == DW_FORM_implicit_const) {
337 // We are dumping .debug_info section ,
338 // implicit_const attribute values are not really stored here,
339 // but in .debug_abbrev section. So we just skip such attrs.
340 continue;
341 }
Greg Claytonc8c10322016-12-13 18:25:19 +0000342 dumpAttribute(OS, *this, &offset, AttrSpec.Attr, AttrSpec.Form,
Adrian Prantl318d1192017-06-06 23:28:45 +0000343 Indent, DumpOpts);
Greg Claytonc8c10322016-12-13 18:25:19 +0000344 }
345
346 DWARFDie child = getFirstChild();
347 if (RecurseDepth > 0 && child) {
348 while (child) {
Adrian Prantl318d1192017-06-06 23:28:45 +0000349 child.dump(OS, RecurseDepth-1, Indent+2, DumpOpts);
Greg Claytonc8c10322016-12-13 18:25:19 +0000350 child = child.getSibling();
351 }
352 }
353 } else {
354 OS << "Abbreviation code not found in 'debug_abbrev' class for code: "
355 << abbrCode << '\n';
356 }
357 } else {
358 OS.indent(Indent) << "NULL\n";
359 }
360 }
361}
362
Greg Clayton78a07bf2016-12-21 21:37:06 +0000363DWARFDie DWARFDie::getParent() const {
364 if (isValid())
365 return U->getParent(Die);
366 return DWARFDie();
367}
368
369DWARFDie DWARFDie::getSibling() const {
370 if (isValid())
371 return U->getSibling(Die);
372 return DWARFDie();
373}
Greg Clayton0e62ee72017-01-13 00:13:42 +0000374
375iterator_range<DWARFDie::attribute_iterator>
376DWARFDie::attributes() const {
377 return make_range(attribute_iterator(*this, false),
378 attribute_iterator(*this, true));
379}
380
381DWARFDie::attribute_iterator::attribute_iterator(DWARFDie D, bool End) :
382 Die(D), AttrValue(0), Index(0) {
383 auto AbbrDecl = Die.getAbbreviationDeclarationPtr();
384 assert(AbbrDecl && "Must have abbreviation declaration");
385 if (End) {
386 // This is the end iterator so we set the index to the attribute count.
387 Index = AbbrDecl->getNumAttributes();
388 } else {
389 // This is the begin iterator so we extract the value for this->Index.
390 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize();
391 updateForIndex(*AbbrDecl, 0);
392 }
393}
394
395void DWARFDie::attribute_iterator::updateForIndex(
396 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) {
397 Index = I;
398 // AbbrDecl must be valid befor calling this function.
399 auto NumAttrs = AbbrDecl.getNumAttributes();
400 if (Index < NumAttrs) {
401 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index);
402 // Add the previous byte size of any previous attribute value.
403 AttrValue.Offset += AttrValue.ByteSize;
404 AttrValue.Value.setForm(AbbrDecl.getFormByIndex(Index));
405 uint32_t ParseOffset = AttrValue.Offset;
406 auto U = Die.getDwarfUnit();
407 assert(U && "Die must have valid DWARF unit");
408 bool b = AttrValue.Value.extractValue(U->getDebugInfoExtractor(),
409 &ParseOffset, U);
410 (void)b;
411 assert(b && "extractValue cannot fail on fully parsed DWARF");
412 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
413 } else {
414 assert(Index == NumAttrs && "Indexes should be [0, NumAttrs) only");
415 AttrValue.clear();
416 }
417}
418
419DWARFDie::attribute_iterator &DWARFDie::attribute_iterator::operator++() {
420 if (auto AbbrDecl = Die.getAbbreviationDeclarationPtr())
421 updateForIndex(*AbbrDecl, Index + 1);
422 return *this;
423}