mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
cpu: Move singlestep_enabled field from CPU_COMMON to CPUState
Prepares for changing cpu_single_step() argument to CPUState. Acked-by: Michael Walle <michael@walle.cc> (for lm32) Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
801c4c287b
commit
ed2803da58
23 changed files with 78 additions and 52 deletions
|
@ -1662,6 +1662,7 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu,
|
|||
TranslationBlock *tb,
|
||||
int search_pc)
|
||||
{
|
||||
CPUState *cs = CPU(cpu);
|
||||
struct DisasContext ctx, *dc = &ctx;
|
||||
uint16_t *gen_opc_end;
|
||||
uint32_t pc_start;
|
||||
|
@ -1681,7 +1682,7 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu,
|
|||
dc->mem_idx = cpu_mmu_index(&cpu->env);
|
||||
dc->synced_flags = dc->tb_flags = tb->flags;
|
||||
dc->delayed_branch = !!(dc->tb_flags & D_FLAG);
|
||||
dc->singlestep_enabled = cpu->env.singlestep_enabled;
|
||||
dc->singlestep_enabled = cs->singlestep_enabled;
|
||||
if (qemu_loglevel_mask(CPU_LOG_TB_IN_ASM)) {
|
||||
qemu_log("-----------------------------------------\n");
|
||||
log_cpu_state(CPU(cpu), 0);
|
||||
|
@ -1743,7 +1744,7 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu,
|
|||
}
|
||||
} while (!dc->is_jmp
|
||||
&& tcg_ctx.gen_opc_ptr < gen_opc_end
|
||||
&& !cpu->env.singlestep_enabled
|
||||
&& !cs->singlestep_enabled
|
||||
&& !singlestep
|
||||
&& (dc->pc < next_page_start)
|
||||
&& num_insns < max_insns);
|
||||
|
@ -1755,7 +1756,7 @@ static inline void gen_intermediate_code_internal(OpenRISCCPU *cpu,
|
|||
dc->is_jmp = DISAS_UPDATE;
|
||||
tcg_gen_movi_tl(cpu_pc, dc->pc);
|
||||
}
|
||||
if (unlikely(cpu->env.singlestep_enabled)) {
|
||||
if (unlikely(cs->singlestep_enabled)) {
|
||||
if (dc->is_jmp == DISAS_NEXT) {
|
||||
tcg_gen_movi_tl(cpu_pc, dc->pc);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue