1 /* ix87 specific implementation of arcsinh.
2 Copyright (C) 1996, 1997, 2005 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 Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the 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 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 #include <machine/asm.h>
30 ASM_TYPE_DIRECTIVE(huge,@object)
32 ASM_SIZE_DIRECTIVE(huge)
33 ASM_TYPE_DIRECTIVE(one,@object)
35 ASM_SIZE_DIRECTIVE(one)
36 ASM_TYPE_DIRECTIVE(limit,@object)
38 ASM_SIZE_DIRECTIVE(limit)
41 #define MO(op) op##@GOTOFF(%edx)
49 movl $0x7fffffff, %eax
51 andl $0x80000000, %ecx
55 jz 7f // x in ±Inf or NaN
58 cmpl $0x3e300000, %eax
60 fldln2 // log(2) : |x|
61 cmpl $0x41b00000, %eax
67 cmpl $0x40000000, %eax
70 // 2^-28 <= |x| <= 2 => y = sign(x)*log1p(|x|+|x|^2/(1+sqrt(1+|x|^2)))
71 fld %st // |x| : |x| : log(2)
72 fmul %st(1) // |x|^2 : |x| : log(2)
73 fld %st // |x|^2 : |x|^2 : |x| : log(2)
74 faddl MO(one) // 1+|x|^2 : |x|^2 : |x| : log(2)
75 fsqrt // sqrt(1+|x|^2) : |x|^2 : |x| : log(2)
76 faddl MO(one) // 1+sqrt(1+|x|^2) : |x|^2 : |x| : log(2)
77 fdivrp // |x|^2/(1+sqrt(1+|x|^2)) : |x| : log(2)
78 faddp // |x|+|x|^2/(1+sqrt(1+|x|^2)) : log(2)
97 // |x| < 2^-28 => y = x (inexact iff |x| != 0.0)
106 faddl MO(huge) // huge+x : x
110 // |x| > 2^28 => y = sign(x) * (log(|x|) + log(2))
113 fldln2 // log(2) : log(|x|)
114 faddp // log(|x|)+log(2)
119 // |x| > 2 => y = sign(x) * log(2*|x| + 1/(|x|+sqrt(x*x+1)))
121 5: fld %st // |x| : |x| : log(2)
122 fadd %st, %st(1) // |x| : 2*|x| : log(2)
123 fld %st // |x| : |x| : 2*|x| : log(2)
124 fmul %st(1) // |x|^2 : |x| : 2*|x| : log(2)
125 faddl MO(one) // 1+|x|^2 : |x| : 2*|x| : log(2)
126 fsqrt // sqrt(1+|x|^2) : |x| : 2*|x| : log(2)
127 faddp // |x|+sqrt(1+|x|^2) : 2*|x| : log(2)
128 fdivrl MO(one) // 1/(|x|+sqrt(1+|x|^2)) : 2*|x| : log(2)
129 faddp // 2*|x|+1/(|x|+sqrt(1+|x|^2)) : log(2)
130 fyl2x // log(2*|x|+1/(|x|+sqrt(1+|x|^2)))
135 weak_alias (__asinh, asinh)