Re: [PATCH v3] target/arm: Implement SVE2 FMMLA

2020-04-24 Thread Richard Henderson
On 4/22/20 9:55 AM, Stephen Long wrote: > +intptr_t opr_sz = simd_oprsz(desc) / (sizeof(TYPE) >> 2); \ > +\ > +for (s = 0; s < opr_sz; ++s) { \ > +TYPE

[PATCH v3] target/arm: Implement SVE2 FMMLA

2020-04-22 Thread Stephen Long
Signed-off-by: Stephen Long Fixed the errors Richard pointed out. --- target/arm/cpu.h | 10 + target/arm/helper-sve.h| 3 +++ target/arm/sve.decode | 4 target/arm/sve_helper.c| 42 ++ target/arm/translate-sve.c | 29