2003-10-01 00:36:07 +04:00
|
|
|
#ifndef EXEC_SPARC_H
|
|
|
|
#define EXEC_SPARC_H 1
|
2005-07-02 18:31:34 +04:00
|
|
|
#include "config.h"
|
2007-03-19 17:47:40 +03:00
|
|
|
#include "dyngen-exec.h"
|
2003-10-01 00:36:07 +04:00
|
|
|
|
|
|
|
register struct CPUSPARCState *env asm(AREG0);
|
2007-02-02 04:03:34 +03:00
|
|
|
|
2005-01-31 01:39:04 +03:00
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
#define T0 (env->t0)
|
|
|
|
#define T1 (env->t1)
|
|
|
|
#define T2 (env->t2)
|
2005-07-02 18:31:34 +04:00
|
|
|
#define REGWPTR env->regwptr
|
2005-01-31 01:39:04 +03:00
|
|
|
#else
|
2003-10-01 00:36:07 +04:00
|
|
|
register uint32_t T0 asm(AREG1);
|
|
|
|
register uint32_t T1 asm(AREG2);
|
2005-07-02 18:31:34 +04:00
|
|
|
|
|
|
|
#undef REG_REGWPTR // Broken
|
|
|
|
#ifdef REG_REGWPTR
|
2007-02-02 04:03:34 +03:00
|
|
|
#if defined(__sparc__)
|
|
|
|
register uint32_t *REGWPTR asm(AREG4);
|
|
|
|
#else
|
2005-07-02 18:31:34 +04:00
|
|
|
register uint32_t *REGWPTR asm(AREG3);
|
2007-02-02 04:03:34 +03:00
|
|
|
#endif
|
2005-07-02 18:31:34 +04:00
|
|
|
#define reg_REGWPTR
|
|
|
|
|
|
|
|
#ifdef AREG4
|
|
|
|
register uint32_t T2 asm(AREG4);
|
|
|
|
#define reg_T2
|
|
|
|
#else
|
|
|
|
#define T2 (env->t2)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define REGWPTR env->regwptr
|
2003-10-01 00:36:07 +04:00
|
|
|
register uint32_t T2 asm(AREG3);
|
2007-02-02 04:03:34 +03:00
|
|
|
#endif
|
2005-07-02 18:31:34 +04:00
|
|
|
#define reg_T2
|
|
|
|
#endif
|
|
|
|
|
2004-10-01 01:55:55 +04:00
|
|
|
#define FT0 (env->ft0)
|
|
|
|
#define FT1 (env->ft1)
|
|
|
|
#define DT0 (env->dt0)
|
|
|
|
#define DT1 (env->dt1)
|
2003-10-01 00:36:07 +04:00
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
|
|
|
|
void cpu_lock(void);
|
|
|
|
void cpu_unlock(void);
|
|
|
|
void cpu_loop_exit(void);
|
2004-04-25 21:56:08 +04:00
|
|
|
void helper_flush(target_ulong addr);
|
2004-10-01 01:55:55 +04:00
|
|
|
void helper_ld_asi(int asi, int size, int sign);
|
2007-09-21 23:10:53 +04:00
|
|
|
void helper_st_asi(int asi, int size);
|
2007-09-30 23:38:12 +04:00
|
|
|
void helper_ldf_asi(int asi, int size, int rd);
|
|
|
|
void helper_stf_asi(int asi, int size, int rd);
|
2004-10-01 01:55:55 +04:00
|
|
|
void helper_rett(void);
|
2004-10-05 01:23:09 +04:00
|
|
|
void helper_ldfsr(void);
|
2004-10-01 01:55:55 +04:00
|
|
|
void set_cwp(int new_cwp);
|
2004-10-10 21:46:24 +04:00
|
|
|
void do_fitos(void);
|
|
|
|
void do_fitod(void);
|
2004-10-01 01:55:55 +04:00
|
|
|
void do_fabss(void);
|
|
|
|
void do_fsqrts(void);
|
|
|
|
void do_fsqrtd(void);
|
|
|
|
void do_fcmps(void);
|
|
|
|
void do_fcmpd(void);
|
2007-04-07 00:03:29 +04:00
|
|
|
void do_fcmpes(void);
|
|
|
|
void do_fcmped(void);
|
2005-07-02 18:31:34 +04:00
|
|
|
#ifdef TARGET_SPARC64
|
|
|
|
void do_fabsd(void);
|
|
|
|
void do_fcmps_fcc1(void);
|
|
|
|
void do_fcmpd_fcc1(void);
|
|
|
|
void do_fcmps_fcc2(void);
|
|
|
|
void do_fcmpd_fcc2(void);
|
|
|
|
void do_fcmps_fcc3(void);
|
|
|
|
void do_fcmpd_fcc3(void);
|
2007-04-07 00:03:29 +04:00
|
|
|
void do_fcmpes_fcc1(void);
|
|
|
|
void do_fcmped_fcc1(void);
|
|
|
|
void do_fcmpes_fcc2(void);
|
|
|
|
void do_fcmped_fcc2(void);
|
|
|
|
void do_fcmpes_fcc3(void);
|
|
|
|
void do_fcmped_fcc3(void);
|
2005-07-02 18:31:34 +04:00
|
|
|
void do_popc();
|
2005-07-23 18:27:54 +04:00
|
|
|
void do_wrpstate();
|
|
|
|
void do_done();
|
|
|
|
void do_retry();
|
2005-07-02 18:31:34 +04:00
|
|
|
#endif
|
2005-01-31 01:39:04 +03:00
|
|
|
void do_ldd_kernel(target_ulong addr);
|
|
|
|
void do_ldd_user(target_ulong addr);
|
|
|
|
void do_ldd_raw(target_ulong addr);
|
2005-02-13 22:02:42 +03:00
|
|
|
void do_interrupt(int intno);
|
2004-10-01 01:55:55 +04:00
|
|
|
void raise_exception(int tt);
|
2007-04-07 00:03:29 +04:00
|
|
|
void check_ieee_exceptions();
|
2005-01-31 01:39:04 +03:00
|
|
|
void memcpy32(target_ulong *dst, const target_ulong *src);
|
2005-07-05 02:18:23 +04:00
|
|
|
target_ulong mmu_probe(CPUState *env, target_ulong address, int mmulev);
|
|
|
|
void dump_mmu(CPUState *env);
|
2004-12-20 02:18:01 +03:00
|
|
|
void helper_debug();
|
2005-01-31 01:39:04 +03:00
|
|
|
void do_wrpsr();
|
|
|
|
void do_rdpsr();
|
2004-10-01 01:55:55 +04:00
|
|
|
|
|
|
|
/* XXX: move that to a generic header */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-10-30 21:16:26 +03:00
|
|
|
#include "softmmu_exec.h"
|
2004-10-01 01:55:55 +04:00
|
|
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
2004-10-13 02:01:28 +04:00
|
|
|
|
|
|
|
static inline void env_to_regs(void)
|
|
|
|
{
|
2005-10-30 20:06:11 +03:00
|
|
|
#if defined(reg_REGWPTR)
|
|
|
|
REGWPTR = env->regbase + (env->cwp * 16);
|
|
|
|
env->regwptr = REGWPTR;
|
|
|
|
#endif
|
2004-10-13 02:01:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void regs_to_env(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-02-08 02:10:53 +03:00
|
|
|
int cpu_sparc_handle_mmu_fault(CPUState *env, target_ulong address, int rw,
|
|
|
|
int is_user, int is_softmmu);
|
|
|
|
|
2007-06-03 21:44:37 +04:00
|
|
|
static inline int cpu_halted(CPUState *env) {
|
|
|
|
if (!env->halted)
|
|
|
|
return 0;
|
|
|
|
if ((env->interrupt_request & CPU_INTERRUPT_HARD) && (env->psret != 0)) {
|
|
|
|
env->halted = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return EXCP_HALTED;
|
|
|
|
}
|
|
|
|
|
2003-10-01 00:36:07 +04:00
|
|
|
#endif
|