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);
|
2005-07-02 18:31:34 +04:00
|
|
|
|
2003-10-01 00:36:07 +04:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
|
2010-05-03 11:29:44 +04:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
#include "softmmu_exec.h"
|
|
|
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
|
|
|
|
2008-08-30 00:50:21 +04:00
|
|
|
/* op_helper.c */
|
2011-05-21 16:16:05 +04:00
|
|
|
static inline bool cpu_has_work(CPUState *env1)
|
2009-04-24 22:03:20 +04:00
|
|
|
{
|
|
|
|
return (env1->interrupt_request & CPU_INTERRUPT_HARD) &&
|
2009-07-12 12:35:31 +04:00
|
|
|
cpu_interrupts_enabled(env1);
|
2009-04-24 22:03:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-29 11:58:50 +04:00
|
|
|
static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
env->pc = tb->pc;
|
|
|
|
env->npc = tb->cs_base;
|
|
|
|
}
|
|
|
|
|
2003-10-01 00:36:07 +04:00
|
|
|
#endif
|