qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v3 1/8] target/ppc: Optimize emulation of lvsl a


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH v3 1/8] target/ppc: Optimize emulation of lvsl and lvsr instructions
Date: Wed, 26 Jun 2019 18:03:31 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0

On 6/21/19 1:07 PM, Stefan Brankovic wrote:
> +#if defined(TARGET_PPC64)
> +    tcg_gen_andi_i64(sh, EA, 0xfULL);
> +#else
> +    tcg_gen_ext_i32_i64(sh, EA);
> +    tcg_gen_andi_i64(sh, sh, 0xfULL);
> +#endif

Didn't see v3 before reviewing v2, however as noted there, tcg_gen_extu_tl_i64.


r~



reply via email to

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