From: "Andreas Färber" <afaerber@suse.de>
To: Anthony Liguori <anthony@codemonkey.ws>,
Blue Swirl <blauwirbel@gmail.com>
Cc: rdsandiford@googlemail.com, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] mips: Fix BC1ANY[24]F instructions
Date: Sun, 13 May 2012 20:39:45 +0200 [thread overview]
Message-ID: <4FAFFFF1.9000403@suse.de> (raw)
In-Reply-To: <87vcq7ngxo.fsf@firetop.home>
Am 26.11.2011 14:37, schrieb Richard Sandiford:
> There's some dodgy application of De Morgan's law in the emulation
> of the MIPS BC1ANY[24]F instructions: they end up branching only
> if all CCs are false, rather than if one CC is.
>
> Tested on mips64-linux-gnu, where it fixes the GCC MIPS3D tests.
>
> Signed-off-by: Richard Sandiford <rdsandiford@googlemail.com>
> ---
> target-mips/translate.c | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
Ping! Patch has a Reviewed-by. Anthony or Blue, can you apply for 1.1?
http://patchwork.ozlabs.org/patch/127798/
/-F
> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index ba45eb0..2b977b3 100644
> --- a/target-mips/translate.c
> +++ b/target-mips/translate.c
> @@ -6017,7 +6017,7 @@ static void gen_compute_branch1 (CPUState *env, DisasContext *ctx, uint32_t op,
> TCGv_i32 t1 = tcg_temp_new_i32();
> tcg_gen_shri_i32(t0, fpu_fcr31, get_fp_bit(cc));
> tcg_gen_shri_i32(t1, fpu_fcr31, get_fp_bit(cc+1));
> - tcg_gen_nor_i32(t0, t0, t1);
> + tcg_gen_nand_i32(t0, t0, t1);
> tcg_temp_free_i32(t1);
> tcg_gen_andi_i32(t0, t0, 1);
> tcg_gen_extu_i32_tl(bcond, t0);
> @@ -6041,11 +6041,11 @@ static void gen_compute_branch1 (CPUState *env, DisasContext *ctx, uint32_t op,
> TCGv_i32 t1 = tcg_temp_new_i32();
> tcg_gen_shri_i32(t0, fpu_fcr31, get_fp_bit(cc));
> tcg_gen_shri_i32(t1, fpu_fcr31, get_fp_bit(cc+1));
> - tcg_gen_or_i32(t0, t0, t1);
> + tcg_gen_and_i32(t0, t0, t1);
> tcg_gen_shri_i32(t1, fpu_fcr31, get_fp_bit(cc+2));
> - tcg_gen_or_i32(t0, t0, t1);
> + tcg_gen_and_i32(t0, t0, t1);
> tcg_gen_shri_i32(t1, fpu_fcr31, get_fp_bit(cc+3));
> - tcg_gen_nor_i32(t0, t0, t1);
> + tcg_gen_nand_i32(t0, t0, t1);
> tcg_temp_free_i32(t1);
> tcg_gen_andi_i32(t0, t0, 1);
> tcg_gen_extu_i32_tl(bcond, t0);
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
next prev parent reply other threads:[~2012-05-13 18:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-26 13:37 [Qemu-devel] [PATCH] mips: Fix BC1ANY[24]F instructions Richard Sandiford
2012-05-13 18:39 ` Andreas Färber [this message]
2012-05-19 19:01 ` Blue Swirl
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=4FAFFFF1.9000403@suse.de \
--to=afaerber@suse.de \
--cc=anthony@codemonkey.ws \
--cc=blauwirbel@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=rdsandiford@googlemail.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;
as well as URLs for NNTP newsgroup(s).