]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/ia64/fpu/s_rintf.S
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[thirdparty/glibc.git] / sysdeps / ia64 / fpu / s_rintf.S
1 .file "rintf.s"
2
3 // Copyright (C) 2000, 2001, Intel Corporation
4 // All rights reserved.
5 //
6 // Contributed 2/2/2000 by John Harrison, Ted Kubaska, Bob Norin, Shane Story,
7 // and Ping Tak Peter Tang of the Computational Software Lab, Intel Corporation.
8 //
9 // Redistribution and use in source and binary forms, with or without
10 // modification, are permitted provided that the following conditions are
11 // met:
12 //
13 // * Redistributions of source code must retain the above copyright
14 // notice, this list of conditions and the following disclaimer.
15 //
16 // * Redistributions in binary form must reproduce the above copyright
17 // notice, this list of conditions and the following disclaimer in the
18 // documentation and/or other materials provided with the distribution.
19 //
20 // * The name of Intel Corporation may not be used to endorse or promote
21 // products derived from this software without specific prior written
22 // permission.
23 //
24 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR ITS
28 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
32 // OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING
33 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 //
36 // Intel Corporation is the author of this code, and requests that all
37 // problem reports or change requests be submitted to it directly at
38 // http://developer.intel.com/opensource.
39 //
40 // History
41 //==============================================================
42 // 2/02/00: Initial version
43 // 2/08/01 Corrected behavior for all rounding modes.
44 //
45 // API
46 //==============================================================
47 // float rintf(float x)
48
49 #include "libm_support.h"
50
51 //
52 // general registers used:
53 //
54 rint_GR_FFFF = r14
55 rint_GR_signexp = r15
56 rint_GR_exponent = r16
57 rint_GR_17ones = r17
58 rint_GR_10033 = r18
59 rint_GR_fpsr = r19
60 rint_GR_rcs0 = r20
61 rint_GR_rcs0_mask = r21
62
63
64 // predicate registers used:
65 // p6-11
66
67 // floating-point registers used:
68
69 RINT_NORM_f8 = f9
70 RINT_FFFF = f10
71 RINT_INEXACT = f11
72 RINT_FLOAT_INT_f8 = f12
73 RINT_INT_f8 = f13
74
75 // Overview of operation
76 //==============================================================
77
78 // float rintf(float x)
79 // Return an integer value (represented as a float) that is x rounded to integer in current
80 // rounding mode
81 // Inexact is set if x != rintf(x)
82 // *******************************************************************************
83
84 // Set denormal flag for denormal input and
85 // and take denormal fault if necessary.
86
87 // Is the input an integer value already?
88
89 // double_extended
90 // if the exponent is >= 1003e => 3F(true) = 63(decimal)
91 // we have a significand of 64 bits 1.63-bits.
92 // If we multiply by 2^63, we no longer have a fractional part
93 // So input is an integer value already.
94
95 // double
96 // if the exponent is >= 10033 => 34(true) = 52(decimal)
97 // 34 + 3ff = 433
98 // we have a significand of 53 bits 1.52-bits. (implicit 1)
99 // If we multiply by 2^52, we no longer have a fractional part
100 // So input is an integer value already.
101
102 // single
103 // if the exponent is >= 10016 => 17(true) = 23(decimal)
104 // we have a significand of 53 bits 1.52-bits. (implicit 1)
105 // If we multiply by 2^52, we no longer have a fractional part
106 // So input is an integer value already.
107
108 // If x is NAN, ZERO, or INFINITY, then return
109
110 // qnan snan inf norm unorm 0 -+
111 // 1 1 1 0 0 1 11 0xe7
112
113
114 .align 32
115 .global rintf#
116
117 .section .text
118 .proc rintf#
119 .align 32
120
121
122 rintf:
123 #ifdef _LIBC
124 .global __rintf
125 .type __rintf,@function
126 __rintf:
127 #endif
128
129 { .mfi
130 mov rint_GR_fpsr = ar40 // Read the fpsr--need to check rc.s0
131 fcvt.fx.s1 RINT_INT_f8 = f8
132 addl rint_GR_10033 = 0x10016, r0
133 }
134 { .mfi
135 mov rint_GR_FFFF = -1
136 fnorm.s1 RINT_NORM_f8 = f8
137 mov rint_GR_17ones = 0x1FFFF
138 ;;
139 }
140
141 { .mfi
142 setf.sig RINT_FFFF = rint_GR_FFFF
143 fclass.m.unc p6,p0 = f8, 0xe7
144 mov rint_GR_rcs0_mask = 0x0c00
145 ;;
146 }
147
148 { .mfb
149 nop.m 999
150 (p6) fnorm.s f8 = f8
151 (p6) br.ret.spnt b0 // Exit if x nan, inf, zero
152 ;;
153 }
154
155 { .mfi
156 nop.m 999
157 fcvt.xf RINT_FLOAT_INT_f8 = RINT_INT_f8
158 nop.i 999
159 ;;
160 }
161
162 { .mfi
163 getf.exp rint_GR_signexp = RINT_NORM_f8
164 fcmp.eq.s0 p8,p0 = f8,f0 // Dummy op to set denormal
165 nop.i 999
166 ;;
167 }
168
169
170 { .mii
171 nop.m 999
172 nop.i 999
173 and rint_GR_exponent = rint_GR_signexp, rint_GR_17ones
174 ;;
175 }
176
177 { .mmi
178 cmp.ge.unc p7,p6 = rint_GR_exponent, rint_GR_10033
179 and rint_GR_rcs0 = rint_GR_rcs0_mask, rint_GR_fpsr
180 nop.i 999
181 ;;
182 }
183
184 // Check to see if s0 rounding mode is round to nearest. If not then set s2
185 // rounding mode to that of s0 and repeat conversions.
186 L(RINT_COMMON):
187 { .mfb
188 cmp.ne p11,p0 = rint_GR_rcs0, r0
189 (p6) fclass.m.unc p9,p10 = RINT_FLOAT_INT_f8, 0x07 // Test for result=0
190 (p11) br.cond.spnt L(RINT_NOT_ROUND_NEAREST) // Branch if not round to nearest
191 ;;
192 }
193
194 { .mfi
195 nop.m 999
196 (p6) fcmp.eq.unc.s1 p0,p8 = RINT_FLOAT_INT_f8, RINT_NORM_f8
197 nop.i 999
198 }
199 { .mfi
200 nop.m 999
201 (p7) fnorm.s.s0 f8 = f8
202 nop.i 999
203 ;;
204 }
205
206 // If result is zero, merge sign of input
207 { .mfi
208 nop.m 999
209 (p9) fmerge.s f8 = f8, RINT_FLOAT_INT_f8
210 nop.i 999
211 }
212 { .mfi
213 nop.m 999
214 (p10) fnorm.s f8 = RINT_FLOAT_INT_f8
215 nop.i 999
216 ;;
217 }
218
219 { .mfb
220 nop.m 999
221 (p8) fmpy.s0 RINT_INEXACT = RINT_FFFF,RINT_FFFF // Dummy to set inexact
222 br.ret.sptk b0
223 ;;
224 }
225
226 L(RINT_NOT_ROUND_NEAREST):
227 // Set rounding mode of s2 to that of s0
228 { .mfi
229 mov rint_GR_rcs0 = r0 // Clear so we don't come back here
230 fsetc.s2 0x7f, 0x40
231 nop.i 999
232 ;;
233 }
234
235 { .mfi
236 nop.m 999
237 fcvt.fx.s2 RINT_INT_f8 = f8
238 nop.i 999
239 ;;
240 }
241
242 { .mfb
243 nop.m 999
244 fcvt.xf RINT_FLOAT_INT_f8 = RINT_INT_f8
245 br.cond.sptk L(RINT_COMMON)
246 ;;
247 }
248
249
250 .endp rintf
251 ASM_SIZE_DIRECTIVE(rintf)
252 #ifdef _LIBC
253 ASM_SIZE_DIRECTIVE(__rintf)
254 #endif