qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] target-mips: Sign-extend the result of LWR


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] target-mips: Sign-extend the result of LWR
Date: Fri, 1 Feb 2013 00:00:41 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

On Sun, Jan 20, 2013 at 07:30:54PM +0000, Richard Sandiford wrote:
> Sign-extend the result of LWR, as is already done for LWL.  This is necessary
> in the case where LWR loads the full word (i.e. the address is actually
> aligned).  In the other cases, it is implementation defined whether the
> upper 32 bits of the result are unchanged or a copy of bit 31.  The latter
> seems easier to implement.
> 
> Previously the code used:
> 
>     (oldval & (0xfffffffe << (31 - bitshift))) | (newval >> bitshift)
> 
> which zeroed the upper bits of the register, losing any previous sign
> extension in the unaligned cases.
> 
> Signed-off-by: Richard Sandiford <address@hidden>
> ---
>  target-mips/translate.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index 623edd0..08e28f3 100644
> --- a/target-mips/translate.c
> +++ b/target-mips/translate.c
> @@ -1735,6 +1735,7 @@ static void gen_ld (CPUMIPSState *env, DisasContext 
> *ctx, uint32_t opc,
>          tcg_temp_free(t2);
>          tcg_gen_or_tl(t0, t0, t1);
>          tcg_temp_free(t1);
> +        tcg_gen_ext32s_tl(t0, t0);
>          gen_store_gpr(t0, rt);
>          opn = "lwr";
>          break;
> -- 
> 1.7.11.7
> 
> 

Thanks, applied.

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net



reply via email to

[Prev in Thread] Current Thread [Next in Thread]