Re: [PATCH 27/36] target/arm: Convert Neon VABA 3-reg-same to decodetree

2020-04-30 Thread Richard Henderson
On 4/30/20 11:09 AM, Peter Maydell wrote: > +for (pass = 0; pass < (a->q ? 4 : 2); pass++) { > +tmp = neon_load_reg(a->vn, pass); > +tmp2 = neon_load_reg(a->vm, pass); > +abd_fn(tmp, tmp, tmp2); > +tcg_temp_free_i32(tmp2); > +tmp2 = neon_load_reg(a->vd, p

[PATCH 27/36] target/arm: Convert Neon VABA 3-reg-same to decodetree

2020-04-30 Thread Peter Maydell
Convert the NEON VABA insn in the 3-reg-same group to decodetree. This is the only insn in this group which does an integer accumulate into the destination register. Signed-off-by: Peter Maydell --- target/arm/translate-neon.inc.c | 76 + target/arm/translate.c