2.9
[glibc/nacl-glibc.git] / sysdeps / i386 / fpu / e_acosh.S
blob62a232471ffb2ed7b883e5c36a2aabec1c193883
1 /* ix87 specific implementation of arcsinh.
2    Copyright (C) 1996, 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
19    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(one,@object)
31 one:    .double 1.0
32         ASM_SIZE_DIRECTIVE(one)
33         ASM_TYPE_DIRECTIVE(limit,@object)
34 limit:  .double 0.29
35         ASM_SIZE_DIRECTIVE(limit)
37 #ifdef PIC
38 #define MO(op) op##@GOTOFF(%edx)
39 #else
40 #define MO(op) op
41 #endif
43         .text
44 ENTRY(__ieee754_acosh)
45         movl    8(%esp), %ecx
46         cmpl    $0x3ff00000, %ecx
47         jl      5f                      // < 1 => invalid
48         fldln2                          // log(2)
49         fldl    4(%esp)                 // x : log(2)
50         cmpl    $0x41b00000, %ecx
51         ja      3f                      // x > 2^28
52 #ifdef  PIC
53         LOAD_PIC_REG (dx)
54 #endif
55         cmpl    $0x40000000, %ecx
56         ja      4f                      // x > 2
58         // 1 <= x <= 2 => y = log1p(x-1+sqrt(2*(x-1)+(x-1)^2))
59         fsubl   MO(one)                 // x-1 : log(2)
60         fld     %st                     // x-1 : x-1 : log(2)
61         fmul    %st(1)                  // (x-1)^2 : x-1 : log(2)
62         fadd    %st(1)                  // x-1+(x-1)^2 : x-1 : log(2)
63         fadd    %st(1)                  // 2*(x-1)+(x-1)^2 : x-1 : log(2)
64         fsqrt                           // sqrt(2*(x-1)+(x-1)^2) : x-1 : log(2)
65         faddp                           // x-1+sqrt(2*(x-1)+(x-1)^2) : log(2)
66         fcoml   MO(limit)
67         fnstsw
68         sahf
69         ja      2f
70         fyl2xp1                         // log1p(x-1+sqrt(2*(x-1)+(x-1)^2))
71         ret
73 2:      faddl   MO(one)                 // x+sqrt(2*(x-1)+(x-1)^2) : log(2)
74         fyl2x                           // log(x+sqrt(2*(x-1)+(x-1)^2))
75         ret
77         // x > 2^28 => y = log(x) + log(2)
78         .align ALIGNARG(4)
79 3:      fyl2x                           // log(x)
80         fldln2                          // log(2) : log(x)
81         faddp                           // log(x)+log(2)
82         ret
84         // 2^28 > x > 2 => y = log(2*x - 1/(x+sqrt(x*x-1)))
85         .align ALIGNARG(4)
86 4:      fld     %st                     // x : x : log(2)
87         fadd    %st, %st(1)             // x : 2*x : log(2)
88         fld     %st                     // x : x : 2*x : log(2)
89         fmul    %st(1)                  // x^2 : x : 2*x : log(2)
90         fsubl   MO(one)                 // x^2-1 : x : 2*x : log(2)
91         fsqrt                           // sqrt(x^2-1) : x : 2*x : log(2)
92         faddp                           // x+sqrt(x^2-1) : 2*x : log(2)
93         fdivrl  MO(one)                 // 1/(x+sqrt(x^2-1)) : 2*x : log(2)
94         fsubrp                          // 2*x+1/(x+sqrt(x^2)-1) : log(2)
95         fyl2x                           // log(2*x+1/(x+sqrt(x^2-1)))
96         ret
98         // x < 1 => NaN
99         .align ALIGNARG(4)
100 5:      fldz
101         fdiv    %st, %st(0)
102         ret
103 END(__ieee754_acosh)