public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [Bug libdw/23982] New: dwarf_formref_die() does not support DW_FORM_indirect
@ 2018-12-13 17:21 Andreas.Kromke at dreamchip dot de
  2018-12-25 16:47 ` [Bug libdw/23982] " mark at klomp dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Andreas.Kromke at dreamchip dot de @ 2018-12-13 17:21 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=23982

            Bug ID: 23982
           Summary: dwarf_formref_die() does not support DW_FORM_indirect
           Product: elfutils
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libdw
          Assignee: unassigned at sourceware dot org
          Reporter: Andreas.Kromke at dreamchip dot de
                CC: elfutils-devel at sourceware dot org
  Target Milestone: ---

This kind of indirect form is generated by some ARM compilers.

A temporary workaround might be:


Dwarf_Attribute *attr = dwarf_attr_integrate(die, DW_AT_type, &attr_mem);
if (attr != NULL)
{
    unsigned int whatform = dwarf_whatform(attr);
    while(whatform == DW_FORM_indirect)
    {
        uint64_t val;
        const unsigned char *p = (const unsigned char *) attr->valp;
        get_uleb128_unchecked(val, p);
        whatform = (unsigned int) val;
        attr_mem.form = whatform;
        attr_mem.valp = (void *) p;
    }
    Dwarf_Die *type = dwarf_formref_die(attr, type_die);
...


However, this method is rather ugly, because it needs the internal function
get_uleb128_unchecked().

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-09-03 13:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-13 17:21 [Bug libdw/23982] New: dwarf_formref_die() does not support DW_FORM_indirect Andreas.Kromke at dreamchip dot de
2018-12-25 16:47 ` [Bug libdw/23982] " mark at klomp dot org
2019-01-02 17:12 ` Andreas.Kromke at dreamchip dot de
2019-01-13 16:39 ` mark at klomp dot org
2021-09-03 13:49 ` mark at klomp dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).