AMDGPU: Fix warnings introduced by r310336
[llvm-project.git] / polly / test / ScopInfo / aliasing_with_non_affine_access.ll
blob3bae83f90a9e0ed467e353f245fe227860f7b0c1
1 ; RUN: opt %loadPolly -analyze -polly-ast -polly-process-unprofitable -polly-allow-nonaffine < %s | FileCheck %s
3 ; @test1
4 ; Make sure we generate the correct aliasing check for a fixed-size memset operation.
5 ; CHECK: if (1 && (&MemRef_tmp0[15] <= &MemRef_tmp1[0] || &MemRef_tmp1[32] <= &MemRef_tmp0[14]))
7 ; @test2
8 ; Make sure we generate the correct aliasing check for a variable-size memset operation.
9 ; CHECK: if (1 && (&MemRef_tmp0[15] <= &MemRef_tmp1[0] || &MemRef_tmp1[n] <= &MemRef_tmp0[14]))
11 ; @test3
12 ; We can't do anything interesting with a non-affine memset; just make sure it doesn't crash.
14 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
16 %struct.info = type { i32, %struct.ctr*, i32, %struct.ord*, %struct.ctr*, i32, i8*, i32, i32, double }
17 %struct.ctr = type { i32, i8, i8, i32 }
18 %struct.ord = type { i32, i8 }
20 ; Function Attrs: argmemonly nounwind
21 declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) #0
23 define void @test1(%struct.info** %ppIdxInfo) {
24 entry:
25   %tmp0 = load %struct.info*, %struct.info** %ppIdxInfo, align 8
26   br label %if.end125
28 if.end125:                                        ; preds = %entry
29   %tmp1 = load %struct.ctr*, %struct.ctr** undef, align 8
30   br label %for.end143
32 for.end143:                                       ; preds = %if.end125
33   %tmp2 = bitcast %struct.ctr* %tmp1 to i8*
34   tail call void @llvm.memset.p0i8.i64(i8* %tmp2, i8 0, i64 32, i32 4, i1 false)
35   %needToFreeIdxStr = getelementptr inbounds %struct.info, %struct.info* %tmp0, i64 0, i32 7
36   %tmp3 = load i32, i32* %needToFreeIdxStr, align 8
37   br i1 false, label %if.end149, label %if.then148
39 if.then148:                                       ; preds = %for.end143
40   br label %if.end149
42 if.end149:                                        ; preds = %if.then148, %for.end143
43   ret void
46 define void @test2(%struct.info** %ppIdxInfo, i64 %n) {
47 entry:
48   %tmp0 = load %struct.info*, %struct.info** %ppIdxInfo, align 8
49   br label %if.end125
51 if.end125:                                        ; preds = %entry
52   %tmp1 = load %struct.ctr*, %struct.ctr** undef, align 8
53   br label %for.end143
55 for.end143:                                       ; preds = %if.end125
56   %tmp2 = bitcast %struct.ctr* %tmp1 to i8*
57   tail call void @llvm.memset.p0i8.i64(i8* %tmp2, i8 0, i64 %n, i32 4, i1 false)
58   %needToFreeIdxStr = getelementptr inbounds %struct.info, %struct.info* %tmp0, i64 0, i32 7
59   %tmp3 = load i32, i32* %needToFreeIdxStr, align 8
60   br i1 false, label %if.end149, label %if.then148
62 if.then148:                                       ; preds = %for.end143
63   br label %if.end149
65 if.end149:                                        ; preds = %if.then148, %for.end143
66   ret void
69 define i32 @test3(i32* %x, i32 %n) {
70 entry:
71   br label %entry.split
73 entry.split:                                      ; preds = %entry
74   %conv = sext i32 %n to i64
75   %cmp8 = icmp sgt i32 %n, 0
76   br i1 %cmp8, label %for.body.lr.ph, label %for.cond.cleanup
78 for.body.lr.ph:                                   ; preds = %entry.split
79   %tmp0 = bitcast i32* %x to i8*
80   br label %for.body
82 for.cond.cleanup:                                 ; preds = %for.body, %entry.split
83   ret i32 0
85 for.body:                                         ; preds = %for.body, %for.body.lr.ph
86   %i.09 = phi i64 [ 0, %for.body.lr.ph ], [ %inc, %for.body ]
87   %mul = mul nsw i64 %i.09, %i.09
88   tail call void @llvm.memset.p0i8.i64(i8* %tmp0, i8 0, i64 %mul, i32 4, i1 false)
89   %add = add nuw nsw i64 %i.09, 1000
90   %arrayidx = getelementptr inbounds i32, i32* %x, i64 %add
91   store i32 5, i32* %arrayidx, align 4
92   %inc = add nuw nsw i64 %i.09, 1
93   %exitcond = icmp eq i64 %inc, %conv
94   br i1 %exitcond, label %for.cond.cleanup, label %for.body
97 attributes #0 = { argmemonly nounwind }