2 * S/390 FPU helper routines
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2009 Alexander Graf
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
24 #include "tcg_s390x.h"
25 #include "exec/exec-all.h"
26 #include "exec/cpu_ldst.h"
27 #include "exec/helper-proto.h"
28 #include "fpu/softfloat.h"
30 /* #define DEBUG_HELPER */
32 #define HELPER_LOG(x...) qemu_log(x)
34 #define HELPER_LOG(x...)
37 #define RET128(F) (env->retxl = F.low, F.high)
39 uint8_t s390_softfloat_exc_to_ieee(unsigned int exc
)
43 s390_exc
|= (exc
& float_flag_invalid
) ? S390_IEEE_MASK_INVALID
: 0;
44 s390_exc
|= (exc
& float_flag_divbyzero
) ? S390_IEEE_MASK_DIVBYZERO
: 0;
45 s390_exc
|= (exc
& float_flag_overflow
) ? S390_IEEE_MASK_OVERFLOW
: 0;
46 s390_exc
|= (exc
& float_flag_underflow
) ? S390_IEEE_MASK_UNDERFLOW
: 0;
47 s390_exc
|= (exc
& float_flag_inexact
) ? S390_IEEE_MASK_INEXACT
: 0;
52 /* Should be called after any operation that may raise IEEE exceptions. */
53 static void handle_exceptions(CPUS390XState
*env
, bool XxC
, uintptr_t retaddr
)
55 unsigned s390_exc
, qemu_exc
;
57 /* Get the exceptions raised by the current operation. Reset the
58 fpu_status contents so that the next operation has a clean slate. */
59 qemu_exc
= env
->fpu_status
.float_exception_flags
;
63 env
->fpu_status
.float_exception_flags
= 0;
64 s390_exc
= s390_softfloat_exc_to_ieee(qemu_exc
);
67 * IEEE-Underflow exception recognition exists if a tininess condition
68 * (underflow) exists and
69 * - The mask bit in the FPC is zero and the result is inexact
70 * - The mask bit in the FPC is one
71 * So tininess conditions that are not inexact don't trigger any
72 * underflow action in case the mask bit is not one.
74 if (!(s390_exc
& S390_IEEE_MASK_INEXACT
) &&
75 !((env
->fpc
>> 24) & S390_IEEE_MASK_UNDERFLOW
)) {
76 s390_exc
&= ~S390_IEEE_MASK_UNDERFLOW
;
81 * 1. Right now, all inexact conditions are inidicated as
82 * "truncated" (0) and never as "incremented" (1) in the DXC.
83 * 2. Only traps due to invalid/divbyzero are suppressing. Other traps
84 * are completing, meaning the target register has to be written!
85 * This, however will mean that we have to write the register before
86 * triggering the trap - impossible right now.
90 * invalid/divbyzero cannot coexist with other conditions.
91 * overflow/underflow however can coexist with inexact, we have to
92 * handle it separatly.
94 if (s390_exc
& ~S390_IEEE_MASK_INEXACT
) {
95 if (s390_exc
& ~S390_IEEE_MASK_INEXACT
& env
->fpc
>> 24) {
96 /* trap condition - inexact reported along */
97 tcg_s390_data_exception(env
, s390_exc
, retaddr
);
99 /* nontrap condition - inexact handled differently */
100 env
->fpc
|= (s390_exc
& ~S390_IEEE_MASK_INEXACT
) << 16;
103 /* inexact handling */
104 if (s390_exc
& S390_IEEE_MASK_INEXACT
&& !XxC
) {
105 /* trap condition - overflow/underflow _not_ reported along */
106 if (s390_exc
& S390_IEEE_MASK_INEXACT
& env
->fpc
>> 24) {
107 tcg_s390_data_exception(env
, s390_exc
& S390_IEEE_MASK_INEXACT
,
110 /* nontrap condition */
111 env
->fpc
|= (s390_exc
& S390_IEEE_MASK_INEXACT
) << 16;
115 int float_comp_to_cc(CPUS390XState
*env
, int float_compare
)
117 switch (float_compare
) {
118 case float_relation_equal
:
120 case float_relation_less
:
122 case float_relation_greater
:
124 case float_relation_unordered
:
127 cpu_abort(env_cpu(env
), "unknown return value for float compare\n");
131 /* condition codes for unary FP ops */
132 uint32_t set_cc_nz_f32(float32 v
)
134 if (float32_is_any_nan(v
)) {
136 } else if (float32_is_zero(v
)) {
138 } else if (float32_is_neg(v
)) {
145 uint32_t set_cc_nz_f64(float64 v
)
147 if (float64_is_any_nan(v
)) {
149 } else if (float64_is_zero(v
)) {
151 } else if (float64_is_neg(v
)) {
158 uint32_t set_cc_nz_f128(float128 v
)
160 if (float128_is_any_nan(v
)) {
162 } else if (float128_is_zero(v
)) {
164 } else if (float128_is_neg(v
)) {
171 static inline uint8_t round_from_m34(uint32_t m34
)
173 return extract32(m34
, 0, 4);
176 static inline bool xxc_from_m34(uint32_t m34
)
178 /* XxC is bit 1 of m4 */
179 return extract32(m34
, 4 + 3 - 1, 1);
182 /* 32-bit FP addition */
183 uint64_t HELPER(aeb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
185 float32 ret
= float32_add(f1
, f2
, &env
->fpu_status
);
186 handle_exceptions(env
, false, GETPC());
190 /* 64-bit FP addition */
191 uint64_t HELPER(adb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
193 float64 ret
= float64_add(f1
, f2
, &env
->fpu_status
);
194 handle_exceptions(env
, false, GETPC());
198 /* 128-bit FP addition */
199 uint64_t HELPER(axb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
200 uint64_t bh
, uint64_t bl
)
202 float128 ret
= float128_add(make_float128(ah
, al
),
203 make_float128(bh
, bl
),
205 handle_exceptions(env
, false, GETPC());
209 /* 32-bit FP subtraction */
210 uint64_t HELPER(seb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
212 float32 ret
= float32_sub(f1
, f2
, &env
->fpu_status
);
213 handle_exceptions(env
, false, GETPC());
217 /* 64-bit FP subtraction */
218 uint64_t HELPER(sdb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
220 float64 ret
= float64_sub(f1
, f2
, &env
->fpu_status
);
221 handle_exceptions(env
, false, GETPC());
225 /* 128-bit FP subtraction */
226 uint64_t HELPER(sxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
227 uint64_t bh
, uint64_t bl
)
229 float128 ret
= float128_sub(make_float128(ah
, al
),
230 make_float128(bh
, bl
),
232 handle_exceptions(env
, false, GETPC());
236 /* 32-bit FP division */
237 uint64_t HELPER(deb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
239 float32 ret
= float32_div(f1
, f2
, &env
->fpu_status
);
240 handle_exceptions(env
, false, GETPC());
244 /* 64-bit FP division */
245 uint64_t HELPER(ddb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
247 float64 ret
= float64_div(f1
, f2
, &env
->fpu_status
);
248 handle_exceptions(env
, false, GETPC());
252 /* 128-bit FP division */
253 uint64_t HELPER(dxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
254 uint64_t bh
, uint64_t bl
)
256 float128 ret
= float128_div(make_float128(ah
, al
),
257 make_float128(bh
, bl
),
259 handle_exceptions(env
, false, GETPC());
263 /* 32-bit FP multiplication */
264 uint64_t HELPER(meeb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
266 float32 ret
= float32_mul(f1
, f2
, &env
->fpu_status
);
267 handle_exceptions(env
, false, GETPC());
271 /* 64-bit FP multiplication */
272 uint64_t HELPER(mdb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
274 float64 ret
= float64_mul(f1
, f2
, &env
->fpu_status
);
275 handle_exceptions(env
, false, GETPC());
279 /* 64/32-bit FP multiplication */
280 uint64_t HELPER(mdeb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
282 float64 ret
= float32_to_float64(f2
, &env
->fpu_status
);
283 ret
= float64_mul(f1
, ret
, &env
->fpu_status
);
284 handle_exceptions(env
, false, GETPC());
288 /* 128-bit FP multiplication */
289 uint64_t HELPER(mxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
290 uint64_t bh
, uint64_t bl
)
292 float128 ret
= float128_mul(make_float128(ah
, al
),
293 make_float128(bh
, bl
),
295 handle_exceptions(env
, false, GETPC());
299 /* 128/64-bit FP multiplication */
300 uint64_t HELPER(mxdb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
303 float128 ret
= float64_to_float128(f2
, &env
->fpu_status
);
304 ret
= float128_mul(make_float128(ah
, al
), ret
, &env
->fpu_status
);
305 handle_exceptions(env
, false, GETPC());
309 /* convert 32-bit float to 64-bit float */
310 uint64_t HELPER(ldeb
)(CPUS390XState
*env
, uint64_t f2
)
312 float64 ret
= float32_to_float64(f2
, &env
->fpu_status
);
313 handle_exceptions(env
, false, GETPC());
317 /* convert 128-bit float to 64-bit float */
318 uint64_t HELPER(ldxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
321 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
322 float64 ret
= float128_to_float64(make_float128(ah
, al
), &env
->fpu_status
);
324 s390_restore_bfp_rounding_mode(env
, old_mode
);
325 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
329 /* convert 64-bit float to 128-bit float */
330 uint64_t HELPER(lxdb
)(CPUS390XState
*env
, uint64_t f2
)
332 float128 ret
= float64_to_float128(f2
, &env
->fpu_status
);
333 handle_exceptions(env
, false, GETPC());
337 /* convert 32-bit float to 128-bit float */
338 uint64_t HELPER(lxeb
)(CPUS390XState
*env
, uint64_t f2
)
340 float128 ret
= float32_to_float128(f2
, &env
->fpu_status
);
341 handle_exceptions(env
, false, GETPC());
345 /* convert 64-bit float to 32-bit float */
346 uint64_t HELPER(ledb
)(CPUS390XState
*env
, uint64_t f2
, uint32_t m34
)
348 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
349 float32 ret
= float64_to_float32(f2
, &env
->fpu_status
);
351 s390_restore_bfp_rounding_mode(env
, old_mode
);
352 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
356 /* convert 128-bit float to 32-bit float */
357 uint64_t HELPER(lexb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
360 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
361 float32 ret
= float128_to_float32(make_float128(ah
, al
), &env
->fpu_status
);
363 s390_restore_bfp_rounding_mode(env
, old_mode
);
364 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
368 /* 32-bit FP compare */
369 uint32_t HELPER(ceb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
371 int cmp
= float32_compare_quiet(f1
, f2
, &env
->fpu_status
);
372 handle_exceptions(env
, false, GETPC());
373 return float_comp_to_cc(env
, cmp
);
376 /* 64-bit FP compare */
377 uint32_t HELPER(cdb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
379 int cmp
= float64_compare_quiet(f1
, f2
, &env
->fpu_status
);
380 handle_exceptions(env
, false, GETPC());
381 return float_comp_to_cc(env
, cmp
);
384 /* 128-bit FP compare */
385 uint32_t HELPER(cxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
386 uint64_t bh
, uint64_t bl
)
388 int cmp
= float128_compare_quiet(make_float128(ah
, al
),
389 make_float128(bh
, bl
),
391 handle_exceptions(env
, false, GETPC());
392 return float_comp_to_cc(env
, cmp
);
395 int s390_swap_bfp_rounding_mode(CPUS390XState
*env
, int m3
)
397 int ret
= env
->fpu_status
.float_rounding_mode
;
404 /* round to nearest with ties away from 0 */
405 set_float_rounding_mode(float_round_ties_away
, &env
->fpu_status
);
408 /* round to prepare for shorter precision */
409 set_float_rounding_mode(float_round_to_odd
, &env
->fpu_status
);
412 /* round to nearest with ties to even */
413 set_float_rounding_mode(float_round_nearest_even
, &env
->fpu_status
);
417 set_float_rounding_mode(float_round_to_zero
, &env
->fpu_status
);
421 set_float_rounding_mode(float_round_up
, &env
->fpu_status
);
425 set_float_rounding_mode(float_round_down
, &env
->fpu_status
);
428 g_assert_not_reached();
433 void s390_restore_bfp_rounding_mode(CPUS390XState
*env
, int old_mode
)
435 set_float_rounding_mode(old_mode
, &env
->fpu_status
);
438 /* convert 64-bit int to 32-bit float */
439 uint64_t HELPER(cegb
)(CPUS390XState
*env
, int64_t v2
, uint32_t m34
)
441 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
442 float32 ret
= int64_to_float32(v2
, &env
->fpu_status
);
444 s390_restore_bfp_rounding_mode(env
, old_mode
);
445 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
449 /* convert 64-bit int to 64-bit float */
450 uint64_t HELPER(cdgb
)(CPUS390XState
*env
, int64_t v2
, uint32_t m34
)
452 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
453 float64 ret
= int64_to_float64(v2
, &env
->fpu_status
);
455 s390_restore_bfp_rounding_mode(env
, old_mode
);
456 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
460 /* convert 64-bit int to 128-bit float */
461 uint64_t HELPER(cxgb
)(CPUS390XState
*env
, int64_t v2
, uint32_t m34
)
463 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
464 float128 ret
= int64_to_float128(v2
, &env
->fpu_status
);
466 s390_restore_bfp_rounding_mode(env
, old_mode
);
467 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
471 /* convert 64-bit uint to 32-bit float */
472 uint64_t HELPER(celgb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
474 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
475 float32 ret
= uint64_to_float32(v2
, &env
->fpu_status
);
477 s390_restore_bfp_rounding_mode(env
, old_mode
);
478 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
482 /* convert 64-bit uint to 64-bit float */
483 uint64_t HELPER(cdlgb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
485 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
486 float64 ret
= uint64_to_float64(v2
, &env
->fpu_status
);
488 s390_restore_bfp_rounding_mode(env
, old_mode
);
489 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
493 /* convert 64-bit uint to 128-bit float */
494 uint64_t HELPER(cxlgb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
496 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
497 float128 ret
= uint64_to_float128(v2
, &env
->fpu_status
);
499 s390_restore_bfp_rounding_mode(env
, old_mode
);
500 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
504 /* convert 32-bit float to 64-bit int */
505 uint64_t HELPER(cgeb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
507 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
508 int64_t ret
= float32_to_int64(v2
, &env
->fpu_status
);
510 s390_restore_bfp_rounding_mode(env
, old_mode
);
511 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
515 /* convert 64-bit float to 64-bit int */
516 uint64_t HELPER(cgdb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
518 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
519 int64_t ret
= float64_to_int64(v2
, &env
->fpu_status
);
521 s390_restore_bfp_rounding_mode(env
, old_mode
);
522 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
526 /* convert 128-bit float to 64-bit int */
527 uint64_t HELPER(cgxb
)(CPUS390XState
*env
, uint64_t h
, uint64_t l
, uint32_t m34
)
529 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
530 float128 v2
= make_float128(h
, l
);
531 int64_t ret
= float128_to_int64(v2
, &env
->fpu_status
);
533 s390_restore_bfp_rounding_mode(env
, old_mode
);
534 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
538 /* convert 32-bit float to 32-bit int */
539 uint64_t HELPER(cfeb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
541 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
542 int32_t ret
= float32_to_int32(v2
, &env
->fpu_status
);
544 s390_restore_bfp_rounding_mode(env
, old_mode
);
545 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
549 /* convert 64-bit float to 32-bit int */
550 uint64_t HELPER(cfdb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
552 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
553 int32_t ret
= float64_to_int32(v2
, &env
->fpu_status
);
555 s390_restore_bfp_rounding_mode(env
, old_mode
);
556 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
560 /* convert 128-bit float to 32-bit int */
561 uint64_t HELPER(cfxb
)(CPUS390XState
*env
, uint64_t h
, uint64_t l
, uint32_t m34
)
563 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
564 float128 v2
= make_float128(h
, l
);
565 int32_t ret
= float128_to_int32(v2
, &env
->fpu_status
);
567 s390_restore_bfp_rounding_mode(env
, old_mode
);
568 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
572 /* convert 32-bit float to 64-bit uint */
573 uint64_t HELPER(clgeb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
575 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
578 v2
= float32_to_float64(v2
, &env
->fpu_status
);
579 ret
= float64_to_uint64(v2
, &env
->fpu_status
);
580 s390_restore_bfp_rounding_mode(env
, old_mode
);
581 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
585 /* convert 64-bit float to 64-bit uint */
586 uint64_t HELPER(clgdb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
588 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
589 uint64_t ret
= float64_to_uint64(v2
, &env
->fpu_status
);
591 s390_restore_bfp_rounding_mode(env
, old_mode
);
592 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
596 /* convert 128-bit float to 64-bit uint */
597 uint64_t HELPER(clgxb
)(CPUS390XState
*env
, uint64_t h
, uint64_t l
, uint32_t m34
)
599 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
600 uint64_t ret
= float128_to_uint64(make_float128(h
, l
), &env
->fpu_status
);
602 s390_restore_bfp_rounding_mode(env
, old_mode
);
603 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
607 /* convert 32-bit float to 32-bit uint */
608 uint64_t HELPER(clfeb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
610 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
611 uint32_t ret
= float32_to_uint32(v2
, &env
->fpu_status
);
613 s390_restore_bfp_rounding_mode(env
, old_mode
);
614 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
618 /* convert 64-bit float to 32-bit uint */
619 uint64_t HELPER(clfdb
)(CPUS390XState
*env
, uint64_t v2
, uint32_t m34
)
621 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
622 uint32_t ret
= float64_to_uint32(v2
, &env
->fpu_status
);
624 s390_restore_bfp_rounding_mode(env
, old_mode
);
625 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
629 /* convert 128-bit float to 32-bit uint */
630 uint64_t HELPER(clfxb
)(CPUS390XState
*env
, uint64_t h
, uint64_t l
, uint32_t m34
)
632 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
633 uint32_t ret
= float128_to_uint32(make_float128(h
, l
), &env
->fpu_status
);
635 s390_restore_bfp_rounding_mode(env
, old_mode
);
636 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
640 /* round to integer 32-bit */
641 uint64_t HELPER(fieb
)(CPUS390XState
*env
, uint64_t f2
, uint32_t m34
)
643 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
644 float32 ret
= float32_round_to_int(f2
, &env
->fpu_status
);
646 s390_restore_bfp_rounding_mode(env
, old_mode
);
647 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
651 /* round to integer 64-bit */
652 uint64_t HELPER(fidb
)(CPUS390XState
*env
, uint64_t f2
, uint32_t m34
)
654 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
655 float64 ret
= float64_round_to_int(f2
, &env
->fpu_status
);
657 s390_restore_bfp_rounding_mode(env
, old_mode
);
658 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
662 /* round to integer 128-bit */
663 uint64_t HELPER(fixb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
666 int old_mode
= s390_swap_bfp_rounding_mode(env
, round_from_m34(m34
));
667 float128 ret
= float128_round_to_int(make_float128(ah
, al
),
670 s390_restore_bfp_rounding_mode(env
, old_mode
);
671 handle_exceptions(env
, xxc_from_m34(m34
), GETPC());
675 /* 32-bit FP compare and signal */
676 uint32_t HELPER(keb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
678 int cmp
= float32_compare(f1
, f2
, &env
->fpu_status
);
679 handle_exceptions(env
, false, GETPC());
680 return float_comp_to_cc(env
, cmp
);
683 /* 64-bit FP compare and signal */
684 uint32_t HELPER(kdb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t f2
)
686 int cmp
= float64_compare(f1
, f2
, &env
->fpu_status
);
687 handle_exceptions(env
, false, GETPC());
688 return float_comp_to_cc(env
, cmp
);
691 /* 128-bit FP compare and signal */
692 uint32_t HELPER(kxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
,
693 uint64_t bh
, uint64_t bl
)
695 int cmp
= float128_compare(make_float128(ah
, al
),
696 make_float128(bh
, bl
),
698 handle_exceptions(env
, false, GETPC());
699 return float_comp_to_cc(env
, cmp
);
702 /* 32-bit FP multiply and add */
703 uint64_t HELPER(maeb
)(CPUS390XState
*env
, uint64_t f1
,
704 uint64_t f2
, uint64_t f3
)
706 float32 ret
= float32_muladd(f2
, f3
, f1
, 0, &env
->fpu_status
);
707 handle_exceptions(env
, false, GETPC());
711 /* 64-bit FP multiply and add */
712 uint64_t HELPER(madb
)(CPUS390XState
*env
, uint64_t f1
,
713 uint64_t f2
, uint64_t f3
)
715 float64 ret
= float64_muladd(f2
, f3
, f1
, 0, &env
->fpu_status
);
716 handle_exceptions(env
, false, GETPC());
720 /* 32-bit FP multiply and subtract */
721 uint64_t HELPER(mseb
)(CPUS390XState
*env
, uint64_t f1
,
722 uint64_t f2
, uint64_t f3
)
724 float32 ret
= float32_muladd(f2
, f3
, f1
, float_muladd_negate_c
,
726 handle_exceptions(env
, false, GETPC());
730 /* 64-bit FP multiply and subtract */
731 uint64_t HELPER(msdb
)(CPUS390XState
*env
, uint64_t f1
,
732 uint64_t f2
, uint64_t f3
)
734 float64 ret
= float64_muladd(f2
, f3
, f1
, float_muladd_negate_c
,
736 handle_exceptions(env
, false, GETPC());
740 /* The rightmost bit has the number 11. */
741 static inline uint16_t dcmask(int bit
, bool neg
)
743 return 1 << (11 - bit
- neg
);
746 #define DEF_FLOAT_DCMASK(_TYPE) \
747 uint16_t _TYPE##_dcmask(CPUS390XState *env, _TYPE f1) \
749 const bool neg = _TYPE##_is_neg(f1); \
751 /* Sorted by most common cases - only one class is possible */ \
752 if (_TYPE##_is_normal(f1)) { \
753 return dcmask(2, neg); \
754 } else if (_TYPE##_is_zero(f1)) { \
755 return dcmask(0, neg); \
756 } else if (_TYPE##_is_denormal(f1)) { \
757 return dcmask(4, neg); \
758 } else if (_TYPE##_is_infinity(f1)) { \
759 return dcmask(6, neg); \
760 } else if (_TYPE##_is_quiet_nan(f1, &env->fpu_status)) { \
761 return dcmask(8, neg); \
763 /* signaling nan, as last remaining case */ \
764 return dcmask(10, neg); \
766 DEF_FLOAT_DCMASK(float32
)
767 DEF_FLOAT_DCMASK(float64
)
768 DEF_FLOAT_DCMASK(float128
)
770 /* test data class 32-bit */
771 uint32_t HELPER(tceb
)(CPUS390XState
*env
, uint64_t f1
, uint64_t m2
)
773 return (m2
& float32_dcmask(env
, f1
)) != 0;
776 /* test data class 64-bit */
777 uint32_t HELPER(tcdb
)(CPUS390XState
*env
, uint64_t v1
, uint64_t m2
)
779 return (m2
& float64_dcmask(env
, v1
)) != 0;
782 /* test data class 128-bit */
783 uint32_t HELPER(tcxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
, uint64_t m2
)
785 return (m2
& float128_dcmask(env
, make_float128(ah
, al
))) != 0;
788 /* square root 32-bit */
789 uint64_t HELPER(sqeb
)(CPUS390XState
*env
, uint64_t f2
)
791 float32 ret
= float32_sqrt(f2
, &env
->fpu_status
);
792 handle_exceptions(env
, false, GETPC());
796 /* square root 64-bit */
797 uint64_t HELPER(sqdb
)(CPUS390XState
*env
, uint64_t f2
)
799 float64 ret
= float64_sqrt(f2
, &env
->fpu_status
);
800 handle_exceptions(env
, false, GETPC());
804 /* square root 128-bit */
805 uint64_t HELPER(sqxb
)(CPUS390XState
*env
, uint64_t ah
, uint64_t al
)
807 float128 ret
= float128_sqrt(make_float128(ah
, al
), &env
->fpu_status
);
808 handle_exceptions(env
, false, GETPC());
812 static const int fpc_to_rnd
[8] = {
813 float_round_nearest_even
,
824 void HELPER(sfpc
)(CPUS390XState
*env
, uint64_t fpc
)
826 if (fpc_to_rnd
[fpc
& 0x7] == -1 || fpc
& 0x03030088u
||
827 (!s390_has_feat(S390_FEAT_FLOATING_POINT_EXT
) && fpc
& 0x4)) {
828 tcg_s390_program_interrupt(env
, PGM_SPECIFICATION
, GETPC());
831 /* Install everything in the main FPC. */
834 /* Install the rounding mode in the shadow fpu_status. */
835 set_float_rounding_mode(fpc_to_rnd
[fpc
& 0x7], &env
->fpu_status
);
838 /* set fpc and signal */
839 void HELPER(sfas
)(CPUS390XState
*env
, uint64_t fpc
)
841 uint32_t signalling
= env
->fpc
;
844 if (fpc_to_rnd
[fpc
& 0x7] == -1 || fpc
& 0x03030088u
||
845 (!s390_has_feat(S390_FEAT_FLOATING_POINT_EXT
) && fpc
& 0x4)) {
846 tcg_s390_program_interrupt(env
, PGM_SPECIFICATION
, GETPC());
850 * FPC is set to the FPC operand with a bitwise OR of the signalling
853 env
->fpc
= fpc
| (signalling
& 0x00ff0000);
854 set_float_rounding_mode(fpc_to_rnd
[fpc
& 0x7], &env
->fpu_status
);
857 * If any signaling flag is enabled in the new FPC mask, a
858 * simulated-iee-exception exception occurs.
860 s390_exc
= (signalling
>> 16) & (fpc
>> 24);
862 if (s390_exc
& S390_IEEE_MASK_INVALID
) {
863 s390_exc
= S390_IEEE_MASK_INVALID
;
864 } else if (s390_exc
& S390_IEEE_MASK_DIVBYZERO
) {
865 s390_exc
= S390_IEEE_MASK_DIVBYZERO
;
866 } else if (s390_exc
& S390_IEEE_MASK_OVERFLOW
) {
867 s390_exc
&= (S390_IEEE_MASK_OVERFLOW
| S390_IEEE_MASK_INEXACT
);
868 } else if (s390_exc
& S390_IEEE_MASK_UNDERFLOW
) {
869 s390_exc
&= (S390_IEEE_MASK_UNDERFLOW
| S390_IEEE_MASK_INEXACT
);
870 } else if (s390_exc
& S390_IEEE_MASK_INEXACT
) {
871 s390_exc
= S390_IEEE_MASK_INEXACT
;
872 } else if (s390_exc
& S390_IEEE_MASK_QUANTUM
) {
873 s390_exc
= S390_IEEE_MASK_QUANTUM
;
875 tcg_s390_data_exception(env
, s390_exc
| 3, GETPC());
879 /* set bfp rounding mode */
880 void HELPER(srnm
)(CPUS390XState
*env
, uint64_t rnd
)
882 if (rnd
> 0x7 || fpc_to_rnd
[rnd
& 0x7] == -1) {
883 tcg_s390_program_interrupt(env
, PGM_SPECIFICATION
, GETPC());
886 env
->fpc
= deposit32(env
->fpc
, 0, 3, rnd
);
887 set_float_rounding_mode(fpc_to_rnd
[rnd
& 0x7], &env
->fpu_status
);