1 /* Copyright (C) 1997, 1999 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 #include "math_private.h"
27 #define float_type double
30 #define CONCATX(a,b) __CONCAT(a,b)
31 #define s(name) CONCATX(name,SUFF)
32 #define m81(func) __m81_u(s(func))
35 s(__ieee754_pow
) (float_type x
, float_type y
)
39 unsigned long x_cond
, y_cond
;
41 y_cond
= __m81_test (y
);
42 if (y_cond
& __M81_COND_ZERO
)
44 if (y_cond
& __M81_COND_NAN
)
45 return x
== 1.0 ? x
: x
+ y
;
47 x_cond
= __m81_test (x
);
48 if (x_cond
& __M81_COND_NAN
)
51 if (y_cond
& __M81_COND_INF
)
57 return y_cond
& __M81_COND_NEG
? 0 : y
;
59 return y_cond
& __M81_COND_NEG
? -y
: 0;
62 if (s(fabs
) (y
) == 1.0)
63 return y_cond
& __M81_COND_NEG
? 1 / x
: x
;
67 if (y
== 0.5 && !(x_cond
& __M81_COND_NEG
))
68 return m81(__ieee754_sqrt
) (x
);
72 __asm ("ftentox%.x %1, %0" : "=f" (z
) : "f" (y
));
77 __asm ("ftwotox%.x %1, %0" : "=f" (z
) : "f" (y
));
82 if (x_cond
& (__M81_COND_INF
| __M81_COND_ZERO
) || ax
== 1.0)
85 if (y_cond
& __M81_COND_NEG
)
87 if (x_cond
& __M81_COND_NEG
)
89 if (y
!= m81(__rint
) (y
))
92 z
= (z
- z
) / (z
- z
);
100 if (x_cond
& __M81_COND_NEG
)
102 if (y
== m81(__rint
) (y
))
104 z
= m81(__ieee754_exp
) (y
* m81(__ieee754_log
) (-x
));
106 /* We always use the long double format, since y is already in
107 this format and rounding won't change the result. */
111 GET_LDOUBLE_WORDS (exponent
, i0
, i1
, y
);
112 exponent
= (exponent
& 0x7fff) - 0x3fff;
114 ? i0
& (1 << (31 - exponent
))
116 && i1
& (1 << (63 - exponent
))))
121 z
= (y
- y
) / (y
- y
);
124 z
= m81(__ieee754_exp
) (y
* m81(__ieee754_log
) (x
));