public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Support for DW_FORM_strx tag
@ 2019-04-23  2:08 Ali Tamur via gdb-patches
  2019-04-23 12:33 ` Andrew Burgess
  0 siblings, 1 reply; 3+ messages in thread
From: Ali Tamur via gdb-patches @ 2019-04-23  2:08 UTC (permalink / raw)
  To: gdb-patches

DW_FORM_strx is the new name of DW_FORM_GNU_str_index in the Dwarf 5
standard.
This is a small step towards supporting Dwarf 5 in gdb.

gdb/ChangeLog
2019-04-27  Ali Tamur  <tamur@google.com>

        * dwarf2read.c (skip_one_die): Add DW_FORM_strx
        (read_attribute_value): Likewise
        (dwarf2_read_addr_index): Update comment
        (read_str_index): Add DW_FORM_strx
        (dwarf2_string_attr): Likewise
        (dwarf2_const_value_attr): Likewise
        (dump_die_shallow): Likewise
        (dwarf2_fetch_constant_bytes): Likewise
        (skip_form_bytes): Likewise
---
 gdb/dwarf2read.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 829b07f01a..09ecd4fbd4 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -9369,6 +9369,7 @@ skip_one_die (const struct die_reader_specs *reader,
const gdb_byte *info_ptr,
          info_ptr += 4 + read_4_bytes (abfd, info_ptr);
          break;
        case DW_FORM_addrx:
+       case DW_FORM_strx:
        case DW_FORM_sdata:
        case DW_FORM_udata:
        case DW_FORM_ref_udata:
@@ -19295,6 +19296,7 @@ read_attribute_value (const struct die_reader_specs
*reader,
       DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr,
&bytes_read);
       info_ptr += bytes_read;
       break;
+    case DW_FORM_strx:
     case DW_FORM_GNU_str_index:
       if (reader->dwo_file == NULL)
        {
@@ -19890,7 +19892,7 @@ dwarf2_read_addr_index (struct dwarf2_per_cu_data
*per_cu,
                            addr_size);
 }

-/* Given a DW_FORM_GNU_str_index, fetch the string.
+/* Given a DW_FORM_GNU_str_index or DW_FORM_strx, fetch the string.
    This is only used by the Fission support.  */

 static const char *
@@ -19907,7 +19909,7 @@ read_str_index (const struct die_reader_specs
*reader, ULONGEST str_index)
     &reader->dwo_file->sections.str_offsets;
   const gdb_byte *info_ptr;
   ULONGEST str_offset;
-  static const char form_name[] = "DW_FORM_GNU_str_index";
+  static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";

   dwarf2_read_section (objfile, str_section);
   dwarf2_read_section (objfile, str_offsets_section);
@@ -20073,6 +20075,7 @@ dwarf2_string_attr (struct die_info *die, unsigned
int name, struct dwarf2_cu *c
     {
       if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
          || attr->form == DW_FORM_string
+         || attr->form == DW_FORM_strx
          || attr->form == DW_FORM_GNU_str_index
          || attr->form == DW_FORM_GNU_strp_alt)
        str = DW_STRING (attr);
@@ -21896,6 +21899,7 @@ dwarf2_const_value_attr (const struct attribute
*attr, struct type *type,
       break;
     case DW_FORM_string:
     case DW_FORM_strp:
+    case DW_FORM_strx:
     case DW_FORM_GNU_str_index:
     case DW_FORM_GNU_strp_alt:
       /* DW_STRING is already allocated on the objfile obstack, point
@@ -22900,6 +22904,7 @@ dump_die_shallow (struct ui_file *f, int indent,
struct die_info *die)
        case DW_FORM_string:
        case DW_FORM_strp:
        case DW_FORM_line_strp:
+       case DW_FORM_strx:
        case DW_FORM_GNU_str_index:
        case DW_FORM_GNU_strp_alt:
          fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
@@ -23328,6 +23333,7 @@ dwarf2_fetch_constant_bytes (sect_offset sect_off,
       break;
     case DW_FORM_string:
     case DW_FORM_strp:
+    case DW_FORM_strx:
     case DW_FORM_GNU_str_index:
     case DW_FORM_GNU_strp_alt:
       /* DW_STRING is already allocated on the objfile obstack, point
@@ -24293,6 +24299,7 @@ skip_form_bytes (bfd *abfd, const gdb_byte *bytes,
const gdb_byte *buffer_end,

     case DW_FORM_addrx:
     case DW_FORM_sdata:
+    case DW_FORM_strx:
     case DW_FORM_udata:
     case DW_FORM_GNU_addr_index:
     case DW_FORM_GNU_str_index:

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

* Re: [PATCH] Support for DW_FORM_strx tag
  2019-04-23  2:08 [PATCH] Support for DW_FORM_strx tag Ali Tamur via gdb-patches
@ 2019-04-23 12:33 ` Andrew Burgess
  2019-04-25 18:53   ` Ali Tamur via gdb-patches
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Burgess @ 2019-04-23 12:33 UTC (permalink / raw)
  To: Ali Tamur; +Cc: gdb-patches

* Ali Tamur via gdb-patches <gdb-patches@sourceware.org> [2019-04-22 19:07:49 -0700]:

> DW_FORM_strx is the new name of DW_FORM_GNU_str_index in the Dwarf 5
> standard.
> This is a small step towards supporting Dwarf 5 in gdb.

This looks good, with a few minor nits below...

> 
> gdb/ChangeLog
> 2019-04-27  Ali Tamur  <tamur@google.com>
> 
>         * dwarf2read.c (skip_one_die): Add DW_FORM_strx
>         (read_attribute_value): Likewise
>         (dwarf2_read_addr_index): Update comment
>         (read_str_index): Add DW_FORM_strx
>         (dwarf2_string_attr): Likewise
>         (dwarf2_const_value_attr): Likewise
>         (dump_die_shallow): Likewise
>         (dwarf2_fetch_constant_bytes): Likewise
>         (skip_form_bytes): Likewise

These should all have '.' at the end.

> ---
>  gdb/dwarf2read.c | 11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
> index 829b07f01a..09ecd4fbd4 100644
> --- a/gdb/dwarf2read.c
> +++ b/gdb/dwarf2read.c
> @@ -9369,6 +9369,7 @@ skip_one_die (const struct die_reader_specs *reader,
> const gdb_byte *info_ptr,
>           info_ptr += 4 + read_4_bytes (abfd, info_ptr);
>           break;
>         case DW_FORM_addrx:
> +       case DW_FORM_strx:
>         case DW_FORM_sdata:
>         case DW_FORM_udata:
>         case DW_FORM_ref_udata:
> @@ -19295,6 +19296,7 @@ read_attribute_value (const struct die_reader_specs
> *reader,
>        DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr,
> &bytes_read);
>        info_ptr += bytes_read;
>        break;
> +    case DW_FORM_strx:
>      case DW_FORM_GNU_str_index:
>        if (reader->dwo_file == NULL)
>         {
> @@ -19890,7 +19892,7 @@ dwarf2_read_addr_index (struct dwarf2_per_cu_data
> *per_cu,
>                             addr_size);
>  }
> 
> -/* Given a DW_FORM_GNU_str_index, fetch the string.
> +/* Given a DW_FORM_GNU_str_index or DW_FORM_strx, fetch the string.
>     This is only used by the Fission support.  */
> 
>  static const char *
> @@ -19907,7 +19909,7 @@ read_str_index (const struct die_reader_specs
> *reader, ULONGEST str_index)
>      &reader->dwo_file->sections.str_offsets;
>    const gdb_byte *info_ptr;
>    ULONGEST str_offset;
> -  static const char form_name[] = "DW_FORM_GNU_str_index";
> +  static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";
> 
>    dwarf2_read_section (objfile, str_section);
>    dwarf2_read_section (objfile, str_offsets_section);
> @@ -20073,6 +20075,7 @@ dwarf2_string_attr (struct die_info *die, unsigned
> int name, struct dwarf2_cu *c
>      {
>        if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
>           || attr->form == DW_FORM_string
> +         || attr->form == DW_FORM_strx

Your mail client seems to have corrupted the patch slightly so I
couldn't check you had the correct tabs/spaces here.  Please double
check before you commit.

>           || attr->form == DW_FORM_GNU_str_index
>           || attr->form == DW_FORM_GNU_strp_alt)
>         str = DW_STRING (attr);
> @@ -21896,6 +21899,7 @@ dwarf2_const_value_attr (const struct attribute
> *attr, struct type *type,
>        break;
>      case DW_FORM_string:
>      case DW_FORM_strp:
> +    case DW_FORM_strx:
>      case DW_FORM_GNU_str_index:
>      case DW_FORM_GNU_strp_alt:
>        /* DW_STRING is already allocated on the objfile obstack, point
> @@ -22900,6 +22904,7 @@ dump_die_shallow (struct ui_file *f, int indent,
> struct die_info *die)
>         case DW_FORM_string:
>         case DW_FORM_strp:
>         case DW_FORM_line_strp:
> +       case DW_FORM_strx:

Same white space check here please.

>         case DW_FORM_GNU_str_index:
>         case DW_FORM_GNU_strp_alt:
>           fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
> @@ -23328,6 +23333,7 @@ dwarf2_fetch_constant_bytes (sect_offset sect_off,
>        break;
>      case DW_FORM_string:
>      case DW_FORM_strp:
> +    case DW_FORM_strx:
>      case DW_FORM_GNU_str_index:
>      case DW_FORM_GNU_strp_alt:
>        /* DW_STRING is already allocated on the objfile obstack, point
> @@ -24293,6 +24299,7 @@ skip_form_bytes (bfd *abfd, const gdb_byte *bytes,
> const gdb_byte *buffer_end,
> 
>      case DW_FORM_addrx:
>      case DW_FORM_sdata:
> +    case DW_FORM_strx:
>      case DW_FORM_udata:
>      case DW_FORM_GNU_addr_index:
>      case DW_FORM_GNU_str_index:

Additionally could you look at expanding 'proc _handle_DW_FORM' in
gdb/testsuite/lib/dwarf.exp to also handle DW_FORM_strx, this should
just require adding a line like this 'DW_FORM_strx -' at the correct
place.

Thanks,
Andrew

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

* Re: [PATCH] Support for DW_FORM_strx tag
  2019-04-23 12:33 ` Andrew Burgess
@ 2019-04-25 18:53   ` Ali Tamur via gdb-patches
  0 siblings, 0 replies; 3+ messages in thread
From: Ali Tamur via gdb-patches @ 2019-04-25 18:53 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: gdb-patches

Hi,
Sorry, somewhere from terminal to vim to mail client, tabs must have
converted to spaces, I double checked the real patch, it's good.
The patch description with the latest changes are below. I'm committing
now, thank you.
Ali

gdb/ChangeLog
2019-04-25  Ali Tamur  <tamur@google.com>

        * dwarf2read.c (skip_one_die): Add DW_FORM_strx.
        (read_attribute_value): Likewise.
        (dwarf2_read_addr_index): Update comment.
        (read_str_index): Add DW_FORM_strx.
        (dwarf2_string_attr): Likewise.
        (dwarf2_const_value_attr): Likewise.
        (dump_die_shallow): Likewise.
        (dwarf2_fetch_constant_bytes): Likewise.
        (skip_form_bytes): Likewise.
        * testsuite/lib/dwarf.exp (_handle_DW_FORM): Add DW_FORM_strx.
---
 gdb/dwarf2read.c            | 11 +++++++++--
 gdb/testsuite/lib/dwarf.exp |  2 ++
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 829b07f01a..7bf50ca2d2 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -9369,6 +9369,7 @@ skip_one_die (const struct die_reader_specs *reader,
const gdb_byte *info_ptr,
          info_ptr += 4 + read_4_bytes (abfd, info_ptr);
          break;
        case DW_FORM_addrx:
+       case DW_FORM_strx:
        case DW_FORM_sdata:
        case DW_FORM_udata:
        case DW_FORM_ref_udata:
@@ -19295,6 +19296,7 @@ read_attribute_value (const struct die_reader_specs
*reader,
       DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr,
&bytes_read);
       info_ptr += bytes_read;
       break;
+    case DW_FORM_strx:
     case DW_FORM_GNU_str_index:
       if (reader->dwo_file == NULL)
        {
@@ -19890,7 +19892,7 @@ dwarf2_read_addr_index (struct dwarf2_per_cu_data
*per_cu,
                            addr_size);
 }

-/* Given a DW_FORM_GNU_str_index, fetch the string.
+/* Given a DW_FORM_GNU_str_index or DW_FORM_strx, fetch the string.
    This is only used by the Fission support.  */

 static const char *
@@ -19907,7 +19909,7 @@ read_str_index (const struct die_reader_specs
*reader, ULONGEST str_index)
     &reader->dwo_file->sections.str_offsets;
   const gdb_byte *info_ptr;
   ULONGEST str_offset;
-  static const char form_name[] = "DW_FORM_GNU_str_index";
+  static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";

   dwarf2_read_section (objfile, str_section);
   dwarf2_read_section (objfile, str_offsets_section);
@@ -20073,6 +20075,7 @@ dwarf2_string_attr (struct die_info *die, unsigned
int name, struct dwarf2_cu *c
     {
       if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
          || attr->form == DW_FORM_string
+         || attr->form == DW_FORM_strx
          || attr->form == DW_FORM_GNU_str_index
          || attr->form == DW_FORM_GNU_strp_alt)
        str = DW_STRING (attr);
@@ -21896,6 +21899,7 @@ dwarf2_const_value_attr (const struct attribute
*attr, struct type *type,
       break;
     case DW_FORM_string:
     case DW_FORM_strp:
+    case DW_FORM_strx:
     case DW_FORM_GNU_str_index:
     case DW_FORM_GNU_strp_alt:
       /* DW_STRING is already allocated on the objfile obstack, point
@@ -22900,6 +22904,7 @@ dump_die_shallow (struct ui_file *f, int indent,
struct die_info *die)
        case DW_FORM_string:
        case DW_FORM_strp:
        case DW_FORM_line_strp:
+       case DW_FORM_strx:
        case DW_FORM_GNU_str_index:
        case DW_FORM_GNU_strp_alt:
          fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
@@ -23328,6 +23333,7 @@ dwarf2_fetch_constant_bytes (sect_offset sect_off,
       break;
     case DW_FORM_string:
     case DW_FORM_strp:
+    case DW_FORM_strx:
     case DW_FORM_GNU_str_index:
     case DW_FORM_GNU_strp_alt:
       /* DW_STRING is already allocated on the objfile obstack, point
@@ -24293,6 +24299,7 @@ skip_form_bytes (bfd *abfd, const gdb_byte *bytes,
const gdb_byte *buffer_end,

     case DW_FORM_addrx:
     case DW_FORM_sdata:
+    case DW_FORM_strx:
     case DW_FORM_udata:
     case DW_FORM_GNU_addr_index:
     case DW_FORM_GNU_str_index:
diff --git a/gdb/testsuite/lib/dwarf.exp b/gdb/testsuite/lib/dwarf.exp
index 3955e0b154..3a430fcd96 100644
--- a/gdb/testsuite/lib/dwarf.exp
+++ b/gdb/testsuite/lib/dwarf.exp
@@ -527,6 +527,8 @@ namespace eval Dwarf {
            DW_FORM_indirect -
            DW_FORM_exprloc -

+           DW_FORM_strx -
+
            DW_FORM_GNU_addr_index -
            DW_FORM_GNU_str_index -
            DW_FORM_GNU_ref_alt -


On Tue, Apr 23, 2019 at 5:33 AM Andrew Burgess <andrew.burgess@embecosm.com>
wrote:

> * Ali Tamur via gdb-patches <gdb-patches@sourceware.org> [2019-04-22
> 19:07:49 -0700]:
>
> > DW_FORM_strx is the new name of DW_FORM_GNU_str_index in the Dwarf 5
> > standard.
> > This is a small step towards supporting Dwarf 5 in gdb.
>
> This looks good, with a few minor nits below...
>
> >
> > gdb/ChangeLog
> > 2019-04-27  Ali Tamur  <tamur@google.com>
> >
> >         * dwarf2read.c (skip_one_die): Add DW_FORM_strx
> >         (read_attribute_value): Likewise
> >         (dwarf2_read_addr_index): Update comment
> >         (read_str_index): Add DW_FORM_strx
> >         (dwarf2_string_attr): Likewise
> >         (dwarf2_const_value_attr): Likewise
> >         (dump_die_shallow): Likewise
> >         (dwarf2_fetch_constant_bytes): Likewise
> >         (skip_form_bytes): Likewise
>
> These should all have '.' at the end.
>
> > ---
> >  gdb/dwarf2read.c | 11 +++++++++--
> >  1 file changed, 9 insertions(+), 2 deletions(-)
> >
> > diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
> > index 829b07f01a..09ecd4fbd4 100644
> > --- a/gdb/dwarf2read.c
> > +++ b/gdb/dwarf2read.c
> > @@ -9369,6 +9369,7 @@ skip_one_die (const struct die_reader_specs
> *reader,
> > const gdb_byte *info_ptr,
> >           info_ptr += 4 + read_4_bytes (abfd, info_ptr);
> >           break;
> >         case DW_FORM_addrx:
> > +       case DW_FORM_strx:
> >         case DW_FORM_sdata:
> >         case DW_FORM_udata:
> >         case DW_FORM_ref_udata:
> > @@ -19295,6 +19296,7 @@ read_attribute_value (const struct
> die_reader_specs
> > *reader,
> >        DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr,
> > &bytes_read);
> >        info_ptr += bytes_read;
> >        break;
> > +    case DW_FORM_strx:
> >      case DW_FORM_GNU_str_index:
> >        if (reader->dwo_file == NULL)
> >         {
> > @@ -19890,7 +19892,7 @@ dwarf2_read_addr_index (struct dwarf2_per_cu_data
> > *per_cu,
> >                             addr_size);
> >  }
> >
> > -/* Given a DW_FORM_GNU_str_index, fetch the string.
> > +/* Given a DW_FORM_GNU_str_index or DW_FORM_strx, fetch the string.
> >     This is only used by the Fission support.  */
> >
> >  static const char *
> > @@ -19907,7 +19909,7 @@ read_str_index (const struct die_reader_specs
> > *reader, ULONGEST str_index)
> >      &reader->dwo_file->sections.str_offsets;
> >    const gdb_byte *info_ptr;
> >    ULONGEST str_offset;
> > -  static const char form_name[] = "DW_FORM_GNU_str_index";
> > +  static const char form_name[] = "DW_FORM_GNU_str_index or
> DW_FORM_strx";
> >
> >    dwarf2_read_section (objfile, str_section);
> >    dwarf2_read_section (objfile, str_offsets_section);
> > @@ -20073,6 +20075,7 @@ dwarf2_string_attr (struct die_info *die,
> unsigned
> > int name, struct dwarf2_cu *c
> >      {
> >        if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
> >           || attr->form == DW_FORM_string
> > +         || attr->form == DW_FORM_strx
>
> Your mail client seems to have corrupted the patch slightly so I
> couldn't check you had the correct tabs/spaces here.  Please double
> check before you commit.
>
> >           || attr->form == DW_FORM_GNU_str_index
> >           || attr->form == DW_FORM_GNU_strp_alt)
> >         str = DW_STRING (attr);
> > @@ -21896,6 +21899,7 @@ dwarf2_const_value_attr (const struct attribute
> > *attr, struct type *type,
> >        break;
> >      case DW_FORM_string:
> >      case DW_FORM_strp:
> > +    case DW_FORM_strx:
> >      case DW_FORM_GNU_str_index:
> >      case DW_FORM_GNU_strp_alt:
> >        /* DW_STRING is already allocated on the objfile obstack, point
> > @@ -22900,6 +22904,7 @@ dump_die_shallow (struct ui_file *f, int indent,
> > struct die_info *die)
> >         case DW_FORM_string:
> >         case DW_FORM_strp:
> >         case DW_FORM_line_strp:
> > +       case DW_FORM_strx:
>
> Same white space check here please.
>
> >         case DW_FORM_GNU_str_index:
> >         case DW_FORM_GNU_strp_alt:
> >           fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
> > @@ -23328,6 +23333,7 @@ dwarf2_fetch_constant_bytes (sect_offset
> sect_off,
> >        break;
> >      case DW_FORM_string:
> >      case DW_FORM_strp:
> > +    case DW_FORM_strx:
> >      case DW_FORM_GNU_str_index:
> >      case DW_FORM_GNU_strp_alt:
> >        /* DW_STRING is already allocated on the objfile obstack, point
> > @@ -24293,6 +24299,7 @@ skip_form_bytes (bfd *abfd, const gdb_byte
> *bytes,
> > const gdb_byte *buffer_end,
> >
> >      case DW_FORM_addrx:
> >      case DW_FORM_sdata:
> > +    case DW_FORM_strx:
> >      case DW_FORM_udata:
> >      case DW_FORM_GNU_addr_index:
> >      case DW_FORM_GNU_str_index:
>
> Additionally could you look at expanding 'proc _handle_DW_FORM' in
> gdb/testsuite/lib/dwarf.exp to also handle DW_FORM_strx, this should
> just require adding a line like this 'DW_FORM_strx -' at the correct
> place.
>
> Thanks,
> Andrew
>

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

end of thread, other threads:[~2019-04-25 18:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-23  2:08 [PATCH] Support for DW_FORM_strx tag Ali Tamur via gdb-patches
2019-04-23 12:33 ` Andrew Burgess
2019-04-25 18:53   ` Ali Tamur via gdb-patches

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).