#ifdef INTELLISENSE_DIRECTIVES # pragma once # include "dsl.h" # include "gcc_asm.h" #endif enum { /* --- MIPS CPU Registers --- */ R_0 = 0, R_AT = 1, R_V0 = 2, R_V1 = 3, R_A0 = 4, R_A1 = 5, R_A2 = 6, R_A3 = 7, R_T0 = 8, R_T1 = 9, R_T2 = 10, R_T3 = 11, R_T4 = 12, R_T5 = 13, R_T6 = 14, R_T7 = 15, R_S0 = 16, R_S1 = 17, R_S2 = 18, R_S3 = 19, R_S4 = 20, R_S5 = 21, R_S6 = 22, R_S7 = 23, R_T8 = 24, R_T9 = 25, R_K0 = 26, R_K1 = 27, R_GP = 28, R_SP = 29, R_FP = 30, R_RA = 31 /* Semantic Aliases for MIPS Registers (O32 ABI) */ , rdiscard = R_0 /* Hardwired to 0 */ , rret_0 = R_V0 /* Function return value */ , rret_1 = R_V1 /* Second return value (e.g., 64-bit) */ , rarg_0 = R_A0 /* First function argument */ , rarg_1 = R_A1 /* Second function argument */ , rarg_2 = R_A2 /* Third function argument */ , rarg_3 = R_A3 /* Fourth function argument */ , rtmp_0 = R_T0 /* Temporary (Caller saved) */ , rtmp_1 = R_T1 /* Temporary (Caller saved) */ , rtmp_2 = R_T2 /* Temporary (Caller saved) */ , rsaved_0 = R_S0 /* Saved register (Callee saved) */ , rstack_ptr = R_SP /* Stack Pointer */ , rret_addr = R_RA /* Return Address (populated by JAL) */ /* --- MIPS CPU Opcodes (Bits 31-26) --- */ , op_special = 0x00 /* R-Type instructions (uses FUNCT field) */ , op_bcond = 0x01 /* Branch on condition */ , op_j = 0x02 /* Jump */ , op_jal = 0x03 /* Jump and Link */ , op_beq = 0x04 /* Branch on Equal */ , op_bne = 0x05 /* Branch on Not Equal */ , op_blez = 0x06 /* Branch on Less Than or Equal to Zero */ , op_bgtz = 0x07 /* Branch on Greater Than Zero */ , op_addi = 0x08 /* Add Immediate */ , op_addiu = 0x09 /* Add Immediate Unsigned */ , op_slti = 0x0A /* Set on Less Than Immediate */ , op_sltiu = 0x0B /* Set on Less Than Immediate Unsigned */ , op_andi = 0x0C /* AND Immediate */ , op_ori = 0x0D /* OR Immediate */ , op_xori = 0x0E /* XOR Immediate */ , op_lui = 0x0F /* Load Upper Immediate */ , op_cop0 = 0x10 /* Coprocessor 0 (System) */ , op_cop2 = 0x12 /* Coprocessor 2 (GTE) */ , op_la = 0 , op_li = 0 , op_lb = 0x20 /* Load Byte */ , op_lh = 0x21 /* Load Halfword */ , op_lw = 0x23 /* Load Word */ , op_lbu = 0x24 /* Load Byte Unsigned */ , op_lhu = 0x25 /* Load Halfword Unsigned */ , op_lwc2 = 0x32 /* Load Word to Coprocessor 2 (GTE) */ , op_sb = 0x28 /* Store Byte */ , op_sh = 0x29 /* Store Halfword */ , op_sw = 0x2B /* Store Word */ , op_swc2 = 0x3A /* Store Word from Coprocessor 2 (GTE) */ , op_load_addr = op_la , op_load_imm = op_li , op_jump = op_j , op_jump_nlink = op_jal /* --- MIPS CPU Function Codes (Bits 5-0, used when OP == MIPS_OP_SPECIAL) --- */ , fc_sll = 0x00 /* Shift Word Left Logical */ , fc_srl = 0x02 /* Shift Word Right Logical */ , fc_sra = 0x03 /* Shift Word Right Arithmetic */ , fc_sllv = 0x04 /* Shift Word Left Logical Variable */ , fc_srlv = 0x06 /* Shift Word Right Logical Variable */ , fc_srav = 0x07 /* Shift Word Right Arithmetic Variable */ , fc_jr = 0x08 /* Jump Register */ , fc_jalr = 0x09 /* Jump and Link Register */ , fc_syscall = 0x0C /* System Call */ , fc_break = 0x0D /* Breakpoint */ , fc_mfhi = 0x10 /* Move From HI */ , fc_mthi = 0x11 /* Move To HI */ , fc_mflo = 0x12 /* Move From LO */ , fc_mtlo = 0x13 /* Move To LO */ , fc_mult = 0x18 /* Multiply Word */ , fc_multu = 0x19 /* Multiply Unsigned Word */ , fc_div = 0x1A /* Divide Word */ , fc_divu = 0x1B /* Divide Unsigned Word */ , fc_add = 0x20 /* Add Word */ , fc_addu = 0x21 /* Add Unsigned Word */ , fc_sub = 0x22 /* Subtract Word */ , fc_subu = 0x23 /* Subtract Unsigned Word */ , fc_and = 0x24 /* AND */ , fc_or = 0x25 /* OR */ , fc_xor = 0x26 /* XOR */ , fc_nor = 0x27 /* NOR */ , fc_slt = 0x2A /* Set on Less Than */ , fc_sltu = 0x2B /* Set on Less Than Unsigned */ , fc_jump_reg = fc_jr /* --- Coprocessor 0 (System Control & Exceptions) --- */ , cop_mf = 0x00 /* Move From Coprocessor */ , cop_mt = 0x04 /* Move To Coprocessor */ }; // Bitfield Packets (Encoders) enum { _BitOffsets = 0 /* Bit Offsets for MIPS Instruction Fields */ , OPCODE_SHIFT = 26 , RS_SHIFT = 21 , RT_SHIFT = 16 , RD_SHIFT = 11 , SHAMT_SHIFT = 6 /* Shift Amount */ , FC_SHIFT = 0 /* Bit Masks to prevent overflow into adjacent fields */ , OPCODE_MASK = 0x3F , REG_MASK = 0x1F , SHAMT_MASK = 0x1F /* Shift Amount */ , FC_MASK = 0x3F , IMM_MASK = 0xFFFF }; #define enc_op(op) (((op) & OPCODE_MASK) << OPCODE_SHIFT) #define enc_rs(rs) (((rs) & REG_MASK) << RS_SHIFT) #define enc_rt(rt) (((rt) & REG_MASK) << RT_SHIFT) #define enc_rd(rd) (((rd) & REG_MASK) << RD_SHIFT) #define enc_shamt(shamt) (((shamt) & SHAMT_MASK) << SHAMT_SHIFT) #define enc_fc(fc) (((fc) & FC_MASK) << FC_SHIFT) #define enc_imm(imm) (((imm) & IMM_MASK)) /* MIPS R-Type Instruction Format (Register-to-Register) */ #define enc_r(op, rs, rt, rd, shamt, fc) (enc_op(op) | enc_rs(rs) | enc_rt(rt) | enc_rd(rd) | enc_shamt(shamt) | enc_fc(fc)) /* MIPS I-Type Instruction Format (Immediate/Constant) */ #define enc_i(op, rs, rt, imm) (enc_op(op) | enc_rs(rs) | enc_rt(rt) | enc_imm(imm)) /* COP0 (System) Transfer Format: mtc0 rt, rd or mfc0 rt, rd * `sub` is the COP0 sub-opcode (cop_mf=0 or cop_mt=4), placed in rs slot. * `rt` is the GPR operand (in rt slot). * `rd` is the COP0 register index (in rd slot at bits 15..11). */ #define enc_cop0_tx(sub, rt, rd) enc_i(op_cop0, (sub), (rt), ((rd) << 11)) /* COP0 Return From Exception (rfe) */ #define enc_rfe() 0x42000010 /* --- Semantic Encoders (MIPS mnemonics) --- * Argument order matches the MIPS assembly syntax: * dest-first, then source operands, then immediate last. * * load_word(rt, base, off) → lw rt, off(base) * store_word(rt, base, off) → sw rt, off(base) * add_ui(rt, rs, imm) → addiu rt, rs, imm * shift_ll(rd, rt, shamt) → sll rd, rt, shamt * jump_reg(rs) → jr rs * jump_link(rs, rd) → jalr rs (link in rd, default $ra) * nop() → sll $0, $0, 0 */ #define load_word(rt, base, off) enc_i(op_lw, (base), (rt), (off)) #define load_byte(rt, base, off) enc_i(op_lb, (base), (rt), (off)) #define load_half(rt, base, off) enc_i(op_lh, (base), (rt), (off)) #define load_byte_u(rt, base, off) enc_i(op_lbu, (base), (rt), (off)) #define load_half_u(rt, base, off) enc_i(op_lhu, (base), (rt), (off)) #define store_word(rt, base, off) enc_i(op_sw, (base), (rt), (off)) #define add_ui(rt, rs, imm) enc_i(op_addiu, (rs), (rt), (imm)) #define andi_op(rt, rs, imm) enc_i(op_andi, (rs), (rt), (imm)) #define ori_op(rt, rs, imm) enc_i(op_ori, (rs), (rt), (imm)) #define xori_op(rt, rs, imm) enc_i(op_xori, (rs), (rt), (imm)) #define lui_op(rt, imm) enc_i(op_lui, R_0, (rt), (imm)) /* Shift family (R-type). shift_ll/lr/ra: `sll rd, rt, shamt` */ #define shift_ll(rd, rt, shamt) enc_r(op_special, R_0, (rt), (rd), (shamt), fc_sll) #define shift_lr(rd, rt, shamt) enc_r(op_special, R_0, (rt), (rd), (shamt), fc_srl) #define shift_ra(rd, rt, shamt) enc_r(op_special, R_0, (rt), (rd), (shamt), fc_sra) /* jr rs — jump to address in rs. */ #define jump_reg(rs) enc_r(op_special, (rs), R_0, R_0, 0, fc_jr) /* jalr rs, rd — link in rd (default $ra) and jump to address in rs. * Layout: [op_special][rs:5][rt=0:5][rd:5][shamt=0:5][fc_jalr=0x09] */ #define jump_link(rs, rd) enc_r(op_special, (rs), R_0, (rd), 0, fc_jalr) /* Back-compat alias: the old `load_imm` was a misnomer for `lw`. */ #define load_imm(rt, base, off) load_word(rt, base, off) #define nop() shift_ll(rdiscard, rdiscard, 0) // FI_ void emit_load_imm(U4 rs, U4 rt, U4 imm) { emit(load_imm()); } // Binary Metaprogramming typedef U4 const Code; #define CodeBlob_(sym) tmpl(codeblob,sym) [] align_(4) = // #define def_code_blob(func_name, func_signature, ...) \ // internal U4 const \ // tmpl(func_name,blob) [] align(4) \ // = { \ // __VA_ARGS__ \ // }; \ // internal func_signature func_name = (func_signature)func_name##_blob; enum { bios_flushcache = 0x44, bios_table_addr = 0xA0, }; /* Flushes the Instruction Cache (PSX A-function 0x44 via BIOS stub at 0xA0). * * Sequence (per MIPS ABI; arguments in arg registers, RA pushed to stack): * 1. sp -= 8; sw $ra, 4($sp) ; save RA * 2. $a0 = bios_flushcache (arg0) * 3. $t0 = bios_table_addr ; t0 = &BIOS A-function table * 4. jalr $t0, $ra ; call BIOS(flushcache) * nop ; branch delay slot * 5. lw $ra, 4($sp); jr $ra ; restore & return * 6. sp += 8 */ I_ Code CodeBlob_(mips_flush_icache) { add_ui(rstack_ptr, rstack_ptr, -8), /* sp -= 8 */ store_word(rret_addr, rstack_ptr, 4), /* sw $ra, 4($sp) */ add_ui(rret_0, rdiscard, bios_flushcache), /* addiu $a0, $0, 0x44 */ add_ui(rtmp_0, rdiscard, bios_table_addr), /* addiu $t0, $0, 0xA0 */ jump_link(rtmp_0, rret_addr), /* jalr $t0, $ra */ nop(), /* BD slot */ load_word(rret_addr, rstack_ptr, 4), /* lw $ra, 4($sp) */ jump_reg(rret_addr), /* jr $ra */ add_ui(rstack_ptr, rstack_ptr, 8) /* sp += 8 (BD) */ }; FI_ void mips_flush_icache(void) { C_(VoidFn*, codeblob_mips_flush_icache)(); } #define clb_system "$2", "$8", "$9", "$31", "memory" #define asm_mips_flush_icache() asm volatile( \ asm_inline( \ add_ui(rstack_ptr, rstack_ptr, -8) \ , store_word(rret_addr, rstack_ptr, 4) \ , add_ui(rret_0, rdiscard, bios_flushcache) \ , add_ui(rtmp_0, rdiscard, bios_table_addr) \ , jump_link(rtmp_0, rret_addr) \ , nop() \ , load_word(rret_addr, rstack_ptr, 4) \ , jump_reg(rret_addr) \ , add_ui(rstack_ptr, rstack_ptr, 8) \ ) \ asm_clobber( clb_system ) \ ) void test_mips_asm() { asm_mips_flush_icache(); } // TAPE & EMITTERS