From: Simon Marchi <simon.marchi@polymtl.ca>
To: Pedro Alves <palves@redhat.com>
Cc: Simon Marchi <simon.marchi@ericsson.com>,
gdb-patches@sourceware.org, Tom Tromey <tom@tromey.com>
Subject: Re: [PATCH 4/5] Make Python inferior-related internal functions return a gdbpy_inf_ref
Date: Thu, 09 Feb 2017 16:39:00 -0000 [thread overview]
Message-ID: <cb3cbe37f95b1cbf75c51043fe206aa5@polymtl.ca> (raw)
In-Reply-To: <0bf1c645-7efb-4348-feee-5c848f71fee8@redhat.com>
Thanks for the comments. I'll update my branch, but I'll wait until
Tom's series is pushed and see what's still relevant in mine.
On 2017-02-09 07:30, Pedro Alves wrote:
>> @@ -207,39 +207,38 @@ python_new_objfile (struct objfile *objfile)
>> representing INFERIOR. If the object has already been created,
>> return it and increment the reference count, otherwise, create
>> it.
>> Return NULL on failure. */
>> -inferior_object *
>> +gdbpy_inf_ref
>> inferior_to_inferior_object (struct inferior *inferior)
>> {
> ...
>> - if (!inf_obj)
>> - return NULL;
>> + if (inf_obj == NULL)
>> + return gdbpy_inf_ref ();
>
> You shouldn't need changes like this one. gdbpy_ref has an
> implicit ctor that takes nullptr_t exactly to allow implicit
> construction from null.
Ok. This required adding the corresponding constructor in
gdbpy_ref_base:
gdbpy_ref_base (const std::nullptr_t)
: gdb::ref_ptr<T, gdbpy_ref_policy<T>> (nullptr)
{
}
>> /* Find thread entry in its inferior's thread_list. */
>> - for (entry = &inf_obj->threads; *entry != NULL; entry =
>> - &(*entry)->next)
>> + for (entry = &inf_obj_ref.get ()->threads;
>
> Hmm, changes like these are odd. gdbpy_ref has an operator->
> implementation, so inf_obj->threads should do the right thing?
Hmm you're right, not sure why I added those.
>> @@ -815,7 +809,10 @@ py_free_inferior (struct inferior *inf, void
>> *datum)
>> PyObject *
>> gdbpy_selected_inferior (PyObject *self, PyObject *args)
>> {
>> - return (PyObject *) inferior_to_inferior_object (current_inferior
>> ());
>> + gdbpy_inf_ref inf_obj_ref (inferior_to_inferior_object
>> (current_inferior ()));
>
> If the function returns gdbpy_inf_ref already, I much prefer
> using = initialization over (), like:
>
> gdbpy_inf_ref inf_obj_ref
> = inferior_to_inferior_object (current_inferior ());
>
> The reason is that this makes it more obvious what is going on.
> The ctor taking a PyObject* is explicit so inferior_to_inferior_object
> must be returning a gdbpy_inf_ref.
>
> With:
>
> gdbpy_inf_ref inf_obj_ref (inferior_to_inferior_object
> (current_inferior ()));
>
> one has to wonder what constructor is being called, and whether there's
> some kind of explicit conversion going on.
>
> So the = version is more to the point and thus makes it
> for a clearer read because there's less to reason about.
Right, it's more obvious.
Thanks,
Simon
next prev parent reply other threads:[~2017-02-09 16:39 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-23 22:43 [PATCH 0/5] Improve Python Inferior reference handling + fix a bug Simon Marchi
2017-01-23 22:43 ` [PATCH 5/5] Add missing incref when creating Inferior Python object Simon Marchi
2017-02-25 18:41 ` Simon Marchi
2017-04-27 21:13 ` [pushed master+8.0] " Simon Marchi
2017-01-23 22:43 ` [PATCH 3/5] Make Python inferior-related internal functions return inferior_object* Simon Marchi
2017-01-24 0:03 ` Pedro Alves
2017-01-23 22:43 ` [PATCH 4/5] Make Python inferior-related internal functions return a gdbpy_inf_ref Simon Marchi
2017-01-24 16:15 ` Simon Marchi
2017-02-09 12:30 ` Pedro Alves
2017-02-09 16:39 ` Simon Marchi [this message]
2017-01-23 22:43 ` [PATCH 1/5] Introduce specialized versions of gdbpy_ref Simon Marchi
2017-01-24 15:54 ` Tom Tromey
2017-01-24 16:18 ` Simon Marchi
2017-02-09 11:58 ` Pedro Alves
2017-02-09 16:18 ` Simon Marchi
2017-01-23 22:43 ` [PATCH 2/5] Add Python Inferior object debug traces 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=cb3cbe37f95b1cbf75c51043fe206aa5@polymtl.ca \
--to=simon.marchi@polymtl.ca \
--cc=gdb-patches@sourceware.org \
--cc=palves@redhat.com \
--cc=simon.marchi@ericsson.com \
--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