2008-11-14 20:47:53 +00:00
|
|
|
/*
|
2015-11-10 05:21:49 +00:00
|
|
|
* RSP Compiler plug in for Project64 (A Nintendo 64 emulator).
|
2008-11-14 20:47:53 +00:00
|
|
|
*
|
|
|
|
* (c) Copyright 2001 jabo (jabo@emulation64.com) and
|
|
|
|
* zilmar (zilmar@emulation64.com)
|
|
|
|
*
|
|
|
|
* pj64 homepage: www.pj64.net
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute Project64 in both binary and
|
|
|
|
* source form, for non-commercial purposes, is hereby granted without fee,
|
|
|
|
* providing that this license information and copyright notice appear with
|
|
|
|
* all copies and any derived work.
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event shall the authors be held liable for any damages
|
|
|
|
* arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Project64 is freeware for PERSONAL USE only. Commercial users should
|
|
|
|
* seek permission of the copyright holders first. Commercial use includes
|
|
|
|
* charging money for Project64 or software derived from Project64.
|
|
|
|
*
|
|
|
|
* The copyright holders request that bug fixes and improvements to the code
|
|
|
|
* should be forwarded to them so if they want them.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include "rsp.h"
|
|
|
|
#include "CPU.h"
|
2013-01-29 10:44:59 +00:00
|
|
|
#include "Interpreter CPU.h"
|
2008-11-14 20:47:53 +00:00
|
|
|
#include "Recompiler CPU.h"
|
|
|
|
#include "RSP Command.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "opcode.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
2015-01-24 21:07:38 +00:00
|
|
|
//#define COMPARE_INSTRUCTIONS_VERBOSE
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
/************************************************************
|
|
|
|
** IsOpcodeNop
|
|
|
|
**
|
|
|
|
** Output: BOOLean whether opcode at PC is a NOP
|
|
|
|
** Input: PC
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL IsOpcodeNop(DWORD PC) {
|
|
|
|
OPCODE RspOp;
|
|
|
|
RSP_LW_IMEM(PC, &RspOp.Hex);
|
|
|
|
|
|
|
|
if (RspOp.op == RSP_SPECIAL && RspOp.funct == RSP_SPECIAL_SLL) {
|
|
|
|
return (RspOp.rd == 0) ? TRUE : FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** IsNextInstructionMmx
|
|
|
|
**
|
|
|
|
** Output: determines EMMS status
|
|
|
|
** Input: PC
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL IsNextInstructionMmx(DWORD PC) {
|
|
|
|
OPCODE RspOp;
|
|
|
|
|
|
|
|
if (IsMmxEnabled == FALSE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
PC += 4;
|
|
|
|
if (PC >= 0x1000) return FALSE;
|
|
|
|
RSP_LW_IMEM(PC, &RspOp.Hex);
|
|
|
|
|
|
|
|
if (RspOp.op != RSP_CP2)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if ((RspOp.rs & 0x10) != 0) {
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_VECTOR_VMULF:
|
|
|
|
case RSP_VECTOR_VMUDL: /* Warning: Not all handled? */
|
|
|
|
case RSP_VECTOR_VMUDM:
|
|
|
|
case RSP_VECTOR_VMUDN:
|
|
|
|
case RSP_VECTOR_VMUDH:
|
|
|
|
if (TRUE == WriteToAccum(7, PC)) {
|
|
|
|
return FALSE;
|
|
|
|
} else if ((RspOp.rs & 0x0f) >= 2 && (RspOp.rs & 0x0f) <= 7 && IsMmx2Enabled == FALSE) {
|
|
|
|
return FALSE;
|
|
|
|
} else
|
|
|
|
return TRUE;
|
|
|
|
|
2015-03-01 11:39:14 +00:00
|
|
|
case RSP_VECTOR_VABS:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VAND:
|
|
|
|
case RSP_VECTOR_VOR:
|
|
|
|
case RSP_VECTOR_VXOR:
|
2015-01-12 22:19:41 +00:00
|
|
|
case RSP_VECTOR_VNAND:
|
|
|
|
case RSP_VECTOR_VNOR:
|
|
|
|
case RSP_VECTOR_VNXOR:
|
2008-11-14 20:47:53 +00:00
|
|
|
if (TRUE == WriteToAccum(Low16BitAccum, PC)) {
|
|
|
|
return FALSE;
|
|
|
|
} else if ((RspOp.rs & 0x0f) >= 2 && (RspOp.rs & 0x0f) <= 7 && IsMmx2Enabled == FALSE) {
|
|
|
|
return FALSE;
|
|
|
|
} else
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VADD:
|
2015-01-31 12:35:43 +00:00
|
|
|
case RSP_VECTOR_VSUB:
|
2008-11-14 20:47:53 +00:00
|
|
|
/* Requires no accumulator write! & No flags! */
|
2015-02-19 02:18:27 +00:00
|
|
|
if (WriteToAccum(Low16BitAccum, PC) == TRUE) {
|
2008-11-14 20:47:53 +00:00
|
|
|
return FALSE;
|
2015-02-19 02:18:27 +00:00
|
|
|
} else if (UseRspFlags(PC) == TRUE) {
|
2008-11-14 20:47:53 +00:00
|
|
|
return FALSE;
|
|
|
|
} else if ((RspOp.rs & 0x0f) >= 2 && (RspOp.rs & 0x0f) <= 7 && IsMmx2Enabled == FALSE) {
|
|
|
|
return FALSE;
|
|
|
|
} else
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** WriteToAccum2
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: Accumulation series
|
|
|
|
** FALSE: Accumulator is reset after this op
|
|
|
|
**
|
|
|
|
** Input: PC, Location in accumulator
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
#define HIT_BRANCH 0x2
|
|
|
|
|
|
|
|
DWORD WriteToAccum2 (int Location, int PC, BOOL RecursiveCall) {
|
|
|
|
OPCODE RspOp;
|
|
|
|
DWORD BranchTarget = 0;
|
|
|
|
signed int BranchImmed = 0;
|
|
|
|
int Instruction_State = NextInstruction;
|
|
|
|
|
|
|
|
if (Compiler.bAccum == FALSE) return TRUE;
|
|
|
|
|
|
|
|
if (Instruction_State == DELAY_SLOT) {
|
2015-06-19 17:09:24 +00:00
|
|
|
return TRUE;
|
2008-11-14 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
PC += 4;
|
|
|
|
if (PC >= 0x1000) { return TRUE; }
|
|
|
|
RSP_LW_IMEM(PC, &RspOp.Hex);
|
|
|
|
|
|
|
|
switch (RspOp.op) {
|
|
|
|
case RSP_REGIMM:
|
|
|
|
switch (RspOp.rt) {
|
|
|
|
case RSP_REGIMM_BLTZ:
|
|
|
|
case RSP_REGIMM_BGEZ:
|
|
|
|
case RSP_REGIMM_BLTZAL:
|
|
|
|
case RSP_REGIMM_BGEZAL:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SPECIAL:
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_SPECIAL_SLL:
|
|
|
|
case RSP_SPECIAL_SRL:
|
|
|
|
case RSP_SPECIAL_SRA:
|
|
|
|
case RSP_SPECIAL_SLLV:
|
|
|
|
case RSP_SPECIAL_SRLV:
|
|
|
|
case RSP_SPECIAL_SRAV:
|
|
|
|
case RSP_SPECIAL_ADD:
|
|
|
|
case RSP_SPECIAL_ADDU:
|
|
|
|
case RSP_SPECIAL_SUB:
|
|
|
|
case RSP_SPECIAL_SUBU:
|
|
|
|
case RSP_SPECIAL_AND:
|
|
|
|
case RSP_SPECIAL_OR:
|
|
|
|
case RSP_SPECIAL_XOR:
|
|
|
|
case RSP_SPECIAL_NOR:
|
|
|
|
case RSP_SPECIAL_SLT:
|
|
|
|
case RSP_SPECIAL_SLTU:
|
|
|
|
case RSP_SPECIAL_BREAK:
|
|
|
|
break;
|
2015-01-24 23:39:54 +00:00
|
|
|
|
|
|
|
case RSP_SPECIAL_JALR:
|
|
|
|
return TRUE;
|
2008-11-14 20:47:53 +00:00
|
|
|
|
|
|
|
case RSP_SPECIAL_JR:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_J:
|
|
|
|
/* there is no way a loopback is going to use accumulator */
|
2015-04-20 03:56:36 +00:00
|
|
|
if (Compiler.bAudioUcode && (((int)(RspOp.target << 2) & 0xFFC) < PC)) {
|
2008-11-14 20:47:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* rarely occurs let them have their way */
|
2015-04-20 03:56:36 +00:00
|
|
|
else {
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
}
|
2008-11-14 20:47:53 +00:00
|
|
|
|
|
|
|
case RSP_JAL:
|
|
|
|
/* there is no way calling a subroutine is going to use accum */
|
|
|
|
/* or come back and continue an existing calculation */
|
2015-04-20 03:56:36 +00:00
|
|
|
if(Compiler.bAudioUcode) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
}
|
2008-11-14 20:47:53 +00:00
|
|
|
|
|
|
|
case RSP_BEQ:
|
|
|
|
case RSP_BNE:
|
|
|
|
case RSP_BLEZ:
|
|
|
|
case RSP_BGTZ:
|
|
|
|
BranchImmed = (short)RspOp.offset;
|
|
|
|
if (Compiler.bAudioUcode) {
|
|
|
|
OPCODE NextOp;
|
|
|
|
|
|
|
|
/* ignore backward branches and pretend its a nop */
|
|
|
|
if (BranchImmed <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* if the opcode 8 bytes before the dest is a J backward than ignore this */
|
|
|
|
BranchImmed = (PC + ((short)RspOp.offset << 2) + 4) & 0xFFC;
|
|
|
|
RSP_LW_IMEM(BranchImmed - 8, &NextOp.Hex);
|
2012-09-25 22:45:39 +00:00
|
|
|
if (RspOp.op == RSP_J && (int)(RspOp.target << 2) < PC) {
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BranchTarget = (PC + ((short)RspOp.offset << 2) + 4) & 0xFFC;
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
case RSP_ADDI:
|
|
|
|
case RSP_ADDIU:
|
|
|
|
case RSP_SLTI:
|
|
|
|
case RSP_SLTIU:
|
|
|
|
case RSP_ANDI:
|
|
|
|
case RSP_ORI:
|
|
|
|
case RSP_XORI:
|
|
|
|
case RSP_LUI:
|
|
|
|
case RSP_CP0:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP2:
|
|
|
|
if ((RspOp.rs & 0x10) != 0) {
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_VECTOR_VMULF:
|
2015-01-24 23:39:54 +00:00
|
|
|
case RSP_VECTOR_VMULU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMUDL:
|
|
|
|
case RSP_VECTOR_VMUDM:
|
|
|
|
case RSP_VECTOR_VMUDN:
|
|
|
|
case RSP_VECTOR_VMUDH:
|
|
|
|
return FALSE;
|
|
|
|
case RSP_VECTOR_VMACF:
|
2015-01-24 23:39:54 +00:00
|
|
|
case RSP_VECTOR_VMACU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMADL:
|
|
|
|
case RSP_VECTOR_VMADM:
|
|
|
|
case RSP_VECTOR_VMADN:
|
2015-01-12 03:49:04 +00:00
|
|
|
return TRUE;
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMADH:
|
2015-01-12 03:49:04 +00:00
|
|
|
if (Location == Low16BitAccum) { break; }
|
2008-11-14 20:47:53 +00:00
|
|
|
return TRUE;
|
2015-01-12 03:49:04 +00:00
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VABS:
|
|
|
|
case RSP_VECTOR_VADD:
|
|
|
|
case RSP_VECTOR_VADDC:
|
|
|
|
case RSP_VECTOR_VSUB:
|
|
|
|
case RSP_VECTOR_VSUBC:
|
|
|
|
case RSP_VECTOR_VAND:
|
2015-01-12 03:49:04 +00:00
|
|
|
case RSP_VECTOR_VNAND:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VOR:
|
2015-01-12 03:49:04 +00:00
|
|
|
case RSP_VECTOR_VNOR:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VXOR:
|
|
|
|
case RSP_VECTOR_VNXOR:
|
|
|
|
/* since these modify the accumulator lower-16 bits we can */
|
|
|
|
/* safely assume these 'reset' the accumulator no matter what */
|
2015-01-12 03:49:04 +00:00
|
|
|
// return FALSE;
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VCR:
|
|
|
|
case RSP_VECTOR_VCH:
|
|
|
|
case RSP_VECTOR_VCL:
|
|
|
|
case RSP_VECTOR_VRCP:
|
|
|
|
case RSP_VECTOR_VRCPL:
|
|
|
|
case RSP_VECTOR_VRCPH:
|
|
|
|
case RSP_VECTOR_VRSQL:
|
|
|
|
case RSP_VECTOR_VRSQH:
|
|
|
|
case RSP_VECTOR_VLT:
|
|
|
|
case RSP_VECTOR_VEQ:
|
|
|
|
case RSP_VECTOR_VGE:
|
2015-01-24 23:39:54 +00:00
|
|
|
case RSP_VECTOR_VNE:
|
2015-01-12 03:49:04 +00:00
|
|
|
case RSP_VECTOR_VMRG:
|
2015-01-12 19:43:07 +00:00
|
|
|
case RSP_VECTOR_VMOV:
|
2008-11-14 20:47:53 +00:00
|
|
|
if (Location == Low16BitAccum) { return FALSE; }
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VSAW:
|
|
|
|
return TRUE;
|
|
|
|
default:
|
2015-01-24 23:39:54 +00:00
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
2008-11-14 20:47:53 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (RspOp.rs) {
|
|
|
|
case RSP_COP2_CF:
|
|
|
|
case RSP_COP2_CT:
|
|
|
|
case RSP_COP2_MT:
|
|
|
|
case RSP_COP2_MF:
|
|
|
|
break;
|
|
|
|
default:
|
2015-01-24 23:39:54 +00:00
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
2008-11-14 20:47:53 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_LB:
|
|
|
|
case RSP_LH:
|
|
|
|
case RSP_LW:
|
|
|
|
case RSP_LBU:
|
|
|
|
case RSP_LHU:
|
|
|
|
case RSP_SB:
|
|
|
|
case RSP_SH:
|
|
|
|
case RSP_SW:
|
|
|
|
break;
|
|
|
|
case RSP_LC2:
|
|
|
|
switch (RspOp.rd) {
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SC2:
|
|
|
|
switch (RspOp.rd) {
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
case RSP_LSC2_FV:
|
|
|
|
case RSP_LSC2_WV:
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToAccum\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
switch (Instruction_State) {
|
|
|
|
case NORMAL: break;
|
|
|
|
case DO_DELAY_SLOT:
|
|
|
|
Instruction_State = DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
case DELAY_SLOT:
|
2015-06-19 17:09:24 +00:00
|
|
|
Instruction_State = FINISH_BLOCK;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (Instruction_State != FINISH_BLOCK);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a tricky situation because most of the
|
|
|
|
* microcode does loops, so looping back and checking
|
|
|
|
* can prove effective, but it's still a branch..
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (BranchTarget != 0 && RecursiveCall == FALSE) {
|
|
|
|
DWORD BranchTaken, BranchFall;
|
|
|
|
|
|
|
|
/* analysis of branch taken */
|
|
|
|
BranchTaken = WriteToAccum2(Location, BranchTarget - 4, TRUE);
|
|
|
|
/* analysis of branch as nop */
|
|
|
|
BranchFall = WriteToAccum2(Location, PC, TRUE);
|
|
|
|
|
|
|
|
if (BranchImmed < 0) {
|
|
|
|
if (BranchTaken != FALSE) {
|
|
|
|
/*
|
|
|
|
* took this back branch and found a place
|
|
|
|
* that needs this vector as a source
|
|
|
|
*/
|
|
|
|
return TRUE;
|
|
|
|
} else if (BranchFall == HIT_BRANCH) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/* otherwise this is completely valid */
|
|
|
|
return BranchFall;
|
|
|
|
} else {
|
|
|
|
if (BranchFall != FALSE) {
|
|
|
|
/*
|
|
|
|
* took this forward branch and found a place
|
|
|
|
* that needs this vector as a source
|
|
|
|
*/
|
|
|
|
return TRUE;
|
|
|
|
} else if (BranchTaken == HIT_BRANCH) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/* otherwise this is completely valid */
|
|
|
|
return BranchTaken;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WriteToAccum (int Location, int PC) {
|
|
|
|
DWORD value = WriteToAccum2(Location, PC, FALSE);
|
|
|
|
|
|
|
|
if (value == HIT_BRANCH) {
|
|
|
|
return TRUE; /* ??? */
|
|
|
|
} else
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** WriteToVectorDest
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: Destination is used as a source later
|
|
|
|
** FALSE: Destination is over-written later
|
|
|
|
**
|
|
|
|
** Input: PC, Register
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL WriteToVectorDest2 (DWORD DestReg, int PC, BOOL RecursiveCall) {
|
|
|
|
OPCODE RspOp;
|
|
|
|
DWORD BranchTarget = 0;
|
|
|
|
signed int BranchImmed = 0;
|
|
|
|
|
|
|
|
int Instruction_State = NextInstruction;
|
|
|
|
|
|
|
|
if (Compiler.bDest == FALSE) return TRUE;
|
|
|
|
|
|
|
|
if (Instruction_State == DELAY_SLOT) {
|
2015-06-19 17:09:24 +00:00
|
|
|
return TRUE;
|
2008-11-14 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
PC += 4;
|
|
|
|
if (PC >= 0x1000) { return TRUE; }
|
|
|
|
RSP_LW_IMEM(PC, &RspOp.Hex);
|
|
|
|
|
|
|
|
switch (RspOp.op) {
|
|
|
|
|
|
|
|
case RSP_REGIMM:
|
|
|
|
switch (RspOp.rt) {
|
|
|
|
case RSP_REGIMM_BLTZ:
|
|
|
|
case RSP_REGIMM_BGEZ:
|
|
|
|
case RSP_REGIMM_BLTZAL:
|
|
|
|
case RSP_REGIMM_BGEZAL:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SPECIAL:
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_SPECIAL_SLL:
|
|
|
|
case RSP_SPECIAL_SRL:
|
|
|
|
case RSP_SPECIAL_SRA:
|
|
|
|
case RSP_SPECIAL_SLLV:
|
|
|
|
case RSP_SPECIAL_SRLV:
|
|
|
|
case RSP_SPECIAL_SRAV:
|
|
|
|
case RSP_SPECIAL_ADD:
|
|
|
|
case RSP_SPECIAL_ADDU:
|
|
|
|
case RSP_SPECIAL_SUB:
|
|
|
|
case RSP_SPECIAL_SUBU:
|
|
|
|
case RSP_SPECIAL_AND:
|
|
|
|
case RSP_SPECIAL_OR:
|
|
|
|
case RSP_SPECIAL_XOR:
|
|
|
|
case RSP_SPECIAL_NOR:
|
|
|
|
case RSP_SPECIAL_SLT:
|
|
|
|
case RSP_SPECIAL_SLTU:
|
|
|
|
case RSP_SPECIAL_BREAK:
|
|
|
|
break;
|
|
|
|
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_SPECIAL_JALR:
|
|
|
|
return TRUE;
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_SPECIAL_JR:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_J:
|
|
|
|
/* there is no way a loopback is going to use accumulator */
|
2012-09-25 22:45:39 +00:00
|
|
|
if (Compiler.bAudioUcode && (int)(RspOp.target << 2) < PC) {
|
2008-11-14 20:47:53 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
/* rarely occurs let them have their way */
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_JAL:
|
|
|
|
/* Assume reg is being passed to function or used after the function call */
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_BEQ:
|
|
|
|
case RSP_BNE:
|
|
|
|
case RSP_BLEZ:
|
|
|
|
case RSP_BGTZ:
|
|
|
|
BranchImmed = (short)RspOp.offset;
|
|
|
|
if (Compiler.bAudioUcode) {
|
|
|
|
OPCODE NextOp;
|
|
|
|
|
|
|
|
/* ignore backward branches and pretend its a nop */
|
|
|
|
if (BranchImmed <= 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* if the opcode 8 bytes before the dest is a J backward than ignore this */
|
|
|
|
BranchImmed = (PC + ((short)RspOp.offset << 2) + 4) & 0xFFC;
|
|
|
|
RSP_LW_IMEM(BranchImmed - 8, &NextOp.Hex);
|
2012-09-25 22:45:39 +00:00
|
|
|
if (RspOp.op == RSP_J && (int)(RspOp.target << 2) < PC) {
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BranchTarget = (PC + ((short)RspOp.offset << 2) + 4) & 0xFFC;
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
case RSP_ADDI:
|
|
|
|
case RSP_ADDIU:
|
|
|
|
case RSP_SLTI:
|
|
|
|
case RSP_SLTIU:
|
|
|
|
case RSP_ANDI:
|
|
|
|
case RSP_ORI:
|
|
|
|
case RSP_XORI:
|
|
|
|
case RSP_LUI:
|
|
|
|
case RSP_CP0:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP2:
|
|
|
|
if ((RspOp.rs & 0x10) != 0) {
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_VECTOR_VMULF:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VMULU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMUDL:
|
|
|
|
case RSP_VECTOR_VMUDM:
|
|
|
|
case RSP_VECTOR_VMUDN:
|
|
|
|
case RSP_VECTOR_VMUDH:
|
|
|
|
case RSP_VECTOR_VMACF:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VMACU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMADL:
|
|
|
|
case RSP_VECTOR_VMADM:
|
|
|
|
case RSP_VECTOR_VMADN:
|
|
|
|
case RSP_VECTOR_VMADH:
|
|
|
|
case RSP_VECTOR_VADD:
|
|
|
|
case RSP_VECTOR_VADDC:
|
|
|
|
case RSP_VECTOR_VSUB:
|
|
|
|
case RSP_VECTOR_VSUBC:
|
|
|
|
case RSP_VECTOR_VAND:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VNAND:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VOR:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VNOR:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VXOR:
|
|
|
|
case RSP_VECTOR_VNXOR:
|
|
|
|
case RSP_VECTOR_VABS:
|
|
|
|
if (DestReg == RspOp.rd) { return TRUE; }
|
|
|
|
if (DestReg == RspOp.rt) { return TRUE; }
|
|
|
|
if (DestReg == RspOp.sa) { return FALSE; }
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VMOV:
|
|
|
|
case RSP_VECTOR_VRCP:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VRCPL:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VRCPH:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VRSQL:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VRSQH:
|
2015-01-25 02:33:34 +00:00
|
|
|
if (DestReg == RspOp.rt) { return TRUE; }
|
|
|
|
break;
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VCH:
|
|
|
|
case RSP_VECTOR_VCL:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VCR:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMRG:
|
|
|
|
case RSP_VECTOR_VLT:
|
|
|
|
case RSP_VECTOR_VEQ:
|
|
|
|
case RSP_VECTOR_VGE:
|
2015-01-25 02:33:34 +00:00
|
|
|
case RSP_VECTOR_VNE:
|
2008-11-14 20:47:53 +00:00
|
|
|
if (DestReg == RspOp.rd) { return TRUE; }
|
|
|
|
if (DestReg == RspOp.rt) { return TRUE; }
|
|
|
|
if (DestReg == RspOp.sa) { return FALSE; }
|
|
|
|
break;
|
|
|
|
case RSP_VECTOR_VSAW:
|
|
|
|
if (DestReg == RspOp.sa) { return FALSE; }
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (RspOp.rs) {
|
|
|
|
case RSP_COP2_CF:
|
|
|
|
case RSP_COP2_CT:
|
|
|
|
break;
|
|
|
|
case RSP_COP2_MT:
|
|
|
|
/* if (DestReg == RspOp.rd) { return FALSE; } */
|
|
|
|
break;
|
|
|
|
case RSP_COP2_MF:
|
|
|
|
if (DestReg == RspOp.rd) { return TRUE; }
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_LB:
|
|
|
|
case RSP_LH:
|
|
|
|
case RSP_LW:
|
|
|
|
case RSP_LBU:
|
|
|
|
case RSP_LHU:
|
|
|
|
case RSP_SB:
|
|
|
|
case RSP_SH:
|
|
|
|
case RSP_SW:
|
|
|
|
break;
|
|
|
|
case RSP_LC2:
|
|
|
|
switch (RspOp.rd) {
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
break;
|
2015-12-01 03:45:43 +00:00
|
|
|
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
if (DestReg == RspOp.rt) { return FALSE; }
|
|
|
|
break;
|
2008-11-14 20:47:53 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SC2:
|
|
|
|
switch (RspOp.rd) {
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
case RSP_LSC2_FV:
|
|
|
|
case RSP_LSC2_WV:
|
|
|
|
if (DestReg == RspOp.rt) { return TRUE; }
|
|
|
|
break;
|
2015-12-01 04:40:01 +00:00
|
|
|
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
if (8 <= 32 - RspOp.rt) {
|
|
|
|
if (DestReg >= RspOp.rt && DestReg <= RspOp.rt + 7) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int length = 32 - RspOp.rt, count, del = RspOp.del >> 1, vect = RspOp.rt;
|
|
|
|
for (count = 0; count < length; count++) {
|
|
|
|
if (DestReg == vect + del) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
del = (del + 1) & 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
switch (Instruction_State) {
|
|
|
|
case NORMAL: break;
|
|
|
|
case DO_DELAY_SLOT:
|
|
|
|
Instruction_State = DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
case DELAY_SLOT:
|
2015-06-19 17:09:24 +00:00
|
|
|
Instruction_State = FINISH_BLOCK;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (Instruction_State != FINISH_BLOCK);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a tricky situation because most of the
|
|
|
|
* microcode does loops, so looping back and checking
|
|
|
|
* can prove effective, but it's still a branch..
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (BranchTarget != 0 && RecursiveCall == FALSE) {
|
|
|
|
DWORD BranchTaken, BranchFall;
|
|
|
|
|
|
|
|
/* analysis of branch taken */
|
|
|
|
BranchTaken = WriteToVectorDest2(DestReg, BranchTarget - 4, TRUE);
|
|
|
|
/* analysis of branch as nop */
|
|
|
|
BranchFall = WriteToVectorDest2(DestReg, PC, TRUE);
|
|
|
|
|
|
|
|
if (BranchImmed < 0) {
|
|
|
|
if (BranchTaken != FALSE) {
|
|
|
|
/*
|
|
|
|
* took this back branch and found a place
|
|
|
|
* that needs this vector as a source
|
|
|
|
*/
|
|
|
|
return TRUE;
|
|
|
|
} else if (BranchFall == HIT_BRANCH) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/* otherwise this is completely valid */
|
|
|
|
return BranchFall;
|
|
|
|
} else {
|
|
|
|
if (BranchFall != FALSE) {
|
|
|
|
/*
|
|
|
|
* took this forward branch and found a place
|
|
|
|
* that needs this vector as a source
|
|
|
|
*/
|
|
|
|
return TRUE;
|
|
|
|
} else if (BranchTaken == HIT_BRANCH) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/* otherwise this is completely valid */
|
|
|
|
return BranchTaken;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WriteToVectorDest (DWORD DestReg, int PC) {
|
|
|
|
DWORD value;
|
|
|
|
value = WriteToVectorDest2(DestReg, PC, FALSE);
|
|
|
|
|
|
|
|
if (value == HIT_BRANCH) {
|
|
|
|
return TRUE; /* ??? */
|
|
|
|
} else
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** UseRspFlags
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: Flags are determined not in use
|
|
|
|
** FALSE: Either unable to determine or are in use
|
|
|
|
**
|
|
|
|
** Input: PC
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
/* TODO: consider delay slots and such in a branch? */
|
|
|
|
BOOL UseRspFlags (int PC) {
|
|
|
|
OPCODE RspOp;
|
|
|
|
int Instruction_State = NextInstruction;
|
|
|
|
|
|
|
|
if (Compiler.bFlags == FALSE) return TRUE;
|
|
|
|
|
|
|
|
if (Instruction_State == DELAY_SLOT) {
|
2015-06-19 17:09:24 +00:00
|
|
|
return TRUE;
|
2008-11-14 20:47:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
PC -= 4;
|
|
|
|
if (PC < 0) { return TRUE; }
|
|
|
|
RSP_LW_IMEM(PC, &RspOp.Hex);
|
|
|
|
|
|
|
|
switch (RspOp.op) {
|
|
|
|
|
|
|
|
case RSP_REGIMM:
|
|
|
|
switch (RspOp.rt) {
|
|
|
|
case RSP_REGIMM_BLTZ:
|
|
|
|
case RSP_REGIMM_BGEZ:
|
|
|
|
case RSP_REGIMM_BLTZAL:
|
|
|
|
case RSP_REGIMM_BGEZAL:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in UseRspFlags\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SPECIAL:
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_SPECIAL_SLL:
|
|
|
|
case RSP_SPECIAL_SRL:
|
|
|
|
case RSP_SPECIAL_SRA:
|
|
|
|
case RSP_SPECIAL_SLLV:
|
|
|
|
case RSP_SPECIAL_SRLV:
|
|
|
|
case RSP_SPECIAL_SRAV:
|
|
|
|
case RSP_SPECIAL_ADD:
|
|
|
|
case RSP_SPECIAL_ADDU:
|
|
|
|
case RSP_SPECIAL_SUB:
|
|
|
|
case RSP_SPECIAL_SUBU:
|
|
|
|
case RSP_SPECIAL_AND:
|
|
|
|
case RSP_SPECIAL_OR:
|
|
|
|
case RSP_SPECIAL_XOR:
|
|
|
|
case RSP_SPECIAL_NOR:
|
|
|
|
case RSP_SPECIAL_SLT:
|
|
|
|
case RSP_SPECIAL_SLTU:
|
|
|
|
case RSP_SPECIAL_BREAK:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SPECIAL_JR:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in WriteToVectorDest\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_J:
|
|
|
|
case RSP_JAL:
|
|
|
|
case RSP_BEQ:
|
|
|
|
case RSP_BNE:
|
|
|
|
case RSP_BLEZ:
|
|
|
|
case RSP_BGTZ:
|
|
|
|
Instruction_State = DO_DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
case RSP_ADDI:
|
|
|
|
case RSP_ADDIU:
|
|
|
|
case RSP_SLTI:
|
|
|
|
case RSP_SLTIU:
|
|
|
|
case RSP_ANDI:
|
|
|
|
case RSP_ORI:
|
|
|
|
case RSP_XORI:
|
|
|
|
case RSP_LUI:
|
|
|
|
case RSP_CP0:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP2:
|
|
|
|
if ((RspOp.rs & 0x10) != 0) {
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_VECTOR_VMULF:
|
2015-02-19 02:34:32 +00:00
|
|
|
case RSP_VECTOR_VMULU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMUDL:
|
|
|
|
case RSP_VECTOR_VMUDM:
|
|
|
|
case RSP_VECTOR_VMUDN:
|
|
|
|
case RSP_VECTOR_VMUDH:
|
|
|
|
break;
|
|
|
|
case RSP_VECTOR_VMACF:
|
2015-02-19 02:34:32 +00:00
|
|
|
case RSP_VECTOR_VMACU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMADL:
|
|
|
|
case RSP_VECTOR_VMADM:
|
|
|
|
case RSP_VECTOR_VMADN:
|
|
|
|
case RSP_VECTOR_VMADH:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VSUB:
|
|
|
|
case RSP_VECTOR_VADD:
|
|
|
|
return FALSE;
|
|
|
|
case RSP_VECTOR_VSUBC:
|
|
|
|
case RSP_VECTOR_VADDC:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VABS:
|
|
|
|
case RSP_VECTOR_VAND:
|
|
|
|
case RSP_VECTOR_VOR:
|
|
|
|
case RSP_VECTOR_VXOR:
|
2015-02-19 02:34:32 +00:00
|
|
|
case RSP_VECTOR_VNAND:
|
|
|
|
case RSP_VECTOR_VNOR:
|
|
|
|
case RSP_VECTOR_VNXOR:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VRCPH:
|
|
|
|
case RSP_VECTOR_VRSQL:
|
|
|
|
case RSP_VECTOR_VRSQH:
|
|
|
|
case RSP_VECTOR_VRCPL:
|
|
|
|
case RSP_VECTOR_VRCP:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VCR:
|
|
|
|
case RSP_VECTOR_VCH:
|
|
|
|
case RSP_VECTOR_VCL:
|
|
|
|
case RSP_VECTOR_VLT:
|
|
|
|
case RSP_VECTOR_VEQ:
|
|
|
|
case RSP_VECTOR_VGE:
|
2015-02-19 02:34:32 +00:00
|
|
|
case RSP_VECTOR_VNE:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMRG:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VSAW:
|
|
|
|
case RSP_VECTOR_VMOV:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in UseRspFlags\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (RspOp.rs) {
|
|
|
|
case RSP_COP2_CT:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_COP2_CF:
|
|
|
|
case RSP_COP2_MT:
|
|
|
|
case RSP_COP2_MF:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in UseRspFlags\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_LB:
|
|
|
|
case RSP_LH:
|
|
|
|
case RSP_LW:
|
|
|
|
case RSP_LBU:
|
|
|
|
case RSP_LHU:
|
|
|
|
case RSP_SB:
|
|
|
|
case RSP_SH:
|
|
|
|
case RSP_SW:
|
|
|
|
break;
|
|
|
|
case RSP_LC2:
|
|
|
|
switch (RspOp.rd) {
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in UseRspFlags\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SC2:
|
|
|
|
switch (RspOp.rd) {
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
case RSP_LSC2_FV:
|
|
|
|
case RSP_LSC2_WV:
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in UseRspFlags\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in UseRspFlags\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
switch (Instruction_State) {
|
|
|
|
case NORMAL: break;
|
|
|
|
case DO_DELAY_SLOT:
|
|
|
|
Instruction_State = DELAY_SLOT;
|
|
|
|
break;
|
|
|
|
case DELAY_SLOT:
|
2015-06-19 17:09:24 +00:00
|
|
|
Instruction_State = FINISH_BLOCK;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while ( Instruction_State != FINISH_BLOCK);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** IsRegisterConstant
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: Register is constant throughout
|
|
|
|
** FALSE: Register is not constant at all
|
|
|
|
**
|
|
|
|
** Input: PC, Pointer to constant to fill
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL IsRegisterConstant (DWORD Reg, DWORD * Constant) {
|
|
|
|
DWORD PC = 0;
|
|
|
|
DWORD References = 0;
|
|
|
|
DWORD Const = 0;
|
|
|
|
OPCODE RspOp;
|
|
|
|
|
|
|
|
if (Compiler.bGPRConstants == FALSE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
while (PC < 0x1000) {
|
|
|
|
|
|
|
|
RSP_LW_IMEM(PC, &RspOp.Hex);
|
|
|
|
|
|
|
|
/* resample command in microcode likes S7 */
|
|
|
|
/* if (PC == 0xFBC) {
|
|
|
|
PC += 4;
|
|
|
|
continue;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
PC += 4;
|
|
|
|
|
|
|
|
switch (RspOp.op) {
|
|
|
|
case RSP_REGIMM:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SPECIAL:
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_SPECIAL_SLL:
|
|
|
|
case RSP_SPECIAL_SRL:
|
|
|
|
case RSP_SPECIAL_SRA:
|
|
|
|
case RSP_SPECIAL_SLLV:
|
|
|
|
case RSP_SPECIAL_SRLV:
|
|
|
|
case RSP_SPECIAL_SRAV:
|
|
|
|
case RSP_SPECIAL_ADD:
|
|
|
|
case RSP_SPECIAL_ADDU:
|
|
|
|
case RSP_SPECIAL_SUB:
|
|
|
|
case RSP_SPECIAL_SUBU:
|
|
|
|
case RSP_SPECIAL_AND:
|
|
|
|
case RSP_SPECIAL_OR:
|
|
|
|
case RSP_SPECIAL_XOR:
|
|
|
|
case RSP_SPECIAL_NOR:
|
|
|
|
case RSP_SPECIAL_SLT:
|
|
|
|
case RSP_SPECIAL_SLTU:
|
|
|
|
if (RspOp.rd == Reg) { return FALSE; }
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SPECIAL_BREAK:
|
|
|
|
case RSP_SPECIAL_JR:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// CompilerWarning("Unkown opcode in IsRegisterConstant\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
// return FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_J:
|
|
|
|
case RSP_JAL:
|
|
|
|
case RSP_BEQ:
|
|
|
|
case RSP_BNE:
|
|
|
|
case RSP_BLEZ:
|
|
|
|
case RSP_BGTZ:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_ADDI:
|
|
|
|
case RSP_ADDIU:
|
|
|
|
if (RspOp.rt == Reg) {
|
|
|
|
if (RspOp.rs == 0) {
|
|
|
|
if (References > 0) {
|
2015-06-19 17:09:24 +00:00
|
|
|
return FALSE;
|
2008-11-14 20:47:53 +00:00
|
|
|
}
|
|
|
|
Const = (short)RspOp.immediate;
|
|
|
|
References++;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_ORI:
|
|
|
|
if (RspOp.rt == Reg) {
|
|
|
|
if (!RspOp.rs) {
|
|
|
|
if (References > 0) { return FALSE; }
|
|
|
|
Const = (WORD)RspOp.immediate;
|
|
|
|
References++;
|
|
|
|
} else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LUI:
|
|
|
|
if (RspOp.rt == Reg) {
|
|
|
|
if (References > 0) { return FALSE; }
|
|
|
|
Const = (short)RspOp.offset << 16;
|
|
|
|
References++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_ANDI:
|
|
|
|
case RSP_XORI:
|
|
|
|
case RSP_SLTI:
|
|
|
|
case RSP_SLTIU:
|
|
|
|
if (RspOp.rt == Reg) { return FALSE; }
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP0:
|
|
|
|
switch (RspOp.rs) {
|
|
|
|
case RSP_COP0_MF:
|
|
|
|
if (RspOp.rt == Reg) { return FALSE; }
|
|
|
|
case RSP_COP0_MT:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP2:
|
|
|
|
if ((RspOp.rs & 0x10) == 0) {
|
|
|
|
switch (RspOp.rs) {
|
|
|
|
case RSP_COP2_CT:
|
|
|
|
case RSP_COP2_MT:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_COP2_CF:
|
|
|
|
case RSP_COP2_MF:
|
|
|
|
if (RspOp.rt == Reg) { return FALSE; }
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// CompilerWarning("Unkown opcode in IsRegisterConstant\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
// return FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LB:
|
|
|
|
case RSP_LH:
|
|
|
|
case RSP_LW:
|
|
|
|
case RSP_LBU:
|
|
|
|
case RSP_LHU:
|
|
|
|
if (RspOp.rt == Reg) { return FALSE; }
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SB:
|
|
|
|
case RSP_SH:
|
|
|
|
case RSP_SW:
|
|
|
|
break;
|
|
|
|
case RSP_LC2:
|
|
|
|
break;
|
|
|
|
case RSP_SC2:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// CompilerWarning("Unkown opcode in IsRegisterConstant\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
// return FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (References > 0) {
|
|
|
|
*Constant = Const;
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
*Constant = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** IsOpcodeBranch
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: opcode is a branch
|
|
|
|
** FALSE: opcode is not a branch
|
|
|
|
**
|
|
|
|
** Input: PC
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL IsOpcodeBranch(DWORD PC, OPCODE RspOp) {
|
2015-01-29 08:57:13 +00:00
|
|
|
|
|
|
|
PC = PC; // unused
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
switch (RspOp.op) {
|
|
|
|
case RSP_REGIMM:
|
|
|
|
switch (RspOp.rt) {
|
|
|
|
case RSP_REGIMM_BLTZ:
|
|
|
|
case RSP_REGIMM_BGEZ:
|
|
|
|
case RSP_REGIMM_BLTZAL:
|
|
|
|
case RSP_REGIMM_BGEZAL:
|
|
|
|
return TRUE;
|
|
|
|
default:
|
|
|
|
//CompilerWarning("Unknown opcode in IsOpcodeBranch\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SPECIAL:
|
|
|
|
switch (RspOp.funct) {
|
|
|
|
case RSP_SPECIAL_SLL:
|
|
|
|
case RSP_SPECIAL_SRL:
|
|
|
|
case RSP_SPECIAL_SRA:
|
|
|
|
case RSP_SPECIAL_SLLV:
|
|
|
|
case RSP_SPECIAL_SRLV:
|
|
|
|
case RSP_SPECIAL_SRAV:
|
|
|
|
case RSP_SPECIAL_ADD:
|
|
|
|
case RSP_SPECIAL_ADDU:
|
|
|
|
case RSP_SPECIAL_SUB:
|
|
|
|
case RSP_SPECIAL_SUBU:
|
|
|
|
case RSP_SPECIAL_AND:
|
|
|
|
case RSP_SPECIAL_OR:
|
|
|
|
case RSP_SPECIAL_XOR:
|
|
|
|
case RSP_SPECIAL_NOR:
|
|
|
|
case RSP_SPECIAL_SLT:
|
|
|
|
case RSP_SPECIAL_SLTU:
|
|
|
|
case RSP_SPECIAL_BREAK:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SPECIAL_JALR:
|
|
|
|
case RSP_SPECIAL_JR:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
//CompilerWarning("Unknown opcode in IsOpcodeBranch\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_J:
|
|
|
|
case RSP_JAL:
|
|
|
|
case RSP_BEQ:
|
|
|
|
case RSP_BNE:
|
|
|
|
case RSP_BLEZ:
|
|
|
|
case RSP_BGTZ:
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
case RSP_ADDI:
|
|
|
|
case RSP_ADDIU:
|
|
|
|
case RSP_SLTI:
|
|
|
|
case RSP_SLTIU:
|
|
|
|
case RSP_ANDI:
|
|
|
|
case RSP_ORI:
|
|
|
|
case RSP_XORI:
|
|
|
|
case RSP_LUI:
|
|
|
|
|
|
|
|
case RSP_CP0:
|
|
|
|
case RSP_CP2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LB:
|
|
|
|
case RSP_LH:
|
|
|
|
case RSP_LW:
|
|
|
|
case RSP_LBU:
|
|
|
|
case RSP_LHU:
|
|
|
|
case RSP_SB:
|
|
|
|
case RSP_SH:
|
|
|
|
case RSP_SW:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LC2:
|
|
|
|
case RSP_SC2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
//CompilerWarning("Unknown opcode in IsOpcodeBranch\n%s",RSPOpcodeName(RspOp.Hex,PC));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** GetInstructionInfo
|
|
|
|
**
|
|
|
|
** Output: None in regard to return value
|
|
|
|
**
|
|
|
|
** Input:
|
|
|
|
** pointer to info structure, fills this
|
|
|
|
** with valid opcode data
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
/* 3 possible values, GPR, VEC, VEC & GPR, NOOP is zero */
|
|
|
|
#define GPR_Instruction 0x0001 /* GPR Instruction flag */
|
|
|
|
#define VEC_Instruction 0x0002 /* Vec Instruction flag */
|
2013-01-29 10:44:59 +00:00
|
|
|
#define COPO_MF_Instruction 0x0080 /* MF Cop 0 Instruction */
|
|
|
|
#define Flag_Instruction 0x0100 /* Access Flags */
|
2008-11-14 20:47:53 +00:00
|
|
|
#define Instruction_Mask (GPR_Instruction | VEC_Instruction)
|
|
|
|
|
|
|
|
/* 3 possible values, one flag must be set only */
|
|
|
|
#define Load_Operation 0x0004 /* Load Instruction flag */
|
|
|
|
#define Store_Operation 0x0008 /* Store Instruction flag */
|
|
|
|
#define Accum_Operation 0x0010 /* Vector op uses accum - loads & stores dont */
|
|
|
|
#define MemOperation_Mask (Load_Operation | Store_Operation)
|
|
|
|
#define Operation_Mask (MemOperation_Mask | Accum_Operation)
|
|
|
|
|
|
|
|
/* Per situation basis flags */
|
|
|
|
#define VEC_ResetAccum 0x0000 /* Vector op resets acc */
|
|
|
|
#define VEC_Accumulate 0x0020 /* Vector op accumulates */
|
|
|
|
|
2015-02-02 20:10:54 +00:00
|
|
|
/* N/A in instruction assembler syntax, possibly an unused register specifier */
|
|
|
|
#define UNUSED_OPERAND ~0u
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
#define InvalidOpcode 0x0040
|
|
|
|
|
2015-01-29 08:57:13 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4201) // nonstandard extension used : nameless struct/union
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
DWORD DestReg;
|
|
|
|
DWORD StoredReg;
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
DWORD SourceReg0;
|
|
|
|
DWORD IndexReg;
|
|
|
|
};
|
|
|
|
DWORD SourceReg1;
|
|
|
|
DWORD flags;
|
|
|
|
} OPCODE_INFO;
|
|
|
|
|
2015-01-29 08:57:13 +00:00
|
|
|
#pragma warning(pop)
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
void GetInstructionInfo(DWORD PC, OPCODE * RspOp, OPCODE_INFO * info) {
|
|
|
|
switch (RspOp->op) {
|
|
|
|
case RSP_REGIMM:
|
|
|
|
switch (RspOp->rt) {
|
|
|
|
case RSP_REGIMM_BLTZ:
|
|
|
|
case RSP_REGIMM_BLTZAL:
|
|
|
|
case RSP_REGIMM_BGEZ:
|
|
|
|
case RSP_REGIMM_BGEZAL:
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
info->SourceReg0 = RspOp->rs;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SPECIAL:
|
|
|
|
switch (RspOp->funct) {
|
|
|
|
case RSP_SPECIAL_BREAK:
|
2015-02-02 20:10:54 +00:00
|
|
|
info->DestReg = UNUSED_OPERAND;
|
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = GPR_Instruction;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SPECIAL_SLL:
|
|
|
|
case RSP_SPECIAL_SRL:
|
|
|
|
case RSP_SPECIAL_SRA:
|
|
|
|
info->DestReg = RspOp->rd;
|
|
|
|
info->SourceReg0 = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = GPR_Instruction;
|
|
|
|
break;
|
|
|
|
case RSP_SPECIAL_SLLV:
|
|
|
|
case RSP_SPECIAL_SRLV:
|
|
|
|
case RSP_SPECIAL_SRAV:
|
|
|
|
case RSP_SPECIAL_ADD:
|
|
|
|
case RSP_SPECIAL_ADDU:
|
|
|
|
case RSP_SPECIAL_SUB:
|
|
|
|
case RSP_SPECIAL_SUBU:
|
|
|
|
case RSP_SPECIAL_AND:
|
|
|
|
case RSP_SPECIAL_OR:
|
|
|
|
case RSP_SPECIAL_XOR:
|
|
|
|
case RSP_SPECIAL_NOR:
|
|
|
|
case RSP_SPECIAL_SLT:
|
|
|
|
case RSP_SPECIAL_SLTU:
|
|
|
|
info->DestReg = RspOp->rd;
|
|
|
|
info->SourceReg0 = RspOp->rs;
|
|
|
|
info->SourceReg1 = RspOp->rt;
|
|
|
|
info->flags = GPR_Instruction;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_SPECIAL_JR:
|
|
|
|
info->flags = InvalidOpcode;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_J:
|
|
|
|
case RSP_JAL:
|
|
|
|
info->flags = InvalidOpcode;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
case RSP_BEQ:
|
|
|
|
case RSP_BNE:
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
info->SourceReg0 = RspOp->rt;
|
|
|
|
info->SourceReg1 = RspOp->rs;
|
|
|
|
break;
|
|
|
|
case RSP_BLEZ:
|
|
|
|
case RSP_BGTZ:
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
info->SourceReg0 = RspOp->rs;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_ADDI:
|
|
|
|
case RSP_ADDIU:
|
|
|
|
case RSP_SLTI:
|
|
|
|
case RSP_SLTIU:
|
|
|
|
case RSP_ANDI:
|
|
|
|
case RSP_ORI:
|
|
|
|
case RSP_XORI:
|
|
|
|
info->DestReg = RspOp->rt;
|
|
|
|
info->SourceReg0 = RspOp->rs;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = GPR_Instruction;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LUI:
|
|
|
|
info->DestReg = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = GPR_Instruction;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP0:
|
|
|
|
switch (RspOp->rs) {
|
|
|
|
case RSP_COP0_MF:
|
|
|
|
info->DestReg = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2015-02-01 01:23:43 +00:00
|
|
|
if (RspOp->rd == 0x4 || RspOp->rd == 0x7){
|
2015-04-15 05:07:45 +00:00
|
|
|
info->flags = InvalidOpcode | COPO_MF_Instruction;
|
2015-02-01 01:23:43 +00:00
|
|
|
} else{
|
|
|
|
info->flags = COPO_MF_Instruction | GPR_Instruction | Load_Operation;
|
|
|
|
}
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_COP0_MT:
|
|
|
|
info->StoredReg = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = GPR_Instruction | Store_Operation;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_CP2:
|
|
|
|
if ((RspOp->rs & 0x10) != 0) {
|
|
|
|
switch (RspOp->funct) {
|
|
|
|
case RSP_VECTOR_VNOOP:
|
2015-02-02 20:10:54 +00:00
|
|
|
info->DestReg = UNUSED_OPERAND;
|
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = VEC_Instruction;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VMULF:
|
2015-01-31 12:35:43 +00:00
|
|
|
case RSP_VECTOR_VMULU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMUDL:
|
|
|
|
case RSP_VECTOR_VMUDM:
|
|
|
|
case RSP_VECTOR_VMUDN:
|
|
|
|
case RSP_VECTOR_VMUDH:
|
2015-01-31 12:35:43 +00:00
|
|
|
case RSP_VECTOR_VABS:
|
|
|
|
case RSP_VECTOR_VAND:
|
|
|
|
case RSP_VECTOR_VOR:
|
|
|
|
case RSP_VECTOR_VXOR:
|
|
|
|
case RSP_VECTOR_VNAND:
|
|
|
|
case RSP_VECTOR_VNOR:
|
|
|
|
case RSP_VECTOR_VNXOR:
|
2008-11-14 20:47:53 +00:00
|
|
|
info->DestReg = RspOp->sa;
|
|
|
|
info->SourceReg0 = RspOp->rd;
|
|
|
|
info->SourceReg1 = RspOp->rt;
|
|
|
|
info->flags = VEC_Instruction | VEC_ResetAccum | Accum_Operation;
|
|
|
|
break;
|
|
|
|
case RSP_VECTOR_VMACF:
|
2015-01-31 12:35:43 +00:00
|
|
|
case RSP_VECTOR_VMACU:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_VECTOR_VMADL:
|
|
|
|
case RSP_VECTOR_VMADM:
|
|
|
|
case RSP_VECTOR_VMADN:
|
|
|
|
case RSP_VECTOR_VMADH:
|
|
|
|
info->DestReg = RspOp->sa;
|
|
|
|
info->SourceReg0 = RspOp->rd;
|
|
|
|
info->SourceReg1 = RspOp->rt;
|
|
|
|
info->flags = VEC_Instruction | VEC_Accumulate | Accum_Operation;
|
|
|
|
break;
|
|
|
|
case RSP_VECTOR_VADD:
|
|
|
|
case RSP_VECTOR_VADDC:
|
|
|
|
case RSP_VECTOR_VSUB:
|
|
|
|
case RSP_VECTOR_VSUBC:
|
|
|
|
case RSP_VECTOR_VCR:
|
|
|
|
case RSP_VECTOR_VCH:
|
|
|
|
case RSP_VECTOR_VCL:
|
|
|
|
case RSP_VECTOR_VLT:
|
|
|
|
case RSP_VECTOR_VEQ:
|
|
|
|
case RSP_VECTOR_VGE:
|
|
|
|
case RSP_VECTOR_VNE:
|
|
|
|
info->DestReg = RspOp->sa;
|
|
|
|
info->SourceReg0 = RspOp->rd;
|
|
|
|
info->SourceReg1 = RspOp->rt;
|
2013-01-29 10:44:59 +00:00
|
|
|
info->flags = VEC_Instruction | VEC_ResetAccum | Accum_Operation | Flag_Instruction;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VMOV:
|
2015-01-31 12:35:43 +00:00
|
|
|
case RSP_VECTOR_VRCP:
|
|
|
|
case RSP_VECTOR_VRCPL:
|
|
|
|
case RSP_VECTOR_VRCPH:
|
|
|
|
case RSP_VECTOR_VRSQL:
|
|
|
|
case RSP_VECTOR_VRSQH:
|
|
|
|
info->DestReg = RspOp->sa;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->SourceReg0 = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2015-01-31 12:35:43 +00:00
|
|
|
info->flags = VEC_Instruction | VEC_ResetAccum | Accum_Operation; /* Assume reset? */
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VMRG:
|
2015-01-31 12:35:43 +00:00
|
|
|
info->DestReg = RspOp->sa;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->SourceReg0 = RspOp->rt;
|
|
|
|
info->SourceReg1 = RspOp->rd;
|
2015-01-31 12:35:43 +00:00
|
|
|
info->flags = VEC_Instruction | VEC_ResetAccum | Accum_Operation | Flag_Instruction; /* Assum reset? */
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_VECTOR_VSAW:
|
|
|
|
// info->flags = InvalidOpcode;
|
|
|
|
info->DestReg = RspOp->sa;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = VEC_Instruction | Accum_Operation | VEC_Accumulate;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch (RspOp->rs) {
|
|
|
|
case RSP_COP2_CT:
|
|
|
|
info->StoredReg = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2013-01-29 10:44:59 +00:00
|
|
|
info->flags = GPR_Instruction | Store_Operation | Flag_Instruction;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
case RSP_COP2_CF:
|
|
|
|
info->DestReg = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg0 = UNUSED_OPERAND;
|
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2013-01-29 10:44:59 +00:00
|
|
|
info->flags = GPR_Instruction | Load_Operation | Flag_Instruction;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* RD is always the vector register, RT is always GPR */
|
|
|
|
case RSP_COP2_MT:
|
|
|
|
info->DestReg = RspOp->rd;
|
|
|
|
info->SourceReg0 = RspOp->rt;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = VEC_Instruction | GPR_Instruction | Load_Operation;
|
|
|
|
break;
|
|
|
|
case RSP_COP2_MF:
|
|
|
|
info->DestReg = RspOp->rt;
|
|
|
|
info->SourceReg0 = RspOp->rd;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = VEC_Instruction | GPR_Instruction | Store_Operation;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_LB:
|
|
|
|
case RSP_LH:
|
|
|
|
case RSP_LW:
|
|
|
|
case RSP_LBU:
|
|
|
|
case RSP_LHU:
|
|
|
|
info->DestReg = RspOp->rt;
|
|
|
|
info->IndexReg = RspOp->base;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = Load_Operation | GPR_Instruction;
|
|
|
|
break;
|
|
|
|
case RSP_SB:
|
|
|
|
case RSP_SH:
|
|
|
|
case RSP_SW:
|
|
|
|
info->StoredReg = RspOp->rt;
|
|
|
|
info->IndexReg = RspOp->base;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2015-06-19 17:09:24 +00:00
|
|
|
info->flags = Store_Operation | GPR_Instruction;
|
2008-11-14 20:47:53 +00:00
|
|
|
break;
|
|
|
|
case RSP_LC2:
|
|
|
|
switch (RspOp->rd) {
|
2013-01-29 10:44:59 +00:00
|
|
|
case RSP_LSC2_BV:
|
2008-11-14 20:47:53 +00:00
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
info->DestReg = RspOp->rt;
|
|
|
|
info->IndexReg = RspOp->base;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = Load_Operation | VEC_Instruction;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case RSP_SC2:
|
|
|
|
switch (RspOp->rd) {
|
|
|
|
case RSP_LSC2_BV:
|
|
|
|
case RSP_LSC2_SV:
|
|
|
|
case RSP_LSC2_LV:
|
|
|
|
case RSP_LSC2_DV:
|
|
|
|
case RSP_LSC2_QV:
|
|
|
|
case RSP_LSC2_RV:
|
|
|
|
case RSP_LSC2_PV:
|
|
|
|
case RSP_LSC2_UV:
|
|
|
|
case RSP_LSC2_HV:
|
|
|
|
case RSP_LSC2_FV:
|
|
|
|
case RSP_LSC2_WV:
|
|
|
|
info->DestReg = RspOp->rt;
|
|
|
|
info->IndexReg = RspOp->base;
|
2015-02-02 20:10:54 +00:00
|
|
|
info->SourceReg1 = UNUSED_OPERAND;
|
2008-11-14 20:47:53 +00:00
|
|
|
info->flags = Store_Operation | VEC_Instruction;
|
|
|
|
break;
|
|
|
|
case RSP_LSC2_TV:
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* CompilerWarning("Unkown opcode in GetInstructionInfo\n%s",RSPOpcodeName(RspOp->Hex,PC));
|
|
|
|
*/ info->flags = InvalidOpcode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** DelaySlotAffectBranch
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: Delay slot does affect the branch
|
|
|
|
** FALSE: Registers do not affect each other
|
|
|
|
**
|
|
|
|
** Input: PC
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL DelaySlotAffectBranch(DWORD PC) {
|
|
|
|
OPCODE Branch, Delay;
|
|
|
|
OPCODE_INFO infoBranch, infoDelay;
|
|
|
|
|
|
|
|
if (IsOpcodeNop(PC + 4) == TRUE) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RSP_LW_IMEM(PC, &Branch.Hex);
|
|
|
|
RSP_LW_IMEM(PC+4, &Delay.Hex);
|
|
|
|
|
|
|
|
memset(&infoDelay,0,sizeof(infoDelay));
|
|
|
|
memset(&infoBranch,0,sizeof(infoBranch));
|
|
|
|
|
|
|
|
GetInstructionInfo(PC, &Branch, &infoBranch);
|
|
|
|
GetInstructionInfo(PC+4, &Delay, &infoDelay);
|
|
|
|
|
2013-01-29 10:44:59 +00:00
|
|
|
if ((infoDelay.flags & COPO_MF_Instruction) == COPO_MF_Instruction) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
if ((infoDelay.flags & Instruction_Mask) == VEC_Instruction) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (infoBranch.SourceReg0 == infoDelay.DestReg) { return TRUE; }
|
|
|
|
if (infoBranch.SourceReg1 == infoDelay.DestReg) { return TRUE; }
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
** CompareInstructions
|
|
|
|
**
|
|
|
|
** Output:
|
|
|
|
** TRUE: The opcodes are fine, no dependency
|
|
|
|
** FALSE: Watch it, these ops cant be touched
|
|
|
|
**
|
|
|
|
** Input:
|
|
|
|
** Top, not the current operation, the one above
|
|
|
|
** Bottom: the current opcode for re-ordering bubble style
|
|
|
|
*************************************************************/
|
|
|
|
|
|
|
|
BOOL CompareInstructions(DWORD PC, OPCODE * Top, OPCODE * Bottom) {
|
|
|
|
|
|
|
|
OPCODE_INFO info0, info1;
|
|
|
|
DWORD InstructionType;
|
|
|
|
|
|
|
|
GetInstructionInfo(PC - 4, Top, &info0);
|
|
|
|
GetInstructionInfo(PC, Bottom, &info1);
|
|
|
|
|
2015-01-24 21:07:38 +00:00
|
|
|
#ifdef COMPARE_INSTRUCTIONS_VERBOSE
|
|
|
|
CPU_Message("Comparing %s (%X)", RSPOpcodeName ( Top->Hex, PC - 4 ), PC - 4);
|
|
|
|
CPU_Message("to %s (%X)", RSPOpcodeName ( Bottom->Hex, PC), PC);
|
|
|
|
#endif
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
/* usually branches and such */
|
|
|
|
if ((info0.flags & InvalidOpcode) != 0) return FALSE;
|
|
|
|
if ((info1.flags & InvalidOpcode) != 0) return FALSE;
|
|
|
|
|
2013-01-29 10:44:59 +00:00
|
|
|
if ((info0.flags & Flag_Instruction) != 0 && (info1.flags & Flag_Instruction) != 0) return FALSE;
|
|
|
|
|
2008-11-14 20:47:53 +00:00
|
|
|
InstructionType = (info0.flags & Instruction_Mask) << 2;
|
|
|
|
InstructionType |= info1.flags & Instruction_Mask;
|
|
|
|
InstructionType &= 0x0F; /* Paranoia */
|
|
|
|
|
|
|
|
/* 4 bit range, 16 possible combinations */
|
|
|
|
switch (InstructionType) {
|
|
|
|
/*
|
|
|
|
** Detect noop instruction, 7 cases, (see flags) */
|
|
|
|
case 0x01: case 0x02: case 0x03: /* First is a noop */
|
|
|
|
return TRUE;
|
|
|
|
case 0x00: /* Both ??? */
|
|
|
|
case 0x10: case 0x20: case 0x30: /* Second is a noop */
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
case 0x06: /* GPR than Vector - 01,10 */
|
|
|
|
if ((info0.flags & MemOperation_Mask) != 0 && (info1.flags & MemOperation_Mask) != 0) {
|
|
|
|
/* TODO: We have a vector & GPR memory operation */
|
|
|
|
return FALSE;
|
|
|
|
} else if ((info1.flags & MemOperation_Mask) != 0) {
|
|
|
|
/* We have a vector memory operation */
|
|
|
|
return (info1.IndexReg == info0.DestReg) ? FALSE : TRUE;
|
|
|
|
}
|
2015-01-29 08:57:13 +00:00
|
|
|
/* We could have memory or normal gpr instruction here
|
|
|
|
** paired with some kind of vector operation
|
|
|
|
*/
|
|
|
|
return TRUE;
|
2008-11-14 20:47:53 +00:00
|
|
|
case 0x0A: /* Vector than Vector - 10,10 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Check for Vector Store than Vector multiply (VMULF)
|
|
|
|
**
|
|
|
|
** This basically gives preferences to putting stores
|
|
|
|
** as close to the finish of an operation as possible
|
|
|
|
*/
|
|
|
|
if ((info0.flags & Store_Operation) != 0 && (info1.flags & Accum_Operation) != 0
|
|
|
|
&& !(info1.flags & VEC_Accumulate)) { return FALSE; }
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Look for loads and than some kind of vector operation
|
|
|
|
** that does no accumulating, there is no reason to reorder
|
|
|
|
*/
|
|
|
|
if ((info0.flags & Load_Operation) != 0 && (info1.flags & Accum_Operation) != 0
|
|
|
|
&& !(info1.flags & VEC_Accumulate)) { return FALSE; }
|
|
|
|
|
|
|
|
if ((info0.flags & MemOperation_Mask) != 0 && (info1.flags & MemOperation_Mask) != 0) {
|
|
|
|
/*
|
|
|
|
** TODO: This is a bitch, its best to leave it alone
|
|
|
|
**/
|
|
|
|
return FALSE;
|
|
|
|
} else if ((info1.flags & MemOperation_Mask) != 0) {
|
|
|
|
/* Remember stored reg & loaded reg are the same */
|
|
|
|
if (info0.DestReg == info1.DestReg) { return FALSE; }
|
|
|
|
|
|
|
|
if (info1.flags & Load_Operation) {
|
|
|
|
if (info0.SourceReg0 == info1.DestReg) { return FALSE; }
|
|
|
|
if (info0.SourceReg1 == info1.DestReg) { return FALSE; }
|
|
|
|
} else if (info1.flags & Store_Operation) {
|
|
|
|
/* It can store source regs */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
} else if ((info0.flags & MemOperation_Mask) != 0) {
|
|
|
|
/* Remember stored reg & loaded reg are the same */
|
|
|
|
if (info0.DestReg == info1.DestReg) { return FALSE; }
|
|
|
|
|
|
|
|
if (info0.flags & Load_Operation) {
|
|
|
|
if (info1.SourceReg0 == info0.DestReg) { return FALSE; }
|
|
|
|
if (info1.SourceReg1 == info0.DestReg) { return FALSE; }
|
|
|
|
} else if (info0.flags & Store_Operation) {
|
|
|
|
/* It can store source regs */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
} else if ((info0.flags & VEC_Accumulate) != 0) {
|
|
|
|
/*
|
|
|
|
** Example:
|
|
|
|
** VMACF
|
|
|
|
** VMUDH or VMADH or VADD
|
|
|
|
*/
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
} else if ((info1.flags & VEC_Accumulate) != 0) {
|
|
|
|
/*
|
|
|
|
** Example:
|
|
|
|
** VMULF
|
|
|
|
** VMADH
|
|
|
|
*/
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
** Example:
|
|
|
|
** VMULF or VADDC
|
|
|
|
** VADD or VMUDH
|
|
|
|
*/
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 0x09: /* Vector than GPR - 10,01 */
|
|
|
|
/**********
|
|
|
|
** this is where the bias comes into play, otherwise
|
|
|
|
** we can sit here all day swapping these 2 types
|
|
|
|
***********/
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
case 0x05: /* GPR than GPR - 01,01 */
|
|
|
|
case 0x07: /* GPR than Cop2 - 01, 11 */
|
|
|
|
case 0x0D: /* Cop2 than GPR - 11, 01 */
|
|
|
|
case 0x0F: /* Cop2 than Cop2 - 11, 11 */
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
case 0x0B: /* Vector than Cop2 - 10, 11 */
|
|
|
|
if (info1.flags & Load_Operation) {
|
|
|
|
/* Move To Cop2 (dest) from GPR (source) */
|
|
|
|
if (info1.DestReg == info0.DestReg) { return FALSE; }
|
|
|
|
if (info1.DestReg == info0.SourceReg0) { return FALSE; }
|
|
|
|
if (info1.DestReg == info0.SourceReg1) { return FALSE; }
|
|
|
|
} else if (info1.flags & Store_Operation) {
|
|
|
|
/* Move From Cop2 (source) to GPR (dest) */
|
|
|
|
if (info1.SourceReg0 == info0.DestReg) { return FALSE; }
|
|
|
|
if (info1.SourceReg0 == info0.SourceReg0) { return FALSE; }
|
|
|
|
if (info1.SourceReg0 == info0.SourceReg1) { return FALSE; }
|
|
|
|
} else {
|
|
|
|
CompilerWarning("ReOrder: Unhandled Vector than Cop2");
|
|
|
|
}
|
|
|
|
// we want vectors on top
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
case 0x0E: /* Cop2 than Vector - 11, 10 */
|
|
|
|
if (info0.flags & Load_Operation) {
|
|
|
|
/* Move To Cop2 (dest) from GPR (source) */
|
|
|
|
if (info0.DestReg == info1.DestReg) { return FALSE; }
|
|
|
|
if (info0.DestReg == info1.SourceReg0) { return FALSE; }
|
|
|
|
if (info0.DestReg == info1.SourceReg1) { return FALSE; }
|
|
|
|
} else if (info0.flags & Store_Operation) {
|
|
|
|
/* Move From Cop2 (source) to GPR (dest) */
|
|
|
|
if (info0.SourceReg0 == info1.DestReg) { return FALSE; }
|
|
|
|
if (info0.SourceReg0 == info1.SourceReg0) { return FALSE; }
|
|
|
|
if (info0.SourceReg0 == info1.SourceReg1) { return FALSE; }
|
2015-01-24 21:07:38 +00:00
|
|
|
if (info0.DestReg == info1.SourceReg0) { return FALSE; }
|
2008-11-14 20:47:53 +00:00
|
|
|
} else {
|
|
|
|
CompilerWarning("ReOrder: Unhandled Cop2 than Vector");
|
|
|
|
}
|
|
|
|
// we want this at the top
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CompilerWarning("ReOrder: Unhandled instruction type: %i", InstructionType);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|