Update.
[glibc.git] / sysdeps / libm-i387 / s_log1pl.S
blob05a17b2831ecf1d0afd130a63d7363883c685653
1 /*
2  * Written by J.T. Conklin <jtc@netbsd.org>.
3  * Public domain.
4  *
5  * Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
6  */
8 #include <machine/asm.h>
10 RCSID("$NetBSD: s_log1p.S,v 1.7 1995/05/09 00:10:58 jtc Exp $")
12 #ifdef __ELF__
13         .section .rodata
14 #else
15         .text
16 #endif
17         .align ALIGNARG(4)
18         /* The fyl2xp1 can only be used for values in
19                 -1 + sqrt(2) / 2 <= x <= 1 - sqrt(2) / 2
20            0.29 is a safe value.
21         */
22 limit:  .tfloat 0.29
23         /* Please note:  we use a double value here.  Since 1.0 has
24            an exact representation this does not effect the accuracy
25            but it helps to optimize the code.  */
26 one:    .double 1.0
29  * Use the fyl2xp1 function when the argument is in the range -0.29 to 0.29,
30  * otherwise fyl2x with the needed extra computation.
31  */
32         .text
33 ENTRY(__log1pl)
34         fldln2
36         fldt    4(%esp)
38 #ifdef PIC
39         call    1f
40 1:      popl    %edx
41         addl    $_GLOBAL_OFFSET_TABLE_+[.-1b], %edx
42 #endif
44         fld     %st
45         fabs
46 #ifdef PIC
47         fldt    limit@GOTOFF(%edx)
48 #else
49         fldt    limit
50 #endif
51         fcompp
52         fnstsw
53         sahf
54         jnc     2f
56 #ifdef PIC
57         faddl   one@GOTOFF(%edx)
58 #else
59         faddl   one
60 #endif
61         fyl2x
62         ret
64 2:      fyl2xp1
65         ret
67 END (__log1pl)
68 weak_alias (__log1pl, log1pl)