[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / PhaseOrdering / X86 / vdiv-nounroll.ll
blob91553a28b24b115c8450b7b0213c9eb46c031220
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -O3 -S | FileCheck %s
4 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-apple-macosx11.0.0"
7 ; We expect the loop to be vectorized even if it
8 ; is not unrolled.
9 ; Verify that fdiv is not sunk back into the loop
10 ; after getting hoisted - based on this C source:
12 ;  void vdiv(float *a, float b) {
13 ;      for (int i = 0; i != 1024; ++i)
14 ;        a[i] /= b;
15 ;  }
17 define void @vdiv(float* %a, float %b) #0 {
18 ; CHECK-LABEL: @vdiv(
19 ; CHECK-NEXT:  entry:
20 ; CHECK-NEXT:    [[BROADCAST_SPLATINSERT:%.*]] = insertelement <4 x float> poison, float [[B:%.*]], i32 0
21 ; CHECK-NEXT:    [[BROADCAST_SPLAT:%.*]] = shufflevector <4 x float> [[BROADCAST_SPLATINSERT]], <4 x float> poison, <4 x i32> zeroinitializer
22 ; CHECK-NEXT:    [[TMP0:%.*]] = fdiv fast <4 x float> <float 1.000000e+00, float 1.000000e+00, float 1.000000e+00, float 1.000000e+00>, [[BROADCAST_SPLAT]]
23 ; CHECK-NEXT:    br label [[VECTOR_BODY:%.*]]
24 ; CHECK:       vector.body:
25 ; CHECK-NEXT:    [[INDEX:%.*]] = phi i64 [ 0, [[ENTRY:%.*]] ], [ [[INDEX_NEXT:%.*]], [[VECTOR_BODY]] ]
26 ; CHECK-NEXT:    [[TMP1:%.*]] = getelementptr inbounds float, float* [[A:%.*]], i64 [[INDEX]]
27 ; CHECK-NEXT:    [[TMP2:%.*]] = bitcast float* [[TMP1]] to <4 x float>*
28 ; CHECK-NEXT:    [[WIDE_LOAD:%.*]] = load <4 x float>, <4 x float>* [[TMP2]], align 4, !tbaa [[TBAA3:![0-9]+]]
29 ; CHECK-NEXT:    [[TMP3:%.*]] = fmul fast <4 x float> [[WIDE_LOAD]], [[TMP0]]
30 ; CHECK-NEXT:    [[TMP4:%.*]] = bitcast float* [[TMP1]] to <4 x float>*
31 ; CHECK-NEXT:    store <4 x float> [[TMP3]], <4 x float>* [[TMP4]], align 4, !tbaa [[TBAA3]]
32 ; CHECK-NEXT:    [[INDEX_NEXT]] = add nuw i64 [[INDEX]], 4
33 ; CHECK-NEXT:    [[TMP5:%.*]] = icmp eq i64 [[INDEX_NEXT]], 1024
34 ; CHECK-NEXT:    br i1 [[TMP5]], label [[FOR_COND_CLEANUP:%.*]], label [[VECTOR_BODY]], !llvm.loop [[LOOP7:![0-9]+]]
35 ; CHECK:       for.cond.cleanup:
36 ; CHECK-NEXT:    ret void
38 entry:
39   %a.addr = alloca float*, align 8
40   %b.addr = alloca float, align 4
41   %i = alloca i32, align 4
42   store float* %a, float** %a.addr, align 8, !tbaa !3
43   store float %b, float* %b.addr, align 4, !tbaa !7
44   %0 = bitcast i32* %i to i8*
45   call void @llvm.lifetime.start.p0i8(i64 4, i8* %0) #2
46   store i32 0, i32* %i, align 4, !tbaa !9
47   br label %for.cond
49 for.cond:                                         ; preds = %for.inc, %entry
50   %1 = load i32, i32* %i, align 4, !tbaa !9
51   %cmp = icmp ne i32 %1, 1024
52   br i1 %cmp, label %for.body, label %for.cond.cleanup
54 for.cond.cleanup:                                 ; preds = %for.cond
55   %2 = bitcast i32* %i to i8*
56   call void @llvm.lifetime.end.p0i8(i64 4, i8* %2) #2
57   br label %for.end
59 for.body:                                         ; preds = %for.cond
60   %3 = load float, float* %b.addr, align 4, !tbaa !7
61   %4 = load float*, float** %a.addr, align 8, !tbaa !3
62   %5 = load i32, i32* %i, align 4, !tbaa !9
63   %idxprom = sext i32 %5 to i64
64   %arrayidx = getelementptr inbounds float, float* %4, i64 %idxprom
65   %6 = load float, float* %arrayidx, align 4, !tbaa !7
66   %div = fdiv fast float %6, %3
67   store float %div, float* %arrayidx, align 4, !tbaa !7
68   br label %for.inc
70 for.inc:                                          ; preds = %for.body
71   %7 = load i32, i32* %i, align 4, !tbaa !9
72   %inc = add nsw i32 %7, 1
73   store i32 %inc, i32* %i, align 4, !tbaa !9
74   br label %for.cond, !llvm.loop !11
76 for.end:                                          ; preds = %for.cond.cleanup
77   ret void
80 declare void @llvm.lifetime.start.p0i8(i64 immarg, i8* nocapture) #1
81 declare void @llvm.lifetime.end.p0i8(i64 immarg, i8* nocapture) #1
83 attributes #0 = { nounwind ssp uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-infs-fp-math"="true" "no-nans-fp-math"="true" "no-signed-zeros-fp-math"="true" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="penryn" "target-features"="+cx16,+cx8,+fxsr,+mmx,+sahf,+sse,+sse2,+sse3,+sse4.1,+ssse3,+x87" "tune-cpu"="generic" "unsafe-fp-math"="true" }
84 attributes #1 = { argmemonly nofree nosync nounwind willreturn }
85 attributes #2 = { nounwind }
87 !llvm.module.flags = !{!0, !1}
88 !llvm.ident = !{!2}
90 !0 = !{i32 1, !"wchar_size", i32 4}
91 !1 = !{i32 7, !"PIC Level", i32 2}
92 !2 = !{!"clang version 13.0.0 (https://github.com/llvm/llvm-project.git 437fb428178716db014f75701f3cdea6dea63f59)"}
93 !3 = !{!4, !4, i64 0}
94 !4 = !{!"any pointer", !5, i64 0}
95 !5 = !{!"omnipotent char", !6, i64 0}
96 !6 = !{!"Simple C/C++ TBAA"}
97 !7 = !{!8, !8, i64 0}
98 !8 = !{!"float", !5, i64 0}
99 !9 = !{!10, !10, i64 0}
100 !10 = !{!"int", !5, i64 0}
101 !11 = distinct !{!11, !12, !13}
102 !12 = !{!"llvm.loop.mustprogress"}
103 !13 = !{!"llvm.loop.unroll.disable"}