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
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