Re: [PATCH 33/33] target/ppc: Implement lxvkq instruction

2021-10-23 Thread Richard Henderson
On 10/21/21 12:45 PM, matheus.fe...@eldorado.org.br wrote: +static bool trans_LXVKQ(DisasContext *ctx, arg_X_uim5 *a) +{ +static const uint32_t valid_values = 0b00010010; All of the specified values are non-zero, so this kinda duplicates the values table. Otherwise,

[PATCH 33/33] target/ppc: Implement lxvkq instruction

2021-10-21 Thread matheus . ferst
From: Matheus Ferst Signed-off-by: Luis Pires Signed-off-by: Matheus Ferst --- target/ppc/insn32.decode| 7 + target/ppc/translate/vsx-impl.c.inc | 44 + 2 files changed, 51 insertions(+) diff --git a/target/ppc/insn32.decode b/target/ppc/insn32.de