qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH v5 06/57] tcg/tci: Split out tci_args_rrrc


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH v5 06/57] tcg/tci: Split out tci_args_rrrc
Date: Tue, 16 Mar 2021 23:55:27 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.0

On 3/11/21 3:39 PM, Richard Henderson wrote:
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>  tcg/tci.c | 23 +++++++++++++----------
>  1 file changed, 13 insertions(+), 10 deletions(-)
> 
> diff --git a/tcg/tci.c b/tcg/tci.c
> index 1c879a2536..bdd2127ec8 100644
> --- a/tcg/tci.c
> +++ b/tcg/tci.c
> @@ -207,6 +207,15 @@ static void tci_args_rrs(const uint8_t **tb_ptr,
>      *i2 = tci_read_s32(tb_ptr);
>  }
>  
> +static void tci_args_rrrc(const uint8_t **tb_ptr,
> +                          TCGReg *r0, TCGReg *r1, TCGReg *r2, TCGCond *c3)
> +{
> +    *r0 = tci_read_r(tb_ptr);
> +    *r1 = tci_read_r(tb_ptr);
> +    *r2 = tci_read_r(tb_ptr);
> +    *c3 = tci_read_b(tb_ptr);
> +}

Can you describe 'c -> cond' in the previous comment?

Otherwise:
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>



reply via email to

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