1 /* ix87 specific implementation of pow function.
2 Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005
3 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 #include <machine/asm.h>
31 ASM_TYPE_DIRECTIVE(infinity,@object)
34 .byte 0, 0, 0, 0, 0, 0, 0xf0, 0x7f
35 ASM_SIZE_DIRECTIVE(infinity)
36 ASM_TYPE_DIRECTIVE(zero,@object)
38 ASM_SIZE_DIRECTIVE(zero)
39 ASM_TYPE_DIRECTIVE(minf_mzero,@object)
42 .byte 0, 0, 0, 0, 0, 0, 0xf0, 0xff
44 .byte 0, 0, 0, 0, 0, 0, 0, 0x80
45 ASM_SIZE_DIRECTIVE(minf_mzero)
46 ASM_TYPE_DIRECTIVE(one,@object)
48 ASM_SIZE_DIRECTIVE(one)
49 ASM_TYPE_DIRECTIVE(limit,@object)
51 ASM_SIZE_DIRECTIVE(limit)
52 ASM_TYPE_DIRECTIVE(p63,@object)
53 p63: .byte 0, 0, 0, 0, 0, 0, 0xe0, 0x43
54 ASM_SIZE_DIRECTIVE(p63)
57 #define MO(op) op##@GOTOFF(%ecx)
58 #define MOX(op,x,f) op##@GOTOFF(%ecx,x,f)
61 #define MOX(op,x,f) op(,x,f)
76 cmpb $0x40, %ah // is y == 0 ?
79 cmpb $0x05, %ah // is y == ±inf ?
82 cmpb $0x01, %ah // is y == NaN ?
88 cfi_adjust_cfa_offset (8)
102 /* fistpll raises invalid exception for |y| >= 1L<<63. */
105 fcompl MO(p63) // y : x
110 /* First see whether `y' is a natural number. In this case we
111 can use a more precise algorithm. */
113 fistpll (%esp) // y : x
114 fildll (%esp) // int(y) : y : x
115 fucomp %st(1) // y : x
120 /* OK, we have an integer value for y. */
122 cfi_adjust_cfa_offset (-4)
124 cfi_adjust_cfa_offset (-4)
127 jns 4f // y >= 0, jump
128 fdivrl MO(one) // 1/x (now referred to as x)
132 4: fldl MO(one) // 1 : x
135 6: shrdl $1, %edx, %eax
138 fmul %st(1) // x : ST*x
140 5: fmul %st(0), %st // x*x : ST*x
149 30: fldl 4(%esp) // x : y
150 fldl MO(one) // 1.0 : x : y
151 fucomp %st(1) // x : y
159 cfi_adjust_cfa_offset (8)
161 2: /* y is a real number. */
163 fldl MO(one) // 1.0 : x : y
164 fld %st(1) // x : 1.0 : x : y
165 fsub %st(1) // x-1 : 1.0 : x : y
166 fabs // |x-1| : 1.0 : x : y
167 fcompl MO(limit) // 1.0 : x : y
172 fsub %st(1) // x-1 : 1.0 : y
173 fyl2xp1 // log2(x) : y
176 7: fyl2x // log2(x) : y
177 8: fmul %st(1) // y*log2(x) : y
178 fst %st(1) // y*log2(x) : y*log2(x)
179 frndint // int(y*log2(x)) : y*log2(x)
180 fsubr %st, %st(1) // int(y*log2(x)) : fract(y*log2(x))
181 fxch // fract(y*log2(x)) : int(y*log2(x))
182 f2xm1 // 2^fract(y*log2(x))-1 : int(y*log2(x))
183 faddl MO(one) // 2^fract(y*log2(x)) : int(y*log2(x))
184 fscale // 2^fract(y*log2(x))*2^int(y*log2(x)) : int(y*log2(x))
186 cfi_adjust_cfa_offset (-8)
187 fstp %st(1) // 2^fract(y*log2(x))*2^int(y*log2(x))
193 11: fstp %st(0) // pop y
199 12: fstp %st(0) // pop y
202 fcompl MO(one) // < 1, == 1, or > 1
206 je 13f // jump if x is NaN
209 je 14f // jump if |x| == 1
214 fldl MOX(inf_zero, %edx, 4)
222 13: fldl 4(%esp) // load x == NaN
225 cfi_adjust_cfa_offset (8)
230 jz 16f // jump if x == +inf
232 // We must find out whether y is an odd integer.
235 fildll (%esp) // int(y) : y
241 // OK, the value is an integer, but is the number of bits small
242 // enough so that all are coming from the mantissa?
244 cfi_adjust_cfa_offset (-4)
246 cfi_adjust_cfa_offset (-4)
248 jz 18f // jump if not odd
253 155: cmpl $0x00200000, %eax
254 ja 18f // does not fit in mantissa bits
255 // It's an odd integer.
257 fldl MOX(minf_mzero, %edx, 8)
260 cfi_adjust_cfa_offset (8)
264 cfi_adjust_cfa_offset (-8)
268 fldl MOX(inf_zero, %eax, 1)
271 cfi_adjust_cfa_offset (8)
273 17: shll $30, %edx // sign bit for y in right position
275 cfi_adjust_cfa_offset (-8)
277 fldl MOX(inf_zero, %edx, 8)
280 cfi_adjust_cfa_offset (8)
287 // x is ±0 and y is < 0. We must find out whether y is an odd integer.
293 fildll (%esp) // int(y) : y
299 // OK, the value is an integer, but is the number of bits small
300 // enough so that all are coming from the mantissa?
302 cfi_adjust_cfa_offset (-4)
304 cfi_adjust_cfa_offset (-4)
306 jz 27f // jump if not odd
307 cmpl $0xffe00000, %edx
308 jbe 27f // does not fit in mantissa bits
309 // It's an odd integer.
310 // Raise divide-by-zero exception and get minus infinity value.
316 cfi_adjust_cfa_offset (8)
319 cfi_adjust_cfa_offset (-8)
320 27: // Raise divide-by-zero exception and get infinity value.
325 cfi_adjust_cfa_offset (8)
327 // x is ±0 and y is > 0. We must find out whether y is an odd integer.
333 fildll (%esp) // int(y) : y
339 // OK, the value is an integer, but is the number of bits small
340 // enough so that all are coming from the mantissa?
342 cfi_adjust_cfa_offset (-4)
344 cfi_adjust_cfa_offset (-4)
346 jz 24f // jump if not odd
347 cmpl $0xffe00000, %edx
348 jae 24f // does not fit in mantissa bits
349 // It's an odd integer.
353 cfi_adjust_cfa_offset (8)
355 23: addl $8, %esp // Don't use 2 x pop
356 cfi_adjust_cfa_offset (-8)