Update Polly tests to handle explicitly typed gep changes in LLVM
[polly-mirror.git] / test / Dependences / reduction_privatization_deps_2.ll
blob60fc54f9495d437d9ada16d878b31addbd75b030
1 ; RUN: opt %loadPolly -polly-detect-unprofitable -polly-dependences -analyze < %s | FileCheck %s
3 ; We have privatization dependences from a textually later statement to a
4 ; textually earlier one, but the dependences still go forward in time.
6 ;  CHECK: RAW dependences:
7 ;  CHECK-DAG:  Stmt_S3[i0] -> Stmt_S2[1 + i0, o1] : i0 <= 97 and i0 >= 0 and o1 <= 99 and o1 >= 0
8 ;  CHECK-DAG:  Stmt_S1[i0] -> Stmt_S3[i0] : i0 <= 98 and i0 >= 0
9 ;  CHECK: WAR dependences:
10 ;  CHECK:   {  }
11 ;  CHECK: WAW dependences:
12 ;  CHECK-DAG:  Stmt_S3[i0] -> Stmt_S2[1 + i0, o1] : i0 <= 97 and i0 >= 0 and o1 <= 99 and o1 >= 0
13 ;  CHECK-DAG:  Stmt_S1[i0] -> Stmt_S3[i0] : i0 <= 98 and i0 >= 0
14 ;  CHECK: Reduction dependences:
15 ;  CHECK:   { Stmt_S2[i0, i1] -> Stmt_S2[i0, 1 + i1] : i0 <= 98 and i0 >= 0 and i1 <= 98 and i1 >= 0 }
17 ;    void f(int *sum) {
18 ;      int i, j;
19 ;      for (i = 0; i < 99; i++) {
20 ; S1:    sum[i + 1] += 42;
21 ;        for (j = 0; j < 100; j++)
22 ; S2:      sum[i] += i * j;
23 ; S3:    sum[i + 1] += 7;
24 ;      }
25 ;    }
27 target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-n32-S64"
29 define void @f(i32* %sum)  {
30 entry:
31   br label %for.cond
33 for.cond:                                         ; preds = %for.inc10, %entry
34   %i.0 = phi i32 [ 0, %entry ], [ %inc11, %for.inc10 ]
35   %exitcond1 = icmp ne i32 %i.0, 99
36   br i1 %exitcond1, label %for.body, label %for.end12
38 for.body:                                         ; preds = %for.cond
39   br label %S1
41 S1:                                               ; preds = %for.body
42   %add = add nsw i32 %i.0, 1
43   %arrayidx = getelementptr inbounds i32, i32* %sum, i32 %add
44   %tmp = load i32* %arrayidx, align 4
45   %add1 = add nsw i32 %tmp, 42
46   store i32 %add1, i32* %arrayidx, align 4
47   br label %for.cond2
49 for.cond2:                                        ; preds = %for.inc, %S1
50   %j.0 = phi i32 [ 0, %S1 ], [ %inc, %for.inc ]
51   %exitcond = icmp ne i32 %j.0, 100
52   br i1 %exitcond, label %for.body4, label %for.end
54 for.body4:                                        ; preds = %for.cond2
55   br label %S2
57 S2:                                               ; preds = %for.body4
58   %mul = mul nsw i32 %i.0, %j.0
59   %arrayidx5 = getelementptr inbounds i32, i32* %sum, i32 %i.0
60   %tmp2 = load i32* %arrayidx5, align 4
61   %add6 = add nsw i32 %tmp2, %mul
62   store i32 %add6, i32* %arrayidx5, align 4
63   br label %for.inc
65 for.inc:                                          ; preds = %S2
66   %inc = add nsw i32 %j.0, 1
67   br label %for.cond2
69 for.end:                                          ; preds = %for.cond2
70   br label %S3
72 S3:                                               ; preds = %for.end
73   %add7 = add nsw i32 %i.0, 1
74   %arrayidx8 = getelementptr inbounds i32, i32* %sum, i32 %add7
75   %tmp3 = load i32* %arrayidx8, align 4
76   %add9 = add nsw i32 %tmp3, 7
77   store i32 %add9, i32* %arrayidx8, align 4
78   br label %for.inc10
80 for.inc10:                                        ; preds = %S3
81   %inc11 = add nsw i32 %i.0, 1
82   br label %for.cond
84 for.end12:                                        ; preds = %for.cond
85   ret void