sim: cr16/d10v: localize translation funcs
These functions are only used in the interp module, so there's no point in exporting them and declaring them in the external sim interface.
This commit is contained in:
parent
c316a17c40
commit
6637a4265e
7 changed files with 27 additions and 52 deletions
|
@ -1,3 +1,12 @@
|
|||
2015-11-10 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sim-cr16.h (sim_cr16_translate_dmap_addr): Delete.
|
||||
(sim_cr16_translate_imap_addr): Likewise.
|
||||
(sim_cr16_translate_addr): Likewise.
|
||||
* sim-d10v.h (sim_d10v_translate_dmap_addr): Delete.
|
||||
(sim_d10v_translate_imap_addr): Likewise.
|
||||
(sim_d10v_translate_addr): Likewise.
|
||||
|
||||
2015-06-17 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* callback.h (CB_TARGET_DEFS_MAP): Add name member.
|
||||
|
|
|
@ -33,29 +33,6 @@ enum
|
|||
SIM_CR16_MEMORY_IMAP = 0x10000000
|
||||
};
|
||||
|
||||
extern unsigned long sim_cr16_translate_dmap_addr
|
||||
(unsigned long offset,
|
||||
int nr_bytes,
|
||||
unsigned long *phys,
|
||||
void *regcache,
|
||||
unsigned long (*dmap_register) (void *regcache, int reg_nr));
|
||||
|
||||
extern unsigned long sim_cr16_translate_imap_addr
|
||||
(unsigned long offset,
|
||||
int nr_bytes,
|
||||
unsigned long *phys,
|
||||
void *regcache,
|
||||
unsigned long (*imap_register) (void *regcache, int reg_nr));
|
||||
|
||||
extern unsigned long sim_cr16_translate_addr
|
||||
(unsigned long vaddr,
|
||||
int nr_bytes,
|
||||
unsigned long *phys,
|
||||
void *regcache,
|
||||
unsigned long (*dmap_register) (void *regcache, int reg_nr),
|
||||
unsigned long (*imap_register) (void *regcache, int reg_nr));
|
||||
|
||||
|
||||
/* The simulator makes use of the following register information. */
|
||||
|
||||
enum sim_cr16_regs
|
||||
|
|
|
@ -53,29 +53,6 @@ enum
|
|||
SIM_D10V_MEMORY_IMAP = 0x11000000
|
||||
};
|
||||
|
||||
extern unsigned long sim_d10v_translate_dmap_addr
|
||||
(unsigned long offset,
|
||||
int nr_bytes,
|
||||
unsigned long *phys,
|
||||
void *regcache,
|
||||
unsigned long (*dmap_register) (void *regcache, int reg_nr));
|
||||
|
||||
extern unsigned long sim_d10v_translate_imap_addr
|
||||
(unsigned long offset,
|
||||
int nr_bytes,
|
||||
unsigned long *phys,
|
||||
void *regcache,
|
||||
unsigned long (*imap_register) (void *regcache, int reg_nr));
|
||||
|
||||
extern unsigned long sim_d10v_translate_addr
|
||||
(unsigned long vaddr,
|
||||
int nr_bytes,
|
||||
unsigned long *phys,
|
||||
void *regcache,
|
||||
unsigned long (*dmap_register) (void *regcache, int reg_nr),
|
||||
unsigned long (*imap_register) (void *regcache, int reg_nr));
|
||||
|
||||
|
||||
/* The simulator makes use of the following register information. */
|
||||
|
||||
enum sim_d10v_regs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue