Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / vector-intrinsic-call-cost.ll
blobff5cf3a1394d5e91fc9fe375716bea0078cdcc7d
1 ; RUN: opt -S -passes=loop-vectorize -force-vector-width=4 %s | FileCheck %s
3 ; CHECK-LABEL: @test_fshl
4 ; CHECK-LABEL: vector.body:
5 ; CHECK-NEXT:    [[IDX:%.+]] = phi i32 [ 0, %vector.ph ], [ %index.next, %vector.body ]
6 ; CHECK-NEXT:    [[IDX0:%.+]] = add i32 %index, 0
7 ; CHECK-NEXT:    [[FSHL:%.+]] = call <4 x i16> @llvm.fshl.v4i16(<4 x i16> undef, <4 x i16> undef, <4 x i16> <i16 15, i16 15, i16 15, i16 15>)
8 ; CHECK-NEXT:    [[GEP0:%.+]] = getelementptr inbounds i16, ptr %dst, i32 [[IDX0]]
9 ; CHECK-NEXT:    [[GEP1:%.+]] = getelementptr inbounds i16, ptr [[GEP0]], i32 0
10 ; CHECK-NEXT:    store <4 x i16> [[FSHL]], ptr [[GEP1]], align 2
11 ; CHECK-NEXT:    [[IDX_NEXT:%.+]] = add nuw i32 [[IDX]], 4
12 ; CHECK-NEXT:    [[EC:%.+]] = icmp eq i32 [[IDX_NEXT]], %n.vec
13 ; CHECK-NEXT:    br i1 [[EC]], label %middle.block, label %vector.body
15 define void @test_fshl(i32 %width, ptr %dst) {
16 entry:
17   br label %for.body9.us.us
19 for.cond6.for.cond.cleanup8_crit_edge.us.us:      ; preds = %for.body9.us.us
20   ret void
22 for.body9.us.us:                                  ; preds = %for.body9.us.us, %entry
23   %iv = phi i32 [ 0, %entry ], [ %iv.next, %for.body9.us.us ]
24   %conv4.i.us.us = tail call i16 @llvm.fshl.i16(i16 undef, i16 undef, i16 15)
25   %dst.gep = getelementptr inbounds i16, ptr %dst, i32 %iv
26   store i16 %conv4.i.us.us, ptr %dst.gep
27   %iv.next = add nuw i32 %iv, 1
28   %exitcond50 = icmp eq i32 %iv.next, %width
29   br i1 %exitcond50, label %for.cond6.for.cond.cleanup8_crit_edge.us.us, label %for.body9.us.us
32 declare i16 @llvm.fshl.i16(i16, i16, i16)