38using namespace object;
44 assert(Shift < 64 &&
"undefined behavior");
47 if (!PropName.empty())
50 OS <<
format(
"DW_APPLE_PROPERTY_0x%" PRIx64, Bit);
60 unsigned AddressSize,
unsigned Indent,
68 R.dump(
OS, AddressSize, DumpOpts, &Obj);
76 "bad FORM for location list");
80 if (FormValue.
getForm() == DW_FORM_loclistx) {
81 FormValue.
dump(
OS, DumpOpts);
83 if (
auto LoclistOffset = U->getLoclistOffset(
Offset))
88 U->getLocationTable().dumpLocationList(
97 "bad FORM for location expression");
102 DWARFExpression(Data, U->getAddressByteSize(), U->getFormParams().Format)
107 return D.getAttributeValueAsReferencedDie(
F).resolveTypeUnitReference();
115 const char BaseIndent[] =
" ";
132 auto Color = HighlightColor::Enumerator;
133 if (Attr == DW_AT_decl_file || Attr == DW_AT_call_file) {
134 Color = HighlightColor::String;
135 if (
const auto *LT = U->getContext().getLineTableForUnit(U)) {
137 if (LT->getFileNameByIndex(
138 *Val, U->getCompilationDir(),
139 DILineInfoSpecifier::FileLineInfoKind::AbsoluteFilePath,
141 File =
'"' + File +
'"';
151 else if (Attr == DW_AT_decl_line || Attr == DW_AT_decl_column ||
152 Attr == DW_AT_call_line || Attr == DW_AT_call_column) {
156 FormValue.
dump(
OS, DumpOpts);
157 }
else if (Attr == DW_AT_low_pc &&
161 FormValue.
dump(
OS, DumpOpts);
167 }
else if (Attr == DW_AT_high_pc && !DumpOpts.
ShowForm && !DumpOpts.
Verbose &&
175 FormValue.
dump(
OS, DumpOpts);
187 FormValue.
dump(
OS, DumpOpts);
194 if (Attr == DW_AT_specification || Attr == DW_AT_abstract_origin ||
195 Attr == DW_AT_call_origin) {
196 if (
const char *
Name =
198 DINameKind::LinkageName))
199 OS << Space <<
"\"" <<
Name <<
'\"';
200 }
else if (Attr == DW_AT_type || Attr == DW_AT_containing_type) {
202 if (
D && !
D.isNULL()) {
207 }
else if (Attr == DW_AT_APPLE_property_attribute) {
210 }
else if (Attr == DW_AT_ranges) {
214 if (FormValue.
getForm() == DW_FORM_rnglistx)
215 if (
auto RangeListOffset =
218 dwarf::DW_FORM_sec_offset, *RangeListOffset);
222 dumpRanges(Obj,
OS, RangesOrError.get(), U->getAddressByteSize(),
223 sizeof(BaseIndent) + Indent + 4, DumpOpts);
226 errc::invalid_argument,
"decoding address ranges: %s",
227 toString(RangesOrError.takeError()).c_str()));
234 std::string *OriginalFullName)
const {
238 if (
getTag() == DW_TAG_GNU_template_parameter_pack)
247 return Tag == DW_TAG_subprogram ||
Tag == DW_TAG_inlined_subroutine;
255 return AbbrevDecl->getAttributeValue(
getOffset(), Attr, *U);
259std::optional<DWARFFormValue>
265 for (
auto Attr : Attrs) {
266 if (
auto Value = AbbrevDecl->getAttributeValue(
getOffset(), Attr, *U))
273std::optional<DWARFFormValue>
285 while (!Worklist.
empty()) {
308 if (std::optional<DWARFFormValue>
F =
find(Attr))
316 if (std::optional<uint64_t>
Offset = V.getAsRelativeReference()) {
317 Result =
const_cast<DWARFUnit *
>(V.getUnit())
318 ->getDIEForOffset(V.getUnit()->getOffset() + *
Offset);
319 }
else if (
Offset = V.getAsDebugInfoReference();
Offset) {
321 Result = SpecUnit->getDIEForOffset(*
Offset);
322 }
else if (std::optional<uint64_t> Sig = V.getAsSignatureReference()) {
325 Result = TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset());
331 if (
auto Attr =
find(DW_AT_signature)) {
332 if (std::optional<uint64_t> Sig = Attr->getAsReferenceUVal()) {
335 return TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset());
351 if (LowPC == Tombstone)
353 if (
auto FormValue =
find(DW_AT_high_pc)) {
354 if (
auto Address = FormValue->getAsAddress()) {
358 if (
auto Offset = FormValue->getAsUnsignedConstant()) {
368 auto F =
find(DW_AT_low_pc);
372 if (
auto HighPcAddr =
getHighPC(LowPcAddr->Address)) {
373 LowPC = LowPcAddr->Address;
374 HighPC = *HighPcAddr;
375 SectionIndex = LowPcAddr->SectionIndex;
389 std::optional<DWARFFormValue>
Value =
find(DW_AT_ranges);
391 if (
Value->getForm() == DW_FORM_rnglistx)
400 if (!RangesOrError) {
405 for (
const auto &R : RangesOrError.get())
413 std::optional<DWARFFormValue> Location =
find(Attr);
418 if (std::optional<uint64_t> Off = Location->getAsSectionOffset()) {
421 if (Location->getForm() == DW_FORM_loclistx) {
426 "Loclist table not found");
471 dwarf::DW_AT_linkage_name}),
482 if (
auto OptString = FormValue->getAsFile(
Kind))
489 uint32_t &CallDiscriminator)
const {
496static std::optional<uint64_t>
502 if (
auto SizeAttr = Die.
find(DW_AT_byte_size))
503 if (std::optional<uint64_t>
Size = SizeAttr->getAsUnsignedConstant())
507 case DW_TAG_pointer_type:
508 case DW_TAG_reference_type:
509 case DW_TAG_rvalue_reference_type:
511 case DW_TAG_ptr_to_member_type: {
513 if (
BaseType.getTag() == DW_TAG_subroutine_type)
514 return 2 * PointerSize;
517 case DW_TAG_const_type:
518 case DW_TAG_immutable_type:
519 case DW_TAG_volatile_type:
520 case DW_TAG_restrict_type:
521 case DW_TAG_template_alias:
522 case DW_TAG_typedef: {
527 case DW_TAG_array_type: {
531 std::optional<uint64_t> BaseSize =
537 if (Child.getTag() != DW_TAG_subrange_type)
540 if (
auto ElemCountAttr = Child.find(DW_AT_count))
541 if (std::optional<uint64_t> ElemCount =
542 ElemCountAttr->getAsUnsignedConstant())
544 if (
auto UpperBoundAttr = Child.find(DW_AT_upper_bound))
545 if (std::optional<int64_t> UpperBound =
546 UpperBoundAttr->getAsSignedConstant()) {
547 int64_t LowerBound = 0;
548 if (
auto LowerBoundAttr = Child.find(DW_AT_lower_bound))
549 LowerBound = LowerBoundAttr->getAsSignedConstant().value_or(0);
550 Size *= *UpperBound - LowerBound + 1;
576 Die.
dump(
OS, Indent, DumpOpts);
607 AbbrevDecl->hasChildren() ?
'*' :
' ');
608 if (std::optional<uint32_t> ParentIdx = Die->
getParentIdx())
624 Child.
dump(
OS, Indent + 2, ChildDumpOpts);
629 OS <<
"Abbreviation code not found in 'debug_abbrev' class for code: "
678 assert(AbbrDecl &&
"Must have abbreviation declaration");
681 Index = AbbrDecl->getNumAttributes();
684 AttrValue.
Offset =
D.getOffset() + AbbrDecl->getCodeByteSize();
685 updateForIndex(*AbbrDecl, 0);
689void DWARFDie::attribute_iterator::updateForIndex(
694 if (
Index < NumAttrs) {
697 AttrValue.Offset += AttrValue.ByteSize;
698 uint64_t ParseOffset = AttrValue.Offset;
704 auto U = Die.getDwarfUnit();
705 assert(U &&
"Die must have valid DWARF unit");
709 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
711 assert(
Index == NumAttrs &&
"Indexes should be [0, NumAttrs) only");
718 updateForIndex(*AbbrDecl,
Index + 1);
725 case DW_AT_string_length:
726 case DW_AT_return_addr:
727 case DW_AT_data_member_location:
728 case DW_AT_frame_base:
729 case DW_AT_static_link:
731 case DW_AT_use_location:
732 case DW_AT_vtable_elem_location:
743 case DW_AT_byte_size:
744 case DW_AT_bit_offset:
746 case DW_AT_string_length:
747 case DW_AT_lower_bound:
748 case DW_AT_return_addr:
749 case DW_AT_bit_stride:
750 case DW_AT_upper_bound:
752 case DW_AT_data_member_location:
753 case DW_AT_frame_base:
755 case DW_AT_static_link:
756 case DW_AT_use_location:
757 case DW_AT_vtable_elem_location:
758 case DW_AT_allocated:
759 case DW_AT_associated:
760 case DW_AT_data_location:
761 case DW_AT_byte_stride:
763 case DW_AT_call_value:
764 case DW_AT_call_origin:
765 case DW_AT_call_target:
766 case DW_AT_call_target_clobbered:
767 case DW_AT_call_data_location:
768 case DW_AT_call_data_value:
770 case DW_AT_GNU_call_site_value:
771 case DW_AT_GNU_call_site_target:
785 std::string *OriginalFullName) {
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.
static void dumpAttribute(raw_ostream &OS, const DWARFDie &Die, const DWARFAttribute &AttrValue, unsigned Indent, DIDumpOptions DumpOpts)
static void dumpLocationExpr(raw_ostream &OS, const DWARFFormValue &FormValue, DWARFUnit *U, unsigned Indent, DIDumpOptions DumpOpts)
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.
static DWARFDie resolveReferencedType(DWARFDie D, DWARFFormValue F)
static void dumpLocationList(raw_ostream &OS, const DWARFFormValue &FormValue, DWARFUnit *U, unsigned Indent, DIDumpOptions DumpOpts)
static std::optional< uint64_t > getTypeSizeImpl(DWARFDie Die, uint64_t PointerSize, SmallPtrSetImpl< const DWARFDebugInfoEntry * > &Visited)
static void dumpApplePropertyAttribute(raw_ostream &OS, uint64_t Val)
static void dumpRanges(const DWARFObject &Obj, raw_ostream &OS, const DWARFAddressRangesVector &Ranges, unsigned AddressSize, unsigned Indent, const DIDumpOptions &DumpOpts)
This file contains constants used for implementing Dwarf debug support.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the SmallPtrSet class.
This file defines the SmallSet class.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
A structured debug information entry.
size_t getNumAttributes() const
bool getAttrIsImplicitConstByIndex(uint32_t idx) const
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...
bool isLittleEndian() const
DWARFTypeUnit * getTypeUnitForHash(uint16_t Version, uint64_t Hash, bool IsDWO)
const DWARFObject & getDWARFObj() const
std::optional< uint32_t > getParentIdx() const
Returns index of the parent die.
const DWARFAbbreviationDeclaration * getAbbreviationDeclarationPtr() const
attribute_iterator & operator++()
attribute_iterator()=delete
Utility class that carries the DWARF compile/type unit and the debug info entry in an object.
void getFullName(raw_string_ostream &, std::string *OriginalFullName=nullptr) const
DWARFDie resolveTypeUnitReference() const
std::optional< uint64_t > getLocBaseAttribute() const
uint64_t getOffset() const
Get the absolute offset into the debug info or types section.
const char * getShortName() const
Return the DIE short name resolving DW_AT_specification or DW_AT_abstract_origin references if necess...
Expected< DWARFAddressRangesVector > getAddressRanges() const
Get the address ranges for this DIE.
DWARFDie getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE as the referenced DIE.
DWARFDie getParent() const
Get the parent of this DIE object.
std::optional< DWARFFormValue > find(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE.
DWARFUnit * getDwarfUnit() const
const DWARFDebugInfoEntry * getDebugInfoEntry() const
const char * getSubroutineName(DINameKind Kind) const
If a DIE represents a subprogram (or inlined subroutine), returns its mangled name (or short name,...
DWARFDie getSibling() const
Get the sibling of this DIE object.
bool isSubroutineDIE() const
Returns true if DIE represents a subprogram or an inlined subroutine.
bool getLowAndHighPC(uint64_t &LowPC, uint64_t &HighPC, uint64_t &SectionIndex) const
Retrieves DW_AT_low_pc and DW_AT_high_pc from CU.
LLVM_DUMP_METHOD void dump() const
Convenience zero-argument overload for debugging.
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...
bool isSubprogramDIE() const
Returns true if DIE represents a subprogram (not inlined).
bool addressRangeContainsAddress(const uint64_t Address) const
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...
std::optional< uint64_t > getHighPC(uint64_t LowPC) const
Get the DW_AT_high_pc attribute value as an address.
std::optional< uint64_t > getTypeSize(uint64_t PointerSize)
Gets the type size (in bytes) for this DIE.
const char * getName(DINameKind Kind) const
Return the DIE name resolving DW_AT_specification or DW_AT_abstract_origin references if necessary.
DWARFDie getLastChild() const
Get the last child of this DIE object.
DWARFDie getPreviousSibling() const
Get the previous sibling of this DIE object.
const DWARFAbbreviationDeclaration * getAbbreviationDeclarationPtr() const
Get the abbreviation declaration for this DIE.
std::string getDeclFile(DILineInfoSpecifier::FileLineInfoKind Kind) const
DWARFDie getFirstChild() const
Get the first child of this DIE object.
uint64_t getDeclLine() const
Returns the declaration line (start line) for a DIE, assuming it specifies a subprogram.
dwarf::Tag getTag() const
const char * getLinkageName() const
Return the DIE linkage name resolving DW_AT_specification or DW_AT_abstract_origin references if nece...
Expected< DWARFLocationExpressionsVector > getLocations(dwarf::Attribute Attr) const
std::optional< uint64_t > getRangesBaseAttribute() const
Extract the range base attribute from this DIE as absolute section offset.
bool isNULL() const
Returns true for a valid DIE that terminates a sibling chain.
iterator_range< attribute_iterator > attributes() const
Get an iterator range to all attributes in the current DIE only.
void dump(raw_ostream &OS, unsigned indent=0, DIDumpOptions DumpOpts=DIDumpOptions()) const
Dump the DIE and all of its attributes to the supplied stream.
void print(raw_ostream &OS, DIDumpOptions DumpOpts, DWARFUnit *U, bool IsEH=false) const
DWARFUnit * getUnitForOffset(uint64_t Offset) const
DWARFDie getPreviousSibling(const DWARFDebugInfoEntry *Die)
DWARFDie getFirstChild(const DWARFDebugInfoEntry *Die)
DWARFDataExtractor getDebugInfoExtractor() const
DWARFDie getSibling(const DWARFDebugInfoEntry *Die)
DWARFContext & getContext() const
uint8_t getAddressByteSize() const
DWARFDie getParent(const DWARFDebugInfoEntry *Die)
std::optional< uint64_t > getLoclistOffset(uint32_t Index)
uint16_t getVersion() const
Expected< DWARFLocationExpressionsVector > findLoclistFromOffset(uint64_t Offset)
Expected< DWARFAddressRangesVector > findRnglistFromOffset(uint64_t Offset)
Return a vector of address ranges resulting from a (possibly encoded) range list starting at a given ...
const DWARFUnitVector & getUnitVector() const
Return the DWARFUnitVector containing this unit.
Expected< DWARFAddressRangesVector > findRnglistFromIndex(uint32_t Index)
Return a vector of address ranges retrieved from an encoded range list whose offset is found via a ta...
DWARFDie getDIEAtIndex(unsigned Index)
Return the DIE object at the given index Index.
DWARFDie getLastChild(const DWARFDebugInfoEntry *Die)
Tagged union holding either a T or a Error.
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...
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
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.
constexpr const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
LLVM Value Representation.
An RAII object that temporarily switches an output stream to a specific color.
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
A raw_ostream that writes to an std::string.
StringRef AttributeString(unsigned Attribute)
StringRef FormEncodingString(unsigned Encoding)
StringRef ApplePropertyString(unsigned)
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.
StringRef AttributeValueString(uint16_t Attr, unsigned Val)
Returns the symbolic string representing Val when used as a value for attribute Attr.
uint64_t computeTombstoneAddress(uint8_t AddressByteSize)
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.
std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
auto formatv(const char *Fmt, Ts &&...Vals) -> formatv_object< decltype(std::make_tuple(support::detail::build_format_adapter(std::forward< Ts >(Vals))...))>
std::vector< DWARFAddressRange > DWARFAddressRangesVector
DWARFAddressRangesVector - represents a set of absolute address ranges.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
std::vector< DWARFLocationExpression > DWARFLocationExpressionsVector
Represents a set of absolute location expressions.
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
void dumpTypeQualifiedName(const DWARFDie &DIE, raw_ostream &OS)
DINameKind
A DINameKind is passed to name search methods to specify a preference regarding the type of name reso...
void dumpTypeUnqualifiedName(const DWARFDie &DIE, raw_ostream &OS, std::string *OriginalFullName=nullptr)
void consumeError(Error Err)
Consume a Error without doing anything.
Container for dump options that control which debug information will be dumped.
std::function< void(Error)> RecoverableErrorHandler
unsigned ChildRecurseDepth
unsigned ParentRecurseDepth
Encapsulates a DWARF attribute value and all of the data required to describe the attribute value.
uint64_t Offset
The debug info/types offset for this attribute.
static bool mayHaveLocationList(dwarf::Attribute Attr)
Identify DWARF attributes that may contain a pointer to a location list.
DWARFFormValue Value
The form and value for this attribute.
static bool mayHaveLocationExpr(dwarf::Attribute Attr)
Identifies DWARF attributes that may contain a reference to a DWARF expression.
dwarf::Attribute Attr
The attribute enumeration of this attribute.
Represents a single DWARF expression, whose value is location-dependent.
void appendQualifiedName(DWARFDie D)
void appendUnqualifiedName(DWARFDie D, std::string *OriginalFullName=nullptr)
Recursively append the DIE type name when applicable.