[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / LoopDistribute / bounds-expansion-bug.ll
blobbe3b48dcfacf52c53e1e8e585800a3fb6b6b6a6e
1 ; RUN: opt -passes=loop-distribute -enable-loop-distribute -S < %s | FileCheck %s
3 ; When emitting the memchecks for:
5 ;   for (i = 0; i < n; i++) {
6 ;     A[i + 1] = A[i] * B[i];
7 ;     =======================
8 ;     C[i] = D[i] * E[i];
9 ;   }
11 ; we had a bug when expanding the bounds for A and C.  These are expanded
12 ; multiple times and rely on the caching in SCEV expansion to avoid any
13 ; redundancy.  However, due to logic in SCEVExpander::ReuseOrCreateCast, we
14 ; can get earlier expanded values invalidated when casts are used.  This test
15 ; ensure that we are not using the invalidated values.
17 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
19 define void @f(ptr %a1, ptr %a2,
20                ptr %b,
21                ptr %c1, ptr %c2,
22                ptr %d,
23                ptr %e) {
24 entry:
26   %cond = icmp eq ptr %e, null
27   br i1 %cond, label %one, label %two
28 one:
29   br label %join
30 two:
31   br label %join
32 join:
34 ; The pointers need to be defined by PHIs in order for the bug to trigger.
35 ; Because of the PHIs the existing casts won't be at the desired location so a
36 ; new cast will be emitted and the old cast will get invalidated.
38 ; These are the steps:
40 ; 1. After the bounds for A and C are first expanded:
42 ;   join:
43 ;     %a = phi i32* [ %a1, %one ], [ %a2, %two ]
44 ;     %c = phi i32* [ %c1, %one ], [ %c2, %two ]
45 ;     %c5 = bitcast i32* %c to i8*
46 ;     %a3 = bitcast i32* %a to i8*
48 ; 2. After A is expanded again:
50 ;   join:                                             ; preds = %two, %one
51 ;     %a = phi i32* [ %a1, %one ], [ %a2, %two ]
52 ;     %c = phi i32* [ %c1, %one ], [ %c2, %two ]
53 ;     %a3 = bitcast i32* %a to i8*                   <--- new
54 ;     %c5 = bitcast i32* %c to i8*
55 ;     %0 = bitcast i32* %a to i8*                 <--- old, invalidated
57 ; 3. Finally, when C is expanded again:
59 ;   join:                                             ; preds = %two, %one
60 ;     %a = phi i32* [ %a1, %one ], [ %a2, %two ]
61 ;     %c = phi i32* [ %c1, %one ], [ %c2, %two ]
62 ;     %c5 = bitcast i32* %c to i8*                   <--- new
63 ;     %a3 = bitcast i32* %a to i8*
64 ;     %0 = bitcast i32* %c to i8*                 <--- old, invalidated
65 ;     %1 = bitcast i32* %a to i8*
67   %a = phi ptr [%a1, %one], [%a2, %two]
68   %c = phi ptr [%c1, %one], [%c2, %two]
69   br label %for.body
71 ; CHECK: join
72 ; CHECK-NOT: bitcast ptr %c to ptr
73 ; CHECK-NOT: bitcast ptr %a to ptr
75 for.body:                                         ; preds = %for.body, %entry
76   %ind = phi i64 [ 0, %join ], [ %add, %for.body ]
78   %arrayidxA = getelementptr inbounds i32, ptr %a, i64 %ind
79   %loadA = load i32, ptr %arrayidxA, align 4
81   %arrayidxB = getelementptr inbounds i32, ptr %b, i64 %ind
82   %loadB = load i32, ptr %arrayidxB, align 4
84   %mulA = mul i32 %loadB, %loadA
86   %add = add nuw nsw i64 %ind, 1
87   %arrayidxA_plus_4 = getelementptr inbounds i32, ptr %a, i64 %add
88   store i32 %mulA, ptr %arrayidxA_plus_4, align 4
90   %arrayidxD = getelementptr inbounds i32, ptr %d, i64 %ind
91   %loadD = load i32, ptr %arrayidxD, align 4
93   %arrayidxE = getelementptr inbounds i32, ptr %e, i64 %ind
94   %loadE = load i32, ptr %arrayidxE, align 4
96   %mulC = mul i32 %loadD, %loadE
98   %arrayidxC = getelementptr inbounds i32, ptr %c, i64 %ind
99   store i32 %mulC, ptr %arrayidxC, align 4
101   %exitcond = icmp eq i64 %add, 20
102   br i1 %exitcond, label %for.end, label %for.body
104 for.end:                                          ; preds = %for.body
105   ret void