target/xtensa: 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
b765e427b0
commit
044dcfc5aa
|
@ -51,6 +51,15 @@ static vaddr xtensa_cpu_get_pc(CPUState *cs)
|
|||
return cpu->env.pc;
|
||||
}
|
||||
|
||||
static void xtensa_restore_state_to_opc(CPUState *cs,
|
||||
const TranslationBlock *tb,
|
||||
const uint64_t *data)
|
||||
{
|
||||
XtensaCPU *cpu = XTENSA_CPU(cs);
|
||||
|
||||
cpu->env.pc = data[0];
|
||||
}
|
||||
|
||||
static bool xtensa_cpu_has_work(CPUState *cs)
|
||||
{
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
|
@ -215,6 +224,7 @@ static const struct SysemuCPUOps xtensa_sysemu_ops = {
|
|||
static const struct TCGCPUOps xtensa_tcg_ops = {
|
||||
.initialize = xtensa_translate_init,
|
||||
.debug_excp_handler = xtensa_breakpoint_handler,
|
||||
.restore_state_to_opc = xtensa_restore_state_to_opc,
|
||||
|
||||
#ifndef CONFIG_USER_ONLY
|
||||
.tlb_fill = xtensa_cpu_tlb_fill,
|
||||
|
|
|
@ -1355,12 +1355,6 @@ void xtensa_cpu_dump_state(CPUState *cs, FILE *f, int flags)
|
|||
}
|
||||
}
|
||||
|
||||
void restore_state_to_opc(CPUXtensaState *env, TranslationBlock *tb,
|
||||
target_ulong *data)
|
||||
{
|
||||
env->pc = data[0];
|
||||
}
|
||||
|
||||
static void translate_abs(DisasContext *dc, const OpcodeArg arg[],
|
||||
const uint32_t par[])
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue