about summary refs log tree commit diff
path: root/sysdeps/x86_64/fpu/svml_d_sincos_data.h
blob: cc316dc329fa04031e1ba2ec9a068db6f09fa2aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Offsets for data table for function sincos.
   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 D_SINCOS_DATA_H
#define D_SINCOS_DATA_H

#define __dSignMask                   	0
#define __dAbsMask                    	64
#define __dRangeVal                   	128
#define __dHalfPI                     	192
#define __dInvPI                      	256
#define __dRShifter                   	320
#define __dOneHalf                    	384
#define __dPI1                        	448
#define __dPI2                        	512
#define __dPI3                        	576
#define __dPI4                        	640
#define __dPI1_FMA                    	704
#define __dPI2_FMA                    	768
#define __dPI3_FMA                    	832
#define __dHalfPI1                    	896
#define __dHalfPI2                    	960
#define __dHalfPI3                    	1024
#define __dHalfPI4                    	1088
#define __dC1                         	1152
#define __dC2                         	1216
#define __dC3                         	1280
#define __dC4                         	1344
#define __dC5                         	1408
#define __dC6                         	1472
#define __dC7                         	1536

.macro double_vector offset value
.if .-__svml_dsincos_data != \offset
.err
.endif
.rept 8
.quad \value
.endr
.endm

#endif