From: "Christian Biesinger via gdb-patches" <gdb-patches@sourceware.org>
To: Simon Marchi <simon.marchi@polymtl.ca>
Cc: gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH 6/7] jit: c++-ify gdb_block
Date: Fri, 13 Dec 2019 15:11:00 -0000 [thread overview]
Message-ID: <CAPTJ0XGYM3pnCfmBMZPEgx_JnGSNBapUVN4DTvx+p3HOP0gHFA@mail.gmail.com> (raw)
In-Reply-To: <20191213060323.1799590-7-simon.marchi@polymtl.ca>
On Fri, Dec 13, 2019, 01:04 Simon Marchi <simon.marchi@polymtl.ca> wrote:
> Add a constructor to gdb_block, change the name field to be a
> gdb::unique_xmalloc_ptr.
>
> gdb/ChangeLog:
>
> * jit.c (struct gdb_block): Add constructor, initialize
> real_block field.
> <name): Change type to gdb::unique_xmalloc_ptr.
> (struct gdb_symtab) <~gdb_symtab>: Free blocks with delete.
> (jit_block_open_impl): Use gdb_block constructor.
> (finalize_symtab): Adjust to gdb::unique_xmalloc_ptr.
> ---
> gdb/jit.c | 28 +++++++++++++---------------
> 1 file changed, 13 insertions(+), 15 deletions(-)
>
> diff --git a/gdb/jit.c b/gdb/jit.c
> index 1f6de6796e10..56a51f04eb2f 100644
> --- a/gdb/jit.c
> +++ b/gdb/jit.c
> @@ -428,20 +428,28 @@ jit_read_code_entry (struct gdbarch *gdbarch,
>
> struct gdb_block
> {
> + gdb_block (gdb_block *parent, CORE_ADDR begin, CORE_ADDR end,
> + const char *name)
> + : parent (parent),
> + begin (begin),
> + end (end),
> + name (name != nullptr ? xstrdup (name) : nullptr)
> + {}
> +
> /* The parent of this block. */
> struct gdb_block *parent;
>
> /* Points to the "real" block that is being built out of this
> instance. This block will be added to a blockvector, which will
> then be added to a symtab. */
> - struct block *real_block;
> + struct block *real_block = nullptr;
>
> /* The first and last code address corresponding to this block. */
> CORE_ADDR begin, end;
>
> /* The name of this block (if any). If this is non-NULL, the
> FUNCTION symbol symbol is set to this value. */
> - const char *name;
> + gdb::unique_xmalloc_ptr<char> name;
> };
>
> /* Proxy object for building a symtab. */
> @@ -455,10 +463,7 @@ struct gdb_symtab
> ~gdb_symtab ()
> {
> for (gdb_block *gdb_block_iter : this->blocks)
> - {
> - xfree ((void *) gdb_block_iter->name);
> - xfree (gdb_block_iter);
> - }
> + delete gdb_block_iter;
> }
>
Have you considered making this a vector of unique_ptrs, so you don't have
to manually delete them?
> /* The list of blocks in this symtab. These will eventually be
> @@ -534,16 +539,9 @@ jit_block_open_impl (struct gdb_symbol_callbacks *cb,
> struct gdb_symtab *symtab, struct gdb_block *parent,
> GDB_CORE_ADDR begin, GDB_CORE_ADDR end, const char
> *name)
> {
> - struct gdb_block *block = XCNEW (struct gdb_block);
> -
> - block->begin = (CORE_ADDR) begin;
> - block->end = (CORE_ADDR) end;
> - block->name = name ? xstrdup (name) : NULL;
> - block->parent = parent;
> -
> /* Place the block at the end of the vector, it will be sorted when the
> symtab is finalized. */
> - symtab->blocks.push_back (block);
> + symtab->blocks.push_back (new gdb_block (parent, begin, end, name));
> return symtab->blocks.back ();
> }
>
> @@ -665,7 +663,7 @@ finalize_symtab (struct gdb_symtab *stab, struct
> objfile *objfile)
> SYMBOL_BLOCK_VALUE (block_name) = new_block;
>
> block_name->name = obstack_strdup (&objfile->objfile_obstack,
> - gdb_block_iter->name);
> + gdb_block_iter->name.get ());
>
> BLOCK_FUNCTION (new_block) = block_name;
>
> --
> 2.24.1
>
>
next prev parent reply other threads:[~2019-12-13 15:11 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-13 6:03 [PATCH 0/7] Fix and cleanups in jit.c Simon Marchi
2019-12-13 6:03 ` [PATCH 5/7] jit: make gdb_object::symtabs a vector of unique_ptr Simon Marchi
2019-12-13 17:54 ` Pedro Alves
2019-12-13 18:45 ` Simon Marchi
2019-12-13 18:51 ` Simon Marchi
2019-12-13 19:42 ` Pedro Alves
2019-12-13 6:03 ` [PATCH 1/7] Fix double-free when creating more than one block in JIT debug info reader Simon Marchi
2019-12-13 6:03 ` [PATCH 6/7] jit: c++-ify gdb_block Simon Marchi
2019-12-13 7:54 ` Aktemur, Tankut Baris
2019-12-13 15:06 ` Simon Marchi
2019-12-13 15:11 ` Christian Biesinger via gdb-patches [this message]
2019-12-13 15:18 ` Simon Marchi
2019-12-13 20:57 ` Pedro Alves
2019-12-13 21:02 ` Simon Marchi
2019-12-13 22:20 ` Pedro Alves
2019-12-14 17:39 ` Simon Marchi
2019-12-13 6:03 ` [PATCH 3/7] jit: c++-ify gdb_symtab Simon Marchi
2019-12-13 21:01 ` Tom Tromey
2019-12-13 21:11 ` Simon Marchi
2019-12-13 6:03 ` [PATCH 7/7] jit: make gdb_symtab::blocks a vector of unique_ptr Simon Marchi
2019-12-13 6:03 ` [PATCH 2/7] jit: make gdb_object::symtabs a vector Simon Marchi
2019-12-13 6:18 ` [PATCH 4/7] jit: make gdb_symtab::blocks " Simon Marchi
2019-12-13 15:17 ` Christian Biesinger via gdb-patches
2019-12-13 16:02 ` Simon Marchi
2019-12-13 16:08 ` Christian Biesinger via gdb-patches
2019-12-13 16:14 ` Simon Marchi
2019-12-13 18:17 ` Christian Biesinger via gdb-patches
2019-12-13 22:14 ` Pedro Alves
2019-12-14 17:17 ` Simon Marchi
2019-12-13 21:19 ` [PATCH 0/7] Fix and cleanups in jit.c Tom Tromey
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAPTJ0XGYM3pnCfmBMZPEgx_JnGSNBapUVN4DTvx+p3HOP0gHFA@mail.gmail.com \
--to=gdb-patches@sourceware.org \
--cc=cbiesinger@google.com \
--cc=simon.marchi@polymtl.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox