]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/m68k/m680x0/fpu/s_cexp.c
Prepare to convert remaining _Complex functions
[thirdparty/glibc.git] / sysdeps / m68k / m680x0 / fpu / s_cexp.c
CommitLineData
bc6dd76e 1/* Complex exponential function. m68k fpu version
f7a9f785 2 Copyright (C) 1997-2016 Free Software Foundation, Inc.
bc6dd76e
UD
3 This file is part of the GNU C Library.
4 Contributed by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
5
6 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
bc6dd76e
UD
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3214b89b 14 Lesser General Public License for more details.
bc6dd76e 15
3214b89b 16 You should have received a copy of the GNU Lesser General Public
ab84e3ff
PE
17 License along with the GNU C Library. If not, see
18 <http://www.gnu.org/licenses/>. */
bc6dd76e 19
2f6ba762 20#include <float.h>
bc6dd76e
UD
21#include <complex.h>
22#include <math.h>
5da9d124 23#include "mathimpl.h"
bc6dd76e
UD
24
25#ifndef SUFF
26#define SUFF
27#endif
bc6dd76e
UD
28#ifndef float_type
29#define float_type double
30#endif
31
32#define CONCATX(a,b) __CONCAT(a,b)
33#define s(name) CONCATX(name,SUFF)
34#define m81(func) __m81_u(s(func))
35
36__complex__ float_type
37s(__cexp) (__complex__ float_type x)
38{
39 __complex__ float_type retval;
e7af313d
UD
40 unsigned long ix_cond;
41
42 ix_cond = __m81_test (__imag__ x);
bc6dd76e 43
e7af313d 44 if ((ix_cond & (__M81_COND_NAN|__M81_COND_INF)) == 0)
bc6dd76e 45 {
e7af313d 46 /* Imaginary part is finite. */
2f6ba762 47 unsigned long rx_cond = __m81_test (__real__ x);
e7af313d 48
2f6ba762 49 if ((rx_cond & (__M81_COND_NAN|__M81_COND_INF)) == 0)
bc6dd76e 50 {
2f6ba762
AS
51 const int t = (int) ((LDBL_MAX_EXP - 1) * M_LN2l);
52 long double sin_ix, cos_ix, exp_val;
53
54 __m81_u (__sincosl) (__imag__ x, &sin_ix, &cos_ix);
55
56 if (__real__ x > t)
57 {
58 long double exp_t = __m81_u(__ieee754_expl) (t);
59 __real__ x -= t;
60 sin_ix *= exp_t;
61 cos_ix *= exp_t;
62 if (__real__ x > t)
63 {
64 __real__ x -= t;
65 sin_ix *= exp_t;
66 cos_ix *= exp_t;
67 }
68 }
69
70 exp_val = __m81_u(__ieee754_expl) (__real__ x);
71 __real__ retval = exp_val * cos_ix;
e7af313d
UD
72 if (ix_cond & __M81_COND_ZERO)
73 __imag__ retval = __imag__ x;
74 else
2f6ba762 75 __imag__ retval = exp_val * sin_ix;
e7af313d
UD
76 }
77 else
78 {
79 /* Compute the sign of the result. */
2f6ba762 80 long double remainder, pi_2;
e7af313d 81 int quadrant;
bc6dd76e 82
2f6ba762
AS
83 if ((rx_cond & (__M81_COND_NAN|__M81_COND_NEG)) == __M81_COND_NEG)
84 __real__ retval = __imag__ retval = 0.0;
85 else
86 __real__ retval = __imag__ retval = __real__ x;
e7af313d
UD
87 __asm ("fmovecr %#0,%0\n\tfscale%.w %#-1,%0" : "=f" (pi_2));
88 __asm ("fmod%.x %2,%0\n\tfmove%.l %/fpsr,%1"
89 : "=f" (remainder), "=dm" (quadrant)
90 : "f" (pi_2), "0" (__imag__ x));
91 quadrant = (quadrant >> 16) & 0x83;
92 if (quadrant & 0x80)
93 quadrant ^= 0x83;
94 switch (quadrant)
45b0751e 95 {
e7af313d
UD
96 default:
97 break;
98 case 1:
99 __real__ retval = -__real__ retval;
100 break;
101 case 2:
102 __real__ retval = -__real__ retval;
103 case 3:
104 __imag__ retval = -__imag__ retval;
105 break;
45b0751e 106 }
2f6ba762 107 if (ix_cond & __M81_COND_ZERO && (rx_cond & __M81_COND_NAN) == 0)
e7af313d 108 __imag__ retval = __imag__ x;
bc6dd76e 109 }
bc6dd76e 110 }
e7af313d 111 else
bc6dd76e 112 {
e7af313d 113 unsigned long rx_cond = __m81_test (__real__ x);
45b0751e 114
e7af313d
UD
115 if (rx_cond & __M81_COND_INF)
116 {
117 /* Real part is infinite. */
118 if (rx_cond & __M81_COND_NEG)
45b0751e 119 {
e7af313d
UD
120 __real__ retval = __imag__ retval = 0.0;
121 if (ix_cond & __M81_COND_NEG)
122 __imag__ retval = -__imag__ retval;
45b0751e 123 }
bc6dd76e
UD
124 else
125 {
e7af313d
UD
126 __real__ retval = __real__ x;
127 __imag__ retval = __imag__ x - __imag__ x;
bc6dd76e
UD
128 }
129 }
bc6dd76e 130 else
e7af313d 131 __real__ retval = __imag__ retval = __imag__ x - __imag__ x;
bc6dd76e 132 }
bc6dd76e
UD
133
134 return retval;
135}
615f651b 136weak_alias (s(__cexp), s(cexp))