]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/i386/fpu/e_log2.S
Optimize libm
[thirdparty/glibc.git] / sysdeps / i386 / fpu / e_log2.S
1 /*
2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Adapted for use as log2 by Ulrich Drepper <drepper@cygnus.com>.
4 * Public domain.
5 *
6 * Changed to use fyl2xp1 for values near 1, <drepper@cygnus.com>.
7 */
8
9 #include <machine/asm.h>
10
11 #ifdef __ELF__
12 .section .rodata.cst8,"aM",@progbits,8
13 #else
14 .text
15 #endif
16 .p2align 3
17 ASM_TYPE_DIRECTIVE(one,@object)
18 one: .double 1.0
19 ASM_SIZE_DIRECTIVE(one)
20 /* It is not important that this constant is precise. It is only
21 a value which is known to be on the safe side for using the
22 fyl2xp1 instruction. */
23 ASM_TYPE_DIRECTIVE(limit,@object)
24 limit: .double 0.29
25 ASM_SIZE_DIRECTIVE(limit)
26
27
28 #ifdef PIC
29 # define MO(op) op##@GOTOFF(%edx)
30 #else
31 # define MO(op) op
32 #endif
33
34 .text
35 ENTRY(__ieee754_log2)
36 #ifdef PIC
37 LOAD_PIC_REG (dx)
38 #endif
39 fldl MO(one)
40 fldl 4(%esp) // x : 1
41 fxam
42 fnstsw
43 fld %st // x : x : 1
44 sahf
45 jc 3f // in case x is NaN or ±Inf
46 4: fsub %st(2), %st // x-1 : x : 1
47 fld %st // x-1 : x-1 : x : 1
48 fabs // |x-1| : x-1 : x : 1
49 fcompl MO(limit) // x-1 : x : 1
50 fnstsw // x-1 : x : 1
51 andb $0x45, %ah
52 jz 2f
53 fstp %st(1) // x-1 : 1
54 fyl2xp1 // log(x)
55 ret
56
57 2: fstp %st(0) // x : 1
58 fyl2x // log(x)
59 ret
60
61 3: jp 4b // in case x is ±Inf
62 fstp %st(1)
63 fstp %st(1)
64 ret
65 END (__ieee754_log2)
66 strong_alias (__ieee754_log2, __log2_finite)