From: Daniel Jacobowitz <drow@false.org>
To: Vladimir Prus <vladimir@codesourcery.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: Variable objects laziness
Date: Fri, 17 Nov 2006 18:12:00 -0000 [thread overview]
Message-ID: <20061117181246.GB6133@nevyn.them.org> (raw)
In-Reply-To: <ejkqqg$q0t$1@sea.gmane.org>
On Fri, Nov 17, 2006 at 08:17:04PM +0300, Vladimir Prus wrote:
> - if (gdb_evaluate_expression (var->root->exp, &var->value))
> + if (gdb_evaluate_expression (var->root->exp, &value))
> {
> /* no error */
> - if (value_lazy (var->value))
> - gdb_value_fetch_lazy (var->value);
> }
> else
> - var->value = evaluate_type (var->root->exp);
> + value = evaluate_type (var->root->exp);
Noticed while working on another patch: can you kill the empty braces
here, please (by negating the if/dropping the else).
> + /* Need to coerce the input. We want to check if the
> + value of the variable object will be different
> + after assignment, and the first thing value_assign
> + does is coercing the input.
"is coerce"
> + For example, it means that if assigning array to
> + a pointer variable, we'll be comparing pointer with array's
> + address, not pointer with array's content. */
For example, if we are assigning an array to a pointer variable we
should compare the pointer with the the array's address, not with the
array's content.
> + /* The new value may be lazy. gdb_value_assign, or
Two spaces after period please.
> + rather value_contents, will take care of this.
> + It might throw, but unlike var-update for -var-assign
> + there's just one variable we're working it, so we don't
> + need to catch the exception here. */
Wait, what? gdb_value_assign will never throw. value_contents
might, but gdb_value_assign will catch it.
> + Return 1 if so, and 0 is the values are equal. */
if, not is.
> + /* We must always keep the new value, since children depend on it. */
Two spaces after periods please.
--
Daniel Jacobowitz
CodeSourcery
next prev parent reply other threads:[~2006-11-17 18:12 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-14 13:43 Vladimir Prus
2006-11-14 20:47 ` Daniel Jacobowitz
2006-11-15 9:04 ` Vladimir Prus
2006-11-15 16:25 ` Daniel Jacobowitz
2006-11-17 9:23 ` Vladimir Prus
2006-11-17 10:40 ` Mark Kettenis
2006-11-17 10:45 ` Vladimir Prus
2006-11-17 14:22 ` Daniel Jacobowitz
2006-11-17 15:01 ` Vladimir Prus
2006-11-17 17:19 ` Vladimir Prus
2006-11-17 18:12 ` Daniel Jacobowitz [this message]
2006-11-18 9:48 ` Vladimir Prus
2006-11-28 17:09 ` Daniel Jacobowitz
2006-12-04 19:27 ` Vladimir Prus
2006-11-15 2:45 Nick Roberts
2006-11-15 9:22 ` Vladimir Prus
2006-11-29 8:59 Nick Roberts
2006-11-29 2:08 ` Nick Roberts
2006-11-29 2:55 ` Daniel Jacobowitz
2006-11-29 4:14 ` Nick Roberts
2006-11-29 7:25 ` Vladimir Prus
2006-11-29 13:45 ` Daniel Jacobowitz
2006-11-29 13:56 ` Vladimir Prus
2006-11-29 20:25 ` Nick Roberts
2006-11-29 9:09 ` Vladimir Prus
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=20061117181246.GB6133@nevyn.them.org \
--to=drow@false.org \
--cc=gdb-patches@sources.redhat.com \
--cc=vladimir@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