1 /* ix87 specific implementation of pow function.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 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 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <machine/asm.h>
30 ASM_TYPE_DIRECTIVE(infinity,@object)
33 .byte 0, 0, 0, 0, 0, 0, 0xf0, 0x7f
34 ASM_SIZE_DIRECTIVE(infinity)
35 ASM_TYPE_DIRECTIVE(zero,@object)
37 ASM_SIZE_DIRECTIVE(zero)
38 ASM_TYPE_DIRECTIVE(minf_mzero,@object)
41 .byte 0, 0, 0, 0, 0, 0, 0xf0, 0xff
43 .byte 0, 0, 0, 0, 0, 0, 0, 0x80
44 ASM_SIZE_DIRECTIVE(minf_mzero)
45 ASM_TYPE_DIRECTIVE(one,@object)
47 ASM_SIZE_DIRECTIVE(one)
48 ASM_TYPE_DIRECTIVE(limit,@object)
50 ASM_SIZE_DIRECTIVE(limit)
51 ASM_TYPE_DIRECTIVE(nan,@object)
52 nan: .byte 0, 0, 0, 0, 0, 0, 0xff, 0x7f
53 ASM_SIZE_DIRECTIVE(nan)
56 #define MO(op) op##@GOTOFF(%ecx)
57 #define MOX(op,x,f) op##@GOTOFF(%ecx,x,f)
60 #define MOX(op,x,f) op(,x,f)
71 addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %ecx
77 cmpb $0x40, %ah // is y == 0 ?
80 cmpb $0x05, %ah // is y == ±inf ?
83 cmpb $0x01, %ah // is y == NaN ?
102 /* First see whether `y' is a natural number. In this case we
103 can use a more precise algorithm. */
105 fistpl (%esp) // y : x
106 fildl (%esp) // int(y) : y : x
107 fucomp %st(1) // y : x
112 /* OK, we have an integer value for y. */
116 jns 4f // y >= 0, jump
117 fdivrl MO(one) // 1/x (now referred to as x)
119 4: fldl MO(one) // 1 : x
125 fmul %st(1) // x : ST*x
127 5: fmul %st(0), %st // x*x : ST*x
134 2: /* y is a real number. */
136 fldl MO(one) // 1.0 : x : y
137 fld %st(1) // x : 1.0 : x : y
138 fsub %st(1) // x-1 : 1.0 : x : y
139 fabs // |x-1| : 1.0 : x : y
140 fcompl MO(limit) // 1.0 : x : y
145 fsub %st(1) // x-1 : 1.0 : y
146 fyl2xp1 // log2(x) : y
149 7: fyl2x // log2(x) : y
150 8: fmul %st(1) // y*log2(x) : y
151 fst %st(1) // y*log2(x) : y*log2(x)
152 frndint // int(y*log2(x)) : y*log2(x)
153 fsubr %st, %st(1) // int(y*log2(x)) : fract(y*log2(x))
154 fxch // fract(y*log2(x)) : int(y*log2(x))
155 f2xm1 // 2^fract(y*log2(x))-1 : int(y*log2(x))
156 faddl MO(one) // 2^fract(y*log2(x)) : int(y*log2(x))
157 fscale // 2^fract(y*log2(x))*2^int(y*log2(x)) : int(y*log2(x))
159 fstp %st(1) // 2^fract(y*log2(x))*2^int(y*log2(x))
165 11: fstp %st(0) // pop y
171 12: fstp %st(0) // pop y
174 fcompl MO(one) // < 1, == 1, or > 1
178 je 13f // jump if x is NaN
181 je 14f // jump if |x| == 1
186 fldl MOX(inf_zero, %edx, 4)
191 faddl MO(zero) // raise invalid exception
195 13: flds 4(%esp) // load x == NaN
202 jz 16f // jump if x == +inf
204 // We must find out whether y is an odd integer.
207 fildl (%esp) // int(y) : y
213 // OK, the value is an integer, but is the number of bits small
214 // enough so that all are coming from the mantissa?
217 jz 18f // jump if not odd
222 155: cmpl $0x01000000, %eax
223 ja 18f // does not fit in mantissa bits
224 // It's an odd integer.
226 fldl MOX(minf_mzero, %edx, 8)
235 fldl MOX(inf_zero, %eax, 1)
239 17: shll $30, %edx // sign bit for y in right position
242 fldl MOX(inf_zero, %edx, 8)
251 // x is ±0 and y is < 0. We must find out whether y is an odd integer.
257 fildl (%esp) // int(y) : y
263 // OK, the value is an integer, but is the number of bits small
264 // enough so that all are coming from the mantissa?
267 jz 27f // jump if not odd
268 cmpl $0xff000000, %edx
269 jbe 27f // does not fit in mantissa bits
270 // It's an odd integer.
271 // Raise divide-by-zero exception and get minus infinity value.
279 27: // Raise divide-by-zero exception and get infinity value.
285 // x is ±0 and y is > 0. We must find out whether y is an odd integer.
291 fildl (%esp) // int(y) : y
297 // OK, the value is an integer, but is the number of bits small
298 // enough so that all are coming from the mantissa?
301 jz 24f // jump if not odd
302 cmpl $0xff000000, %edx
303 jae 24f // does not fit in mantissa bits
304 // It's an odd integer.