mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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
This commit is contained in:
parent
829ef7b015
commit
c01fccd2de
6 changed files with 277 additions and 293 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue