1 ; RUN: opt -passes=gvn -S < %s | FileCheck %s
3 define i32 @f1(i32 %x) {
4 ; CHECK-LABEL: define i32 @f1(
6 %cmp = icmp eq i32 %x, 0
7 br i1 %cmp, label %bb2, label %bb1
11 %cond = phi i32 [ %x, %bb0 ], [ 0, %bb1 ]
12 %foo = add i32 %cond, %x
18 define i32 @f2(i32 %x) {
19 ; CHECK-LABEL: define i32 @f2(
21 %cmp = icmp ne i32 %x, 0
22 br i1 %cmp, label %bb1, label %bb2
26 %cond = phi i32 [ %x, %bb0 ], [ 0, %bb1 ]
27 %foo = add i32 %cond, %x
33 define i32 @f3(i32 %x) {
34 ; CHECK-LABEL: define i32 @f3(
36 switch i32 %x, label %bb1 [ i32 0, label %bb2]
40 %cond = phi i32 [ %x, %bb0 ], [ 0, %bb1 ]
41 %foo = add i32 %cond, %x
48 define void @f4(ptr %x) {
49 ; CHECK-LABEL: define void @f4(
51 %y = icmp eq ptr null, %x
52 br i1 %y, label %bb2, label %bb1
56 %zed = icmp eq ptr null, %x
58 ; CHECK: call void @g(i1 %y)
62 define double @fcmp_oeq_not_zero(double %x, double %y) {
64 %cmp = fcmp oeq double %y, 2.0
65 br i1 %cmp, label %if, label %return
68 %div = fdiv double %x, %y
72 %retval = phi double [ %div, %if ], [ %x, %entry ]
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) {
81 %cmp = fcmp une double %y, 2.0
82 br i1 %cmp, label %return, label %else
85 %div = fdiv double %x, %y
89 %retval = phi double [ %div, %else ], [ %x, %entry ]
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) {
98 %cmp = fcmp one double %y, 2.0
99 br i1 %cmp, label %return, label %else
102 %div = fdiv double %x, %y
106 %retval = phi double [ %div, %else ], [ %x, %entry ]
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) {
115 %cmp = fcmp nnan one double %y, 2.0
116 br i1 %cmp, label %return, label %else
119 %div = fdiv double %x, %y
123 %retval = phi double [ %div, %else ], [ %x, %entry ]
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) {
135 %cmp = fcmp oeq double %y, 0.0
136 br i1 %cmp, label %if, label %return
139 %div = fdiv double %x, %y
143 %retval = phi double [ %div, %if ], [ %x, %entry ]
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) {
152 %cmp = fcmp une double %y, -0.0
153 br i1 %cmp, label %return, label %else
156 %div = fdiv double %x, %y
160 %retval = phi double [ %div, %else ], [ %x, %entry ]
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) {
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
181 %retval = phi double [ %div, %if ], [ %x, %entry ]
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) {
190 %z = fadd double %z1, %z2
191 %cmp = fcmp une double %y, %z
192 br i1 %cmp, label %return, label %else
195 %div = fdiv double %x, %z
199 %retval = phi double [ %div, %else ], [ %x, %entry ]
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) {
209 %cmp = fcmp ueq double %y, 2.0
210 br i1 %cmp, label %do_div, label %return
213 %div = fdiv double %x, %y
217 %retval = phi double [ %div, %do_div ], [ %x, %entry ]
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) {
226 %cmp = fcmp nnan ueq double %y, 2.0
227 br i1 %cmp, label %do_div, label %return
230 %div = fdiv double %x, %y
234 %retval = phi double [ %div, %do_div ], [ %x, %entry ]
237 ; CHECK-LABEL: define double @fcmp_ueq_not_zero_or_nan(
238 ; CHECK: %div = fdiv double %x, 2.0