From: Aurelien Jarno <aurelien@aurel32.net>
To: Vince Weaver <vince@csl.cornell.edu>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Fix extlh instruction on Alpha
Date: Wed, 16 Sep 2009 22:56:46 +0200 [thread overview]
Message-ID: <20090916205646.GA28487@hall.aurel32.net> (raw)
In-Reply-To: <20090916163826.M50839@stanley.csl.cornell.edu>
On Wed, Sep 16, 2009 at 04:45:20PM -0400, Vince Weaver wrote:
> On Wed, 16 Sep 2009, Aurelien Jarno wrote:
>
> > On Wed, Sep 09, 2009 at 12:08:25PM -0400, Vince Weaver wrote:
>
> > > } else {
> > > + int l1;
> > > TCGv tmp1, tmp2;
> > > - tmp1 = tcg_temp_new();
> > > + tmp1 = tcg_temp_local_new();
> > > + l1 = gen_new_label();
> > > +
> > > tcg_gen_andi_i64(tmp1, cpu_ir[rb], 7);
> > > tcg_gen_shli_i64(tmp1, tmp1, 3);
> > > +
> > > + tcg_gen_mov_i64(cpu_ir[rc], cpu_ir[ra]);
> > > + tcg_gen_brcondi_i64(TCG_COND_EQ, tmp1, 0, l1);
> > > +
> > > tmp2 = tcg_const_i64(64);
> > > tcg_gen_sub_i64(tmp1, tmp2, tmp1);
> > > tcg_temp_free(tmp2);
> >
> > Given that a test costs a lot (partly due to the fact temp local
> > variable must be used), I do wonder if doing a AND here wouldn't
> > be better:
> >
> > tcg_gen_andi_i64(tmp1, tmp1, 0x3f);
>
> I'm not sure I follow.
>
> The code is attempting the following:
>
> tmp1=rb&0x7;
> tmp1=temp1<<3;
>
> if (tmp1!=0) {
> tmp1=64-tmp1;
> rc=ra<<tmp1;
> }
> else {
> rc=ra;
> }
>
> The problem with the original code is that in the case of tmp1 being 0,
> the shift left by 64 would result in 0, instead of the identity.
>
> I tried to avoid the jump but couldn't. Am I missing something?
>
I mean the following code:
tmp1=rb&0x7;
tmp1=temp1<<3;
tmp1=64-tmp1;
tmp1=tmp1 & 0x3f;
rc=ra<<tmp1;
In case tmp1 = 0, it becomes 64, and then 0 again after the and, so
rc=ra<<0.
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
next prev parent reply other threads:[~2009-09-16 20:56 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-09 16:08 [Qemu-devel] [PATCH] Fix extlh instruction on Alpha Vince Weaver
2009-09-16 19:52 ` Aurelien Jarno
2009-09-16 20:45 ` Vince Weaver
2009-09-16 20:56 ` Aurelien Jarno [this message]
2009-09-17 16:07 ` Vince Weaver
2009-09-17 16:25 ` Laurent Desnogues
2009-09-17 16:35 ` [Qemu-devel] " Andreas Schwab
2009-09-17 17:19 ` [Qemu-devel] " Aurelien Jarno
2009-09-16 21:14 ` [Qemu-devel] " Andreas Schwab
-- strict thread matches above, loose matches on Subject: below --
2009-09-17 19:28 [Qemu-devel] " Vince Weaver
2009-09-18 15:25 ` Aurelien Jarno
2009-09-21 2:20 ` Rob Landley
2009-09-21 6:23 ` Laurent Desnogues
2009-09-21 11:37 ` Tristan Gingold
2009-09-21 18:48 ` Rob Landley
2009-09-22 8:04 ` Tristan Gingold
2009-09-21 18:43 ` Rob Landley
2009-08-05 3:26 [Qemu-devel] [patch] " Vince Weaver
2009-08-05 6:05 ` Filip Navara
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=20090916205646.GA28487@hall.aurel32.net \
--to=aurelien@aurel32.net \
--cc=qemu-devel@nongnu.org \
--cc=vince@csl.cornell.edu \
/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.