Remove __ELF__ conditionals
[platform/upstream/glibc.git] / sysdeps / x86_64 / fpu / e_log10l.S
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  *
7  * Changed to use fyl2xp1 for values near 1, <drepper@cygnus.com>.
8  * Adapted for x86-64 by Andreas Jaeger <aj@suse.de>.
9  */
10
11 #include <machine/asm.h>
12
13         .section .rodata.cst8,"aM",@progbits,8
14
15         .p2align 3
16         ASM_TYPE_DIRECTIVE(one,@object)
17 one:    .double 1.0
18         ASM_SIZE_DIRECTIVE(one)
19         /* It is not important that this constant is precise.  It is only
20            a value which is known to be on the safe side for using the
21            fyl2xp1 instruction.  */
22         ASM_TYPE_DIRECTIVE(limit,@object)
23 limit:  .double 0.29
24         ASM_SIZE_DIRECTIVE(limit)
25
26
27 #ifdef PIC
28 # define MO(op) op##(%rip)
29 #else
30 # define MO(op) op
31 #endif
32
33         .text
34 ENTRY(__ieee754_log10l)
35         fldlg2                  // log10(2)
36         fldt    8(%rsp)         // x : log10(2)
37         fxam
38         fnstsw
39         fld     %st             // x : x : log10(2)
40         testb   $1, %ah
41         jnz     3f              // in case x is NaN or ±Inf
42 4:      fsubl   MO(one)         // x-1 : x : log10(2)
43         fld     %st             // x-1 : x-1 : x : log10(2)
44         fabs                    // |x-1| : x-1 : x : log10(2)
45         fcompl  MO(limit)       // x-1 : x : log10(2)
46         fnstsw                  // x-1 : x : log10(2)
47         andb    $0x45, %ah
48         jz      2f
49         fstp    %st(1)          // x-1 : log10(2)
50         fyl2xp1                 // log10(x)
51         ret
52
53 2:      fstp    %st(0)          // x : log10(2)
54         fyl2x                   // log10(x)
55         ret
56
57 3:      testb   $4, %ah
58         jnz     4b              // in case x is ±Inf
59         fstp    %st(1)
60         fstp    %st(1)
61         ret
62 END(__ieee754_log10l)
63
64
65 ENTRY(__log10l_finite)
66         fldlg2                  // log10(2)
67         fldt    8(%rsp)         // x : log10(2)
68         fld     %st             // x : x : log10(2)
69 4:      fsubl   MO(one)         // x-1 : x : log10(2)
70         fld     %st             // x-1 : x-1 : x : log10(2)
71         fabs                    // |x-1| : x-1 : x : log10(2)
72         fcompl  MO(limit)       // x-1 : x : log10(2)
73         fnstsw                  // x-1 : x : log10(2)
74         andb    $0x45, %ah
75         jz      2b
76         fstp    %st(1)          // x-1 : log10(2)
77         fyl2xp1                 // log10(x)
78         ret
79 END(__log10l_finite)