diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-08-08 17:27:31 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2019-08-19 12:07:13 +0100 |
commit | 502700d0674919309a19bfd016ea0680c6b7747d (patch) | |
tree | bc6f83c0855bf6e0ab9abb50219fa63d4929fb0f /target/mips/cpu.h | |
parent | 00f43279a3e5e7ea3a0fa853157863663e838e2e (diff) | |
download | qemu-502700d0674919309a19bfd016ea0680c6b7747d.zip qemu-502700d0674919309a19bfd016ea0680c6b7747d.tar.gz qemu-502700d0674919309a19bfd016ea0680c6b7747d.tar.bz2 |
target/mips: rationalise softfloat includes
We should avoid including the whole of softfloat headers in cpu.h and
explicitly include it only where we will be calling softfloat
functions. We can use the -types.h in cpu.h for the few bits that are
global. We also move the restore_snan_bit_mode into internal.h and
include -helpers.h there.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'target/mips/cpu.h')
-rw-r--r-- | target/mips/cpu.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/target/mips/cpu.h b/target/mips/cpu.h index 21c0615..d235117 100644 --- a/target/mips/cpu.h +++ b/target/mips/cpu.h @@ -5,7 +5,7 @@ #include "cpu-qom.h" #include "exec/cpu-defs.h" -#include "fpu/softfloat.h" +#include "fpu/softfloat-types.h" #include "mips-defs.h" #define TCG_GUEST_DEFAULT_MO (0) @@ -1195,12 +1195,6 @@ void itc_reconfigure(struct MIPSITUState *tag); /* helper.c */ target_ulong exception_resume_pc(CPUMIPSState *env); -static inline void restore_snan_bit_mode(CPUMIPSState *env) -{ - set_snan_bit_is_one((env->active_fpu.fcr31 & (1 << FCR31_NAN2008)) == 0, - &env->active_fpu.fp_status); -} - static inline void cpu_get_tb_cpu_state(CPUMIPSState *env, target_ulong *pc, target_ulong *cs_base, uint32_t *flags) { |