job.h: split function pointers in JobDriver
[qemu.git] / target / ppc / fpu_helper.c
blob8f970288f50eaa33553443969a270afee9492c86
1 /*
2 * PowerPC floating point and SPE emulation helpers for QEMU.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
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.1 of the License, or (at your option) any later version.
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.
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/>.
19 #include "qemu/osdep.h"
20 #include "cpu.h"
21 #include "exec/helper-proto.h"
22 #include "exec/exec-all.h"
23 #include "internal.h"
24 #include "fpu/softfloat.h"
26 static inline float128 float128_snan_to_qnan(float128 x)
28 float128 r;
30 r.high = x.high | 0x0000800000000000;
31 r.low = x.low;
32 return r;
35 #define float64_snan_to_qnan(x) ((x) | 0x0008000000000000ULL)
36 #define float32_snan_to_qnan(x) ((x) | 0x00400000)
37 #define float16_snan_to_qnan(x) ((x) | 0x0200)
39 static inline bool fp_exceptions_enabled(CPUPPCState *env)
41 #ifdef CONFIG_USER_ONLY
42 return true;
43 #else
44 return (env->msr & ((1U << MSR_FE0) | (1U << MSR_FE1))) != 0;
45 #endif
48 /*****************************************************************************/
49 /* Floating point operations helpers */
52 * This is the non-arithmatic conversion that happens e.g. on loads.
53 * In the Power ISA pseudocode, this is called DOUBLE.
55 uint64_t helper_todouble(uint32_t arg)
57 uint32_t abs_arg = arg & 0x7fffffff;
58 uint64_t ret;
60 if (likely(abs_arg >= 0x00800000)) {
61 if (unlikely(extract32(arg, 23, 8) == 0xff)) {
62 /* Inf or NAN. */
63 ret = (uint64_t)extract32(arg, 31, 1) << 63;
64 ret |= (uint64_t)0x7ff << 52;
65 ret |= (uint64_t)extract32(arg, 0, 23) << 29;
66 } else {
67 /* Normalized operand. */
68 ret = (uint64_t)extract32(arg, 30, 2) << 62;
69 ret |= ((extract32(arg, 30, 1) ^ 1) * (uint64_t)7) << 59;
70 ret |= (uint64_t)extract32(arg, 0, 30) << 29;
72 } else {
73 /* Zero or Denormalized operand. */
74 ret = (uint64_t)extract32(arg, 31, 1) << 63;
75 if (unlikely(abs_arg != 0)) {
77 * Denormalized operand.
78 * Shift fraction so that the msb is in the implicit bit position.
79 * Thus, shift is in the range [1:23].
81 int shift = clz32(abs_arg) - 8;
83 * The first 3 terms compute the float64 exponent. We then bias
84 * this result by -1 so that we can swallow the implicit bit below.
86 int exp = -126 - shift + 1023 - 1;
88 ret |= (uint64_t)exp << 52;
89 ret += (uint64_t)abs_arg << (52 - 23 + shift);
92 return ret;
96 * This is the non-arithmatic conversion that happens e.g. on stores.
97 * In the Power ISA pseudocode, this is called SINGLE.
99 uint32_t helper_tosingle(uint64_t arg)
101 int exp = extract64(arg, 52, 11);
102 uint32_t ret;
104 if (likely(exp > 896)) {
105 /* No denormalization required (includes Inf, NaN). */
106 ret = extract64(arg, 62, 2) << 30;
107 ret |= extract64(arg, 29, 30);
108 } else {
110 * Zero or Denormal result. If the exponent is in bounds for
111 * a single-precision denormal result, extract the proper
112 * bits. If the input is not zero, and the exponent is out of
113 * bounds, then the result is undefined; this underflows to
114 * zero.
116 ret = extract64(arg, 63, 1) << 31;
117 if (unlikely(exp >= 874)) {
118 /* Denormal result. */
119 ret |= ((1ULL << 52) | extract64(arg, 0, 52)) >> (896 + 30 - exp);
122 return ret;
125 static inline int ppc_float32_get_unbiased_exp(float32 f)
127 return ((f >> 23) & 0xFF) - 127;
130 static inline int ppc_float64_get_unbiased_exp(float64 f)
132 return ((f >> 52) & 0x7FF) - 1023;
135 /* Classify a floating-point number. */
136 enum {
137 is_normal = 1,
138 is_zero = 2,
139 is_denormal = 4,
140 is_inf = 8,
141 is_qnan = 16,
142 is_snan = 32,
143 is_neg = 64,
146 #define COMPUTE_CLASS(tp) \
147 static int tp##_classify(tp arg) \
149 int ret = tp##_is_neg(arg) * is_neg; \
150 if (unlikely(tp##_is_any_nan(arg))) { \
151 float_status dummy = { }; /* snan_bit_is_one = 0 */ \
152 ret |= (tp##_is_signaling_nan(arg, &dummy) \
153 ? is_snan : is_qnan); \
154 } else if (unlikely(tp##_is_infinity(arg))) { \
155 ret |= is_inf; \
156 } else if (tp##_is_zero(arg)) { \
157 ret |= is_zero; \
158 } else if (tp##_is_zero_or_denormal(arg)) { \
159 ret |= is_denormal; \
160 } else { \
161 ret |= is_normal; \
163 return ret; \
166 COMPUTE_CLASS(float16)
167 COMPUTE_CLASS(float32)
168 COMPUTE_CLASS(float64)
169 COMPUTE_CLASS(float128)
171 static void set_fprf_from_class(CPUPPCState *env, int class)
173 static const uint8_t fprf[6][2] = {
174 { 0x04, 0x08 }, /* normalized */
175 { 0x02, 0x12 }, /* zero */
176 { 0x14, 0x18 }, /* denormalized */
177 { 0x05, 0x09 }, /* infinity */
178 { 0x11, 0x11 }, /* qnan */
179 { 0x00, 0x00 }, /* snan -- flags are undefined */
181 bool isneg = class & is_neg;
183 env->fpscr &= ~FP_FPRF;
184 env->fpscr |= fprf[ctz32(class)][isneg] << FPSCR_FPRF;
187 #define COMPUTE_FPRF(tp) \
188 void helper_compute_fprf_##tp(CPUPPCState *env, tp arg) \
190 set_fprf_from_class(env, tp##_classify(arg)); \
193 COMPUTE_FPRF(float16)
194 COMPUTE_FPRF(float32)
195 COMPUTE_FPRF(float64)
196 COMPUTE_FPRF(float128)
198 /* Floating-point invalid operations exception */
199 static void finish_invalid_op_excp(CPUPPCState *env, int op, uintptr_t retaddr)
201 /* Update the floating-point invalid operation summary */
202 env->fpscr |= FP_VX;
203 /* Update the floating-point exception summary */
204 env->fpscr |= FP_FX;
205 if (fpscr_ve != 0) {
206 /* Update the floating-point enabled exception summary */
207 env->fpscr |= FP_FEX;
208 if (fp_exceptions_enabled(env)) {
209 raise_exception_err_ra(env, POWERPC_EXCP_PROGRAM,
210 POWERPC_EXCP_FP | op, retaddr);
215 static void finish_invalid_op_arith(CPUPPCState *env, int op,
216 bool set_fpcc, uintptr_t retaddr)
218 env->fpscr &= ~(FP_FR | FP_FI);
219 if (fpscr_ve == 0) {
220 if (set_fpcc) {
221 env->fpscr &= ~FP_FPCC;
222 env->fpscr |= (FP_C | FP_FU);
225 finish_invalid_op_excp(env, op, retaddr);
228 /* Signalling NaN */
229 static void float_invalid_op_vxsnan(CPUPPCState *env, uintptr_t retaddr)
231 env->fpscr |= FP_VXSNAN;
232 finish_invalid_op_excp(env, POWERPC_EXCP_FP_VXSNAN, retaddr);
235 /* Magnitude subtraction of infinities */
236 static void float_invalid_op_vxisi(CPUPPCState *env, bool set_fpcc,
237 uintptr_t retaddr)
239 env->fpscr |= FP_VXISI;
240 finish_invalid_op_arith(env, POWERPC_EXCP_FP_VXISI, set_fpcc, retaddr);
243 /* Division of infinity by infinity */
244 static void float_invalid_op_vxidi(CPUPPCState *env, bool set_fpcc,
245 uintptr_t retaddr)
247 env->fpscr |= FP_VXIDI;
248 finish_invalid_op_arith(env, POWERPC_EXCP_FP_VXIDI, set_fpcc, retaddr);
251 /* Division of zero by zero */
252 static void float_invalid_op_vxzdz(CPUPPCState *env, bool set_fpcc,
253 uintptr_t retaddr)
255 env->fpscr |= FP_VXZDZ;
256 finish_invalid_op_arith(env, POWERPC_EXCP_FP_VXZDZ, set_fpcc, retaddr);
259 /* Multiplication of zero by infinity */
260 static void float_invalid_op_vximz(CPUPPCState *env, bool set_fpcc,
261 uintptr_t retaddr)
263 env->fpscr |= FP_VXIMZ;
264 finish_invalid_op_arith(env, POWERPC_EXCP_FP_VXIMZ, set_fpcc, retaddr);
267 /* Square root of a negative number */
268 static void float_invalid_op_vxsqrt(CPUPPCState *env, bool set_fpcc,
269 uintptr_t retaddr)
271 env->fpscr |= FP_VXSQRT;
272 finish_invalid_op_arith(env, POWERPC_EXCP_FP_VXSQRT, set_fpcc, retaddr);
275 /* Ordered comparison of NaN */
276 static void float_invalid_op_vxvc(CPUPPCState *env, bool set_fpcc,
277 uintptr_t retaddr)
279 env->fpscr |= FP_VXVC;
280 if (set_fpcc) {
281 env->fpscr &= ~FP_FPCC;
282 env->fpscr |= (FP_C | FP_FU);
284 /* Update the floating-point invalid operation summary */
285 env->fpscr |= FP_VX;
286 /* Update the floating-point exception summary */
287 env->fpscr |= FP_FX;
288 /* We must update the target FPR before raising the exception */
289 if (fpscr_ve != 0) {
290 CPUState *cs = env_cpu(env);
292 cs->exception_index = POWERPC_EXCP_PROGRAM;
293 env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_VXVC;
294 /* Update the floating-point enabled exception summary */
295 env->fpscr |= FP_FEX;
296 /* Exception is deferred */
300 /* Invalid conversion */
301 static void float_invalid_op_vxcvi(CPUPPCState *env, bool set_fpcc,
302 uintptr_t retaddr)
304 env->fpscr |= FP_VXCVI;
305 env->fpscr &= ~(FP_FR | FP_FI);
306 if (fpscr_ve == 0) {
307 if (set_fpcc) {
308 env->fpscr &= ~FP_FPCC;
309 env->fpscr |= (FP_C | FP_FU);
312 finish_invalid_op_excp(env, POWERPC_EXCP_FP_VXCVI, retaddr);
315 static inline void float_zero_divide_excp(CPUPPCState *env, uintptr_t raddr)
317 env->fpscr |= FP_ZX;
318 env->fpscr &= ~(FP_FR | FP_FI);
319 /* Update the floating-point exception summary */
320 env->fpscr |= FP_FX;
321 if (fpscr_ze != 0) {
322 /* Update the floating-point enabled exception summary */
323 env->fpscr |= FP_FEX;
324 if (fp_exceptions_enabled(env)) {
325 raise_exception_err_ra(env, POWERPC_EXCP_PROGRAM,
326 POWERPC_EXCP_FP | POWERPC_EXCP_FP_ZX,
327 raddr);
332 static inline void float_overflow_excp(CPUPPCState *env)
334 CPUState *cs = env_cpu(env);
336 env->fpscr |= FP_OX;
337 /* Update the floating-point exception summary */
338 env->fpscr |= FP_FX;
339 if (fpscr_oe != 0) {
340 /* XXX: should adjust the result */
341 /* Update the floating-point enabled exception summary */
342 env->fpscr |= FP_FEX;
343 /* We must update the target FPR before raising the exception */
344 cs->exception_index = POWERPC_EXCP_PROGRAM;
345 env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_OX;
346 } else {
347 env->fpscr |= FP_XX;
348 env->fpscr |= FP_FI;
352 static inline void float_underflow_excp(CPUPPCState *env)
354 CPUState *cs = env_cpu(env);
356 env->fpscr |= FP_UX;
357 /* Update the floating-point exception summary */
358 env->fpscr |= FP_FX;
359 if (fpscr_ue != 0) {
360 /* XXX: should adjust the result */
361 /* Update the floating-point enabled exception summary */
362 env->fpscr |= FP_FEX;
363 /* We must update the target FPR before raising the exception */
364 cs->exception_index = POWERPC_EXCP_PROGRAM;
365 env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_UX;
369 static inline void float_inexact_excp(CPUPPCState *env)
371 CPUState *cs = env_cpu(env);
373 env->fpscr |= FP_FI;
374 env->fpscr |= FP_XX;
375 /* Update the floating-point exception summary */
376 env->fpscr |= FP_FX;
377 if (fpscr_xe != 0) {
378 /* Update the floating-point enabled exception summary */
379 env->fpscr |= FP_FEX;
380 /* We must update the target FPR before raising the exception */
381 cs->exception_index = POWERPC_EXCP_PROGRAM;
382 env->error_code = POWERPC_EXCP_FP | POWERPC_EXCP_FP_XX;
386 void helper_fpscr_clrbit(CPUPPCState *env, uint32_t bit)
388 uint32_t mask = 1u << bit;
389 if (env->fpscr & mask) {
390 ppc_store_fpscr(env, env->fpscr & ~(target_ulong)mask);
394 void helper_fpscr_setbit(CPUPPCState *env, uint32_t bit)
396 uint32_t mask = 1u << bit;
397 if (!(env->fpscr & mask)) {
398 ppc_store_fpscr(env, env->fpscr | mask);
402 void helper_store_fpscr(CPUPPCState *env, uint64_t val, uint32_t nibbles)
404 target_ulong mask = 0;
405 int i;
407 /* TODO: push this extension back to translation time */
408 for (i = 0; i < sizeof(target_ulong) * 2; i++) {
409 if (nibbles & (1 << i)) {
410 mask |= (target_ulong) 0xf << (4 * i);
413 val = (val & mask) | (env->fpscr & ~mask);
414 ppc_store_fpscr(env, val);
417 void helper_fpscr_check_status(CPUPPCState *env)
419 CPUState *cs = env_cpu(env);
420 target_ulong fpscr = env->fpscr;
421 int error = 0;
423 if ((fpscr & FP_OX) && (fpscr & FP_OE)) {
424 error = POWERPC_EXCP_FP_OX;
425 } else if ((fpscr & FP_UX) && (fpscr & FP_UE)) {
426 error = POWERPC_EXCP_FP_UX;
427 } else if ((fpscr & FP_XX) && (fpscr & FP_XE)) {
428 error = POWERPC_EXCP_FP_XX;
429 } else if ((fpscr & FP_ZX) && (fpscr & FP_ZE)) {
430 error = POWERPC_EXCP_FP_ZX;
431 } else if (fpscr & FP_VE) {
432 if (fpscr & FP_VXSOFT) {
433 error = POWERPC_EXCP_FP_VXSOFT;
434 } else if (fpscr & FP_VXSNAN) {
435 error = POWERPC_EXCP_FP_VXSNAN;
436 } else if (fpscr & FP_VXISI) {
437 error = POWERPC_EXCP_FP_VXISI;
438 } else if (fpscr & FP_VXIDI) {
439 error = POWERPC_EXCP_FP_VXIDI;
440 } else if (fpscr & FP_VXZDZ) {
441 error = POWERPC_EXCP_FP_VXZDZ;
442 } else if (fpscr & FP_VXIMZ) {
443 error = POWERPC_EXCP_FP_VXIMZ;
444 } else if (fpscr & FP_VXVC) {
445 error = POWERPC_EXCP_FP_VXVC;
446 } else if (fpscr & FP_VXSQRT) {
447 error = POWERPC_EXCP_FP_VXSQRT;
448 } else if (fpscr & FP_VXCVI) {
449 error = POWERPC_EXCP_FP_VXCVI;
450 } else {
451 return;
453 } else {
454 return;
456 cs->exception_index = POWERPC_EXCP_PROGRAM;
457 env->error_code = error | POWERPC_EXCP_FP;
458 /* Deferred floating-point exception after target FPSCR update */
459 if (fp_exceptions_enabled(env)) {
460 raise_exception_err_ra(env, cs->exception_index,
461 env->error_code, GETPC());
465 static void do_float_check_status(CPUPPCState *env, uintptr_t raddr)
467 CPUState *cs = env_cpu(env);
468 int status = get_float_exception_flags(&env->fp_status);
470 if (status & float_flag_overflow) {
471 float_overflow_excp(env);
472 } else if (status & float_flag_underflow) {
473 float_underflow_excp(env);
475 if (status & float_flag_inexact) {
476 float_inexact_excp(env);
477 } else {
478 env->fpscr &= ~FP_FI; /* clear the FPSCR[FI] bit */
481 if (cs->exception_index == POWERPC_EXCP_PROGRAM &&
482 (env->error_code & POWERPC_EXCP_FP)) {
483 /* Deferred floating-point exception after target FPR update */
484 if (fp_exceptions_enabled(env)) {
485 raise_exception_err_ra(env, cs->exception_index,
486 env->error_code, raddr);
491 void helper_float_check_status(CPUPPCState *env)
493 do_float_check_status(env, GETPC());
496 void helper_reset_fpstatus(CPUPPCState *env)
498 set_float_exception_flags(0, &env->fp_status);
501 static void float_invalid_op_addsub(CPUPPCState *env, int flags,
502 bool set_fpcc, uintptr_t retaddr)
504 if (flags & float_flag_invalid_isi) {
505 float_invalid_op_vxisi(env, set_fpcc, retaddr);
506 } else if (flags & float_flag_invalid_snan) {
507 float_invalid_op_vxsnan(env, retaddr);
511 /* fadd - fadd. */
512 float64 helper_fadd(CPUPPCState *env, float64 arg1, float64 arg2)
514 float64 ret = float64_add(arg1, arg2, &env->fp_status);
515 int flags = get_float_exception_flags(&env->fp_status);
517 if (unlikely(flags & float_flag_invalid)) {
518 float_invalid_op_addsub(env, flags, 1, GETPC());
521 return ret;
524 /* fadds - fadds. */
525 float64 helper_fadds(CPUPPCState *env, float64 arg1, float64 arg2)
527 float64 ret = float64r32_add(arg1, arg2, &env->fp_status);
528 int flags = get_float_exception_flags(&env->fp_status);
530 if (unlikely(flags & float_flag_invalid)) {
531 float_invalid_op_addsub(env, flags, 1, GETPC());
533 return ret;
536 /* fsub - fsub. */
537 float64 helper_fsub(CPUPPCState *env, float64 arg1, float64 arg2)
539 float64 ret = float64_sub(arg1, arg2, &env->fp_status);
540 int flags = get_float_exception_flags(&env->fp_status);
542 if (unlikely(flags & float_flag_invalid)) {
543 float_invalid_op_addsub(env, flags, 1, GETPC());
546 return ret;
549 /* fsubs - fsubs. */
550 float64 helper_fsubs(CPUPPCState *env, float64 arg1, float64 arg2)
552 float64 ret = float64r32_sub(arg1, arg2, &env->fp_status);
553 int flags = get_float_exception_flags(&env->fp_status);
555 if (unlikely(flags & float_flag_invalid)) {
556 float_invalid_op_addsub(env, flags, 1, GETPC());
558 return ret;
561 static void float_invalid_op_mul(CPUPPCState *env, int flags,
562 bool set_fprc, uintptr_t retaddr)
564 if (flags & float_flag_invalid_imz) {
565 float_invalid_op_vximz(env, set_fprc, retaddr);
566 } else if (flags & float_flag_invalid_snan) {
567 float_invalid_op_vxsnan(env, retaddr);
571 /* fmul - fmul. */
572 float64 helper_fmul(CPUPPCState *env, float64 arg1, float64 arg2)
574 float64 ret = float64_mul(arg1, arg2, &env->fp_status);
575 int flags = get_float_exception_flags(&env->fp_status);
577 if (unlikely(flags & float_flag_invalid)) {
578 float_invalid_op_mul(env, flags, 1, GETPC());
581 return ret;
584 /* fmuls - fmuls. */
585 float64 helper_fmuls(CPUPPCState *env, float64 arg1, float64 arg2)
587 float64 ret = float64r32_mul(arg1, arg2, &env->fp_status);
588 int flags = get_float_exception_flags(&env->fp_status);
590 if (unlikely(flags & float_flag_invalid)) {
591 float_invalid_op_mul(env, flags, 1, GETPC());
593 return ret;
596 static void float_invalid_op_div(CPUPPCState *env, int flags,
597 bool set_fprc, uintptr_t retaddr)
599 if (flags & float_flag_invalid_idi) {
600 float_invalid_op_vxidi(env, set_fprc, retaddr);
601 } else if (flags & float_flag_invalid_zdz) {
602 float_invalid_op_vxzdz(env, set_fprc, retaddr);
603 } else if (flags & float_flag_invalid_snan) {
604 float_invalid_op_vxsnan(env, retaddr);
608 /* fdiv - fdiv. */
609 float64 helper_fdiv(CPUPPCState *env, float64 arg1, float64 arg2)
611 float64 ret = float64_div(arg1, arg2, &env->fp_status);
612 int flags = get_float_exception_flags(&env->fp_status);
614 if (unlikely(flags & float_flag_invalid)) {
615 float_invalid_op_div(env, flags, 1, GETPC());
617 if (unlikely(flags & float_flag_divbyzero)) {
618 float_zero_divide_excp(env, GETPC());
621 return ret;
624 /* fdivs - fdivs. */
625 float64 helper_fdivs(CPUPPCState *env, float64 arg1, float64 arg2)
627 float64 ret = float64r32_div(arg1, arg2, &env->fp_status);
628 int flags = get_float_exception_flags(&env->fp_status);
630 if (unlikely(flags & float_flag_invalid)) {
631 float_invalid_op_div(env, flags, 1, GETPC());
633 if (unlikely(flags & float_flag_divbyzero)) {
634 float_zero_divide_excp(env, GETPC());
637 return ret;
640 static uint64_t float_invalid_cvt(CPUPPCState *env, int flags,
641 uint64_t ret, uint64_t ret_nan,
642 bool set_fprc, uintptr_t retaddr)
645 * VXCVI is different from most in that it sets two exception bits,
646 * VXCVI and VXSNAN for an SNaN input.
648 if (flags & float_flag_invalid_snan) {
649 env->fpscr |= FP_VXSNAN;
651 float_invalid_op_vxcvi(env, set_fprc, retaddr);
653 return flags & float_flag_invalid_cvti ? ret : ret_nan;
656 #define FPU_FCTI(op, cvt, nanval) \
657 uint64_t helper_##op(CPUPPCState *env, float64 arg) \
659 uint64_t ret = float64_to_##cvt(arg, &env->fp_status); \
660 int flags = get_float_exception_flags(&env->fp_status); \
661 if (unlikely(flags & float_flag_invalid)) { \
662 ret = float_invalid_cvt(env, flags, ret, nanval, 1, GETPC()); \
664 return ret; \
667 FPU_FCTI(fctiw, int32, 0x80000000U)
668 FPU_FCTI(fctiwz, int32_round_to_zero, 0x80000000U)
669 FPU_FCTI(fctiwu, uint32, 0x00000000U)
670 FPU_FCTI(fctiwuz, uint32_round_to_zero, 0x00000000U)
671 FPU_FCTI(fctid, int64, 0x8000000000000000ULL)
672 FPU_FCTI(fctidz, int64_round_to_zero, 0x8000000000000000ULL)
673 FPU_FCTI(fctidu, uint64, 0x0000000000000000ULL)
674 FPU_FCTI(fctiduz, uint64_round_to_zero, 0x0000000000000000ULL)
676 #define FPU_FCFI(op, cvtr, is_single) \
677 uint64_t helper_##op(CPUPPCState *env, uint64_t arg) \
679 CPU_DoubleU farg; \
681 if (is_single) { \
682 float32 tmp = cvtr(arg, &env->fp_status); \
683 farg.d = float32_to_float64(tmp, &env->fp_status); \
684 } else { \
685 farg.d = cvtr(arg, &env->fp_status); \
687 do_float_check_status(env, GETPC()); \
688 return farg.ll; \
691 FPU_FCFI(fcfid, int64_to_float64, 0)
692 FPU_FCFI(fcfids, int64_to_float32, 1)
693 FPU_FCFI(fcfidu, uint64_to_float64, 0)
694 FPU_FCFI(fcfidus, uint64_to_float32, 1)
696 static uint64_t do_fri(CPUPPCState *env, uint64_t arg,
697 FloatRoundMode rounding_mode)
699 FloatRoundMode old_rounding_mode = get_float_rounding_mode(&env->fp_status);
700 int flags;
702 set_float_rounding_mode(rounding_mode, &env->fp_status);
703 arg = float64_round_to_int(arg, &env->fp_status);
704 set_float_rounding_mode(old_rounding_mode, &env->fp_status);
706 flags = get_float_exception_flags(&env->fp_status);
707 if (flags & float_flag_invalid_snan) {
708 float_invalid_op_vxsnan(env, GETPC());
711 /* fri* does not set FPSCR[XX] */
712 set_float_exception_flags(flags & ~float_flag_inexact, &env->fp_status);
713 do_float_check_status(env, GETPC());
715 return arg;
718 uint64_t helper_frin(CPUPPCState *env, uint64_t arg)
720 return do_fri(env, arg, float_round_ties_away);
723 uint64_t helper_friz(CPUPPCState *env, uint64_t arg)
725 return do_fri(env, arg, float_round_to_zero);
728 uint64_t helper_frip(CPUPPCState *env, uint64_t arg)
730 return do_fri(env, arg, float_round_up);
733 uint64_t helper_frim(CPUPPCState *env, uint64_t arg)
735 return do_fri(env, arg, float_round_down);
738 static void float_invalid_op_madd(CPUPPCState *env, int flags,
739 bool set_fpcc, uintptr_t retaddr)
741 if (flags & float_flag_invalid_imz) {
742 float_invalid_op_vximz(env, set_fpcc, retaddr);
743 } else {
744 float_invalid_op_addsub(env, flags, set_fpcc, retaddr);
748 static float64 do_fmadd(CPUPPCState *env, float64 a, float64 b,
749 float64 c, int madd_flags, uintptr_t retaddr)
751 float64 ret = float64_muladd(a, b, c, madd_flags, &env->fp_status);
752 int flags = get_float_exception_flags(&env->fp_status);
754 if (unlikely(flags & float_flag_invalid)) {
755 float_invalid_op_madd(env, flags, 1, retaddr);
757 return ret;
760 static uint64_t do_fmadds(CPUPPCState *env, float64 a, float64 b,
761 float64 c, int madd_flags, uintptr_t retaddr)
763 float64 ret = float64r32_muladd(a, b, c, madd_flags, &env->fp_status);
764 int flags = get_float_exception_flags(&env->fp_status);
766 if (unlikely(flags & float_flag_invalid)) {
767 float_invalid_op_madd(env, flags, 1, retaddr);
769 return ret;
772 #define FPU_FMADD(op, madd_flags) \
773 uint64_t helper_##op(CPUPPCState *env, uint64_t arg1, \
774 uint64_t arg2, uint64_t arg3) \
775 { return do_fmadd(env, arg1, arg2, arg3, madd_flags, GETPC()); } \
776 uint64_t helper_##op##s(CPUPPCState *env, uint64_t arg1, \
777 uint64_t arg2, uint64_t arg3) \
778 { return do_fmadds(env, arg1, arg2, arg3, madd_flags, GETPC()); }
780 #define MADD_FLGS 0
781 #define MSUB_FLGS float_muladd_negate_c
782 #define NMADD_FLGS float_muladd_negate_result
783 #define NMSUB_FLGS (float_muladd_negate_c | float_muladd_negate_result)
785 FPU_FMADD(fmadd, MADD_FLGS)
786 FPU_FMADD(fnmadd, NMADD_FLGS)
787 FPU_FMADD(fmsub, MSUB_FLGS)
788 FPU_FMADD(fnmsub, NMSUB_FLGS)
790 /* frsp - frsp. */
791 static uint64_t do_frsp(CPUPPCState *env, uint64_t arg, uintptr_t retaddr)
793 float32 f32 = float64_to_float32(arg, &env->fp_status);
794 int flags = get_float_exception_flags(&env->fp_status);
796 if (unlikely(flags & float_flag_invalid_snan)) {
797 float_invalid_op_vxsnan(env, retaddr);
799 return helper_todouble(f32);
802 uint64_t helper_frsp(CPUPPCState *env, uint64_t arg)
804 return do_frsp(env, arg, GETPC());
807 static void float_invalid_op_sqrt(CPUPPCState *env, int flags,
808 bool set_fpcc, uintptr_t retaddr)
810 if (unlikely(flags & float_flag_invalid_sqrt)) {
811 float_invalid_op_vxsqrt(env, set_fpcc, retaddr);
812 } else if (unlikely(flags & float_flag_invalid_snan)) {
813 float_invalid_op_vxsnan(env, retaddr);
817 /* fsqrt - fsqrt. */
818 float64 helper_fsqrt(CPUPPCState *env, float64 arg)
820 float64 ret = float64_sqrt(arg, &env->fp_status);
821 int flags = get_float_exception_flags(&env->fp_status);
823 if (unlikely(flags & float_flag_invalid)) {
824 float_invalid_op_sqrt(env, flags, 1, GETPC());
827 return ret;
830 /* fsqrts - fsqrts. */
831 float64 helper_fsqrts(CPUPPCState *env, float64 arg)
833 float64 ret = float64r32_sqrt(arg, &env->fp_status);
834 int flags = get_float_exception_flags(&env->fp_status);
836 if (unlikely(flags & float_flag_invalid)) {
837 float_invalid_op_sqrt(env, flags, 1, GETPC());
839 return ret;
842 /* fre - fre. */
843 float64 helper_fre(CPUPPCState *env, float64 arg)
845 /* "Estimate" the reciprocal with actual division. */
846 float64 ret = float64_div(float64_one, arg, &env->fp_status);
847 int flags = get_float_exception_flags(&env->fp_status);
849 if (unlikely(flags & float_flag_invalid_snan)) {
850 float_invalid_op_vxsnan(env, GETPC());
852 if (unlikely(flags & float_flag_divbyzero)) {
853 float_zero_divide_excp(env, GETPC());
854 /* For FPSCR.ZE == 0, the result is 1/2. */
855 ret = float64_set_sign(float64_half, float64_is_neg(arg));
858 return ret;
861 /* fres - fres. */
862 uint64_t helper_fres(CPUPPCState *env, uint64_t arg)
864 /* "Estimate" the reciprocal with actual division. */
865 float64 ret = float64r32_div(float64_one, arg, &env->fp_status);
866 int flags = get_float_exception_flags(&env->fp_status);
868 if (unlikely(flags & float_flag_invalid_snan)) {
869 float_invalid_op_vxsnan(env, GETPC());
871 if (unlikely(flags & float_flag_divbyzero)) {
872 float_zero_divide_excp(env, GETPC());
873 /* For FPSCR.ZE == 0, the result is 1/2. */
874 ret = float64_set_sign(float64_half, float64_is_neg(arg));
877 return ret;
880 /* frsqrte - frsqrte. */
881 float64 helper_frsqrte(CPUPPCState *env, float64 arg)
883 /* "Estimate" the reciprocal with actual division. */
884 float64 rets = float64_sqrt(arg, &env->fp_status);
885 float64 retd = float64_div(float64_one, rets, &env->fp_status);
886 int flags = get_float_exception_flags(&env->fp_status);
888 if (unlikely(flags & float_flag_invalid)) {
889 float_invalid_op_sqrt(env, flags, 1, GETPC());
891 if (unlikely(flags & float_flag_divbyzero)) {
892 /* Reciprocal of (square root of) zero. */
893 float_zero_divide_excp(env, GETPC());
896 return retd;
899 /* frsqrtes - frsqrtes. */
900 float64 helper_frsqrtes(CPUPPCState *env, float64 arg)
902 /* "Estimate" the reciprocal with actual division. */
903 float64 rets = float64_sqrt(arg, &env->fp_status);
904 float64 retd = float64r32_div(float64_one, rets, &env->fp_status);
905 int flags = get_float_exception_flags(&env->fp_status);
907 if (unlikely(flags & float_flag_invalid)) {
908 float_invalid_op_sqrt(env, flags, 1, GETPC());
910 if (unlikely(flags & float_flag_divbyzero)) {
911 /* Reciprocal of (square root of) zero. */
912 float_zero_divide_excp(env, GETPC());
915 return retd;
918 /* fsel - fsel. */
919 uint64_t helper_fsel(CPUPPCState *env, uint64_t arg1, uint64_t arg2,
920 uint64_t arg3)
922 CPU_DoubleU farg1;
924 farg1.ll = arg1;
926 if ((!float64_is_neg(farg1.d) || float64_is_zero(farg1.d)) &&
927 !float64_is_any_nan(farg1.d)) {
928 return arg2;
929 } else {
930 return arg3;
934 uint32_t helper_ftdiv(uint64_t fra, uint64_t frb)
936 int fe_flag = 0;
937 int fg_flag = 0;
939 if (unlikely(float64_is_infinity(fra) ||
940 float64_is_infinity(frb) ||
941 float64_is_zero(frb))) {
942 fe_flag = 1;
943 fg_flag = 1;
944 } else {
945 int e_a = ppc_float64_get_unbiased_exp(fra);
946 int e_b = ppc_float64_get_unbiased_exp(frb);
948 if (unlikely(float64_is_any_nan(fra) ||
949 float64_is_any_nan(frb))) {
950 fe_flag = 1;
951 } else if ((e_b <= -1022) || (e_b >= 1021)) {
952 fe_flag = 1;
953 } else if (!float64_is_zero(fra) &&
954 (((e_a - e_b) >= 1023) ||
955 ((e_a - e_b) <= -1021) ||
956 (e_a <= -970))) {
957 fe_flag = 1;
960 if (unlikely(float64_is_zero_or_denormal(frb))) {
961 /* XB is not zero because of the above check and */
962 /* so must be denormalized. */
963 fg_flag = 1;
967 return 0x8 | (fg_flag ? 4 : 0) | (fe_flag ? 2 : 0);
970 uint32_t helper_ftsqrt(uint64_t frb)
972 int fe_flag = 0;
973 int fg_flag = 0;
975 if (unlikely(float64_is_infinity(frb) || float64_is_zero(frb))) {
976 fe_flag = 1;
977 fg_flag = 1;
978 } else {
979 int e_b = ppc_float64_get_unbiased_exp(frb);
981 if (unlikely(float64_is_any_nan(frb))) {
982 fe_flag = 1;
983 } else if (unlikely(float64_is_zero(frb))) {
984 fe_flag = 1;
985 } else if (unlikely(float64_is_neg(frb))) {
986 fe_flag = 1;
987 } else if (!float64_is_zero(frb) && (e_b <= (-1022 + 52))) {
988 fe_flag = 1;
991 if (unlikely(float64_is_zero_or_denormal(frb))) {
992 /* XB is not zero because of the above check and */
993 /* therefore must be denormalized. */
994 fg_flag = 1;
998 return 0x8 | (fg_flag ? 4 : 0) | (fe_flag ? 2 : 0);
1001 void helper_fcmpu(CPUPPCState *env, uint64_t arg1, uint64_t arg2,
1002 uint32_t crfD)
1004 CPU_DoubleU farg1, farg2;
1005 uint32_t ret = 0;
1007 farg1.ll = arg1;
1008 farg2.ll = arg2;
1010 if (unlikely(float64_is_any_nan(farg1.d) ||
1011 float64_is_any_nan(farg2.d))) {
1012 ret = 0x01UL;
1013 } else if (float64_lt(farg1.d, farg2.d, &env->fp_status)) {
1014 ret = 0x08UL;
1015 } else if (!float64_le(farg1.d, farg2.d, &env->fp_status)) {
1016 ret = 0x04UL;
1017 } else {
1018 ret = 0x02UL;
1021 env->fpscr &= ~FP_FPCC;
1022 env->fpscr |= ret << FPSCR_FPCC;
1023 env->crf[crfD] = ret;
1024 if (unlikely(ret == 0x01UL
1025 && (float64_is_signaling_nan(farg1.d, &env->fp_status) ||
1026 float64_is_signaling_nan(farg2.d, &env->fp_status)))) {
1027 /* sNaN comparison */
1028 float_invalid_op_vxsnan(env, GETPC());
1032 void helper_fcmpo(CPUPPCState *env, uint64_t arg1, uint64_t arg2,
1033 uint32_t crfD)
1035 CPU_DoubleU farg1, farg2;
1036 uint32_t ret = 0;
1038 farg1.ll = arg1;
1039 farg2.ll = arg2;
1041 if (unlikely(float64_is_any_nan(farg1.d) ||
1042 float64_is_any_nan(farg2.d))) {
1043 ret = 0x01UL;
1044 } else if (float64_lt(farg1.d, farg2.d, &env->fp_status)) {
1045 ret = 0x08UL;
1046 } else if (!float64_le(farg1.d, farg2.d, &env->fp_status)) {
1047 ret = 0x04UL;
1048 } else {
1049 ret = 0x02UL;
1052 env->fpscr &= ~FP_FPCC;
1053 env->fpscr |= ret << FPSCR_FPCC;
1054 env->crf[crfD] = (uint32_t) ret;
1055 if (unlikely(ret == 0x01UL)) {
1056 float_invalid_op_vxvc(env, 1, GETPC());
1057 if (float64_is_signaling_nan(farg1.d, &env->fp_status) ||
1058 float64_is_signaling_nan(farg2.d, &env->fp_status)) {
1059 /* sNaN comparison */
1060 float_invalid_op_vxsnan(env, GETPC());
1065 /* Single-precision floating-point conversions */
1066 static inline uint32_t efscfsi(CPUPPCState *env, uint32_t val)
1068 CPU_FloatU u;
1070 u.f = int32_to_float32(val, &env->vec_status);
1072 return u.l;
1075 static inline uint32_t efscfui(CPUPPCState *env, uint32_t val)
1077 CPU_FloatU u;
1079 u.f = uint32_to_float32(val, &env->vec_status);
1081 return u.l;
1084 static inline int32_t efsctsi(CPUPPCState *env, uint32_t val)
1086 CPU_FloatU u;
1088 u.l = val;
1089 /* NaN are not treated the same way IEEE 754 does */
1090 if (unlikely(float32_is_quiet_nan(u.f, &env->vec_status))) {
1091 return 0;
1094 return float32_to_int32(u.f, &env->vec_status);
1097 static inline uint32_t efsctui(CPUPPCState *env, uint32_t val)
1099 CPU_FloatU u;
1101 u.l = val;
1102 /* NaN are not treated the same way IEEE 754 does */
1103 if (unlikely(float32_is_quiet_nan(u.f, &env->vec_status))) {
1104 return 0;
1107 return float32_to_uint32(u.f, &env->vec_status);
1110 static inline uint32_t efsctsiz(CPUPPCState *env, uint32_t val)
1112 CPU_FloatU u;
1114 u.l = val;
1115 /* NaN are not treated the same way IEEE 754 does */
1116 if (unlikely(float32_is_quiet_nan(u.f, &env->vec_status))) {
1117 return 0;
1120 return float32_to_int32_round_to_zero(u.f, &env->vec_status);
1123 static inline uint32_t efsctuiz(CPUPPCState *env, uint32_t val)
1125 CPU_FloatU u;
1127 u.l = val;
1128 /* NaN are not treated the same way IEEE 754 does */
1129 if (unlikely(float32_is_quiet_nan(u.f, &env->vec_status))) {
1130 return 0;
1133 return float32_to_uint32_round_to_zero(u.f, &env->vec_status);
1136 static inline uint32_t efscfsf(CPUPPCState *env, uint32_t val)
1138 CPU_FloatU u;
1139 float32 tmp;
1141 u.f = int32_to_float32(val, &env->vec_status);
1142 tmp = int64_to_float32(1ULL << 32, &env->vec_status);
1143 u.f = float32_div(u.f, tmp, &env->vec_status);
1145 return u.l;
1148 static inline uint32_t efscfuf(CPUPPCState *env, uint32_t val)
1150 CPU_FloatU u;
1151 float32 tmp;
1153 u.f = uint32_to_float32(val, &env->vec_status);
1154 tmp = uint64_to_float32(1ULL << 32, &env->vec_status);
1155 u.f = float32_div(u.f, tmp, &env->vec_status);
1157 return u.l;
1160 static inline uint32_t efsctsf(CPUPPCState *env, uint32_t val)
1162 CPU_FloatU u;
1163 float32 tmp;
1165 u.l = val;
1166 /* NaN are not treated the same way IEEE 754 does */
1167 if (unlikely(float32_is_quiet_nan(u.f, &env->vec_status))) {
1168 return 0;
1170 tmp = uint64_to_float32(1ULL << 32, &env->vec_status);
1171 u.f = float32_mul(u.f, tmp, &env->vec_status);
1173 return float32_to_int32(u.f, &env->vec_status);
1176 static inline uint32_t efsctuf(CPUPPCState *env, uint32_t val)
1178 CPU_FloatU u;
1179 float32 tmp;
1181 u.l = val;
1182 /* NaN are not treated the same way IEEE 754 does */
1183 if (unlikely(float32_is_quiet_nan(u.f, &env->vec_status))) {
1184 return 0;
1186 tmp = uint64_to_float32(1ULL << 32, &env->vec_status);
1187 u.f = float32_mul(u.f, tmp, &env->vec_status);
1189 return float32_to_uint32(u.f, &env->vec_status);
1192 #define HELPER_SPE_SINGLE_CONV(name) \
1193 uint32_t helper_e##name(CPUPPCState *env, uint32_t val) \
1195 return e##name(env, val); \
1197 /* efscfsi */
1198 HELPER_SPE_SINGLE_CONV(fscfsi);
1199 /* efscfui */
1200 HELPER_SPE_SINGLE_CONV(fscfui);
1201 /* efscfuf */
1202 HELPER_SPE_SINGLE_CONV(fscfuf);
1203 /* efscfsf */
1204 HELPER_SPE_SINGLE_CONV(fscfsf);
1205 /* efsctsi */
1206 HELPER_SPE_SINGLE_CONV(fsctsi);
1207 /* efsctui */
1208 HELPER_SPE_SINGLE_CONV(fsctui);
1209 /* efsctsiz */
1210 HELPER_SPE_SINGLE_CONV(fsctsiz);
1211 /* efsctuiz */
1212 HELPER_SPE_SINGLE_CONV(fsctuiz);
1213 /* efsctsf */
1214 HELPER_SPE_SINGLE_CONV(fsctsf);
1215 /* efsctuf */
1216 HELPER_SPE_SINGLE_CONV(fsctuf);
1218 #define HELPER_SPE_VECTOR_CONV(name) \
1219 uint64_t helper_ev##name(CPUPPCState *env, uint64_t val) \
1221 return ((uint64_t)e##name(env, val >> 32) << 32) | \
1222 (uint64_t)e##name(env, val); \
1224 /* evfscfsi */
1225 HELPER_SPE_VECTOR_CONV(fscfsi);
1226 /* evfscfui */
1227 HELPER_SPE_VECTOR_CONV(fscfui);
1228 /* evfscfuf */
1229 HELPER_SPE_VECTOR_CONV(fscfuf);
1230 /* evfscfsf */
1231 HELPER_SPE_VECTOR_CONV(fscfsf);
1232 /* evfsctsi */
1233 HELPER_SPE_VECTOR_CONV(fsctsi);
1234 /* evfsctui */
1235 HELPER_SPE_VECTOR_CONV(fsctui);
1236 /* evfsctsiz */
1237 HELPER_SPE_VECTOR_CONV(fsctsiz);
1238 /* evfsctuiz */
1239 HELPER_SPE_VECTOR_CONV(fsctuiz);
1240 /* evfsctsf */
1241 HELPER_SPE_VECTOR_CONV(fsctsf);
1242 /* evfsctuf */
1243 HELPER_SPE_VECTOR_CONV(fsctuf);
1245 /* Single-precision floating-point arithmetic */
1246 static inline uint32_t efsadd(CPUPPCState *env, uint32_t op1, uint32_t op2)
1248 CPU_FloatU u1, u2;
1250 u1.l = op1;
1251 u2.l = op2;
1252 u1.f = float32_add(u1.f, u2.f, &env->vec_status);
1253 return u1.l;
1256 static inline uint32_t efssub(CPUPPCState *env, uint32_t op1, uint32_t op2)
1258 CPU_FloatU u1, u2;
1260 u1.l = op1;
1261 u2.l = op2;
1262 u1.f = float32_sub(u1.f, u2.f, &env->vec_status);
1263 return u1.l;
1266 static inline uint32_t efsmul(CPUPPCState *env, uint32_t op1, uint32_t op2)
1268 CPU_FloatU u1, u2;
1270 u1.l = op1;
1271 u2.l = op2;
1272 u1.f = float32_mul(u1.f, u2.f, &env->vec_status);
1273 return u1.l;
1276 static inline uint32_t efsdiv(CPUPPCState *env, uint32_t op1, uint32_t op2)
1278 CPU_FloatU u1, u2;
1280 u1.l = op1;
1281 u2.l = op2;
1282 u1.f = float32_div(u1.f, u2.f, &env->vec_status);
1283 return u1.l;
1286 #define HELPER_SPE_SINGLE_ARITH(name) \
1287 uint32_t helper_e##name(CPUPPCState *env, uint32_t op1, uint32_t op2) \
1289 return e##name(env, op1, op2); \
1291 /* efsadd */
1292 HELPER_SPE_SINGLE_ARITH(fsadd);
1293 /* efssub */
1294 HELPER_SPE_SINGLE_ARITH(fssub);
1295 /* efsmul */
1296 HELPER_SPE_SINGLE_ARITH(fsmul);
1297 /* efsdiv */
1298 HELPER_SPE_SINGLE_ARITH(fsdiv);
1300 #define HELPER_SPE_VECTOR_ARITH(name) \
1301 uint64_t helper_ev##name(CPUPPCState *env, uint64_t op1, uint64_t op2) \
1303 return ((uint64_t)e##name(env, op1 >> 32, op2 >> 32) << 32) | \
1304 (uint64_t)e##name(env, op1, op2); \
1306 /* evfsadd */
1307 HELPER_SPE_VECTOR_ARITH(fsadd);
1308 /* evfssub */
1309 HELPER_SPE_VECTOR_ARITH(fssub);
1310 /* evfsmul */
1311 HELPER_SPE_VECTOR_ARITH(fsmul);
1312 /* evfsdiv */
1313 HELPER_SPE_VECTOR_ARITH(fsdiv);
1315 /* Single-precision floating-point comparisons */
1316 static inline uint32_t efscmplt(CPUPPCState *env, uint32_t op1, uint32_t op2)
1318 CPU_FloatU u1, u2;
1320 u1.l = op1;
1321 u2.l = op2;
1322 return float32_lt(u1.f, u2.f, &env->vec_status) ? 4 : 0;
1325 static inline uint32_t efscmpgt(CPUPPCState *env, uint32_t op1, uint32_t op2)
1327 CPU_FloatU u1, u2;
1329 u1.l = op1;
1330 u2.l = op2;
1331 return float32_le(u1.f, u2.f, &env->vec_status) ? 0 : 4;
1334 static inline uint32_t efscmpeq(CPUPPCState *env, uint32_t op1, uint32_t op2)
1336 CPU_FloatU u1, u2;
1338 u1.l = op1;
1339 u2.l = op2;
1340 return float32_eq(u1.f, u2.f, &env->vec_status) ? 4 : 0;
1343 static inline uint32_t efststlt(CPUPPCState *env, uint32_t op1, uint32_t op2)
1345 /* XXX: TODO: ignore special values (NaN, infinites, ...) */
1346 return efscmplt(env, op1, op2);
1349 static inline uint32_t efststgt(CPUPPCState *env, uint32_t op1, uint32_t op2)
1351 /* XXX: TODO: ignore special values (NaN, infinites, ...) */
1352 return efscmpgt(env, op1, op2);
1355 static inline uint32_t efststeq(CPUPPCState *env, uint32_t op1, uint32_t op2)
1357 /* XXX: TODO: ignore special values (NaN, infinites, ...) */
1358 return efscmpeq(env, op1, op2);
1361 #define HELPER_SINGLE_SPE_CMP(name) \
1362 uint32_t helper_e##name(CPUPPCState *env, uint32_t op1, uint32_t op2) \
1364 return e##name(env, op1, op2); \
1366 /* efststlt */
1367 HELPER_SINGLE_SPE_CMP(fststlt);
1368 /* efststgt */
1369 HELPER_SINGLE_SPE_CMP(fststgt);
1370 /* efststeq */
1371 HELPER_SINGLE_SPE_CMP(fststeq);
1372 /* efscmplt */
1373 HELPER_SINGLE_SPE_CMP(fscmplt);
1374 /* efscmpgt */
1375 HELPER_SINGLE_SPE_CMP(fscmpgt);
1376 /* efscmpeq */
1377 HELPER_SINGLE_SPE_CMP(fscmpeq);
1379 static inline uint32_t evcmp_merge(int t0, int t1)
1381 return (t0 << 3) | (t1 << 2) | ((t0 | t1) << 1) | (t0 & t1);
1384 #define HELPER_VECTOR_SPE_CMP(name) \
1385 uint32_t helper_ev##name(CPUPPCState *env, uint64_t op1, uint64_t op2) \
1387 return evcmp_merge(e##name(env, op1 >> 32, op2 >> 32), \
1388 e##name(env, op1, op2)); \
1390 /* evfststlt */
1391 HELPER_VECTOR_SPE_CMP(fststlt);
1392 /* evfststgt */
1393 HELPER_VECTOR_SPE_CMP(fststgt);
1394 /* evfststeq */
1395 HELPER_VECTOR_SPE_CMP(fststeq);
1396 /* evfscmplt */
1397 HELPER_VECTOR_SPE_CMP(fscmplt);
1398 /* evfscmpgt */
1399 HELPER_VECTOR_SPE_CMP(fscmpgt);
1400 /* evfscmpeq */
1401 HELPER_VECTOR_SPE_CMP(fscmpeq);
1403 /* Double-precision floating-point conversion */
1404 uint64_t helper_efdcfsi(CPUPPCState *env, uint32_t val)
1406 CPU_DoubleU u;
1408 u.d = int32_to_float64(val, &env->vec_status);
1410 return u.ll;
1413 uint64_t helper_efdcfsid(CPUPPCState *env, uint64_t val)
1415 CPU_DoubleU u;
1417 u.d = int64_to_float64(val, &env->vec_status);
1419 return u.ll;
1422 uint64_t helper_efdcfui(CPUPPCState *env, uint32_t val)
1424 CPU_DoubleU u;
1426 u.d = uint32_to_float64(val, &env->vec_status);
1428 return u.ll;
1431 uint64_t helper_efdcfuid(CPUPPCState *env, uint64_t val)
1433 CPU_DoubleU u;
1435 u.d = uint64_to_float64(val, &env->vec_status);
1437 return u.ll;
1440 uint32_t helper_efdctsi(CPUPPCState *env, uint64_t val)
1442 CPU_DoubleU u;
1444 u.ll = val;
1445 /* NaN are not treated the same way IEEE 754 does */
1446 if (unlikely(float64_is_any_nan(u.d))) {
1447 return 0;
1450 return float64_to_int32(u.d, &env->vec_status);
1453 uint32_t helper_efdctui(CPUPPCState *env, uint64_t val)
1455 CPU_DoubleU u;
1457 u.ll = val;
1458 /* NaN are not treated the same way IEEE 754 does */
1459 if (unlikely(float64_is_any_nan(u.d))) {
1460 return 0;
1463 return float64_to_uint32(u.d, &env->vec_status);
1466 uint32_t helper_efdctsiz(CPUPPCState *env, uint64_t val)
1468 CPU_DoubleU u;
1470 u.ll = val;
1471 /* NaN are not treated the same way IEEE 754 does */
1472 if (unlikely(float64_is_any_nan(u.d))) {
1473 return 0;
1476 return float64_to_int32_round_to_zero(u.d, &env->vec_status);
1479 uint64_t helper_efdctsidz(CPUPPCState *env, uint64_t val)
1481 CPU_DoubleU u;
1483 u.ll = val;
1484 /* NaN are not treated the same way IEEE 754 does */
1485 if (unlikely(float64_is_any_nan(u.d))) {
1486 return 0;
1489 return float64_to_int64_round_to_zero(u.d, &env->vec_status);
1492 uint32_t helper_efdctuiz(CPUPPCState *env, uint64_t val)
1494 CPU_DoubleU u;
1496 u.ll = val;
1497 /* NaN are not treated the same way IEEE 754 does */
1498 if (unlikely(float64_is_any_nan(u.d))) {
1499 return 0;
1502 return float64_to_uint32_round_to_zero(u.d, &env->vec_status);
1505 uint64_t helper_efdctuidz(CPUPPCState *env, uint64_t val)
1507 CPU_DoubleU u;
1509 u.ll = val;
1510 /* NaN are not treated the same way IEEE 754 does */
1511 if (unlikely(float64_is_any_nan(u.d))) {
1512 return 0;
1515 return float64_to_uint64_round_to_zero(u.d, &env->vec_status);
1518 uint64_t helper_efdcfsf(CPUPPCState *env, uint32_t val)
1520 CPU_DoubleU u;
1521 float64 tmp;
1523 u.d = int32_to_float64(val, &env->vec_status);
1524 tmp = int64_to_float64(1ULL << 32, &env->vec_status);
1525 u.d = float64_div(u.d, tmp, &env->vec_status);
1527 return u.ll;
1530 uint64_t helper_efdcfuf(CPUPPCState *env, uint32_t val)
1532 CPU_DoubleU u;
1533 float64 tmp;
1535 u.d = uint32_to_float64(val, &env->vec_status);
1536 tmp = int64_to_float64(1ULL << 32, &env->vec_status);
1537 u.d = float64_div(u.d, tmp, &env->vec_status);
1539 return u.ll;
1542 uint32_t helper_efdctsf(CPUPPCState *env, uint64_t val)
1544 CPU_DoubleU u;
1545 float64 tmp;
1547 u.ll = val;
1548 /* NaN are not treated the same way IEEE 754 does */
1549 if (unlikely(float64_is_any_nan(u.d))) {
1550 return 0;
1552 tmp = uint64_to_float64(1ULL << 32, &env->vec_status);
1553 u.d = float64_mul(u.d, tmp, &env->vec_status);
1555 return float64_to_int32(u.d, &env->vec_status);
1558 uint32_t helper_efdctuf(CPUPPCState *env, uint64_t val)
1560 CPU_DoubleU u;
1561 float64 tmp;
1563 u.ll = val;
1564 /* NaN are not treated the same way IEEE 754 does */
1565 if (unlikely(float64_is_any_nan(u.d))) {
1566 return 0;
1568 tmp = uint64_to_float64(1ULL << 32, &env->vec_status);
1569 u.d = float64_mul(u.d, tmp, &env->vec_status);
1571 return float64_to_uint32(u.d, &env->vec_status);
1574 uint32_t helper_efscfd(CPUPPCState *env, uint64_t val)
1576 CPU_DoubleU u1;
1577 CPU_FloatU u2;
1579 u1.ll = val;
1580 u2.f = float64_to_float32(u1.d, &env->vec_status);
1582 return u2.l;
1585 uint64_t helper_efdcfs(CPUPPCState *env, uint32_t val)
1587 CPU_DoubleU u2;
1588 CPU_FloatU u1;
1590 u1.l = val;
1591 u2.d = float32_to_float64(u1.f, &env->vec_status);
1593 return u2.ll;
1596 /* Double precision fixed-point arithmetic */
1597 uint64_t helper_efdadd(CPUPPCState *env, uint64_t op1, uint64_t op2)
1599 CPU_DoubleU u1, u2;
1601 u1.ll = op1;
1602 u2.ll = op2;
1603 u1.d = float64_add(u1.d, u2.d, &env->vec_status);
1604 return u1.ll;
1607 uint64_t helper_efdsub(CPUPPCState *env, uint64_t op1, uint64_t op2)
1609 CPU_DoubleU u1, u2;
1611 u1.ll = op1;
1612 u2.ll = op2;
1613 u1.d = float64_sub(u1.d, u2.d, &env->vec_status);
1614 return u1.ll;
1617 uint64_t helper_efdmul(CPUPPCState *env, uint64_t op1, uint64_t op2)
1619 CPU_DoubleU u1, u2;
1621 u1.ll = op1;
1622 u2.ll = op2;
1623 u1.d = float64_mul(u1.d, u2.d, &env->vec_status);
1624 return u1.ll;
1627 uint64_t helper_efddiv(CPUPPCState *env, uint64_t op1, uint64_t op2)
1629 CPU_DoubleU u1, u2;
1631 u1.ll = op1;
1632 u2.ll = op2;
1633 u1.d = float64_div(u1.d, u2.d, &env->vec_status);
1634 return u1.ll;
1637 /* Double precision floating point helpers */
1638 uint32_t helper_efdtstlt(CPUPPCState *env, uint64_t op1, uint64_t op2)
1640 CPU_DoubleU u1, u2;
1642 u1.ll = op1;
1643 u2.ll = op2;
1644 return float64_lt(u1.d, u2.d, &env->vec_status) ? 4 : 0;
1647 uint32_t helper_efdtstgt(CPUPPCState *env, uint64_t op1, uint64_t op2)
1649 CPU_DoubleU u1, u2;
1651 u1.ll = op1;
1652 u2.ll = op2;
1653 return float64_le(u1.d, u2.d, &env->vec_status) ? 0 : 4;
1656 uint32_t helper_efdtsteq(CPUPPCState *env, uint64_t op1, uint64_t op2)
1658 CPU_DoubleU u1, u2;
1660 u1.ll = op1;
1661 u2.ll = op2;
1662 return float64_eq_quiet(u1.d, u2.d, &env->vec_status) ? 4 : 0;
1665 uint32_t helper_efdcmplt(CPUPPCState *env, uint64_t op1, uint64_t op2)
1667 /* XXX: TODO: test special values (NaN, infinites, ...) */
1668 return helper_efdtstlt(env, op1, op2);
1671 uint32_t helper_efdcmpgt(CPUPPCState *env, uint64_t op1, uint64_t op2)
1673 /* XXX: TODO: test special values (NaN, infinites, ...) */
1674 return helper_efdtstgt(env, op1, op2);
1677 uint32_t helper_efdcmpeq(CPUPPCState *env, uint64_t op1, uint64_t op2)
1679 /* XXX: TODO: test special values (NaN, infinites, ...) */
1680 return helper_efdtsteq(env, op1, op2);
1683 #define float64_to_float64(x, env) x
1687 * VSX_ADD_SUB - VSX floating point add/subtract
1688 * name - instruction mnemonic
1689 * op - operation (add or sub)
1690 * nels - number of elements (1, 2 or 4)
1691 * tp - type (float32 or float64)
1692 * fld - vsr_t field (VsrD(*) or VsrW(*))
1693 * sfprf - set FPRF
1695 #define VSX_ADD_SUB(name, op, nels, tp, fld, sfprf, r2sp) \
1696 void helper_##name(CPUPPCState *env, ppc_vsr_t *xt, \
1697 ppc_vsr_t *xa, ppc_vsr_t *xb) \
1699 ppc_vsr_t t = { }; \
1700 int i; \
1702 helper_reset_fpstatus(env); \
1704 for (i = 0; i < nels; i++) { \
1705 float_status tstat = env->fp_status; \
1706 set_float_exception_flags(0, &tstat); \
1707 t.fld = tp##_##op(xa->fld, xb->fld, &tstat); \
1708 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
1710 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
1711 float_invalid_op_addsub(env, tstat.float_exception_flags, \
1712 sfprf, GETPC()); \
1715 if (r2sp) { \
1716 t.fld = do_frsp(env, t.fld, GETPC()); \
1719 if (sfprf) { \
1720 helper_compute_fprf_float64(env, t.fld); \
1723 *xt = t; \
1724 do_float_check_status(env, GETPC()); \
1727 VSX_ADD_SUB(xsadddp, add, 1, float64, VsrD(0), 1, 0)
1728 VSX_ADD_SUB(xsaddsp, add, 1, float64, VsrD(0), 1, 1)
1729 VSX_ADD_SUB(xvadddp, add, 2, float64, VsrD(i), 0, 0)
1730 VSX_ADD_SUB(xvaddsp, add, 4, float32, VsrW(i), 0, 0)
1731 VSX_ADD_SUB(xssubdp, sub, 1, float64, VsrD(0), 1, 0)
1732 VSX_ADD_SUB(xssubsp, sub, 1, float64, VsrD(0), 1, 1)
1733 VSX_ADD_SUB(xvsubdp, sub, 2, float64, VsrD(i), 0, 0)
1734 VSX_ADD_SUB(xvsubsp, sub, 4, float32, VsrW(i), 0, 0)
1736 void helper_xsaddqp(CPUPPCState *env, uint32_t opcode,
1737 ppc_vsr_t *xt, ppc_vsr_t *xa, ppc_vsr_t *xb)
1739 ppc_vsr_t t = *xt;
1740 float_status tstat;
1742 helper_reset_fpstatus(env);
1744 tstat = env->fp_status;
1745 if (unlikely(Rc(opcode) != 0)) {
1746 tstat.float_rounding_mode = float_round_to_odd;
1749 set_float_exception_flags(0, &tstat);
1750 t.f128 = float128_add(xa->f128, xb->f128, &tstat);
1751 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
1753 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) {
1754 float_invalid_op_addsub(env, tstat.float_exception_flags, 1, GETPC());
1757 helper_compute_fprf_float128(env, t.f128);
1759 *xt = t;
1760 do_float_check_status(env, GETPC());
1764 * VSX_MUL - VSX floating point multiply
1765 * op - instruction mnemonic
1766 * nels - number of elements (1, 2 or 4)
1767 * tp - type (float32 or float64)
1768 * fld - vsr_t field (VsrD(*) or VsrW(*))
1769 * sfprf - set FPRF
1771 #define VSX_MUL(op, nels, tp, fld, sfprf, r2sp) \
1772 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, \
1773 ppc_vsr_t *xa, ppc_vsr_t *xb) \
1775 ppc_vsr_t t = { }; \
1776 int i; \
1778 helper_reset_fpstatus(env); \
1780 for (i = 0; i < nels; i++) { \
1781 float_status tstat = env->fp_status; \
1782 set_float_exception_flags(0, &tstat); \
1783 t.fld = tp##_mul(xa->fld, xb->fld, &tstat); \
1784 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
1786 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
1787 float_invalid_op_mul(env, tstat.float_exception_flags, \
1788 sfprf, GETPC()); \
1791 if (r2sp) { \
1792 t.fld = do_frsp(env, t.fld, GETPC()); \
1795 if (sfprf) { \
1796 helper_compute_fprf_float64(env, t.fld); \
1800 *xt = t; \
1801 do_float_check_status(env, GETPC()); \
1804 VSX_MUL(xsmuldp, 1, float64, VsrD(0), 1, 0)
1805 VSX_MUL(xsmulsp, 1, float64, VsrD(0), 1, 1)
1806 VSX_MUL(xvmuldp, 2, float64, VsrD(i), 0, 0)
1807 VSX_MUL(xvmulsp, 4, float32, VsrW(i), 0, 0)
1809 void helper_xsmulqp(CPUPPCState *env, uint32_t opcode,
1810 ppc_vsr_t *xt, ppc_vsr_t *xa, ppc_vsr_t *xb)
1812 ppc_vsr_t t = *xt;
1813 float_status tstat;
1815 helper_reset_fpstatus(env);
1816 tstat = env->fp_status;
1817 if (unlikely(Rc(opcode) != 0)) {
1818 tstat.float_rounding_mode = float_round_to_odd;
1821 set_float_exception_flags(0, &tstat);
1822 t.f128 = float128_mul(xa->f128, xb->f128, &tstat);
1823 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
1825 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) {
1826 float_invalid_op_mul(env, tstat.float_exception_flags, 1, GETPC());
1828 helper_compute_fprf_float128(env, t.f128);
1830 *xt = t;
1831 do_float_check_status(env, GETPC());
1835 * VSX_DIV - VSX floating point divide
1836 * op - instruction mnemonic
1837 * nels - number of elements (1, 2 or 4)
1838 * tp - type (float32 or float64)
1839 * fld - vsr_t field (VsrD(*) or VsrW(*))
1840 * sfprf - set FPRF
1842 #define VSX_DIV(op, nels, tp, fld, sfprf, r2sp) \
1843 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, \
1844 ppc_vsr_t *xa, ppc_vsr_t *xb) \
1846 ppc_vsr_t t = { }; \
1847 int i; \
1849 helper_reset_fpstatus(env); \
1851 for (i = 0; i < nels; i++) { \
1852 float_status tstat = env->fp_status; \
1853 set_float_exception_flags(0, &tstat); \
1854 t.fld = tp##_div(xa->fld, xb->fld, &tstat); \
1855 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
1857 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
1858 float_invalid_op_div(env, tstat.float_exception_flags, \
1859 sfprf, GETPC()); \
1861 if (unlikely(tstat.float_exception_flags & float_flag_divbyzero)) { \
1862 float_zero_divide_excp(env, GETPC()); \
1865 if (r2sp) { \
1866 t.fld = do_frsp(env, t.fld, GETPC()); \
1869 if (sfprf) { \
1870 helper_compute_fprf_float64(env, t.fld); \
1874 *xt = t; \
1875 do_float_check_status(env, GETPC()); \
1878 VSX_DIV(xsdivdp, 1, float64, VsrD(0), 1, 0)
1879 VSX_DIV(xsdivsp, 1, float64, VsrD(0), 1, 1)
1880 VSX_DIV(xvdivdp, 2, float64, VsrD(i), 0, 0)
1881 VSX_DIV(xvdivsp, 4, float32, VsrW(i), 0, 0)
1883 void helper_xsdivqp(CPUPPCState *env, uint32_t opcode,
1884 ppc_vsr_t *xt, ppc_vsr_t *xa, ppc_vsr_t *xb)
1886 ppc_vsr_t t = *xt;
1887 float_status tstat;
1889 helper_reset_fpstatus(env);
1890 tstat = env->fp_status;
1891 if (unlikely(Rc(opcode) != 0)) {
1892 tstat.float_rounding_mode = float_round_to_odd;
1895 set_float_exception_flags(0, &tstat);
1896 t.f128 = float128_div(xa->f128, xb->f128, &tstat);
1897 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
1899 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) {
1900 float_invalid_op_div(env, tstat.float_exception_flags, 1, GETPC());
1902 if (unlikely(tstat.float_exception_flags & float_flag_divbyzero)) {
1903 float_zero_divide_excp(env, GETPC());
1906 helper_compute_fprf_float128(env, t.f128);
1907 *xt = t;
1908 do_float_check_status(env, GETPC());
1912 * VSX_RE - VSX floating point reciprocal estimate
1913 * op - instruction mnemonic
1914 * nels - number of elements (1, 2 or 4)
1915 * tp - type (float32 or float64)
1916 * fld - vsr_t field (VsrD(*) or VsrW(*))
1917 * sfprf - set FPRF
1919 #define VSX_RE(op, nels, tp, fld, sfprf, r2sp) \
1920 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
1922 ppc_vsr_t t = { }; \
1923 int i; \
1925 helper_reset_fpstatus(env); \
1927 for (i = 0; i < nels; i++) { \
1928 if (unlikely(tp##_is_signaling_nan(xb->fld, &env->fp_status))) { \
1929 float_invalid_op_vxsnan(env, GETPC()); \
1931 t.fld = tp##_div(tp##_one, xb->fld, &env->fp_status); \
1933 if (r2sp) { \
1934 t.fld = do_frsp(env, t.fld, GETPC()); \
1937 if (sfprf) { \
1938 helper_compute_fprf_float64(env, t.fld); \
1942 *xt = t; \
1943 do_float_check_status(env, GETPC()); \
1946 VSX_RE(xsredp, 1, float64, VsrD(0), 1, 0)
1947 VSX_RE(xsresp, 1, float64, VsrD(0), 1, 1)
1948 VSX_RE(xvredp, 2, float64, VsrD(i), 0, 0)
1949 VSX_RE(xvresp, 4, float32, VsrW(i), 0, 0)
1952 * VSX_SQRT - VSX floating point square root
1953 * op - instruction mnemonic
1954 * nels - number of elements (1, 2 or 4)
1955 * tp - type (float32 or float64)
1956 * fld - vsr_t field (VsrD(*) or VsrW(*))
1957 * sfprf - set FPRF
1959 #define VSX_SQRT(op, nels, tp, fld, sfprf, r2sp) \
1960 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
1962 ppc_vsr_t t = { }; \
1963 int i; \
1965 helper_reset_fpstatus(env); \
1967 for (i = 0; i < nels; i++) { \
1968 float_status tstat = env->fp_status; \
1969 set_float_exception_flags(0, &tstat); \
1970 t.fld = tp##_sqrt(xb->fld, &tstat); \
1971 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
1973 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
1974 float_invalid_op_sqrt(env, tstat.float_exception_flags, \
1975 sfprf, GETPC()); \
1978 if (r2sp) { \
1979 t.fld = do_frsp(env, t.fld, GETPC()); \
1982 if (sfprf) { \
1983 helper_compute_fprf_float64(env, t.fld); \
1987 *xt = t; \
1988 do_float_check_status(env, GETPC()); \
1991 VSX_SQRT(xssqrtdp, 1, float64, VsrD(0), 1, 0)
1992 VSX_SQRT(xssqrtsp, 1, float64, VsrD(0), 1, 1)
1993 VSX_SQRT(xvsqrtdp, 2, float64, VsrD(i), 0, 0)
1994 VSX_SQRT(xvsqrtsp, 4, float32, VsrW(i), 0, 0)
1997 *VSX_RSQRTE - VSX floating point reciprocal square root estimate
1998 * op - instruction mnemonic
1999 * nels - number of elements (1, 2 or 4)
2000 * tp - type (float32 or float64)
2001 * fld - vsr_t field (VsrD(*) or VsrW(*))
2002 * sfprf - set FPRF
2004 #define VSX_RSQRTE(op, nels, tp, fld, sfprf, r2sp) \
2005 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
2007 ppc_vsr_t t = { }; \
2008 int i; \
2010 helper_reset_fpstatus(env); \
2012 for (i = 0; i < nels; i++) { \
2013 float_status tstat = env->fp_status; \
2014 set_float_exception_flags(0, &tstat); \
2015 t.fld = tp##_sqrt(xb->fld, &tstat); \
2016 t.fld = tp##_div(tp##_one, t.fld, &tstat); \
2017 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
2018 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
2019 float_invalid_op_sqrt(env, tstat.float_exception_flags, \
2020 sfprf, GETPC()); \
2022 if (r2sp) { \
2023 t.fld = do_frsp(env, t.fld, GETPC()); \
2026 if (sfprf) { \
2027 helper_compute_fprf_float64(env, t.fld); \
2031 *xt = t; \
2032 do_float_check_status(env, GETPC()); \
2035 VSX_RSQRTE(xsrsqrtedp, 1, float64, VsrD(0), 1, 0)
2036 VSX_RSQRTE(xsrsqrtesp, 1, float64, VsrD(0), 1, 1)
2037 VSX_RSQRTE(xvrsqrtedp, 2, float64, VsrD(i), 0, 0)
2038 VSX_RSQRTE(xvrsqrtesp, 4, float32, VsrW(i), 0, 0)
2041 * VSX_TDIV - VSX floating point test for divide
2042 * op - instruction mnemonic
2043 * nels - number of elements (1, 2 or 4)
2044 * tp - type (float32 or float64)
2045 * fld - vsr_t field (VsrD(*) or VsrW(*))
2046 * emin - minimum unbiased exponent
2047 * emax - maximum unbiased exponent
2048 * nbits - number of fraction bits
2050 #define VSX_TDIV(op, nels, tp, fld, emin, emax, nbits) \
2051 void helper_##op(CPUPPCState *env, uint32_t opcode, \
2052 ppc_vsr_t *xa, ppc_vsr_t *xb) \
2054 int i; \
2055 int fe_flag = 0; \
2056 int fg_flag = 0; \
2058 for (i = 0; i < nels; i++) { \
2059 if (unlikely(tp##_is_infinity(xa->fld) || \
2060 tp##_is_infinity(xb->fld) || \
2061 tp##_is_zero(xb->fld))) { \
2062 fe_flag = 1; \
2063 fg_flag = 1; \
2064 } else { \
2065 int e_a = ppc_##tp##_get_unbiased_exp(xa->fld); \
2066 int e_b = ppc_##tp##_get_unbiased_exp(xb->fld); \
2068 if (unlikely(tp##_is_any_nan(xa->fld) || \
2069 tp##_is_any_nan(xb->fld))) { \
2070 fe_flag = 1; \
2071 } else if ((e_b <= emin) || (e_b >= (emax - 2))) { \
2072 fe_flag = 1; \
2073 } else if (!tp##_is_zero(xa->fld) && \
2074 (((e_a - e_b) >= emax) || \
2075 ((e_a - e_b) <= (emin + 1)) || \
2076 (e_a <= (emin + nbits)))) { \
2077 fe_flag = 1; \
2080 if (unlikely(tp##_is_zero_or_denormal(xb->fld))) { \
2081 /* \
2082 * XB is not zero because of the above check and so \
2083 * must be denormalized. \
2084 */ \
2085 fg_flag = 1; \
2090 env->crf[BF(opcode)] = 0x8 | (fg_flag ? 4 : 0) | (fe_flag ? 2 : 0); \
2093 VSX_TDIV(xstdivdp, 1, float64, VsrD(0), -1022, 1023, 52)
2094 VSX_TDIV(xvtdivdp, 2, float64, VsrD(i), -1022, 1023, 52)
2095 VSX_TDIV(xvtdivsp, 4, float32, VsrW(i), -126, 127, 23)
2098 * VSX_TSQRT - VSX floating point test for square root
2099 * op - instruction mnemonic
2100 * nels - number of elements (1, 2 or 4)
2101 * tp - type (float32 or float64)
2102 * fld - vsr_t field (VsrD(*) or VsrW(*))
2103 * emin - minimum unbiased exponent
2104 * emax - maximum unbiased exponent
2105 * nbits - number of fraction bits
2107 #define VSX_TSQRT(op, nels, tp, fld, emin, nbits) \
2108 void helper_##op(CPUPPCState *env, uint32_t opcode, ppc_vsr_t *xb) \
2110 int i; \
2111 int fe_flag = 0; \
2112 int fg_flag = 0; \
2114 for (i = 0; i < nels; i++) { \
2115 if (unlikely(tp##_is_infinity(xb->fld) || \
2116 tp##_is_zero(xb->fld))) { \
2117 fe_flag = 1; \
2118 fg_flag = 1; \
2119 } else { \
2120 int e_b = ppc_##tp##_get_unbiased_exp(xb->fld); \
2122 if (unlikely(tp##_is_any_nan(xb->fld))) { \
2123 fe_flag = 1; \
2124 } else if (unlikely(tp##_is_zero(xb->fld))) { \
2125 fe_flag = 1; \
2126 } else if (unlikely(tp##_is_neg(xb->fld))) { \
2127 fe_flag = 1; \
2128 } else if (!tp##_is_zero(xb->fld) && \
2129 (e_b <= (emin + nbits))) { \
2130 fe_flag = 1; \
2133 if (unlikely(tp##_is_zero_or_denormal(xb->fld))) { \
2134 /* \
2135 * XB is not zero because of the above check and \
2136 * therefore must be denormalized. \
2137 */ \
2138 fg_flag = 1; \
2143 env->crf[BF(opcode)] = 0x8 | (fg_flag ? 4 : 0) | (fe_flag ? 2 : 0); \
2146 VSX_TSQRT(xstsqrtdp, 1, float64, VsrD(0), -1022, 52)
2147 VSX_TSQRT(xvtsqrtdp, 2, float64, VsrD(i), -1022, 52)
2148 VSX_TSQRT(xvtsqrtsp, 4, float32, VsrW(i), -126, 23)
2151 * VSX_MADD - VSX floating point muliply/add variations
2152 * op - instruction mnemonic
2153 * nels - number of elements (1, 2 or 4)
2154 * tp - type (float32 or float64)
2155 * fld - vsr_t field (VsrD(*) or VsrW(*))
2156 * maddflgs - flags for the float*muladd routine that control the
2157 * various forms (madd, msub, nmadd, nmsub)
2158 * sfprf - set FPRF
2159 * r2sp - round intermediate double precision result to single precision
2161 #define VSX_MADD(op, nels, tp, fld, maddflgs, sfprf, r2sp) \
2162 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, \
2163 ppc_vsr_t *s1, ppc_vsr_t *s2, ppc_vsr_t *s3) \
2165 ppc_vsr_t t = *xt; \
2166 int i; \
2168 helper_reset_fpstatus(env); \
2170 for (i = 0; i < nels; i++) { \
2171 float_status tstat = env->fp_status; \
2172 set_float_exception_flags(0, &tstat); \
2173 if (r2sp && (tstat.float_rounding_mode == float_round_nearest_even)) {\
2174 /* \
2175 * Avoid double rounding errors by rounding the intermediate \
2176 * result to odd. \
2177 */ \
2178 set_float_rounding_mode(float_round_to_zero, &tstat); \
2179 t.fld = tp##_muladd(s1->fld, s3->fld, s2->fld, \
2180 maddflgs, &tstat); \
2181 t.fld |= (get_float_exception_flags(&tstat) & \
2182 float_flag_inexact) != 0; \
2183 } else { \
2184 t.fld = tp##_muladd(s1->fld, s3->fld, s2->fld, \
2185 maddflgs, &tstat); \
2187 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
2189 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
2190 float_invalid_op_madd(env, tstat.float_exception_flags, \
2191 sfprf, GETPC()); \
2194 if (r2sp) { \
2195 t.fld = do_frsp(env, t.fld, GETPC()); \
2198 if (sfprf) { \
2199 helper_compute_fprf_float64(env, t.fld); \
2202 *xt = t; \
2203 do_float_check_status(env, GETPC()); \
2206 VSX_MADD(XSMADDDP, 1, float64, VsrD(0), MADD_FLGS, 1, 0)
2207 VSX_MADD(XSMSUBDP, 1, float64, VsrD(0), MSUB_FLGS, 1, 0)
2208 VSX_MADD(XSNMADDDP, 1, float64, VsrD(0), NMADD_FLGS, 1, 0)
2209 VSX_MADD(XSNMSUBDP, 1, float64, VsrD(0), NMSUB_FLGS, 1, 0)
2210 VSX_MADD(XSMADDSP, 1, float64, VsrD(0), MADD_FLGS, 1, 1)
2211 VSX_MADD(XSMSUBSP, 1, float64, VsrD(0), MSUB_FLGS, 1, 1)
2212 VSX_MADD(XSNMADDSP, 1, float64, VsrD(0), NMADD_FLGS, 1, 1)
2213 VSX_MADD(XSNMSUBSP, 1, float64, VsrD(0), NMSUB_FLGS, 1, 1)
2215 VSX_MADD(xvmadddp, 2, float64, VsrD(i), MADD_FLGS, 0, 0)
2216 VSX_MADD(xvmsubdp, 2, float64, VsrD(i), MSUB_FLGS, 0, 0)
2217 VSX_MADD(xvnmadddp, 2, float64, VsrD(i), NMADD_FLGS, 0, 0)
2218 VSX_MADD(xvnmsubdp, 2, float64, VsrD(i), NMSUB_FLGS, 0, 0)
2220 VSX_MADD(xvmaddsp, 4, float32, VsrW(i), MADD_FLGS, 0, 0)
2221 VSX_MADD(xvmsubsp, 4, float32, VsrW(i), MSUB_FLGS, 0, 0)
2222 VSX_MADD(xvnmaddsp, 4, float32, VsrW(i), NMADD_FLGS, 0, 0)
2223 VSX_MADD(xvnmsubsp, 4, float32, VsrW(i), NMSUB_FLGS, 0, 0)
2226 * VSX_MADDQ - VSX floating point quad-precision muliply/add
2227 * op - instruction mnemonic
2228 * maddflgs - flags for the float*muladd routine that control the
2229 * various forms (madd, msub, nmadd, nmsub)
2230 * ro - round to odd
2232 #define VSX_MADDQ(op, maddflgs, ro) \
2233 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *s1, ppc_vsr_t *s2,\
2234 ppc_vsr_t *s3) \
2236 ppc_vsr_t t = *xt; \
2238 helper_reset_fpstatus(env); \
2240 float_status tstat = env->fp_status; \
2241 set_float_exception_flags(0, &tstat); \
2242 if (ro) { \
2243 tstat.float_rounding_mode = float_round_to_odd; \
2245 t.f128 = float128_muladd(s1->f128, s3->f128, s2->f128, maddflgs, &tstat); \
2246 env->fp_status.float_exception_flags |= tstat.float_exception_flags; \
2248 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) { \
2249 float_invalid_op_madd(env, tstat.float_exception_flags, \
2250 false, GETPC()); \
2253 helper_compute_fprf_float128(env, t.f128); \
2254 *xt = t; \
2255 do_float_check_status(env, GETPC()); \
2258 VSX_MADDQ(XSMADDQP, MADD_FLGS, 0)
2259 VSX_MADDQ(XSMADDQPO, MADD_FLGS, 1)
2260 VSX_MADDQ(XSMSUBQP, MSUB_FLGS, 0)
2261 VSX_MADDQ(XSMSUBQPO, MSUB_FLGS, 1)
2262 VSX_MADDQ(XSNMADDQP, NMADD_FLGS, 0)
2263 VSX_MADDQ(XSNMADDQPO, NMADD_FLGS, 1)
2264 VSX_MADDQ(XSNMSUBQP, NMSUB_FLGS, 0)
2265 VSX_MADDQ(XSNMSUBQPO, NMSUB_FLGS, 0)
2268 * VSX_SCALAR_CMP - VSX scalar floating point compare
2269 * op - instruction mnemonic
2270 * tp - type
2271 * cmp - comparison operation
2272 * fld - vsr_t field
2273 * svxvc - set VXVC bit
2275 #define VSX_SCALAR_CMP(op, tp, cmp, fld, svxvc) \
2276 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, \
2277 ppc_vsr_t *xa, ppc_vsr_t *xb) \
2279 int flags; \
2280 bool r, vxvc; \
2282 helper_reset_fpstatus(env); \
2284 if (svxvc) { \
2285 r = tp##_##cmp(xb->fld, xa->fld, &env->fp_status); \
2286 } else { \
2287 r = tp##_##cmp##_quiet(xb->fld, xa->fld, &env->fp_status); \
2290 flags = get_float_exception_flags(&env->fp_status); \
2291 if (unlikely(flags & float_flag_invalid)) { \
2292 vxvc = svxvc; \
2293 if (flags & float_flag_invalid_snan) { \
2294 float_invalid_op_vxsnan(env, GETPC()); \
2295 vxvc &= fpscr_ve == 0; \
2297 if (vxvc) { \
2298 float_invalid_op_vxvc(env, 0, GETPC()); \
2302 memset(xt, 0, sizeof(*xt)); \
2303 memset(&xt->fld, -r, sizeof(xt->fld)); \
2304 do_float_check_status(env, GETPC()); \
2307 VSX_SCALAR_CMP(XSCMPEQDP, float64, eq, VsrD(0), 0)
2308 VSX_SCALAR_CMP(XSCMPGEDP, float64, le, VsrD(0), 1)
2309 VSX_SCALAR_CMP(XSCMPGTDP, float64, lt, VsrD(0), 1)
2310 VSX_SCALAR_CMP(XSCMPEQQP, float128, eq, f128, 0)
2311 VSX_SCALAR_CMP(XSCMPGEQP, float128, le, f128, 1)
2312 VSX_SCALAR_CMP(XSCMPGTQP, float128, lt, f128, 1)
2314 void helper_xscmpexpdp(CPUPPCState *env, uint32_t opcode,
2315 ppc_vsr_t *xa, ppc_vsr_t *xb)
2317 int64_t exp_a, exp_b;
2318 uint32_t cc;
2320 exp_a = extract64(xa->VsrD(0), 52, 11);
2321 exp_b = extract64(xb->VsrD(0), 52, 11);
2323 if (unlikely(float64_is_any_nan(xa->VsrD(0)) ||
2324 float64_is_any_nan(xb->VsrD(0)))) {
2325 cc = CRF_SO;
2326 } else {
2327 if (exp_a < exp_b) {
2328 cc = CRF_LT;
2329 } else if (exp_a > exp_b) {
2330 cc = CRF_GT;
2331 } else {
2332 cc = CRF_EQ;
2336 env->fpscr &= ~FP_FPCC;
2337 env->fpscr |= cc << FPSCR_FPCC;
2338 env->crf[BF(opcode)] = cc;
2340 do_float_check_status(env, GETPC());
2343 void helper_xscmpexpqp(CPUPPCState *env, uint32_t opcode,
2344 ppc_vsr_t *xa, ppc_vsr_t *xb)
2346 int64_t exp_a, exp_b;
2347 uint32_t cc;
2349 exp_a = extract64(xa->VsrD(0), 48, 15);
2350 exp_b = extract64(xb->VsrD(0), 48, 15);
2352 if (unlikely(float128_is_any_nan(xa->f128) ||
2353 float128_is_any_nan(xb->f128))) {
2354 cc = CRF_SO;
2355 } else {
2356 if (exp_a < exp_b) {
2357 cc = CRF_LT;
2358 } else if (exp_a > exp_b) {
2359 cc = CRF_GT;
2360 } else {
2361 cc = CRF_EQ;
2365 env->fpscr &= ~FP_FPCC;
2366 env->fpscr |= cc << FPSCR_FPCC;
2367 env->crf[BF(opcode)] = cc;
2369 do_float_check_status(env, GETPC());
2372 static inline void do_scalar_cmp(CPUPPCState *env, ppc_vsr_t *xa, ppc_vsr_t *xb,
2373 int crf_idx, bool ordered)
2375 uint32_t cc;
2376 bool vxsnan_flag = false, vxvc_flag = false;
2378 helper_reset_fpstatus(env);
2380 switch (float64_compare(xa->VsrD(0), xb->VsrD(0), &env->fp_status)) {
2381 case float_relation_less:
2382 cc = CRF_LT;
2383 break;
2384 case float_relation_equal:
2385 cc = CRF_EQ;
2386 break;
2387 case float_relation_greater:
2388 cc = CRF_GT;
2389 break;
2390 case float_relation_unordered:
2391 cc = CRF_SO;
2393 if (float64_is_signaling_nan(xa->VsrD(0), &env->fp_status) ||
2394 float64_is_signaling_nan(xb->VsrD(0), &env->fp_status)) {
2395 vxsnan_flag = true;
2396 if (fpscr_ve == 0 && ordered) {
2397 vxvc_flag = true;
2399 } else if (float64_is_quiet_nan(xa->VsrD(0), &env->fp_status) ||
2400 float64_is_quiet_nan(xb->VsrD(0), &env->fp_status)) {
2401 if (ordered) {
2402 vxvc_flag = true;
2406 break;
2407 default:
2408 g_assert_not_reached();
2411 env->fpscr &= ~FP_FPCC;
2412 env->fpscr |= cc << FPSCR_FPCC;
2413 env->crf[crf_idx] = cc;
2415 if (vxsnan_flag) {
2416 float_invalid_op_vxsnan(env, GETPC());
2418 if (vxvc_flag) {
2419 float_invalid_op_vxvc(env, 0, GETPC());
2422 do_float_check_status(env, GETPC());
2425 void helper_xscmpodp(CPUPPCState *env, uint32_t opcode, ppc_vsr_t *xa,
2426 ppc_vsr_t *xb)
2428 do_scalar_cmp(env, xa, xb, BF(opcode), true);
2431 void helper_xscmpudp(CPUPPCState *env, uint32_t opcode, ppc_vsr_t *xa,
2432 ppc_vsr_t *xb)
2434 do_scalar_cmp(env, xa, xb, BF(opcode), false);
2437 static inline void do_scalar_cmpq(CPUPPCState *env, ppc_vsr_t *xa,
2438 ppc_vsr_t *xb, int crf_idx, bool ordered)
2440 uint32_t cc;
2441 bool vxsnan_flag = false, vxvc_flag = false;
2443 helper_reset_fpstatus(env);
2445 switch (float128_compare(xa->f128, xb->f128, &env->fp_status)) {
2446 case float_relation_less:
2447 cc = CRF_LT;
2448 break;
2449 case float_relation_equal:
2450 cc = CRF_EQ;
2451 break;
2452 case float_relation_greater:
2453 cc = CRF_GT;
2454 break;
2455 case float_relation_unordered:
2456 cc = CRF_SO;
2458 if (float128_is_signaling_nan(xa->f128, &env->fp_status) ||
2459 float128_is_signaling_nan(xb->f128, &env->fp_status)) {
2460 vxsnan_flag = true;
2461 if (fpscr_ve == 0 && ordered) {
2462 vxvc_flag = true;
2464 } else if (float128_is_quiet_nan(xa->f128, &env->fp_status) ||
2465 float128_is_quiet_nan(xb->f128, &env->fp_status)) {
2466 if (ordered) {
2467 vxvc_flag = true;
2471 break;
2472 default:
2473 g_assert_not_reached();
2476 env->fpscr &= ~FP_FPCC;
2477 env->fpscr |= cc << FPSCR_FPCC;
2478 env->crf[crf_idx] = cc;
2480 if (vxsnan_flag) {
2481 float_invalid_op_vxsnan(env, GETPC());
2483 if (vxvc_flag) {
2484 float_invalid_op_vxvc(env, 0, GETPC());
2487 do_float_check_status(env, GETPC());
2490 void helper_xscmpoqp(CPUPPCState *env, uint32_t opcode, ppc_vsr_t *xa,
2491 ppc_vsr_t *xb)
2493 do_scalar_cmpq(env, xa, xb, BF(opcode), true);
2496 void helper_xscmpuqp(CPUPPCState *env, uint32_t opcode, ppc_vsr_t *xa,
2497 ppc_vsr_t *xb)
2499 do_scalar_cmpq(env, xa, xb, BF(opcode), false);
2503 * VSX_MAX_MIN - VSX floating point maximum/minimum
2504 * name - instruction mnemonic
2505 * op - operation (max or min)
2506 * nels - number of elements (1, 2 or 4)
2507 * tp - type (float32 or float64)
2508 * fld - vsr_t field (VsrD(*) or VsrW(*))
2510 #define VSX_MAX_MIN(name, op, nels, tp, fld) \
2511 void helper_##name(CPUPPCState *env, ppc_vsr_t *xt, \
2512 ppc_vsr_t *xa, ppc_vsr_t *xb) \
2514 ppc_vsr_t t = { }; \
2515 int i; \
2517 for (i = 0; i < nels; i++) { \
2518 t.fld = tp##_##op(xa->fld, xb->fld, &env->fp_status); \
2519 if (unlikely(tp##_is_signaling_nan(xa->fld, &env->fp_status) || \
2520 tp##_is_signaling_nan(xb->fld, &env->fp_status))) { \
2521 float_invalid_op_vxsnan(env, GETPC()); \
2525 *xt = t; \
2526 do_float_check_status(env, GETPC()); \
2529 VSX_MAX_MIN(xsmaxdp, maxnum, 1, float64, VsrD(0))
2530 VSX_MAX_MIN(xvmaxdp, maxnum, 2, float64, VsrD(i))
2531 VSX_MAX_MIN(xvmaxsp, maxnum, 4, float32, VsrW(i))
2532 VSX_MAX_MIN(xsmindp, minnum, 1, float64, VsrD(0))
2533 VSX_MAX_MIN(xvmindp, minnum, 2, float64, VsrD(i))
2534 VSX_MAX_MIN(xvminsp, minnum, 4, float32, VsrW(i))
2536 #define VSX_MAX_MINC(name, max, tp, fld) \
2537 void helper_##name(CPUPPCState *env, \
2538 ppc_vsr_t *xt, ppc_vsr_t *xa, ppc_vsr_t *xb) \
2540 ppc_vsr_t t = { }; \
2541 bool first; \
2543 if (max) { \
2544 first = tp##_le_quiet(xb->fld, xa->fld, &env->fp_status); \
2545 } else { \
2546 first = tp##_lt_quiet(xa->fld, xb->fld, &env->fp_status); \
2549 if (first) { \
2550 t.fld = xa->fld; \
2551 } else { \
2552 t.fld = xb->fld; \
2553 if (env->fp_status.float_exception_flags & float_flag_invalid_snan) { \
2554 float_invalid_op_vxsnan(env, GETPC()); \
2558 *xt = t; \
2561 VSX_MAX_MINC(XSMAXCDP, true, float64, VsrD(0));
2562 VSX_MAX_MINC(XSMINCDP, false, float64, VsrD(0));
2563 VSX_MAX_MINC(XSMAXCQP, true, float128, f128);
2564 VSX_MAX_MINC(XSMINCQP, false, float128, f128);
2566 #define VSX_MAX_MINJ(name, max) \
2567 void helper_##name(CPUPPCState *env, \
2568 ppc_vsr_t *xt, ppc_vsr_t *xa, ppc_vsr_t *xb) \
2570 ppc_vsr_t t = { }; \
2571 bool vxsnan_flag = false, vex_flag = false; \
2573 if (unlikely(float64_is_any_nan(xa->VsrD(0)))) { \
2574 if (float64_is_signaling_nan(xa->VsrD(0), &env->fp_status)) { \
2575 vxsnan_flag = true; \
2577 t.VsrD(0) = xa->VsrD(0); \
2578 } else if (unlikely(float64_is_any_nan(xb->VsrD(0)))) { \
2579 if (float64_is_signaling_nan(xb->VsrD(0), &env->fp_status)) { \
2580 vxsnan_flag = true; \
2582 t.VsrD(0) = xb->VsrD(0); \
2583 } else if (float64_is_zero(xa->VsrD(0)) && \
2584 float64_is_zero(xb->VsrD(0))) { \
2585 if (max) { \
2586 if (!float64_is_neg(xa->VsrD(0)) || \
2587 !float64_is_neg(xb->VsrD(0))) { \
2588 t.VsrD(0) = 0ULL; \
2589 } else { \
2590 t.VsrD(0) = 0x8000000000000000ULL; \
2592 } else { \
2593 if (float64_is_neg(xa->VsrD(0)) || \
2594 float64_is_neg(xb->VsrD(0))) { \
2595 t.VsrD(0) = 0x8000000000000000ULL; \
2596 } else { \
2597 t.VsrD(0) = 0ULL; \
2600 } else if ((max && \
2601 !float64_lt(xa->VsrD(0), xb->VsrD(0), &env->fp_status)) || \
2602 (!max && \
2603 float64_lt(xa->VsrD(0), xb->VsrD(0), &env->fp_status))) { \
2604 t.VsrD(0) = xa->VsrD(0); \
2605 } else { \
2606 t.VsrD(0) = xb->VsrD(0); \
2609 vex_flag = fpscr_ve & vxsnan_flag; \
2610 if (vxsnan_flag) { \
2611 float_invalid_op_vxsnan(env, GETPC()); \
2613 if (!vex_flag) { \
2614 *xt = t; \
2618 VSX_MAX_MINJ(XSMAXJDP, 1);
2619 VSX_MAX_MINJ(XSMINJDP, 0);
2622 * VSX_CMP - VSX floating point compare
2623 * op - instruction mnemonic
2624 * nels - number of elements (1, 2 or 4)
2625 * tp - type (float32 or float64)
2626 * fld - vsr_t field (VsrD(*) or VsrW(*))
2627 * cmp - comparison operation
2628 * svxvc - set VXVC bit
2629 * exp - expected result of comparison
2631 #define VSX_CMP(op, nels, tp, fld, cmp, svxvc, exp) \
2632 uint32_t helper_##op(CPUPPCState *env, ppc_vsr_t *xt, \
2633 ppc_vsr_t *xa, ppc_vsr_t *xb) \
2635 ppc_vsr_t t = *xt; \
2636 uint32_t crf6 = 0; \
2637 int i; \
2638 int all_true = 1; \
2639 int all_false = 1; \
2641 for (i = 0; i < nels; i++) { \
2642 if (unlikely(tp##_is_any_nan(xa->fld) || \
2643 tp##_is_any_nan(xb->fld))) { \
2644 if (tp##_is_signaling_nan(xa->fld, &env->fp_status) || \
2645 tp##_is_signaling_nan(xb->fld, &env->fp_status)) { \
2646 float_invalid_op_vxsnan(env, GETPC()); \
2648 if (svxvc) { \
2649 float_invalid_op_vxvc(env, 0, GETPC()); \
2651 t.fld = 0; \
2652 all_true = 0; \
2653 } else { \
2654 if (tp##_##cmp(xb->fld, xa->fld, &env->fp_status) == exp) { \
2655 t.fld = -1; \
2656 all_false = 0; \
2657 } else { \
2658 t.fld = 0; \
2659 all_true = 0; \
2664 *xt = t; \
2665 crf6 = (all_true ? 0x8 : 0) | (all_false ? 0x2 : 0); \
2666 return crf6; \
2669 VSX_CMP(xvcmpeqdp, 2, float64, VsrD(i), eq, 0, 1)
2670 VSX_CMP(xvcmpgedp, 2, float64, VsrD(i), le, 1, 1)
2671 VSX_CMP(xvcmpgtdp, 2, float64, VsrD(i), lt, 1, 1)
2672 VSX_CMP(xvcmpnedp, 2, float64, VsrD(i), eq, 0, 0)
2673 VSX_CMP(xvcmpeqsp, 4, float32, VsrW(i), eq, 0, 1)
2674 VSX_CMP(xvcmpgesp, 4, float32, VsrW(i), le, 1, 1)
2675 VSX_CMP(xvcmpgtsp, 4, float32, VsrW(i), lt, 1, 1)
2676 VSX_CMP(xvcmpnesp, 4, float32, VsrW(i), eq, 0, 0)
2679 * VSX_CVT_FP_TO_FP - VSX floating point/floating point conversion
2680 * op - instruction mnemonic
2681 * nels - number of elements (1, 2 or 4)
2682 * stp - source type (float32 or float64)
2683 * ttp - target type (float32 or float64)
2684 * sfld - source vsr_t field
2685 * tfld - target vsr_t field (f32 or f64)
2686 * sfprf - set FPRF
2688 #define VSX_CVT_FP_TO_FP(op, nels, stp, ttp, sfld, tfld, sfprf) \
2689 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
2691 ppc_vsr_t t = { }; \
2692 int i; \
2694 for (i = 0; i < nels; i++) { \
2695 t.tfld = stp##_to_##ttp(xb->sfld, &env->fp_status); \
2696 if (unlikely(stp##_is_signaling_nan(xb->sfld, \
2697 &env->fp_status))) { \
2698 float_invalid_op_vxsnan(env, GETPC()); \
2699 t.tfld = ttp##_snan_to_qnan(t.tfld); \
2701 if (sfprf) { \
2702 helper_compute_fprf_##ttp(env, t.tfld); \
2706 *xt = t; \
2707 do_float_check_status(env, GETPC()); \
2710 VSX_CVT_FP_TO_FP(xscvdpsp, 1, float64, float32, VsrD(0), VsrW(0), 1)
2711 VSX_CVT_FP_TO_FP(xscvspdp, 1, float32, float64, VsrW(0), VsrD(0), 1)
2712 VSX_CVT_FP_TO_FP(xvcvdpsp, 2, float64, float32, VsrD(i), VsrW(2 * i), 0)
2713 VSX_CVT_FP_TO_FP(xvcvspdp, 2, float32, float64, VsrW(2 * i), VsrD(i), 0)
2716 * VSX_CVT_FP_TO_FP_VECTOR - VSX floating point/floating point conversion
2717 * op - instruction mnemonic
2718 * nels - number of elements (1, 2 or 4)
2719 * stp - source type (float32 or float64)
2720 * ttp - target type (float32 or float64)
2721 * sfld - source vsr_t field
2722 * tfld - target vsr_t field (f32 or f64)
2723 * sfprf - set FPRF
2725 #define VSX_CVT_FP_TO_FP_VECTOR(op, nels, stp, ttp, sfld, tfld, sfprf) \
2726 void helper_##op(CPUPPCState *env, uint32_t opcode, \
2727 ppc_vsr_t *xt, ppc_vsr_t *xb) \
2729 ppc_vsr_t t = *xt; \
2730 int i; \
2732 for (i = 0; i < nels; i++) { \
2733 t.tfld = stp##_to_##ttp(xb->sfld, &env->fp_status); \
2734 if (unlikely(stp##_is_signaling_nan(xb->sfld, \
2735 &env->fp_status))) { \
2736 float_invalid_op_vxsnan(env, GETPC()); \
2737 t.tfld = ttp##_snan_to_qnan(t.tfld); \
2739 if (sfprf) { \
2740 helper_compute_fprf_##ttp(env, t.tfld); \
2744 *xt = t; \
2745 do_float_check_status(env, GETPC()); \
2748 VSX_CVT_FP_TO_FP_VECTOR(xscvdpqp, 1, float64, float128, VsrD(0), f128, 1)
2751 * VSX_CVT_FP_TO_FP_HP - VSX floating point/floating point conversion
2752 * involving one half precision value
2753 * op - instruction mnemonic
2754 * nels - number of elements (1, 2 or 4)
2755 * stp - source type
2756 * ttp - target type
2757 * sfld - source vsr_t field
2758 * tfld - target vsr_t field
2759 * sfprf - set FPRF
2761 #define VSX_CVT_FP_TO_FP_HP(op, nels, stp, ttp, sfld, tfld, sfprf) \
2762 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
2764 ppc_vsr_t t = { }; \
2765 int i; \
2767 for (i = 0; i < nels; i++) { \
2768 t.tfld = stp##_to_##ttp(xb->sfld, 1, &env->fp_status); \
2769 if (unlikely(stp##_is_signaling_nan(xb->sfld, \
2770 &env->fp_status))) { \
2771 float_invalid_op_vxsnan(env, GETPC()); \
2772 t.tfld = ttp##_snan_to_qnan(t.tfld); \
2774 if (sfprf) { \
2775 helper_compute_fprf_##ttp(env, t.tfld); \
2779 *xt = t; \
2780 do_float_check_status(env, GETPC()); \
2783 VSX_CVT_FP_TO_FP_HP(xscvdphp, 1, float64, float16, VsrD(0), VsrH(3), 1)
2784 VSX_CVT_FP_TO_FP_HP(xscvhpdp, 1, float16, float64, VsrH(3), VsrD(0), 1)
2785 VSX_CVT_FP_TO_FP_HP(xvcvsphp, 4, float32, float16, VsrW(i), VsrH(2 * i + 1), 0)
2786 VSX_CVT_FP_TO_FP_HP(xvcvhpsp, 4, float16, float32, VsrH(2 * i + 1), VsrW(i), 0)
2788 void helper_XVCVSPBF16(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb)
2790 ppc_vsr_t t = { };
2791 int i, status;
2793 for (i = 0; i < 4; i++) {
2794 t.VsrH(2 * i + 1) = float32_to_bfloat16(xb->VsrW(i), &env->fp_status);
2797 status = get_float_exception_flags(&env->fp_status);
2798 if (unlikely(status & float_flag_invalid_snan)) {
2799 float_invalid_op_vxsnan(env, GETPC());
2802 *xt = t;
2803 do_float_check_status(env, GETPC());
2806 void helper_XSCVQPDP(CPUPPCState *env, uint32_t ro, ppc_vsr_t *xt,
2807 ppc_vsr_t *xb)
2809 ppc_vsr_t t = { };
2810 float_status tstat;
2812 tstat = env->fp_status;
2813 if (ro != 0) {
2814 tstat.float_rounding_mode = float_round_to_odd;
2817 t.VsrD(0) = float128_to_float64(xb->f128, &tstat);
2818 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
2819 if (unlikely(float128_is_signaling_nan(xb->f128, &tstat))) {
2820 float_invalid_op_vxsnan(env, GETPC());
2821 t.VsrD(0) = float64_snan_to_qnan(t.VsrD(0));
2823 helper_compute_fprf_float64(env, t.VsrD(0));
2825 *xt = t;
2826 do_float_check_status(env, GETPC());
2829 uint64_t helper_xscvdpspn(CPUPPCState *env, uint64_t xb)
2831 uint64_t result, sign, exp, frac;
2833 float_status tstat = env->fp_status;
2834 set_float_exception_flags(0, &tstat);
2836 sign = extract64(xb, 63, 1);
2837 exp = extract64(xb, 52, 11);
2838 frac = extract64(xb, 0, 52) | 0x10000000000000ULL;
2840 if (unlikely(exp == 0 && extract64(frac, 0, 52) != 0)) {
2841 /* DP denormal operand. */
2842 /* Exponent override to DP min exp. */
2843 exp = 1;
2844 /* Implicit bit override to 0. */
2845 frac = deposit64(frac, 53, 1, 0);
2848 if (unlikely(exp < 897 && frac != 0)) {
2849 /* SP tiny operand. */
2850 if (897 - exp > 63) {
2851 frac = 0;
2852 } else {
2853 /* Denormalize until exp = SP min exp. */
2854 frac >>= (897 - exp);
2856 /* Exponent override to SP min exp - 1. */
2857 exp = 896;
2860 result = sign << 31;
2861 result |= extract64(exp, 10, 1) << 30;
2862 result |= extract64(exp, 0, 7) << 23;
2863 result |= extract64(frac, 29, 23);
2865 /* hardware replicates result to both words of the doubleword result. */
2866 return (result << 32) | result;
2869 uint64_t helper_xscvspdpn(CPUPPCState *env, uint64_t xb)
2871 return helper_todouble(xb >> 32);
2875 * VSX_CVT_FP_TO_INT - VSX floating point to integer conversion
2876 * op - instruction mnemonic
2877 * nels - number of elements (1, 2 or 4)
2878 * stp - source type (float32 or float64)
2879 * ttp - target type (int32, uint32, int64 or uint64)
2880 * sfld - source vsr_t field
2881 * tfld - target vsr_t field
2882 * rnan - resulting NaN
2884 #define VSX_CVT_FP_TO_INT(op, nels, stp, ttp, sfld, tfld, rnan) \
2885 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
2887 int all_flags = env->fp_status.float_exception_flags, flags; \
2888 ppc_vsr_t t = { }; \
2889 int i; \
2891 for (i = 0; i < nels; i++) { \
2892 env->fp_status.float_exception_flags = 0; \
2893 t.tfld = stp##_to_##ttp##_round_to_zero(xb->sfld, &env->fp_status); \
2894 flags = env->fp_status.float_exception_flags; \
2895 if (unlikely(flags & float_flag_invalid)) { \
2896 t.tfld = float_invalid_cvt(env, flags, t.tfld, rnan, 0, GETPC());\
2898 all_flags |= flags; \
2901 *xt = t; \
2902 env->fp_status.float_exception_flags = all_flags; \
2903 do_float_check_status(env, GETPC()); \
2906 VSX_CVT_FP_TO_INT(xscvdpsxds, 1, float64, int64, VsrD(0), VsrD(0), \
2907 0x8000000000000000ULL)
2908 VSX_CVT_FP_TO_INT(xscvdpsxws, 1, float64, int32, VsrD(0), VsrW(1), \
2909 0x80000000U)
2910 VSX_CVT_FP_TO_INT(xscvdpuxds, 1, float64, uint64, VsrD(0), VsrD(0), 0ULL)
2911 VSX_CVT_FP_TO_INT(xscvdpuxws, 1, float64, uint32, VsrD(0), VsrW(1), 0U)
2912 VSX_CVT_FP_TO_INT(xvcvdpsxds, 2, float64, int64, VsrD(i), VsrD(i), \
2913 0x8000000000000000ULL)
2914 VSX_CVT_FP_TO_INT(xvcvdpsxws, 2, float64, int32, VsrD(i), VsrW(2 * i), \
2915 0x80000000U)
2916 VSX_CVT_FP_TO_INT(xvcvdpuxds, 2, float64, uint64, VsrD(i), VsrD(i), 0ULL)
2917 VSX_CVT_FP_TO_INT(xvcvdpuxws, 2, float64, uint32, VsrD(i), VsrW(2 * i), 0U)
2918 VSX_CVT_FP_TO_INT(xvcvspsxds, 2, float32, int64, VsrW(2 * i), VsrD(i), \
2919 0x8000000000000000ULL)
2920 VSX_CVT_FP_TO_INT(xvcvspsxws, 4, float32, int32, VsrW(i), VsrW(i), 0x80000000U)
2921 VSX_CVT_FP_TO_INT(xvcvspuxds, 2, float32, uint64, VsrW(2 * i), VsrD(i), 0ULL)
2922 VSX_CVT_FP_TO_INT(xvcvspuxws, 4, float32, uint32, VsrW(i), VsrW(i), 0U)
2925 * VSX_CVT_FP_TO_INT_VECTOR - VSX floating point to integer conversion
2926 * op - instruction mnemonic
2927 * stp - source type (float32 or float64)
2928 * ttp - target type (int32, uint32, int64 or uint64)
2929 * sfld - source vsr_t field
2930 * tfld - target vsr_t field
2931 * rnan - resulting NaN
2933 #define VSX_CVT_FP_TO_INT_VECTOR(op, stp, ttp, sfld, tfld, rnan) \
2934 void helper_##op(CPUPPCState *env, uint32_t opcode, \
2935 ppc_vsr_t *xt, ppc_vsr_t *xb) \
2937 ppc_vsr_t t = { }; \
2938 int flags; \
2940 t.tfld = stp##_to_##ttp##_round_to_zero(xb->sfld, &env->fp_status); \
2941 flags = get_float_exception_flags(&env->fp_status); \
2942 if (flags & float_flag_invalid) { \
2943 t.tfld = float_invalid_cvt(env, flags, t.tfld, rnan, 0, GETPC()); \
2946 *xt = t; \
2947 do_float_check_status(env, GETPC()); \
2950 VSX_CVT_FP_TO_INT_VECTOR(xscvqpsdz, float128, int64, f128, VsrD(0), \
2951 0x8000000000000000ULL)
2953 VSX_CVT_FP_TO_INT_VECTOR(xscvqpswz, float128, int32, f128, VsrD(0), \
2954 0xffffffff80000000ULL)
2955 VSX_CVT_FP_TO_INT_VECTOR(xscvqpudz, float128, uint64, f128, VsrD(0), 0x0ULL)
2956 VSX_CVT_FP_TO_INT_VECTOR(xscvqpuwz, float128, uint32, f128, VsrD(0), 0x0ULL)
2959 * VSX_CVT_INT_TO_FP - VSX integer to floating point conversion
2960 * op - instruction mnemonic
2961 * nels - number of elements (1, 2 or 4)
2962 * stp - source type (int32, uint32, int64 or uint64)
2963 * ttp - target type (float32 or float64)
2964 * sfld - source vsr_t field
2965 * tfld - target vsr_t field
2966 * jdef - definition of the j index (i or 2*i)
2967 * sfprf - set FPRF
2969 #define VSX_CVT_INT_TO_FP(op, nels, stp, ttp, sfld, tfld, sfprf, r2sp) \
2970 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
2972 ppc_vsr_t t = { }; \
2973 int i; \
2975 for (i = 0; i < nels; i++) { \
2976 t.tfld = stp##_to_##ttp(xb->sfld, &env->fp_status); \
2977 if (r2sp) { \
2978 t.tfld = do_frsp(env, t.tfld, GETPC()); \
2980 if (sfprf) { \
2981 helper_compute_fprf_float64(env, t.tfld); \
2985 *xt = t; \
2986 do_float_check_status(env, GETPC()); \
2989 VSX_CVT_INT_TO_FP(xscvsxddp, 1, int64, float64, VsrD(0), VsrD(0), 1, 0)
2990 VSX_CVT_INT_TO_FP(xscvuxddp, 1, uint64, float64, VsrD(0), VsrD(0), 1, 0)
2991 VSX_CVT_INT_TO_FP(xscvsxdsp, 1, int64, float64, VsrD(0), VsrD(0), 1, 1)
2992 VSX_CVT_INT_TO_FP(xscvuxdsp, 1, uint64, float64, VsrD(0), VsrD(0), 1, 1)
2993 VSX_CVT_INT_TO_FP(xvcvsxddp, 2, int64, float64, VsrD(i), VsrD(i), 0, 0)
2994 VSX_CVT_INT_TO_FP(xvcvuxddp, 2, uint64, float64, VsrD(i), VsrD(i), 0, 0)
2995 VSX_CVT_INT_TO_FP(xvcvsxwdp, 2, int32, float64, VsrW(2 * i), VsrD(i), 0, 0)
2996 VSX_CVT_INT_TO_FP(xvcvuxwdp, 2, uint64, float64, VsrW(2 * i), VsrD(i), 0, 0)
2997 VSX_CVT_INT_TO_FP(xvcvsxdsp, 2, int64, float32, VsrD(i), VsrW(2 * i), 0, 0)
2998 VSX_CVT_INT_TO_FP(xvcvuxdsp, 2, uint64, float32, VsrD(i), VsrW(2 * i), 0, 0)
2999 VSX_CVT_INT_TO_FP(xvcvsxwsp, 4, int32, float32, VsrW(i), VsrW(i), 0, 0)
3000 VSX_CVT_INT_TO_FP(xvcvuxwsp, 4, uint32, float32, VsrW(i), VsrW(i), 0, 0)
3003 * VSX_CVT_INT_TO_FP_VECTOR - VSX integer to floating point conversion
3004 * op - instruction mnemonic
3005 * stp - source type (int32, uint32, int64 or uint64)
3006 * ttp - target type (float32 or float64)
3007 * sfld - source vsr_t field
3008 * tfld - target vsr_t field
3010 #define VSX_CVT_INT_TO_FP_VECTOR(op, stp, ttp, sfld, tfld) \
3011 void helper_##op(CPUPPCState *env, uint32_t opcode, \
3012 ppc_vsr_t *xt, ppc_vsr_t *xb) \
3014 ppc_vsr_t t = *xt; \
3016 t.tfld = stp##_to_##ttp(xb->sfld, &env->fp_status); \
3017 helper_compute_fprf_##ttp(env, t.tfld); \
3019 *xt = t; \
3020 do_float_check_status(env, GETPC()); \
3023 VSX_CVT_INT_TO_FP_VECTOR(xscvsdqp, int64, float128, VsrD(0), f128)
3024 VSX_CVT_INT_TO_FP_VECTOR(xscvudqp, uint64, float128, VsrD(0), f128)
3027 * For "use current rounding mode", define a value that will not be
3028 * one of the existing rounding model enums.
3030 #define FLOAT_ROUND_CURRENT (float_round_nearest_even + float_round_down + \
3031 float_round_up + float_round_to_zero)
3034 * VSX_ROUND - VSX floating point round
3035 * op - instruction mnemonic
3036 * nels - number of elements (1, 2 or 4)
3037 * tp - type (float32 or float64)
3038 * fld - vsr_t field (VsrD(*) or VsrW(*))
3039 * rmode - rounding mode
3040 * sfprf - set FPRF
3042 #define VSX_ROUND(op, nels, tp, fld, rmode, sfprf) \
3043 void helper_##op(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb) \
3045 ppc_vsr_t t = { }; \
3046 int i; \
3047 FloatRoundMode curr_rounding_mode; \
3049 if (rmode != FLOAT_ROUND_CURRENT) { \
3050 curr_rounding_mode = get_float_rounding_mode(&env->fp_status); \
3051 set_float_rounding_mode(rmode, &env->fp_status); \
3054 for (i = 0; i < nels; i++) { \
3055 if (unlikely(tp##_is_signaling_nan(xb->fld, \
3056 &env->fp_status))) { \
3057 float_invalid_op_vxsnan(env, GETPC()); \
3058 t.fld = tp##_snan_to_qnan(xb->fld); \
3059 } else { \
3060 t.fld = tp##_round_to_int(xb->fld, &env->fp_status); \
3062 if (sfprf) { \
3063 helper_compute_fprf_float64(env, t.fld); \
3067 /* \
3068 * If this is not a "use current rounding mode" instruction, \
3069 * then inhibit setting of the XX bit and restore rounding \
3070 * mode from FPSCR \
3071 */ \
3072 if (rmode != FLOAT_ROUND_CURRENT) { \
3073 set_float_rounding_mode(curr_rounding_mode, &env->fp_status); \
3074 env->fp_status.float_exception_flags &= ~float_flag_inexact; \
3077 *xt = t; \
3078 do_float_check_status(env, GETPC()); \
3081 VSX_ROUND(xsrdpi, 1, float64, VsrD(0), float_round_ties_away, 1)
3082 VSX_ROUND(xsrdpic, 1, float64, VsrD(0), FLOAT_ROUND_CURRENT, 1)
3083 VSX_ROUND(xsrdpim, 1, float64, VsrD(0), float_round_down, 1)
3084 VSX_ROUND(xsrdpip, 1, float64, VsrD(0), float_round_up, 1)
3085 VSX_ROUND(xsrdpiz, 1, float64, VsrD(0), float_round_to_zero, 1)
3087 VSX_ROUND(xvrdpi, 2, float64, VsrD(i), float_round_ties_away, 0)
3088 VSX_ROUND(xvrdpic, 2, float64, VsrD(i), FLOAT_ROUND_CURRENT, 0)
3089 VSX_ROUND(xvrdpim, 2, float64, VsrD(i), float_round_down, 0)
3090 VSX_ROUND(xvrdpip, 2, float64, VsrD(i), float_round_up, 0)
3091 VSX_ROUND(xvrdpiz, 2, float64, VsrD(i), float_round_to_zero, 0)
3093 VSX_ROUND(xvrspi, 4, float32, VsrW(i), float_round_ties_away, 0)
3094 VSX_ROUND(xvrspic, 4, float32, VsrW(i), FLOAT_ROUND_CURRENT, 0)
3095 VSX_ROUND(xvrspim, 4, float32, VsrW(i), float_round_down, 0)
3096 VSX_ROUND(xvrspip, 4, float32, VsrW(i), float_round_up, 0)
3097 VSX_ROUND(xvrspiz, 4, float32, VsrW(i), float_round_to_zero, 0)
3099 uint64_t helper_xsrsp(CPUPPCState *env, uint64_t xb)
3101 helper_reset_fpstatus(env);
3103 uint64_t xt = do_frsp(env, xb, GETPC());
3105 helper_compute_fprf_float64(env, xt);
3106 do_float_check_status(env, GETPC());
3107 return xt;
3110 void helper_xvxsigsp(CPUPPCState *env, ppc_vsr_t *xt, ppc_vsr_t *xb)
3112 ppc_vsr_t t = { };
3113 uint32_t exp, i, fraction;
3115 for (i = 0; i < 4; i++) {
3116 exp = (xb->VsrW(i) >> 23) & 0xFF;
3117 fraction = xb->VsrW(i) & 0x7FFFFF;
3118 if (exp != 0 && exp != 255) {
3119 t.VsrW(i) = fraction | 0x00800000;
3120 } else {
3121 t.VsrW(i) = fraction;
3124 *xt = t;
3128 * VSX_TEST_DC - VSX floating point test data class
3129 * op - instruction mnemonic
3130 * nels - number of elements (1, 2 or 4)
3131 * xbn - VSR register number
3132 * tp - type (float32 or float64)
3133 * fld - vsr_t field (VsrD(*) or VsrW(*))
3134 * tfld - target vsr_t field (VsrD(*) or VsrW(*))
3135 * fld_max - target field max
3136 * scrf - set result in CR and FPCC
3138 #define VSX_TEST_DC(op, nels, xbn, tp, fld, tfld, fld_max, scrf) \
3139 void helper_##op(CPUPPCState *env, uint32_t opcode) \
3141 ppc_vsr_t *xt = &env->vsr[xT(opcode)]; \
3142 ppc_vsr_t *xb = &env->vsr[xbn]; \
3143 ppc_vsr_t t = { }; \
3144 uint32_t i, sign, dcmx; \
3145 uint32_t cc, match = 0; \
3147 if (!scrf) { \
3148 dcmx = DCMX_XV(opcode); \
3149 } else { \
3150 t = *xt; \
3151 dcmx = DCMX(opcode); \
3154 for (i = 0; i < nels; i++) { \
3155 sign = tp##_is_neg(xb->fld); \
3156 if (tp##_is_any_nan(xb->fld)) { \
3157 match = extract32(dcmx, 6, 1); \
3158 } else if (tp##_is_infinity(xb->fld)) { \
3159 match = extract32(dcmx, 4 + !sign, 1); \
3160 } else if (tp##_is_zero(xb->fld)) { \
3161 match = extract32(dcmx, 2 + !sign, 1); \
3162 } else if (tp##_is_zero_or_denormal(xb->fld)) { \
3163 match = extract32(dcmx, 0 + !sign, 1); \
3166 if (scrf) { \
3167 cc = sign << CRF_LT_BIT | match << CRF_EQ_BIT; \
3168 env->fpscr &= ~FP_FPCC; \
3169 env->fpscr |= cc << FPSCR_FPCC; \
3170 env->crf[BF(opcode)] = cc; \
3171 } else { \
3172 t.tfld = match ? fld_max : 0; \
3174 match = 0; \
3176 if (!scrf) { \
3177 *xt = t; \
3181 VSX_TEST_DC(xvtstdcdp, 2, xB(opcode), float64, VsrD(i), VsrD(i), UINT64_MAX, 0)
3182 VSX_TEST_DC(xvtstdcsp, 4, xB(opcode), float32, VsrW(i), VsrW(i), UINT32_MAX, 0)
3183 VSX_TEST_DC(xststdcdp, 1, xB(opcode), float64, VsrD(0), VsrD(0), 0, 1)
3184 VSX_TEST_DC(xststdcqp, 1, (rB(opcode) + 32), float128, f128, VsrD(0), 0, 1)
3186 void helper_xststdcsp(CPUPPCState *env, uint32_t opcode, ppc_vsr_t *xb)
3188 uint32_t dcmx, sign, exp;
3189 uint32_t cc, match = 0, not_sp = 0;
3190 float64 arg = xb->VsrD(0);
3191 float64 arg_sp;
3193 dcmx = DCMX(opcode);
3194 exp = (arg >> 52) & 0x7FF;
3195 sign = float64_is_neg(arg);
3197 if (float64_is_any_nan(arg)) {
3198 match = extract32(dcmx, 6, 1);
3199 } else if (float64_is_infinity(arg)) {
3200 match = extract32(dcmx, 4 + !sign, 1);
3201 } else if (float64_is_zero(arg)) {
3202 match = extract32(dcmx, 2 + !sign, 1);
3203 } else if (float64_is_zero_or_denormal(arg) || (exp > 0 && exp < 0x381)) {
3204 match = extract32(dcmx, 0 + !sign, 1);
3207 arg_sp = helper_todouble(helper_tosingle(arg));
3208 not_sp = arg != arg_sp;
3210 cc = sign << CRF_LT_BIT | match << CRF_EQ_BIT | not_sp << CRF_SO_BIT;
3211 env->fpscr &= ~FP_FPCC;
3212 env->fpscr |= cc << FPSCR_FPCC;
3213 env->crf[BF(opcode)] = cc;
3216 void helper_xsrqpi(CPUPPCState *env, uint32_t opcode,
3217 ppc_vsr_t *xt, ppc_vsr_t *xb)
3219 ppc_vsr_t t = { };
3220 uint8_t r = Rrm(opcode);
3221 uint8_t ex = Rc(opcode);
3222 uint8_t rmc = RMC(opcode);
3223 uint8_t rmode = 0;
3224 float_status tstat;
3226 helper_reset_fpstatus(env);
3228 if (r == 0 && rmc == 0) {
3229 rmode = float_round_ties_away;
3230 } else if (r == 0 && rmc == 0x3) {
3231 rmode = fpscr_rn;
3232 } else if (r == 1) {
3233 switch (rmc) {
3234 case 0:
3235 rmode = float_round_nearest_even;
3236 break;
3237 case 1:
3238 rmode = float_round_to_zero;
3239 break;
3240 case 2:
3241 rmode = float_round_up;
3242 break;
3243 case 3:
3244 rmode = float_round_down;
3245 break;
3246 default:
3247 abort();
3251 tstat = env->fp_status;
3252 set_float_exception_flags(0, &tstat);
3253 set_float_rounding_mode(rmode, &tstat);
3254 t.f128 = float128_round_to_int(xb->f128, &tstat);
3255 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
3257 if (unlikely(tstat.float_exception_flags & float_flag_invalid_snan)) {
3258 float_invalid_op_vxsnan(env, GETPC());
3261 if (ex == 0 && (tstat.float_exception_flags & float_flag_inexact)) {
3262 env->fp_status.float_exception_flags &= ~float_flag_inexact;
3265 helper_compute_fprf_float128(env, t.f128);
3266 do_float_check_status(env, GETPC());
3267 *xt = t;
3270 void helper_xsrqpxp(CPUPPCState *env, uint32_t opcode,
3271 ppc_vsr_t *xt, ppc_vsr_t *xb)
3273 ppc_vsr_t t = { };
3274 uint8_t r = Rrm(opcode);
3275 uint8_t rmc = RMC(opcode);
3276 uint8_t rmode = 0;
3277 floatx80 round_res;
3278 float_status tstat;
3280 helper_reset_fpstatus(env);
3282 if (r == 0 && rmc == 0) {
3283 rmode = float_round_ties_away;
3284 } else if (r == 0 && rmc == 0x3) {
3285 rmode = fpscr_rn;
3286 } else if (r == 1) {
3287 switch (rmc) {
3288 case 0:
3289 rmode = float_round_nearest_even;
3290 break;
3291 case 1:
3292 rmode = float_round_to_zero;
3293 break;
3294 case 2:
3295 rmode = float_round_up;
3296 break;
3297 case 3:
3298 rmode = float_round_down;
3299 break;
3300 default:
3301 abort();
3305 tstat = env->fp_status;
3306 set_float_exception_flags(0, &tstat);
3307 set_float_rounding_mode(rmode, &tstat);
3308 round_res = float128_to_floatx80(xb->f128, &tstat);
3309 t.f128 = floatx80_to_float128(round_res, &tstat);
3310 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
3312 if (unlikely(tstat.float_exception_flags & float_flag_invalid_snan)) {
3313 float_invalid_op_vxsnan(env, GETPC());
3314 t.f128 = float128_snan_to_qnan(t.f128);
3317 helper_compute_fprf_float128(env, t.f128);
3318 *xt = t;
3319 do_float_check_status(env, GETPC());
3322 void helper_xssqrtqp(CPUPPCState *env, uint32_t opcode,
3323 ppc_vsr_t *xt, ppc_vsr_t *xb)
3325 ppc_vsr_t t = { };
3326 float_status tstat;
3328 helper_reset_fpstatus(env);
3330 tstat = env->fp_status;
3331 if (unlikely(Rc(opcode) != 0)) {
3332 tstat.float_rounding_mode = float_round_to_odd;
3335 set_float_exception_flags(0, &tstat);
3336 t.f128 = float128_sqrt(xb->f128, &tstat);
3337 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
3339 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) {
3340 float_invalid_op_sqrt(env, tstat.float_exception_flags, 1, GETPC());
3343 helper_compute_fprf_float128(env, t.f128);
3344 *xt = t;
3345 do_float_check_status(env, GETPC());
3348 void helper_xssubqp(CPUPPCState *env, uint32_t opcode,
3349 ppc_vsr_t *xt, ppc_vsr_t *xa, ppc_vsr_t *xb)
3351 ppc_vsr_t t = *xt;
3352 float_status tstat;
3354 helper_reset_fpstatus(env);
3356 tstat = env->fp_status;
3357 if (unlikely(Rc(opcode) != 0)) {
3358 tstat.float_rounding_mode = float_round_to_odd;
3361 set_float_exception_flags(0, &tstat);
3362 t.f128 = float128_sub(xa->f128, xb->f128, &tstat);
3363 env->fp_status.float_exception_flags |= tstat.float_exception_flags;
3365 if (unlikely(tstat.float_exception_flags & float_flag_invalid)) {
3366 float_invalid_op_addsub(env, tstat.float_exception_flags, 1, GETPC());
3369 helper_compute_fprf_float128(env, t.f128);
3370 *xt = t;
3371 do_float_check_status(env, GETPC());