[PATCH] PR20234 - [SLP Vectorizer] Canonicalize operands of commutitive binary operands.

Nadav Rotem nrotem at apple.com
Fri Jul 25 16:15:18 PDT 2014


Chad, 

In this patch you are changing the instruction V regardless if vectorization succeeds or not. Would it be possible to only change the VL vector without modifying the binary operator V?  

Thanks,
Nadav

> On Jul 25, 2014, at 4:10 PM, Chad Rosier <mcrosier at codeaurora.org> wrote:
> 
> Hi aschwaighofer, nadav, grosbach, chandlerc,
> 
> As a result of recent work on the reassociation pass, I noticed the ordering of operands effected the behavior of the SLP vectorizer.  The ordering can change how the expression tree is built and in turn change the cost of the tree.  In the provided test case, derived from spec2k/mesa, the ordering of the load instructions (in the expression tree) are reversed, so the loads are gathered, rather than vectorized.
> 
> This patch attempts to resolve this issue by canonicalizing the operands of commutitive instructions based on source order.  The result is an expression tree that more closely mirrors the instruction source order.  Currently the canonicalization happens to both the instruction as well as the expression tree.  However, only the latter is necessary to address this issue; I have no objection to leaving the instruction operands as is.
> 
> I'm sure a more robust solution exists, but I decided to begin with the simplest solution because I think it gets a fairly good bang for the buck, is safe, and is maintainable.
> 
> Correctness runs look good.  Performance runs (AArch64/A53) also look good; no regressions and a few minor improvements.
> 
> Please take a look!
> 
> Chad
> 
> http://reviews.llvm.org/D4680
> 
> Files:
>  lib/Transforms/Vectorize/SLPVectorizer.cpp
>  test/Transforms/SLPVectorizer/AArch64/commute.ll
> <D4680.11900.patch>




More information about the llvm-commits mailing list