From: Pedro Alves <palves@redhat.com>
To: Simon Marchi <simon.marchi@polymtl.ca>, gdb-patches@sourceware.org
Subject: Re: [PATCH 3/4] Use std::vector in solib-target lm_info
Date: Tue, 18 Apr 2017 20:18:00 -0000 [thread overview]
Message-ID: <614e9e92-fa8b-35f3-c15c-9dde043962e8@redhat.com> (raw)
In-Reply-To: <20170416141430.2585-4-simon.marchi@polymtl.ca>
On 04/16/2017 03:14 PM, Simon Marchi wrote:
> Replace the two VEC fields with std::vector.
>
> I found only one place where these lm_infos were allocated, but two
> where they are freed. It looks like solib_target_free_so missed freeing
> section_bases before.
>
> More c++ification is obviously possible, but my goal right now is to get
> rid of VEC (CORE_ADDR).
>
> I wasn't really able to test this, since the list of remote targets that use
> this method of fetching solibs is quite limited (windows, dicos and
> arm-symbian, from what I can see).
Other random "bare metal" / RTOSs that GDB doesn't need to know about
use solib-target too. It's the default solib implementation exactly
to allow for GDB to remain agnostic about them. That doesn't help
you with testing, it's just a FYI.
> /* Handle the start of a <library> element. */
> @@ -119,7 +124,7 @@ library_list_start_library (struct gdb_xml_parser *parser,
> void *user_data, VEC(gdb_xml_value_s) *attributes)
> {
> VEC(lm_info_p) **list = (VEC(lm_info_p) **) user_data;
> - struct lm_info *item = XCNEW (struct lm_info);
Note this was an XCNEW, which means that it zeroed all
memory. Did you check whether all fields are initialized
after the patch?
> + struct lm_info *item = new lm_info;
> const char *name
> = (const char *) xml_find_attribute (attributes, "name")->value;
>
> @@ -135,10 +140,8 @@ library_list_end_library (struct gdb_xml_parser *parser,
> VEC(lm_info_p) **list = (VEC(lm_info_p) **) user_data;
> struct lm_info *lm_info = VEC_last (lm_info_p, *list);
>
> - if (lm_info->segment_bases == NULL
> - && lm_info->section_bases == NULL)
> - gdb_xml_error (parser,
> - _("No segment or section bases defined"));
> + if (lm_info->segment_bases.empty () && lm_info->section_bases.empty ())
> + gdb_xml_error (parser, _("No segment or section bases defined"));
> }
>
>
> @@ -175,9 +178,7 @@ solib_target_free_library_list (void *p)
> for (ix = 0; VEC_iterate (lm_info_p, *result, ix, info); ix++)
> {
> xfree (info->name);
> - VEC_free (CORE_ADDR, info->segment_bases);
> - VEC_free (CORE_ADDR, info->section_bases);
> - xfree (info);
> + delete info;
As a general principle, I'd rather move all destruction bits to
the destructor at the same time when we C++fy a struct.
It doesn't really complicate the patch, while not doing it
makes it easier to leave these bits missed behind in a
random follow up patch that adds a dtor.
I.e., above, I'd prefer to move the xfree to a dtor in
the same patch.
> }
> VEC_free (lm_info_p, *result);
> *result = NULL;
> @@ -326,8 +327,7 @@ solib_target_free_so (struct so_list *so)
> {
> gdb_assert (so->lm_info->name == NULL);
> xfree (so->lm_info->offsets);
> - VEC_free (CORE_ADDR, so->lm_info->segment_bases);
> - xfree (so->lm_info);
> + delete so->lm_info;
Ditto.
Thanks,
Pedro Alves
next prev parent reply other threads:[~2017-04-18 20:18 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-16 14:14 [PATCH 0/4] Remove VEC (CORE_ADDR) Simon Marchi
2017-04-16 14:14 ` [PATCH 1/4] Change field separator in gdbarch.sh Simon Marchi
2017-04-18 20:17 ` Pedro Alves
2017-04-18 20:20 ` Pedro Alves
2017-04-19 4:03 ` Simon Marchi
2017-04-19 10:31 ` Pedro Alves
2017-04-16 14:14 ` [PATCH 4/4] Remove definition of VEC (CORE_ADDR) Simon Marchi
2017-04-18 20:18 ` Pedro Alves
2017-04-16 14:14 ` [PATCH 3/4] Use std::vector in solib-target lm_info Simon Marchi
2017-04-18 20:18 ` Pedro Alves [this message]
2017-04-19 4:18 ` Simon Marchi
2017-04-19 4:30 ` [PATCH v2] " Simon Marchi
2017-04-30 0:35 ` [PATCH v3] Use std::vector in lm_info_target Simon Marchi
2017-04-30 0:42 ` Simon Marchi
2017-05-02 16:06 ` Pedro Alves
2017-05-02 16:12 ` Pedro Alves
2017-05-02 17:25 ` Simon Marchi
2017-05-02 17:37 ` Pedro Alves
2017-05-02 17:50 ` Simon Marchi
2017-04-16 14:15 ` [PATCH 2/4] Change return type of gdbarch_software_single_step to vector<CORE_ADDR> Simon Marchi
2017-04-18 20:17 ` Pedro Alves
2017-04-19 4:08 ` Simon Marchi
2017-04-19 10:32 ` Pedro Alves
2017-05-02 17:35 ` [PATCH 0/4] Remove VEC (CORE_ADDR) Simon Marchi
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=614e9e92-fa8b-35f3-c15c-9dde043962e8@redhat.com \
--to=palves@redhat.com \
--cc=gdb-patches@sourceware.org \
--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