This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH][gdb] Mention CU offset for <artifical> if verbose
- From: "Christian Biesinger via gdb-patches" <gdb-patches at sourceware dot org>
- To: Tom de Vries <tdevries at suse dot de>
- Cc: gdb-patches <gdb-patches at sourceware dot org>
- Date: Fri, 7 Feb 2020 09:45:06 -0500
- Subject: Re: [PATCH][gdb] Mention CU offset for <artifical> if verbose
- References: <20200207113429.GA6532@delia>
- Reply-to: Christian Biesinger <cbiesinger at google dot com>
On Fri, Feb 7, 2020 at 6:34 AM Tom de Vries <tdevries@suse.de> wrote:
> diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
> index dafe01d94a..28ade424fd 100644
> --- a/gdb/dwarf2read.c
> +++ b/gdb/dwarf2read.c
> @@ -8020,6 +8020,20 @@ create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
> struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
> dwarf2_psymtab *pst;
>
> + const char *artificial = "<artificial>";
This may not matter but I'd use static const char artificial[] = "..."
> + if (strcmp (name, artificial) == 0)
> + {
> + sect_offset cu_offset = per_cu->sect_off;
> + const char *cu_offset_str = sect_offset_str (cu_offset);
> + const char *sep = "@";
> + char *new_name = (char *) xmalloc (strlen (artificial) + strlen (sep)
> + + strlen (cu_offset_str) + 1);
> + strcpy (new_name, artificial);
> + strcat (new_name, sep);
> + strcat (new_name, cu_offset_str);
Use concat() instead of malloc/strcpy/strcat?
> + name = new_name;
> + }
> +
> pst = new dwarf2_psymtab (name, objfile, 0);
>
> pst->psymtabs_addrmap_supported = true;