--- trunk/src/cpus/cpu_sh.c 2007/10/08 16:18:51 14 +++ trunk/src/cpus/cpu_sh.c 2007/10/08 16:19:23 20 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_sh.c,v 1.6 2005/09/04 14:38:17 debug Exp $ + * $Id: cpu_sh.c,v 1.8 2005/11/13 00:14:07 debug Exp $ * * Hitachi SuperH ("SH") CPU emulation. * @@ -72,14 +72,14 @@ if (cpu->is_32bit) { cpu->update_translation_table = sh32_update_translation_table; - cpu->invalidate_translation_caches_paddr = - sh32_invalidate_translation_caches_paddr; + cpu->invalidate_translation_caches = + sh32_invalidate_translation_caches; cpu->invalidate_code_translation = sh32_invalidate_code_translation; } else { cpu->update_translation_table = sh_update_translation_table; - cpu->invalidate_translation_caches_paddr = - sh_invalidate_translation_caches_paddr; + cpu->invalidate_translation_caches = + sh_invalidate_translation_caches; cpu->invalidate_code_translation = sh_invalidate_code_translation; } @@ -191,32 +191,6 @@ } -/* - * sh_cpu_show_full_statistics(): - * - * Show detailed statistics on opcode usage on each cpu. - */ -void sh_cpu_show_full_statistics(struct machine *m) -{ - fatal("sh_cpu_show_full_statistics(): TODO\n"); -} - - -/* - * sh_cpu_tlbdump(): - * - * Called from the debugger to dump the TLB in a readable format. - * x is the cpu number to dump, or -1 to dump all CPUs. - * - * If rawflag is nonzero, then the TLB contents isn't formated nicely, - * just dumped. - */ -void sh_cpu_tlbdump(struct machine *m, int x, int rawflag) -{ - fatal("sh_cpu_tlbdump(): TODO\n"); -} - - /* * sh_cpu_interrupt(): */