translate-all: Change tb_flush_jmp_cache() argument to CPUState

Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
Andreas Färber 2013-09-01 17:52:07 +02:00
parent 648f034c6c
commit 611d4f996f
3 changed files with 3 additions and 4 deletions

View File

@ -106,7 +106,7 @@ void tlb_flush_page(CPUArchState *env, target_ulong addr)
tlb_flush_entry(&env->tlb_table[mmu_idx][i], addr); tlb_flush_entry(&env->tlb_table[mmu_idx][i], addr);
} }
tb_flush_jmp_cache(env, addr); tb_flush_jmp_cache(cpu, addr);
} }
/* update the TLBs so that writes to code in the virtual page 'addr' /* update the TLBs so that writes to code in the virtual page 'addr'

View File

@ -31,7 +31,7 @@ void tlb_set_dirty(CPUArchState *env, target_ulong vaddr);
extern int tlb_flush_count; extern int tlb_flush_count;
/* exec.c */ /* exec.c */
void tb_flush_jmp_cache(CPUArchState *env, target_ulong addr); void tb_flush_jmp_cache(CPUState *cpu, target_ulong addr);
MemoryRegionSection * MemoryRegionSection *
address_space_translate_for_iotlb(AddressSpace *as, hwaddr addr, hwaddr *xlat, address_space_translate_for_iotlb(AddressSpace *as, hwaddr addr, hwaddr *xlat,

View File

@ -1479,9 +1479,8 @@ void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr)
cpu_resume_from_signal(env, NULL); cpu_resume_from_signal(env, NULL);
} }
void tb_flush_jmp_cache(CPUArchState *env, target_ulong addr) void tb_flush_jmp_cache(CPUState *cpu, target_ulong addr)
{ {
CPUState *cpu = ENV_GET_CPU(env);
unsigned int i; unsigned int i;
/* Discard jump cache entries for any tb which might potentially /* Discard jump cache entries for any tb which might potentially