1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20: #include <stdbool.h>
21: #include <math.h>
22: #include <complex.h>
23:
24: attribute_hidden
25: long double _Complex
26: __multc3 (long double a, long double b, long double c, long double d)
27: {
28: long double ac, bd, ad, bc, x, y;
29:
30: ac = a * c;
31: bd = b * d;
32: ad = a * d;
33: bc = b * c;
34:
35: x = ac - bd;
36: y = ad + bc;
37:
38: if (isnan (x) && isnan (y))
39: {
40:
41: bool recalc = 0;
42: if (isinf (a) || isinf (b))
43: {
44:
45:
46: a = __copysignl (isinf (a) ? 1 : 0, a);
47: b = __copysignl (isinf (b) ? 1 : 0, b);
48: if (isnan (c)) c = __copysignl (0, c);
49: if (isnan (d)) d = __copysignl (0, d);
50: recalc = 1;
51: }
52: if (isinf (c) || isinf (d))
53: {
54:
55:
56: c = __copysignl (isinf (c) ? 1 : 0, c);
57: d = __copysignl (isinf (d) ? 1 : 0, d);
58: if (isnan (a)) a = __copysignl (0, a);
59: if (isnan (b)) b = __copysignl (0, b);
60: recalc = 1;
61: }
62: if (!recalc
63: && (isinf (ac) || isinf (bd) || isinf (ad) || isinf (bc)))
64: {
65:
66: if (isnan (a)) a = __copysignl (0, a);
67: if (isnan (b)) b = __copysignl (0, b);
68: if (isnan (c)) c = __copysignl (0, c);
69: if (isnan (d)) d = __copysignl (0, d);
70: recalc = 1;
71: }
72: if (recalc)
73: {
74: x = INFINITY * (a * c - b * d);
75: y = INFINITY * (a * d + b * c);
76: }
77: }
78:
79: return x + I * y;
80: }