Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / GVN / edge.ll
blob94a25b94707bab7fed08735f79905d2026ede4be
1 ; RUN: opt -passes=gvn -S < %s | FileCheck %s
3 define i32 @f1(i32 %x) {
4   ; CHECK-LABEL: define i32 @f1(
5 bb0:
6   %cmp = icmp eq i32 %x, 0
7   br i1 %cmp, label %bb2, label %bb1
8 bb1:
9   br label %bb2
10 bb2:
11   %cond = phi i32 [ %x, %bb0 ], [ 0, %bb1 ]
12   %foo = add i32 %cond, %x
13   ret i32 %foo
14   ; CHECK: bb2:
15   ; CHECK: ret i32 %x
18 define i32 @f2(i32 %x) {
19   ; CHECK-LABEL: define i32 @f2(
20 bb0:
21   %cmp = icmp ne i32 %x, 0
22   br i1 %cmp, label %bb1, label %bb2
23 bb1:
24   br label %bb2
25 bb2:
26   %cond = phi i32 [ %x, %bb0 ], [ 0, %bb1 ]
27   %foo = add i32 %cond, %x
28   ret i32 %foo
29   ; CHECK: bb2:
30   ; CHECK: ret i32 %x
33 define i32 @f3(i32 %x) {
34   ; CHECK-LABEL: define i32 @f3(
35 bb0:
36   switch i32 %x, label %bb1 [ i32 0, label %bb2]
37 bb1:
38   br label %bb2
39 bb2:
40   %cond = phi i32 [ %x, %bb0 ], [ 0, %bb1 ]
41   %foo = add i32 %cond, %x
42   ret i32 %foo
43   ; CHECK: bb2:
44   ; CHECK: ret i32 %x
47 declare void @g(i1)
48 define void @f4(ptr %x)  {
49 ; CHECK-LABEL: define void @f4(
50 bb0:
51   %y = icmp eq ptr null, %x
52   br i1 %y, label %bb2, label %bb1
53 bb1:
54   br label %bb2
55 bb2:
56   %zed = icmp eq ptr null, %x
57   call void @g(i1 %zed)
58 ; CHECK: call void @g(i1 %y)
59   ret void
62 define double @fcmp_oeq_not_zero(double %x, double %y) {
63 entry:
64   %cmp = fcmp oeq double %y, 2.0
65   br i1 %cmp, label %if, label %return
67 if:
68   %div = fdiv double %x, %y
69   br label %return
71 return:
72   %retval = phi double [ %div, %if ], [ %x, %entry ]
73   ret double %retval
75 ; CHECK-LABEL: define double @fcmp_oeq_not_zero(
76 ; CHECK: %div = fdiv double %x, 2.0
79 define double @fcmp_une_not_zero(double %x, double %y) {
80 entry:
81   %cmp = fcmp une double %y, 2.0
82   br i1 %cmp, label %return, label %else
84 else:
85   %div = fdiv double %x, %y
86   br label %return
88 return:
89   %retval = phi double [ %div, %else ], [ %x, %entry ]
90   ret double %retval
92 ; CHECK-LABEL: define double @fcmp_une_not_zero(
93 ; CHECK: %div = fdiv double %x, 2.0
96 define double @fcmp_one_possibly_nan(double %x, double %y) {
97 entry:
98   %cmp = fcmp one double %y, 2.0
99   br i1 %cmp, label %return, label %else
101 else:
102   %div = fdiv double %x, %y
103   br label %return
105 return:
106   %retval = phi double [ %div, %else ], [ %x, %entry ]
107   ret double %retval
109 ; CHECK-LABEL: define double @fcmp_one_possibly_nan(
110 ; CHECK: %div = fdiv double %x, %y
113 define double @fcmp_one_not_zero_or_nan(double %x, double %y) {
114 entry:
115   %cmp = fcmp nnan one double %y, 2.0
116   br i1 %cmp, label %return, label %else
118 else:
119   %div = fdiv double %x, %y
120   br label %return
122 return:
123   %retval = phi double [ %div, %else ], [ %x, %entry ]
124   ret double %retval
126 ; CHECK-LABEL: define double @fcmp_one_not_zero_or_nan(
127 ; CHECK: %div = fdiv double %x, 2.0
130 ; PR22376 - We can't propagate zero constants because -0.0 
131 ; compares equal to 0.0. If %y is -0.0 in this test case,
132 ; we would produce the wrong sign on the infinity return value.
133 define double @fcmp_oeq_zero(double %x, double %y) {
134 entry:
135   %cmp = fcmp oeq double %y, 0.0
136   br i1 %cmp, label %if, label %return
139   %div = fdiv double %x, %y
140   br label %return
142 return:
143   %retval = phi double [ %div, %if ], [ %x, %entry ]
144   ret double %retval
146 ; CHECK-LABEL: define double @fcmp_oeq_zero(
147 ; CHECK: %div = fdiv double %x, %y
150 define double @fcmp_une_zero(double %x, double %y) {
151 entry:
152   %cmp = fcmp une double %y, -0.0
153   br i1 %cmp, label %return, label %else
155 else:
156   %div = fdiv double %x, %y
157   br label %return
159 return:
160   %retval = phi double [ %div, %else ], [ %x, %entry ]
161   ret double %retval
163 ; CHECK-LABEL: define double @fcmp_une_zero(
164 ; CHECK: %div = fdiv double %x, %y
167 ; We also cannot propagate a value if it's not a constant.
168 ; This is because the value could be 0.0 or -0.0.
170 define double @fcmp_oeq_maybe_zero(double %x, double %y, double %z1, double %z2) {
171 entry:
172  %z = fadd double %z1, %z2
173  %cmp = fcmp oeq double %y, %z
174  br i1 %cmp, label %if, label %return
177  %div = fdiv double %x, %z
178  br label %return
180 return:
181  %retval = phi double [ %div, %if ], [ %x, %entry ]
182  ret double %retval
184 ; CHECK-LABEL: define double @fcmp_oeq_maybe_zero(
185 ; CHECK: %div = fdiv double %x, %z
188 define double @fcmp_une_maybe_zero(double %x, double %y, double %z1, double %z2) {
189 entry:
190  %z = fadd double %z1, %z2
191  %cmp = fcmp une double %y, %z
192  br i1 %cmp, label %return, label %else
194 else:
195  %div = fdiv double %x, %z
196  br label %return
198 return:
199  %retval = phi double [ %div, %else ], [ %x, %entry ]
200  ret double %retval
202 ; CHECK-LABEL: define double @fcmp_une_maybe_zero(
203 ; CHECK: %div = fdiv double %x, %z
207 define double @fcmp_ueq_possibly_nan(double %x, double %y) {
208 entry:
209   %cmp = fcmp ueq double %y, 2.0
210   br i1 %cmp, label %do_div, label %return
212 do_div:
213   %div = fdiv double %x, %y
214   br label %return
216 return:
217   %retval = phi double [ %div, %do_div ], [ %x, %entry ]
218   ret double %retval
220 ; CHECK-LABEL: define double @fcmp_ueq_possibly_nan(
221 ; CHECK: %div = fdiv double %x, %y
224 define double @fcmp_ueq_not_zero_or_nan(double %x, double %y) {
225 entry:
226   %cmp = fcmp nnan ueq double %y, 2.0
227   br i1 %cmp, label %do_div, label %return
229 do_div:
230   %div = fdiv double %x, %y
231   br label %return
233 return:
234   %retval = phi double [ %div, %do_div ], [ %x, %entry ]
235   ret double %retval
237 ; CHECK-LABEL: define double @fcmp_ueq_not_zero_or_nan(
238 ; CHECK: %div = fdiv double %x, 2.0