1 /* ix87 specific implementation of arcsinh.
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(huge,@object)
32 ASM_SIZE_DIRECTIVE(huge)
34 /* Please note that we use double value for 1.0. This number
35 has an exact representation and so we don't get accuracy
36 problems. The advantage is that the code is simpler. */
37 ASM_TYPE_DIRECTIVE(one,@object)
39 ASM_SIZE_DIRECTIVE(one)
40 /* It is not important that this constant is precise. It is only
41 a value which is known to be on the safe side for using the
42 fyl2xp1 instruction. */
43 ASM_TYPE_DIRECTIVE(limit,@object)
45 ASM_SIZE_DIRECTIVE(limit)
48 #define MO(op) op##@GOTOFF(%edx)
62 jz 7f // x in ±Inf or NaN
67 fldln2 // log(2) : |x|
74 addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %edx
79 // 2^-34 <= |x| <= 2 => y = sign(x)*log1p(|x|+|x|^2/(1+sqrt(1+|x|^2)))
80 fld %st // |x| : |x| : log(2)
81 fmul %st(1) // |x|^2 : |x| : log(2)
82 fld %st // |x|^2 : |x|^2 : |x| : log(2)
83 faddl MO(one) // 1+|x|^2 : |x|^2 : |x| : log(2)
84 fsqrt // sqrt(1+|x|^2) : |x|^2 : |x| : log(2)
85 faddl MO(one) // 1+sqrt(1+|x|^2) : |x|^2 : |x| : log(2)
86 fdivrp // |x|^2/(1+sqrt(1+|x|^2)) : |x| : log(2)
87 faddp // |x|+|x|^2/(1+sqrt(1+|x|^2)) : log(2)
106 // |x| < 2^-34 => y = x (inexact iff |x| != 0.0)
112 addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %edx
117 fldt MO(huge) // huge : x : x
122 // |x| > 2^34 => y = sign(x) * (log(|x|) + log(2))
125 fldln2 // log(2) : log(|x|)
126 faddp // log(|x|)+log(2)
131 // |x| > 2 => y = sign(x) * log(2*|x| + 1/(|x|+sqrt(x*x+1)))
133 5: fld %st // |x| : |x| : log(2)
134 fadd %st, %st(1) // |x| : 2*|x| : log(2)
135 fld %st // |x| : |x| : 2*|x| : log(2)
136 fmul %st(1) // |x|^2 : |x| : 2*|x| : log(2)
137 faddl MO(one) // 1+|x|^2 : |x| : 2*|x| : log(2)
138 fsqrt // sqrt(1+|x|^2) : |x| : 2*|x| : log(2)
139 faddp // |x|+sqrt(1+|x|^2) : 2*|x| : log(2)
140 fdivrl MO(one) // 1/(|x|+sqrt(1+|x|^2)) : 2*|x| : log(2)
141 faddp // 2*|x|+1/(|x|+sqrt(1+|x|^2)) : log(2)
142 fyl2x // log(2*|x|+1/(|x|+sqrt(1+|x|^2)))
147 weak_alias (__asinhl, asinhl)