[PATCH] [LoopVectorize] Induction variables: support arbitrary constant step

Hao Liu Hao.Liu at arm.com
Mon Jan 26 22:36:43 PST 2015


Hi nadav, hfinkel,

Hi,

Now for induction variables it's possible to have only -1 and +1 step values. But for induction variables with other steps, LV will do nothing. 
Alexey wrote a path in D6051 to support arbitrary induction variable steps. I think his patch is very useful so I toke it over and fixed some bugs (Minor bugs about induction calculation which caused some runtime failures in SPEC2000 and LNT). Now this patch can pass our internal tests.

There are two kinds of induction variables:
1. integer induction:
  for (int i = 0; i < 1024; i+=2) {
     int tmp = *A++;
     sum += i * tmp;
  }
"i" is an integer induction variable of step 2. Actually such case can be well vectorized if we support arbitrary induction variable steps.

2. pointer induction:
   for (int i = 0; i < 1024; i++) {
     int tmp0 = *A++;
     int tmp1 = *A++;
     sum += tmp0 * tmp1;
   }
pointer "A" is an pointer induction variable of step 2. Even we support arbitrary stepsCurrently, we still can not vectorize such case well. LoopVectorizer will say "vectorization is possible but not benefical". But we still can force the LoopVectorizer to do vectorization.

Actually if the targets support masked/interleaved load/store, we can vectorize the second case very well. For example, AArch64 backend supports interleaved load/store. To vectorize "tmp0" and "tmp1", we only need one interleaved load such as "LD2 {V0, V1}, [X0]". Vector register V0 and V1 will contain interleaved data. V0 contains "A[0], A[2], A[4], A[6]", and V1 contains "A[1], A[3], A[5], A[7]".

This patch has no big impact on performance according to the tests on AArch64 targets. There are few cases like the first case. There are many cases like the second case, the loop vectorizer thinks it is not beneficial to do vectorization, and most likely it will just do interleave. But I think if we support masked/interleaved load/store in the future, we can get many performance improvements. But I think the first step is that the LoopVectorizer should support arbitrary induction variable steps.

Review please.

Thanks,
-Hao

http://reviews.llvm.org/D7193

Files:
  lib/Transforms/Vectorize/LoopVectorize.cpp
  test/Transforms/LoopVectorize/arbitrary-induction-step.ll
  test/Transforms/LoopVectorize/gcc-examples.ll
  test/Transforms/LoopVectorize/reverse_induction.ll

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D7193.18797.patch
Type: text/x-patch
Size: 26677 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150127/2a001f5a/attachment.bin>


More information about the llvm-commits mailing list