rabbitizer/include/instructions/RabbitizerInstructionR4000Allegrex.h
Anghelo Carvajal b51b62da45
ALLEGREX support (#60)
* setup ALLEGREX

* more setup

* clo

* fix

* Implement SPECIAL_RS and SPECIAL_SA instructions

* more table placeholders

* Implement bshfl instructions

* Rename to R4000Allegrex

* Implement SPECIAL instructions

* Add tests

* Remove some duplicated tests

* Implement SPECIAL3 instructions

* fix bug in test

* update

* Implement COPz

* Implement SPECIAL2 instructions

* Implement COP1

* Yeet cop3

* som tests

* bvf, bvfl, bvt, bvtl

* fix bshfl prefix

* need to implement the vfpu registers

* implement vt_7?

* R4000AllegrexVF -> R4000AllegrexVScalar

* Add test suite to compare with the sn toolchain decoding

* more vfpu test cases

* forgor this

* I can't decide how to name these registers

* Prepare tables for all register types

* Fix typo

* Implement vector scalar register operands

* Implement quad registers

* Fix tests?

* svl.q, svr.q

* Implement a bunch of vfpu0 instructions

* implement registers for `.t` and `.p` instructions

* Implement VFPU1 instructions

* bleh

* VFPU1, VFPU3 and `vcmp.`

* Fix wrong register type on some instructions

* start vfpu3

* Implement VFPU3 instructions

* start categorizing VFPU4

* Categorize VFPU5

* VFPU6 identification

* Identify VFPU7

* COP2 is weird

* organize COP2 a bit

* Add test cases for VFPU4 FMT

* VFPU4 FMT2 stuff

* VFPU4 FMT3 stuff

* VFPU5 stuff

* VFPU6 stuff

* VFPU7 stuff

* Implement COP2 instructions

* Implement vmov, vabs and vneg

* VPFU4 FMT0 FMT0 FMT0 implemented

* VFPU FMT0 FMT0 FMT2

* vnrcp, vnsin, vrexp2

* vrnds, vrndi, vrndf1, vrndf2

* Change tests a bit

* vf2h, vh2f, vsbz, vlgb

* vuc2ifs, vc2i, vus2i, vs2i, vi2uc, vi2c, vi2us, vi2s

* vsrt1, vsrt2, vbfy1, vbfy2, vocp, vsocp, vfad, vavg

* vsrt3, vsrt4, vsgn

* vmfvc and vmtvc placeholders

* vt4444, vt5551, vt5650

* vcst placeholder

* vf2in

* vf2iz

* vf2iu, vf2id, vi2f

* vcmovt, vcmovf

* vwbn.s, viim.s, vfim.s

* vpfxs, vpfxt, vpfxd, vnop, vsync, vflush

* vmmov, vmidt, vmzero, vmone

* vrot

* vmmul, vhtfm2, vtfm2, vhtfm3, vtfm3, vhtfm4, vtfm4, vmscl, vcrsp, vqmul

* Implement matrix operands

* fix matrix operands

* Fix `illegal` tests

* hack out a way to check the test cases are assemblable

* test-fixing: branches

* fix more test cases

* fix vmfvc and vmtvc

* more test fixing

* vdiv and fix operand R323

* more test fixing

* Fix matrix operands

* implement vcmp comparisons

* fix vsync2

* vsqrt and vrndf1 fixes

* Implement "constant" operand for `vcst`

* Add missing operand of vf2in, vf2iz, vf2iu, vf2id, vi2f

* Add missing vcmovt and vcmovf operands

* Add missing vwbn operand

* Tests cases for vmmul

* Fix vtfm2

* Implement "transpose matrix register"

* Add placeholders for the remaining missing operands

* Implement viim operand

* Implement vrot code operand

* placeholders for rp and wp operands

* test cases for vpfxs, vpfxt and vpfxd

* Properly implement rpx, rpy, rpz and rpw

* Properly implement wpx, wpy, wpz and wpw operands

* Implement vfim

* changelog

* readme

* some cleanup

* Restructure some tables

* more table restructure

* fix tests

* more table yeeting

* more cleanup

* more cleanup

* reanming

* moar

* fmt
2024-04-22 13:15:58 -04:00

249 lines
18 KiB
C

/* SPDX-FileCopyrightText: © 2024 Decompollaborate */
/* SPDX-License-Identifier: MIT */
#ifndef RABBITIZER_INSTRUCTION_R4000ALLEGREX_H
#define RABBITIZER_INSTRUCTION_R4000ALLEGREX_H
#pragma once
#include "RabbitizerInstruction.h"
#ifdef __cplusplus
extern "C" {
#endif
#define RAB_INSTR_R4000ALLEGREX_GET_vt(self) (SHIFTR((self)->word, 16, 7))
#define RAB_INSTR_R4000ALLEGREX_GET_vs(self) (SHIFTR((self)->word, 8, 7))
#define RAB_INSTR_R4000ALLEGREX_GET_vd(self) (SHIFTR((self)->word, 0, 7))
// For whatever reason the transpose just toggles bit 5, no clue why.
#define RAB_INSTR_R4000ALLEGREX_GET_vs_transpose(self) (SHIFTR((self)->word, 8, 7) ^ 0x20)
#define RAB_INSTR_R4000ALLEGREX_GET_vt_imm(self) ((SHIFTR((self)->word, 0, 2) << 5) | (SHIFTR((self)->word, 16, 5)))
#define RAB_INSTR_R4000ALLEGREX_GET_vd_imm(self) (SHIFTR((self)->word, 16, 7))
#define RAB_INSTR_R4000ALLEGREX_GET_vt_6_imm(self) ((SHIFTR((self)->word, 0, 1) << 5) | (SHIFTR((self)->word, 16, 5)))
#define RAB_INSTR_R4000ALLEGREX_GET_cop2cs(self) (SHIFTR((self)->word, 8, 7))
#define RAB_INSTR_R4000ALLEGREX_GET_cop2cd(self) (SHIFTR((self)->word, 0, 7))
#define RAB_INSTR_R4000ALLEGREX_GET_pos(self) (SHIFTR((self)->word, 6, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_size(self) (SHIFTR((self)->word, 11, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_size_plus_pos(self) (SHIFTR((self)->word, 11, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_bc2_fmt(self) (SHIFTR((self)->word, 16, 2))
#define RAB_INSTR_R4000ALLEGREX_GET_mxhc2(self) (SHIFTR((self)->word, 7, 1))
#define RAB_INSTR_R4000ALLEGREX_GET_mfhc2_p_fmt(self) (SHIFTR((self)->word, 4, 3))
#define RAB_INSTR_R4000ALLEGREX_GET_mfhc2_p_s_fmt(self) (SHIFTR((self)->word, 0, 4))
#define RAB_INSTR_R4000ALLEGREX_GET_imm3(self) (SHIFTR((self)->word, 18, 3))
#define RAB_INSTR_R4000ALLEGREX_GET_offset14(self) (SHIFTR((self)->word, 2, 14))
#define RAB_INSTR_R4000ALLEGREX_GET_wb(self) (SHIFTR((self)->word, 1, 1))
#define RAB_INSTR_R4000ALLEGREX_GET_tp(self) ((SHIFTR((self)->word, 15, 1) << 1) | (SHIFTR((self)->word, 7, 1)))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu0_fmt(self) ((SHIFTR((self)->word, 23, 3) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu4_fmt(self) ((SHIFTR((self)->word, 24, 2) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu4_fmt0_fmt(self) (SHIFTR((self)->word, 19, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu4_fmt0_fmt0_fmt(self) ((SHIFTR((self)->word, 16, 3) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu4_fmt2_fmt(self) ((SHIFTR((self)->word, 21, 3) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu4_fmt2_cndmove_fmt(self) ((SHIFTR((self)->word, 19, 2) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu5_fmt(self) (SHIFTR((self)->word, 23, 3))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu6_fmt(self) ((SHIFTR((self)->word, 23, 3) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu6_fmt7_fmt(self) ((SHIFTR((self)->word, 21, 2) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu6_fmt7_fmt0_fmt(self) ((SHIFTR((self)->word, 16, 3) << 2) | RAB_INSTR_R4000ALLEGREX_GET_tp(self))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu7_fmt(self) (SHIFTR((self)->word, 0, 26))
#define RAB_INSTR_R4000ALLEGREX_GET_vcmp_cond(self) (SHIFTR((self)->word, 0, 4))
#define RAB_INSTR_R4000ALLEGREX_GET_vconstant(self) (SHIFTR((self)->word, 16, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_power_of_two(self) (SHIFTR((self)->word, 16, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_vfpu_cc_bit(self) (SHIFTR((self)->word, 16, 3))
#define RAB_INSTR_R4000ALLEGREX_GET_bn(self) (SHIFTR((self)->word, 16, 8))
#define RAB_INSTR_R4000ALLEGREX_GET_intfloat16(self) (SHIFTR((self)->word, 0, 16))
#define RAB_INSTR_R4000ALLEGREX_GET_vrot_code(self) (SHIFTR((self)->word, 16, 5))
#define RAB_INSTR_R4000ALLEGREX_GET_rpx(self) ((SHIFTR((self)->word, 16, 1) << 4) | (SHIFTR((self)->word, 12, 1) << 3) | (SHIFTR((self)->word, 8, 1) << 2) | (SHIFTR((self)->word, 0, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_rpy(self) ((SHIFTR((self)->word, 17, 1) << 4) | (SHIFTR((self)->word, 13, 1) << 3) | (SHIFTR((self)->word, 9, 1) << 2) | (SHIFTR((self)->word, 2, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_rpz(self) ((SHIFTR((self)->word, 18, 1) << 4) | (SHIFTR((self)->word, 14, 1) << 3) | (SHIFTR((self)->word, 10, 1) << 2) | (SHIFTR((self)->word, 4, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_rpw(self) ((SHIFTR((self)->word, 19, 1) << 4) | (SHIFTR((self)->word, 15, 1) << 3) | (SHIFTR((self)->word, 11, 1) << 2) | (SHIFTR((self)->word, 6, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_wpx(self) ((SHIFTR((self)->word, 8, 1) << 2) | (SHIFTR((self)->word, 0, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_wpy(self) ((SHIFTR((self)->word, 9, 1) << 2) | (SHIFTR((self)->word, 2, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_wpz(self) ((SHIFTR((self)->word, 10, 1) << 2) | (SHIFTR((self)->word, 4, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_GET_wpw(self) ((SHIFTR((self)->word, 11, 1) << 2) | (SHIFTR((self)->word, 6, 2) << 0))
#define RAB_INSTR_R4000ALLEGREX_PACK_vt(word, value) (BITREPACK((word), (value), 16, 7))
#define RAB_INSTR_R4000ALLEGREX_PACK_vs(word, value) (BITREPACK((word), (value), 8, 7))
#define RAB_INSTR_R4000ALLEGREX_PACK_vd(word, value) (BITREPACK((word), (value), 0, 7))
#define RAB_INSTR_R4000ALLEGREX_PACK_vt_imm(word, value) (BITREPACK(BITREPACK((word), (value) >> 5, 0, 2), (value), 16, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_vd_imm(word, value) (BITREPACK((word), (value), 16, 7))
#define RAB_INSTR_R4000ALLEGREX_PACK_vt_6_imm(word, value) (BITREPACK(BITREPACK((word), (value) >> 5, 0, 1), (value), 16, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_cop2cs(word, value) (BITREPACK((word), (value), 8, 7))
#define RAB_INSTR_R4000ALLEGREX_PACK_cop2cd(word, value) (BITREPACK((word), (value), 0, 7))
#define RAB_INSTR_R4000ALLEGREX_PACK_pos(word, value) (BITREPACK((word), (value), 6, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_size(word, value) (BITREPACK((word), (value), 11, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_size_plus_pos(word, value) (BITREPACK((word), (value), 11, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_bc2_fmt(word, value) (BITREPACK((word), (value), 16, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_mxhc2(word, value) (BITREPACK((word), (value), 7, 1))
#define RAB_INSTR_R4000ALLEGREX_PACK_mfhc2_p_fmt(word, value) (BITREPACK((word), (value), 4, 3))
#define RAB_INSTR_R4000ALLEGREX_PACK_mfhc2_p_s_fmt(word, value) (BITREPACK((word), (value), 0, 4))
#define RAB_INSTR_R4000ALLEGREX_PACK_imm3(word, value) (BITREPACK((word), (value), 18, 3))
#define RAB_INSTR_R4000ALLEGREX_PACK_offset14(word, value) (BITREPACK((word), (value), 2, 14))
#define RAB_INSTR_R4000ALLEGREX_PACK_wb(word, value) (BITREPACK((word), (value), 1, 1))
#define RAB_INSTR_R4000ALLEGREX_PACK_tp(word, value) (BITREPACK(BITREPACK((word), (value) >> 1, 15, 1), (value), 7, 1))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu0_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 23, 3), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu4_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 24, 2), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu4_fmt0_fmt(word, value) (BITREPACK((word), (value), 19, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu4_fmt0_fmt0_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 16, 3), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu4_fmt2_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 21, 3), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu4_fmt2_cndmove_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 19, 2), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu5_fmt(word, value) (BITREPACK((word), (value), 23, 3))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu6_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 23, 3), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu6_fmt7_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 21, 2), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu6_fmt7_fmt0_fmt(word, value) (RAB_INSTR_R4000ALLEGREX_PACK_tp(BITREPACK((word), (value) >> 2, 16, 3), (value)))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu7_fmt(word, value) (BITREPACK((word), (value), 0, 26))
#define RAB_INSTR_R4000ALLEGREX_PACK_vcmp_cond(word, value) (BITREPACK((word), (value), 0, 4))
#define RAB_INSTR_R4000ALLEGREX_PACK_vconstant(word, value) (BITREPACK((word), (value), 16, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_power_of_two(word, value) (BITREPACK((word), (value), 16, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_vfpu_cc_bit(word, value) (BITREPACK((word), (value), 16, 3))
#define RAB_INSTR_R4000ALLEGREX_PACK_bn(word, value) (BITREPACK((word), (value), 16, 8))
#define RAB_INSTR_R4000ALLEGREX_PACK_intfloat16(word, value) (BITREPACK((word), (value), 0, 16))
#define RAB_INSTR_R4000ALLEGREX_PACK_vrot_code(word, value) (BITREPACK((word), (value), 16, 5))
#define RAB_INSTR_R4000ALLEGREX_PACK_rpx(word, value) (BITREPACK(BITREPACK(BITREPACK(BITREPACK((word), (value) >> 4, 16, 1), (value) >> 3, 12, 1), (value) >> 2, 8, 1), (value), 0, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_rpy(word, value) (BITREPACK(BITREPACK(BITREPACK(BITREPACK((word), (value) >> 4, 17, 1), (value) >> 3, 13, 1), (value) >> 2, 9, 1), (value), 2, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_rpz(word, value) (BITREPACK(BITREPACK(BITREPACK(BITREPACK((word), (value) >> 4, 18, 1), (value) >> 3, 14, 1), (value) >> 2, 10, 1), (value), 4, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_rpw(word, value) (BITREPACK(BITREPACK(BITREPACK(BITREPACK((word), (value) >> 4, 19, 1), (value) >> 3, 15, 1), (value) >> 2, 11, 1), (value), 6, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_wpx(word, value) (BITREPACK(BITREPACK((word), (value) >> 2, 8, 1), (value), 0, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_wpy(word, value) (BITREPACK(BITREPACK((word), (value) >> 2, 9, 1), (value), 2, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_wpz(word, value) (BITREPACK(BITREPACK((word), (value) >> 2, 10, 1), (value), 4, 2))
#define RAB_INSTR_R4000ALLEGREX_PACK_wpw(word, value) (BITREPACK(BITREPACK((word), (value) >> 2, 11, 1), (value), 6, 2))
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_init(RabbitizerInstruction *self, uint32_t word, uint32_t vram);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_destroy(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Normal(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Special(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Special_Rs(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Special_Sa(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Regimm(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Special2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Special3(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Special3_Bshfl(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor0(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor0_BC0(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor0_Tlb(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor1(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor1_BC1(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor1_FpuS(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor1_FpuW(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor2_BC2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor2_MFHC2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor2_MFHC2_p(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor2_MFHC2_p_s(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Coprocessor2_MTHC2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu0(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu1(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu3(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Fmt0(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Fmt2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Fmt3(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Rnd(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_CvtFlt(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_CvtInt(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Fmt8(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Fmt9(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Control(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Color(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt0_Cst(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt2(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu4_Fmt2_CndMove(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu5(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu6(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu6_Fmt7(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu6_Fmt7_Fmt0(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Vfpu7(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId_Quadlr(RabbitizerInstruction *self);
NON_NULL(1)
void RabbitizerInstructionR4000Allegrex_processUniqueId(RabbitizerInstruction *self);
#ifdef __cplusplus
}
#endif
#endif