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 DE(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()) {
295 {DW_AT_abstract_origin, DW_AT_specification, DW_AT_signature}) {
307 if (std::optional<DWARFFormValue>
F =
find(Attr))
315 if (std::optional<uint64_t>
Offset = V.getAsRelativeReference()) {
316 Result =
const_cast<DWARFUnit *
>(V.getUnit())
317 ->getDIEForOffset(V.getUnit()->getOffset() + *
Offset);
318 }
else if (
Offset = V.getAsDebugInfoReference();
Offset) {
320 Result = SpecUnit->getDIEForOffset(*
Offset);
321 }
else if (std::optional<uint64_t> Sig = V.getAsSignatureReference()) {
324 Result = TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset());
330 if (
auto Attr =
find(DW_AT_signature)) {
331 if (std::optional<uint64_t> Sig = Attr->getAsReferenceUVal()) {
334 return TU->getDIEForOffset(TU->getTypeOffset() + TU->getOffset());
357 if (LowPC == Tombstone)
359 if (
auto FormValue =
find(DW_AT_high_pc)) {
360 if (
auto Address = FormValue->getAsAddress()) {
364 if (
auto Offset = FormValue->getAsUnsignedConstant()) {
374 auto F =
find(DW_AT_low_pc);
378 if (
auto HighPcAddr =
getHighPC(LowPcAddr->Address)) {
379 LowPC = LowPcAddr->Address;
380 HighPC = *HighPcAddr;
381 SectionIndex = LowPcAddr->SectionIndex;
395 std::optional<DWARFFormValue>
Value =
find(DW_AT_ranges);
397 if (
Value->getForm() == DW_FORM_rnglistx)
406 if (!RangesOrError) {
411 for (
const auto &R : RangesOrError.get())
419 if (std::optional<DWARFFormValue> LV =
421 return LV->getAsUnsignedConstant();
428 std::optional<DWARFFormValue> Location =
find(Attr);
433 if (std::optional<uint64_t> Off = Location->getAsSectionOffset()) {
436 if (Location->getForm() == DW_FORM_loclistx) {
441 "Loclist table not found");
486 dwarf::DW_AT_linkage_name}),
497 if (
auto OptString = FormValue->getAsFile(
Kind))
504 uint32_t &CallDiscriminator)
const {
511static std::optional<uint64_t>
517 if (
auto SizeAttr = Die.
find(DW_AT_byte_size))
518 if (std::optional<uint64_t>
Size = SizeAttr->getAsUnsignedConstant())
522 case DW_TAG_pointer_type:
523 case DW_TAG_reference_type:
524 case DW_TAG_rvalue_reference_type:
526 case DW_TAG_ptr_to_member_type: {
528 if (
BaseType.getTag() == DW_TAG_subroutine_type)
529 return 2 * PointerSize;
532 case DW_TAG_const_type:
533 case DW_TAG_immutable_type:
534 case DW_TAG_volatile_type:
535 case DW_TAG_restrict_type:
536 case DW_TAG_template_alias:
537 case DW_TAG_typedef: {
542 case DW_TAG_array_type: {
546 std::optional<uint64_t> BaseSize =
552 if (Child.getTag() != DW_TAG_subrange_type)
555 if (
auto ElemCountAttr = Child.find(DW_AT_count))
556 if (std::optional<uint64_t> ElemCount =
557 ElemCountAttr->getAsUnsignedConstant())
559 if (
auto UpperBoundAttr = Child.find(DW_AT_upper_bound))
560 if (std::optional<int64_t> UpperBound =
561 UpperBoundAttr->getAsSignedConstant()) {
562 int64_t LowerBound = 0;
563 if (
auto LowerBoundAttr = Child.find(DW_AT_lower_bound))
564 LowerBound = LowerBoundAttr->getAsSignedConstant().value_or(0);
565 Size *= *UpperBound - LowerBound + 1;
591 Die.
dump(
OS, Indent, DumpOpts);
622 AbbrevDecl->hasChildren() ?
'*' :
' ');
623 if (std::optional<uint32_t> ParentIdx = Die->
getParentIdx())
639 Child.
dump(
OS, Indent + 2, ChildDumpOpts);
644 OS <<
"Abbreviation code not found in 'debug_abbrev' class for code: "
693 assert(AbbrDecl &&
"Must have abbreviation declaration");
696 Index = AbbrDecl->getNumAttributes();
699 AttrValue.
Offset =
D.getOffset() + AbbrDecl->getCodeByteSize();
700 updateForIndex(*AbbrDecl, 0);
704void DWARFDie::attribute_iterator::updateForIndex(
709 if (
Index < NumAttrs) {
712 AttrValue.Offset += AttrValue.ByteSize;
713 uint64_t ParseOffset = AttrValue.Offset;
719 auto U = Die.getDwarfUnit();
720 assert(U &&
"Die must have valid DWARF unit");
724 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
726 assert(
Index == NumAttrs &&
"Indexes should be [0, NumAttrs) only");
733 updateForIndex(*AbbrDecl,
Index + 1);
740 case DW_AT_string_length:
741 case DW_AT_return_addr:
742 case DW_AT_data_member_location:
743 case DW_AT_frame_base:
744 case DW_AT_static_link:
746 case DW_AT_use_location:
747 case DW_AT_vtable_elem_location:
758 case DW_AT_byte_size:
759 case DW_AT_bit_offset:
761 case DW_AT_string_length:
762 case DW_AT_lower_bound:
763 case DW_AT_return_addr:
764 case DW_AT_bit_stride:
765 case DW_AT_upper_bound:
767 case DW_AT_data_member_location:
768 case DW_AT_frame_base:
770 case DW_AT_static_link:
771 case DW_AT_use_location:
772 case DW_AT_vtable_elem_location:
773 case DW_AT_allocated:
774 case DW_AT_associated:
775 case DW_AT_data_location:
776 case DW_AT_byte_stride:
778 case DW_AT_call_value:
779 case DW_AT_call_origin:
780 case DW_AT_call_target:
781 case DW_AT_call_target_clobbered:
782 case DW_AT_call_data_location:
783 case DW_AT_call_data_value:
785 case DW_AT_GNU_call_site_value:
786 case DW_AT_GNU_call_site_target:
800 std::string *OriginalFullName) {
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.
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.
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(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
LLVM_ABI attribute_iterator & operator++()
attribute_iterator()=delete
Utility class that carries the DWARF compile/type unit and the debug info entry in an object.
LLVM_ABI void getFullName(raw_string_ostream &, std::string *OriginalFullName=nullptr) const
LLVM_ABI DWARFDie resolveTypeUnitReference() const
LLVM_ABI std::optional< uint64_t > getLocBaseAttribute() const
uint64_t getOffset() const
Get the absolute offset into the debug info or types section.
LLVM_ABI const char * getShortName() const
Return the DIE short name resolving DW_AT_specification or DW_AT_abstract_origin references if necess...
LLVM_ABI Expected< DWARFAddressRangesVector > getAddressRanges() const
Get the address ranges for this DIE.
LLVM_ABI DWARFDie getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE as the referenced DIE.
LLVM_ABI DWARFDie getParent() const
Get the parent of this DIE object.
LLVM_ABI std::optional< DWARFFormValue > find(dwarf::Attribute Attr) const
Extract the specified attribute from this DIE.
DWARFUnit * getDwarfUnit() const
const DWARFDebugInfoEntry * getDebugInfoEntry() const
LLVM_ABI const char * getSubroutineName(DINameKind Kind) const
If a DIE represents a subprogram (or inlined subroutine), returns its mangled name (or short name,...
LLVM_ABI DWARFDie getSibling() const
Get the sibling of this DIE object.
LLVM_ABI bool isSubroutineDIE() const
Returns true if DIE represents a subprogram or an inlined subroutine.
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.
LLVM_ABI LLVM_DUMP_METHOD void dump() const
Convenience zero-argument overload for debugging.
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...
LLVM_ABI bool isSubprogramDIE() const
Returns true if DIE represents a subprogram (not inlined).
LLVM_ABI bool addressRangeContainsAddress(const uint64_t Address) const
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...
LLVM_ABI std::optional< uint64_t > getHighPC(uint64_t LowPC) const
Get the DW_AT_high_pc attribute value as an address.
LLVM_ABI std::optional< uint64_t > getTypeSize(uint64_t PointerSize)
Gets the type size (in bytes) for this DIE.
LLVM_ABI DWARFDie resolveReferencedType(dwarf::Attribute Attr) const
LLVM_ABI const char * getName(DINameKind Kind) const
Return the DIE name resolving DW_AT_specification or DW_AT_abstract_origin references if necessary.
LLVM_ABI DWARFDie getLastChild() const
Get the last child of this DIE object.
LLVM_ABI DWARFDie getPreviousSibling() const
Get the previous sibling of this DIE object.
const DWARFAbbreviationDeclaration * getAbbreviationDeclarationPtr() const
Get the abbreviation declaration for this DIE.
LLVM_ABI std::string getDeclFile(DILineInfoSpecifier::FileLineInfoKind Kind) const
LLVM_ABI DWARFDie getFirstChild() const
Get the first child of this DIE object.
LLVM_ABI uint64_t getDeclLine() const
Returns the declaration line (start line) for a DIE, assuming it specifies a subprogram.
dwarf::Tag getTag() const
LLVM_ABI const char * getLinkageName() const
Return the DIE linkage name resolving DW_AT_specification or DW_AT_abstract_origin references if nece...
LLVM_ABI Expected< DWARFLocationExpressionsVector > getLocations(dwarf::Attribute Attr) const
LLVM_ABI 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.
LLVM_ABI std::optional< uint64_t > getLanguage() const
LLVM_ABI iterator_range< attribute_iterator > attributes() const
Get an iterator range to all attributes in the current DIE only.
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.
LLVM_ABI DWARFUnit * getUnitForOffset(uint64_t Offset) const
DWARFDie getPreviousSibling(const DWARFDebugInfoEntry *Die)
DWARFDie getFirstChild(const DWARFDebugInfoEntry *Die)
DWARFDataExtractor getDebugInfoExtractor() const
DWARFDie getSibling(const DWARFDebugInfoEntry *Die)
DWARFDie getUnitDIE(bool ExtractUnitDIEOnly=true)
DWARFContext & getContext() const
uint8_t getAddressByteSize() const
DWARFDie getParent(const DWARFDebugInfoEntry *Die)
std::optional< uint64_t > getLoclistOffset(uint32_t Index)
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.
LLVM_ABI StringRef AttributeString(unsigned Attribute)
LLVM_ABI StringRef FormEncodingString(unsigned Encoding)
LLVM_ABI 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.
LLVM_ABI 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.
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
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.
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.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
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)
DINameKind
A DINameKind is passed to name search methods to specify a preference regarding the type of name reso...
LLVM_ABI 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 LLVM_ABI 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 LLVM_ABI 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(DieType D)
void appendUnqualifiedName(DieType D, std::string *OriginalFullName=nullptr)
Recursively append the DIE type name when applicable.