[PATCH] D45263: [SLP] Allow reordering of vectorization trees with reused instructions.

Alexey Bataev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 4 08:59:31 PDT 2018


ABataev created this revision.
ABataev added reviewers: mkuper, hfinkel, RKSimon, spatel, Ayal.

If some leaves have the same instructions to be vectorized, we may
incorrectly evaluate the best order for the root node (it is built for the
vector of instructions without repeated instructions and, thus, has less
elements than the root node). In this case we just can not try to reorder
the tree + we may calculate the wrong number of nodes that requre the
same reordering.
For example, if the root node is \<a+b, a+c, a+d, f+e\>, then the leaves
are \<a, a, a, f\> and \<b, c, d, e\>. When we try to vectorize the first
leaf, it will be shrink to \<a, b\>. If instructions in this leaf should
be reordered, the best order will be \<1, 0\>. We need to extend this
order for the root node. For the root node this order should look like
\<3, 0, 1, 2\>. This patch allows extension of the orders of the nodes
with the reused instructions.


Repository:
  rL LLVM

https://reviews.llvm.org/D45263

Files:
  lib/Transforms/Vectorize/SLPVectorizer.cpp
  test/Transforms/SLPVectorizer/X86/reorder_repeated_ops.ll

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45263.140974.patch
Type: text/x-patch
Size: 9618 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180404/e674efbc/attachment.bin>


More information about the llvm-commits mailing list