Fix powerpc32 ceil, rint etc. on sNaN input (bug 20160).
[glibc.git] / sysdeps / powerpc / powerpc32 / fpu / s_nearbyintf.S
blob7490e9c6d3d0b8e4ddc09da152096b1fbb94dc4d
1 /* Round to int floating-point values.  PowerPC32 version.
2    Copyright (C) 2011-2016 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Adhemerval Zanella <azanella@br.ibm.com>, 2011
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
11    The GNU C Library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
20 /* This has been coded in assembler because GCC makes such a mess of it
21    when it's coded in C.  */
23 #include <sysdep.h>
26 /* float [fp1] nearbyintf(float [fp1] x) */
28         .section        .rodata.cst4,"aM",@progbits,4
29         .align  2
30 .LC0:
31         .long 0x4B000000        /* TWO23: 2**23 */
33         .section        ".text"
34 ENTRY (__nearbyintf)
35 #ifdef SHARED
36         mflr    r11
37         cfi_register(lr,r11)
38         bcl     20,31,1f
39 1:      mflr    r9
40         addis   r9,r9,.LC0-1b@ha
41         lfs     fp13,.LC0-1b@l(r9)
42         mtlr    r11
43         cfi_same_value (lr)
44 #else
45         lis     r9,.LC0@ha
46         lfs     fp13,.LC0@l(r9)
47 #endif
48         fabs    fp0,fp1
49         fsub    fp12,fp13,fp13          /* generate 0.0  */
50         fcmpu   cr7,fp0,fp13            /* if (fabs(x) > TWO23 */
51         bge     cr7,.L10
52         fcmpu   cr7,fp1,fp12            /* if (x > 0.0 */
53         ble     cr7,L(lessthanzero)
54         mffs    fp11
55         mtfsb0  4*cr7+lt                /* Disable FE_INEXACT exception */
56         fadds   fp1,fp1,fp13            /* x += TWO23 */
57         fsubs   fp1,fp1,fp13            /* x -= TWO23 */
58         fabs    fp1,fp1                 /* if (x == 0.0) */
59         mtfsf   0xff,fp11               /* Restore FE_INEXACT state.  */
60         blr
61 L(lessthanzero):
62         bgelr   cr7
63         mffs    fp11
64         mtfsb0  4*cr7+lt                /* Disable FE_INEXACT exception */
65         fsubs   fp1,fp1,fp13            /* x -= TWO23 */
66         fadds   fp1,fp1,fp13            /* x += TWO23 */
67         fnabs   fp1,fp1                 /* if (x == 0.0) */
68         mtfsf   0xff,fp11               /* Restore FE_INEXACT state.  */
69         blr
70 .L10:
71         /* Ensure sNaN input is converted to qNaN.  */
72         fcmpu   cr7,fp1,fp1
73         beqlr   cr7
74         fadds   fp1,fp1,fp1
75         blr
76 END (__nearbyintf)
78 weak_alias (__nearbyintf, nearbyintf)