From: Richard Henderson <rth@twiddle.net>
To: Aurelien Jarno <aurelien@aurel32.net>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] tcg: fix dead computation for repeated input arguments
Date: Tue, 19 May 2015 07:46:04 -0700 [thread overview]
Message-ID: <555B4CAC.30805@twiddle.net> (raw)
In-Reply-To: <1432031208-20020-1-git-send-email-aurelien@aurel32.net>
On 05/19/2015 03:26 AM, Aurelien Jarno wrote:
> @@ -1522,6 +1522,9 @@ static void tcg_liveness_analysis(TCGContext *s)
> if (dead_temps[arg]) {
> dead_args |= (1 << i);
> }
> + }
> + for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
> + arg = args[i];
> dead_temps[arg] = 0;
> }
> s->op_dead_args[oi] = dead_args;
How about another line of commentary for each loop?
Something like
/* Record arguments that die in this opcode. */
for the first and
/* Input arguments are live for preceeding opcodes. */
for the second.
As for the same loop for calls, you're right that it may well cause us to do a
tiny bit of redundant work, but nothing else bad will happen. We'll enter
temp_dead more times than necessary. I'm always skeptical about knowingly
giving a compiler bad information though. You tend to not know how data is
going to be used in future, and *then* get bad results.
r~
next prev parent reply other threads:[~2015-05-19 14:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-19 10:26 [Qemu-devel] [PATCH] tcg: fix dead computation for repeated input arguments Aurelien Jarno
2015-05-19 14:46 ` Richard Henderson [this message]
2015-05-21 18:35 ` Aurelien Jarno
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=555B4CAC.30805@twiddle.net \
--to=rth@twiddle.net \
--cc=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.