// SPDX-License-Identifier: LGPL-2.1-or-later /* * Copyright (C) 2014-2021 Paul Cercueil */ #include "blockcache.h" #include "debug.h" #include "disassembler.h" #include "emitter.h" #include "optimizer.h" #include "regcache.h" #include #include #include typedef void (*lightrec_rec_func_t)(struct lightrec_state *, const struct block *, u16); /* Forward declarations */ static void rec_SPECIAL(struct lightrec_state *state, const struct block *block, u16 offset); static void rec_REGIMM(struct lightrec_state *state, const struct block *block, u16 offset); static void rec_CP0(struct lightrec_state *state, const struct block *block, u16 offset); static void rec_CP2(struct lightrec_state *state, const struct block *block, u16 offset); static void unknown_opcode(struct lightrec_state *state, const struct block *block, u16 offset) { pr_warn("Unknown opcode: 0x%08x at PC 0x%08x\n", block->opcode_list[offset].c.opcode, block->pc + (offset << 2)); } static void lightrec_emit_end_of_block(struct lightrec_state *state, const struct block *block, u16 offset, s8 reg_new_pc, u32 imm, u8 ra_reg, u32 link, bool update_cycles) { struct regcache *reg_cache = state->reg_cache; u32 cycles = state->cycles; jit_state_t *_jit = block->_jit; const struct opcode *op = &block->opcode_list[offset], *next = &block->opcode_list[offset + 1]; jit_note(__FILE__, __LINE__); if (link) { /* Update the $ra register */ u8 link_reg = lightrec_alloc_reg_out(reg_cache, _jit, ra_reg, 0); jit_movi(link_reg, link); lightrec_free_reg(reg_cache, link_reg); } if (reg_new_pc < 0) { reg_new_pc = lightrec_alloc_reg(reg_cache, _jit, JIT_V0); lightrec_lock_reg(reg_cache, _jit, reg_new_pc); jit_movi(reg_new_pc, imm); } if (has_delay_slot(op->c) && !(op->flags & (LIGHTREC_NO_DS | LIGHTREC_LOCAL_BRANCH))) { cycles += lightrec_cycles_of_opcode(next->c); /* Recompile the delay slot */ if (next->c.opcode) lightrec_rec_opcode(state, block, offset + 1); } /* Store back remaining registers */ lightrec_storeback_regs(reg_cache, _jit); jit_movr(JIT_V0, reg_new_pc); if (cycles && update_cycles) { jit_subi(LIGHTREC_REG_CYCLE, LIGHTREC_REG_CYCLE, cycles); pr_debug("EOB: %u cycles\n", cycles); } if (offset + !!(op->flags & LIGHTREC_NO_DS) < block->nb_ops - 1) state->branches[state->nb_branches++] = jit_jmpi(); } void lightrec_emit_eob(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; jit_state_t *_jit = block->_jit; union code c = block->opcode_list[offset].c; lightrec_storeback_regs(reg_cache, _jit); jit_movi(JIT_V0, block->pc + (offset << 2)); jit_subi(LIGHTREC_REG_CYCLE, LIGHTREC_REG_CYCLE, state->cycles - lightrec_cycles_of_opcode(c)); state->branches[state->nb_branches++] = jit_jmpi(); } static u8 get_jr_jalr_reg(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; jit_state_t *_jit = block->_jit; const struct opcode *op = &block->opcode_list[offset], *next = &block->opcode_list[offset + 1]; u8 rs = lightrec_request_reg_in(reg_cache, _jit, op->r.rs, JIT_V0); /* If the source register is already mapped to JIT_R0 or JIT_R1, and the * delay slot is a I/O operation, unload the register, since JIT_R0 and * JIT_R1 are explicitely used by the I/O opcode generators. */ if ((rs == JIT_R0 || rs == JIT_R1) && !(op->flags & LIGHTREC_NO_DS) && opcode_is_io(next->c) && !(next->flags & (LIGHTREC_NO_INVALIDATE | LIGHTREC_DIRECT_IO))) { lightrec_unload_reg(reg_cache, _jit, rs); lightrec_free_reg(reg_cache, rs); rs = lightrec_request_reg_in(reg_cache, _jit, op->r.rs, JIT_V0); } lightrec_lock_reg(reg_cache, _jit, rs); return rs; } static void rec_special_JR(struct lightrec_state *state, const struct block *block, u16 offset) { u8 rs = get_jr_jalr_reg(state, block, offset); _jit_name(block->_jit, __func__); lightrec_emit_end_of_block(state, block, offset, rs, 0, 31, 0, true); } static void rec_special_JALR(struct lightrec_state *state, const struct block *block, u16 offset) { u8 rs = get_jr_jalr_reg(state, block, offset); union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); lightrec_emit_end_of_block(state, block, offset, rs, 0, c.r.rd, get_branch_pc(block, offset, 2), true); } static void rec_J(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); lightrec_emit_end_of_block(state, block, offset, -1, (block->pc & 0xf0000000) | (c.j.imm << 2), 31, 0, true); } static void rec_JAL(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); lightrec_emit_end_of_block(state, block, offset, -1, (block->pc & 0xf0000000) | (c.j.imm << 2), 31, get_branch_pc(block, offset, 2), true); } static void rec_b(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code, u32 link, bool unconditional, bool bz) { struct regcache *reg_cache = state->reg_cache; struct native_register *regs_backup; jit_state_t *_jit = block->_jit; struct lightrec_branch *branch; const struct opcode *op = &block->opcode_list[offset], *next = &block->opcode_list[offset + 1]; jit_node_t *addr; u8 link_reg; u32 target_offset, cycles = state->cycles; bool is_forward = (s16)op->i.imm >= -1; u32 next_pc; jit_note(__FILE__, __LINE__); if (!(op->flags & LIGHTREC_NO_DS)) cycles += lightrec_cycles_of_opcode(next->c); state->cycles = 0; if (cycles) jit_subi(LIGHTREC_REG_CYCLE, LIGHTREC_REG_CYCLE, cycles); if (!unconditional) { u8 rs = lightrec_alloc_reg_in(reg_cache, _jit, op->i.rs, REG_EXT), rt = bz ? 0 : lightrec_alloc_reg_in(reg_cache, _jit, op->i.rt, REG_EXT); /* Generate the branch opcode */ addr = jit_new_node_pww(code, NULL, rs, rt); lightrec_free_regs(reg_cache); regs_backup = lightrec_regcache_enter_branch(reg_cache); } if (op->flags & LIGHTREC_LOCAL_BRANCH) { if (next && !(op->flags & LIGHTREC_NO_DS)) { /* Recompile the delay slot */ if (next->opcode) lightrec_rec_opcode(state, block, offset + 1); } if (link) { /* Update the $ra register */ link_reg = lightrec_alloc_reg_out(reg_cache, _jit, 31, 0); jit_movi(link_reg, link); lightrec_free_reg(reg_cache, link_reg); } /* Store back remaining registers */ lightrec_storeback_regs(reg_cache, _jit); target_offset = offset + 1 + (s16)op->i.imm - !!(OPT_SWITCH_DELAY_SLOTS && (op->flags & LIGHTREC_NO_DS)); pr_debug("Adding local branch to offset 0x%x\n", target_offset << 2); branch = &state->local_branches[ state->nb_local_branches++]; branch->target = target_offset; if (is_forward) branch->branch = jit_jmpi(); else branch->branch = jit_bgti(LIGHTREC_REG_CYCLE, 0); } if (!(op->flags & LIGHTREC_LOCAL_BRANCH) || !is_forward) { next_pc = get_branch_pc(block, offset, 1 + (s16)op->i.imm); lightrec_emit_end_of_block(state, block, offset, -1, next_pc, 31, link, false); } if (!unconditional) { jit_patch(addr); lightrec_regcache_leave_branch(reg_cache, regs_backup); if (bz && link) { /* Update the $ra register */ link_reg = lightrec_alloc_reg_out(reg_cache, _jit, 31, REG_EXT); jit_movi(link_reg, (s32)link); lightrec_free_reg(reg_cache, link_reg); } if (!(op->flags & LIGHTREC_NO_DS) && next->opcode) lightrec_rec_opcode(state, block, offset + 1); } } static void rec_BNE(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_beqr, 0, false, false); } static void rec_BEQ(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_bner, 0, c.i.rs == c.i.rt, false); } static void rec_BLEZ(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_bgti, 0, c.i.rs == 0, true); } static void rec_BGTZ(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_blei, 0, false, true); } static void rec_regimm_BLTZ(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_bgei, 0, false, true); } static void rec_regimm_BLTZAL(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_bgei, get_branch_pc(block, offset, 2), false, true); } static void rec_regimm_BGEZ(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_blti, 0, !c.i.rs, true); } static void rec_regimm_BGEZAL(struct lightrec_state *state, const struct block *block, u16 offset) { const struct opcode *op = &block->opcode_list[offset]; _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_blti, get_branch_pc(block, offset, 2), !op->i.rs, true); } static void rec_alu_imm(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code, bool slti) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rs, rt, out_flags = REG_EXT; if (slti) out_flags |= REG_ZEXT; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rs, REG_EXT); rt = lightrec_alloc_reg_out(reg_cache, _jit, c.i.rt, out_flags); jit_new_node_www(code, rt, rs, (s32)(s16) c.i.imm); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); } static void rec_alu_special(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code, bool out_ext) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rd, rt, rs; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, REG_EXT); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, REG_EXT); rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, out_ext ? REG_EXT | REG_ZEXT : 0); jit_new_node_www(code, rd, rs, rt); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, rd); } static void rec_alu_shiftv(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rd, rt, rs, temp, flags = 0; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, 0); if (code == jit_code_rshr) flags = REG_EXT; else if (code == jit_code_rshr_u) flags = REG_ZEXT; rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, flags); rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, flags); if (rs != rd && rt != rd) { jit_andi(rd, rs, 0x1f); jit_new_node_www(code, rd, rt, rd); } else { temp = lightrec_alloc_reg_temp(reg_cache, _jit); jit_andi(temp, rs, 0x1f); jit_new_node_www(code, rd, rt, temp); lightrec_free_reg(reg_cache, temp); } lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, rd); } static void rec_ADDIU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_imm(state, block, offset, jit_code_addi, false); } static void rec_ADDI(struct lightrec_state *state, const struct block *block, u16 offset) { /* TODO: Handle the exception? */ _jit_name(block->_jit, __func__); rec_alu_imm(state, block, offset, jit_code_addi, false); } static void rec_SLTIU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_imm(state, block, offset, jit_code_lti_u, true); } static void rec_SLTI(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_imm(state, block, offset, jit_code_lti, true); } static void rec_ANDI(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rs, rt; _jit_name(block->_jit, __func__); jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rs, 0); rt = lightrec_alloc_reg_out(reg_cache, _jit, c.i.rt, REG_EXT | REG_ZEXT); /* PSX code uses ANDI 0xff / ANDI 0xffff a lot, which are basically * casts to uint8_t / uint16_t. */ if (c.i.imm == 0xff) jit_extr_uc(rt, rs); else if (c.i.imm == 0xffff) jit_extr_us(rt, rs); else jit_andi(rt, rs, (u32)(u16) c.i.imm); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); } static void rec_alu_or_xor(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rs, rt, flags; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rs, 0); rt = lightrec_alloc_reg_out(reg_cache, _jit, c.i.rt, 0); flags = lightrec_get_reg_in_flags(reg_cache, rs); lightrec_set_reg_out_flags(reg_cache, rt, flags); jit_new_node_www(code, rt, rs, (u32)(u16) c.i.imm); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); } static void rec_ORI(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_or_xor(state, block, offset, jit_code_ori); } static void rec_XORI(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_or_xor(state, block, offset, jit_code_xori); } static void rec_LUI(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rt, flags = REG_EXT; jit_name(__func__); jit_note(__FILE__, __LINE__); if (!(c.i.imm & BIT(15))) flags |= REG_ZEXT; rt = lightrec_alloc_reg_out(reg_cache, _jit, c.i.rt, flags); jit_movi(rt, (s32)(c.i.imm << 16)); lightrec_free_reg(reg_cache, rt); } static void rec_special_ADDU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_special(state, block, offset, jit_code_addr, false); } static void rec_special_ADD(struct lightrec_state *state, const struct block *block, u16 offset) { /* TODO: Handle the exception? */ _jit_name(block->_jit, __func__); rec_alu_special(state, block, offset, jit_code_addr, false); } static void rec_special_SUBU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_special(state, block, offset, jit_code_subr, false); } static void rec_special_SUB(struct lightrec_state *state, const struct block *block, u16 offset) { /* TODO: Handle the exception? */ _jit_name(block->_jit, __func__); rec_alu_special(state, block, offset, jit_code_subr, false); } static void rec_special_AND(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rd, rt, rs, flags_rs, flags_rt, flags_rd; _jit_name(block->_jit, __func__); jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, 0); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, 0); rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, 0); flags_rs = lightrec_get_reg_in_flags(reg_cache, rs); flags_rt = lightrec_get_reg_in_flags(reg_cache, rt); /* Z(rd) = Z(rs) | Z(rt) */ flags_rd = REG_ZEXT & (flags_rs | flags_rt); /* E(rd) = (E(rt) & Z(rt)) | (E(rs) & Z(rs)) | (E(rs) & E(rt)) */ if (((flags_rs & REG_EXT) && (flags_rt & REG_ZEXT)) || ((flags_rt & REG_EXT) && (flags_rs & REG_ZEXT)) || (REG_EXT & flags_rs & flags_rt)) flags_rd |= REG_EXT; lightrec_set_reg_out_flags(reg_cache, rd, flags_rd); jit_andr(rd, rs, rt); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, rd); } static void rec_special_or_nor(struct lightrec_state *state, const struct block *block, u16 offset, bool nor) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rd, rt, rs, flags_rs, flags_rt, flags_rd = 0; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, 0); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, 0); rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, 0); flags_rs = lightrec_get_reg_in_flags(reg_cache, rs); flags_rt = lightrec_get_reg_in_flags(reg_cache, rt); /* or: Z(rd) = Z(rs) & Z(rt) * nor: Z(rd) = 0 */ if (!nor) flags_rd = REG_ZEXT & flags_rs & flags_rt; /* E(rd) = (E(rs) & E(rt)) | (E(rt) & !Z(rt)) | (E(rs) & !Z(rs)) */ if ((REG_EXT & flags_rs & flags_rt) || (flags_rt & (REG_EXT | REG_ZEXT) == REG_EXT) || (flags_rs & (REG_EXT | REG_ZEXT) == REG_EXT)) flags_rd |= REG_EXT; lightrec_set_reg_out_flags(reg_cache, rd, flags_rd); jit_orr(rd, rs, rt); if (nor) jit_comr(rd, rd); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, rd); } static void rec_special_OR(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_special_or_nor(state, block, offset, false); } static void rec_special_NOR(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_special_or_nor(state, block, offset, true); } static void rec_special_XOR(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rd, rt, rs, flags_rs, flags_rt, flags_rd; _jit_name(block->_jit, __func__); jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, 0); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, 0); rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, 0); flags_rs = lightrec_get_reg_in_flags(reg_cache, rs); flags_rt = lightrec_get_reg_in_flags(reg_cache, rt); /* Z(rd) = Z(rs) & Z(rt) */ flags_rd = REG_ZEXT & flags_rs & flags_rt; /* E(rd) = E(rs) & E(rt) */ flags_rd |= REG_EXT & flags_rs & flags_rt; lightrec_set_reg_out_flags(reg_cache, rd, flags_rd); jit_xorr(rd, rs, rt); lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, rd); } static void rec_special_SLTU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_special(state, block, offset, jit_code_ltr_u, true); } static void rec_special_SLT(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_special(state, block, offset, jit_code_ltr, true); } static void rec_special_SLLV(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_shiftv(state, block, offset, jit_code_lshr); } static void rec_special_SRLV(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_shiftv(state, block, offset, jit_code_rshr_u); } static void rec_special_SRAV(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_shiftv(state, block, offset, jit_code_rshr); } static void rec_alu_shift(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rd, rt, flags = 0; jit_note(__FILE__, __LINE__); if (code == jit_code_rshi) flags = REG_EXT; else if (code == jit_code_rshi_u) flags = REG_ZEXT; rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, flags); /* Input reg is zero-extended, if we SRL at least by one bit, we know * the output reg will be both zero-extended and sign-extended. */ if (code == jit_code_rshi_u && c.r.imm) flags |= REG_EXT; rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, flags); jit_new_node_www(code, rd, rt, c.r.imm); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, rd); } static void rec_special_SLL(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_shift(state, block, offset, jit_code_lshi); } static void rec_special_SRL(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_shift(state, block, offset, jit_code_rshi_u); } static void rec_special_SRA(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_shift(state, block, offset, jit_code_rshi); } static void rec_alu_mult(struct lightrec_state *state, const struct block *block, u16 offset, bool is_signed) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; u16 flags = block->opcode_list[offset].flags; u8 reg_lo = get_mult_div_lo(c); u8 reg_hi = get_mult_div_hi(c); jit_state_t *_jit = block->_jit; u8 lo, hi, rs, rt, rflags = 0; jit_note(__FILE__, __LINE__); if (is_signed) rflags = REG_EXT; else rflags = REG_ZEXT; rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, rflags); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, rflags); if (!(flags & LIGHTREC_NO_LO)) lo = lightrec_alloc_reg_out(reg_cache, _jit, reg_lo, 0); else if (__WORDSIZE == 32) lo = lightrec_alloc_reg_temp(reg_cache, _jit); if (!(flags & LIGHTREC_NO_HI)) hi = lightrec_alloc_reg_out(reg_cache, _jit, reg_hi, REG_EXT); #if __WORDSIZE == 32 /* On 32-bit systems, do a 32*32->64 bit operation, or a 32*32->32 bit * operation if the MULT was detected a 32-bit only. */ if (!(flags & LIGHTREC_NO_HI)) { if (is_signed) jit_qmulr(lo, hi, rs, rt); else jit_qmulr_u(lo, hi, rs, rt); } else { jit_mulr(lo, rs, rt); } #else /* On 64-bit systems, do a 64*64->64 bit operation. */ if (flags & LIGHTREC_NO_LO) { jit_mulr(hi, rs, rt); jit_rshi(hi, hi, 32); } else { jit_mulr(lo, rs, rt); /* The 64-bit output value is in $lo, store the upper 32 bits in $hi */ if (!(flags & LIGHTREC_NO_HI)) jit_rshi(hi, lo, 32); } #endif lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); if (!(flags & LIGHTREC_NO_LO) || __WORDSIZE == 32) lightrec_free_reg(reg_cache, lo); if (!(flags & LIGHTREC_NO_HI)) lightrec_free_reg(reg_cache, hi); } static void rec_alu_div(struct lightrec_state *state, const struct block *block, u16 offset, bool is_signed) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; u16 flags = block->opcode_list[offset].flags; bool no_check = flags & LIGHTREC_NO_DIV_CHECK; u8 reg_lo = get_mult_div_lo(c); u8 reg_hi = get_mult_div_hi(c); jit_state_t *_jit = block->_jit; jit_node_t *branch, *to_end; u8 lo, hi, rs, rt, rflags = 0; jit_note(__FILE__, __LINE__); if (is_signed) rflags = REG_EXT; else rflags = REG_ZEXT; rs = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, rflags); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.r.rt, rflags); if (!(flags & LIGHTREC_NO_LO)) lo = lightrec_alloc_reg_out(reg_cache, _jit, reg_lo, 0); if (!(flags & LIGHTREC_NO_HI)) hi = lightrec_alloc_reg_out(reg_cache, _jit, reg_hi, 0); /* Jump to special handler if dividing by zero */ if (!no_check) branch = jit_beqi(rt, 0); #if __WORDSIZE == 32 if (flags & LIGHTREC_NO_LO) { if (is_signed) jit_remr(hi, rs, rt); else jit_remr_u(hi, rs, rt); } else if (flags & LIGHTREC_NO_HI) { if (is_signed) jit_divr(lo, rs, rt); else jit_divr_u(lo, rs, rt); } else { if (is_signed) jit_qdivr(lo, hi, rs, rt); else jit_qdivr_u(lo, hi, rs, rt); } #else /* On 64-bit systems, the input registers must be 32 bits, so we first sign-extend * (if div) or clear (if divu) the input registers. */ if (flags & LIGHTREC_NO_LO) { if (is_signed) jit_remr(hi, rs, rt); else jit_remr_u(hi, rs, rt); } else if (flags & LIGHTREC_NO_HI) { if (is_signed) jit_divr(lo, rs, rt); else jit_divr_u(lo, rs, rt); } else { if (is_signed) jit_qdivr(lo, hi, rs, rt); else jit_qdivr_u(lo, hi, rs, rt); } #endif if (!no_check) { lightrec_regcache_mark_live(reg_cache, _jit); /* Jump above the div-by-zero handler */ to_end = jit_jmpi(); jit_patch(branch); if (!(flags & LIGHTREC_NO_LO)) { if (is_signed) { jit_lti(lo, rs, 0); jit_lshi(lo, lo, 1); jit_subi(lo, lo, 1); } else { jit_movi(lo, 0xffffffff); } } if (!(flags & LIGHTREC_NO_HI)) jit_movr(hi, rs); jit_patch(to_end); } lightrec_free_reg(reg_cache, rs); lightrec_free_reg(reg_cache, rt); if (!(flags & LIGHTREC_NO_LO)) lightrec_free_reg(reg_cache, lo); if (!(flags & LIGHTREC_NO_HI)) lightrec_free_reg(reg_cache, hi); } static void rec_special_MULT(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_mult(state, block, offset, true); } static void rec_special_MULTU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_mult(state, block, offset, false); } static void rec_special_DIV(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_div(state, block, offset, true); } static void rec_special_DIVU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_alu_div(state, block, offset, false); } static void rec_alu_mv_lo_hi(struct lightrec_state *state, const struct block *block, u8 dst, u8 src) { struct regcache *reg_cache = state->reg_cache; jit_state_t *_jit = block->_jit; jit_note(__FILE__, __LINE__); src = lightrec_alloc_reg_in(reg_cache, _jit, src, 0); dst = lightrec_alloc_reg_out(reg_cache, _jit, dst, REG_EXT); #if __WORDSIZE == 32 jit_movr(dst, src); #else jit_extr_i(dst, src); #endif lightrec_free_reg(reg_cache, src); lightrec_free_reg(reg_cache, dst); } static void rec_special_MFHI(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_alu_mv_lo_hi(state, block, c.r.rd, REG_HI); } static void rec_special_MTHI(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_alu_mv_lo_hi(state, block, REG_HI, c.r.rs); } static void rec_special_MFLO(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_alu_mv_lo_hi(state, block, c.r.rd, REG_LO); } static void rec_special_MTLO(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; _jit_name(block->_jit, __func__); rec_alu_mv_lo_hi(state, block, REG_LO, c.r.rs); } static void call_to_c_wrapper(struct lightrec_state *state, const struct block *block, u32 arg, bool with_arg, enum c_wrappers wrapper) { struct regcache *reg_cache = state->reg_cache; jit_state_t *_jit = block->_jit; u8 tmp, tmp2, tmp3; if (with_arg) tmp3 = lightrec_alloc_reg(reg_cache, _jit, JIT_R1); tmp2 = lightrec_alloc_reg(reg_cache, _jit, JIT_R0); tmp = lightrec_alloc_reg_temp(reg_cache, _jit); jit_ldxi(tmp, LIGHTREC_REG_STATE, offsetof(struct lightrec_state, c_wrapper)); jit_ldxi(tmp2, LIGHTREC_REG_STATE, offsetof(struct lightrec_state, c_wrappers[wrapper])); if (with_arg) jit_movi(tmp3, arg); jit_callr(tmp); lightrec_free_reg(reg_cache, tmp); lightrec_free_reg(reg_cache, tmp2); if (with_arg) lightrec_free_reg(reg_cache, tmp3); lightrec_regcache_mark_live(reg_cache, _jit); } static void rec_io(struct lightrec_state *state, const struct block *block, u16 offset, bool load_rt, bool read_rt) { struct regcache *reg_cache = state->reg_cache; jit_state_t *_jit = block->_jit; union code c = block->opcode_list[offset].c; u16 flags = block->opcode_list[offset].flags; bool is_tagged = flags & (LIGHTREC_HW_IO | LIGHTREC_DIRECT_IO); u32 lut_entry; jit_note(__FILE__, __LINE__); lightrec_clean_reg_if_loaded(reg_cache, _jit, c.i.rs, false); if (read_rt && likely(c.i.rt)) lightrec_clean_reg_if_loaded(reg_cache, _jit, c.i.rt, true); else if (load_rt) lightrec_clean_reg_if_loaded(reg_cache, _jit, c.i.rt, false); if (is_tagged) { call_to_c_wrapper(state, block, c.opcode, true, C_WRAPPER_RW); } else { lut_entry = lightrec_get_lut_entry(block); call_to_c_wrapper(state, block, (lut_entry << 16) | offset, true, C_WRAPPER_RW_GENERIC); } } static void rec_store_direct_no_invalidate(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; jit_node_t *to_not_ram, *to_end; u8 tmp, tmp2, rs, rt; s16 imm; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rs, 0); tmp = lightrec_alloc_reg_temp(reg_cache, _jit); if (state->offset_ram || state->offset_scratch) tmp2 = lightrec_alloc_reg_temp(reg_cache, _jit); /* Convert to KUNSEG and avoid RAM mirrors */ if (state->mirrors_mapped) { imm = (s16)c.i.imm; jit_andi(tmp, rs, 0x1f800000 | (4 * RAM_SIZE - 1)); } else if (c.i.imm) { imm = 0; jit_addi(tmp, rs, (s16)c.i.imm); jit_andi(tmp, tmp, 0x1f800000 | (RAM_SIZE - 1)); } else { imm = 0; jit_andi(tmp, rs, 0x1f800000 | (RAM_SIZE - 1)); } lightrec_free_reg(reg_cache, rs); if (state->offset_ram != state->offset_scratch) { to_not_ram = jit_bmsi(tmp, BIT(28)); lightrec_regcache_mark_live(reg_cache, _jit); jit_movi(tmp2, state->offset_ram); to_end = jit_jmpi(); jit_patch(to_not_ram); jit_movi(tmp2, state->offset_scratch); jit_patch(to_end); } else if (state->offset_ram) { jit_movi(tmp2, state->offset_ram); } if (state->offset_ram || state->offset_scratch) { jit_addr(tmp, tmp, tmp2); lightrec_free_reg(reg_cache, tmp2); } rt = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rt, 0); jit_new_node_www(code, imm, tmp, rt); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, tmp); } static void rec_store_direct(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; jit_node_t *to_not_ram, *to_end; u8 tmp, tmp2, tmp3, rs, rt; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rs, 0); tmp2 = lightrec_alloc_reg_temp(reg_cache, _jit); tmp3 = lightrec_alloc_reg_in(reg_cache, _jit, 0, 0); /* Convert to KUNSEG and avoid RAM mirrors */ if (c.i.imm) { jit_addi(tmp2, rs, (s16)c.i.imm); jit_andi(tmp2, tmp2, 0x1f800000 | (RAM_SIZE - 1)); } else { jit_andi(tmp2, rs, 0x1f800000 | (RAM_SIZE - 1)); } lightrec_free_reg(reg_cache, rs); tmp = lightrec_alloc_reg_temp(reg_cache, _jit); to_not_ram = jit_bgti(tmp2, RAM_SIZE); lightrec_regcache_mark_live(reg_cache, _jit); /* Compute the offset to the code LUT */ jit_andi(tmp, tmp2, (RAM_SIZE - 1) & ~3); #if __WORDSIZE == 64 jit_lshi(tmp, tmp, 1); #endif jit_addr(tmp, LIGHTREC_REG_STATE, tmp); /* Write NULL to the code LUT to invalidate any block that's there */ jit_stxi(offsetof(struct lightrec_state, code_lut), tmp, tmp3); if (state->offset_ram != state->offset_scratch) { jit_movi(tmp, state->offset_ram); to_end = jit_jmpi(); } jit_patch(to_not_ram); if (state->offset_ram || state->offset_scratch) jit_movi(tmp, state->offset_scratch); if (state->offset_ram != state->offset_scratch) jit_patch(to_end); if (state->offset_ram || state->offset_scratch) jit_addr(tmp2, tmp2, tmp); lightrec_free_reg(reg_cache, tmp); lightrec_free_reg(reg_cache, tmp3); rt = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rt, 0); jit_new_node_www(code, 0, tmp2, rt); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, tmp2); } static void rec_store(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code) { u16 flags = block->opcode_list[offset].flags; if (flags & LIGHTREC_NO_INVALIDATE) { rec_store_direct_no_invalidate(state, block, offset, code); } else if (flags & LIGHTREC_DIRECT_IO) { if (state->invalidate_from_dma_only) rec_store_direct_no_invalidate(state, block, offset, code); else rec_store_direct(state, block, offset, code); } else { rec_io(state, block, offset, true, false); } } static void rec_SB(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_store(state, block, offset, jit_code_stxi_c); } static void rec_SH(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_store(state, block, offset, jit_code_stxi_s); } static void rec_SW(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_store(state, block, offset, jit_code_stxi_i); } static void rec_SWL(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_io(state, block, offset, true, false); } static void rec_SWR(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_io(state, block, offset, true, false); } static void rec_SWC2(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_io(state, block, offset, false, false); } static void rec_load_direct(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code, bool is_unsigned) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; jit_node_t *to_not_ram, *to_not_bios, *to_end, *to_end2; u8 tmp, rs, rt, addr_reg, flags = REG_EXT; s16 imm; if (!c.i.rt) return; if (is_unsigned) flags |= REG_ZEXT; jit_note(__FILE__, __LINE__); rs = lightrec_alloc_reg_in(reg_cache, _jit, c.i.rs, 0); rt = lightrec_alloc_reg_out(reg_cache, _jit, c.i.rt, flags); if ((state->offset_ram == state->offset_bios && state->offset_ram == state->offset_scratch && state->mirrors_mapped) || !c.i.imm) { addr_reg = rs; imm = (s16)c.i.imm; } else { jit_addi(rt, rs, (s16)c.i.imm); addr_reg = rt; imm = 0; if (c.i.rs != c.i.rt) lightrec_free_reg(reg_cache, rs); } tmp = lightrec_alloc_reg_temp(reg_cache, _jit); if (state->offset_ram == state->offset_bios && state->offset_ram == state->offset_scratch) { if (!state->mirrors_mapped) { jit_andi(tmp, addr_reg, BIT(28)); jit_rshi_u(tmp, tmp, 28 - 22); jit_ori(tmp, tmp, 0x1f800000 | (RAM_SIZE - 1)); jit_andr(rt, addr_reg, tmp); } else { jit_andi(rt, addr_reg, 0x1fffffff); } if (state->offset_ram) jit_movi(tmp, state->offset_ram); } else { to_not_ram = jit_bmsi(addr_reg, BIT(28)); lightrec_regcache_mark_live(reg_cache, _jit); /* Convert to KUNSEG and avoid RAM mirrors */ jit_andi(rt, addr_reg, RAM_SIZE - 1); if (state->offset_ram) jit_movi(tmp, state->offset_ram); to_end = jit_jmpi(); jit_patch(to_not_ram); if (state->offset_bios != state->offset_scratch) to_not_bios = jit_bmci(addr_reg, BIT(22)); /* Convert to KUNSEG */ jit_andi(rt, addr_reg, 0x1fc00000 | (BIOS_SIZE - 1)); jit_movi(tmp, state->offset_bios); if (state->offset_bios != state->offset_scratch) { to_end2 = jit_jmpi(); jit_patch(to_not_bios); /* Convert to KUNSEG */ jit_andi(rt, addr_reg, 0x1f800fff); if (state->offset_scratch) jit_movi(tmp, state->offset_scratch); jit_patch(to_end2); } jit_patch(to_end); } if (state->offset_ram || state->offset_bios || state->offset_scratch) jit_addr(rt, rt, tmp); jit_new_node_www(code, rt, rt, imm); lightrec_free_reg(reg_cache, addr_reg); lightrec_free_reg(reg_cache, rt); lightrec_free_reg(reg_cache, tmp); } static void rec_load(struct lightrec_state *state, const struct block *block, u16 offset, jit_code_t code, bool is_unsigned) { u16 flags = block->opcode_list[offset].flags; if (flags & LIGHTREC_DIRECT_IO) rec_load_direct(state, block, offset, code, is_unsigned); else rec_io(state, block, offset, false, true); } static void rec_LB(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_load(state, block, offset, jit_code_ldxi_c, false); } static void rec_LBU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_load(state, block, offset, jit_code_ldxi_uc, true); } static void rec_LH(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_load(state, block, offset, jit_code_ldxi_s, false); } static void rec_LHU(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_load(state, block, offset, jit_code_ldxi_us, true); } static void rec_LWL(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_io(state, block, offset, true, true); } static void rec_LWR(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_io(state, block, offset, true, true); } static void rec_LW(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_load(state, block, offset, jit_code_ldxi_i, false); } static void rec_LWC2(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_io(state, block, offset, false, false); } static void rec_break_syscall(struct lightrec_state *state, const struct block *block, u16 offset, bool is_break) { _jit_note(block->_jit, __FILE__, __LINE__); if (is_break) call_to_c_wrapper(state, block, 0, false, C_WRAPPER_BREAK); else call_to_c_wrapper(state, block, 0, false, C_WRAPPER_SYSCALL); /* TODO: the return address should be "pc - 4" if we're a delay slot */ lightrec_emit_end_of_block(state, block, offset, -1, get_ds_pc(block, offset, 0), 31, 0, true); } static void rec_special_SYSCALL(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_break_syscall(state, block, offset, false); } static void rec_special_BREAK(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_break_syscall(state, block, offset, true); } static void rec_mfc(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; jit_note(__FILE__, __LINE__); lightrec_clean_reg_if_loaded(reg_cache, _jit, c.i.rt, true); call_to_c_wrapper(state, block, c.opcode, true, C_WRAPPER_MFC); } static void rec_mtc(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; jit_note(__FILE__, __LINE__); lightrec_clean_reg_if_loaded(reg_cache, _jit, c.i.rs, false); lightrec_clean_reg_if_loaded(reg_cache, _jit, c.i.rt, false); call_to_c_wrapper(state, block, c.opcode, true, C_WRAPPER_MTC); if (c.i.op == OP_CP0 && !(block->opcode_list[offset].flags & LIGHTREC_NO_DS) && (c.r.rd == 12 || c.r.rd == 13)) lightrec_emit_end_of_block(state, block, offset, -1, get_ds_pc(block, offset, 1), 0, 0, true); } static void rec_cp0_MFC0(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mfc(state, block, offset); } static void rec_cp0_CFC0(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mfc(state, block, offset); } static void rec_cp0_MTC0(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mtc(state, block, offset); } static void rec_cp0_CTC0(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mtc(state, block, offset); } static void rec_cp2_basic_MFC2(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mfc(state, block, offset); } static void rec_cp2_basic_CFC2(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mfc(state, block, offset); } static void rec_cp2_basic_MTC2(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mtc(state, block, offset); } static void rec_cp2_basic_CTC2(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_mtc(state, block, offset); } static void rec_cp0_RFE(struct lightrec_state *state, const struct block *block, u16 offset) { jit_state_t *_jit = block->_jit; jit_name(__func__); jit_note(__FILE__, __LINE__); call_to_c_wrapper(state, block, 0, false, C_WRAPPER_RFE); } static void rec_CP(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; jit_name(__func__); jit_note(__FILE__, __LINE__); call_to_c_wrapper(state, block, c.opcode, true, C_WRAPPER_CP); } static void rec_meta_BEQZ(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_bnei, 0, false, true); } static void rec_meta_BNEZ(struct lightrec_state *state, const struct block *block, u16 offset) { _jit_name(block->_jit, __func__); rec_b(state, block, offset, jit_code_beqi, 0, false, true); } static void rec_meta_MOV(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; union code c = block->opcode_list[offset].c; jit_state_t *_jit = block->_jit; u8 rs, rd; _jit_name(block->_jit, __func__); jit_note(__FILE__, __LINE__); rs = c.r.rs ? lightrec_alloc_reg_in(reg_cache, _jit, c.r.rs, 0) : 0; rd = lightrec_alloc_reg_out(reg_cache, _jit, c.r.rd, REG_EXT); if (c.r.rs == 0) { jit_movi(rd, 0); } else { #if __WORDSIZE == 32 jit_movr(rd, rs); #else jit_extr_i(rd, rs); #endif } lightrec_free_reg(state->reg_cache, rs); lightrec_free_reg(state->reg_cache, rd); } static const lightrec_rec_func_t rec_standard[64] = { SET_DEFAULT_ELM(rec_standard, unknown_opcode), [OP_SPECIAL] = rec_SPECIAL, [OP_REGIMM] = rec_REGIMM, [OP_J] = rec_J, [OP_JAL] = rec_JAL, [OP_BEQ] = rec_BEQ, [OP_BNE] = rec_BNE, [OP_BLEZ] = rec_BLEZ, [OP_BGTZ] = rec_BGTZ, [OP_ADDI] = rec_ADDI, [OP_ADDIU] = rec_ADDIU, [OP_SLTI] = rec_SLTI, [OP_SLTIU] = rec_SLTIU, [OP_ANDI] = rec_ANDI, [OP_ORI] = rec_ORI, [OP_XORI] = rec_XORI, [OP_LUI] = rec_LUI, [OP_CP0] = rec_CP0, [OP_CP2] = rec_CP2, [OP_LB] = rec_LB, [OP_LH] = rec_LH, [OP_LWL] = rec_LWL, [OP_LW] = rec_LW, [OP_LBU] = rec_LBU, [OP_LHU] = rec_LHU, [OP_LWR] = rec_LWR, [OP_SB] = rec_SB, [OP_SH] = rec_SH, [OP_SWL] = rec_SWL, [OP_SW] = rec_SW, [OP_SWR] = rec_SWR, [OP_LWC2] = rec_LWC2, [OP_SWC2] = rec_SWC2, [OP_META_BEQZ] = rec_meta_BEQZ, [OP_META_BNEZ] = rec_meta_BNEZ, [OP_META_MOV] = rec_meta_MOV, }; static const lightrec_rec_func_t rec_special[64] = { SET_DEFAULT_ELM(rec_special, unknown_opcode), [OP_SPECIAL_SLL] = rec_special_SLL, [OP_SPECIAL_SRL] = rec_special_SRL, [OP_SPECIAL_SRA] = rec_special_SRA, [OP_SPECIAL_SLLV] = rec_special_SLLV, [OP_SPECIAL_SRLV] = rec_special_SRLV, [OP_SPECIAL_SRAV] = rec_special_SRAV, [OP_SPECIAL_JR] = rec_special_JR, [OP_SPECIAL_JALR] = rec_special_JALR, [OP_SPECIAL_SYSCALL] = rec_special_SYSCALL, [OP_SPECIAL_BREAK] = rec_special_BREAK, [OP_SPECIAL_MFHI] = rec_special_MFHI, [OP_SPECIAL_MTHI] = rec_special_MTHI, [OP_SPECIAL_MFLO] = rec_special_MFLO, [OP_SPECIAL_MTLO] = rec_special_MTLO, [OP_SPECIAL_MULT] = rec_special_MULT, [OP_SPECIAL_MULTU] = rec_special_MULTU, [OP_SPECIAL_DIV] = rec_special_DIV, [OP_SPECIAL_DIVU] = rec_special_DIVU, [OP_SPECIAL_ADD] = rec_special_ADD, [OP_SPECIAL_ADDU] = rec_special_ADDU, [OP_SPECIAL_SUB] = rec_special_SUB, [OP_SPECIAL_SUBU] = rec_special_SUBU, [OP_SPECIAL_AND] = rec_special_AND, [OP_SPECIAL_OR] = rec_special_OR, [OP_SPECIAL_XOR] = rec_special_XOR, [OP_SPECIAL_NOR] = rec_special_NOR, [OP_SPECIAL_SLT] = rec_special_SLT, [OP_SPECIAL_SLTU] = rec_special_SLTU, }; static const lightrec_rec_func_t rec_regimm[64] = { SET_DEFAULT_ELM(rec_regimm, unknown_opcode), [OP_REGIMM_BLTZ] = rec_regimm_BLTZ, [OP_REGIMM_BGEZ] = rec_regimm_BGEZ, [OP_REGIMM_BLTZAL] = rec_regimm_BLTZAL, [OP_REGIMM_BGEZAL] = rec_regimm_BGEZAL, }; static const lightrec_rec_func_t rec_cp0[64] = { SET_DEFAULT_ELM(rec_cp0, rec_CP), [OP_CP0_MFC0] = rec_cp0_MFC0, [OP_CP0_CFC0] = rec_cp0_CFC0, [OP_CP0_MTC0] = rec_cp0_MTC0, [OP_CP0_CTC0] = rec_cp0_CTC0, [OP_CP0_RFE] = rec_cp0_RFE, }; static const lightrec_rec_func_t rec_cp2_basic[64] = { SET_DEFAULT_ELM(rec_cp2_basic, rec_CP), [OP_CP2_BASIC_MFC2] = rec_cp2_basic_MFC2, [OP_CP2_BASIC_CFC2] = rec_cp2_basic_CFC2, [OP_CP2_BASIC_MTC2] = rec_cp2_basic_MTC2, [OP_CP2_BASIC_CTC2] = rec_cp2_basic_CTC2, }; static void rec_SPECIAL(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; lightrec_rec_func_t f = rec_special[c.r.op]; if (!HAS_DEFAULT_ELM && unlikely(!f)) unknown_opcode(state, block, offset); else (*f)(state, block, offset); } static void rec_REGIMM(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; lightrec_rec_func_t f = rec_regimm[c.r.rt]; if (!HAS_DEFAULT_ELM && unlikely(!f)) unknown_opcode(state, block, offset); else (*f)(state, block, offset); } static void rec_CP0(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; lightrec_rec_func_t f = rec_cp0[c.r.rs]; if (!HAS_DEFAULT_ELM && unlikely(!f)) rec_CP(state, block, offset); else (*f)(state, block, offset); } static void rec_CP2(struct lightrec_state *state, const struct block *block, u16 offset) { union code c = block->opcode_list[offset].c; if (c.r.op == OP_CP2_BASIC) { lightrec_rec_func_t f = rec_cp2_basic[c.r.rs]; if (HAS_DEFAULT_ELM || likely(f)) { (*f)(state, block, offset); return; } } rec_CP(state, block, offset); } void lightrec_rec_opcode(struct lightrec_state *state, const struct block *block, u16 offset) { struct regcache *reg_cache = state->reg_cache; struct lightrec_branch_target *target; const struct opcode *op = &block->opcode_list[offset]; jit_state_t *_jit = block->_jit; lightrec_rec_func_t f; if (op->flags & LIGHTREC_SYNC) { jit_subi(LIGHTREC_REG_CYCLE, LIGHTREC_REG_CYCLE, state->cycles); state->cycles = 0; lightrec_storeback_regs(reg_cache, _jit); lightrec_regcache_reset(reg_cache); pr_debug("Adding branch target at offset 0x%x\n", offset << 2); target = &state->targets[state->nb_targets++]; target->offset = offset; target->label = jit_indirect(); } if (likely(op->opcode)) { f = rec_standard[op->i.op]; if (!HAS_DEFAULT_ELM && unlikely(!f)) unknown_opcode(state, block, offset); else (*f)(state, block, offset); } if (unlikely(op->flags & LIGHTREC_UNLOAD_RD)) { lightrec_clean_reg_if_loaded(reg_cache, _jit, op->r.rd, true); pr_debug("Cleaning RD reg %s\n", lightrec_reg_name(op->r.rd)); } if (unlikely(op->flags & LIGHTREC_UNLOAD_RS)) { lightrec_clean_reg_if_loaded(reg_cache, _jit, op->i.rs, true); pr_debug("Cleaning RS reg %s\n", lightrec_reg_name(op->i.rt)); } if (unlikely(op->flags & LIGHTREC_UNLOAD_RT)) { lightrec_clean_reg_if_loaded(reg_cache, _jit, op->i.rt, true); pr_debug("Cleaning RT reg %s\n", lightrec_reg_name(op->i.rt)); } }