2 * Helpers for emulation of FPU-related MIPS instructions.
4 * Copyright (C) 2004-2005 Jocelyn Mayer
6 * SPDX-License-Identifier: LGPL-2.1-or-later
8 #include "fpu/softfloat-helpers.h"
11 extern const FloatRoundMode ieee_rm
[4];
13 uint32_t float_class_s(uint32_t arg
, float_status
*fst
);
14 uint64_t float_class_d(uint64_t arg
, float_status
*fst
);
16 static inline void restore_rounding_mode(CPUMIPSState
*env
)
18 set_float_rounding_mode(ieee_rm
[env
->active_fpu
.fcr31
& 3],
19 &env
->active_fpu
.fp_status
);
22 static inline void restore_flush_mode(CPUMIPSState
*env
)
24 set_flush_to_zero((env
->active_fpu
.fcr31
& (1 << FCR31_FS
)) != 0,
25 &env
->active_fpu
.fp_status
);
28 static inline void restore_snan_bit_mode(CPUMIPSState
*env
)
30 set_snan_bit_is_one((env
->active_fpu
.fcr31
& (1 << FCR31_NAN2008
)) == 0,
31 &env
->active_fpu
.fp_status
);
34 static inline void restore_fp_status(CPUMIPSState
*env
)
36 restore_rounding_mode(env
);
37 restore_flush_mode(env
);
38 restore_snan_bit_mode(env
);
43 enum CPUMIPSMSADataFormat
{
50 static inline void restore_msa_fp_status(CPUMIPSState
*env
)
52 float_status
*status
= &env
->active_tc
.msa_fp_status
;
53 int rounding_mode
= (env
->active_tc
.msacsr
& MSACSR_RM_MASK
) >> MSACSR_RM
;
54 bool flush_to_zero
= (env
->active_tc
.msacsr
& MSACSR_FS_MASK
) != 0;
56 set_float_rounding_mode(ieee_rm
[rounding_mode
], status
);
57 set_flush_to_zero(flush_to_zero
, status
);
58 set_flush_inputs_to_zero(flush_to_zero
, status
);