From: Simon Marchi <simon.marchi@polymtl.ca>
To: Tom Tromey <tom@tromey.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [RFA] C++-ify skip.c
Date: Mon, 07 Aug 2017 11:46:00 -0000 [thread overview]
Message-ID: <5e21aff786d07501d546194f8f48e5bb@polymtl.ca> (raw)
In-Reply-To: <20170806194231.26627-1-tom@tromey.com>
On 2017-08-06 21:42, Tom Tromey wrote:
> I happened to notice that skiplist_entry, in skip.c, contains a
> gdb::optional<compiled_regex> -- but that this object's destructor is
> never run. This can result in a memory leak.
>
> This patch fixes the bug by applying a bit more C++: changing this
> code to use new and delete, and std::unique_ptr; and removing cleanups
> in the process.
>
> Built and regression tested on x86-64 Fedora 25.
Ah thanks, I tripped on this with me poison-XNEW patch. I didn't have
the time to fix and post it yet.
> ChangeLog
> 2017-08-06 Tom Tromey <tom@tromey.com>
>
> * skip.c (skiplist_entry): New constructor.
> (~skiplist_entry): New destructor.
> (skiplist_entry::enabled): Now bool.
> (make_skip_entry): Return a unique_ptr. Use new.
> (free_skiplist_entry, free_skiplist_entry_cleanup)
> (make_free_skiplist_entry_cleanup): Remove.
> (skip_command, skip_disable_command, add_skiplist_entry): Update.
> (skip_delete_command): Update. Use delete.
> ---
> gdb/ChangeLog | 11 ++++++++
> gdb/skip.c | 89
> +++++++++++++++++++++++------------------------------------
> 2 files changed, 45 insertions(+), 55 deletions(-)
>
> diff --git a/gdb/ChangeLog b/gdb/ChangeLog
> index 722fade..12e0d02 100644
> --- a/gdb/ChangeLog
> +++ b/gdb/ChangeLog
> @@ -1,3 +1,14 @@
> +2017-08-06 Tom Tromey <tom@tromey.com>
> +
> + * skip.c (skiplist_entry): New constructor.
> + (~skiplist_entry): New destructor.
> + (skiplist_entry::enabled): Now bool.
> + (make_skip_entry): Return a unique_ptr. Use new.
> + (free_skiplist_entry, free_skiplist_entry_cleanup)
> + (make_free_skiplist_entry_cleanup): Remove.
> + (skip_command, skip_disable_command, add_skiplist_entry): Update.
> + (skip_delete_command): Update. Use delete.
> +
> 2017-08-05 Tom Tromey <tom@tromey.com>
>
> * compile/compile-object-load.c (compile_object_load): Use
> diff --git a/gdb/skip.c b/gdb/skip.c
> index bf44913..f3291f3 100644
> --- a/gdb/skip.c
> +++ b/gdb/skip.c
> @@ -38,6 +38,24 @@
>
> struct skiplist_entry
> {
> + skiplist_entry (int file_is_glob_, const char *file_,
> + int function_is_regexp_, const char *function_)
> + : number (-1),
> + file_is_glob (file_is_glob_),
file_is_glob and function_is_regexp can probably be changed to bools
too.
> + file (file_ == NULL ? NULL : xstrdup (file_)),
> + function_is_regexp (function_is_regexp_),
> + function (function_ == NULL ? NULL : xstrdup (function_)),
If we are strdup'ing (making a copy) file and function, we might as well
store them in std::strings, so we don't need to explicitly xfree them.
And the implicitly defined copy constructor/assignment operator will
also work (which is not the case now). An empty string is probably
enough to mean the field is not used (which is expressed by a NULL value
currently).
Thanks,
Simon
next prev parent reply other threads:[~2017-08-07 11:46 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-06 19:42 Tom Tromey
2017-08-07 11:46 ` Simon Marchi [this message]
2017-08-07 13:58 ` Tom Tromey
2017-08-07 14:32 ` Simon Marchi
2017-08-08 19:52 ` Tom Tromey
2017-08-09 9:15 ` Simon Marchi
2017-08-09 18:32 ` Tom Tromey
2017-08-10 19:34 ` [PATCH] More gdb/skip.c C++ification Pedro Alves
2017-08-10 19:51 ` Pedro Alves
2017-08-10 21:10 ` Tom Tromey
2017-08-11 11:23 ` Pedro Alves
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=5e21aff786d07501d546194f8f48e5bb@polymtl.ca \
--to=simon.marchi@polymtl.ca \
--cc=gdb-patches@sourceware.org \
--cc=tom@tromey.com \
/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