mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
target/rx: 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
ad1e84f504
commit
5439d7a68c
2 changed files with 10 additions and 6 deletions
|
@ -47,6 +47,15 @@ static void rx_cpu_synchronize_from_tb(CPUState *cs,
|
||||||
cpu->env.pc = tb_pc(tb);
|
cpu->env.pc = tb_pc(tb);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void rx_restore_state_to_opc(CPUState *cs,
|
||||||
|
const TranslationBlock *tb,
|
||||||
|
const uint64_t *data)
|
||||||
|
{
|
||||||
|
RXCPU *cpu = RX_CPU(cs);
|
||||||
|
|
||||||
|
cpu->env.pc = data[0];
|
||||||
|
}
|
||||||
|
|
||||||
static bool rx_cpu_has_work(CPUState *cs)
|
static bool rx_cpu_has_work(CPUState *cs)
|
||||||
{
|
{
|
||||||
return cs->interrupt_request &
|
return cs->interrupt_request &
|
||||||
|
@ -192,6 +201,7 @@ static const struct SysemuCPUOps rx_sysemu_ops = {
|
||||||
static const struct TCGCPUOps rx_tcg_ops = {
|
static const struct TCGCPUOps rx_tcg_ops = {
|
||||||
.initialize = rx_translate_init,
|
.initialize = rx_translate_init,
|
||||||
.synchronize_from_tb = rx_cpu_synchronize_from_tb,
|
.synchronize_from_tb = rx_cpu_synchronize_from_tb,
|
||||||
|
.restore_state_to_opc = rx_restore_state_to_opc,
|
||||||
.tlb_fill = rx_cpu_tlb_fill,
|
.tlb_fill = rx_cpu_tlb_fill,
|
||||||
|
|
||||||
#ifndef CONFIG_USER_ONLY
|
#ifndef CONFIG_USER_ONLY
|
||||||
|
|
|
@ -2371,12 +2371,6 @@ void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int max_insns,
|
||||||
translator_loop(cs, tb, max_insns, pc, host_pc, &rx_tr_ops, &dc.base);
|
translator_loop(cs, tb, max_insns, pc, host_pc, &rx_tr_ops, &dc.base);
|
||||||
}
|
}
|
||||||
|
|
||||||
void restore_state_to_opc(CPURXState *env, TranslationBlock *tb,
|
|
||||||
target_ulong *data)
|
|
||||||
{
|
|
||||||
env->pc = data[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
#define ALLOC_REGISTER(sym, name) \
|
#define ALLOC_REGISTER(sym, name) \
|
||||||
cpu_##sym = tcg_global_mem_new_i32(cpu_env, \
|
cpu_##sym = tcg_global_mem_new_i32(cpu_env, \
|
||||||
offsetof(CPURXState, sym), name)
|
offsetof(CPURXState, sym), name)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue