diff options
author | Andrew Senkevich <andrew.senkevich@intel.com> | 2015-06-24 17:44:35 +0300 |
---|---|---|
committer | Andrew Senkevich <andrew.senkevich@intel.com> | 2015-06-24 17:44:35 +0300 |
commit | 36870482d2a33e3b703bd74b52063594389e827a (patch) | |
tree | b2a9a50483b6269db46fefff328ce1a1aa8d7cab /sysdeps/x86_64/fpu/svml_s_cosf_data.h | |
parent | ad39cce0da0161dba69781c53349acf2e23f156c (diff) | |
download | glibc-36870482d2a33e3b703bd74b52063594389e827a.tar glibc-36870482d2a33e3b703bd74b52063594389e827a.tar.gz glibc-36870482d2a33e3b703bd74b52063594389e827a.tar.bz2 glibc-36870482d2a33e3b703bd74b52063594389e827a.zip |
Combination of data tables for x86_64 vector functions sinf, cosf and sincosf.
* sysdeps/x86_64/fpu/Makefile (libmvec-support): Fixed files list.
* sysdeps/x86_64/fpu/multiarch/svml_s_cosf4_core_sse4.S: Renamed variable
and included header.
* sysdeps/x86_64/fpu/multiarch/svml_s_cosf8_core_avx2.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_cosf16_core_avx512.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_sinf4_core_sse4.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_sinf8_core_avx2.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_sinf16_core_avx512.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_sincosf4_core_sse4.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_sincosf8_core_avx2.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S: Likewise.
* sysdeps/x86_64/fpu/svml_s_trig_data.S: New file.
* sysdeps/x86_64/fpu/svml_s_trig_data.h: Likewise.
* sysdeps/x86_64/fpu/svml_s_cosf_data.S: Removed file.
* sysdeps/x86_64/fpu/svml_s_cosf_data.h: Likewise.
* sysdeps/x86_64/fpu/svml_s_sinf_data.S: Likewise.
* sysdeps/x86_64/fpu/svml_s_sinf_data.h: Likewise.
* sysdeps/x86_64/fpu/svml_s_sincosf_data.S: Likewise.
* sysdeps/x86_64/fpu/svml_s_sincosf_data.h: Likewise.
Diffstat (limited to 'sysdeps/x86_64/fpu/svml_s_cosf_data.h')
-rw-r--r-- | sysdeps/x86_64/fpu/svml_s_cosf_data.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/sysdeps/x86_64/fpu/svml_s_cosf_data.h b/sysdeps/x86_64/fpu/svml_s_cosf_data.h deleted file mode 100644 index 1e25c5a56d..0000000000 --- a/sysdeps/x86_64/fpu/svml_s_cosf_data.h +++ /dev/null @@ -1,58 +0,0 @@ -/* Offsets for data table for vectorized cosf. - Copyright (C) 2014-2015 Free Software Foundation, Inc. - 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 - <http://www.gnu.org/licenses/>. */ - -#ifndef S_COSF_DATA_H -#define S_COSF_DATA_H - -.macro float_vector offset value -.if .-__svml_scos_data != \offset -.err -.endif -.rept 16 -.long \value -.endr -.endm - -#define __dT 0 -#define __sAbsMask 4096 -#define __sRangeReductionVal 4160 -#define __sRangeVal 4224 -#define __sS1 4288 -#define __sS2 4352 -#define __sC1 4416 -#define __sC2 4480 -#define __sPI1 4544 -#define __sPI2 4608 -#define __sPI3 4672 -#define __sPI4 4736 -#define __sPI1_FMA 4800 -#define __sPI2_FMA 4864 -#define __sPI3_FMA 4928 -#define __sA3 4992 -#define __sA5 5056 -#define __sA7 5120 -#define __sA9 5184 -#define __sA5_FMA 5248 -#define __sA7_FMA 5312 -#define __sA9_FMA 5376 -#define __sInvPI 5440 -#define __sRShifter 5504 -#define __sHalfPI 5568 -#define __sOneHalf 5632 - -#endif |