--- trunk/src/include/cpu_alpha.h 2007/10/08 16:18:51 14 +++ trunk/src/include/cpu_alpha.h 2007/10/08 16:19:11 18 @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_alpha.h,v 1.23 2005/08/28 20:16:24 debug Exp $ + * $Id: cpu_alpha.h,v 1.25 2005/10/22 17:24:22 debug Exp $ */ #include "misc.h" @@ -72,10 +72,10 @@ /* Translation cache struct for each physical page: */ struct alpha_tc_physpage { + struct alpha_instr_call ics[ALPHA_IC_ENTRIES_PER_PAGE + 1]; uint32_t next_ofs; /* or 0 for end of chain */ uint32_t physaddr; int flags; - struct alpha_instr_call ics[ALPHA_IC_ENTRIES_PER_PAGE + 1]; }; @@ -156,7 +156,7 @@ /* cpu_alpha.c: */ void alpha_update_translation_table(struct cpu *cpu, uint64_t vaddr_page, unsigned char *host_page, int writeflag, uint64_t paddr_page); -void alpha_invalidate_translation_caches_paddr(struct cpu *cpu, uint64_t, int); +void alpha_invalidate_translation_caches(struct cpu *cpu, uint64_t, int); void alpha_invalidate_code_translation(struct cpu *cpu, uint64_t, int); int alpha_memory_rw(struct cpu *cpu, struct memory *mem, uint64_t vaddr, unsigned char *data, size_t len, int writeflag, int cache_flags);