X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=cpu%2Fsh2%2Fcompiler.c;h=13c606b4f2ef831d9b72b855c05df180b8272191;hb=553c3eaa3a4bda6ba99d925ecab518fe82530cd6;hp=b9df9b5abd984302863eeeef5e8d651291a82b11;hpb=679af8a3f466a2a4a20f58e4181a231fb73e9836;p=picodrive.git diff --git a/cpu/sh2/compiler.c b/cpu/sh2/compiler.c index b9df9b5..13c606b 100644 --- a/cpu/sh2/compiler.c +++ b/cpu/sh2/compiler.c @@ -1,12 +1,88 @@ +/* + * vim:shiftwidth=2:expandtab + */ #include #include #include +#include "../../pico/pico_int.h" #include "sh2.h" #include "compiler.h" #include "../drc/cmn.h" +#ifndef DRC_DEBUG +#define DRC_DEBUG 0 +#endif + +#if DRC_DEBUG +#define dbg(l,...) { \ + if ((l) & DRC_DEBUG) \ + elprintf(EL_STATUS, ##__VA_ARGS__); \ +} + +#include "mame/sh2dasm.h" +#include +static int insns_compiled, hash_collisions, host_insn_count; +#define COUNT_OP \ + host_insn_count++ +#else // !DRC_DEBUG +#define COUNT_OP +#define dbg(...) +#endif + +#if (DRC_DEBUG & 2) +static u8 *tcache_dsm_ptrs[3]; +static char sh2dasm_buff[64]; +#define do_host_disasm(tcid) \ + host_dasm(tcache_dsm_ptrs[tcid], tcache_ptr - tcache_dsm_ptrs[tcid]); \ + tcache_dsm_ptrs[tcid] = tcache_ptr +#else +#define do_host_disasm(x) +#endif + #define BLOCK_CYCLE_LIMIT 100 +#define MAX_BLOCK_SIZE (BLOCK_CYCLE_LIMIT * 6 * 6) + +// we have 3 translation cache buffers, split from one drc/cmn buffer. +// BIOS shares tcache with data array because it's only used for init +// and can be discarded early +static const int tcache_sizes[3] = { + DRC_TCACHE_SIZE * 6 / 8, // ROM, DRAM + DRC_TCACHE_SIZE / 8, // BIOS, data array in master sh2 + DRC_TCACHE_SIZE / 8, // ... slave +}; + +static u8 *tcache_bases[3]; +static u8 *tcache_ptrs[3]; + +// ptr for code emiters +static u8 *tcache_ptr; + +#ifdef ARM +#include "../drc/emit_arm.c" + +static const int reg_map_g2h[] = { + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, +}; + +#else +#include "../drc/emit_x86.c" + +static const int reg_map_g2h[] = { + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, + -1, -1, -1, -1, +}; + +#endif typedef enum { SHR_R0 = 0, SHR_R15 = 15, @@ -16,32 +92,52 @@ typedef enum { typedef struct block_desc_ { u32 addr; // SH2 PC address + u32 end_addr; // TODO rm? void *tcache_ptr; // translated block for above PC - struct block_desc_ *next; // next block with the same PC hash + struct block_desc_ *next; // next block with the same PC hash +#if (DRC_DEBUG & 1) + int refcount; +#endif } block_desc; -#define MAX_BLOCK_COUNT 1024 -static block_desc *block_table; -static int block_count; +static const int block_max_counts[3] = { + 4*1024, + 256, + 256, +}; +static block_desc *block_tables[3]; +static int block_counts[3]; +// ROM hash table #define MAX_HASH_ENTRIES 1024 #define HASH_MASK (MAX_HASH_ENTRIES - 1) - -#ifdef DRC_DEBUG -#include "mame/sh2dasm.h" -#include -static void *tcache_dsm_ptr = tcache; -#endif - -static void *tcache_ptr; - -#include "../drc/emit_x86.c" +static void **hash_table; extern void sh2_drc_entry(SH2 *sh2, void *block); extern void sh2_drc_exit(void); // tmp -extern void __attribute__((regparm(2))) sh2_do_op(SH2 *sh2, int opcode); +extern void REGPARM(2) sh2_do_op(SH2 *sh2, int opcode); +static void REGPARM(1) sh2_test_irq(SH2 *sh2); + +static void flush_tcache(int tcid) +{ + dbg(1, "tcache #%d flush! (%d/%d, bds %d/%d)", tcid, + tcache_ptrs[tcid] - tcache_bases[tcid], tcache_sizes[tcid], + block_counts[tcid], block_max_counts[tcid]); + + block_counts[tcid] = 0; + tcache_ptrs[tcid] = tcache_bases[tcid]; + if (tcid == 0) { // ROM, RAM + memset(hash_table, 0, sizeof(hash_table[0]) * MAX_HASH_ENTRIES); + memset(Pico32xMem->drcblk_ram, 0, sizeof(Pico32xMem->drcblk_ram)); + } + else + memset(Pico32xMem->drcblk_da[tcid - 1], 0, sizeof(Pico32xMem->drcblk_da[0])); +#if (DRC_DEBUG & 2) + tcache_dsm_ptrs[tcid] = tcache_bases[tcid]; +#endif +} static void *dr_find_block(block_desc *tab, u32 addr) { @@ -56,20 +152,19 @@ static void *dr_find_block(block_desc *tab, u32 addr) return NULL; } -static block_desc *dr_add_block(u32 addr, void *tcache_ptr) +static block_desc *dr_add_block(u32 addr, int tcache_id, int *blk_id) { + int *bcount = &block_counts[tcache_id]; block_desc *bd; - if (block_count == MAX_BLOCK_COUNT) { - // FIXME: flush cache instead - printf("block descriptor overflow\n"); - exit(1); - } + if (*bcount >= block_max_counts[tcache_id]) + return NULL; - bd = &block_table[block_count]; + bd = &block_tables[tcache_id][*bcount]; bd->addr = addr; bd->tcache_ptr = tcache_ptr; - block_count++; + *blk_id = *bcount; + (*bcount)++; return bd; } @@ -121,18 +216,9 @@ static void emit_braf(sh2_reg_e reg, u32 pc) emith_move_r_r(0, host_reg); emith_add_r_imm(0, pc); - emith_ctx_write(0, SHR_PC * 4); + emith_ctx_write(0, SHR_PPC * 4); } -// FIXME: this is broken, delayed insn shouldn't affect branch -#define DELAYED_OP \ - if (delayed_op < 0) { \ - delayed_op = op; \ - goto next_op; \ - } \ - delayed_op = -1; \ - pc -= 2 /* adjust back */ - /* static int sh2_translate_op4(int op) { @@ -149,43 +235,76 @@ static int sh2_translate_op4(int op) } */ +#define DELAYED_OP \ + delayed_op = 2 + +#define CHECK_UNHANDLED_BITS(mask) { \ + if ((op & (mask)) != 0) \ + goto default_; \ +} + static void *sh2_translate(SH2 *sh2, block_desc *other_block) { - void *block_entry = tcache_ptr; + void *block_entry; block_desc *this_block; unsigned int pc = sh2->pc; - int op, delayed_op = -1; + int op, delayed_op = 0, test_irq = 0; + int tcache_id = 0, blkid = 0; int cycles = 0; - u32 tmp; + u32 tmp, tmp2; - this_block = dr_add_block(pc, block_entry); - if (other_block != NULL) { - printf("hash collision between %08x and %08x\n", pc, other_block->addr); - this_block->next = other_block; + // validate PC + tmp = sh2->pc >> 29; + if ((tmp != 0 && tmp != 1 && tmp != 6) || sh2->pc == 0) { + printf("invalid PC, aborting: %08x\n", sh2->pc); + // FIXME: be less destructive + exit(1); } - HASH_FUNC(sh2->pc_hashtab, pc) = this_block; -#ifdef DRC_DEBUG - printf("== %csh2 block #%d %08x %p\n", sh2->is_slave ? 's' : 'm', - block_count, pc, block_entry); + if ((sh2->pc & 0xe0000000) == 0xc0000000 || (sh2->pc & ~0xfff) == 0) { + // data_array, BIOS have separate tcache (shared) + tcache_id = 1 + sh2->is_slave; + } + + tcache_ptr = tcache_ptrs[tcache_id]; + this_block = dr_add_block(pc, tcache_id, &blkid); + + tmp = tcache_ptr - tcache_bases[tcache_id]; + if (tmp > tcache_sizes[tcache_id] - MAX_BLOCK_SIZE || this_block == NULL) { + flush_tcache(tcache_id); + tcache_ptr = tcache_ptrs[tcache_id]; + other_block = NULL; // also gone too due to flush + this_block = dr_add_block(pc, tcache_id, &blkid); + } + + this_block->next = other_block; + if ((sh2->pc & 0xc6000000) == 0x02000000) // ROM + HASH_FUNC(hash_table, pc) = this_block; + + block_entry = tcache_ptr; +#if (DRC_DEBUG & 1) + printf("== %csh2 block #%d,%d %08x -> %p\n", sh2->is_slave ? 's' : 'm', + tcache_id, block_counts[tcache_id], pc, block_entry); + if (other_block != NULL) { + printf(" hash collision with %08x\n", other_block->addr); + hash_collisions++; + } #endif - while (cycles < BLOCK_CYCLE_LIMIT) + while (cycles < BLOCK_CYCLE_LIMIT || delayed_op) { - if (delayed_op >= 0) - op = delayed_op; - else { -next_op: - op = p32x_sh2_read16(pc, sh2->is_slave); - -#ifdef DRC_DEBUG - { - char buff[64]; - DasmSH2(buff, pc, op); - printf("%08x %04x %s\n", pc, op, buff); - } + if (delayed_op > 0) + delayed_op--; + + op = p32x_sh2_read16(pc, sh2); + +#if (DRC_DEBUG & 3) + insns_compiled++; +#if (DRC_DEBUG & 2) + DasmSH2(sh2dasm_buff, pc, op); + printf("%08x %04x %s\n", pc, op, sh2dasm_buff); +#endif #endif - } pc += 2; cycles++; @@ -193,60 +312,72 @@ next_op: switch ((op >> 12) & 0x0f) { case 0x00: - // RTS 0000000000001011 - if (op == 0x000b) { + switch (op & 0x0f) { + case 0x03: + CHECK_UNHANDLED_BITS(0xd0); + // BRAF Rm 0000mmmm00100011 + // BSRF Rm 0000mmmm00000011 DELAYED_OP; - emit_move_r_r(SHR_PC, SHR_PR); + if (!(op & 0x20)) + emit_move_r_imm32(SHR_PR, pc + 2); + emit_braf((op >> 8) & 0x0f, pc + 2); cycles++; - goto end_block; - } - // RTE 0000000000101011 - if (op == 0x002b) { + goto end_op; + case 0x09: + CHECK_UNHANDLED_BITS(0xf0); + // NOP 0000000000001001 + goto end_op; + case 0x0b: + CHECK_UNHANDLED_BITS(0xd0); DELAYED_OP; - cycles++; - //emit_move_r_r(SHR_PC, SHR_PR); - emit_move_r_imm32(SHR_PC, pc - 4); - emith_pass_arg(2, sh2, op); - emith_call(sh2_do_op); - goto end_block; - } - // BRAF Rm 0000mmmm00100011 - if (op == 0x0023) { - DELAYED_OP; - cycles++; - emit_braf((op >> 8) & 0x0f, pc); - goto end_block; - } - // BSRF Rm 0000mmmm00000011 - if (op == 0x0003) { - DELAYED_OP; - emit_move_r_imm32(SHR_PR, pc); - emit_braf((op >> 8) & 0x0f, pc); - cycles++; - goto end_block; + if (!(op & 0x20)) { + // RTS 0000000000001011 + emit_move_r_r(SHR_PPC, SHR_PR); + cycles++; + } else { + // RTE 0000000000101011 + //emit_move_r_r(SHR_PC, SHR_PR); + emit_move_r_imm32(SHR_PC, pc - 2); + emith_pass_arg_r(0, CONTEXT_REG); + emith_pass_arg_imm(1, op); + emith_call(sh2_do_op); + emit_move_r_r(SHR_PPC, SHR_PC); + test_irq = 1; + cycles += 3; + } + goto end_op; } goto default_; case 0x04: - // JMP @Rm 0100mmmm00101011 - if ((op & 0xff) == 0x2b) { - DELAYED_OP; - emit_move_r_r(SHR_PC, (op >> 8) & 0x0f); - cycles++; - goto end_block; - } - // JSR @Rm 0100mmmm00001011 - if ((op & 0xff) == 0x0b) { + switch (op & 0x0f) { + case 0x07: + if ((op & 0xf0) != 0) + goto default_; + // LDC.L @Rm+,SR 0100mmmm00000111 + test_irq = 1; + goto default_; + case 0x0b: + if ((op & 0xd0) != 0) + goto default_; + // JMP @Rm 0100mmmm00101011 + // JSR @Rm 0100mmmm00001011 DELAYED_OP; - emit_move_r_imm32(SHR_PR, pc); - emit_move_r_r(SHR_PC, (op >> 8) & 0x0f); + if (!(op & 0x20)) + emit_move_r_imm32(SHR_PR, pc + 2); + emit_move_r_r(SHR_PPC, (op >> 8) & 0x0f); cycles++; - goto end_block; + goto end_op; + case 0x0e: + if ((op & 0xf0) != 0) + goto default_; + // LDC Rm,SR 0100mmmm00001110 + test_irq = 1; + goto default_; } goto default_; - case 0x08: { - int adj = 2; + case 0x08: switch (op & 0x0f00) { // BT/S label 10001101dddddddd case 0x0d00: @@ -254,56 +385,87 @@ next_op: case 0x0f00: DELAYED_OP; cycles--; - adj = 0; // fallthrough // BT label 10001001dddddddd case 0x0900: // BF label 10001011dddddddd case 0x0b00: - cycles += 2; - emit_move_r_imm32(SHR_PC, pc); - emith_test_t(); tmp = ((signed int)(op << 24) >> 23); - EMIT_CONDITIONAL(emit_move_r_imm32(SHR_PC, pc + tmp + adj), (op & 0x0200) ? 1 : 0); - goto end_block; + tmp2 = delayed_op ? SHR_PPC : SHR_PC; + emit_move_r_imm32(tmp2, pc + (delayed_op ? 2 : 0)); + emith_test_t(); + EMITH_CONDITIONAL(emit_move_r_imm32(tmp2, pc + tmp + 2), (op & 0x0200) ? 1 : 0); + cycles += 2; + if (!delayed_op) + goto end_block; + goto end_op; } goto default_; - } case 0x0a: // BRA label 1010dddddddddddd DELAYED_OP; do_bra: tmp = ((signed int)(op << 20) >> 19); - emit_move_r_imm32(SHR_PC, pc + tmp); + emit_move_r_imm32(SHR_PPC, pc + tmp + 2); cycles++; - goto end_block; + break; case 0x0b: // BSR label 1011dddddddddddd DELAYED_OP; - emit_move_r_imm32(SHR_PR, pc); + emit_move_r_imm32(SHR_PR, pc + 2); goto do_bra; default: default_: emit_move_r_imm32(SHR_PC, pc - 2); - emith_pass_arg(2, sh2, op); + emith_pass_arg_r(0, CONTEXT_REG); + emith_pass_arg_imm(1, op); emith_call(sh2_do_op); break; } -#ifdef DRC_DEBUG - host_dasm(tcache_dsm_ptr, (char *)tcache_ptr - (char *)tcache_dsm_ptr); - tcache_dsm_ptr = tcache_ptr; -#endif +end_op: + if (delayed_op == 1) + emit_move_r_r(SHR_PC, SHR_PPC); + + if (test_irq && delayed_op != 2) { + emith_pass_arg_r(0, CONTEXT_REG); + emith_call(sh2_test_irq); + break; + } + if (delayed_op == 1) + break; + + do_host_disasm(tcache_id); } end_block: - if ((char *)tcache_ptr - (char *)tcache > DRC_TCACHE_SIZE) { - printf("tcache overflow!\n"); - fflush(stdout); - exit(1); + this_block->end_addr = pc; + + // mark memory blocks as containing compiled code + if ((sh2->pc & 0xe0000000) == 0xc0000000 || (sh2->pc & ~0xfff) == 0) { + // data array, BIOS + u16 *drcblk = Pico32xMem->drcblk_da[sh2->is_slave]; + tmp = (this_block->addr & 0xfff) >> SH2_DRCBLK_DA_SHIFT; + tmp2 = (this_block->end_addr & 0xfff) >> SH2_DRCBLK_DA_SHIFT; + Pico32xMem->drcblk_da[sh2->is_slave][tmp] = (blkid << 1) | 1; + for (++tmp; tmp < tmp2; tmp++) { + if (drcblk[tmp]) + break; // dont overwrite overlay block + drcblk[tmp] = blkid << 1; + } + } + else if ((this_block->addr & 0xc7fc0000) == 0x06000000) { // DRAM + tmp = (this_block->addr & 0x3ffff) >> SH2_DRCBLK_RAM_SHIFT; + tmp2 = (this_block->end_addr & 0x3ffff) >> SH2_DRCBLK_RAM_SHIFT; + Pico32xMem->drcblk_ram[tmp] = (blkid << 1) | 1; + for (++tmp; tmp < tmp2; tmp++) { + if (Pico32xMem->drcblk_ram[tmp]) + break; + Pico32xMem->drcblk_ram[tmp] = blkid << 1; + } } if (reg_map_g2h[SHR_SR] == -1) { @@ -311,46 +473,126 @@ end_block: } else emith_sub_r_imm(reg_map_g2h[SHR_SR], cycles << 12); emith_jump(sh2_drc_exit); + tcache_ptrs[tcache_id] = tcache_ptr; -#ifdef DRC_DEBUG - host_dasm(tcache_dsm_ptr, (char *)tcache_ptr - (char *)tcache_dsm_ptr); - tcache_dsm_ptr = tcache_ptr; +#ifdef ARM + cache_flush_d_inval_i(block_entry, tcache_ptr); #endif - return block_entry; + do_host_disasm(tcache_id); + dbg(1, " block #%d,%d tcache %d/%d, insns %d -> %d %.3f", + tcache_id, block_counts[tcache_id], + tcache_ptr - tcache_bases[tcache_id], tcache_sizes[tcache_id], + insns_compiled, host_insn_count, (double)host_insn_count / insns_compiled); + if ((sh2->pc & 0xc6000000) == 0x02000000) // ROM + dbg(1, " hash collisions %d/%d", hash_collisions, block_counts[tcache_id]); +#if (DRC_DEBUG & 2) + fflush(stdout); +#endif + + return block_entry; +/* unimplemented: // last op -#ifdef DRC_DEBUG - host_dasm(tcache_dsm_ptr, (char *)tcache_ptr - (char *)tcache_dsm_ptr); - tcache_dsm_ptr = tcache_ptr; -#endif + do_host_disasm(tcache_id); exit(1); +*/ } void __attribute__((noinline)) sh2_drc_dispatcher(SH2 *sh2) { while (((signed int)sh2->sr >> 12) > 0) { - block_desc *bd = HASH_FUNC(sh2->pc_hashtab, sh2->pc); void *block = NULL; + block_desc *bd = NULL; + + // FIXME: must avoid doing it so often.. + sh2_test_irq(sh2); - if (bd != NULL) { - if (bd->addr == sh2->pc) + // we have full block id tables for data_array and RAM + // BIOS goes to data_array table too + if ((sh2->pc & 0xff000000) == 0xc0000000 || (sh2->pc & ~0xfff) == 0) { + int blkid = Pico32xMem->drcblk_da[sh2->is_slave][(sh2->pc & 0xfff) >> SH2_DRCBLK_DA_SHIFT]; + if (blkid & 1) { + bd = &block_tables[1 + sh2->is_slave][blkid >> 1]; block = bd->tcache_ptr; - else - block = dr_find_block(bd, sh2->pc); + } + } + // RAM + else if ((sh2->pc & 0xc6000000) == 0x06000000) { + int blkid = Pico32xMem->drcblk_ram[(sh2->pc & 0x3ffff) >> SH2_DRCBLK_RAM_SHIFT]; + if (blkid & 1) { + bd = &block_tables[0][blkid >> 1]; + block = bd->tcache_ptr; + } + } + // ROM + else if ((sh2->pc & 0xc6000000) == 0x02000000) { + bd = HASH_FUNC(hash_table, sh2->pc); + + if (bd != NULL) { + if (bd->addr == sh2->pc) + block = bd->tcache_ptr; + else + block = dr_find_block(bd, sh2->pc); + } } if (block == NULL) block = sh2_translate(sh2, bd); -#ifdef DRC_DEBUG - printf("= %csh2 enter %08x %p\n", sh2->is_slave ? 's' : 'm', sh2->pc, block); + dbg(4, "= %csh2 enter %08x %p, c=%d", sh2->is_slave ? 's' : 'm', + sh2->pc, block, (signed int)sh2->sr >> 12); +#if (DRC_DEBUG & 1) + if (bd != NULL) + bd->refcount++; #endif sh2_drc_entry(sh2, block); } } +static void sh2_smc_rm_block(u16 *drcblk, u16 *p, block_desc *btab, u32 a) +{ + u16 id = *p >> 1; + block_desc *bd = btab + id; + + dbg(1, " killing block %08x", bd->addr); + bd->addr = bd->end_addr = 0; + + while (p > drcblk && (p[-1] >> 1) == id) + p--; + + // check for possible overlay block + if (p > 0 && p[-1] != 0) { + bd = btab + (p[-1] >> 1); + if (bd->addr <= a && a < bd->end_addr) + sh2_smc_rm_block(drcblk, p - 1, btab, a); + } + + do { + *p++ = 0; + } + while ((*p >> 1) == id); +} + +void sh2_drc_wcheck_ram(unsigned int a, int val, int cpuid) +{ + u16 *drcblk = Pico32xMem->drcblk_ram; + u16 *p = drcblk + ((a & 0x3ffff) >> SH2_DRCBLK_RAM_SHIFT); + + dbg(1, "%csh2 smc check @%08x", cpuid ? 's' : 'm', a); + sh2_smc_rm_block(drcblk, p, block_tables[0], a); +} + +void sh2_drc_wcheck_da(unsigned int a, int val, int cpuid) +{ + u16 *drcblk = Pico32xMem->drcblk_da[cpuid]; + u16 *p = drcblk + ((a & 0xfff) >> SH2_DRCBLK_DA_SHIFT); + + dbg(1, "%csh2 smc check @%08x", cpuid ? 's' : 'm', a); + sh2_smc_rm_block(drcblk, p, block_tables[1 + cpuid], a); +} + void sh2_execute(SH2 *sh2, int cycles) { sh2->cycles_aim += cycles; @@ -364,35 +606,118 @@ void sh2_execute(SH2 *sh2, int cycles) sh2->cycles_done += cycles - ((signed int)sh2->sr >> 12); } +static void REGPARM(1) sh2_test_irq(SH2 *sh2) +{ + if (sh2->pending_level > ((sh2->sr >> 4) & 0x0f)) + { + if (sh2->pending_irl > sh2->pending_int_irq) + sh2_do_irq(sh2, sh2->pending_irl, 64 + sh2->pending_irl/2); + else { + sh2_do_irq(sh2, sh2->pending_int_irq, sh2->pending_int_vector); + sh2->pending_int_irq = 0; // auto-clear + sh2->pending_level = sh2->pending_irl; + } + } +} -static int cmn_init_done; - -static int common_init(void) +#if (DRC_DEBUG & 1) +static void block_stats(void) { - block_count = 0; - block_table = calloc(MAX_BLOCK_COUNT, sizeof(*block_table)); - if (block_table == NULL) - return -1; + int c, b, i, total = 0; + + for (b = 0; b < ARRAY_SIZE(block_tables); b++) + for (i = 0; i < block_counts[b]; i++) + if (block_tables[b][i].addr != 0) + total += block_tables[b][i].refcount; + + for (c = 0; c < 10; c++) { + block_desc *blk, *maxb = NULL; + int max = 0; + for (b = 0; b < ARRAY_SIZE(block_tables); b++) { + for (i = 0; i < block_counts[b]; i++) { + blk = &block_tables[b][i]; + if (blk->addr != 0 && blk->refcount > max) { + max = blk->refcount; + maxb = blk; + } + } + } + if (maxb == NULL) + break; + printf("%08x %9d %2.3f%%\n", maxb->addr, maxb->refcount, + (double)maxb->refcount / total * 100.0); + maxb->refcount = 0; + } - tcache_ptr = tcache; + for (b = 0; b < ARRAY_SIZE(block_tables); b++) + for (i = 0; i < block_counts[b]; i++) + block_tables[b][i].refcount = 0; +} +#else +#define block_stats() +#endif - cmn_init_done = 1; - return 0; +void sh2_drc_flush_all(void) +{ + block_stats(); + flush_tcache(0); + flush_tcache(1); + flush_tcache(2); } int sh2_drc_init(SH2 *sh2) { - if (!cmn_init_done) { - int ret = common_init(); - if (ret) - return ret; + if (block_tables[0] == NULL) { + int i, cnt; + + drc_cmn_init(); + + cnt = block_max_counts[0] + block_max_counts[1] + block_max_counts[2]; + block_tables[0] = calloc(cnt, sizeof(*block_tables[0])); + if (block_tables[0] == NULL) + return -1; + + memset(block_counts, 0, sizeof(block_counts)); + tcache_bases[0] = tcache_ptrs[0] = tcache; + + for (i = 1; i < ARRAY_SIZE(block_tables); i++) { + block_tables[i] = block_tables[i - 1] + block_max_counts[i - 1]; + tcache_bases[i] = tcache_ptrs[i] = tcache_bases[i - 1] + tcache_sizes[i - 1]; + } + + // tmp + PicoOpt |= POPT_DIS_VDP_FIFO; + +#if (DRC_DEBUG & 2) + for (i = 0; i < ARRAY_SIZE(block_tables); i++) + tcache_dsm_ptrs[i] = tcache_bases[i]; +#endif +#if (DRC_DEBUG & 1) + hash_collisions = 0; +#endif } - assert(sh2->pc_hashtab == NULL); - sh2->pc_hashtab = calloc(sizeof(sh2->pc_hashtab[0]), MAX_HASH_ENTRIES); - if (sh2->pc_hashtab == NULL) - return -1; + if (hash_table == NULL) { + hash_table = calloc(sizeof(hash_table[0]), MAX_HASH_ENTRIES); + if (hash_table == NULL) + return -1; + } return 0; } +void sh2_drc_finish(SH2 *sh2) +{ + if (block_tables[0] != NULL) { + block_stats(); + free(block_tables[0]); + memset(block_tables, 0, sizeof(block_tables)); + + drc_cmn_cleanup(); + } + + if (hash_table != NULL) { + free(hash_table); + hash_table = NULL; + } +}