LLVM 22.0.0git
DWARFDie.cpp
Go to the documentation of this file.
1//===- DWARFDie.cpp -------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
11#include "llvm/ADT/SmallSet.h"
12#include "llvm/ADT/StringRef.h"
26#include "llvm/Support/Format.h"
30#include <cassert>
31#include <cinttypes>
32#include <cstdint>
33#include <string>
34
35using namespace llvm;
36using namespace dwarf;
37using namespace object;
38
40 OS << " (";
41 do {
42 uint64_t Shift = llvm::countr_zero(Val);
43 assert(Shift < 64 && "undefined behavior");
44 uint64_t Bit = 1ULL << Shift;
45 auto PropName = ApplePropertyString(Bit);
46 if (!PropName.empty())
47 OS << PropName;
48 else
49 OS << format("DW_APPLE_PROPERTY_0x%" PRIx64, Bit);
50 if (!(Val ^= Bit))
51 break;
52 OS << ", ";
53 } while (true);
54 OS << ")";
55}
56
57static void dumpRanges(const DWARFObject &Obj, raw_ostream &OS,
58 const DWARFAddressRangesVector &Ranges,
59 unsigned AddressSize, unsigned Indent,
60 const DIDumpOptions &DumpOpts) {
61 if (!DumpOpts.ShowAddresses)
62 return;
63
64 for (const DWARFAddressRange &R : Ranges) {
65 OS << '\n';
66 OS.indent(Indent);
67 R.dump(OS, AddressSize, DumpOpts, &Obj);
68 }
69}
70
71static void dumpLocationList(raw_ostream &OS, const DWARFFormValue &FormValue,
72 DWARFUnit *U, unsigned Indent,
73 DIDumpOptions DumpOpts) {
75 "bad FORM for location list");
76 DWARFContext &Ctx = U->getContext();
77 uint64_t Offset = *FormValue.getAsSectionOffset();
78
79 if (FormValue.getForm() == DW_FORM_loclistx) {
80 FormValue.dump(OS, DumpOpts);
81
82 if (auto LoclistOffset = U->getLoclistOffset(Offset))
83 Offset = *LoclistOffset;
84 else
85 return;
86 }
87 U->getLocationTable().dumpLocationList(
88 &Offset, OS, U->getBaseAddress(), Ctx.getDWARFObj(), U, DumpOpts, Indent);
89}
90
91static void dumpLocationExpr(raw_ostream &OS, const DWARFFormValue &FormValue,
92 DWARFUnit *U, unsigned Indent,
93 DIDumpOptions DumpOpts) {
96 "bad FORM for location expression");
97 DWARFContext &Ctx = U->getContext();
98 ArrayRef<uint8_t> Expr = *FormValue.getAsBlock();
99 DataExtractor Data(StringRef((const char *)Expr.data(), Expr.size()),
100 Ctx.isLittleEndian(), 0);
101 DWARFExpression DE(Data, U->getAddressByteSize(), U->getFormParams().Format);
102 printDwarfExpression(&DE, OS, DumpOpts, U);
103}
104
106 return D.getAttributeValueAsReferencedDie(F).resolveTypeUnitReference();
107}
108
109static llvm::StringRef
111 const DWARFDie &Die) {
112 if (AttrValue.Attr != DW_AT_language_version)
113 return {};
114
115 auto NameForm = Die.find(DW_AT_language_name);
116 if (!NameForm)
117 return {};
118
119 auto LName = NameForm->getAsUnsignedConstant();
120 if (!LName)
121 return {};
122
123 auto LVersion = AttrValue.Value.getAsUnsignedConstant();
124 if (!LVersion)
125 return {};
126
128 static_cast<SourceLanguageName>(*LName), *LVersion);
129}
130
133 if (!PropDIE)
134 return llvm::createStringError("invalid DIE");
135
136 if (PropDIE.getTag() != DW_TAG_APPLE_property)
137 return llvm::createStringError("not referencing a DW_TAG_APPLE_property");
138
139 auto PropNameForm = PropDIE.find(DW_AT_APPLE_property_name);
140 if (!PropNameForm)
141 return "";
142
143 auto NameOrErr = PropNameForm->getAsCString();
144 if (!NameOrErr)
145 return NameOrErr.takeError();
146
147 return *NameOrErr;
148}
149
150static void dumpAttribute(raw_ostream &OS, const DWARFDie &Die,
151 const DWARFAttribute &AttrValue, unsigned Indent,
152 DIDumpOptions DumpOpts) {
153 if (!Die.isValid())
154 return;
155 const char BaseIndent[] = " ";
156 OS << BaseIndent;
157 OS.indent(Indent + 2);
158 dwarf::Attribute Attr = AttrValue.Attr;
159 WithColor(OS, HighlightColor::Attribute) << formatv("{0}", Attr);
160
161 dwarf::Form Form = AttrValue.Value.getForm();
162 if (DumpOpts.Verbose || DumpOpts.ShowForm)
163 OS << formatv(" [{0}]", Form);
164
165 DWARFUnit *U = Die.getDwarfUnit();
166 const DWARFFormValue &FormValue = AttrValue.Value;
167
168 OS << "\t(";
169
170 StringRef Name;
171 std::string File;
172 auto Color = HighlightColor::Enumerator;
173 if (Attr == DW_AT_decl_file || Attr == DW_AT_call_file) {
175 if (const auto *LT = U->getContext().getLineTableForUnit(U)) {
176 if (std::optional<uint64_t> Val = FormValue.getAsUnsignedConstant()) {
177 if (LT->getFileNameByIndex(
178 *Val, U->getCompilationDir(),
180 File)) {
181 File = '"' + File + '"';
182 Name = File;
183 }
184 }
185 }
186 } else if (std::optional<uint64_t> Val = FormValue.getAsUnsignedConstant())
187 Name = AttributeValueString(Attr, *Val);
188
189 auto DumpUnsignedConstant = [&OS,
190 &DumpOpts](const DWARFFormValue &FormValue) {
191 if (std::optional<uint64_t> Val = FormValue.getAsUnsignedConstant())
192 OS << *Val;
193 else
194 FormValue.dump(OS, DumpOpts);
195 };
196
197 llvm::StringRef PrettyVersionName =
198 prettyLanguageVersionString(AttrValue, Die);
199 bool ShouldDumpRawLanguageVersion =
200 Attr == DW_AT_language_version &&
201 (DumpOpts.Verbose || PrettyVersionName.empty());
202
203 if (!Name.empty())
204 WithColor(OS, Color) << Name;
205 else if (Attr == DW_AT_decl_line || Attr == DW_AT_decl_column ||
206 Attr == DW_AT_call_line || Attr == DW_AT_call_column) {
207 DumpUnsignedConstant(FormValue);
208 } else if (Attr == DW_AT_language_version) {
209 if (ShouldDumpRawLanguageVersion)
210 DumpUnsignedConstant(FormValue);
211 } else if (Attr == DW_AT_low_pc &&
212 (FormValue.getAsAddress() ==
213 dwarf::computeTombstoneAddress(U->getAddressByteSize()))) {
214 if (DumpOpts.Verbose) {
215 FormValue.dump(OS, DumpOpts);
216 OS << " (";
217 }
218 OS << "dead code";
219 if (DumpOpts.Verbose)
220 OS << ')';
221 } else if (Attr == DW_AT_high_pc && !DumpOpts.ShowForm && !DumpOpts.Verbose &&
222 FormValue.getAsUnsignedConstant()) {
223 if (DumpOpts.ShowAddresses) {
224 // Print the actual address rather than the offset.
225 uint64_t LowPC, HighPC, Index;
226 if (Die.getLowAndHighPC(LowPC, HighPC, Index))
227 DWARFFormValue::dumpAddress(OS, U->getAddressByteSize(), HighPC);
228 else
229 FormValue.dump(OS, DumpOpts);
230 }
231 } else if (DWARFAttribute::mayHaveLocationList(Attr) &&
233 dumpLocationList(OS, FormValue, U, sizeof(BaseIndent) + Indent + 4,
234 DumpOpts);
235 else if (FormValue.isFormClass(DWARFFormValue::FC_Exprloc) ||
238 dumpLocationExpr(OS, FormValue, U, sizeof(BaseIndent) + Indent + 4,
239 DumpOpts);
240 else
241 FormValue.dump(OS, DumpOpts);
242
243 std::string Space = DumpOpts.ShowAddresses ? " " : "";
244
245 // We have dumped the attribute raw value. For some attributes
246 // having both the raw value and the pretty-printed value is
247 // interesting. These attributes are handled below.
248 if (Attr == DW_AT_specification || Attr == DW_AT_abstract_origin ||
249 Attr == DW_AT_call_origin) {
250 if (const char *Name =
253 OS << Space << "\"" << Name << '\"';
254 } else if (Attr == DW_AT_APPLE_property) {
255 auto PropDIE = Die.getAttributeValueAsReferencedDie(FormValue);
256 if (auto PropNameOrErr = getApplePropertyName(PropDIE))
257 OS << Space << "\"" << *PropNameOrErr << '\"';
258 else
261 llvm::formatv("decoding DW_AT_APPLE_property_name: {}",
262 toString(PropNameOrErr.takeError()))));
263 } else if (Attr == DW_AT_type || Attr == DW_AT_containing_type) {
264 DWARFDie D = resolveReferencedType(Die, FormValue);
265 if (D && !D.isNULL()) {
266 OS << Space << "\"";
268 OS << '"';
269 }
270 } else if (Attr == DW_AT_APPLE_property_attribute) {
271 if (std::optional<uint64_t> OptVal = FormValue.getAsUnsignedConstant())
272 dumpApplePropertyAttribute(OS, *OptVal);
273 } else if (Attr == DW_AT_ranges) {
274 const DWARFObject &Obj = Die.getDwarfUnit()->getContext().getDWARFObj();
275 // For DW_FORM_rnglistx we need to dump the offset separately, since
276 // we have only dumped the index so far.
277 if (FormValue.getForm() == DW_FORM_rnglistx)
278 if (auto RangeListOffset =
279 U->getRnglistOffset(*FormValue.getAsSectionOffset())) {
281 dwarf::DW_FORM_sec_offset, *RangeListOffset);
282 FV.dump(OS, DumpOpts);
283 }
284 if (auto RangesOrError = Die.getAddressRanges())
285 dumpRanges(Obj, OS, RangesOrError.get(), U->getAddressByteSize(),
286 sizeof(BaseIndent) + Indent + 4, DumpOpts);
287 else
289 errc::invalid_argument, "decoding address ranges: %s",
290 toString(RangesOrError.takeError()).c_str()));
291 } else if (Attr == DW_AT_language_version) {
292 if (!PrettyVersionName.empty())
293 WithColor(OS, Color) << (ShouldDumpRawLanguageVersion ? " " : "")
294 << PrettyVersionName;
295 }
296
297 OS << ")\n";
298}
299
301 std::string *OriginalFullName) const {
302 const char *NamePtr = getShortName();
303 if (!NamePtr)
304 return;
305 if (getTag() == DW_TAG_GNU_template_parameter_pack)
306 return;
307 dumpTypeUnqualifiedName(*this, OS, OriginalFullName);
308}
309
310bool DWARFDie::isSubprogramDIE() const { return getTag() == DW_TAG_subprogram; }
311
313 auto Tag = getTag();
314 return Tag == DW_TAG_subprogram || Tag == DW_TAG_inlined_subroutine;
315}
316
317std::optional<DWARFFormValue> DWARFDie::find(dwarf::Attribute Attr) const {
318 if (!isValid())
319 return std::nullopt;
320 auto AbbrevDecl = getAbbreviationDeclarationPtr();
321 if (AbbrevDecl)
322 return AbbrevDecl->getAttributeValue(getOffset(), Attr, *U);
323 return std::nullopt;
324}
325
326std::optional<DWARFFormValue>
328 if (!isValid())
329 return std::nullopt;
330 auto AbbrevDecl = getAbbreviationDeclarationPtr();
331 if (AbbrevDecl) {
332 for (auto Attr : Attrs) {
333 if (auto Value = AbbrevDecl->getAttributeValue(getOffset(), Attr, *U))
334 return Value;
335 }
336 }
337 return std::nullopt;
338}
339
340std::optional<DWARFFormValue>
343 Worklist.push_back(*this);
344
345 // Keep track if DIEs already seen to prevent infinite recursion.
346 // Empirically we rarely see a depth of more than 3 when dealing with valid
347 // DWARF. This corresponds to following the DW_AT_abstract_origin and
348 // DW_AT_specification just once.
350 Seen.insert(*this);
351
352 while (!Worklist.empty()) {
353 DWARFDie Die = Worklist.pop_back_val();
354
355 if (!Die.isValid())
356 continue;
357
358 if (auto Value = Die.find(Attrs))
359 return Value;
360
361 for (dwarf::Attribute Attr :
362 {DW_AT_abstract_origin, DW_AT_specification, DW_AT_signature}) {
363 if (auto D = Die.getAttributeValueAsReferencedDie(Attr))
364 if (Seen.insert(D).second)
365 Worklist.push_back(D);
366 }
367 }
368
369 return std::nullopt;
370}
371
374 if (std::optional<DWARFFormValue> F = find(Attr))
376 return DWARFDie();
377}
378
381 DWARFDie Result;
382 if (std::optional<uint64_t> Offset = V.getAsRelativeReference()) {
383 Result = const_cast<DWARFUnit *>(V.getUnit())
384 ->getDIEForOffset(V.getUnit()->getOffset() + *Offset);
385 } else if (Offset = V.getAsDebugInfoReference(); Offset) {
386 if (DWARFUnit *SpecUnit = U->getUnitVector().getUnitForOffset(*Offset))
387 Result = SpecUnit->getDIEForOffset(*Offset);
388 } else if (std::optional<uint64_t> Sig = V.getAsSignatureReference()) {
389 if (DWARFTypeUnit *TU =
390 U->getContext().getTypeUnitForHash(*Sig, U->isDWOUnit()))
391 Result = TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset());
392 }
393 return Result;
394}
395
397 if (auto Attr = find(DW_AT_signature)) {
398 if (std::optional<uint64_t> Sig = Attr->getAsReferenceUVal()) {
399 if (DWARFTypeUnit *TU =
400 U->getContext().getTypeUnitForHash(*Sig, U->isDWOUnit()))
401 return TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset());
402 }
403 }
404 return *this;
405}
406
413
414std::optional<uint64_t> DWARFDie::getRangesBaseAttribute() const {
415 return toSectionOffset(find({DW_AT_rnglists_base, DW_AT_GNU_ranges_base}));
416}
417
418std::optional<uint64_t> DWARFDie::getLocBaseAttribute() const {
419 return toSectionOffset(find(DW_AT_loclists_base));
420}
421
422std::optional<uint64_t> DWARFDie::getHighPC(uint64_t LowPC) const {
423 uint64_t Tombstone = dwarf::computeTombstoneAddress(U->getAddressByteSize());
424 if (LowPC == Tombstone)
425 return std::nullopt;
426 if (auto FormValue = find(DW_AT_high_pc)) {
427 if (auto Address = FormValue->getAsAddress()) {
428 // High PC is an address.
429 return Address;
430 }
431 if (auto Offset = FormValue->getAsUnsignedConstant()) {
432 // High PC is an offset from LowPC.
433 return LowPC + *Offset;
434 }
435 }
436 return std::nullopt;
437}
438
440 uint64_t &SectionIndex) const {
441 auto F = find(DW_AT_low_pc);
442 auto LowPcAddr = toSectionedAddress(F);
443 if (!LowPcAddr)
444 return false;
445 if (auto HighPcAddr = getHighPC(LowPcAddr->Address)) {
446 LowPC = LowPcAddr->Address;
447 HighPC = *HighPcAddr;
448 SectionIndex = LowPcAddr->SectionIndex;
449 return true;
450 }
451 return false;
452}
453
455 if (isNULL())
457 // Single range specified by low/high PC.
458 uint64_t LowPC, HighPC, Index;
459 if (getLowAndHighPC(LowPC, HighPC, Index))
460 return DWARFAddressRangesVector{{LowPC, HighPC, Index}};
461
462 std::optional<DWARFFormValue> Value = find(DW_AT_ranges);
463 if (Value) {
464 if (Value->getForm() == DW_FORM_rnglistx)
465 return U->findRnglistFromIndex(*Value->getAsSectionOffset());
466 return U->findRnglistFromOffset(*Value->getAsSectionOffset());
467 }
469}
470
472 auto RangesOrError = getAddressRanges();
473 if (!RangesOrError) {
474 llvm::consumeError(RangesOrError.takeError());
475 return false;
476 }
477
478 for (const auto &R : RangesOrError.get())
479 if (R.LowPC <= Address && Address < R.HighPC)
480 return true;
481 return false;
482}
483
484std::optional<uint64_t> DWARFDie::getLanguage() const {
485 if (isValid()) {
486 if (std::optional<DWARFFormValue> LV =
487 U->getUnitDIE().find(dwarf::DW_AT_language))
488 return LV->getAsUnsignedConstant();
489 }
490 return std::nullopt;
491}
492
495 std::optional<DWARFFormValue> Location = find(Attr);
496 if (!Location)
499
500 if (std::optional<uint64_t> Off = Location->getAsSectionOffset()) {
501 uint64_t Offset = *Off;
502
503 if (Location->getForm() == DW_FORM_loclistx) {
504 if (auto LoclistOffset = U->getLoclistOffset(Offset))
505 Offset = *LoclistOffset;
506 else
508 "Loclist table not found");
509 }
510 return U->findLoclistFromOffset(Offset);
511 }
512
513 if (std::optional<ArrayRef<uint8_t>> Expr = Location->getAsBlock()) {
515 DWARFLocationExpression{std::nullopt, to_vector<4>(*Expr)}};
516 }
517
518 return createStringError(
519 inconvertibleErrorCode(), "Unsupported %s encoding: %s",
521 dwarf::FormEncodingString(Location->getForm()).data());
522}
523
525 if (!isSubroutineDIE())
526 return nullptr;
527 return getName(Kind);
528}
529
531 if (!isValid() || Kind == DINameKind::None)
532 return nullptr;
533 // Try to get mangled name only if it was asked for.
535 if (auto Name = getLinkageName())
536 return Name;
537 }
538 return getShortName();
539}
540
541const char *DWARFDie::getShortName() const {
542 if (!isValid())
543 return nullptr;
544
545 return dwarf::toString(findRecursively(dwarf::DW_AT_name), nullptr);
546}
547
548const char *DWARFDie::getLinkageName() const {
549 if (!isValid())
550 return nullptr;
551
552 return dwarf::toString(findRecursively({dwarf::DW_AT_MIPS_linkage_name,
553 dwarf::DW_AT_linkage_name}),
554 nullptr);
555}
556
558 return toUnsigned(findRecursively(DW_AT_decl_line), 0);
559}
560
561std::string
563 if (auto FormValue = findRecursively(DW_AT_decl_file))
564 if (auto OptString = FormValue->getAsFile(Kind))
565 return *OptString;
566 return {};
567}
568
570 uint32_t &CallColumn,
571 uint32_t &CallDiscriminator) const {
572 CallFile = toUnsigned(find(DW_AT_call_file), 0);
573 CallLine = toUnsigned(find(DW_AT_call_line), 0);
574 CallColumn = toUnsigned(find(DW_AT_call_column), 0);
575 CallDiscriminator = toUnsigned(find(DW_AT_GNU_discriminator), 0);
576}
577
578static std::optional<uint64_t>
581 // Cycle detected?
582 if (!Visited.insert(Die.getDebugInfoEntry()).second)
583 return {};
584 if (auto SizeAttr = Die.find(DW_AT_byte_size))
585 if (std::optional<uint64_t> Size = SizeAttr->getAsUnsignedConstant())
586 return Size;
587
588 switch (Die.getTag()) {
589 case DW_TAG_pointer_type:
590 case DW_TAG_reference_type:
591 case DW_TAG_rvalue_reference_type:
592 return PointerSize;
593 case DW_TAG_ptr_to_member_type: {
595 if (BaseType.getTag() == DW_TAG_subroutine_type)
596 return 2 * PointerSize;
597 return PointerSize;
598 }
599 case DW_TAG_const_type:
600 case DW_TAG_immutable_type:
601 case DW_TAG_volatile_type:
602 case DW_TAG_restrict_type:
603 case DW_TAG_template_alias:
604 case DW_TAG_typedef: {
606 return getTypeSizeImpl(BaseType, PointerSize, Visited);
607 break;
608 }
609 case DW_TAG_array_type: {
611 if (!BaseType)
612 return std::nullopt;
613 std::optional<uint64_t> BaseSize =
614 getTypeSizeImpl(BaseType, PointerSize, Visited);
615 if (!BaseSize)
616 return std::nullopt;
617 uint64_t Size = *BaseSize;
618 for (DWARFDie Child : Die) {
619 if (Child.getTag() != DW_TAG_subrange_type)
620 continue;
621
622 if (auto ElemCountAttr = Child.find(DW_AT_count))
623 if (std::optional<uint64_t> ElemCount =
624 ElemCountAttr->getAsUnsignedConstant())
625 Size *= *ElemCount;
626 if (auto UpperBoundAttr = Child.find(DW_AT_upper_bound))
627 if (std::optional<int64_t> UpperBound =
628 UpperBoundAttr->getAsSignedConstant()) {
629 int64_t LowerBound = 0;
630 if (auto LowerBoundAttr = Child.find(DW_AT_lower_bound))
631 LowerBound = LowerBoundAttr->getAsSignedConstant().value_or(0);
632 Size *= *UpperBound - LowerBound + 1;
633 }
634 }
635 return Size;
636 }
637 default:
639 return getTypeSizeImpl(BaseType, PointerSize, Visited);
640 break;
641 }
642 return std::nullopt;
643}
644
645std::optional<uint64_t> DWARFDie::getTypeSize(uint64_t PointerSize) {
647 return getTypeSizeImpl(*this, PointerSize, Visited);
648}
649
650/// Helper to dump a DIE with all of its parents, but no siblings.
651static unsigned dumpParentChain(DWARFDie Die, raw_ostream &OS, unsigned Indent,
652 DIDumpOptions DumpOpts, unsigned Depth = 0) {
653 if (!Die)
654 return Indent;
655 if (DumpOpts.ParentRecurseDepth > 0 && Depth >= DumpOpts.ParentRecurseDepth)
656 return Indent;
657 Indent = dumpParentChain(Die.getParent(), OS, Indent, DumpOpts, Depth + 1);
658 Die.dump(OS, Indent, DumpOpts);
659 return Indent + 2;
660}
661
662void DWARFDie::dump(raw_ostream &OS, unsigned Indent,
663 DIDumpOptions DumpOpts) const {
664 if (!isValid())
665 return;
666 DWARFDataExtractor debug_info_data = U->getDebugInfoExtractor();
667 const uint64_t Offset = getOffset();
668 uint64_t offset = Offset;
669 if (DumpOpts.ShowParents) {
670 DIDumpOptions ParentDumpOpts = DumpOpts;
671 ParentDumpOpts.ShowParents = false;
672 ParentDumpOpts.ShowChildren = false;
673 Indent = dumpParentChain(getParent(), OS, Indent, ParentDumpOpts);
674 }
675
676 if (debug_info_data.isValidOffset(offset)) {
677 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
678 if (DumpOpts.ShowAddresses)
680 << format("\n0x%8.8" PRIx64 ": ", Offset);
681
682 if (abbrCode) {
683 auto AbbrevDecl = getAbbreviationDeclarationPtr();
684 if (AbbrevDecl) {
686 << formatv("{0}", getTag());
687 if (DumpOpts.Verbose) {
688 OS << format(" [%u] %c", abbrCode,
689 AbbrevDecl->hasChildren() ? '*' : ' ');
690 if (std::optional<uint32_t> ParentIdx = Die->getParentIdx())
691 OS << format(" (0x%8.8" PRIx64 ")",
692 U->getDIEAtIndex(*ParentIdx).getOffset());
693 }
694 OS << '\n';
695
696 // Dump all data in the DIE for the attributes.
697 for (const DWARFAttribute &AttrValue : attributes())
698 dumpAttribute(OS, *this, AttrValue, Indent, DumpOpts);
699
700 if (DumpOpts.ShowChildren && DumpOpts.ChildRecurseDepth > 0) {
701 DWARFDie Child = getFirstChild();
702 DumpOpts.ChildRecurseDepth--;
703 DIDumpOptions ChildDumpOpts = DumpOpts;
704 ChildDumpOpts.ShowParents = false;
705 while (Child) {
706 if (DumpOpts.FilterChildTag.empty() ||
707 llvm::is_contained(DumpOpts.FilterChildTag, Child.getTag()))
708 Child.dump(OS, Indent + 2, ChildDumpOpts);
709 Child = Child.getSibling();
710 }
711 }
712 } else {
713 OS << "Abbreviation code not found in 'debug_abbrev' class for code: "
714 << abbrCode << '\n';
715 }
716 } else {
717 OS.indent(Indent) << "NULL\n";
718 }
719 }
720}
721
723
725 if (isValid())
726 return U->getParent(Die);
727 return DWARFDie();
728}
729
731 if (isValid())
732 return U->getSibling(Die);
733 return DWARFDie();
734}
735
737 if (isValid())
738 return U->getPreviousSibling(Die);
739 return DWARFDie();
740}
741
743 if (isValid())
744 return U->getFirstChild(Die);
745 return DWARFDie();
746}
747
749 if (isValid())
750 return U->getLastChild(Die);
751 return DWARFDie();
752}
753
758
760 : Die(D), Index(0) {
761 auto AbbrDecl = Die.getAbbreviationDeclarationPtr();
762 assert(AbbrDecl && "Must have abbreviation declaration");
763 if (End) {
764 // This is the end iterator so we set the index to the attribute count.
765 Index = AbbrDecl->getNumAttributes();
766 } else {
767 // This is the begin iterator so we extract the value for this->Index.
768 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize();
769 updateForIndex(*AbbrDecl, 0);
770 }
771}
772
773void DWARFDie::attribute_iterator::updateForIndex(
774 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) {
775 Index = I;
776 // AbbrDecl must be valid before calling this function.
777 auto NumAttrs = AbbrDecl.getNumAttributes();
778 if (Index < NumAttrs) {
779 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index);
780 // Add the previous byte size of any previous attribute value.
781 AttrValue.Offset += AttrValue.ByteSize;
782 uint64_t ParseOffset = AttrValue.Offset;
784 AttrValue.Value = DWARFFormValue::createFromSValue(
785 AbbrDecl.getFormByIndex(Index),
787 else {
788 auto U = Die.getDwarfUnit();
789 assert(U && "Die must have valid DWARF unit");
790 AttrValue.Value = DWARFFormValue::createFromUnit(
791 AbbrDecl.getFormByIndex(Index), U, &ParseOffset);
792 }
793 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
794 } else {
795 assert(Index == NumAttrs && "Indexes should be [0, NumAttrs) only");
796 AttrValue = {};
797 }
798}
799
801 if (auto AbbrDecl = Die.getAbbreviationDeclarationPtr())
802 updateForIndex(*AbbrDecl, Index + 1);
803 return *this;
804}
805
807 switch(Attr) {
808 case DW_AT_location:
809 case DW_AT_string_length:
810 case DW_AT_return_addr:
811 case DW_AT_data_member_location:
812 case DW_AT_frame_base:
813 case DW_AT_static_link:
814 case DW_AT_segment:
815 case DW_AT_use_location:
816 case DW_AT_vtable_elem_location:
817 return true;
818 default:
819 return false;
820 }
821}
822
824 switch (Attr) {
825 // From the DWARF v5 specification.
826 case DW_AT_location:
827 case DW_AT_byte_size:
828 case DW_AT_bit_offset:
829 case DW_AT_bit_size:
830 case DW_AT_string_length:
831 case DW_AT_lower_bound:
832 case DW_AT_return_addr:
833 case DW_AT_bit_stride:
834 case DW_AT_upper_bound:
835 case DW_AT_count:
836 case DW_AT_data_member_location:
837 case DW_AT_frame_base:
838 case DW_AT_segment:
839 case DW_AT_static_link:
840 case DW_AT_use_location:
841 case DW_AT_vtable_elem_location:
842 case DW_AT_allocated:
843 case DW_AT_associated:
844 case DW_AT_data_location:
845 case DW_AT_byte_stride:
846 case DW_AT_rank:
847 case DW_AT_call_value:
848 case DW_AT_call_origin:
849 case DW_AT_call_target:
850 case DW_AT_call_target_clobbered:
851 case DW_AT_call_data_location:
852 case DW_AT_call_data_value:
853 // Extensions.
854 case DW_AT_GNU_call_site_value:
855 case DW_AT_GNU_call_site_target:
856 return true;
857 default:
858 return false;
859 }
860}
861
862namespace llvm {
863
867
869 std::string *OriginalFullName) {
871}
872
873} // namespace llvm
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition Compiler.h:638
static void dumpAttribute(raw_ostream &OS, const DWARFDie &Die, const DWARFAttribute &AttrValue, unsigned Indent, DIDumpOptions DumpOpts)
Definition DWARFDie.cpp:150
static void dumpLocationExpr(raw_ostream &OS, const DWARFFormValue &FormValue, DWARFUnit *U, unsigned Indent, DIDumpOptions DumpOpts)
Definition DWARFDie.cpp:91
static unsigned dumpParentChain(DWARFDie Die, raw_ostream &OS, unsigned Indent, DIDumpOptions DumpOpts, unsigned Depth=0)
Helper to dump a DIE with all of its parents, but no siblings.
Definition DWARFDie.cpp:651
static DWARFDie resolveReferencedType(DWARFDie D, DWARFFormValue F)
Definition DWARFDie.cpp:105
static void dumpLocationList(raw_ostream &OS, const DWARFFormValue &FormValue, DWARFUnit *U, unsigned Indent, DIDumpOptions DumpOpts)
Definition DWARFDie.cpp:71
static llvm::StringRef prettyLanguageVersionString(const DWARFAttribute &AttrValue, const DWARFDie &Die)
Definition DWARFDie.cpp:110
static llvm::Expected< llvm::StringRef > getApplePropertyName(const DWARFDie &PropDIE)
Definition DWARFDie.cpp:132
static std::optional< uint64_t > getTypeSizeImpl(DWARFDie Die, uint64_t PointerSize, SmallPtrSetImpl< const DWARFDebugInfoEntry * > &Visited)
Definition DWARFDie.cpp:579
static void dumpApplePropertyAttribute(raw_ostream &OS, uint64_t Val)
Definition DWARFDie.cpp:39
static void dumpRanges(const DWARFObject &Obj, raw_ostream &OS, const DWARFAddressRangesVector &Ranges, unsigned AddressSize, unsigned Indent, const DIDumpOptions &DumpOpts)
Definition DWARFDie.cpp:57
This file contains constants used for implementing Dwarf debug support.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
BaseType
A given derived pointer can have multiple base pointers through phi/selects.
This file defines the SmallPtrSet class.
This file defines the SmallSet class.
static Split data
LocallyHashedType DenseMapInfo< LocallyHashedType >::Tombstone
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:41
size_t size() const
size - Get the array size.
Definition ArrayRef.h:143
const T * data() const
Definition ArrayRef.h:140
A structured debug information entry.
Definition DIE.h:828
dwarf::Attribute getAttrByIndex(uint32_t idx) const
int64_t getAttrImplicitConstValueByIndex(uint32_t idx) const
dwarf::Form getFormByIndex(uint32_t idx) const
DWARFContext This data structure is the top level entity that deals with dwarf debug information pars...
DWARFTypeUnit * getTypeUnitForHash(uint64_t Hash, bool IsDWO)
const DWARFObject & getDWARFObj() const
A DWARFDataExtractor (typically for an in-memory copy of an object-file section) plus a relocation ma...
LLVM_ABI attribute_iterator & operator++()
Definition DWARFDie.cpp:800
Utility class that carries the DWARF compile/type unit and the debug info entry in an object.
Definition DWARFDie.h:43
LLVM_ABI void getFullName(raw_string_ostream &, std::string *OriginalFullName=nullptr) const
Definition DWARFDie.cpp:300
LLVM_ABI DWARFDie resolveTypeUnitReference() const
Definition DWARFDie.cpp:396
LLVM_ABI std::optional< uint64_t > getLocBaseAttribute() const
Definition DWARFDie.cpp:418
uint64_t getOffset() const
Get the absolute offset into the debug info or types section.
Definition DWARFDie.h:68
LLVM_ABI const char * getShortName() const
Return the DIE short name resolving DW_AT_specification or DW_AT_abstract_origin references if necess...
Definition DWARFDie.cpp:541
LLVM_ABI Expected< DWARFAddressRangesVector > getAddressRanges() const
Get the address ranges for this DIE.
Definition DWARFDie.cpp:454
LLVM_ABI DWARFDie getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE as the referenced DIE.
Definition DWARFDie.cpp:373
LLVM_ABI DWARFDie getParent() const
Get the parent of this DIE object.
Definition DWARFDie.cpp:724
LLVM_ABI std::optional< DWARFFormValue > find(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE.
Definition DWARFDie.cpp:317
DWARFUnit * getDwarfUnit() const
Definition DWARFDie.h:55
const DWARFDebugInfoEntry * getDebugInfoEntry() const
Definition DWARFDie.h:54
LLVM_ABI const char * getSubroutineName(DINameKind Kind) const
If a DIE represents a subprogram (or inlined subroutine), returns its mangled name (or short name,...
Definition DWARFDie.cpp:524
LLVM_ABI DWARFDie getSibling() const
Get the sibling of this DIE object.
Definition DWARFDie.cpp:730
LLVM_ABI bool isSubroutineDIE() const
Returns true if DIE represents a subprogram or an inlined subroutine.
Definition DWARFDie.cpp:312
LLVM_ABI bool getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC, uint64_t &SectionIndex) const
Retrieves DW_AT_low_pc and DW_AT_high_pc from CU.
Definition DWARFDie.cpp:439
LLVM_ABI LLVM_DUMP_METHOD void dump() const
Convenience zero-argument overload for debugging.
Definition DWARFDie.cpp:722
LLVM_ABI void getCallerFrame(uint32_t &CallFile, uint32_t &CallLine, uint32_t &CallColumn, uint32_t &CallDiscriminator) const
Retrieves values of DW_AT_call_file, DW_AT_call_line and DW_AT_call_column from DIE (or zeroes if the...
Definition DWARFDie.cpp:569
LLVM_ABI bool isSubprogramDIE() const
Returns true if DIE represents a subprogram (not inlined).
Definition DWARFDie.cpp:310
LLVM_ABI bool addressRangeContainsAddress(const uint64_t Address) const
Definition DWARFDie.cpp:471
LLVM_ABI std::optional< DWARFFormValue > findRecursively(ArrayRef< dwarf::Attribute > Attrs) const
Extract the first value of any attribute in Attrs from this DIE and recurse into any DW_AT_specificat...
Definition DWARFDie.cpp:341
llvm::DWARFFormValue DWARFFormValue
Definition DWARFDie.h:48
LLVM_ABI std::optional< uint64_t > getHighPC(uint64_t LowPC) const
Get the DW_AT_high_pc attribute value as an address.
Definition DWARFDie.cpp:422
LLVM_ABI std::optional< uint64_t > getTypeSize(uint64_t PointerSize)
Gets the type size (in bytes) for this DIE.
Definition DWARFDie.cpp:645
LLVM_ABI DWARFDie resolveReferencedType(dwarf::Attribute Attr) const
Definition DWARFDie.cpp:407
LLVM_ABI const char * getName(DINameKind Kind) const
Return the DIE name resolving DW_AT_specification or DW_AT_abstract_origin references if necessary.
Definition DWARFDie.cpp:530
LLVM_ABI DWARFDie getLastChild() const
Get the last child of this DIE object.
Definition DWARFDie.cpp:748
LLVM_ABI DWARFDie getPreviousSibling() const
Get the previous sibling of this DIE object.
Definition DWARFDie.cpp:736
const DWARFAbbreviationDeclaration * getAbbreviationDeclarationPtr() const
Get the abbreviation declaration for this DIE.
Definition DWARFDie.h:60
DWARFDie()=default
LLVM_ABI std::string getDeclFile(DILineInfoSpecifier::FileLineInfoKind Kind) const
Definition DWARFDie.cpp:562
LLVM_ABI DWARFDie getFirstChild() const
Get the first child of this DIE object.
Definition DWARFDie.cpp:742
LLVM_ABI uint64_t getDeclLine() const
Returns the declaration line (start line) for a DIE, assuming it specifies a subprogram.
Definition DWARFDie.cpp:557
dwarf::Tag getTag() const
Definition DWARFDie.h:73
LLVM_ABI const char * getLinkageName() const
Return the DIE linkage name resolving DW_AT_specification or DW_AT_abstract_origin references if nece...
Definition DWARFDie.cpp:548
LLVM_ABI Expected< DWARFLocationExpressionsVector > getLocations(dwarf::Attribute Attr) const
Definition DWARFDie.cpp:494
LLVM_ABI std::optional< uint64_t > getRangesBaseAttribute() const
Extract the range base attribute from this DIE as absolute section offset.
Definition DWARFDie.cpp:414
bool isNULL() const
Returns true for a valid DIE that terminates a sibling chain.
Definition DWARFDie.h:86
LLVM_ABI std::optional< uint64_t > getLanguage() const
Definition DWARFDie.cpp:484
bool isValid() const
Definition DWARFDie.h:52
LLVM_ABI iterator_range< attribute_iterator > attributes() const
Get an iterator range to all attributes in the current DIE only.
Definition DWARFDie.cpp:754
LLVM_ABI void dump(raw_ostream &OS, unsigned indent=0, DIDumpOptions DumpOpts=DIDumpOptions()) const
Dump the DIE and all of its attributes to the supplied stream.
Definition DWARFDie.cpp:662
static LLVM_ABI DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V)
LLVM_ABI std::optional< ArrayRef< uint8_t > > getAsBlock() const
LLVM_ABI std::optional< uint64_t > getAsSectionOffset() const
LLVM_ABI bool isFormClass(FormClass FC) const
LLVM_ABI void dumpAddress(raw_ostream &OS, uint64_t Address) const
LLVM_ABI std::optional< uint64_t > getAsAddress() const
LLVM_ABI void dump(raw_ostream &OS, DIDumpOptions DumpOpts=DIDumpOptions()) const
static LLVM_ABI DWARFFormValue createFromSValue(dwarf::Form F, int64_t V)
LLVM_ABI std::optional< uint64_t > getAsUnsignedConstant() const
static LLVM_ABI DWARFFormValue createFromUnit(dwarf::Form F, const DWARFUnit *Unit, uint64_t *OffsetPtr)
dwarf::Form getForm() const
LLVM_ABI DWARFUnit * getUnitForOffset(uint64_t Offset) const
DWARFContext & getContext() const
Definition DWARFUnit.h:326
DWARFDie getDIEForOffset(uint64_t Offset)
Return the DIE object for a given offset Offset inside the unit's DIE vector.
Definition DWARFUnit.h:540
const DWARFUnitVector & getUnitVector() const
Return the DWARFUnitVector containing this unit.
Definition DWARFUnit.h:508
LLVM_ABI uint64_t getULEB128(uint64_t *offset_ptr, llvm::Error *Err=nullptr) const
Extract a unsigned LEB128 value from *offset_ptr.
bool isValidOffset(uint64_t offset) const
Test the validity of offset.
Tagged union holding either a T or a Error.
Definition Error.h:485
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition SmallSet.h:133
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
Definition SmallSet.h:183
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
constexpr bool empty() const
empty - Check if the string is empty.
Definition StringRef.h:143
LLVM Value Representation.
Definition Value.h:75
An RAII object that temporarily switches an output stream to a specific color.
Definition WithColor.h:54
raw_ostream & get()
Definition WithColor.h:79
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
A raw_ostream that writes to an std::string.
LLVM_ABI StringRef AttributeString(unsigned Attribute)
Definition Dwarf.cpp:72
LLVM_ABI StringRef FormEncodingString(unsigned Encoding)
Definition Dwarf.cpp:105
LLVM_ABI StringRef ApplePropertyString(unsigned)
Definition Dwarf.cpp:792
Calculates the starting offsets for various sections within the .debug_names section.
Definition Dwarf.h:35
Attribute
Attributes.
Definition Dwarf.h:125
SourceLanguageName
Definition Dwarf.h:223
std::optional< const char * > toString(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract a string value from it.
std::optional< object::SectionedAddress > toSectionedAddress(const std::optional< DWARFFormValue > &V)
std::optional< uint64_t > toSectionOffset(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract an section offset.
LLVM_ABI StringRef AttributeValueString(uint16_t Attr, unsigned Val)
Returns the symbolic string representing Val when used as a value for attribute Attr.
Definition Dwarf.cpp:866
uint64_t computeTombstoneAddress(uint8_t AddressByteSize)
Definition Dwarf.h:1242
LLVM_ABI llvm::StringRef LanguageDescription(SourceLanguageName name)
Returns a version-independent language name.
Definition Dwarf.cpp:465
std::optional< uint64_t > toUnsigned(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract an unsigned constant.
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:477
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
Definition Error.cpp:98
LLVM_ABI void printDwarfExpression(const DWARFExpression *E, raw_ostream &OS, DIDumpOptions DumpOpts, DWARFUnit *U, bool IsEH=false)
Print a Dwarf expression/.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
Definition Error.h:1305
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
Definition bit.h:202
@ invalid_argument
Definition Errc.h:56
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
SmallVector< ValueTypeFromRangeType< R >, Size > to_vector(R &&Range)
Given a range of type R, iterate the entire range and return a SmallVector with elements of the vecto...
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
Definition Format.h:129
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI void dumpTypeQualifiedName(const DWARFDie &DIE, raw_ostream &OS)
Definition DWARFDie.cpp:864
FunctionAddr VTableAddr uintptr_t uintptr_t Data
Definition InstrProf.h:189
DINameKind
A DINameKind is passed to name search methods to specify a preference regarding the type of name reso...
Definition DIContext.h:142
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1897
LLVM_ABI void dumpTypeUnqualifiedName(const DWARFDie &DIE, raw_ostream &OS, std::string *OriginalFullName=nullptr)
Definition DWARFDie.cpp:868
void consumeError(Error Err)
Consume a Error without doing anything.
Definition Error.h:1083
std::vector< DWARFAddressRange > DWARFAddressRangesVector
DWARFAddressRangesVector - represents a set of absolute address ranges.
std::vector< DWARFLocationExpression > DWARFLocationExpressionsVector
Represents a set of absolute location expressions.
Container for dump options that control which debug information will be dumped.
Definition DIContext.h:196
std::function< void(Error)> RecoverableErrorHandler
Definition DIContext.h:237
llvm::SmallVector< unsigned, 0 > FilterChildTag
List of DWARF tags to filter children by.
Definition DIContext.h:215
unsigned ChildRecurseDepth
Definition DIContext.h:198
unsigned ParentRecurseDepth
Definition DIContext.h:199
Encapsulates a DWARF attribute value and all of the data required to describe the attribute value.
static LLVM_ABI bool mayHaveLocationList(dwarf::Attribute Attr)
Identify DWARF attributes that may contain a pointer to a location list.
Definition DWARFDie.cpp:806
DWARFFormValue Value
The form and value for this attribute.
static LLVM_ABI bool mayHaveLocationExpr(dwarf::Attribute Attr)
Identifies DWARF attributes that may contain a reference to a DWARF expression.
Definition DWARFDie.cpp:823
dwarf::Attribute Attr
The attribute enumeration of this attribute.
Represents a single DWARF expression, whose value is location-dependent.
void appendQualifiedName(DieType D)
void appendUnqualifiedName(DieType D, std::string *OriginalFullName=nullptr)
Recursively append the DIE type name when applicable.