target/ppc: Convert to tcg_ops restore_state_to_opc
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3eb2c184bf
commit
61bd1d2942
@ -7221,6 +7221,15 @@ static vaddr ppc_cpu_get_pc(CPUState *cs)
|
||||
return cpu->env.nip;
|
||||
}
|
||||
|
||||
static void ppc_restore_state_to_opc(CPUState *cs,
|
||||
const TranslationBlock *tb,
|
||||
const uint64_t *data)
|
||||
{
|
||||
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
||||
|
||||
cpu->env.nip = data[0];
|
||||
}
|
||||
|
||||
static bool ppc_cpu_has_work(CPUState *cs)
|
||||
{
|
||||
PowerPCCPU *cpu = POWERPC_CPU(cs);
|
||||
@ -7446,6 +7455,7 @@ static const struct SysemuCPUOps ppc_sysemu_ops = {
|
||||
|
||||
static const struct TCGCPUOps ppc_tcg_ops = {
|
||||
.initialize = ppc_translate_init,
|
||||
.restore_state_to_opc = ppc_restore_state_to_opc,
|
||||
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
.record_sigsegv = ppc_cpu_record_sigsegv,
|
||||
|
@ -7739,9 +7739,3 @@ void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int max_insns,
|
||||
|
||||
translator_loop(cs, tb, max_insns, pc, host_pc, &ppc_tr_ops, &ctx.base);
|
||||
}
|
||||
|
||||
void restore_state_to_opc(CPUPPCState *env, TranslationBlock *tb,
|
||||
target_ulong *data)
|
||||
{
|
||||
env->nip = data[0];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user