mirror of https://github.com/xqemu/xqemu.git
darwin-user: Don't overuse CPUState
Use CPU*State where applicable. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
0539024885
commit
c91dcf0b81
|
@ -77,38 +77,38 @@ int cpu_get_pic_interrupt(CPUState *env)
|
||||||
}
|
}
|
||||||
#ifdef TARGET_PPC
|
#ifdef TARGET_PPC
|
||||||
|
|
||||||
static inline uint64_t cpu_ppc_get_tb (CPUState *env)
|
static inline uint64_t cpu_ppc_get_tb(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
/* TO FIX */
|
/* TO FIX */
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t cpu_ppc_load_tbl (CPUState *env)
|
uint64_t cpu_ppc_load_tbl(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
return cpu_ppc_get_tb(env);
|
return cpu_ppc_get_tb(env);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t cpu_ppc_load_tbu (CPUState *env)
|
uint32_t cpu_ppc_load_tbu(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
return cpu_ppc_get_tb(env) >> 32;
|
return cpu_ppc_get_tb(env) >> 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t cpu_ppc_load_atbl (CPUState *env)
|
uint64_t cpu_ppc_load_atbl(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
return cpu_ppc_get_tb(env);
|
return cpu_ppc_get_tb(env);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t cpu_ppc_load_atbu (CPUState *env)
|
uint32_t cpu_ppc_load_atbu(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
return cpu_ppc_get_tb(env) >> 32;
|
return cpu_ppc_get_tb(env) >> 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t cpu_ppc601_load_rtcu (CPUState *env)
|
uint32_t cpu_ppc601_load_rtcu(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
cpu_ppc_load_tbu(env);
|
cpu_ppc_load_tbu(env);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t cpu_ppc601_load_rtcl (CPUState *env)
|
uint32_t cpu_ppc601_load_rtcl(CPUPPCState *env)
|
||||||
{
|
{
|
||||||
return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
|
return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
|
||||||
}
|
}
|
||||||
|
|
|
@ -315,7 +315,7 @@ get_sigframe(struct emulated_sigaction *ka, CPUX86State *env, size_t frame_size)
|
||||||
}
|
}
|
||||||
|
|
||||||
static void setup_frame(int sig, struct emulated_sigaction *ka,
|
static void setup_frame(int sig, struct emulated_sigaction *ka,
|
||||||
void *set, CPUState *env)
|
void *set, CPUX86State *env)
|
||||||
{
|
{
|
||||||
void *frame;
|
void *frame;
|
||||||
|
|
||||||
|
@ -336,7 +336,7 @@ give_sigsegv:
|
||||||
force_sig(SIGSEGV /* , current */);
|
force_sig(SIGSEGV /* , current */);
|
||||||
}
|
}
|
||||||
|
|
||||||
long do_sigreturn(CPUState *env, int num)
|
long do_sigreturn(CPUX86State *env, int num)
|
||||||
{
|
{
|
||||||
int i = 0;
|
int i = 0;
|
||||||
struct target_sigcontext *scp = get_int_arg(&i, env);
|
struct target_sigcontext *scp = get_int_arg(&i, env);
|
||||||
|
|
Loading…
Reference in New Issue