All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Henderson <rth@twiddle.net>
To: Aurelien Jarno <aurelien@aurel32.net>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/9] tcg/optimizer: rework copy progagation
Date: Wed, 19 Sep 2012 14:41:44 -0700	[thread overview]
Message-ID: <505A3C18.5030402@twiddle.net> (raw)
In-Reply-To: <1348084823-18277-4-git-send-email-aurelien@aurel32.net>

On 09/19/2012 01:00 PM, Aurelien Jarno wrote:
> The copy propagation pass tries to keep track of what is a copy of what
> and what has copy of what, and in addition it keep a circular list of
> of all the copies. Unfortunately this doesn't fully work: a mov from
> a temp which has a state "COPY" changes it into a state "HAS_COPY".
> Later when this temp is used again, it is considered has not having
> copy and thus no propagation is done.
> 
> This patch fixes that by removing the hiearchy between copies, and thus
> only keeping a "COPY" state both meaning "is a copy" and "has a copy".
> The decision of which copy to use is deferred to the actual temp
> replacement. At this stage there is not one best choice to do, but only
> better choices than others. For doing the best choice the operation
> would have to be parsed in reversed to know if a temp is going to be
> used later or not. That what is done by the liveness analysis. At this
> stage it is known that globals will always be live, that local temps
> will be dead at the end of the translation block, and that the temps
> will be dead at the end of the basic block. This means that this stage
> should try to replace temps by local temps or globals and local temps
> by globals.
> 
> It also brings the advantage of knowing if a temp is a copy of another,
> which can improve the various optimizations.
> 
> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

Reviewed-by: Richard Henderson <rth@twiddle.net>


r~

  reply	other threads:[~2012-09-19 21:41 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-19 20:00 [Qemu-devel] [PATCH 0/9] tcg/optimize: rework copy propagation Aurelien Jarno
2012-09-19 20:00 ` [Qemu-devel] [PATCH 1/9] tcg/optimizer: remove TCG_TEMP_ANY Aurelien Jarno
2012-09-19 21:25   ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 2/9] tcg/optimizer: check types in copy propagation Aurelien Jarno
2012-09-19 21:33   ` Richard Henderson
2012-09-20  5:54     ` Aurelien Jarno
2012-09-20 14:00       ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 3/9] tcg/optimizer: rework copy progagation Aurelien Jarno
2012-09-19 21:41   ` Richard Henderson [this message]
2012-09-19 20:00 ` [Qemu-devel] [PATCH 4/9] tcg/optimize: do copy propagation for all operations Aurelien Jarno
2012-09-19 21:43   ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 5/9] tcg/optimize: optimize "op r, a, a => mov r, a" Aurelien Jarno
2012-09-19 21:43   ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 6/9] tcg/optimize: optimize "op r, a, a => movi r, 0" Aurelien Jarno
2012-09-19 21:46   ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 7/9] tcg/optimize: further optimize brcond/setcond Aurelien Jarno
2012-09-19 21:48   ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 8/9] tcg/optimize: prefer the "op a, a, b" form for commutative ops Aurelien Jarno
2012-09-19 21:49   ` Richard Henderson
2012-09-19 20:00 ` [Qemu-devel] [PATCH 9/9] tcg: remove #ifdef #endif around TCGOpcode tests Aurelien Jarno
2012-09-19 21:50   ` Richard Henderson
2012-09-21 12:36 ` [Qemu-devel] [PATCH 0/9] tcg/optimize: rework copy propagation Laurent Desnogues

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=505A3C18.5030402@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.