public inbox for dwz@sourceware.org
 help / color / mirror / Atom feed
* [Bug default/27463] New: [dwz] Unhandled DW_FORM_sdata for DW_AT_decl_line
@ 2021-02-24  7:54 vries at gcc dot gnu.org
  2021-02-26 16:06 ` [Bug default/27463] " mark at klomp dot org
  2021-02-26 16:58 ` mark at klomp dot org
  0 siblings, 2 replies; 3+ messages in thread
From: vries at gcc dot gnu.org @ 2021-02-24  7:54 UTC (permalink / raw)
  To: dwz

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

            Bug ID: 27463
           Summary: [dwz] Unhandled DW_FORM_sdata for DW_AT_decl_line
           Product: dwz
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: default
          Assignee: nobody at sourceware dot org
          Reporter: vries at gcc dot gnu.org
                CC: dwz at sourceware dot org
  Target Milestone: ---

Regression since commit 4100572 "Handle DW_FORM_implicit_const for
DW_AT_decl_line".

With the gdb regression testsuite, using target board cc-with-dwz, we run into:
...
$ dwz
build/gdb/testsuite/outputs/gdb.trace/unavailable-dwarf-piece/unavailable-dwarf-piece
-o z
dwz: unavailable-dwarf-piece: Unhandled DW_FORM_sdata for DW_AT_decl_line
...

The commit added this code:
...
          switch (form)
            {
            case DW_FORM_data1: value = read_8 (ptr); handled = true; break;
            case DW_FORM_data2: value = read_16 (ptr); handled = true; break;
            case DW_FORM_data4: value = read_32 (ptr); handled = true; break;
            case DW_FORM_data8: value = read_64 (ptr); handled = true; break;
            case DW_FORM_udata:
              value = read_uleb128 (ptr); handled = true; break;
            case DW_FORM_implicit_const:
              value = t->values[i]; handled = true; break;
            default:
              error (0, 0, "%s: Unhandled %s for %s",
                     dso->filename, get_DW_FORM_str (form),
                     get_DW_AT_str (t->attr[i].attr));
              return 1;
            }
...
and the error case triggers.

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

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

end of thread, other threads:[~2021-02-26 16:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-24  7:54 [Bug default/27463] New: [dwz] Unhandled DW_FORM_sdata for DW_AT_decl_line vries at gcc dot gnu.org
2021-02-26 16:06 ` [Bug default/27463] " mark at klomp dot org
2021-02-26 16:58 ` 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).