From: Jan Kratochvil <jan.kratochvil@redhat.com>
To: Yao Qi <yao@codesourcery.com>
Cc: Tom Tromey <tromey@redhat.com>, Doug Evans <dje@google.com>,
gdb-patches@sourceware.org
Subject: Re: [RFC] Don't allow setting register in non-innermost frame
Date: Mon, 10 Sep 2012 07:47:00 -0000 [thread overview]
Message-ID: <20120910074639.GA26588@host2.jankratochvil.net> (raw)
In-Reply-To: <504D49DA.6070006@codesourcery.com>
On Mon, 10 Sep 2012 04:00:58 +0200, Yao Qi wrote:
> --- /dev/null
> +++ b/gdb/testsuite/gdb.base/set-reg.c
[...]
> +main (int argc, char **argv)
Two spaces.
[...]
> --- a/gdb/valops.c
> +++ b/gdb/valops.c
> @@ -1241,6 +1241,22 @@ value_assign (struct value *toval, struct value *fromval)
> and then restore the new frame afterwards. */
> old_frame = get_frame_id (deprecated_safe_get_selected_frame ());
>
> + /* TOVAL is a register, although VALUE_LVAL(TOVAL) may not be
GNU formatting applies also to comments: VALUE_LVAL (TOVAL)
> + lval_register. A call-saved register saved in memory will have
> + 'VALUE_REGNUM >= 0' but 'VALUE_LVAL == lval_memory'. We also have to
> + avoid emitting warning when assign value to some local variables which
> + are stored in registers, TYPE_OBJFILE_OWNED helps to differentiate
> + we are assigning to a register explicitly or to a variable saved in
> + register. */
> + if (VALUE_REGNUM (toval) >= 0 && !TYPE_OBJFILE_OWNED (type))
There should be a better comment at value->regnum:
/* Register number if the value is from a register. */
short regnum;
as currently it looks to me that value->regnum is not defined for
value->lval != lval_register
This your patch IMO exploits side-effect behavior of value_of_register
function implementation, it would be good to document we depend now on this
REGNUM meaning in both value->regnum and in value_of_register.
> + {
> + /* Figure out which frame this is in currently. */
> + struct frame_info *frame = frame_find_by_id (VALUE_FRAME_ID (toval));
> +
> + if (get_next_frame (frame) != NULL)
This is not safe, I do not have a countercase reproducer but in general
frame_find_by_id can return NULL and even the code below checks for it:
case lval_register:
[...]
frame = frame_find_by_id (VALUE_FRAME_ID (toval));
[...]
if (!frame)
error (_("Value being assigned to is no longer active."));
Something could call reinit_frame_cache in the meantime (see the issues from
PR 13866) and then frame_ids may become stale.
Either put there also the error check/call or I would find easier:
if (frame_relative_level (frame) == 0)
> + warning (_("Assigning to register in non-innermost frame."));
Are you / other people really against a query() here?
This way if one does the non-zero frame assignment it will print the warning.
User says oops, I did not want to do it - but the damage has been already
done, unintended memory is overwritten and there is no way back.
I was suggesting something like:
if (!query (_("Really assign to stored register in non-innermost frame? ")))
error (_("Not confirmed."));
I understand you are more concerned with MI but if I read correctly MI will
answer it as 'y', unaware whether the query message gets propagated to your MI
frontend so maybe you would like:
if (query (_("Really assign to stored register in non-innermost frame? ")))
warning (_("Assigning to register in non-innermost frame."));
else
error (_("Not confirmed."));
> + }
> +
> switch (VALUE_LVAL (toval))
> {
> case lval_internalvar:
> --
> 1.7.7.6
Thanks,
Jan
next prev parent reply other threads:[~2012-09-10 7:47 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-17 2:21 Yao Qi
2012-08-20 20:19 ` Doug Evans
2012-08-21 3:27 ` Yao Qi
2012-08-23 16:25 ` Tom Tromey
2012-08-29 9:51 ` Yao Qi
2012-09-04 22:37 ` dje
2012-09-07 10:01 ` Yao Qi
2012-09-07 10:11 ` Eli Zaretskii
2012-09-07 10:21 ` Yao Qi
2012-09-07 11:27 ` Eli Zaretskii
2012-09-07 13:14 ` Yao Qi
2012-09-07 14:32 ` Eli Zaretskii
2012-09-07 16:46 ` Jan Kratochvil
2012-09-09 2:31 ` Yao Qi
2012-09-10 2:02 ` Yao Qi
2012-09-10 7:47 ` Jan Kratochvil [this message]
2012-09-10 19:43 ` Jan Kratochvil
2012-09-11 17:12 ` Tom Tromey
2012-09-11 17:19 ` Jan Kratochvil
2012-09-11 17:23 ` Tom Tromey
2012-09-12 0:51 ` Yao Qi
2012-09-12 13:19 ` Jan Kratochvil
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=20120910074639.GA26588@host2.jankratochvil.net \
--to=jan.kratochvil@redhat.com \
--cc=dje@google.com \
--cc=gdb-patches@sourceware.org \
--cc=tromey@redhat.com \
--cc=yao@codesourcery.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