Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fastmath.s « necv70 « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bccb20f12cf1982781759bbbbf87e343a770eb72 (plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
	.globl	_fast_sin
_fast_sin:
	fsin.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_sinf
_fast_sinf:
	fsin.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_cos
_fast_cos:
	fcos.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_cosf
_fast_cosf:
	fcos.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_tan
_fast_tan:
	ftan.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_tanf
_fast_tanf:
	ftan.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0



	.globl	_fast_fabs
_fast_fabs:
	fabs.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_fabsf
_fast_fabsf:
	fabs.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_sqrt
_fast_sqrt:
	fsqrt.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_sqrtf
_fast_sqrtf:
	fsqrt.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_acos
_fast_acos:
	facos.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_acosf
_fast_acosf:
	facos.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_asin
_fast_asin:
	fasin.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_asinf
_fast_asinf:
	fasin.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_atan
_fast_atan:
	fatan.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_atanf
_fast_atanf:
	fatan.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_cosh
_fast_cosh:
	fcosh.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_coshf
_fast_coshf:
	fcosh.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_sinh
_fast_sinh:
	fsin.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_sinhf
_fast_sinhf:
	fsin.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_tanh
_fast_tanh:
	ftanh.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_tanhf
_fast_tanhf:
	ftanh.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_atanh
_fast_atanh:
	fatanh.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_atanhf
_fast_atanhf:
	fatanh.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0

	.globl	_fast_exp2
_fast_exp2:
	fexp2.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_exp2f
_fast_exp2f:
	fexp2.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_exp10
_fast_exp10:
	fexp10.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_exp10f
_fast_exp10f:
	fexp10.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_expe
_fast_expe:
	fexpe.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_expef
_fast_expef:
	fexpe.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_log2
_fast_log2:
	flog2.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_log2f
_fast_log2f:
	flog2.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0

	.globl	_fast_log10
_fast_log10:
	flog10.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_log10f
_fast_log10f:
	flog10.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0


	.globl	_fast_loge
_fast_loge:
	floge.l	[ap],[ap]
	mov.d	[ap],r0
	ret	#0


	.globl	_fast_logef
_fast_logef:
	floge.s	[ap],[ap]
	mov.w	[ap],r0
	ret	#0