Re: [PATCH 18/33] target/mips: Convert MSA 2R instruction format to decodetree

2021-10-23 Thread Richard Henderson
On 10/23/21 2:47 PM, Philippe Mathieu-Daudé wrote: +static bool trans_msa_2r(DisasContext *ctx, arg_msa_r *a, + void (*gen_msa_2r_b)(TCGv_ptr, TCGv_i32, TCGv_i32), + void (*gen_msa_2r_h)(TCGv_ptr, TCGv_i32, TCGv_i32), + void

[PATCH 18/33] target/mips: Convert MSA 2R instruction format to decodetree

2021-10-23 Thread Philippe Mathieu-Daudé
Convert 2-register operations to decodetree. Signed-off-by: Philippe Mathieu-Daudé --- target/mips/tcg/msa.decode | 3 ++ target/mips/tcg/msa_translate.c | 91 + 2 files changed, 28 insertions(+), 66 deletions(-) diff --git a/target/mips/tcg/msa.decode b/ta