atanl.c 2.4 KB
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/* origin: FreeBSD /usr/src/lib/msun/src/s_atanl.c */
/*
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice
 * is preserved.
 * ====================================================
 */
/*
 * See comments in atan.c.
 * Converted to long double by David Schultz <das@FreeBSD.ORG>.
 */

#include "libm.h"

#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double atanl(long double x)
{
	return atan(x);
}
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
#include "__invtrigl.h"
N
nsz 已提交
26
static const long double huge = 1.0e300;
R
Rich Felker 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

long double atanl(long double x)
{
	union IEEEl2bits u;
	long double w,s1,s2,z;
	int id;
	int16_t expsign, expt;
	int32_t expman;

	u.e = x;
	expsign = u.xbits.expsign;
	expt = expsign & 0x7fff;
	if (expt >= ATAN_CONST) { /* if |x| is large, atan(x)~=pi/2 */
		if (expt == BIAS + LDBL_MAX_EXP &&
		    ((u.bits.manh&~LDBL_NBIT)|u.bits.manl)!=0)  /* NaN */
			return x+x;
		if (expsign > 0)
			return  atanhi[3]+atanlo[3];
		else
			return -atanhi[3]-atanlo[3];
	}
	/* Extract the exponent and the first few bits of the mantissa. */
	/* XXX There should be a more convenient way to do this. */
	expman = (expt << 8) | ((u.bits.manh >> (MANH_SIZE - 9)) & 0xff);
	if (expman < ((BIAS - 2) << 8) + 0xc0) {  /* |x| < 0.4375 */
		if (expt < ATAN_LINEAR) {   /* if |x| is small, atanl(x)~=x */
			/* raise inexact */
N
nsz 已提交
54
			if (huge+x > 1.0)
R
Rich Felker 已提交
55 56 57 58 59 60 61 62
				return x;
		}
		id = -1;
	} else {
		x = fabsl(x);
		if (expman < (BIAS << 8) + 0x30) {  /* |x| < 1.1875 */
			if (expman < ((BIAS - 1) << 8) + 0x60) { /*  7/16 <= |x| < 11/16 */
				id = 0;
N
nsz 已提交
63
				x = (2.0*x-1.0)/(2.0+x);
R
Rich Felker 已提交
64 65
			} else {                                 /* 11/16 <= |x| < 19/16 */
				id = 1;
N
nsz 已提交
66
				x = (x-1.0)/(x+1.0);
R
Rich Felker 已提交
67 68 69 70
			}
		} else {
			if (expman < ((BIAS + 1) << 8) + 0x38) { /* |x| < 2.4375 */
				id = 2;
N
nsz 已提交
71
				x = (x-1.5)/(1.0+1.5*x);
R
Rich Felker 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
			} else {                                 /* 2.4375 <= |x| < 2^ATAN_CONST */
				id = 3;
				x = -1.0/x;
			}
		}
	}
	/* end of argument reduction */
	z = x*x;
	w = z*z;
	/* break sum aT[i]z**(i+1) into odd and even poly */
	s1 = z*T_even(w);
	s2 = w*T_odd(w);
	if (id < 0)
		return x - x*(s1+s2);
	z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
	return expsign < 0 ? -z : z;
}
#endif