[PATCH] aarch64: PR target/109406 Add support for SVE2 unpredicated MUL

2023-04-24 Thread Kyrylo Tkachov via Gcc-patches
Hi all, SVE2 supports an unpredicated vector integer MUL form that we can emit from our SVE expanders without using up a predicate registers. This patch does so. As the SVE MUL expansion currently is templated away through a code iterator I did not split it off just for this case but instead spe

Re: [PATCH] aarch64: PR target/109406 Add support for SVE2 unpredicated MUL

2023-04-24 Thread Richard Sandiford via Gcc-patches
Kyrylo Tkachov writes: > Hi all, > > SVE2 supports an unpredicated vector integer MUL form that we can emit from > our SVE expanders > without using up a predicate registers. This patch does so. > As the SVE MUL expansion currently is templated away through a code iterator > I did not split it >