Update.
[glibc.git] / sysdeps / i386 / fpu / e_atanhf.S
blob46f2c8dab4193dc91187dd6e3ef06b77fdc08530
1 /* ix87 specific implementation of arctanh function.
2    Copyright (C) 1996, 1999 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>
23 #ifdef __ELF__
24         .section .rodata
25 #else
26         .text
27 #endif
29         .align ALIGNARG(4)
30         ASM_TYPE_DIRECTIVE(half,@object)
31 half:   .double 0.5
32         ASM_SIZE_DIRECTIVE(half)
33         ASM_TYPE_DIRECTIVE(one,@object)
34 one:    .double 1.0
35         ASM_SIZE_DIRECTIVE(one)
36         ASM_TYPE_DIRECTIVE(limit,@object)
37 limit:  .double 0.29
38         ASM_SIZE_DIRECTIVE(limit)
39         .align ALIGNARG(4)
40         ASM_TYPE_DIRECTIVE(ln2_2,@object)
41 ln2_2:  .tfloat 0.3465735902799726547086160
42         ASM_SIZE_DIRECTIVE(ln2_2)
44 #ifdef PIC
45 #define MO(op) op##@GOTOFF(%edx)
46 #else
47 #define MO(op) op
48 #endif
50         .text
51 ENTRY(__ieee754_atanhf)
52         movl    4(%esp), %ecx
54         movl    %ecx, %eax
55         andl    $0x7fffffff, %eax
56         cmpl    $0x7f800000, %eax
57         ja      5f
59 #ifdef PIC
60         call    1f
61 1:      popl    %edx
62         addl    $_GLOBAL_OFFSET_TABLE_+[.-1b], %edx
63 #endif
65         andl    $0x80000000, %ecx // ECX == 0 iff X >= 0
67         fldt    MO(ln2_2)       // 0.5*ln2
68         xorl    %ecx, 4(%esp)
69         flds    4(%esp)         // |x| : 0.5*ln2
70         fcoml   MO(half)        // |x| : 0.5*ln2
71         fld     %st(0)          // |x| : |x| : 0.5*ln2
72         fnstsw                  // |x| : |x| : 0.5*ln2
73         sahf
74         jae     2f
75         fadd    %st, %st(1)     // |x| : 2*|x| : 0.5*ln2
76         fld     %st             // |x| : |x| : 2*|x| : 0.5*ln2
77         fsubrl  MO(one)         // 1-|x| : |x| : 2*|x| : 0.5*ln2
78         fxch                    // |x| : 1-|x| : 2*|x| : 0.5*ln2
79         fmul    %st(2)          // 2*|x|^2 : 1-|x| : 2*|x| : 0.5*ln2
80         fdivp                   // (2*|x|^2)/(1-|x|) : 2*|x| : 0.5*ln2
81         faddp                   // 2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
82         fcoml   MO(limit)       // 2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
83         fnstsw                  // 2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
84         sahf
85         jae     4f
86         fyl2xp1                 // 0.5*ln2*ld(1+2*|x|+(2*|x|^2)/(1-|x|))
87         jecxz   3f
88         fchs                    // 0.5*ln2*ld(1+2*x+(2*x^2)/(1-x))
89 3:      ret
91         .align ALIGNARG(4)
92 4:      faddl   MO(one)         // 1+2*|x|+(2*|x|^2)/(1-|x|) : 0.5*ln2
93         fyl2x                   // 0.5*ln2*ld(1+2*|x|+(2*|x|^2)/(1-|x|))
94         jecxz   3f
95         fchs                    // 0.5*ln2*ld(1+2*x+(2*x^2)/(1-x))
96 3:      ret
98         .align ALIGNARG(4)
99 2:      faddl   MO(one)         // 1+|x| : |x| : 0.5*ln2
100         fxch                    // |x| : 1+|x| : 0.5*ln2
101         fsubrl  MO(one)         // 1-|x| : 1+|x| : 0.5*ln2
102         fdivrp                  // (1+|x|)/(1-|x|) : 0.5*ln2
103         fyl2x                   // 0.5*ln2*ld((1+|x|)/(1-|x|))
104         jecxz   3f
105         fchs                    // 0.5*ln2*ld((1+x)/(1-x))
106 3:      ret
108         // x == NaN
109 5:      flds    4(%esp)
110         ret
111 END(__ieee754_atanhf)