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(
89 &
Offset, OS, U->getBaseAddress(), Ctx.getDWARFObj(), U, DumpOpts, Indent);
97 "bad FORM for location expression");
101 Ctx.isLittleEndian(), 0);
107 return D.getAttributeValueAsReferencedDie(
F).resolveTypeUnitReference();
115 const char BaseIndent[] =
" ";
133 if (Attr == DW_AT_decl_file || Attr == DW_AT_call_file) {
135 if (
const auto *LT = U->getContext().getLineTableForUnit(U)) {
137 if (LT->getFileNameByIndex(
138 *Val, U->getCompilationDir(),
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 ||
153 Attr == DW_AT_language_version) {
157 FormValue.
dump(OS, DumpOpts);
158 }
else if (Attr == DW_AT_low_pc &&
162 FormValue.
dump(OS, DumpOpts);
168 }
else if (Attr == DW_AT_high_pc && !DumpOpts.
ShowForm && !DumpOpts.
Verbose &&
176 FormValue.
dump(OS, DumpOpts);
188 FormValue.
dump(OS, DumpOpts);
195 if (Attr == DW_AT_specification || Attr == DW_AT_abstract_origin ||
196 Attr == DW_AT_call_origin) {
197 if (
const char *Name =
200 OS << Space <<
"\"" << Name <<
'\"';
201 }
else if (Attr == DW_AT_type || Attr == DW_AT_containing_type) {
203 if (
D && !
D.isNULL()) {
208 }
else if (Attr == DW_AT_APPLE_property_attribute) {
211 }
else if (Attr == DW_AT_ranges) {
215 if (FormValue.
getForm() == DW_FORM_rnglistx)
216 if (
auto RangeListOffset =
219 dwarf::DW_FORM_sec_offset, *RangeListOffset);
220 FV.
dump(OS, DumpOpts);
223 dumpRanges(Obj, OS, RangesOrError.get(), U->getAddressByteSize(),
224 sizeof(BaseIndent) + Indent + 4, DumpOpts);
228 toString(RangesOrError.takeError()).c_str()));
235 std::string *OriginalFullName)
const {
239 if (
getTag() == DW_TAG_GNU_template_parameter_pack)
248 return Tag == DW_TAG_subprogram ||
Tag == DW_TAG_inlined_subroutine;
256 return AbbrevDecl->getAttributeValue(
getOffset(), Attr, *U);
260std::optional<DWARFFormValue>
266 for (
auto Attr : Attrs) {
267 if (
auto Value = AbbrevDecl->getAttributeValue(
getOffset(), Attr, *U))
274std::optional<DWARFFormValue>
286 while (!Worklist.
empty()) {
292 if (
auto Value = Die.find(Attrs))
296 {DW_AT_abstract_origin, DW_AT_specification, DW_AT_signature}) {
297 if (
auto D = Die.getAttributeValueAsReferencedDie(Attr))
308 if (std::optional<DWARFFormValue>
F =
find(Attr))
316 if (std::optional<uint64_t>
Offset = V.getAsRelativeReference()) {
317 Result =
const_cast<DWARFUnit *
>(V.getUnit())
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());
360 if (
auto FormValue =
find(DW_AT_high_pc)) {
361 if (
auto Address = FormValue->getAsAddress()) {
365 if (
auto Offset = FormValue->getAsUnsignedConstant()) {
375 auto F =
find(DW_AT_low_pc);
379 if (
auto HighPcAddr =
getHighPC(LowPcAddr->Address)) {
380 LowPC = LowPcAddr->Address;
381 HighPC = *HighPcAddr;
382 SectionIndex = LowPcAddr->SectionIndex;
396 std::optional<DWARFFormValue>
Value =
find(DW_AT_ranges);
398 if (
Value->getForm() == DW_FORM_rnglistx)
399 return U->findRnglistFromIndex(*
Value->getAsSectionOffset());
400 return U->findRnglistFromOffset(*
Value->getAsSectionOffset());
407 if (!RangesOrError) {
412 for (
const auto &R : RangesOrError.get())
420 if (std::optional<DWARFFormValue> LV =
421 U->getUnitDIE().find(dwarf::DW_AT_language))
422 return LV->getAsUnsignedConstant();
429 std::optional<DWARFFormValue> Location =
find(Attr);
434 if (std::optional<uint64_t> Off = Location->getAsSectionOffset()) {
437 if (Location->getForm() == DW_FORM_loclistx) {
438 if (
auto LoclistOffset = U->getLoclistOffset(
Offset))
442 "Loclist table not found");
444 return U->findLoclistFromOffset(
Offset);
487 dwarf::DW_AT_linkage_name}),
498 if (
auto OptString = FormValue->getAsFile(
Kind))
505 uint32_t &CallDiscriminator)
const {
512static std::optional<uint64_t>
518 if (
auto SizeAttr = Die.
find(DW_AT_byte_size))
519 if (std::optional<uint64_t>
Size = SizeAttr->getAsUnsignedConstant())
523 case DW_TAG_pointer_type:
524 case DW_TAG_reference_type:
525 case DW_TAG_rvalue_reference_type:
527 case DW_TAG_ptr_to_member_type: {
529 if (
BaseType.getTag() == DW_TAG_subroutine_type)
530 return 2 * PointerSize;
533 case DW_TAG_const_type:
534 case DW_TAG_immutable_type:
535 case DW_TAG_volatile_type:
536 case DW_TAG_restrict_type:
537 case DW_TAG_template_alias:
538 case DW_TAG_typedef: {
543 case DW_TAG_array_type: {
547 std::optional<uint64_t> BaseSize =
553 if (Child.getTag() != DW_TAG_subrange_type)
556 if (
auto ElemCountAttr = Child.find(DW_AT_count))
557 if (std::optional<uint64_t> ElemCount =
558 ElemCountAttr->getAsUnsignedConstant())
560 if (
auto UpperBoundAttr = Child.find(DW_AT_upper_bound))
561 if (std::optional<int64_t> UpperBound =
562 UpperBoundAttr->getAsSignedConstant()) {
563 int64_t LowerBound = 0;
564 if (
auto LowerBoundAttr = Child.find(DW_AT_lower_bound))
565 LowerBound = LowerBoundAttr->getAsSignedConstant().value_or(0);
566 Size *= *UpperBound - LowerBound + 1;
592 Die.
dump(OS, Indent, DumpOpts);
622 OS <<
format(
" [%u] %c", abbrCode,
623 AbbrevDecl->hasChildren() ?
'*' :
' ');
624 if (std::optional<uint32_t> ParentIdx = Die->getParentIdx())
625 OS <<
format(
" (0x%8.8" PRIx64
")",
626 U->getDIEAtIndex(*ParentIdx).getOffset());
640 Child.
dump(OS, Indent + 2, ChildDumpOpts);
645 OS <<
"Abbreviation code not found in 'debug_abbrev' class for code: "
649 OS.
indent(Indent) <<
"NULL\n";
693 auto AbbrDecl = Die.getAbbreviationDeclarationPtr();
694 assert(AbbrDecl &&
"Must have abbreviation declaration");
697 Index = AbbrDecl->getNumAttributes();
700 AttrValue.Offset =
D.getOffset() + AbbrDecl->getCodeByteSize();
701 updateForIndex(*AbbrDecl, 0);
705void DWARFDie::attribute_iterator::updateForIndex(
710 if (
Index < NumAttrs) {
713 AttrValue.Offset += AttrValue.ByteSize;
714 uint64_t ParseOffset = AttrValue.Offset;
720 auto U = Die.getDwarfUnit();
721 assert(U &&
"Die must have valid DWARF unit");
725 AttrValue.ByteSize = ParseOffset - AttrValue.Offset;
727 assert(
Index == NumAttrs &&
"Indexes should be [0, NumAttrs) only");
733 if (
auto AbbrDecl = Die.getAbbreviationDeclarationPtr())
734 updateForIndex(*AbbrDecl, Index + 1);
741 case DW_AT_string_length:
742 case DW_AT_return_addr:
743 case DW_AT_data_member_location:
744 case DW_AT_frame_base:
745 case DW_AT_static_link:
747 case DW_AT_use_location:
748 case DW_AT_vtable_elem_location:
759 case DW_AT_byte_size:
760 case DW_AT_bit_offset:
762 case DW_AT_string_length:
763 case DW_AT_lower_bound:
764 case DW_AT_return_addr:
765 case DW_AT_bit_stride:
766 case DW_AT_upper_bound:
768 case DW_AT_data_member_location:
769 case DW_AT_frame_base:
771 case DW_AT_static_link:
772 case DW_AT_use_location:
773 case DW_AT_vtable_elem_location:
774 case DW_AT_allocated:
775 case DW_AT_associated:
776 case DW_AT_data_location:
777 case DW_AT_byte_stride:
779 case DW_AT_call_value:
780 case DW_AT_call_origin:
781 case DW_AT_call_target:
782 case DW_AT_call_target_clobbered:
783 case DW_AT_call_data_location:
784 case DW_AT_call_data_value:
786 case DW_AT_GNU_call_site_value:
787 case DW_AT_GNU_call_site_target:
801 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.
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.
LocallyHashedType DenseMapInfo< LocallyHashedType >::Tombstone
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...
DWARFTypeUnit * getTypeUnitForHash(uint64_t Hash, bool IsDWO)
const DWARFObject & getDWARFObj() 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::DWARFFormValue DWARFFormValue
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
DWARFContext & getContext() const
DWARFDie getDIEForOffset(uint64_t Offset)
Return the DIE object for a given offset Offset inside the unit's DIE vector.
const DWARFUnitVector & getUnitVector() const
Return the DWARFUnitVector containing this unit.
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.
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)
Calculates the starting offsets for various sections within the .debug_names section.
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.
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.
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.
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)
FunctionAddr VTableAddr uintptr_t uintptr_t Data
DINameKind
A DINameKind is passed to name search methods to specify a preference regarding the type of name reso...
std::string toString(const APInt &I, unsigned Radix, bool Signed, bool formatAsCLiteral=false, bool UpperCase=true, bool InsertSeparators=false)
LLVM_ABI void dumpTypeUnqualifiedName(const DWARFDie &DIE, raw_ostream &OS, std::string *OriginalFullName=nullptr)
void consumeError(Error Err)
Consume a Error without doing anything.
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.
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.
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.