2005-07-02 18:58:51 +04:00
|
|
|
#if !defined(__QEMU_MIPS_EXEC_H__)
|
|
|
|
#define __QEMU_MIPS_EXEC_H__
|
|
|
|
|
2005-12-17 04:11:12 +03:00
|
|
|
//#define DEBUG_OP
|
2005-07-02 18:58:51 +04:00
|
|
|
|
2006-12-21 04:19:56 +03:00
|
|
|
#include "config.h"
|
2005-07-02 18:58:51 +04:00
|
|
|
#include "mips-defs.h"
|
|
|
|
#include "dyngen-exec.h"
|
2007-04-30 01:26:37 +04:00
|
|
|
#include "cpu-defs.h"
|
2005-07-02 18:58:51 +04:00
|
|
|
|
|
|
|
register struct CPUMIPSState *env asm(AREG0);
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-10-30 21:16:26 +03:00
|
|
|
#include "softmmu_exec.h"
|
2005-07-02 18:58:51 +04:00
|
|
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
|
|
|
|
2006-06-14 16:56:19 +04:00
|
|
|
void dump_fpu(CPUState *env);
|
2007-09-17 01:08:06 +04:00
|
|
|
void fpu_dump_state(CPUState *env, FILE *f,
|
2006-06-14 16:56:19 +04:00
|
|
|
int (*fpu_fprintf)(FILE *f, const char *fmt, ...),
|
|
|
|
int flags);
|
2005-07-02 18:58:51 +04:00
|
|
|
|
|
|
|
void cpu_mips_clock_init (CPUState *env);
|
2006-12-06 20:42:40 +03:00
|
|
|
void cpu_mips_tlb_flush (CPUState *env, int flush_global);
|
2005-07-02 18:58:51 +04:00
|
|
|
|
2008-07-23 20:16:31 +04:00
|
|
|
static inline void env_to_regs(void)
|
2007-06-03 21:44:37 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-07-23 20:16:31 +04:00
|
|
|
static inline void regs_to_env(void)
|
2007-06-03 21:44:37 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-04-24 22:03:20 +04:00
|
|
|
static inline int cpu_has_work(CPUState *env)
|
|
|
|
{
|
|
|
|
return (env->interrupt_request &
|
|
|
|
(CPU_INTERRUPT_HARD | CPU_INTERRUPT_TIMER));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-23 20:16:31 +04:00
|
|
|
static inline int cpu_halted(CPUState *env)
|
2007-09-27 03:52:06 +04:00
|
|
|
{
|
2007-06-03 21:44:37 +04:00
|
|
|
if (!env->halted)
|
|
|
|
return 0;
|
2009-04-24 22:03:20 +04:00
|
|
|
if (cpu_has_work(env)) {
|
2007-06-03 21:44:37 +04:00
|
|
|
env->halted = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return EXCP_HALTED;
|
|
|
|
}
|
|
|
|
|
2008-07-23 20:16:31 +04:00
|
|
|
static inline void compute_hflags(CPUState *env)
|
2007-09-27 03:52:06 +04:00
|
|
|
{
|
2007-12-30 18:36:58 +03:00
|
|
|
env->hflags &= ~(MIPS_HFLAG_COP1X | MIPS_HFLAG_64 | MIPS_HFLAG_CP0 |
|
2008-11-11 14:39:33 +03:00
|
|
|
MIPS_HFLAG_F64 | MIPS_HFLAG_FPU | MIPS_HFLAG_KSU |
|
|
|
|
MIPS_HFLAG_UX);
|
2007-09-27 03:52:06 +04:00
|
|
|
if (!(env->CP0_Status & (1 << CP0St_EXL)) &&
|
|
|
|
!(env->CP0_Status & (1 << CP0St_ERL)) &&
|
2007-09-29 23:21:36 +04:00
|
|
|
!(env->hflags & MIPS_HFLAG_DM)) {
|
2007-10-28 22:45:05 +03:00
|
|
|
env->hflags |= (env->CP0_Status >> CP0St_KSU) & MIPS_HFLAG_KSU;
|
2007-09-29 23:21:36 +04:00
|
|
|
}
|
2007-11-08 21:05:37 +03:00
|
|
|
#if defined(TARGET_MIPS64)
|
2007-10-28 22:45:05 +03:00
|
|
|
if (((env->hflags & MIPS_HFLAG_KSU) != MIPS_HFLAG_UM) ||
|
2007-09-27 03:52:06 +04:00
|
|
|
(env->CP0_Status & (1 << CP0St_PX)) ||
|
|
|
|
(env->CP0_Status & (1 << CP0St_UX)))
|
|
|
|
env->hflags |= MIPS_HFLAG_64;
|
2008-11-11 14:39:33 +03:00
|
|
|
if (env->CP0_Status & (1 << CP0St_UX))
|
|
|
|
env->hflags |= MIPS_HFLAG_UX;
|
2007-09-27 03:52:06 +04:00
|
|
|
#endif
|
2007-09-29 23:21:36 +04:00
|
|
|
if ((env->CP0_Status & (1 << CP0St_CU0)) ||
|
2007-10-28 22:45:05 +03:00
|
|
|
!(env->hflags & MIPS_HFLAG_KSU))
|
2007-09-27 03:52:06 +04:00
|
|
|
env->hflags |= MIPS_HFLAG_CP0;
|
|
|
|
if (env->CP0_Status & (1 << CP0St_CU1))
|
|
|
|
env->hflags |= MIPS_HFLAG_FPU;
|
|
|
|
if (env->CP0_Status & (1 << CP0St_FR))
|
|
|
|
env->hflags |= MIPS_HFLAG_F64;
|
2007-12-30 18:36:58 +03:00
|
|
|
if (env->insn_flags & ISA_MIPS32R2) {
|
2008-09-18 15:57:27 +04:00
|
|
|
if (env->active_fpu.fcr0 & (1 << FCR0_F64))
|
2007-12-30 18:36:58 +03:00
|
|
|
env->hflags |= MIPS_HFLAG_COP1X;
|
|
|
|
} else if (env->insn_flags & ISA_MIPS32) {
|
|
|
|
if (env->hflags & MIPS_HFLAG_64)
|
|
|
|
env->hflags |= MIPS_HFLAG_COP1X;
|
|
|
|
} else if (env->insn_flags & ISA_MIPS4) {
|
|
|
|
/* All supported MIPS IV CPUs use the XX (CU3) to enable
|
|
|
|
and disable the MIPS IV extensions to the MIPS III ISA.
|
|
|
|
Some other MIPS IV CPUs ignore the bit, so the check here
|
|
|
|
would be too restrictive for them. */
|
|
|
|
if (env->CP0_Status & (1 << CP0St_CU3))
|
|
|
|
env->hflags |= MIPS_HFLAG_COP1X;
|
|
|
|
}
|
2007-09-27 03:52:06 +04:00
|
|
|
}
|
|
|
|
|
2005-07-02 18:58:51 +04:00
|
|
|
#endif /* !defined(__QEMU_MIPS_EXEC_H__) */
|