[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / AArch64 / sve-strict-fadd-cost.ll
blob0221c890a6e1bb69527278416f875674b482f168
1 ; REQUIRES: asserts
2 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-reordering=false \
3 ; RUN:   -scalable-vectorization=on -force-vector-width=4 -force-vector-interleave=1 -S 2>&1 | FileCheck %s --check-prefix=CHECK-VF4
4 ; RUN: opt < %s -loop-vectorize -debug -disable-output -force-ordered-reductions=true -hints-allow-reordering=false \
5 ; RUN:   -scalable-vectorization=on -force-vector-width=8 -force-vector-interleave=1 -S 2>&1 | FileCheck %s --check-prefix=CHECK-VF8
7 target triple="aarch64-unknown-linux-gnu"
9 ; CHECK-VF4: Found an estimated cost of 128 for VF vscale x 4 For instruction:   %add = fadd float %0, %sum.07
10 ; CHECK-VF8: Found an estimated cost of 256 for VF vscale x 8 For instruction:   %add = fadd float %0, %sum.07
12 define float @fadd_strict32(float* noalias nocapture readonly %a, i64 %n) #0 {
13 entry:
14   br label %for.body
16 for.body:
17   %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
18   %sum.07 = phi float [ 0.000000e+00, %entry ], [ %add, %for.body ]
19   %arrayidx = getelementptr inbounds float, float* %a, i64 %iv
20   %0 = load float, float* %arrayidx, align 4
21   %add = fadd float %0, %sum.07
22   %iv.next = add nuw nsw i64 %iv, 1
23   %exitcond.not = icmp eq i64 %iv.next, %n
24   br i1 %exitcond.not, label %for.end, label %for.body, !llvm.loop !0
26 for.end:
27   ret float %add
31 ; CHECK-VF4: Found an estimated cost of 128 for VF vscale x 4 For instruction:   %add = fadd double %0, %sum.07
32 ; CHECK-VF8: Found an estimated cost of 256 for VF vscale x 8 For instruction:   %add = fadd double %0, %sum.07
34 define double @fadd_strict64(double* noalias nocapture readonly %a, i64 %n) #0 {
35 entry:
36   br label %for.body
38 for.body:
39   %iv = phi i64 [ 0, %entry ], [ %iv.next, %for.body ]
40   %sum.07 = phi double [ 0.000000e+00, %entry ], [ %add, %for.body ]
41   %arrayidx = getelementptr inbounds double, double* %a, i64 %iv
42   %0 = load double, double* %arrayidx, align 4
43   %add = fadd double %0, %sum.07
44   %iv.next = add nuw nsw i64 %iv, 1
45   %exitcond.not = icmp eq i64 %iv.next, %n
46   br i1 %exitcond.not, label %for.end, label %for.body, !llvm.loop !0
48 for.end:
49   ret double %add
52 attributes #0 = { "target-features"="+sve" vscale_range(0, 16) }
54 !0 = distinct !{!0, !1}
55 !1 = !{!"llvm.loop.vectorize.scalable.enable", i1 true}