2001-09-19 12:37:31 +02:00
|
|
|
|
/*
|
|
|
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
|
|
|
* Public domain.
|
|
|
|
|
*
|
|
|
|
|
* Adapted for `long double' by Ulrich Drepper <drepper@cygnus.com>.
|
|
|
|
|
*
|
|
|
|
|
* Changed to use fyl2xp1 for values near 1, <drepper@cygnus.com>.
|
|
|
|
|
* Adapted for x86-64 by Andreas Jaeger <aj@suse.de>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <machine/asm.h>
|
|
|
|
|
|
2011-10-12 17:27:51 +02:00
|
|
|
|
.section .rodata.cst8,"aM",@progbits,8
|
2012-02-07 00:41:11 +01:00
|
|
|
|
|
2011-10-12 17:27:51 +02:00
|
|
|
|
.p2align 3
|
2012-08-02 21:04:29 +02:00
|
|
|
|
.type one,@object
|
2001-09-19 12:37:31 +02:00
|
|
|
|
one: .double 1.0
|
|
|
|
|
ASM_SIZE_DIRECTIVE(one)
|
|
|
|
|
/* It is not important that this constant is precise. It is only
|
|
|
|
|
a value which is known to be on the safe side for using the
|
|
|
|
|
fyl2xp1 instruction. */
|
2012-08-02 21:04:29 +02:00
|
|
|
|
.type limit,@object
|
2001-09-19 12:37:31 +02:00
|
|
|
|
limit: .double 0.29
|
|
|
|
|
ASM_SIZE_DIRECTIVE(limit)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef PIC
|
2011-10-12 17:27:51 +02:00
|
|
|
|
# define MO(op) op##(%rip)
|
2001-09-19 12:37:31 +02:00
|
|
|
|
#else
|
2011-10-12 17:27:51 +02:00
|
|
|
|
# define MO(op) op
|
2001-09-19 12:37:31 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
.text
|
|
|
|
|
ENTRY(__ieee754_log10l)
|
|
|
|
|
fldlg2 // log10(2)
|
|
|
|
|
fldt 8(%rsp) // x : log10(2)
|
|
|
|
|
fxam
|
|
|
|
|
fnstsw
|
|
|
|
|
fld %st // x : x : log10(2)
|
2007-03-15 21:10:51 +01:00
|
|
|
|
testb $1, %ah
|
2001-09-19 12:37:31 +02:00
|
|
|
|
jnz 3f // in case x is NaN or <EFBFBD>Inf
|
|
|
|
|
4: fsubl MO(one) // x-1 : x : log10(2)
|
|
|
|
|
fld %st // x-1 : x-1 : x : log10(2)
|
|
|
|
|
fabs // |x-1| : x-1 : x : log10(2)
|
|
|
|
|
fcompl MO(limit) // x-1 : x : log10(2)
|
|
|
|
|
fnstsw // x-1 : x : log10(2)
|
|
|
|
|
andb $0x45, %ah
|
|
|
|
|
jz 2f
|
2014-05-23 14:07:50 +02:00
|
|
|
|
fxam
|
|
|
|
|
fnstsw
|
|
|
|
|
andb $0x45, %ah
|
|
|
|
|
cmpb $0x40, %ah
|
|
|
|
|
jne 5f
|
|
|
|
|
fabs // log10(1) is +0 in all rounding modes.
|
|
|
|
|
5: fstp %st(1) // x-1 : log10(2)
|
2001-09-19 12:37:31 +02:00
|
|
|
|
fyl2xp1 // log10(x)
|
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
|
2: fstp %st(0) // x : log10(2)
|
|
|
|
|
fyl2x // log10(x)
|
|
|
|
|
ret
|
|
|
|
|
|
2007-03-15 21:10:51 +01:00
|
|
|
|
3: testb $4, %ah
|
|
|
|
|
jnz 4b // in case x is <EFBFBD>Inf
|
2001-09-19 12:37:31 +02:00
|
|
|
|
fstp %st(1)
|
|
|
|
|
fstp %st(1)
|
2016-06-09 00:59:18 +02:00
|
|
|
|
fadd %st(0)
|
2001-09-19 12:37:31 +02:00
|
|
|
|
ret
|
|
|
|
|
END(__ieee754_log10l)
|
2011-10-12 17:27:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ENTRY(__log10l_finite)
|
|
|
|
|
fldlg2 // log10(2)
|
|
|
|
|
fldt 8(%rsp) // x : log10(2)
|
|
|
|
|
fld %st // x : x : log10(2)
|
|
|
|
|
4: fsubl MO(one) // x-1 : x : log10(2)
|
|
|
|
|
fld %st // x-1 : x-1 : x : log10(2)
|
|
|
|
|
fabs // |x-1| : x-1 : x : log10(2)
|
|
|
|
|
fcompl MO(limit) // x-1 : x : log10(2)
|
|
|
|
|
fnstsw // x-1 : x : log10(2)
|
|
|
|
|
andb $0x45, %ah
|
|
|
|
|
jz 2b
|
2015-11-05 22:56:31 +01:00
|
|
|
|
fxam
|
|
|
|
|
fnstsw
|
|
|
|
|
andb $0x45, %ah
|
|
|
|
|
cmpb $0x40, %ah
|
|
|
|
|
jne 6f
|
|
|
|
|
fabs // log10(1) is +0 in all rounding modes.
|
|
|
|
|
6: fstp %st(1) // x-1 : log10(2)
|
2011-10-12 17:27:51 +02:00
|
|
|
|
fyl2xp1 // log10(x)
|
|
|
|
|
ret
|
|
|
|
|
END(__log10l_finite)
|