qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 04/14] target/ppc: introduce GEN_VSX_HELPER_X3 m


From: Richard Henderson
Subject: Re: [Qemu-devel] [PATCH 04/14] target/ppc: introduce GEN_VSX_HELPER_X3 macro to fpu_helper.c
Date: Tue, 30 Apr 2019 09:36:42 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1

On 4/28/19 7:38 AM, Mark Cave-Ayland wrote:
> +#define GEN_VSX_HELPER_X3(name, op1, op2, inval, type)                       
>  \
> +static void gen_##name(DisasContext *ctx)                                    
>  \
> +{                                                                            
>  \
> +    TCGv_i32 opc;                                                            
>  \
> +    TCGv_ptr xt, xa, xb;                                                     
>  \
> +    if (unlikely(!ctx->vsx_enabled)) {                                       
>  \
> +        gen_exception(ctx, POWERPC_EXCP_VSXU);                               
>  \
> +        return;                                                              
>  \
> +    }                                                                        
>  \
> +    opc = tcg_const_i32(ctx->opcode);                                        
>  \
> +    xt = gen_vsr_ptr(xT(ctx->opcode));                                       
>  \
> +    xa = gen_vsr_ptr(xA(ctx->opcode));                                       
>  \
> +    xb = gen_vsr_ptr(xB(ctx->opcode));                                       
>  \

Do you still need to pass opc?

Anyway, I guess this is still progress...
Reviewed-by: Richard Henderson <address@hidden>


r~



reply via email to

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