Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / LoopVectorize / AArch64 / scalarize-store-with-predication.ll
blobbd3a01b124150a71d267fce3d6d03bb4248a7771
1 ; RUN: opt -passes=loop-vectorize -force-vector-width=1 -force-vector-interleave=2 \
2 ; RUN:   -prefer-predicate-over-epilogue=scalar-epilogue -S -o - < %s | FileCheck %s
3 ; RUN: opt -mattr=+sve -passes=loop-vectorize -force-vector-width=1 -force-vector-interleave=2 \
4 ; RUN:   -prefer-predicate-over-epilogue=scalar-epilogue -S -o - < %s | FileCheck %s
6 target triple = "aarch64-unknown-linux-gnu"
8 ; This test is defending against a bug that appeared when we have a target
9 ; configuration where masked loads/stores are legal -- e.g. AArch64 with SVE.
10 ; Predication would not be applied during interleaving, enabling the
11 ; possibility of superfluous loads/stores which could result in miscompiles.
12 ; This test checks that, when we disable vectorisation and force interleaving,
13 ; stores are predicated properly.
15 ; This is _not_ an SVE-specific test. The same bug could manifest on any
16 ; architecture with masked loads/stores, but we use SVE for testing purposes
17 ; here.
19 define void @foo(ptr %data1, ptr %data2) {
20 ; CHECK-LABEL: @foo(
21 ; CHECK:       vector.body:
22 ; CHECK:         br i1 {{%.*}}, label %pred.store.if, label %pred.store.continue
23 ; CHECK:       pred.store.if:
24 ; CHECK-NEXT:    store i32 {{%.*}}, ptr {{%.*}}
25 ; CHECK-NEXT:    br label %pred.store.continue
26 ; CHECK:       pred.store.continue:
27 ; CHECK-NEXT:    br i1 {{%.*}}, label %pred.store.if1, label %pred.store.continue2
28 ; CHECK:       pred.store.if1:
29 ; CHECK-NEXT:    store i32 {{%.*}}, ptr {{%.*}}
30 ; CHECK-NEXT:    br label %pred.store.continue2
31 ; CHECK:       pred.store.continue2:
33 entry:
34   br label %while.body
36 while.body:
37   %i = phi i64 [ 1023, %entry ], [ %i.next, %if.end ]
38   %arrayidx = getelementptr inbounds i32, ptr %data1, i64 %i
39   %ld = load i32, ptr %arrayidx, align 4
40   %cmp = icmp sgt i32 %ld, %ld
41   br i1 %cmp, label %if.then, label %if.end
43 if.then:
44   store i32 %ld, ptr %arrayidx, align 4
45   br label %if.end
47 if.end:
48   %i.next = add nsw i64 %i, -1
49   %tobool.not = icmp eq i64 %i, 0
50   br i1 %tobool.not, label %while.end, label %while.body
52 while.end:
53   ret void