[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / AArch64 / sve-vector-reverse-mask4.ll
blobcd7fa7e1ef3c82bf507631efd24f3b1bab82961f
1 ; This is the loop in c++ being vectorize in this file with 
2 ; experimental.vector.reverse
4 ;#pragma clang loop vectorize_width(4, scalable)
5 ;  for (long int i = N - 1; i >= 0; i--)
6 ;  {
7 ;    if (cond[i])
8 ;      a[i] += 1;
9 ;  }
11 ; The test checks if the mask is being correctly created, reverted and used
13 ; RUN: opt -loop-vectorize -scalable-vectorization=on -dce -instcombine -mtriple aarch64-linux-gnu -S < %s | FileCheck %s
15 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
16 target triple = "aarch64-unknown-linux-gnu"
18 define void @vector_reverse_mask_nxv4i1(double* %a, double* %cond, i64 %N) #0 {
19 ; CHECK-LABEL: vector.body:
20 ; CHECK: %[[REVERSE6:.*]] = call <vscale x 4 x i1> @llvm.experimental.vector.reverse.nxv4i1(<vscale x 4 x i1> %{{.*}})
21 ; CHECK: %[[WIDEMSKLOAD:.*]] = call <vscale x 4 x double> @llvm.masked.load.nxv4f64.p0nxv4f64(<vscale x 4 x double>* nonnull %{{.*}}, i32 8, <vscale x 4 x i1> %[[REVERSE6]], <vscale x 4 x double> poison)
22 ; CHECK-NEXT: %[[REVERSE7:.*]] = call <vscale x 4 x double> @llvm.experimental.vector.reverse.nxv4f64(<vscale x 4 x double> %[[WIDEMSKLOAD]])
23 ; CHECK-NEXT: %[[FADD:.*]] = fadd <vscale x 4 x double> %[[REVERSE7]]
24 ; CHECK-NEXT: %[[REVERSE8:.*]] = call <vscale x 4 x double> @llvm.experimental.vector.reverse.nxv4f64(<vscale x 4 x double> %[[FADD]])
25 ; CHECK:  %[[REVERSE9:.*]] = call <vscale x 4 x i1> @llvm.experimental.vector.reverse.nxv4i1(<vscale x 4 x i1> %{{.*}})
26 ; CHECK: call void @llvm.masked.store.nxv4f64.p0nxv4f64(<vscale x 4 x double> %[[REVERSE8]], <vscale x 4 x double>* %{{.*}}, i32 8, <vscale x 4 x i1> %[[REVERSE9]]
28 entry:
29   %cmp7 = icmp sgt i64 %N, 0
30   br i1 %cmp7, label %for.body, label %for.cond.cleanup
32 for.cond.cleanup:                                 ; preds = %for.cond.cleanup, %entry
33   ret void
35 for.body:                                         ; preds = %for.body, %entry
36   %i.08.in = phi i64 [ %i.08, %for.inc ], [ %N, %entry ]
37   %i.08 = add nsw i64 %i.08.in, -1
38   %arrayidx = getelementptr inbounds double, double* %cond, i64 %i.08
39   %0 = load double, double* %arrayidx, align 8
40   %tobool = fcmp une double %0, 0.000000e+00
41   br i1 %tobool, label %if.then, label %for.inc
43 if.then:                                          ; preds = %for.body
44   %arrayidx1 = getelementptr inbounds double, double* %a, i64 %i.08
45   %1 = load double, double* %arrayidx1, align 8
46   %add = fadd double %1, 1.000000e+00
47   store double %add, double* %arrayidx1, align 8
48   br label %for.inc
50 for.inc:                                          ; preds = %for.body, %if.then
51   %cmp = icmp sgt i64 %i.08.in, 1
52   br i1 %cmp, label %for.body, label %for.cond.cleanup, !llvm.loop !0
55 attributes #0 = {"target-cpu"="generic" "target-features"="+neon,+sve"}
58 !0 = distinct !{!0, !1, !2, !3, !4}
59 !1 = !{!"llvm.loop.mustprogress"}
60 !2 = !{!"llvm.loop.vectorize.width", i32 4}
61 !3 = !{!"llvm.loop.vectorize.scalable.enable", i1 true}
62 !4 = !{!"llvm.loop.vectorize.enable", i1 true}