2 * Written by J.T. Conklin <jtc@netbsd.org>.
3 * Adapted for use as log2 by Ulrich Drepper <drepper@cygnus.com>.
6 * Changed to use fyl2xp1 for values near 1, <drepper@cygnus.com>.
9 #include <machine/asm.h>
17 ASM_TYPE_DIRECTIVE(one,@object)
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)
25 ASM_SIZE_DIRECTIVE(limit)
29 #define MO(op) op##@GOTOFF(%edx)
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
53 fstp %st(1) // x-1 : 1
57 2: fstp %st(0) // x : 1
61 3: jp 4b // in case x is ±Inf