2003-09-30 22:36:07 +02:00
|
|
|
#ifndef EXEC_SPARC_H
|
|
|
|
#define EXEC_SPARC_H 1
|
2005-07-02 16:31:34 +02:00
|
|
|
#include "config.h"
|
2007-03-19 15:47:40 +01:00
|
|
|
#include "dyngen-exec.h"
|
2003-09-30 22:36:07 +02:00
|
|
|
|
|
|
|
register struct CPUSPARCState *env asm(AREG0);
|
2005-07-02 16:31:34 +02:00
|
|
|
|
2003-09-30 22:36:07 +02:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
|
2010-05-03 09:29:44 +02:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
#include "softmmu_exec.h"
|
|
|
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
|
|
|
|
2008-08-29 22:50:21 +02:00
|
|
|
/* op_helper.c */
|
2008-05-27 19:35:30 +02:00
|
|
|
void do_interrupt(CPUState *env);
|
2005-02-08 00:10:53 +01:00
|
|
|
|
2009-04-24 20:03:20 +02:00
|
|
|
static inline int cpu_has_work(CPUState *env1)
|
|
|
|
{
|
|
|
|
return (env1->interrupt_request & CPU_INTERRUPT_HARD) &&
|
2009-07-12 10:35:31 +02:00
|
|
|
cpu_interrupts_enabled(env1);
|
2009-04-24 20:03:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-29 09:58:50 +02:00
|
|
|
static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
env->pc = tb->pc;
|
|
|
|
env->npc = tb->cs_base;
|
|
|
|
}
|
|
|
|
|
2003-09-30 22:36:07 +02:00
|
|
|
#endif
|