(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / powerpc / powerpc32 / fpu / s_trunc.S
bloba4be651f8c1491c234462aba4e34f0914f05f365
1 /* trunc function.  PowerPC32 version.
2    Copyright (C) 2004 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep.h>
22         .section        .rodata
23         .align 3
24         .type   TWO52.0,@object
25         .size   TWO52.0,8
26 TWO52.0:
27         .long 0x43300000
28         .long 0
29         .type   NEGZERO.0,@object
30         .size   NEGZERO.0,8
31 NEGZERO.0:
32         .long 0x80000000
33         .long 0
35         .section        .rodata.cst8,"aM",@progbits,8
36         .align 3
37 .LC0:   /* 2**52 */
38         .long 0x43300000
39         .long 0
40 .LC1:   /* -0.0 */
41         .long 0x80000000
42         .long 0
44 /* double [fp1] trunc (double x [fp1])
45    IEEE 1003.1 trunc function.  IEEE specifies "trunc to the integer
46    value, in floating format, nearest to but no larger in magnitude 
47    then the argument."
48    We set "round toward Zero" mode and trunc by adding +-2**52 then
49    subtracting +-2**52.  */
51 ENTRY (__trunc)
52         mffs    fp11            /* Save current FPU rounding mode.  */
53 #ifdef SHARED
54         mflr    r11
55         bl      _GLOBAL_OFFSET_TABLE_@local-4
56         mflr    r10
57         lwz     r9,.LC0@got(10)
58         mtlr    r11
59         lfd     fp13,0(r9)
60 #else
61         lis     r9,.LC0@ha
62         lfd     fp13,.LC0@l(r9)
63 #endif
64         fabs    fp0,fp1
65         fsub    fp12,fp13,fp13  /* generate 0.0  */
66         fcmpu   cr7,fp0,fp13    /* if (fabs(x) > TWO52)  */
67         fcmpu   cr6,fp1,fp12    /* if (x > 0.0)  */
68         bnllr-  cr7
69         mtfsfi  7,1             /* Set rounding toward 0 mode.  */
70         ble-    cr6,.L4
71         fadd    fp1,fp1,fp13    /* x+= TWO52;  */
72         fsub    fp1,fp1,fp13    /* x-= TWO52;  */
73 .L9:    
74         mtfsf   0x01,fp11       /* restore previous truncing mode.  */
75         blr
76 .L4:
77         bge-    cr6,.L9         /* if (x < 0.0)  */
78         fsub    fp1,fp1,fp13    /* x-= TWO52;  */
79         fadd    fp1,fp1,fp13    /* x+= TWO52;  */
80         fcmpu   cr5,fp1,fp12    /* if (x > 0.0)  */
81         mtfsf   0x01,fp11       /* restore previous rounding mode.  */
82         bnelr+  cr5
83 #ifdef SHARED
84         lwz     r9,.LC1@got(10)
85         lfd     fp1,0(r9)
86 #else
87         lis     r9,.LC1@ha
88         lfd     fp1,.LC1@l(r9)
89 #endif
90         blr
91         END (__trunc)
93 weak_alias (__trunc, trunc)
95 #ifdef NO_LONG_DOUBLE
96 weak_alias (__trunc, truncl)
97 strong_alias (__trunc, __truncl)
98 #endif