]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/m68k/m680x0/fpu/s_csinh_template.c
Benchtests: Remove broken walk benchmarks
[thirdparty/glibc.git] / sysdeps / m68k / m680x0 / fpu / s_csinh_template.c
CommitLineData
5838780e 1/* Complex sine hyperbole function. m68k fpu version
dff8da6b 2 Copyright (C) 1997-2024 Free Software Foundation, Inc.
5838780e 3 This file is part of the GNU C Library.
5838780e
UD
4
5 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
5838780e
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3214b89b 13 Lesser General Public License for more details.
5838780e 14
3214b89b 15 You should have received a copy of the GNU Lesser General Public
ab84e3ff 16 License along with the GNU C Library. If not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
5838780e 18
5838780e
UD
19#include <complex.h>
20#include <math.h>
5da9d124 21#include "mathimpl.h"
5838780e 22
5838780e 23#define CONCATX(a,b) __CONCAT(a,b)
c50eee19 24#define s(name) M_SUF (name)
5838780e
UD
25#define m81(func) __m81_u(s(func))
26
c50eee19
PM
27CFLOAT
28s(__csinh) (CFLOAT x)
5838780e 29{
c50eee19 30 CFLOAT retval;
e7af313d 31 unsigned long ix_cond;
5838780e 32
e7af313d 33 ix_cond = __m81_test (__imag__ x);
5838780e 34
e7af313d 35 if ((ix_cond & (__M81_COND_INF|__M81_COND_NAN)) == 0)
5838780e 36 {
e7af313d 37 /* Imaginary part is finite. */
c50eee19 38 FLOAT sin_ix, cos_ix;
5838780e 39
e7af313d
UD
40 __asm ("fsincos%.x %2,%1:%0" : "=f" (sin_ix), "=f" (cos_ix)
41 : "f" (__imag__ x));
42 __real__ retval = cos_ix * m81(__ieee754_sinh) (__real__ x);
43 if (ix_cond & __M81_COND_ZERO)
44 __imag__ retval = __imag__ x;
5838780e 45 else
e7af313d 46 __imag__ retval = sin_ix * m81(__ieee754_cosh) (__real__ x);
5838780e 47 }
e7af313d 48 else
5838780e 49 {
e7af313d 50 unsigned long rx_cond = __m81_test (__real__ x);
5838780e 51
e7af313d
UD
52 __imag__ retval = __imag__ x - __imag__ x;
53 if (rx_cond & (__M81_COND_ZERO|__M81_COND_INF|__M81_COND_NAN))
54 __real__ retval = __real__ x;
5838780e 55 else
e7af313d 56 __real__ retval = __imag__ retval;
5838780e 57 }
5838780e
UD
58
59 return retval;
60}
faec6323 61declare_mgen_alias (__csinh, csinh)