Re: [PATCH 09/31] target/arm: Implement SVE2 integer pairwise arithmetic

2020-04-13 Thread Laurent Desnogues
On Fri, Mar 27, 2020 at 12:16 AM Richard Henderson wrote: [...] > diff --git a/target/arm/sve_helper.c b/target/arm/sve_helper.c > index 5d75aed7b7..d7c181ddb8 100644 > --- a/target/arm/sve_helper.c > +++ b/target/arm/sve_helper.c > @@ -681,6 +681,73 @@ DO_ZPZZ_D(sve2_uhsub_zpzz_d, uint64_t, DO_HS

[PATCH 09/31] target/arm: Implement SVE2 integer pairwise arithmetic

2020-03-26 Thread Richard Henderson
Signed-off-by: Richard Henderson --- target/arm/helper-sve.h| 45 + target/arm/sve.decode | 8 + target/arm/sve_helper.c| 67 ++ target/arm/translate-sve.c | 6 4 files changed, 126 insertions(+) diff --git a/tar