[LLVMdev] Extend SLPVectorizer to struct operations that are isomorphic to vector operations?

Chandler Carruth chandlerc at google.com
Thu Apr 17 16:11:27 PDT 2014


On Thu, Apr 17, 2014 at 4:03 PM, Nadav Rotem <nrotem at apple.com> wrote:

> On Apr 17, 2014, at 3:41 PM, Robison, Arch <arch.robison at intel.com> wrote:
>
> > While playing with SLPVectorizer, I notice that it will happily
> vectorize cases involving extractelement/insertelement, but won't vectorize
> isomorphic cases involving extractvalue/insertvalue (such as the attached
> example).  Is that something that could be straightforward to add to
> SLPVectorizer, or are there some hard issue?  In particular, the
> transformation would seem to require casts of structures to vectors and
> back.  The bitcast instruction requires a non-aggregate value.
> >
> > I'm thinking such vectorization might be useful for codes that use
> structs for tuples, like (x,y,z) coordinates or complex numbers.
>
> Vectorization of struct values is not supported because it is not
> something we considered until now. It never showed up in any workload I
> looked at. It should not be too difficult to implement. We already insert
> casts when we vectorize loads and stores from memory.


So, the first thing to understand (for Arch who may not have this context)
is that almost all insertvalue/extractvalue instructions should be
optimized out of the IR long before any vectorizer sees it. The SROA pass
completely removes these instructions.

The only time they are likely to show up is when forming (or decomposing)
aggregates passed or returned by value at the LLVM IR level due to ABI
concerns. It would indeed be nice if the SLPVectorizer could vectorize
through these so that we end up with vector code and a tiny scalar peel
right at the ABI boundary where we need to arrange the elements into
specific registers.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140417/662ca379/attachment.html>


More information about the llvm-dev mailing list