[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / NewGVN / refine-stores.ll
blobc11065f651877c4f7146eaba9caaf4bea21f85bb
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -basic-aa -newgvn -S | FileCheck %s
3 ;; Now that we do store refinement, we have to verify that we add fake uses
4 ;; when we skip existing stores.
5 ;; We also are testing that various variations that cause stores to move classes
6 ;; have the right class movement happen
7 ;; All of these tests result in verification failures if it does not.
9 source_filename = "bugpoint-output-daef094.bc"
10 target triple = "x86_64-apple-darwin16.5.0"
12 %struct.eggs = type {}
14 define void @spam(i32 *%a) {
15 ; CHECK-LABEL: @spam(
16 ; CHECK-NEXT:  bb:
17 ; CHECK-NEXT:    [[FOO:%.*]] = bitcast i32* [[A:%.*]] to %struct.eggs**
18 ; CHECK-NEXT:    store %struct.eggs* null, %struct.eggs** [[FOO]]
19 ; CHECK-NEXT:    br label [[BB1:%.*]]
20 ; CHECK:       bb1:
21 ; CHECK-NEXT:    br i1 undef, label [[BB3:%.*]], label [[BB2:%.*]]
22 ; CHECK:       bb2:
23 ; CHECK-NEXT:    call void @baz()
24 ; CHECK-NEXT:    br label [[BB1]]
25 ; CHECK:       bb3:
26 ; CHECK-NEXT:    store i32 0, i32* undef
27 ; CHECK-NEXT:    store %struct.eggs* null, %struct.eggs** [[FOO]]
28 ; CHECK-NEXT:    unreachable
30 bb:
31   %foo = bitcast i32 *%a to %struct.eggs**
32   store %struct.eggs* null, %struct.eggs** %foo
33   br label %bb1
35 bb1:                                              ; preds = %bb2, %bb
36   br i1 undef, label %bb3, label %bb2
38 bb2:                                              ; preds = %bb1
39   call void @baz()
40   br label %bb1
42 bb3:                                              ; preds = %bb1
43   store i32 0, i32* undef
44 ;; This store is defined by a memoryphi of the call and the first store
45 ;; At first, we will prove it equivalent to the first store above.
46 ;; Then the call will become reachable, and the equivalence will be removed
47 ;; Without it being a use of the first store, we will not update the store
48 ;; to reflect this.
49   store %struct.eggs* null, %struct.eggs** %foo
50   unreachable
53 declare void @baz()
56 define void @a() {
57 ; CHECK-LABEL: @a(
58 ; CHECK-NEXT:  b:
59 ; CHECK-NEXT:    br label [[C:%.*]]
60 ; CHECK:       c:
61 ; CHECK-NEXT:    store i64 undef, i64* null
62 ; CHECK-NEXT:    br label [[E:%.*]]
63 ; CHECK:       e:
64 ; CHECK-NEXT:    [[G:%.*]] = load i64*, i64** null
65 ; CHECK-NEXT:    store i64* undef, i64** null
66 ; CHECK-NEXT:    br i1 undef, label [[C]], label [[E]]
69   br label %c
71 c:                                                ; preds = %e, %b
72   %d = phi i64* [ undef, %b ], [ null, %e ]
73   store i64 undef, i64* %d
74   br label %e
76 e:                                                ; preds = %e, %c
77 ;; The memory for this load starts out equivalent to just the store in c, we later discover the store after us, and
78 ;; need to make sure the right set of values get marked as changed after memory leaders change
79   %g = load i64*, i64** null
80   %0 = bitcast i64* %g to i64*
81   store i64* undef, i64** null
82   br i1 undef, label %c, label %e
85 %struct.hoge = type {}
87 define void @widget(%struct.hoge* %arg) {
88 ; CHECK-LABEL: @widget(
89 ; CHECK-NEXT:  bb:
90 ; CHECK-NEXT:    br label [[BB1:%.*]]
91 ; CHECK:       bb1:
92 ; CHECK-NEXT:    [[TMP:%.*]] = phi %struct.hoge* [ [[ARG:%.*]], [[BB:%.*]] ], [ null, [[BB1]] ]
93 ; CHECK-NEXT:    store %struct.hoge* [[TMP]], %struct.hoge** undef
94 ; CHECK-NEXT:    br i1 undef, label [[BB1]], label [[BB2:%.*]]
95 ; CHECK:       bb2:
96 ; CHECK-NEXT:    [[TMP3:%.*]] = phi i64 [ [[TMP8:%.*]], [[BB7:%.*]] ], [ 0, [[BB1]] ]
97 ; CHECK-NEXT:    [[TMP4:%.*]] = icmp eq i64 [[TMP3]], 0
98 ; CHECK-NEXT:    br i1 [[TMP4]], label [[BB7]], label [[BB5:%.*]]
99 ; CHECK:       bb5:
100 ; CHECK-NEXT:    [[TMP6:%.*]] = load i64, i64* null
101 ; CHECK-NEXT:    call void @quux()
102 ; CHECK-NEXT:    store i64 [[TMP6]], i64* undef
103 ; CHECK-NEXT:    br label [[BB7]]
104 ; CHECK:       bb7:
105 ; CHECK-NEXT:    [[TMP8]] = add i64 [[TMP3]], 1
106 ; CHECK-NEXT:    br label [[BB2]]
109   br label %bb1
111 bb1:                                              ; preds = %bb1, %bb
112   %tmp = phi %struct.hoge* [ %arg, %bb ], [ null, %bb1 ]
113   store %struct.hoge* %tmp, %struct.hoge** undef
114   br i1 undef, label %bb1, label %bb2
116 bb2:                                              ; preds = %bb7, %bb1
117   %tmp3 = phi i64 [ %tmp8, %bb7 ], [ 0, %bb1 ]
118   %tmp4 = icmp eq i64 %tmp3, 0
119   br i1 %tmp4, label %bb7, label %bb5
121 bb5:                                              ; preds = %bb2
122   ;; Originally thought equal to the store that comes after it until the phi edges
123   ;; are completely traversed
124   %tmp6 = load i64, i64* null
125   call void @quux()
126   store i64 %tmp6, i64* undef
127   br label %bb7
129 bb7:                                              ; preds = %bb5, %bb2
130   %tmp8 = add i64 %tmp3, 1
131   br label %bb2
134 declare void @quux()
136 %struct.a = type {}
138 define void @b() {
139 ; CHECK-LABEL: @b(
140 ; CHECK-NEXT:    [[C:%.*]] = alloca [[STRUCT_A:%.*]]
141 ; CHECK-NEXT:    br label [[D:%.*]]
142 ; CHECK:       m:
143 ; CHECK-NEXT:    unreachable
144 ; CHECK:       d:
145 ; CHECK-NEXT:    [[G:%.*]] = bitcast %struct.a* [[C]] to i8*
146 ; CHECK-NEXT:    [[F:%.*]] = bitcast i8* [[G]] to i32*
147 ; CHECK-NEXT:    [[E:%.*]] = load i32, i32* [[F]]
148 ; CHECK-NEXT:    br i1 undef, label [[I:%.*]], label [[J:%.*]]
149 ; CHECK:       i:
150 ; CHECK-NEXT:    br i1 undef, label [[K:%.*]], label [[M:%.*]]
151 ; CHECK:       k:
152 ; CHECK-NEXT:    br label [[L:%.*]]
153 ; CHECK:       l:
154 ; CHECK-NEXT:    unreachable
155 ; CHECK:       j:
156 ; CHECK-NEXT:    br label [[M]]
158   %c = alloca %struct.a
159   br label %d
161 m:                                                ; preds = %j, %i
162   store i32 %e, i32* %f
163   unreachable
165 d:                                                ; preds = %0
166   %g = bitcast %struct.a* %c to i8*
167   %h = getelementptr i8, i8* %g
168   %f = bitcast i8* %h to i32*
169   %e = load i32, i32* %f
170   br i1 undef, label %i, label %j
172 i:                                                ; preds = %d
173   br i1 undef, label %k, label %m
175 k:                                                ; preds = %i
176   br label %l
178 l:                                                ; preds = %k
179   %n = phi i32 [ %e, %k ]
180   ;; Becomes equal and then not equal to the other store, and
181   ;; along the way, the load.
182   store i32 %n, i32* %f
183   unreachable
185 j:                                                ; preds = %d
186   br label %m