diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-10-24 21:06:03 +1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-10-26 11:11:28 +1000 |
commit | b765e427b0050c497bd0393ef1f0cbd223bd90ba (patch) | |
tree | e56823c623b89f4374af75b172bd71558db2c1a6 /target | |
parent | f36aaa53c66c613228c1a9f517cb357160049b25 (diff) | |
download | qemu-b765e427b0050c497bd0393ef1f0cbd223bd90ba.zip qemu-b765e427b0050c497bd0393ef1f0cbd223bd90ba.tar.gz qemu-b765e427b0050c497bd0393ef1f0cbd223bd90ba.tar.bz2 |
target/tricore: 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>
Diffstat (limited to 'target')
-rw-r--r-- | target/tricore/cpu.c | 11 | ||||
-rw-r--r-- | target/tricore/translate.c | 6 |
2 files changed, 11 insertions, 6 deletions
diff --git a/target/tricore/cpu.c b/target/tricore/cpu.c index ab7a1e3..2c54a28 100644 --- a/target/tricore/cpu.c +++ b/target/tricore/cpu.c @@ -58,6 +58,16 @@ static void tricore_cpu_synchronize_from_tb(CPUState *cs, env->PC = tb_pc(tb); } +static void tricore_restore_state_to_opc(CPUState *cs, + const TranslationBlock *tb, + const uint64_t *data) +{ + TriCoreCPU *cpu = TRICORE_CPU(cs); + CPUTriCoreState *env = &cpu->env; + + env->PC = data[0]; +} + static void tricore_cpu_reset(DeviceState *dev) { CPUState *s = CPU(dev); @@ -161,6 +171,7 @@ static const struct SysemuCPUOps tricore_sysemu_ops = { static const struct TCGCPUOps tricore_tcg_ops = { .initialize = tricore_tcg_init, .synchronize_from_tb = tricore_cpu_synchronize_from_tb, + .restore_state_to_opc = tricore_restore_state_to_opc, .tlb_fill = tricore_cpu_tlb_fill, }; diff --git a/target/tricore/translate.c b/target/tricore/translate.c index a0558ea..c5b7bfb 100644 --- a/target/tricore/translate.c +++ b/target/tricore/translate.c @@ -8886,12 +8886,6 @@ void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int max_insns, &tricore_tr_ops, &ctx.base); } -void -restore_state_to_opc(CPUTriCoreState *env, TranslationBlock *tb, - target_ulong *data) -{ - env->PC = data[0]; -} /* * * Initialization |