From: Vladimir Prus <ghost@cs.msu.su>
To: gdb-patches@sources.redhat.com
Subject: Re: [ob] unbreak MI
Date: Tue, 27 Nov 2007 06:17:00 -0000 [thread overview]
Message-ID: <figchq$kkt$1@ger.gmane.org> (raw)
In-Reply-To: <18251.35325.929245.184830@kahikatea.snap.net.nz>
Nick Roberts wrote:
> > It appears that some of recent cleanups broke MI, because
> > check_typedef is getting passed a NULL pointer -- this
> > suggest someone did not run a testsuite prior to commit ;-).
> >
> > It does not matter which particular patch broke it, because
> > it's trivially fixable by the attached patch, checked in
> > as obvious.
>
> This fix (now in GDB 6.7) breaks watch expressions of C++ objects on Emacs
> because the MI command "-var-list-children --all-values" no longer always
> includes the value field:
>
> - if (mi_print_value_p (varobj_get_gdb_type (var), print_values))
> + gdb_type = varobj_get_gdb_type (var);
> + if (gdb_type && mi_print_value_p (gdb_type, print_values))
> ui_out_field_string (uiout, "value", varobj_get_value (var));
>
>
> Generally, with a NULL pointer, or and address that can't be dereferenced,
> MI prints out the value field as value="".
>
> What is the problem in this case? Why isn't the right fix to add a
> check_typedef somewhere?
check_typedef? The original problem was that check_typedef was getting
called on NULL pointer, so adding more check_typedef calls won't help.
Probably:
if (!gdb_type)
ui_out_field_string (uiout, "value", "");
else if (mi_print_value_p (gdb_type, print_values))
ui_out_field_string (uiout, "value", varobj_get_value (var));
is the right logic?
- Volodya
next prev parent reply other threads:[~2007-11-27 6:17 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-31 18:45 Vladimir Prus
2007-11-27 3:08 ` Nick Roberts
2007-11-27 6:17 ` Vladimir Prus [this message]
2007-11-27 6:28 ` Nick Roberts
2007-11-27 7:00 ` Vladimir Prus
2007-11-27 10:33 ` Nick Roberts
2007-11-27 10:45 ` Vladimir Prus
2007-11-27 11:08 ` Nick Roberts
2007-11-27 20:47 ` Michael Snyder
2007-11-27 21:05 ` Vladimir Prus
2007-11-27 23:13 ` Nick Roberts
2007-11-27 13:44 ` Daniel Jacobowitz
2007-11-27 23:11 ` Nick Roberts
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='figchq$kkt$1@ger.gmane.org' \
--to=ghost@cs.msu.su \
--cc=gdb-patches@sources.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