qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 06/13] target-ppc: implement stxvll instructions


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH 06/13] target-ppc: implement stxvll instructions
Date: Mon, 5 Dec 2016 09:57:06 -0800
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0

On 12/05/2016 03:25 AM, Nikunj A Dadhania wrote:
> +    getVSR(xt_num, &xt, env);
> +    if (msr_le) {
> +        for (i = 0; i < end; i++) {
> +            cpu_stb_data_ra(env, addr, xt.u8[i], GETPC());
> +            addr = addr_add(env, addr, 1);
> +        }
> +    } else {
> +        for (i = 15; i > 15 - end; i--) {
> +            cpu_stb_data_ra(env, addr, xt.u8[i], GETPC());
> +            addr = addr_add(env, addr, 1);
> +        }
> +    }

Have you accidentally swapped the implementations of stxvl and stxvll?


r~



reply via email to

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