[PATCH] D99980: [SLP]Improve cost model for the vectorized extractelements.

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 7 06:05:39 PDT 2021


RKSimon added inline comments.


================
Comment at: llvm/test/Transforms/SLPVectorizer/X86/alternate-int-inseltpoison.ll:123
+; AVX1-NEXT:    [[TMP6:%.*]] = shufflevector <4 x i32> [[TMP5]], <4 x i32> undef, <8 x i32> <i32 undef, i32 undef, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
+; AVX1-NEXT:    [[TMP7:%.*]] = shl <8 x i32> [[A]], [[B]]
 ; AVX1-NEXT:    [[R0:%.*]] = insertelement <8 x i32> poison, i32 [[AB0]], i32 0
----------------
ABataev wrote:
> RKSimon wrote:
> > Why do we have both a v4i32 and v8i32 shl in here?
> That's because of 2 main factors here: max size of the vector register and final insertinstruction instructions. These insertinstruction leads to the emission of <8x i32> vectors while other instructions are limited by the 128 bit size of the vector register. 
> SLP vectorizer generates this code:
> ```
> define <8 x i32> @ashr_shl_v8i32(<8 x i32> %a, <8 x i32> %b) #0 {
>   %a0 = extractelement <8 x i32> %a, i32 0
>   %a1 = extractelement <8 x i32> %a, i32 1
>   %a2 = extractelement <8 x i32> %a, i32 2
>   %a3 = extractelement <8 x i32> %a, i32 3
>   %a4 = extractelement <8 x i32> %a, i32 4
>   %a5 = extractelement <8 x i32> %a, i32 5
>   %a6 = extractelement <8 x i32> %a, i32 6
>   %a7 = extractelement <8 x i32> %a, i32 7
>   %b0 = extractelement <8 x i32> %b, i32 0
>   %b1 = extractelement <8 x i32> %b, i32 1
>   %b2 = extractelement <8 x i32> %b, i32 2
>   %b3 = extractelement <8 x i32> %b, i32 3
>   %b4 = extractelement <8 x i32> %b, i32 4
>   %b5 = extractelement <8 x i32> %b, i32 5
>   %b6 = extractelement <8 x i32> %b, i32 6
>   %b7 = extractelement <8 x i32> %b, i32 7
>   %ab0 = ashr i32 %a0, %b0
>   %ab1 = ashr i32 %a1, %b1
>   %1 = insertelement <4 x i32> poison, i32 %a2, i32 0
>   %2 = insertelement <4 x i32> %1, i32 %a3, i32 1
>   %3 = insertelement <4 x i32> %2, i32 %a4, i32 2
>   %4 = insertelement <4 x i32> %3, i32 %a5, i32 3
>   %5 = insertelement <4 x i32> poison, i32 %b2, i32 0
>   %6 = insertelement <4 x i32> %5, i32 %b3, i32 1
>   %7 = insertelement <4 x i32> %6, i32 %b4, i32 2
>   %8 = insertelement <4 x i32> %7, i32 %b5, i32 3
>   %9 = ashr <4 x i32> %4, %8
>   %10 = shl <4 x i32> %4, %8
>   %11 = shufflevector <4 x i32> %9, <4 x i32> %10, <4 x i32> <i32 0, i32 1, i32 6, i32 7>
>   %12 = insertelement <2 x i32> poison, i32 %a6, i32 0
>   %13 = insertelement <2 x i32> %12, i32 %a7, i32 1
>   %14 = insertelement <2 x i32> poison, i32 %b6, i32 0
>   %15 = insertelement <2 x i32> %14, i32 %b7, i32 1
>   %16 = shl <2 x i32> %13, %15
>   %r0 = insertelement <8 x i32> undef, i32 %ab0, i32 0
>   %r1 = insertelement <8 x i32> %r0, i32 %ab1, i32 1
>   %17 = extractelement <4 x i32> %11, i32 0
>   %r2 = insertelement <8 x i32> %r1, i32 %17, i32 2
>   %18 = extractelement <4 x i32> %11, i32 1
>   %r3 = insertelement <8 x i32> %r2, i32 %18, i32 3
>   %19 = extractelement <4 x i32> %11, i32 2
>   %r4 = insertelement <8 x i32> %r3, i32 %19, i32 4
>   %20 = extractelement <4 x i32> %11, i32 3
>   %r5 = insertelement <8 x i32> %r4, i32 %20, i32 5
>   %21 = extractelement <2 x i32> %16, i32 0
>   %r6 = insertelement <8 x i32> %r5, i32 %21, i32 6
>   %22 = extractelement <2 x i32> %16, i32 1
>   %r7 = insertelement <8 x i32> %r6, i32 %22, i32 7
>   ret <8 x i32> %r7
> } 
> ```
> InstCombiner optimizes this to <8 x i32> vector operations.
I'm still seeing 128/256 shifts: https://c.godbolt.org/z/4q364s1fT

```
define <8 x i32> @ashr_shl_v8i32(<8 x i32> %a, <8 x i32> %b) {
  %1 = ashr <8 x i32> %a, %b
  %2 = shufflevector <8 x i32> %a, <8 x i32> undef, <4 x i32> <i32 2, i32 3, i32 4, i32 5>
  %3 = shufflevector <8 x i32> %b, <8 x i32> undef, <4 x i32> <i32 2, i32 3, i32 4, i32 5>
  %4 = ashr <4 x i32> %2, %3
  %5 = shufflevector <4 x i32> %4, <4 x i32> undef, <8 x i32> <i32 0, i32 1, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
  %6 = shl <4 x i32> %2, %3
  %7 = shufflevector <4 x i32> %6, <4 x i32> undef, <8 x i32> <i32 undef, i32 undef, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
  %8 = shl <8 x i32> %a, %b
  %r3 = shufflevector <8 x i32> %1, <8 x i32> %5, <8 x i32> <i32 0, i32 1, i32 8, i32 9, i32 undef, i32 undef, i32 undef, i32 undef>
  %r5 = shufflevector <8 x i32> %r3, <8 x i32> %7, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 10, i32 11, i32 undef, i32 undef>
  %r7 = shufflevector <8 x i32> %r5, <8 x i32> %8, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 4, i32 5, i32 14, i32 15>
  ret <8 x i32> %r7
}
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D99980/new/

https://reviews.llvm.org/D99980



More information about the llvm-commits mailing list