[TTI] getTypeBasedIntrinsicInstrCost - add basic handling for strided load/store...
[llvm-project.git] / llvm / test / Transforms / SLPVectorizer / peek-through-shuffle.ll
blob839c1ebed6bcffb44ffb0261dcbd1f9cb994cb88
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: %if x86-registered-target %{ opt -S -passes=slp-vectorizer < %s -mtriple=x86_64-unknown-linux-gnu -o - | FileCheck %s %}
3 ; RUN: %if aarch64-registered-target %{ opt -S -passes=slp-vectorizer < %s -mtriple=aarch64-unknown-linux-gnu -o - | FileCheck %s %}
5 define void @foo(ptr %0, <4 x float> %1) {
6 ; CHECK-LABEL: @foo(
7 ; CHECK-NEXT:  entry:
8 ; CHECK-NEXT:    [[TMP2:%.*]] = getelementptr float, ptr null, i64 22
9 ; CHECK-NEXT:    [[TMP3:%.*]] = load <2 x float>, ptr [[TMP2]], align 8
10 ; CHECK-NEXT:    [[TMP4:%.*]] = shufflevector <2 x float> [[TMP3]], <2 x float> poison, <4 x i32> <i32 0, i32 1, i32 poison, i32 poison>
11 ; CHECK-NEXT:    [[TMP5:%.*]] = shufflevector <4 x float> zeroinitializer, <4 x float> [[TMP4]], <4 x i32> <i32 4, i32 5, i32 2, i32 3>
12 ; CHECK-NEXT:    [[TMP6:%.*]] = shufflevector <4 x float> [[TMP1:%.*]], <4 x float> zeroinitializer, <4 x i32> <i32 0, i32 5, i32 6, i32 poison>
13 ; CHECK-NEXT:    [[TMP7:%.*]] = shufflevector <4 x float> [[TMP6]], <4 x float> [[TMP4]], <4 x i32> <i32 0, i32 1, i32 2, i32 4>
14 ; CHECK-NEXT:    [[TMP8:%.*]] = fpext <4 x float> [[TMP7]] to <4 x double>
15 ; CHECK-NEXT:    store <4 x double> [[TMP8]], ptr [[TMP0:%.*]], align 32
16 ; CHECK-NEXT:    ret void
18 entry:
19   %2 = getelementptr float, ptr null, i64 22
20   %3 = load float, ptr %2, align 8
21   %4 = insertelement <4 x float> zeroinitializer, float %3, i64 0
22   %5 = getelementptr float, ptr null, i64 23
23   %6 = load float, ptr %5, align 4
24   %7 = insertelement <4 x float> %4, float %6, i64 1
25   %8 = shufflevector <4 x float> %1, <4 x float> zeroinitializer, <4 x i32> <i32 0, i32 5, i32 6, i32 undef>
26   %9 = insertelement <4 x float> %8, float %3, i64 3
27   %10 = fpext <4 x float> %9 to <4 x double>
28   store <4 x double> %10, ptr %0, align 32
29   ret void