1 ; RUN: opt -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(i8 * %x) {
49 ; CHECK-LABEL: define void @f4(
51 %y = icmp eq i8* null, %x
52 br i1 %y, label %bb2, label %bb1
56 %zed = icmp eq i8* 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 ; PR22376 - We can't propagate zero constants because -0.0
97 ; compares equal to 0.0. If %y is -0.0 in this test case,
98 ; we would produce the wrong sign on the infinity return value.
99 define double @fcmp_oeq_zero(double %x, double %y) {
101 %cmp = fcmp oeq double %y, 0.0
102 br i1 %cmp, label %if, label %return
105 %div = fdiv double %x, %y
109 %retval = phi double [ %div, %if ], [ %x, %entry ]
112 ; CHECK-LABEL: define double @fcmp_oeq_zero(
113 ; CHECK: %div = fdiv double %x, %y
116 define double @fcmp_une_zero(double %x, double %y) {
118 %cmp = fcmp une double %y, -0.0
119 br i1 %cmp, label %return, label %else
122 %div = fdiv double %x, %y
126 %retval = phi double [ %div, %else ], [ %x, %entry ]
129 ; CHECK-LABEL: define double @fcmp_une_zero(
130 ; CHECK: %div = fdiv double %x, %y
133 ; We also cannot propagate a value if it's not a constant.
134 ; This is because the value could be 0.0 or -0.0.
136 define double @fcmp_oeq_maybe_zero(double %x, double %y, double %z1, double %z2) {
138 %z = fadd double %z1, %z2
139 %cmp = fcmp oeq double %y, %z
140 br i1 %cmp, label %if, label %return
143 %div = fdiv double %x, %z
147 %retval = phi double [ %div, %if ], [ %x, %entry ]
150 ; CHECK-LABEL: define double @fcmp_oeq_maybe_zero(
151 ; CHECK: %div = fdiv double %x, %z
154 define double @fcmp_une_maybe_zero(double %x, double %y, double %z1, double %z2) {
156 %z = fadd double %z1, %z2
157 %cmp = fcmp une double %y, %z
158 br i1 %cmp, label %return, label %else
161 %div = fdiv double %x, %z
165 %retval = phi double [ %div, %else ], [ %x, %entry ]
168 ; CHECK-LABEL: define double @fcmp_une_maybe_zero(
169 ; CHECK: %div = fdiv double %x, %z