mirror of https://github.com/xemu-project/xemu.git
target/mips: 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
52b8d9a630
commit
3766855c9b
|
@ -538,6 +538,7 @@ static const struct SysemuCPUOps mips_sysemu_ops = {
|
||||||
static const struct TCGCPUOps mips_tcg_ops = {
|
static const struct TCGCPUOps mips_tcg_ops = {
|
||||||
.initialize = mips_tcg_init,
|
.initialize = mips_tcg_init,
|
||||||
.synchronize_from_tb = mips_cpu_synchronize_from_tb,
|
.synchronize_from_tb = mips_cpu_synchronize_from_tb,
|
||||||
|
.restore_state_to_opc = mips_restore_state_to_opc,
|
||||||
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
.tlb_fill = mips_cpu_tlb_fill,
|
.tlb_fill = mips_cpu_tlb_fill,
|
||||||
|
|
|
@ -21,6 +21,9 @@ void mips_cpu_synchronize_from_tb(CPUState *cs, const TranslationBlock *tb);
|
||||||
G_NORETURN void mips_cpu_do_unaligned_access(CPUState *cpu, vaddr addr,
|
G_NORETURN void mips_cpu_do_unaligned_access(CPUState *cpu, vaddr addr,
|
||||||
MMUAccessType access_type, int mmu_idx,
|
MMUAccessType access_type, int mmu_idx,
|
||||||
uintptr_t retaddr);
|
uintptr_t retaddr);
|
||||||
|
void mips_restore_state_to_opc(CPUState *cs,
|
||||||
|
const TranslationBlock *tb,
|
||||||
|
const uint64_t *data);
|
||||||
|
|
||||||
const char *mips_exception_name(int32_t exception);
|
const char *mips_exception_name(int32_t exception);
|
||||||
|
|
||||||
|
|
|
@ -16229,9 +16229,13 @@ void mips_tcg_init(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void restore_state_to_opc(CPUMIPSState *env, TranslationBlock *tb,
|
void mips_restore_state_to_opc(CPUState *cs,
|
||||||
target_ulong *data)
|
const TranslationBlock *tb,
|
||||||
|
const uint64_t *data)
|
||||||
{
|
{
|
||||||
|
MIPSCPU *cpu = MIPS_CPU(cs);
|
||||||
|
CPUMIPSState *env = &cpu->env;
|
||||||
|
|
||||||
env->active_tc.PC = data[0];
|
env->active_tc.PC = data[0];
|
||||||
env->hflags &= ~MIPS_HFLAG_BMASK;
|
env->hflags &= ~MIPS_HFLAG_BMASK;
|
||||||
env->hflags |= data[1];
|
env->hflags |= data[1];
|
||||||
|
|
Loading…
Reference in New Issue