blob: 8b7d66986e786b42db58d3dd3775979b391d8986 [file] [log] [blame]
James Molloye7695bc2015-08-13 17:28:10 +00001; RUN: llc -march=arm64 < %s | FileCheck %s
2
3define double @test_direct(float %in) {
4; CHECK-LABEL: test_direct:
5 %cmp = fcmp olt float %in, 0.000000e+00
6 %val = select i1 %cmp, float 0.000000e+00, float %in
7 %longer = fpext float %val to double
8 ret double %longer
9
James Molloyef183392015-08-17 07:13:10 +000010; CHECK: fmax s
James Molloye7695bc2015-08-13 17:28:10 +000011}
12
13define double @test_cross(float %in) {
14; CHECK-LABEL: test_cross:
15 %cmp = fcmp ult float %in, 0.000000e+00
16 %val = select i1 %cmp, float %in, float 0.000000e+00
17 %longer = fpext float %val to double
18 ret double %longer
19
James Molloyef183392015-08-17 07:13:10 +000020; CHECK: fmin s
James Molloye7695bc2015-08-13 17:28:10 +000021}
22
23; Same as previous, but with ordered comparison;
James Molloyef183392015-08-17 07:13:10 +000024; must become fminnm, not fmin.
James Molloye7695bc2015-08-13 17:28:10 +000025define double @test_cross_fail_nan(float %in) {
26; CHECK-LABEL: test_cross_fail_nan:
27 %cmp = fcmp olt float %in, 0.000000e+00
28 %val = select i1 %cmp, float %in, float 0.000000e+00
29 %longer = fpext float %val to double
30 ret double %longer
31
James Molloyef183392015-08-17 07:13:10 +000032; CHECK: fminnm s
James Molloye7695bc2015-08-13 17:28:10 +000033}
34
35; This isn't a min or a max, but passes the first condition for swapping the
36; results. Make sure they're put back before we resort to the normal fcsel.
37define float @test_cross_fail(float %lhs, float %rhs) {
38; CHECK-LABEL: test_cross_fail:
39 %tst = fcmp une float %lhs, %rhs
40 %res = select i1 %tst, float %rhs, float %lhs
41 ret float %res
42
43 ; The register allocator would have to decide to be deliberately obtuse before
44 ; other register were used.
45; CHECK: fcsel s0, s1, s0, ne
46}
47
48; Make sure the transformation isn't triggered for integers
49define i64 @test_integer(i64 %in) {
50 %cmp = icmp slt i64 %in, 0
51 %val = select i1 %cmp, i64 0, i64 %in
52 ret i64 %val
53}