initial check-in, version 0.5.0
[musl] / src / math / e_cosh.c
1
2 /* @(#)e_cosh.c 1.3 95/01/18 */
3 /*
4  * ====================================================
5  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6  *
7  * Developed at SunSoft, a Sun Microsystems, Inc. business.
8  * Permission to use, copy, modify, and distribute this
9  * software is freely granted, provided that this notice 
10  * is preserved.
11  * ====================================================
12  */
13
14 /* cosh(x)
15  * Method : 
16  * mathematically cosh(x) if defined to be (exp(x)+exp(-x))/2
17  *      1. Replace x by |x| (cosh(x) = cosh(-x)). 
18  *      2. 
19  *                                                      [ exp(x) - 1 ]^2 
20  *          0        <= x <= ln2/2  :  cosh(x) := 1 + -------------------
21  *                                                         2*exp(x)
22  *
23  *                                                exp(x) +  1/exp(x)
24  *          ln2/2    <= x <= 22     :  cosh(x) := -------------------
25  *                                                        2
26  *          22       <= x <= lnovft :  cosh(x) := exp(x)/2 
27  *          lnovft   <= x <= ln2ovft:  cosh(x) := exp(x/2)/2 * exp(x/2)
28  *          ln2ovft  <  x           :  cosh(x) := huge*huge (overflow)
29  *
30  * Special cases:
31  *      cosh(x) is |x| if x is +INF, -INF, or NaN.
32  *      only cosh(0)=1 is exact for finite x.
33  */
34
35 #include <math.h>
36 #include "math_private.h"
37
38 static const double one = 1.0, half=0.5, huge = 1.0e300;
39
40 double
41 cosh(double x)
42 {
43         double t,w;
44         int32_t ix;
45         uint32_t lx;
46
47     /* High word of |x|. */
48         GET_HIGH_WORD(ix,x);
49         ix &= 0x7fffffff;
50
51     /* x is INF or NaN */
52         if(ix>=0x7ff00000) return x*x;  
53
54     /* |x| in [0,0.5*ln2], return 1+expm1(|x|)^2/(2*exp(|x|)) */
55         if(ix<0x3fd62e43) {
56             t = expm1(fabs(x));
57             w = one+t;
58             if (ix<0x3c800000) return w;        /* cosh(tiny) = 1 */
59             return one+(t*t)/(w+w);
60         }
61
62     /* |x| in [0.5*ln2,22], return (exp(|x|)+1/exp(|x|)/2; */
63         if (ix < 0x40360000) {
64                 t = exp(fabs(x));
65                 return half*t+half/t;
66         }
67
68     /* |x| in [22, log(maxdouble)] return half*exp(|x|) */
69         if (ix < 0x40862E42)  return half*exp(fabs(x));
70
71     /* |x| in [log(maxdouble), overflowthresold] */
72         GET_LOW_WORD(lx,x);
73         if (ix<0x408633CE ||
74               ((ix==0x408633ce)&&(lx<=(uint32_t)0x8fb9f87d))) {
75             w = exp(half*fabs(x));
76             t = half*w;
77             return t*w;
78         }
79
80     /* |x| > overflowthresold, cosh(x) overflow */
81         return huge*huge;
82 }