diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-08 00:06:01 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-08 00:06:01 +0000 |
commit | c01fccd2de748b8e809573e23a4ed2d5ebd2f715 (patch) | |
tree | c5402da50179aa45e33660bfbae62b31218cbfc4 /target-mips/cpu.h | |
parent | 829ef7b015df71f1532331c2933c5f163ff6a8fe (diff) |
target-mips: rename helpers from do_ to helper_
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6773 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/cpu.h')
-rw-r--r-- | target-mips/cpu.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index eb32fb881d..cbf3cbd73e 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -41,10 +41,10 @@ struct CPUMIPSTLBContext { uint32_t nb_tlb; uint32_t tlb_in_use; int (*map_address) (struct CPUMIPSState *env, target_ulong *physical, int *prot, target_ulong address, int rw, int access_type); - void (*do_tlbwi) (void); - void (*do_tlbwr) (void); - void (*do_tlbp) (void); - void (*do_tlbr) (void); + void (*helper_tlbwi) (void); + void (*helper_tlbwr) (void); + void (*helper_tlbp) (void); + void (*helper_tlbr) (void); union { struct { r4k_tlb_t tlb[MIPS_TLB_MAX]; @@ -466,10 +466,10 @@ int fixed_mmu_map_address (CPUMIPSState *env, target_ulong *physical, int *prot, target_ulong address, int rw, int access_type); int r4k_map_address (CPUMIPSState *env, target_ulong *physical, int *prot, target_ulong address, int rw, int access_type); -void r4k_do_tlbwi (void); -void r4k_do_tlbwr (void); -void r4k_do_tlbp (void); -void r4k_do_tlbr (void); +void r4k_helper_tlbwi (void); +void r4k_helper_tlbwr (void); +void r4k_helper_tlbp (void); +void r4k_helper_tlbr (void); void mips_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, |