From: Siva Chandra <sivachandra@google.com>
To: Tom Tromey <tromey@redhat.com>
Cc: gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [RFC] Debug Methods in GDB Python
Date: Sat, 16 Nov 2013 00:05:00 -0000 [thread overview]
Message-ID: <CAGyQ6gzaht0KYTxdFFZDeAo5hxesOmjCAiVomX8d_eV4XGK_CQ@mail.gmail.com> (raw)
In-Reply-To: <87txfds4vf.fsf@fleche.redhat.com>
Thanks a lot for reviewing.
On Fri, Nov 15, 2013 at 1:59 PM, Tom Tromey <tromey@redhat.com> wrote:
> I can do that if you want; but meanwhile I think if you wrote the
> tests...
Yes. Now that you are OK with the general approach, I am going to
write the tests and elaborate the docs. Will send out patches for
these early next week.
> Also I was curious if this supports operator overloading. Like can I
> define an "operator+"?
Yes. Operator overloading is handled the same way as methods. The
operator functions have to be methods though.
> Siva> + if (ext_fnp)
> Siva> + {
> Siva> + if (ext_fn_is_method (ext_fnp))
> Siva> + {
> Siva> + struct value *ret_val;
> Siva> +
> Siva> + ret_val = ext_fn_invoke_method (ext_fnp, arg2, argvec + 2,
> Siva> + nargs - 1);
> Siva> + if (ret_val == NULL)
> Siva> + error (_("Error invoking debug method for method %s."),
> Siva> + tstr);
> Siva> +
> Siva> + return ret_val;
> Siva> + }
> Siva> + }
>
> What happens here if "ext_fnp && !ext_fn_is_method"?
> Siva> +struct py_ext_object
> Siva> +{
> Siva> + /* Holds an instance of the DebugMethod class. */
> Siva> + PyObject *object;
> Siva> +
> Siva> + /* Holds the type of the 'this' object. */
> Siva> + PyObject *match_py_obj_type;
> Siva> +
> Siva> + /* Holds the matching method name. */
> Siva> + const char *match_method;
>
> How "match_method" is allocated and how its lifetime is managed is
> really unclear to me.
I will address the above two question in the next round of review.
next prev parent reply other threads:[~2013-11-15 22:28 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-07 21:22 Siva Chandra
2013-01-29 1:51 ` Siva Chandra
2013-02-25 23:02 ` Siva Chandra
2013-05-10 19:33 ` Tom Tromey
2013-05-10 19:55 ` Siva Chandra
2013-05-14 19:33 ` Tom Tromey
2013-06-17 19:10 ` Siva Chandra
2013-07-22 20:47 ` Tom Tromey
2013-11-12 2:56 ` Siva Chandra
2013-11-15 22:28 ` Tom Tromey
2013-11-16 0:05 ` Siva Chandra [this message]
2013-11-16 0:54 ` Doug Evans
2013-11-16 1:03 ` Siva Chandra
2013-11-16 2:48 ` Siva Chandra
2013-11-20 0:03 ` Doug Evans
2013-11-19 23:52 ` Doug Evans
2013-11-20 0:39 ` Siva Chandra
2013-11-20 2:48 ` Doug Evans
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=CAGyQ6gzaht0KYTxdFFZDeAo5hxesOmjCAiVomX8d_eV4XGK_CQ@mail.gmail.com \
--to=sivachandra@google.com \
--cc=gdb-patches@sourceware.org \
--cc=tromey@redhat.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