Re: [PATCH v2 44/45] target/arm: Implement fp16 for Neon VMUL, VMLA, VMLS

2020-08-29 Thread Peter Maydell
On Sat, 29 Aug 2020 at 00:38, Richard Henderson wrote: > > On 8/28/20 11:33 AM, Peter Maydell wrote: > > Convert the Neon floating-point VMUL, VMLA and VMLS to use gvec, > > and use this to implement fp16 support. > > > > Signed-off-by: Peter Maydell > > Reviewed-by: Richard Henderson > > > +

Re: [PATCH v2 44/45] target/arm: Implement fp16 for Neon VMUL, VMLA, VMLS

2020-08-28 Thread Richard Henderson
On 8/28/20 11:33 AM, Peter Maydell wrote: > Convert the Neon floating-point VMUL, VMLA and VMLS to use gvec, > and use this to implement fp16 support. > > Signed-off-by: Peter Maydell Reviewed-by: Richard Henderson > +/* a->vm is M:Vm, which encodes both register and index */ > +idx =

[PATCH v2 44/45] target/arm: Implement fp16 for Neon VMUL, VMLA, VMLS

2020-08-28 Thread Peter Maydell
Convert the Neon floating-point VMUL, VMLA and VMLS to use gvec, and use this to implement fp16 support. Signed-off-by: Peter Maydell --- target/arm/translate-neon.c.inc | 114 1 file changed, 57 insertions(+), 57 deletions(-) diff --git