2017-12-04 04:42:10 +00:00
|
|
|
/* Compute sine of argument.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2018-2024 Free Software Foundation, Inc.
|
2017-12-04 04:42:10 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
1996-03-05 21:41:30 +00:00
|
|
|
|
2018-08-14 09:45:59 +00:00
|
|
|
#include <stdint.h>
|
2012-03-09 19:29:16 +00:00
|
|
|
#include <math.h>
|
2018-08-14 09:45:59 +00:00
|
|
|
#include <math-barriers.h>
|
2017-09-22 20:24:12 +00:00
|
|
|
#include <libm-alias-float.h>
|
2018-08-14 09:45:59 +00:00
|
|
|
#include "math_config.h"
|
2017-12-16 08:31:37 +00:00
|
|
|
#include "s_sincosf.h"
|
1996-03-05 21:41:30 +00:00
|
|
|
|
i686: Use generic sinf implementation for SSE2 version
Performance seems to be similar (gcc 11.2.1 on a Ryzen 9 5900X),
the generic algorithm shows slight better performance for
the 'workload-huge.wrf' input set.
* s_sinf-sse2.S:
"sinf": {
"": {
"duration": 3.72405e+09,
"iterations": 2.38374e+08,
"max": 63.973,
"min": 11.211,
"mean": 15.6227
},
"workload-random.wrf": {
"duration": 3.76923e+09,
"iterations": 8.4e+07,
"reciprocal-throughput": 17.6355,
"latency": 72.108,
"max-throughput": 5.67037e+07,
"min-throughput": 1.38681e+07
},
"workload-huge.wrf": {
"duration": 3.76943e+09,
"iterations": 6e+07,
"reciprocal-throughput": 29.3493,
"latency": 96.2985,
"max-throughput": 3.40724e+07,
"min-throughput": 1.03844e+07
}
}
* generic s_sinf.c:
"sinf": {
"": {
"duration": 3.70989e+09,
"iterations": 2.18025e+08,
"max": 69.782,
"min": 11.1,
"mean": 17.0159
},
"workload-random.wrf": {
"duration": 3.77213e+09,
"iterations": 9.6e+07,
"reciprocal-throughput": 17.5402,
"latency": 61.0459,
"max-throughput": 5.70119e+07,
"min-throughput": 1.63811e+07
},
"workload-huge.wrf": {
"duration": 3.81576e+09,
"iterations": 5.6e+07,
"reciprocal-throughput": 38.2111,
"latency": 98.0659,
"max-throughput": 2.61704e+07,
"min-throughput": 1.01972e+07
}
}
Checked on i686-linux-gnu.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2022-05-31 21:04:47 +00:00
|
|
|
#ifndef SECTION
|
|
|
|
# define SECTION
|
|
|
|
#endif
|
|
|
|
|
2012-09-03 13:32:13 +00:00
|
|
|
#ifndef SINF
|
|
|
|
# define SINF_FUNC __sinf
|
|
|
|
#else
|
|
|
|
# define SINF_FUNC SINF
|
|
|
|
#endif
|
|
|
|
|
2018-08-14 09:45:59 +00:00
|
|
|
/* Fast sinf implementation. Worst-case ULP is 0.5607, maximum relative
|
|
|
|
error is 0.5303 * 2^-23. A single-step range reduction is used for
|
|
|
|
small values. Large inputs have their range reduced using fast integer
|
|
|
|
arithmetic.
|
|
|
|
*/
|
2017-12-04 04:42:10 +00:00
|
|
|
float
|
i686: Use generic sinf implementation for SSE2 version
Performance seems to be similar (gcc 11.2.1 on a Ryzen 9 5900X),
the generic algorithm shows slight better performance for
the 'workload-huge.wrf' input set.
* s_sinf-sse2.S:
"sinf": {
"": {
"duration": 3.72405e+09,
"iterations": 2.38374e+08,
"max": 63.973,
"min": 11.211,
"mean": 15.6227
},
"workload-random.wrf": {
"duration": 3.76923e+09,
"iterations": 8.4e+07,
"reciprocal-throughput": 17.6355,
"latency": 72.108,
"max-throughput": 5.67037e+07,
"min-throughput": 1.38681e+07
},
"workload-huge.wrf": {
"duration": 3.76943e+09,
"iterations": 6e+07,
"reciprocal-throughput": 29.3493,
"latency": 96.2985,
"max-throughput": 3.40724e+07,
"min-throughput": 1.03844e+07
}
}
* generic s_sinf.c:
"sinf": {
"": {
"duration": 3.70989e+09,
"iterations": 2.18025e+08,
"max": 69.782,
"min": 11.1,
"mean": 17.0159
},
"workload-random.wrf": {
"duration": 3.77213e+09,
"iterations": 9.6e+07,
"reciprocal-throughput": 17.5402,
"latency": 61.0459,
"max-throughput": 5.70119e+07,
"min-throughput": 1.63811e+07
},
"workload-huge.wrf": {
"duration": 3.81576e+09,
"iterations": 5.6e+07,
"reciprocal-throughput": 38.2111,
"latency": 98.0659,
"max-throughput": 2.61704e+07,
"min-throughput": 1.01972e+07
}
}
Checked on i686-linux-gnu.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2022-05-31 21:04:47 +00:00
|
|
|
SECTION
|
2018-08-14 09:45:59 +00:00
|
|
|
SINF_FUNC (float y)
|
2017-12-04 04:42:10 +00:00
|
|
|
{
|
2018-08-14 09:45:59 +00:00
|
|
|
double x = y;
|
|
|
|
double s;
|
|
|
|
int n;
|
|
|
|
const sincos_t *p = &__sincosf_table[0];
|
|
|
|
|
|
|
|
if (abstop12 (y) < abstop12 (pio4))
|
|
|
|
{
|
|
|
|
s = x * x;
|
|
|
|
|
|
|
|
if (__glibc_unlikely (abstop12 (y) < abstop12 (0x1p-12f)))
|
|
|
|
{
|
|
|
|
/* Force underflow for tiny y. */
|
|
|
|
if (__glibc_unlikely (abstop12 (y) < abstop12 (0x1p-126f)))
|
|
|
|
math_force_eval ((float)s);
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sinf_poly (x, s, p, 0);
|
|
|
|
}
|
|
|
|
else if (__glibc_likely (abstop12 (y) < abstop12 (120.0f)))
|
2017-12-04 04:42:10 +00:00
|
|
|
{
|
2018-08-14 09:45:59 +00:00
|
|
|
x = reduce_fast (x, p, &n);
|
|
|
|
|
|
|
|
/* Setup the signs for sin and cos. */
|
|
|
|
s = p->sign[n & 3];
|
|
|
|
|
|
|
|
if (n & 2)
|
|
|
|
p = &__sincosf_table[1];
|
|
|
|
|
|
|
|
return sinf_poly (x * s, x * x, p, n);
|
2017-12-04 04:42:10 +00:00
|
|
|
}
|
2018-08-14 09:45:59 +00:00
|
|
|
else if (abstop12 (y) < abstop12 (INFINITY))
|
2017-12-04 04:42:10 +00:00
|
|
|
{
|
2018-08-14 09:45:59 +00:00
|
|
|
uint32_t xi = asuint (y);
|
|
|
|
int sign = xi >> 31;
|
|
|
|
|
|
|
|
x = reduce_large (xi, &n);
|
|
|
|
|
|
|
|
/* Setup signs for sin and cos - include original sign. */
|
|
|
|
s = p->sign[(n + sign) & 3];
|
|
|
|
|
|
|
|
if ((n + sign) & 2)
|
|
|
|
p = &__sincosf_table[1];
|
|
|
|
|
|
|
|
return sinf_poly (x * s, x * x, p, n);
|
2017-12-04 04:42:10 +00:00
|
|
|
}
|
2018-08-14 09:45:59 +00:00
|
|
|
else
|
|
|
|
return __math_invalidf (y);
|
1996-03-05 21:41:30 +00:00
|
|
|
}
|
2012-09-03 13:32:13 +00:00
|
|
|
|
|
|
|
#ifndef SINF
|
2017-09-22 20:24:12 +00:00
|
|
|
libm_alias_float (__sin, sin)
|
2012-09-03 13:32:13 +00:00
|
|
|
#endif
|