1*2fe8fb19SBen Gras /* e_coshf.c -- float version of e_cosh.c.
2*2fe8fb19SBen Gras * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3*2fe8fb19SBen Gras */
4*2fe8fb19SBen Gras
5*2fe8fb19SBen Gras /*
6*2fe8fb19SBen Gras * ====================================================
7*2fe8fb19SBen Gras * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8*2fe8fb19SBen Gras *
9*2fe8fb19SBen Gras * Developed at SunPro, a Sun Microsystems, Inc. business.
10*2fe8fb19SBen Gras * Permission to use, copy, modify, and distribute this
11*2fe8fb19SBen Gras * software is freely granted, provided that this notice
12*2fe8fb19SBen Gras * is preserved.
13*2fe8fb19SBen Gras * ====================================================
14*2fe8fb19SBen Gras */
15*2fe8fb19SBen Gras
16*2fe8fb19SBen Gras #include <sys/cdefs.h>
17*2fe8fb19SBen Gras #if defined(LIBM_SCCS) && !defined(lint)
18*2fe8fb19SBen Gras __RCSID("$NetBSD: e_coshf.c,v 1.9 2002/05/26 22:01:49 wiz Exp $");
19*2fe8fb19SBen Gras #endif
20*2fe8fb19SBen Gras
21*2fe8fb19SBen Gras #include "math.h"
22*2fe8fb19SBen Gras #include "math_private.h"
23*2fe8fb19SBen Gras
24*2fe8fb19SBen Gras static const float huge = 1.0e30;
25*2fe8fb19SBen Gras static const float one = 1.0, half=0.5;
26*2fe8fb19SBen Gras
27*2fe8fb19SBen Gras float
__ieee754_coshf(float x)28*2fe8fb19SBen Gras __ieee754_coshf(float x)
29*2fe8fb19SBen Gras {
30*2fe8fb19SBen Gras float t,w;
31*2fe8fb19SBen Gras int32_t ix;
32*2fe8fb19SBen Gras
33*2fe8fb19SBen Gras GET_FLOAT_WORD(ix,x);
34*2fe8fb19SBen Gras ix &= 0x7fffffff;
35*2fe8fb19SBen Gras
36*2fe8fb19SBen Gras /* x is INF or NaN */
37*2fe8fb19SBen Gras if(ix>=0x7f800000) return x*x;
38*2fe8fb19SBen Gras
39*2fe8fb19SBen Gras /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
40*2fe8fb19SBen Gras if(ix<0x3eb17218) {
41*2fe8fb19SBen Gras t = expm1f(fabsf(x));
42*2fe8fb19SBen Gras w = one+t;
43*2fe8fb19SBen Gras if (ix<0x24000000) return w; /* cosh(tiny) = 1 */
44*2fe8fb19SBen Gras return one+(t*t)/(w+w);
45*2fe8fb19SBen Gras }
46*2fe8fb19SBen Gras
47*2fe8fb19SBen Gras /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
48*2fe8fb19SBen Gras if (ix < 0x41b00000) {
49*2fe8fb19SBen Gras t = __ieee754_expf(fabsf(x));
50*2fe8fb19SBen Gras return half*t+half/t;
51*2fe8fb19SBen Gras }
52*2fe8fb19SBen Gras
53*2fe8fb19SBen Gras /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
54*2fe8fb19SBen Gras if (ix < 0x42b17180) return half*__ieee754_expf(fabsf(x));
55*2fe8fb19SBen Gras
56*2fe8fb19SBen Gras /* |x| in [log(maxdouble), overflowthresold] */
57*2fe8fb19SBen Gras if (ix<=0x42b2d4fc) {
58*2fe8fb19SBen Gras w = __ieee754_expf(half*fabsf(x));
59*2fe8fb19SBen Gras t = half*w;
60*2fe8fb19SBen Gras return t*w;
61*2fe8fb19SBen Gras }
62*2fe8fb19SBen Gras
63*2fe8fb19SBen Gras /* |x| > overflowthresold, cosh(x) overflow */
64*2fe8fb19SBen Gras return huge*huge;
65*2fe8fb19SBen Gras }
66