Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/musl/src/complex/cexp.c
4397 views
1
/* origin: FreeBSD /usr/src/lib/msun/src/s_cexp.c */
2
/*-
3
* Copyright (c) 2011 David Schultz <[email protected]>
4
* All rights reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions
8
* are met:
9
* 1. Redistributions of source code must retain the above copyright
10
* notice, this list of conditions and the following disclaimer.
11
* 2. Redistributions in binary form must reproduce the above copyright
12
* notice, this list of conditions and the following disclaimer in the
13
* documentation and/or other materials provided with the distribution.
14
*
15
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
* SUCH DAMAGE.
26
*/
27
28
#include "complex_impl.h"
29
30
static const uint32_t
31
exp_ovfl = 0x40862e42, /* high bits of MAX_EXP * ln2 ~= 710 */
32
cexp_ovfl = 0x4096b8e4; /* (MAX_EXP - MIN_DENORM_EXP) * ln2 */
33
34
extern double __cdecl __exp(double x, matherr_t matherr);
35
36
static double cexp_callback( int type, const char *name, double arg1, double arg2, double retval )
37
{
38
39
switch (type) {
40
case _DOMAIN:
41
errno = EDOM;
42
break;
43
case _SING:
44
case _OVERFLOW:
45
errno = ERANGE;
46
break;
47
}
48
return retval;
49
}
50
51
_Dcomplex __cdecl cexp(_Dcomplex z)
52
{
53
_Dcomplex r;
54
double x, y, exp_x;
55
uint32_t hx, hy, lx, ly;
56
57
x = creal(z);
58
y = cimag(z);
59
60
EXTRACT_WORDS(hy, ly, y);
61
hy &= 0x7fffffff;
62
63
/* cexp(x + I 0) = exp(x) + I 0 */
64
if ((hy | ly) == 0) {
65
if (isnan(x)) return CMPLX(x, y);
66
return CMPLX(__exp(x, cexp_callback), y);
67
}
68
EXTRACT_WORDS(hx, lx, x);
69
/* cexp(0 + I y) = cos(y) + I sin(y) */
70
if (((hx & 0x7fffffff) | lx) == 0) {
71
if (isinf(y)) {
72
errno = EDOM;
73
return CMPLX(NAN, NAN);
74
}
75
return CMPLX(cos(y), sin(y));
76
}
77
78
if (hy >= 0x7ff00000) {
79
if (lx != 0 || (hx & 0x7fffffff) != 0x7ff00000) {
80
/* cexp(finite|NaN +- I Inf|NaN) = NaN + I NaN */
81
if (isinf(y)) {
82
if (!isnan(x)) errno = EDOM;
83
return CMPLX(NAN, NAN);
84
}
85
return CMPLX(y - y, y - y);
86
} else if (hx & 0x80000000) {
87
/* cexp(-Inf +- I Inf|NaN) = 0 + I 0 */
88
return CMPLX(0.0, copysign(0.0, y));
89
} else {
90
/* cexp(+Inf +- I Inf|NaN) = Inf + I NaN */
91
if (!isnan(y)) errno = EDOM;
92
return CMPLX(x, NAN);
93
}
94
}
95
96
if (hx >= exp_ovfl && hx <= cexp_ovfl) {
97
/*
98
* x is between 709.7 and 1454.3, so we must scale to avoid
99
* overflow in exp(x).
100
*/
101
r = __ldexp_cexp(z, 0);
102
if (isinf(r._Val[0])) errno = ERANGE;
103
return r;
104
} else {
105
/*
106
* Cases covered here:
107
* - x < exp_ovfl and exp(x) won't overflow (common case)
108
* - x > cexp_ovfl, so exp(x) * s overflows for all s > 0
109
* - x = +-Inf (generated by exp())
110
* - x = NaN (spurious inexact exception from y)
111
*/
112
if (isnan(x))
113
return CMPLX(NAN, NAN);
114
exp_x = __exp(x, cexp_callback);
115
return CMPLX(exp_x * cos(y), exp_x * sin(y));
116
}
117
}
118
119