--- trunk/src/include/cpu_avr.h 2007/10/08 16:18:51 14 +++ trunk/src/include/cpu_avr.h 2007/10/08 16:19:11 18 @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_avr.h,v 1.4 2005/09/17 22:34:53 debug Exp $ + * $Id: cpu_avr.h,v 1.7 2005/10/27 14:01:15 debug Exp $ */ #include "misc.h" @@ -54,10 +54,10 @@ /* Translation cache struct for each physical page: */ struct avr_tc_physpage { + struct avr_instr_call ics[AVR_IC_ENTRIES_PER_PAGE + 1]; uint32_t next_ofs; /* or 0 for end of chain */ uint32_t physaddr; int flags; - struct avr_instr_call ics[AVR_IC_ENTRIES_PER_PAGE + 1]; }; @@ -131,13 +131,15 @@ unsigned char *host_store[AVR_N_VPH_ENTRIES]; uint32_t phys_addr[AVR_N_VPH_ENTRIES]; struct avr_tc_physpage *phys_page[AVR_N_VPH_ENTRIES]; + + uint32_t phystranslation[AVR_N_VPH_ENTRIES/32]; }; /* cpu_avr.c: */ void avr_update_translation_table(struct cpu *cpu, uint64_t vaddr_page, unsigned char *host_page, int writeflag, uint64_t paddr_page); -void avr_invalidate_translation_caches_paddr(struct cpu *cpu, uint64_t, int); +void avr_invalidate_translation_caches(struct cpu *cpu, uint64_t, int); void avr_invalidate_code_translation(struct cpu *cpu, uint64_t, int); int avr_memory_rw(struct cpu *cpu, struct memory *mem, uint64_t vaddr, unsigned char *data, size_t len, int writeflag, int cache_flags);