]>
Commit | Line | Data |
---|---|---|
1bccec25 BS |
1 | /* |
2 | * FPU op helpers | |
3 | * | |
4 | * Copyright (c) 2003-2005 Fabrice Bellard | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
20 | #include "cpu.h" | |
2ef6175a | 21 | #include "exec/helper-proto.h" |
1bccec25 | 22 | |
1bccec25 BS |
23 | #define QT0 (env->qt0) |
24 | #define QT1 (env->qt1) | |
25 | ||
c5f9864e | 26 | static void check_ieee_exceptions(CPUSPARCState *env) |
44516772 RH |
27 | { |
28 | target_ulong status; | |
29 | ||
30 | status = get_float_exception_flags(&env->fp_status); | |
31 | if (status) { | |
32 | /* Copy IEEE 754 flags into FSR */ | |
33 | if (status & float_flag_invalid) { | |
34 | env->fsr |= FSR_NVC; | |
35 | } | |
36 | if (status & float_flag_overflow) { | |
37 | env->fsr |= FSR_OFC; | |
38 | } | |
39 | if (status & float_flag_underflow) { | |
40 | env->fsr |= FSR_UFC; | |
41 | } | |
42 | if (status & float_flag_divbyzero) { | |
43 | env->fsr |= FSR_DZC; | |
44 | } | |
45 | if (status & float_flag_inexact) { | |
46 | env->fsr |= FSR_NXC; | |
47 | } | |
48 | ||
49 | if ((env->fsr & FSR_CEXC_MASK) & ((env->fsr & FSR_TEM_MASK) >> 23)) { | |
50 | /* Unmasked exception, generate a trap */ | |
51 | env->fsr |= FSR_FTT_IEEE_EXCP; | |
52 | helper_raise_exception(env, TT_FP_EXCP); | |
53 | } else { | |
54 | /* Accumulate exceptions */ | |
55 | env->fsr |= (env->fsr & FSR_CEXC_MASK) << 5; | |
56 | } | |
57 | } | |
58 | } | |
59 | ||
c5f9864e | 60 | static inline void clear_float_exceptions(CPUSPARCState *env) |
44516772 RH |
61 | { |
62 | set_float_exception_flags(0, &env->fp_status); | |
63 | } | |
64 | ||
c5f9864e | 65 | #define F_HELPER(name, p) void helper_f##name##p(CPUSPARCState *env) |
1bccec25 BS |
66 | |
67 | #define F_BINOP(name) \ | |
c5f9864e | 68 | float32 helper_f ## name ## s (CPUSPARCState *env, float32 src1, \ |
2e2f4ade | 69 | float32 src2) \ |
1bccec25 | 70 | { \ |
44516772 RH |
71 | float32 ret; \ |
72 | clear_float_exceptions(env); \ | |
73 | ret = float32_ ## name (src1, src2, &env->fp_status); \ | |
74 | check_ieee_exceptions(env); \ | |
75 | return ret; \ | |
1bccec25 | 76 | } \ |
c5f9864e | 77 | float64 helper_f ## name ## d (CPUSPARCState * env, float64 src1,\ |
03fb8cfc | 78 | float64 src2) \ |
1bccec25 | 79 | { \ |
44516772 RH |
80 | float64 ret; \ |
81 | clear_float_exceptions(env); \ | |
82 | ret = float64_ ## name (src1, src2, &env->fp_status); \ | |
83 | check_ieee_exceptions(env); \ | |
84 | return ret; \ | |
1bccec25 BS |
85 | } \ |
86 | F_HELPER(name, q) \ | |
87 | { \ | |
44516772 | 88 | clear_float_exceptions(env); \ |
1bccec25 | 89 | QT0 = float128_ ## name (QT0, QT1, &env->fp_status); \ |
44516772 | 90 | check_ieee_exceptions(env); \ |
1bccec25 BS |
91 | } |
92 | ||
93 | F_BINOP(add); | |
94 | F_BINOP(sub); | |
95 | F_BINOP(mul); | |
96 | F_BINOP(div); | |
97 | #undef F_BINOP | |
98 | ||
c5f9864e | 99 | float64 helper_fsmuld(CPUSPARCState *env, float32 src1, float32 src2) |
1bccec25 | 100 | { |
44516772 RH |
101 | float64 ret; |
102 | clear_float_exceptions(env); | |
103 | ret = float64_mul(float32_to_float64(src1, &env->fp_status), | |
104 | float32_to_float64(src2, &env->fp_status), | |
105 | &env->fp_status); | |
106 | check_ieee_exceptions(env); | |
107 | return ret; | |
1bccec25 BS |
108 | } |
109 | ||
c5f9864e | 110 | void helper_fdmulq(CPUSPARCState *env, float64 src1, float64 src2) |
1bccec25 | 111 | { |
44516772 | 112 | clear_float_exceptions(env); |
03fb8cfc RH |
113 | QT0 = float128_mul(float64_to_float128(src1, &env->fp_status), |
114 | float64_to_float128(src2, &env->fp_status), | |
1bccec25 | 115 | &env->fp_status); |
44516772 | 116 | check_ieee_exceptions(env); |
1bccec25 BS |
117 | } |
118 | ||
119 | float32 helper_fnegs(float32 src) | |
120 | { | |
121 | return float32_chs(src); | |
122 | } | |
123 | ||
124 | #ifdef TARGET_SPARC64 | |
03fb8cfc | 125 | float64 helper_fnegd(float64 src) |
1bccec25 | 126 | { |
03fb8cfc | 127 | return float64_chs(src); |
1bccec25 BS |
128 | } |
129 | ||
130 | F_HELPER(neg, q) | |
131 | { | |
132 | QT0 = float128_chs(QT1); | |
133 | } | |
134 | #endif | |
135 | ||
136 | /* Integer to float conversion. */ | |
c5f9864e | 137 | float32 helper_fitos(CPUSPARCState *env, int32_t src) |
1bccec25 | 138 | { |
44516772 RH |
139 | /* Inexact error possible converting int to float. */ |
140 | float32 ret; | |
141 | clear_float_exceptions(env); | |
142 | ret = int32_to_float32(src, &env->fp_status); | |
143 | check_ieee_exceptions(env); | |
144 | return ret; | |
1bccec25 BS |
145 | } |
146 | ||
c5f9864e | 147 | float64 helper_fitod(CPUSPARCState *env, int32_t src) |
1bccec25 | 148 | { |
44516772 | 149 | /* No possible exceptions converting int to double. */ |
03fb8cfc | 150 | return int32_to_float64(src, &env->fp_status); |
1bccec25 BS |
151 | } |
152 | ||
c5f9864e | 153 | void helper_fitoq(CPUSPARCState *env, int32_t src) |
1bccec25 | 154 | { |
44516772 | 155 | /* No possible exceptions converting int to long double. */ |
1bccec25 BS |
156 | QT0 = int32_to_float128(src, &env->fp_status); |
157 | } | |
158 | ||
159 | #ifdef TARGET_SPARC64 | |
c5f9864e | 160 | float32 helper_fxtos(CPUSPARCState *env, int64_t src) |
1bccec25 | 161 | { |
44516772 RH |
162 | float32 ret; |
163 | clear_float_exceptions(env); | |
164 | ret = int64_to_float32(src, &env->fp_status); | |
165 | check_ieee_exceptions(env); | |
166 | return ret; | |
1bccec25 BS |
167 | } |
168 | ||
c5f9864e | 169 | float64 helper_fxtod(CPUSPARCState *env, int64_t src) |
1bccec25 | 170 | { |
44516772 RH |
171 | float64 ret; |
172 | clear_float_exceptions(env); | |
173 | ret = int64_to_float64(src, &env->fp_status); | |
174 | check_ieee_exceptions(env); | |
175 | return ret; | |
1bccec25 BS |
176 | } |
177 | ||
c5f9864e | 178 | void helper_fxtoq(CPUSPARCState *env, int64_t src) |
1bccec25 | 179 | { |
44516772 | 180 | /* No possible exceptions converting long long to long double. */ |
03fb8cfc | 181 | QT0 = int64_to_float128(src, &env->fp_status); |
1bccec25 BS |
182 | } |
183 | #endif | |
184 | #undef F_HELPER | |
185 | ||
186 | /* floating point conversion */ | |
c5f9864e | 187 | float32 helper_fdtos(CPUSPARCState *env, float64 src) |
1bccec25 | 188 | { |
44516772 RH |
189 | float32 ret; |
190 | clear_float_exceptions(env); | |
191 | ret = float64_to_float32(src, &env->fp_status); | |
192 | check_ieee_exceptions(env); | |
193 | return ret; | |
1bccec25 BS |
194 | } |
195 | ||
c5f9864e | 196 | float64 helper_fstod(CPUSPARCState *env, float32 src) |
1bccec25 | 197 | { |
44516772 RH |
198 | float64 ret; |
199 | clear_float_exceptions(env); | |
200 | ret = float32_to_float64(src, &env->fp_status); | |
201 | check_ieee_exceptions(env); | |
202 | return ret; | |
1bccec25 BS |
203 | } |
204 | ||
c5f9864e | 205 | float32 helper_fqtos(CPUSPARCState *env) |
1bccec25 | 206 | { |
44516772 RH |
207 | float32 ret; |
208 | clear_float_exceptions(env); | |
209 | ret = float128_to_float32(QT1, &env->fp_status); | |
210 | check_ieee_exceptions(env); | |
211 | return ret; | |
1bccec25 BS |
212 | } |
213 | ||
c5f9864e | 214 | void helper_fstoq(CPUSPARCState *env, float32 src) |
1bccec25 | 215 | { |
44516772 | 216 | clear_float_exceptions(env); |
1bccec25 | 217 | QT0 = float32_to_float128(src, &env->fp_status); |
44516772 | 218 | check_ieee_exceptions(env); |
1bccec25 BS |
219 | } |
220 | ||
c5f9864e | 221 | float64 helper_fqtod(CPUSPARCState *env) |
1bccec25 | 222 | { |
44516772 RH |
223 | float64 ret; |
224 | clear_float_exceptions(env); | |
225 | ret = float128_to_float64(QT1, &env->fp_status); | |
226 | check_ieee_exceptions(env); | |
227 | return ret; | |
1bccec25 BS |
228 | } |
229 | ||
c5f9864e | 230 | void helper_fdtoq(CPUSPARCState *env, float64 src) |
1bccec25 | 231 | { |
44516772 | 232 | clear_float_exceptions(env); |
03fb8cfc | 233 | QT0 = float64_to_float128(src, &env->fp_status); |
44516772 | 234 | check_ieee_exceptions(env); |
1bccec25 BS |
235 | } |
236 | ||
237 | /* Float to integer conversion. */ | |
c5f9864e | 238 | int32_t helper_fstoi(CPUSPARCState *env, float32 src) |
1bccec25 | 239 | { |
44516772 RH |
240 | int32_t ret; |
241 | clear_float_exceptions(env); | |
242 | ret = float32_to_int32_round_to_zero(src, &env->fp_status); | |
243 | check_ieee_exceptions(env); | |
244 | return ret; | |
1bccec25 BS |
245 | } |
246 | ||
c5f9864e | 247 | int32_t helper_fdtoi(CPUSPARCState *env, float64 src) |
1bccec25 | 248 | { |
44516772 RH |
249 | int32_t ret; |
250 | clear_float_exceptions(env); | |
251 | ret = float64_to_int32_round_to_zero(src, &env->fp_status); | |
252 | check_ieee_exceptions(env); | |
253 | return ret; | |
1bccec25 BS |
254 | } |
255 | ||
c5f9864e | 256 | int32_t helper_fqtoi(CPUSPARCState *env) |
1bccec25 | 257 | { |
44516772 RH |
258 | int32_t ret; |
259 | clear_float_exceptions(env); | |
260 | ret = float128_to_int32_round_to_zero(QT1, &env->fp_status); | |
261 | check_ieee_exceptions(env); | |
262 | return ret; | |
1bccec25 BS |
263 | } |
264 | ||
265 | #ifdef TARGET_SPARC64 | |
c5f9864e | 266 | int64_t helper_fstox(CPUSPARCState *env, float32 src) |
1bccec25 | 267 | { |
44516772 RH |
268 | int64_t ret; |
269 | clear_float_exceptions(env); | |
270 | ret = float32_to_int64_round_to_zero(src, &env->fp_status); | |
271 | check_ieee_exceptions(env); | |
272 | return ret; | |
1bccec25 BS |
273 | } |
274 | ||
c5f9864e | 275 | int64_t helper_fdtox(CPUSPARCState *env, float64 src) |
1bccec25 | 276 | { |
44516772 RH |
277 | int64_t ret; |
278 | clear_float_exceptions(env); | |
279 | ret = float64_to_int64_round_to_zero(src, &env->fp_status); | |
280 | check_ieee_exceptions(env); | |
281 | return ret; | |
1bccec25 BS |
282 | } |
283 | ||
c5f9864e | 284 | int64_t helper_fqtox(CPUSPARCState *env) |
1bccec25 | 285 | { |
44516772 RH |
286 | int64_t ret; |
287 | clear_float_exceptions(env); | |
288 | ret = float128_to_int64_round_to_zero(QT1, &env->fp_status); | |
289 | check_ieee_exceptions(env); | |
290 | return ret; | |
1bccec25 BS |
291 | } |
292 | #endif | |
293 | ||
294 | float32 helper_fabss(float32 src) | |
295 | { | |
296 | return float32_abs(src); | |
297 | } | |
298 | ||
299 | #ifdef TARGET_SPARC64 | |
f027c3b1 | 300 | float64 helper_fabsd(float64 src) |
1bccec25 | 301 | { |
03fb8cfc | 302 | return float64_abs(src); |
1bccec25 BS |
303 | } |
304 | ||
c5f9864e | 305 | void helper_fabsq(CPUSPARCState *env) |
1bccec25 BS |
306 | { |
307 | QT0 = float128_abs(QT1); | |
308 | } | |
309 | #endif | |
310 | ||
c5f9864e | 311 | float32 helper_fsqrts(CPUSPARCState *env, float32 src) |
1bccec25 | 312 | { |
44516772 RH |
313 | float32 ret; |
314 | clear_float_exceptions(env); | |
315 | ret = float32_sqrt(src, &env->fp_status); | |
316 | check_ieee_exceptions(env); | |
317 | return ret; | |
1bccec25 BS |
318 | } |
319 | ||
c5f9864e | 320 | float64 helper_fsqrtd(CPUSPARCState *env, float64 src) |
1bccec25 | 321 | { |
44516772 RH |
322 | float64 ret; |
323 | clear_float_exceptions(env); | |
324 | ret = float64_sqrt(src, &env->fp_status); | |
325 | check_ieee_exceptions(env); | |
326 | return ret; | |
1bccec25 BS |
327 | } |
328 | ||
c5f9864e | 329 | void helper_fsqrtq(CPUSPARCState *env) |
1bccec25 | 330 | { |
44516772 | 331 | clear_float_exceptions(env); |
1bccec25 | 332 | QT0 = float128_sqrt(QT1, &env->fp_status); |
44516772 | 333 | check_ieee_exceptions(env); |
1bccec25 BS |
334 | } |
335 | ||
336 | #define GEN_FCMP(name, size, reg1, reg2, FS, E) \ | |
5acfc832 | 337 | void glue(helper_, name) (CPUSPARCState *env) \ |
1bccec25 | 338 | { \ |
5acfc832 AJ |
339 | int ret; \ |
340 | clear_float_exceptions(env); \ | |
341 | if (E) { \ | |
342 | ret = glue(size, _compare)(reg1, reg2, &env->fp_status); \ | |
343 | } else { \ | |
344 | ret = glue(size, _compare_quiet)(reg1, reg2, \ | |
345 | &env->fp_status); \ | |
1bccec25 | 346 | } \ |
5acfc832 AJ |
347 | check_ieee_exceptions(env); \ |
348 | switch (ret) { \ | |
1bccec25 | 349 | case float_relation_unordered: \ |
5acfc832 AJ |
350 | env->fsr |= (FSR_FCC1 | FSR_FCC0) << FS; \ |
351 | env->fsr |= FSR_NVA; \ | |
1bccec25 BS |
352 | break; \ |
353 | case float_relation_less: \ | |
5acfc832 | 354 | env->fsr &= ~(FSR_FCC1) << FS; \ |
1bccec25 BS |
355 | env->fsr |= FSR_FCC0 << FS; \ |
356 | break; \ | |
357 | case float_relation_greater: \ | |
5acfc832 | 358 | env->fsr &= ~(FSR_FCC0) << FS; \ |
1bccec25 BS |
359 | env->fsr |= FSR_FCC1 << FS; \ |
360 | break; \ | |
361 | default: \ | |
362 | env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \ | |
363 | break; \ | |
364 | } \ | |
365 | } | |
03fb8cfc | 366 | #define GEN_FCMP_T(name, size, FS, E) \ |
5acfc832 | 367 | void glue(helper_, name)(CPUSPARCState *env, size src1, size src2) \ |
1bccec25 | 368 | { \ |
5acfc832 AJ |
369 | int ret; \ |
370 | clear_float_exceptions(env); \ | |
371 | if (E) { \ | |
372 | ret = glue(size, _compare)(src1, src2, &env->fp_status); \ | |
373 | } else { \ | |
374 | ret = glue(size, _compare_quiet)(src1, src2, \ | |
375 | &env->fp_status); \ | |
1bccec25 | 376 | } \ |
5acfc832 AJ |
377 | check_ieee_exceptions(env); \ |
378 | switch (ret) { \ | |
1bccec25 | 379 | case float_relation_unordered: \ |
5acfc832 | 380 | env->fsr |= (FSR_FCC1 | FSR_FCC0) << FS; \ |
1bccec25 BS |
381 | break; \ |
382 | case float_relation_less: \ | |
5acfc832 | 383 | env->fsr &= ~(FSR_FCC1 << FS); \ |
1bccec25 BS |
384 | env->fsr |= FSR_FCC0 << FS; \ |
385 | break; \ | |
386 | case float_relation_greater: \ | |
5acfc832 | 387 | env->fsr &= ~(FSR_FCC0 << FS); \ |
1bccec25 BS |
388 | env->fsr |= FSR_FCC1 << FS; \ |
389 | break; \ | |
390 | default: \ | |
391 | env->fsr &= ~((FSR_FCC1 | FSR_FCC0) << FS); \ | |
392 | break; \ | |
393 | } \ | |
394 | } | |
395 | ||
03fb8cfc RH |
396 | GEN_FCMP_T(fcmps, float32, 0, 0); |
397 | GEN_FCMP_T(fcmpd, float64, 0, 0); | |
1bccec25 | 398 | |
03fb8cfc RH |
399 | GEN_FCMP_T(fcmpes, float32, 0, 1); |
400 | GEN_FCMP_T(fcmped, float64, 0, 1); | |
1bccec25 BS |
401 | |
402 | GEN_FCMP(fcmpq, float128, QT0, QT1, 0, 0); | |
403 | GEN_FCMP(fcmpeq, float128, QT0, QT1, 0, 1); | |
404 | ||
405 | #ifdef TARGET_SPARC64 | |
03fb8cfc RH |
406 | GEN_FCMP_T(fcmps_fcc1, float32, 22, 0); |
407 | GEN_FCMP_T(fcmpd_fcc1, float64, 22, 0); | |
1bccec25 BS |
408 | GEN_FCMP(fcmpq_fcc1, float128, QT0, QT1, 22, 0); |
409 | ||
03fb8cfc RH |
410 | GEN_FCMP_T(fcmps_fcc2, float32, 24, 0); |
411 | GEN_FCMP_T(fcmpd_fcc2, float64, 24, 0); | |
1bccec25 BS |
412 | GEN_FCMP(fcmpq_fcc2, float128, QT0, QT1, 24, 0); |
413 | ||
03fb8cfc RH |
414 | GEN_FCMP_T(fcmps_fcc3, float32, 26, 0); |
415 | GEN_FCMP_T(fcmpd_fcc3, float64, 26, 0); | |
1bccec25 BS |
416 | GEN_FCMP(fcmpq_fcc3, float128, QT0, QT1, 26, 0); |
417 | ||
03fb8cfc RH |
418 | GEN_FCMP_T(fcmpes_fcc1, float32, 22, 1); |
419 | GEN_FCMP_T(fcmped_fcc1, float64, 22, 1); | |
1bccec25 BS |
420 | GEN_FCMP(fcmpeq_fcc1, float128, QT0, QT1, 22, 1); |
421 | ||
03fb8cfc RH |
422 | GEN_FCMP_T(fcmpes_fcc2, float32, 24, 1); |
423 | GEN_FCMP_T(fcmped_fcc2, float64, 24, 1); | |
1bccec25 BS |
424 | GEN_FCMP(fcmpeq_fcc2, float128, QT0, QT1, 24, 1); |
425 | ||
03fb8cfc RH |
426 | GEN_FCMP_T(fcmpes_fcc3, float32, 26, 1); |
427 | GEN_FCMP_T(fcmped_fcc3, float64, 26, 1); | |
1bccec25 BS |
428 | GEN_FCMP(fcmpeq_fcc3, float128, QT0, QT1, 26, 1); |
429 | #endif | |
03fb8cfc RH |
430 | #undef GEN_FCMP_T |
431 | #undef GEN_FCMP | |
1bccec25 | 432 | |
c5f9864e | 433 | static inline void set_fsr(CPUSPARCState *env) |
1bccec25 BS |
434 | { |
435 | int rnd_mode; | |
436 | ||
437 | switch (env->fsr & FSR_RD_MASK) { | |
438 | case FSR_RD_NEAREST: | |
439 | rnd_mode = float_round_nearest_even; | |
440 | break; | |
441 | default: | |
442 | case FSR_RD_ZERO: | |
443 | rnd_mode = float_round_to_zero; | |
444 | break; | |
445 | case FSR_RD_POS: | |
446 | rnd_mode = float_round_up; | |
447 | break; | |
448 | case FSR_RD_NEG: | |
449 | rnd_mode = float_round_down; | |
450 | break; | |
451 | } | |
452 | set_float_rounding_mode(rnd_mode, &env->fp_status); | |
453 | } | |
454 | ||
c5f9864e | 455 | void helper_ldfsr(CPUSPARCState *env, uint32_t new_fsr) |
1bccec25 BS |
456 | { |
457 | env->fsr = (new_fsr & FSR_LDFSR_MASK) | (env->fsr & FSR_LDFSR_OLDMASK); | |
2e2f4ade | 458 | set_fsr(env); |
1bccec25 BS |
459 | } |
460 | ||
461 | #ifdef TARGET_SPARC64 | |
c5f9864e | 462 | void helper_ldxfsr(CPUSPARCState *env, uint64_t new_fsr) |
1bccec25 BS |
463 | { |
464 | env->fsr = (new_fsr & FSR_LDXFSR_MASK) | (env->fsr & FSR_LDXFSR_OLDMASK); | |
2e2f4ade | 465 | set_fsr(env); |
1bccec25 BS |
466 | } |
467 | #endif |