mirror of https://github.com/PCSX2/pcsx2.git
Assorted cleanup. A few compilation errors went away, a few useless variables are gone, a few if statements are now case statements. Added comments on a few potential problem areas.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@904 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
ebcedccf23
commit
7744205a58
|
@ -87,6 +87,7 @@ typedef unsigned int uint;
|
|||
#define PCSX2_ALIGNED16_EXTERN(x) extern __declspec(align(16)) x
|
||||
|
||||
#define __naked __declspec(naked)
|
||||
#define __unused /*unused*/
|
||||
#define CALLBACK __stdcall
|
||||
|
||||
#else // _MSC_VER
|
||||
|
|
|
@ -349,7 +349,7 @@ namespace Exception
|
|||
StateLoadError_Recoverable( fmt_string( "Unknown or unsupported savestate version: 0x%x", version ) )
|
||||
{}
|
||||
|
||||
explicit UnsupportedStateVersion( int version, const std::string& msg ) :
|
||||
explicit UnsupportedStateVersion( __unused int version, const std::string& msg ) :
|
||||
StateLoadError_Recoverable( msg ) {}
|
||||
};
|
||||
|
||||
|
|
|
@ -1139,7 +1139,7 @@ int __fastcall getBits(u8 *address, u32 size, u32 advance)
|
|||
{
|
||||
register u32 mask = 0, shift = 0, howmuch;
|
||||
u8* oldbits, *oldaddr = address;
|
||||
u32 pointer = 0;
|
||||
u32 pointer = 0, temp;
|
||||
|
||||
// Check if the current BP has exceeded or reached the limit of 128
|
||||
if (FillInternalBuffer(&g_BP.BP, 1, 8) < 8) return 0;
|
||||
|
@ -1159,7 +1159,8 @@ int __fastcall getBits(u8 *address, u32 size, u32 advance)
|
|||
shift = 8;
|
||||
}
|
||||
|
||||
howmuch = min(min(8 - (pointer & 7), 128 - pointer), min(size, shift));
|
||||
temp = shift; // Lets not pass a register to min.
|
||||
howmuch = min(min(8 - (pointer & 7), 128 - pointer), min(size, temp));
|
||||
|
||||
if (FillInternalBuffer(&pointer, advance, 8) < 8)
|
||||
{
|
||||
|
|
|
@ -157,8 +157,7 @@ struct decoder_t {
|
|||
};
|
||||
|
||||
extern void (__fastcall *mpeg2_idct_copy) (s16 * block, u8* dest, int stride);
|
||||
extern void (__fastcall *mpeg2_idct_add) (int last, s16 * block,
|
||||
/*u8*/s16* dest, int stride);
|
||||
extern void (__fastcall *mpeg2_idct_add) (int last, s16 * block, s16* dest, int stride);
|
||||
|
||||
#define IDEC 0
|
||||
#define BDEC 1
|
||||
|
@ -188,11 +187,6 @@ void mpeg2_idct_init ();
|
|||
#define BigEndian(out, in) out = _byteswap_ulong(in)
|
||||
#else
|
||||
#define BigEndian(out, in) out = __builtin_bswap32(in) // or we could use the asm function bswap...
|
||||
// No need to reimplement something already in the compiler.
|
||||
//#define BigEndian(out, in) \
|
||||
// out = (((((in) >> 24) & 0xFF) << 0) + ((((in) >> 16) & 0xFF) << 8) + \
|
||||
// ((((in) >> 8) & 0xFF) << 16) + ((((in) >> 0) & 0xFF) << 24));
|
||||
|
||||
#endif
|
||||
|
||||
#endif//__MPEG_H__
|
||||
|
|
|
@ -251,7 +251,5 @@ void OnConf_Cpu(GtkMenuItem *menuitem, gpointer user_data);
|
|||
void OnConf_Conf(GtkMenuItem *menuitem, gpointer user_data);
|
||||
void SetActiveComboItem(GtkComboBox *widget, char plist[255][255], GList *list, char *conf);
|
||||
void SetComboToGList(GtkComboBox *widget, GList *list);
|
||||
static void ConfPlugin(PluginConf confs, char* plugin, const char* name);
|
||||
static void TestPlugin(PluginConf confs, char* plugin, const char* name);
|
||||
|
||||
#endif // __CONFIGDLG_H__
|
|
@ -45,9 +45,6 @@ static const uptr m_pagemask = getpagesize()-1;
|
|||
// Linux implementation of SIGSEGV handler. Bind it using sigaction().
|
||||
void SysPageFaultExceptionFilter( int signal, siginfo_t *info, void * )
|
||||
{
|
||||
int err;
|
||||
|
||||
//DevCon::Error("SysPageFaultExceptionFilter!");
|
||||
// get bad virtual address
|
||||
uptr offset = (u8*)info->si_addr - psM;
|
||||
|
||||
|
@ -420,9 +417,6 @@ namespace HostGui
|
|||
|
||||
void ResetMenuSlots()
|
||||
{
|
||||
GtkWidget *Item;
|
||||
char str[g_MaxPath], str2[g_MaxPath];
|
||||
|
||||
for (int i = 0; i < 5; i++)
|
||||
{
|
||||
Slots[i] = States_isSlotUsed(i);
|
||||
|
@ -456,15 +450,7 @@ void __fastcall KeyEvent(keyEvent* ev)
|
|||
|
||||
if (ev == NULL) return;
|
||||
|
||||
if (ev->evt == KEYRELEASE)
|
||||
{
|
||||
if (SHIFT_EVT(ev->key)) keymod->shift = FALSE;
|
||||
if (CTRL_EVT(ev->key)) keymod->control = FALSE;
|
||||
if (ALT_EVT(ev->key)) keymod->alt = FALSE;
|
||||
if (CAPS_LOCK_EVT(ev->key)) keymod->capslock = FALSE;
|
||||
GSkeyEvent(ev);
|
||||
return;
|
||||
}
|
||||
if (GSkeyEvent != NULL) GSkeyEvent(ev);
|
||||
|
||||
if (ev->evt == KEYPRESS)
|
||||
{
|
||||
|
@ -537,7 +523,15 @@ void __fastcall KeyEvent(keyEvent* ev)
|
|||
break;
|
||||
}
|
||||
}
|
||||
else if (ev->evt == KEYRELEASE)
|
||||
{
|
||||
if (SHIFT_EVT(ev->key)) keymod->shift = FALSE;
|
||||
if (CTRL_EVT(ev->key)) keymod->control = FALSE;
|
||||
if (ALT_EVT(ev->key)) keymod->alt = FALSE;
|
||||
if (CAPS_LOCK_EVT(ev->key)) keymod->capslock = FALSE;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ extern u8 *psS; //0.015 mb, scratch pad
|
|||
extern u8 g_RealGSMem[Ps2MemSize::GSregs];
|
||||
#define PS2MEM_GS g_RealGSMem
|
||||
|
||||
#define PSM(mem) (vtlb_GetPhyPtr(mem&0x1fffffff)) //pcsx2 is a competition.The one with most hacks wins :D
|
||||
#define PSM(mem) (vtlb_GetPhyPtr((mem)&0x1fffffff)) //pcsx2 is a competition.The one with most hacks wins :D
|
||||
|
||||
#define psMs8(mem) (*(s8 *)&PS2MEM_BASE[(mem) & 0x1ffffff])
|
||||
#define psMs16(mem) (*(s16*)&PS2MEM_BASE[(mem) & 0x1ffffff])
|
||||
|
|
|
@ -495,8 +495,7 @@ void ProcessFKeys(int fkey, struct KeyModifiers *keymod)
|
|||
{
|
||||
assert(fkey >= 1 && fkey <= 12 );
|
||||
|
||||
switch(fkey)
|
||||
{
|
||||
switch(fkey) {
|
||||
case 1:
|
||||
try
|
||||
{
|
||||
|
@ -570,8 +569,7 @@ void ProcessFKeys(int fkey, struct KeyModifiers *keymod)
|
|||
break;
|
||||
|
||||
case 9: //gsdx "on the fly" renderer switching
|
||||
if (!renderswitch)
|
||||
{
|
||||
if (!renderswitch) {
|
||||
StateRecovery::MakeGsOnly();
|
||||
g_EmulationInProgress = false;
|
||||
CloseGS();
|
||||
|
@ -579,8 +577,7 @@ void ProcessFKeys(int fkey, struct KeyModifiers *keymod)
|
|||
StateRecovery::Recover();
|
||||
HostGui::BeginExecution(); //also sets g_EmulationInProgress to true later
|
||||
}
|
||||
else
|
||||
{
|
||||
else {
|
||||
StateRecovery::MakeGsOnly();
|
||||
g_EmulationInProgress = false;
|
||||
CloseGS();
|
||||
|
@ -602,33 +599,30 @@ void ProcessFKeys(int fkey, struct KeyModifiers *keymod)
|
|||
GSprintf(10,"Logging Disabled.");
|
||||
|
||||
break;
|
||||
|
||||
case 11:
|
||||
if( mtgsThread != NULL )
|
||||
{
|
||||
if( mtgsThread != NULL ) {
|
||||
Console::Notice( "Cannot make gsstates in MTGS mode" );
|
||||
}
|
||||
else
|
||||
{
|
||||
string Text;
|
||||
if( strgametitle[0] != 0 )
|
||||
{
|
||||
if( strgametitle[0] != 0 ) {
|
||||
// only take the first two words
|
||||
char name[256], *tok;
|
||||
string gsText;
|
||||
|
||||
tok = strtok(strgametitle, " ");
|
||||
sprintf(name, "%s_", mystrlwr(tok));
|
||||
|
||||
tok = strtok(NULL, " ");
|
||||
if( tok != NULL ) strcat(name, tok);
|
||||
|
||||
|
||||
ssprintf( gsText, "%s.%d.gs", name, StatesC);
|
||||
Text = Path::Combine( SSTATES_DIR, gsText );
|
||||
}
|
||||
else
|
||||
{
|
||||
Text = GetGSStateFilename();
|
||||
}
|
||||
|
||||
SaveGSState(Text);
|
||||
}
|
||||
|
@ -636,22 +630,20 @@ void ProcessFKeys(int fkey, struct KeyModifiers *keymod)
|
|||
#endif
|
||||
|
||||
case 12:
|
||||
if( keymod->shift )
|
||||
{
|
||||
if( keymod->shift ) {
|
||||
#ifdef PCSX2_DEVBUILD
|
||||
iDumpRegisters(cpuRegs.pc, 0);
|
||||
Console::Notice("hardware registers dumped EE:%x, IOP:%x\n", params cpuRegs.pc, psxRegs.pc);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
{
|
||||
else {
|
||||
g_Pcsx2Recording ^= 1;
|
||||
|
||||
if( mtgsThread != NULL )
|
||||
if( mtgsThread != NULL ) {
|
||||
mtgsThread->SendSimplePacket(GS_RINGTYPE_RECORD, g_Pcsx2Recording, 0, 0);
|
||||
else if( GSsetupRecording != NULL )
|
||||
GSsetupRecording(g_Pcsx2Recording, NULL);
|
||||
|
||||
}
|
||||
else {
|
||||
if( GSsetupRecording != NULL ) GSsetupRecording(g_Pcsx2Recording, NULL);
|
||||
}
|
||||
if( SPU2setupRecording != NULL ) SPU2setupRecording(g_Pcsx2Recording, NULL);
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -611,7 +611,8 @@ void inifile_read( const char * name )
|
|||
{
|
||||
// stop at the first . since we only want to update the hex
|
||||
if( *pstart == '.' ) break;
|
||||
*pstart++ = toupper(*pstart);
|
||||
*pstart = toupper(*pstart);
|
||||
*pstart++;
|
||||
}
|
||||
|
||||
f1 = fopen(buffer, "rt");
|
||||
|
|
|
@ -1319,8 +1319,10 @@ void _vuOPMSUB(VURegs * VU) {
|
|||
VECTOR * dst;
|
||||
float ftx, fty, ftz;
|
||||
float fsx, fsy, fsz;
|
||||
if (_Fd_ == 0) dst = &RDzero;
|
||||
else dst = &VU->VF[_Fd_];
|
||||
if (_Fd_ == 0)
|
||||
dst = &RDzero;
|
||||
else
|
||||
dst = &VU->VF[_Fd_];
|
||||
|
||||
ftx = vuDouble(VU->VF[_Ft_].i.x); fty = vuDouble(VU->VF[_Ft_].i.y); ftz = vuDouble(VU->VF[_Ft_].i.z);
|
||||
fsx = vuDouble(VU->VF[_Fs_].i.x); fsy = vuDouble(VU->VF[_Fs_].i.y); fsz = vuDouble(VU->VF[_Fs_].i.z);
|
||||
|
@ -1431,7 +1433,6 @@ void _vuDIV(VURegs * VU) {
|
|||
float ft = vuDouble(VU->VF[_Ft_].UL[_Ftf_]);
|
||||
float fs = vuDouble(VU->VF[_Fs_].UL[_Fsf_]);
|
||||
|
||||
// _vuFMACTestStall(VU, _Fs_); _vuFMACTestStall(VU, _Ft_);
|
||||
VU->statusflag = (VU->statusflag&0xfcf)|((VU->statusflag&0x30)<<6);
|
||||
|
||||
if (ft == 0.0) {
|
||||
|
@ -1455,16 +1456,13 @@ void _vuDIV(VURegs * VU) {
|
|||
void _vuSQRT(VURegs * VU) {
|
||||
float ft = vuDouble(VU->VF[_Ft_].UL[_Ftf_]);
|
||||
|
||||
// _vuFMACTestStall(VU, _Ft_);
|
||||
VU->statusflag = (VU->statusflag&0xfcf)|((VU->statusflag&0x30)<<6);
|
||||
|
||||
if (ft < 0.0 )
|
||||
VU->statusflag |= 0x10;
|
||||
if (ft < 0.0 ) VU->statusflag |= 0x10;
|
||||
VU->q.F = sqrt(fabs(ft));
|
||||
VU->q.F = vuDouble(VU->q.UL);
|
||||
} //last update 15/01/06 zerofrog
|
||||
|
||||
|
||||
/* Eminent Bug - Dvisior == 0 Check Missing ( D Flag Not Set ) */
|
||||
/* REFIXED....ASADR; rerefixed....zerofrog */
|
||||
void _vuRSQRT(VURegs * VU) {
|
||||
|
@ -1472,7 +1470,6 @@ void _vuRSQRT(VURegs * VU) {
|
|||
float fs = vuDouble(VU->VF[_Fs_].UL[_Fsf_]);
|
||||
float temp;
|
||||
|
||||
// _vuFMACTestStall(VU, _Fs_); _vuFMACTestStall(VU, _Ft_);
|
||||
VU->statusflag = (VU->statusflag&0xfcf)|((VU->statusflag&0x30)<<6);
|
||||
|
||||
if ( ft == 0.0 ) {
|
||||
|
@ -1508,7 +1505,6 @@ void _vuRSQRT(VURegs * VU) {
|
|||
}
|
||||
} //last update 15/01/06 zerofrog
|
||||
|
||||
|
||||
void _vuIADDI(VURegs * VU) {
|
||||
s16 imm = ((VU->code >> 6) & 0x1f);
|
||||
imm = ((imm & 0x10 ? 0xfff0 : 0) | (imm & 0xf));
|
||||
|
@ -1735,7 +1731,6 @@ As an example for setting the polynomial variable correctly, the 23-bit M-series
|
|||
would be specified as (1 << 14).
|
||||
*/
|
||||
|
||||
|
||||
//The two-tap 23 stage M-series polynomials are x23+x18 and x23+x14 ((1 << 18) and (1 << 14), respectively).
|
||||
//The reverse sequences can be generated by x23+x(23-18) and x23+x(23-14) ((1 << 9) and (1 << 5), respectively)
|
||||
u32 poly = 1 << 5;
|
||||
|
@ -1745,23 +1740,13 @@ void SetPoly(u32 newPoly) {
|
|||
}
|
||||
|
||||
void AdvanceLFSR(VURegs * VU) {
|
||||
// code from www.project-fao.org
|
||||
// code from www.project-fao.org (which is no longer there)
|
||||
int x = (VU->VI[REG_R].UL >> 4) & 1;
|
||||
int y = (VU->VI[REG_R].UL >> 22) & 1;
|
||||
VU->VI[REG_R].UL <<= 1;
|
||||
VU->VI[REG_R].UL ^= x ^ y;
|
||||
VU->VI[REG_R].UL = (VU->VI[REG_R].UL&0x7fffff)|0x3f800000;
|
||||
}
|
||||
// old
|
||||
// u32 lfsr = VU->VI[REG_R].UL & 0x007FFFFF;
|
||||
// u32 oldlfsr = lfsr;
|
||||
// lfsr <<= 1;
|
||||
// if (oldlfsr & 0x00400000) {
|
||||
// lfsr ^= poly;
|
||||
// lfsr |= 1;
|
||||
// }
|
||||
//
|
||||
// VU->VI[REG_R].UL = 0x3F800000 | (lfsr & 0x007FFFFF);
|
||||
|
||||
void _vuRINIT(VURegs * VU) {
|
||||
VU->VI[REG_R].UL = 0x3F800000 | (VU->VF[_Fs_].UL[_Fsf_] & 0x007FFFFF);
|
||||
|
@ -1864,7 +1849,6 @@ void _vuFCGET(VURegs * VU) {
|
|||
|
||||
s32 _branchAddr(VURegs * VU) {
|
||||
s32 bpc = VU->VI[REG_TPC].SL + ( _Imm11_ * 8 );
|
||||
//if (bpc < 0) bpc = VU->VI[REG_TPC].SL + _UImm11_ * 8;
|
||||
bpc&= (VU == &VU1) ? 0x3fff : 0x0fff;
|
||||
return bpc;
|
||||
}
|
||||
|
@ -1872,8 +1856,6 @@ s32 _branchAddr(VURegs * VU) {
|
|||
void _setBranch(VURegs * VU, u32 bpc) {
|
||||
VU->branch = 2;
|
||||
VU->branchpc = bpc;
|
||||
// VU->vuExec(VU);
|
||||
// VU->VI[REG_TPC].UL = bpc;
|
||||
}
|
||||
|
||||
void _vuIBEQ(VURegs * VU) {
|
||||
|
@ -1926,9 +1908,7 @@ void _vuB(VURegs * VU) {
|
|||
void _vuBAL(VURegs * VU) {
|
||||
s32 bpc = _branchAddr(VU);
|
||||
|
||||
if (_Ft_) {
|
||||
VU->VI[_Ft_].US[0] = (VU->VI[REG_TPC].UL + 8)/8;
|
||||
}
|
||||
if (_Ft_) VU->VI[_Ft_].US[0] = (VU->VI[REG_TPC].UL + 8)/8;
|
||||
|
||||
_setBranch(VU, bpc);
|
||||
}
|
||||
|
@ -1940,9 +1920,7 @@ void _vuJR(VURegs * VU) {
|
|||
|
||||
void _vuJALR(VURegs * VU) {
|
||||
u32 bpc = VU->VI[_Fs_].US[0] * 8;
|
||||
if (_Ft_) {
|
||||
VU->VI[_Ft_].US[0] = (VU->VI[REG_TPC].UL + 8)/8;
|
||||
}
|
||||
if (_Ft_) VU->VI[_Ft_].US[0] = (VU->VI[REG_TPC].UL + 8)/8;
|
||||
|
||||
_setBranch(VU, bpc);
|
||||
}
|
||||
|
@ -2249,8 +2227,6 @@ void _vuRegs##OP(VURegs * VU, _VURegsNum *VUregsn) { \
|
|||
VUregsn->cycles = _cycles; \
|
||||
}
|
||||
|
||||
|
||||
|
||||
VUREGS_FTFS(ABS);
|
||||
|
||||
VUREGS_FDFSFT(ADD, 0);
|
||||
|
|
|
@ -35,7 +35,6 @@ PCSX2_ALIGNED16(u32 g_vifCol0[4]);
|
|||
PCSX2_ALIGNED16(u32 g_vifRow1[4]);
|
||||
PCSX2_ALIGNED16(u32 g_vifCol1[4]);
|
||||
|
||||
//static int cycles;
|
||||
extern int g_vifCycles;
|
||||
u16 vifqwc = 0;
|
||||
bool mfifodmairq = FALSE;
|
||||
|
@ -683,8 +682,11 @@ void mfifoVIF1transfer(int qwc)
|
|||
|
||||
if (vif1ch->chcr & 0x40)
|
||||
{
|
||||
if (vif1.stallontag == 1) ret = VIF1transfer(ptag + (2 + vif1.irqoffset), 2 - vif1.irqoffset, 1); //Transfer Tag on Stall
|
||||
else ret = VIF1transfer(ptag + 2, 2, 1); //Transfer Tag
|
||||
if (vif1.stallontag == 1)
|
||||
ret = VIF1transfer(ptag + (2 + vif1.irqoffset), 2 - vif1.irqoffset, 1); //Transfer Tag on Stall
|
||||
else
|
||||
ret = VIF1transfer(ptag + 2, 2, 1); //Transfer Tag
|
||||
|
||||
if (ret == -2)
|
||||
{
|
||||
VIF_LOG("MFIFO Stallon tag");
|
||||
|
@ -696,7 +698,6 @@ void mfifoVIF1transfer(int qwc)
|
|||
id = (ptag[0] >> 28) & 0x7;
|
||||
vif1ch->qwc = (ptag[0] & 0xffff);
|
||||
vif1ch->madr = ptag[1];
|
||||
//cycles += 2;
|
||||
|
||||
vif1ch->chcr = (vif1ch->chcr & 0xFFFF) | ((*ptag) & 0xFFFF0000);
|
||||
|
||||
|
|
191
pcsx2/VifDma.cpp
191
pcsx2/VifDma.cpp
|
@ -22,7 +22,6 @@
|
|||
#include "Vif.h"
|
||||
#include "VUmicro.h"
|
||||
#include "GS.h"
|
||||
|
||||
#include "VifDma.h"
|
||||
|
||||
#include <xmmintrin.h>
|
||||
|
@ -65,6 +64,7 @@ static const unsigned int VIF1dmanum = 1;
|
|||
|
||||
int g_vifCycles = 0;
|
||||
bool path3hack = FALSE;
|
||||
bool Path3transfer = FALSE;
|
||||
|
||||
typedef void (__fastcall *UNPACKFUNCTYPE)(u32 *dest, u32 *data, int size);
|
||||
typedef int (*UNPACKPARTFUNCTYPESSE)(u32 *dest, u32 *data, int size);
|
||||
|
@ -73,6 +73,9 @@ extern void (*Vif0CMDTLB[75])();
|
|||
extern int (__fastcall *Vif1TransTLB[128])(u32 *data);
|
||||
extern int (__fastcall *Vif0TransTLB[128])(u32 *data);
|
||||
|
||||
u32 *vif0ptag, *vif1ptag;
|
||||
u8 s_maskwrite[256];
|
||||
|
||||
struct VIFUnpackFuncTable
|
||||
{
|
||||
UNPACKFUNCTYPE funcU;
|
||||
|
@ -334,7 +337,7 @@ static void ProcessMemSkip(int size, unsigned int unpackType, const unsigned int
|
|||
static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdmanum)
|
||||
{
|
||||
u32 *dest;
|
||||
unsigned int unpackType;
|
||||
u32 unpackType;
|
||||
UNPACKFUNCTYPE func;
|
||||
const VIFUnpackFuncTable *ft;
|
||||
vifStruct *vif;
|
||||
|
@ -381,6 +384,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
{
|
||||
VIF_LOG("*PCSX2*: warning v->size != size");
|
||||
}
|
||||
|
||||
if ((v->addr + size*4) > memsize)
|
||||
{
|
||||
Console::Notice("*PCSX2*: fixme unpack overflow");
|
||||
|
@ -416,7 +420,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
{
|
||||
int destinc, unpacksize;
|
||||
|
||||
VIFUNPACK_LOG("aligning packet size = %d offset %d addr %x", size, vifRegs->offset, vif->tag.addr);
|
||||
VIFUNPACK_LOG("Aligning packet size = %d offset %d addr %x", size, vifRegs->offset, vif->tag.addr);
|
||||
|
||||
// SSE doesn't handle such small data
|
||||
if (v->size != (size >> 2))
|
||||
|
@ -426,7 +430,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
{
|
||||
if (((u32)size / (u32)ft->dsize) < ((u32)ft->qsize - vifRegs->offset))
|
||||
{
|
||||
Console::WriteLn("wasnt enough left size/dsize = %x left to write %x", params(size / ft->dsize), (ft->qsize - vifRegs->offset));
|
||||
Console::WriteLn("Wasn't enough left size/dsize = %x left to write %x", params(size / ft->dsize), (ft->qsize - vifRegs->offset));
|
||||
}
|
||||
unpacksize = min(((u32)size / (u32)ft->dsize), ((u32)ft->qsize - vifRegs->offset));
|
||||
}
|
||||
|
@ -455,7 +459,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
{
|
||||
dest += destinc;
|
||||
}
|
||||
VIFUNPACK_LOG("aligning packet done size = %d offset %d addr %x", size, vifRegs->offset, vif->tag.addr);
|
||||
VIFUNPACK_LOG("Aligning packet done size = %d offset %d addr %x", size, vifRegs->offset, vif->tag.addr);
|
||||
|
||||
}
|
||||
else if (v->size != (size >> 2))
|
||||
|
@ -475,7 +479,8 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
// continuation from last stream
|
||||
|
||||
incdest = ((vifRegs->cycle.cl - vifRegs->cycle.wl) << 2) + 4;
|
||||
while (size >= ft->gsize && vifRegs->num > 0)
|
||||
|
||||
while ((size >= ft->gsize) && (vifRegs->num > 0))
|
||||
{
|
||||
func(dest, (u32*)cdata, ft->qsize);
|
||||
cdata += ft->gsize;
|
||||
|
@ -501,7 +506,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
|
||||
}
|
||||
|
||||
if (size >= ft->gsize && !(v->addr&0xf))
|
||||
if ((size >= ft->gsize) && !(v->addr&0xf))
|
||||
{
|
||||
const UNPACKPARTFUNCTYPESSE* pfn;
|
||||
int writemask;
|
||||
|
@ -540,6 +545,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
oldcycle = *(u32*) & vifRegs->cycle;
|
||||
vifRegs->cycle.cl = vifRegs->cycle.wl = 1;
|
||||
}
|
||||
|
||||
size = min(size, (int)vifRegs->num * ft->gsize); //size will always be the same or smaller
|
||||
|
||||
pfn = vif->usn ? VIFfuncTableSSE[unpackType].funcU : VIFfuncTableSSE[unpackType].funcS;
|
||||
|
@ -573,10 +579,10 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
else
|
||||
{
|
||||
|
||||
if (unpackType == 0xC && vifRegs->cycle.cl == vifRegs->cycle.wl) //No use when SSE is available
|
||||
if ((unpackType == 0xC) && (vifRegs->cycle.cl == vifRegs->cycle.wl)) //No use when SSE is available
|
||||
{
|
||||
// v4-32
|
||||
if (vifRegs->mode == 0 && !(vifRegs->code & 0x10000000) && vif->usn == 0)
|
||||
if ((vifRegs->mode == 0) && !(vifRegs->code & 0x10000000) && (vif->usn == 0))
|
||||
{
|
||||
vifRegs->num -= size >> 4;
|
||||
memcpy_fast((u8*)dest, cdata, size);
|
||||
|
@ -587,7 +593,7 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
|
||||
incdest = ((vifRegs->cycle.cl - vifRegs->cycle.wl) << 2) + 4;
|
||||
|
||||
while (size >= ft->gsize && vifRegs->num > 0)
|
||||
while ((size >= ft->gsize) && (vifRegs->num > 0))
|
||||
{
|
||||
func(dest, (u32*)cdata, ft->qsize);
|
||||
cdata += ft->gsize;
|
||||
|
@ -690,7 +696,6 @@ static void VIFunpack(u32 *data, vifCode *v, int size, const unsigned int VIFdma
|
|||
|
||||
static void vuExecMicro(u32 addr, const u32 VIFdmanum)
|
||||
{
|
||||
int _cycles;
|
||||
VURegs * VU;
|
||||
|
||||
if (VIFdmanum == 0)
|
||||
|
@ -729,21 +734,13 @@ static void vuExecMicro(u32 addr, const u32 VIFdmanum)
|
|||
}
|
||||
|
||||
if (VIFdmanum == 0)
|
||||
{
|
||||
_cycles = VU0.cycle;
|
||||
vu0ExecMicro(addr);
|
||||
}
|
||||
else
|
||||
{
|
||||
_cycles = VU1.cycle;
|
||||
vu1ExecMicro(addr);
|
||||
}
|
||||
}
|
||||
|
||||
u8 s_maskwrite[256];
|
||||
void vif0Init()
|
||||
{
|
||||
|
||||
u32 i;
|
||||
|
||||
for (i = 0; i < 256; ++i)
|
||||
|
@ -911,6 +908,7 @@ static int __fastcall Vif0TransMPG(u32 *data) // MPG
|
|||
else
|
||||
{
|
||||
int ret;
|
||||
|
||||
_vif0mpgTransfer(vif0.tag.addr, data, vif0.tag.size);
|
||||
ret = vif0.tag.size;
|
||||
vif0.tag.size = 0;
|
||||
|
@ -932,8 +930,9 @@ static int __fastcall Vif0TransUnpack(u32 *data) // UNPACK
|
|||
}
|
||||
else
|
||||
{
|
||||
int ret;
|
||||
/* we got all the data, transfer it fully */
|
||||
int ret;
|
||||
|
||||
VIFunpack(data, &vif0.tag, vif0.tag.size, VIF0dmanum);
|
||||
ret = vif0.tag.size;
|
||||
vif0.tag.size = 0;
|
||||
|
@ -1080,7 +1079,10 @@ int VIF0transfer(u32 *data, int size, int istag)
|
|||
}
|
||||
vif0.cmd = 0;
|
||||
}
|
||||
else Vif0CMDTLB[(vif0.cmd & 0x7f)]();
|
||||
else
|
||||
{
|
||||
Vif0CMDTLB[(vif0.cmd & 0x7f)]();
|
||||
}
|
||||
}
|
||||
++data;
|
||||
--vif0.vifpacketsize;
|
||||
|
@ -1107,24 +1109,23 @@ int VIF0transfer(u32 *data, int size, int istag)
|
|||
g_vifCycles += (transferred >> 2) * BIAS; /* guessing */
|
||||
// use tag.size because some game doesn't like .cmd
|
||||
|
||||
if (vif0.irq && vif0.tag.size == 0)
|
||||
if (vif0.irq && (vif0.tag.size == 0))
|
||||
{
|
||||
vif0.vifstalled = 1;
|
||||
|
||||
if (((vif0Regs->code >> 24) & 0x7f) != 0x7)vif0Regs->stat |= VIF0_STAT_VIS;
|
||||
//else Console::WriteLn("VIF0 IRQ on MARK");
|
||||
|
||||
// spiderman doesn't break on qw boundaries
|
||||
vif0.irqoffset = transferred % 4; // cannot lose the offset
|
||||
|
||||
if (istag)
|
||||
if (!istag)
|
||||
{
|
||||
return -2;
|
||||
}
|
||||
|
||||
transferred = transferred >> 2;
|
||||
vif0ch->madr += (transferred << 4);
|
||||
vif0ch->qwc -= transferred;
|
||||
//Console::WriteLn("Stall on vif0, FromSPR = %x, Vif0MADR = %x Sif0MADR = %x STADR = %x", params psHu32(0x1000d010), vif0ch->madr, psHu32(0x1000c010), psHu32(DMAC_STADR));
|
||||
}
|
||||
//else Console::WriteLn("Stall on vif0, FromSPR = %x, Vif0MADR = %x Sif0MADR = %x STADR = %x", params psHu32(0x1000d010), vif0ch->madr, psHu32(0x1000c010), psHu32(DMAC_STADR));
|
||||
return -2;
|
||||
}
|
||||
|
||||
|
@ -1149,8 +1150,7 @@ int _VIF0chain()
|
|||
if (vif0ch->qwc == 0 && vif0.vifstalled == 0) return 0;
|
||||
|
||||
pMem = (u32*)dmaGetAddr(vif0ch->madr);
|
||||
if (pMem == NULL)
|
||||
return -1;
|
||||
if (pMem == NULL) return -1;
|
||||
|
||||
if (vif0.vifstalled)
|
||||
ret = VIF0transfer(pMem + vif0.irqoffset, vif0ch->qwc * 4 - vif0.irqoffset, 0);
|
||||
|
@ -1160,8 +1160,6 @@ int _VIF0chain()
|
|||
return ret;
|
||||
}
|
||||
|
||||
u32 *vif0ptag;
|
||||
|
||||
int _chainVIF0()
|
||||
{
|
||||
int id, ret;
|
||||
|
@ -1212,10 +1210,10 @@ int _chainVIF0()
|
|||
|
||||
void vif0Interrupt()
|
||||
{
|
||||
g_vifCycles = 0; //Reset the cycle count, Wouldnt reset on stall if put lower down.
|
||||
g_vifCycles = 0; //Reset the cycle count, Wouldn't reset on stall if put lower down.
|
||||
VIF_LOG("vif0Interrupt: %8.8x", cpuRegs.cycle);
|
||||
|
||||
if (vif0.irq && vif0.tag.size == 0)
|
||||
if (vif0.irq && (vif0.tag.size == 0))
|
||||
{
|
||||
vif0Regs->stat |= VIF0_STAT_INT;
|
||||
hwIntcIrq(VIF0intc);
|
||||
|
@ -1250,8 +1248,11 @@ void vif0Interrupt()
|
|||
return;
|
||||
}
|
||||
|
||||
if (vif0ch->qwc > 0) _VIF0chain();
|
||||
else _chainVIF0();
|
||||
if (vif0ch->qwc > 0)
|
||||
_VIF0chain();
|
||||
else
|
||||
_chainVIF0();
|
||||
|
||||
CPU_INT(0, g_vifCycles);
|
||||
return;
|
||||
}
|
||||
|
@ -1330,16 +1331,17 @@ void dmaVIF0()
|
|||
|
||||
void vif0Write32(u32 mem, u32 value)
|
||||
{
|
||||
if (mem == 0x10003830) // MARK
|
||||
switch (mem)
|
||||
{
|
||||
case 0x10003830: // MARK
|
||||
VIF_LOG("VIF0_MARK write32 0x%8.8x", value);
|
||||
|
||||
/* Clear mark flag in VIF0_STAT and set mark with 'value' */
|
||||
vif0Regs->stat &= ~VIF0_STAT_MRK;
|
||||
vif0Regs->mark = value;
|
||||
}
|
||||
else if (mem == 0x10003810) // FBRST
|
||||
{
|
||||
break;
|
||||
|
||||
case 0x10003810: // FBRST
|
||||
VIF_LOG("VIF0_FBRST write32 0x%8.8x", value);
|
||||
|
||||
if (value & 0x1)
|
||||
|
@ -1376,11 +1378,11 @@ void vif0Write32(u32 mem, u32 value)
|
|||
}
|
||||
if (value & 0x8)
|
||||
{
|
||||
int cancel = 0;
|
||||
bool cancel = FALSE;
|
||||
|
||||
/* Cancel stall, first check if there is a stall to cancel, and then clear VIF0_STAT VSS|VFS|VIS|INT|ER0|ER1 bits */
|
||||
if (vif0Regs->stat & (VIF0_STAT_VSS | VIF0_STAT_VIS | VIF0_STAT_VFS))
|
||||
cancel = 1;
|
||||
cancel = TRUE;
|
||||
|
||||
vif0Regs->stat &= ~(VIF0_STAT_VSS | VIF0_STAT_VFS | VIF0_STAT_VIS |
|
||||
VIF0_STAT_INT | VIF0_STAT_ER0 | VIF0_STAT_ER1);
|
||||
|
@ -1401,16 +1403,17 @@ void vif0Write32(u32 mem, u32 value)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (mem == 0x10003820)
|
||||
{ // ERR
|
||||
break;
|
||||
|
||||
case 0x10003820:
|
||||
// ERR
|
||||
VIF_LOG("VIF0_ERR write32 0x%8.8x", value);
|
||||
|
||||
/* Set VIF0_ERR with 'value' */
|
||||
vif0Regs->err = value;
|
||||
}
|
||||
else
|
||||
{
|
||||
break;
|
||||
|
||||
default:
|
||||
Console::WriteLn("Unknown Vif0 write to %x", params mem);
|
||||
if (mem >= 0x10003900 && mem < 0x10003980)
|
||||
{
|
||||
|
@ -1426,8 +1429,8 @@ void vif0Write32(u32 mem, u32 value)
|
|||
{
|
||||
psHu32(mem) = value;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
/* Other registers are read-only so do nothing for them */
|
||||
}
|
||||
|
||||
|
@ -1753,8 +1756,8 @@ static int __fastcall Vif1TransUnpack(u32 *data)
|
|||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Vif1 CMD Base Commands
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// fixme: Global variables should not have the same name as local variables, and this probably shouldn't be local anyways.
|
||||
int transferred = 0;
|
||||
bool Path3transfer = FALSE;
|
||||
static void Vif1CMDNop() // NOP
|
||||
{
|
||||
vif1.cmd &= ~0x7f;
|
||||
|
@ -1810,6 +1813,7 @@ static void Vif1CMDMskPath3() // MSKPATH3
|
|||
}
|
||||
else
|
||||
{
|
||||
// fixme: This is the *only* reason 'transferred' is global. Otherwise it'd be local to Vif1Transfer.
|
||||
if (gif->chcr & 0x100) CPU_INT(2, (transferred >> 2) * BIAS); // Restart Path3 on its own, time it right!
|
||||
psHu32(GIF_STAT) &= ~0x2;
|
||||
}
|
||||
|
@ -1951,7 +1955,6 @@ void (*Vif1CMDTLB[82])() =
|
|||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
int VIF1transfer(u32 *data, int size, int istag)
|
||||
{
|
||||
int ret;
|
||||
|
@ -1969,10 +1972,7 @@ int VIF1transfer(u32 *data, int size, int istag)
|
|||
if (vif1.cmd)
|
||||
{
|
||||
vif1Regs->stat |= VIF1_STAT_VPS_T; //Decompression has started
|
||||
}
|
||||
|
||||
if (vif1.cmd)
|
||||
{
|
||||
ret = Vif1TransTLB[vif1.cmd](data);
|
||||
data += ret;
|
||||
vif1.vifpacketsize -= ret;
|
||||
|
@ -2032,10 +2032,8 @@ int VIF1transfer(u32 *data, int size, int istag)
|
|||
|
||||
transferred += size - vif1.vifpacketsize;
|
||||
g_vifCycles += (transferred >> 2) * BIAS; /* guessing */
|
||||
|
||||
vif1.irqoffset = transferred % 4; // cannot lose the offset
|
||||
|
||||
|
||||
if (vif1.irq && vif1.cmd == 0)
|
||||
{
|
||||
vif1.vifstalled = 1;
|
||||
|
@ -2044,15 +2042,15 @@ int VIF1transfer(u32 *data, int size, int istag)
|
|||
|
||||
if (vif1ch->qwc == 0 && (vif1.irqoffset == 0 || istag == 1))
|
||||
vif1.inprogress = 0;
|
||||
// spiderman doesn't break on qw boundaries
|
||||
|
||||
// spiderman doesn't break on qw boundaries
|
||||
if (istag) return -2;
|
||||
|
||||
transferred = transferred >> 2;
|
||||
vif1ch->madr += (transferred << 4);
|
||||
vif1ch->qwc -= transferred;
|
||||
|
||||
if (vif1ch->qwc == 0 && vif1.irqoffset == 0) vif1.inprogress = 0;
|
||||
if ((vif1ch->qwc == 0) && (vif1.irqoffset == 0)) vif1.inprogress = 0;
|
||||
//Console::WriteLn("Stall on vif1, FromSPR = %x, Vif1MADR = %x Sif0MADR = %x STADR = %x", params psHu32(0x1000d010), vif1ch->madr, psHu32(0x1000c010), psHu32(DMAC_STADR));
|
||||
return -2;
|
||||
}
|
||||
|
@ -2070,7 +2068,6 @@ int VIF1transfer(u32 *data, int size, int istag)
|
|||
if (vif1ch->qwc == 0 && (vif1.irqoffset == 0 || istag == 1))
|
||||
vif1.inprogress = 0;
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -2147,8 +2144,7 @@ int _VIF1chain()
|
|||
}
|
||||
|
||||
pMem = (u32*)dmaGetAddr(vif1ch->madr);
|
||||
if (pMem == NULL)
|
||||
return -1;
|
||||
if (pMem == NULL) return -1;
|
||||
|
||||
VIF_LOG("VIF1chain size=%d, madr=%lx, tadr=%lx",
|
||||
vif1ch->qwc, vif1ch->madr, vif1ch->tadr);
|
||||
|
@ -2161,10 +2157,6 @@ int _VIF1chain()
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int prevvifcycles = 0;
|
||||
static u32* prevviftag = NULL;
|
||||
u32 *vif1ptag;
|
||||
|
||||
int _chainVIF1()
|
||||
{
|
||||
return vif1.done;//Return Done
|
||||
|
@ -2172,7 +2164,6 @@ int _chainVIF1()
|
|||
|
||||
__forceinline void vif1SetupTransfer()
|
||||
{
|
||||
|
||||
switch (vif1.dmamode)
|
||||
{
|
||||
case 0: //Normal
|
||||
|
@ -2195,17 +2186,19 @@ __forceinline void vif1SetupTransfer()
|
|||
}
|
||||
|
||||
id = (vif1ptag[0] >> 28) & 0x7; //ID for DmaChain copied from bit 28 of the tag
|
||||
|
||||
vif1ch->qwc = (u16)vif1ptag[0]; //QWC set to lower 16bits of the tag
|
||||
vif1ch->madr = vif1ptag[1]; //MADR = ADDR field
|
||||
vif1ch->chcr = (vif1ch->chcr & 0xFFFF) | ((*vif1ptag) & 0xFFFF0000); //Transfer upper part of tag to CHCR bits 31-15
|
||||
|
||||
g_vifCycles += 1; // Add 1 g_vifCycles from the QW read for the tag
|
||||
|
||||
vif1ch->chcr = (vif1ch->chcr & 0xFFFF) | ((*vif1ptag) & 0xFFFF0000); //Transfer upper part of tag to CHCR bits 31-15
|
||||
// Transfer dma tag if tte is set
|
||||
|
||||
VIF_LOG("VIF1 Tag %8.8x_%8.8x size=%d, id=%d, madr=%lx, tadr=%lx\n",
|
||||
vif1ptag[1], vif1ptag[0], vif1ch->qwc, id, vif1ch->madr, vif1ch->tadr);
|
||||
|
||||
if (!vif1.done && (psHu32(DMAC_CTRL) & 0xC0) == 0x40 && id == 4) // STD == VIF1
|
||||
if (!vif1.done && ((psHu32(DMAC_CTRL) & 0xC0) == 0x40) && (id == 4)) // STD == VIF1
|
||||
{
|
||||
// there are still bugs, need to also check if gif->madr +16*qwc >= stadr, if not, stall
|
||||
if ((vif1ch->madr + vif1ch->qwc * 16) >= psHu32(DMAC_STADR))
|
||||
|
@ -2246,6 +2239,7 @@ __forceinline void vif1SetupTransfer()
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
__forceinline void vif1Interrupt()
|
||||
{
|
||||
VIF_LOG("vif1Interrupt: %8.8x", cpuRegs.cycle);
|
||||
|
@ -2267,7 +2261,7 @@ __forceinline void vif1Interrupt()
|
|||
vif1ch->chcr &= ~0x100;
|
||||
return;
|
||||
}
|
||||
else if (vif1ch->qwc > 0 || vif1.irqoffset > 0)
|
||||
else if ((vif1ch->qwc > 0) || (vif1.irqoffset > 0))
|
||||
{
|
||||
if (vif1.stallontag == 1)
|
||||
vif1SetupTransfer();
|
||||
|
@ -2278,7 +2272,7 @@ __forceinline void vif1Interrupt()
|
|||
|
||||
if (vif1.inprogress == 1) _VIF1chain();
|
||||
|
||||
if (vif1.done == 0 || vif1.inprogress == 1)
|
||||
if ((vif1.done == 0) || (vif1.inprogress == 1))
|
||||
{
|
||||
|
||||
if (!(psHu32(DMAC_CTRL) & 0x1))
|
||||
|
@ -2303,8 +2297,6 @@ __forceinline void vif1Interrupt()
|
|||
if (vif1.cmd != 0) Console::WriteLn("vif1.cmd still set %x", params vif1.cmd);
|
||||
#endif
|
||||
|
||||
prevviftag = NULL;
|
||||
prevvifcycles = 0;
|
||||
vif1ch->chcr &= ~0x100;
|
||||
g_vifCycles = 0;
|
||||
hwDmacIrq(DMAC_VIF1);
|
||||
|
@ -2365,16 +2357,17 @@ void dmaVIF1()
|
|||
|
||||
void vif1Write32(u32 mem, u32 value)
|
||||
{
|
||||
if (mem == 0x10003c30) // MARK
|
||||
switch (mem)
|
||||
{
|
||||
case 0x10003c30: // MARK
|
||||
VIF_LOG("VIF1_MARK write32 0x%8.8x", value);
|
||||
|
||||
/* Clear mark flag in VIF1_STAT and set mark with 'value' */
|
||||
vif1Regs->stat &= ~VIF1_STAT_MRK;
|
||||
vif1Regs->mark = value;
|
||||
}
|
||||
else if (mem == 0x10003c10) // FBRST
|
||||
{
|
||||
break;
|
||||
|
||||
case 0x10003c10: // FBRST
|
||||
VIF_LOG("VIF1_FBRST write32 0x%8.8x", value);
|
||||
|
||||
if (value & 0x1)
|
||||
|
@ -2403,7 +2396,7 @@ void vif1Write32(u32 mem, u32 value)
|
|||
if (value & 0x4)
|
||||
{
|
||||
/* Stop VIF */
|
||||
// Not completly sure about this, can't remember what game used this, but 'draining' the VIF helped it, instead of
|
||||
// Not completely sure about this, can't remember what game used this, but 'draining' the VIF helped it, instead of
|
||||
// just stoppin the VIF (linuz).
|
||||
vif1Regs->stat |= VIF1_STAT_VSS;
|
||||
vif1Regs->stat &= ~VIF1_STAT_VPS;
|
||||
|
@ -2412,16 +2405,17 @@ void vif1Write32(u32 mem, u32 value)
|
|||
}
|
||||
if (value & 0x8)
|
||||
{
|
||||
int cancel = 0;
|
||||
bool cancel = FALSE;
|
||||
|
||||
/* Cancel stall, first check if there is a stall to cancel, and then clear VIF1_STAT VSS|VFS|VIS|INT|ER0|ER1 bits */
|
||||
if (vif1Regs->stat & (VIF1_STAT_VSS | VIF1_STAT_VIS | VIF1_STAT_VFS))
|
||||
{
|
||||
cancel = 1;
|
||||
cancel = TRUE;
|
||||
}
|
||||
|
||||
vif1Regs->stat &= ~(VIF1_STAT_VSS | VIF1_STAT_VFS | VIF1_STAT_VIS |
|
||||
VIF1_STAT_INT | VIF1_STAT_ER0 | VIF1_STAT_ER1);
|
||||
|
||||
if (cancel)
|
||||
{
|
||||
if (vif1.vifstalled)
|
||||
|
@ -2430,7 +2424,6 @@ void vif1Write32(u32 mem, u32 value)
|
|||
// loop necessary for spiderman
|
||||
if ((psHu32(DMAC_CTRL) & 0xC) == 0x8)
|
||||
{
|
||||
|
||||
//Console::WriteLn("MFIFO Stall");
|
||||
CPU_INT(10, vif1ch->qwc * BIAS);
|
||||
}
|
||||
|
@ -2443,16 +2436,16 @@ void vif1Write32(u32 mem, u32 value)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (mem == 0x10003c20) // ERR
|
||||
{
|
||||
break;
|
||||
|
||||
case 0x10003c20: // ERR
|
||||
VIF_LOG("VIF1_ERR write32 0x%8.8x", value);
|
||||
|
||||
/* Set VIF1_ERR with 'value' */
|
||||
vif1Regs->err = value;
|
||||
}
|
||||
else if (mem == 0x10003c00) // STAT
|
||||
{
|
||||
break;
|
||||
|
||||
case 0x10003c00: // STAT
|
||||
VIF_LOG("VIF1_STAT write32 0x%8.8x", value);
|
||||
|
||||
#ifdef PCSX2_DEVBUILD
|
||||
|
@ -2462,7 +2455,7 @@ void vif1Write32(u32 mem, u32 value)
|
|||
// different so can't be stalled
|
||||
if (vif1Regs->stat & (VIF1_STAT_INT | VIF1_STAT_VSS | VIF1_STAT_VIS | VIF1_STAT_VFS))
|
||||
{
|
||||
Console::WriteLn("changing dir when vif1 fifo stalled");
|
||||
DevCon::WriteLn("changing dir when vif1 fifo stalled");
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -2479,21 +2472,27 @@ void vif1Write32(u32 mem, u32 value)
|
|||
vif1.done = 1;
|
||||
vif1Regs->stat &= ~0x1F000000; // FQC=0
|
||||
}
|
||||
}
|
||||
else if (mem == 0x10003c50) // MODE
|
||||
{
|
||||
break;
|
||||
|
||||
case 0x10003c50: // MODE
|
||||
vif1Regs->mode = value;
|
||||
break;
|
||||
|
||||
default:
|
||||
Console::WriteLn("Unknown Vif1 write to %x", params mem);
|
||||
if ((mem >= 0x10003d00) && (mem < 0x10003d80))
|
||||
{
|
||||
assert((mem&0xf) == 0);
|
||||
if (mem < 0x10003d40)
|
||||
g_vifRow1[(mem>>4)&3] = value;
|
||||
else
|
||||
g_vifCol1[(mem>>4)&3] = value;
|
||||
}
|
||||
else
|
||||
{
|
||||
Console::WriteLn("Unknown Vif1 write to %x", params mem);
|
||||
if (mem >= 0x10003d00 && mem < 0x10003d80)
|
||||
{
|
||||
assert((mem&0xf) == 0);
|
||||
if (mem < 0x10003d40) g_vifRow1[(mem>>4)&3] = value;
|
||||
else g_vifCol1[(mem>>4)&3] = value;
|
||||
psHu32(mem) = value;
|
||||
}
|
||||
else psHu32(mem) = value;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Other registers are read-only so do nothing for them */
|
||||
|
|
|
@ -35,7 +35,7 @@ else
|
|||
DEBUG_FLAGS=" -O0 -g "
|
||||
fi
|
||||
|
||||
WARNING_FLAGS="-Wno-format -Wno-unused-value"
|
||||
WARNING_FLAGS="-Wno-format -Wno-unused-parameter -Wno-unused-value -Wunused-variable "
|
||||
EXTRA_WARNING_FLAGS="-Wall -Wextra"
|
||||
NORMAL_FLAGS=" -pipe -msse -msse2 -O2 ${WARNING_FLAGS}"
|
||||
# These optimizations seem to cause issues with GCC 4.3.3, so we'll turn them off.
|
||||
|
|
|
@ -55,12 +55,12 @@ struct BASEBLOCKEX
|
|||
class BaseBlocks
|
||||
{
|
||||
private:
|
||||
std::vector<BASEBLOCKEX> blocks;
|
||||
// switch to a hash map later?
|
||||
std::multimap<u32, uptr> links;
|
||||
typedef std::multimap<u32, uptr>::iterator linkiter_t;
|
||||
unsigned long size;
|
||||
uptr recompiler;
|
||||
std::vector<BASEBLOCKEX> blocks;
|
||||
|
||||
public:
|
||||
BaseBlocks(unsigned long size_, uptr recompiler_) :
|
||||
|
@ -78,8 +78,10 @@ public:
|
|||
inline int Index (u32 startpc) const
|
||||
{
|
||||
int idx = LastIndex(startpc);
|
||||
if (idx == -1 || startpc < blocks[idx].startpc ||
|
||||
blocks[idx].size && (startpc >= blocks[idx].startpc + blocks[idx].size * 4))
|
||||
// fixme: I changed the parenthesis to be unambiguous, but this needs to be checked to see if ((x or y or z) and w)
|
||||
// is correct, or ((x or y) or (z and w)), or some other variation. --arcum42
|
||||
if (((idx == -1) || (startpc < blocks[idx].startpc) ||
|
||||
(blocks[idx].size)) && (startpc >= blocks[idx].startpc + blocks[idx].size * 4))
|
||||
return -1;
|
||||
else
|
||||
return idx;
|
||||
|
@ -99,7 +101,7 @@ public:
|
|||
|
||||
inline void Remove(int idx)
|
||||
{
|
||||
u32 startpc = blocks[idx].startpc;
|
||||
//u32 startpc = blocks[idx].startpc;
|
||||
std::pair<linkiter_t, linkiter_t> range = links.equal_range(blocks[idx].startpc);
|
||||
for (linkiter_t i = range.first; i != range.second; ++i)
|
||||
*(u32*)i->second = recompiler - (i->second + 4);
|
||||
|
|
|
@ -168,15 +168,10 @@ void _flushConstRegs()
|
|||
continue;
|
||||
if (g_cpuConstRegs[i].SL[j] != -1)
|
||||
continue;
|
||||
#if 1
|
||||
if (eaxval > 0)
|
||||
XOR32RtoR(EAX, EAX), eaxval = 0;
|
||||
#else
|
||||
if (eaxval > 0)
|
||||
MOV32ItoR(EAX, -1), eaxval = -1;
|
||||
#endif
|
||||
if (eaxval == 0)
|
||||
NOT32R(EAX), eaxval = -1;
|
||||
|
||||
if (eaxval > 0) XOR32RtoR(EAX, EAX), eaxval = 0;
|
||||
if (eaxval == 0) NOT32R(EAX), eaxval = -1;
|
||||
|
||||
MOV32RtoM((uptr)&cpuRegs.GPR.r[i].SL[j], EAX);
|
||||
done[j + 2] |= 1<<i;
|
||||
minusone_cnt++;
|
||||
|
@ -198,28 +193,8 @@ void _flushConstRegs()
|
|||
MOV32ItoM((uptr)&cpuRegs.GPR.r[i].UL[1], g_cpuConstRegs[i].UL[1]);
|
||||
g_cpuFlushedConstReg |= 1<<i;
|
||||
}
|
||||
#if defined(_DEBUG)&&0
|
||||
else {
|
||||
// make sure the const regs are the same
|
||||
u8* ptemp[3];
|
||||
CMP32ItoM((u32)&cpuRegs.GPR.r[i].UL[0], g_cpuConstRegs[i].UL[0]);
|
||||
ptemp[0] = JNE8(0);
|
||||
if( EEINST_ISLIVE1(i) ) {
|
||||
CMP32ItoM((u32)&cpuRegs.GPR.r[i].UL[1], g_cpuConstRegs[i].UL[1]);
|
||||
ptemp[1] = JNE8(0);
|
||||
}
|
||||
ptemp[2] = JMP8(0);
|
||||
|
||||
x86SetJ8( ptemp[0] );
|
||||
if( EEINST_ISLIVE1(i) ) x86SetJ8( ptemp[1] );
|
||||
CALLFunc((uptr)checkconstreg);
|
||||
|
||||
x86SetJ8( ptemp[2] );
|
||||
}
|
||||
#else
|
||||
if (g_cpuHasConstReg == g_cpuFlushedConstReg)
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -229,9 +204,6 @@ int _allocX86reg(int x86reg, int type, int reg, int mode)
|
|||
int i;
|
||||
assert( reg >= 0 && reg < 32 );
|
||||
|
||||
// if( X86_ISVI(type) )
|
||||
// assert( reg < 16 || reg == REG_R );
|
||||
|
||||
// don't alloc EAX and ESP,EBP if MODE_NOFRAME
|
||||
int oldmode = mode;
|
||||
int noframe = mode&MODE_NOFRAME;
|
||||
|
@ -265,9 +237,8 @@ int _allocX86reg(int x86reg, int type, int reg, int mode)
|
|||
if (!x86regs[i].inuse || x86regs[i].type != type || x86regs[i].reg != reg) continue;
|
||||
|
||||
if( (noframe && i == EBP) || (i >= maxreg) ) {
|
||||
if( x86regs[i].mode & MODE_READ )
|
||||
readfromreg = i;
|
||||
//if( xmmregs[i].mode & MODE_WRITE ) mode |= MODE_WRITE;
|
||||
if (x86regs[i].mode & MODE_READ) readfromreg = i;
|
||||
|
||||
mode |= x86regs[i].mode&MODE_WRITE;
|
||||
x86regs[i].inuse = 0;
|
||||
break;
|
||||
|
@ -277,7 +248,6 @@ int _allocX86reg(int x86reg, int type, int reg, int mode)
|
|||
// requested specific reg, so return that instead
|
||||
if( i != x86reg ) {
|
||||
if( x86regs[i].mode & MODE_READ ) readfromreg = i;
|
||||
//if( x86regs[i].mode & MODE_WRITE ) mode |= MODE_WRITE;
|
||||
mode |= x86regs[i].mode&MODE_WRITE;
|
||||
x86regs[i].inuse = 0;
|
||||
break;
|
||||
|
@ -288,8 +258,10 @@ int _allocX86reg(int x86reg, int type, int reg, int mode)
|
|||
|
||||
if( type == X86TYPE_GPR ) _flushConstReg(reg);
|
||||
|
||||
if( X86_ISVI(type) && reg < 16 ) MOVZX32M16toR(i, _x86GetAddr(type, reg));
|
||||
else MOV32MtoR(i, _x86GetAddr(type, reg));
|
||||
if( X86_ISVI(type) && reg < 16 )
|
||||
MOVZX32M16toR(i, _x86GetAddr(type, reg));
|
||||
else
|
||||
MOV32MtoR(i, _x86GetAddr(type, reg));
|
||||
|
||||
x86regs[i].mode |= MODE_READ;
|
||||
}
|
||||
|
@ -314,7 +286,8 @@ int _allocX86reg(int x86reg, int type, int reg, int mode)
|
|||
x86regs[x86reg].inuse = 1;
|
||||
|
||||
if( mode & MODE_READ ) {
|
||||
if( readfromreg >= 0 ) MOV32RtoR(x86reg, readfromreg);
|
||||
if( readfromreg >= 0 )
|
||||
MOV32RtoR(x86reg, readfromreg);
|
||||
else {
|
||||
if( type == X86TYPE_GPR ) {
|
||||
|
||||
|
@ -334,8 +307,10 @@ int _allocX86reg(int x86reg, int type, int reg, int mode)
|
|||
}
|
||||
else {
|
||||
if( X86_ISVI(type) && reg < 16 ) {
|
||||
if( reg == 0 ) XOR32RtoR(x86reg, x86reg);
|
||||
else MOVZX32M16toR(x86reg, _x86GetAddr(type, reg));
|
||||
if( reg == 0 )
|
||||
XOR32RtoR(x86reg, x86reg);
|
||||
else
|
||||
MOVZX32M16toR(x86reg, _x86GetAddr(type, reg));
|
||||
}
|
||||
else MOV32MtoR(x86reg, _x86GetAddr(type, reg));
|
||||
}
|
||||
|
@ -353,8 +328,10 @@ int _checkX86reg(int type, int reg, int mode)
|
|||
if (x86regs[i].inuse && x86regs[i].reg == reg && x86regs[i].type == type) {
|
||||
|
||||
if( !(x86regs[i].mode & MODE_READ) && (mode&MODE_READ) ) {
|
||||
if( X86_ISVI(type) ) MOVZX32M16toR(i, _x86GetAddr(type, reg));
|
||||
else MOV32MtoR(i, _x86GetAddr(type, reg));
|
||||
if( X86_ISVI(type) )
|
||||
MOVZX32M16toR(i, _x86GetAddr(type, reg));
|
||||
else
|
||||
MOV32MtoR(i, _x86GetAddr(type, reg));
|
||||
}
|
||||
|
||||
x86regs[i].mode |= mode;
|
||||
|
@ -404,8 +381,10 @@ void _deleteX86reg(int type, int reg, int flush)
|
|||
case 1:
|
||||
if( x86regs[i].mode & MODE_WRITE) {
|
||||
|
||||
if( X86_ISVI(type) && x86regs[i].reg < 16 ) MOV16RtoM(_x86GetAddr(type, x86regs[i].reg), i);
|
||||
else MOV32RtoM(_x86GetAddr(type, x86regs[i].reg), i);
|
||||
if( X86_ISVI(type) && x86regs[i].reg < 16 )
|
||||
MOV16RtoM(_x86GetAddr(type, x86regs[i].reg), i);
|
||||
else
|
||||
MOV32RtoM(_x86GetAddr(type, x86regs[i].reg), i);
|
||||
|
||||
// get rid of MODE_WRITE since don't want to flush again
|
||||
x86regs[i].mode &= ~MODE_WRITE;
|
||||
|
@ -476,7 +455,8 @@ __forceinline void* _MMXGetAddr(int reg)
|
|||
|
||||
int _getFreeMMXreg()
|
||||
{
|
||||
int i, tempi;
|
||||
int i;
|
||||
int tempi = -1;
|
||||
u32 bestcount = 0x10000;
|
||||
|
||||
for (i=0; i<MMXREGS; i++) {
|
||||
|
@ -513,7 +493,6 @@ int _getFreeMMXreg()
|
|||
}
|
||||
}
|
||||
|
||||
tempi = -1;
|
||||
for (i=0; i<MMXREGS; i++) {
|
||||
if (mmxregs[i].needed) continue;
|
||||
if (mmxregs[i].reg != MMX_TEMP) {
|
||||
|
@ -564,10 +543,9 @@ int _allocMMXreg(int mmxreg, int reg, int mode)
|
|||
if( MMX_ISGPR(reg) ) _flushConstReg(reg-MMX_GPR);
|
||||
if( (mode & MODE_READHALF) || (MMX_IS32BITS(reg)&&(mode&MODE_READ)) )
|
||||
MOVDMtoMMX(i, (u32)_MMXGetAddr(reg));
|
||||
else {
|
||||
else
|
||||
MOVQMtoR(i, (u32)_MMXGetAddr(reg));
|
||||
}
|
||||
}
|
||||
|
||||
mmxregs[i].mode |= MODE_READ;
|
||||
}
|
||||
|
@ -578,9 +556,7 @@ int _allocMMXreg(int mmxreg, int reg, int mode)
|
|||
}
|
||||
}
|
||||
|
||||
if (mmxreg == -1) {
|
||||
mmxreg = _getFreeMMXreg();
|
||||
}
|
||||
if (mmxreg == -1) mmxreg = _getFreeMMXreg();
|
||||
|
||||
mmxregs[mmxreg].inuse = 1;
|
||||
mmxregs[mmxreg].reg = reg;
|
||||
|
@ -673,9 +649,7 @@ void _clearNeededMMXregs()
|
|||
int i;
|
||||
|
||||
for (i=0; i<MMXREGS; i++) {
|
||||
|
||||
if( mmxregs[i].needed ) {
|
||||
|
||||
// setup read to any just written regs
|
||||
if( mmxregs[i].inuse && (mmxregs[i].mode&MODE_WRITE) )
|
||||
mmxregs[i].mode |= MODE_READ;
|
||||
|
@ -684,8 +658,6 @@ void _clearNeededMMXregs()
|
|||
}
|
||||
}
|
||||
|
||||
// when flush is 0 - frees all of the reg, when flush is 1, flushes all of the reg, when
|
||||
// it is 2, just stops using the reg (no flushing)
|
||||
void _deleteMMXreg(int reg, int flush)
|
||||
{
|
||||
int i;
|
||||
|
@ -694,10 +666,10 @@ void _deleteMMXreg(int reg, int flush)
|
|||
if (mmxregs[i].inuse && mmxregs[i].reg == reg ) {
|
||||
|
||||
switch(flush) {
|
||||
case 0:
|
||||
case 0: // frees all of the reg
|
||||
_freeMMXreg(i);
|
||||
break;
|
||||
case 1:
|
||||
case 1: // flushes all of the reg
|
||||
if( mmxregs[i].mode & MODE_WRITE) {
|
||||
assert( mmxregs[i].reg != MMX_GPR );
|
||||
|
||||
|
@ -712,12 +684,10 @@ void _deleteMMXreg(int reg, int flush)
|
|||
mmxregs[i].mode |= MODE_READ;
|
||||
}
|
||||
return;
|
||||
case 2:
|
||||
case 2: // just stops using the reg (no flushing)
|
||||
mmxregs[i].inuse = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -817,9 +787,7 @@ void _flushMMXregs()
|
|||
if (mmxregs[i].inuse == 0) continue;
|
||||
|
||||
if( mmxregs[i].mode & MODE_WRITE ) {
|
||||
|
||||
assert( !(g_cpuHasConstReg & (1<<mmxregs[i].reg)) );
|
||||
|
||||
assert( mmxregs[i].reg != MMX_TEMP );
|
||||
assert( mmxregs[i].mode & MODE_READ );
|
||||
assert( mmxregs[i].reg != MMX_GPR );
|
||||
|
@ -854,16 +822,23 @@ void SetFPUstate() {
|
|||
_freeMMXreg(7);
|
||||
|
||||
if (x86FpuState == MMX_STATE) {
|
||||
if (cpucaps.has3DNOWInstructionExtensions) FEMMS();
|
||||
else EMMS();
|
||||
if (cpucaps.has3DNOWInstructionExtensions)
|
||||
FEMMS();
|
||||
else
|
||||
EMMS();
|
||||
|
||||
x86FpuState = FPU_STATE;
|
||||
}
|
||||
}
|
||||
|
||||
__forceinline void _callPushArg(u32 arg, uptr argmem)
|
||||
{
|
||||
if( IS_X86REG(arg) ) PUSH32R(arg&0xff);
|
||||
else if( IS_CONSTREG(arg) ) PUSH32I(argmem);
|
||||
if( IS_X86REG(arg) ) {
|
||||
PUSH32R(arg&0xff);
|
||||
}
|
||||
else if( IS_CONSTREG(arg) ) {
|
||||
PUSH32I(argmem);
|
||||
}
|
||||
else if( IS_GPRREG(arg) ) {
|
||||
SUB32ItoR(ESP, 4);
|
||||
_eeMoveGPRtoRm(ESP, arg&0xff);
|
||||
|
@ -882,7 +857,9 @@ __forceinline void _callPushArg(u32 arg, uptr argmem)
|
|||
else if( IS_PSXCONSTREG(arg) ) {
|
||||
PUSH32I(g_psxConstRegs[(arg>>16)&0x1f]);
|
||||
}
|
||||
else if( IS_MEMORYREG(arg) ) PUSH32M(argmem);
|
||||
else if( IS_MEMORYREG(arg) ) {
|
||||
PUSH32M(argmem);
|
||||
}
|
||||
else {
|
||||
assert( (arg&0xfff0) == 0 );
|
||||
// assume it is a GPR reg
|
||||
|
@ -947,11 +924,13 @@ void _signExtendSFtoM(u32 mem)
|
|||
int _signExtendMtoMMX(x86MMXRegType to, u32 mem)
|
||||
{
|
||||
int t0reg = _allocMMXreg(-1, MMX_TEMP, 0);
|
||||
|
||||
MOVDMtoMMX(t0reg, mem);
|
||||
MOVQRtoR(to, t0reg);
|
||||
PSRADItoR(t0reg, 31);
|
||||
PUNPCKLDQRtoR(to, t0reg);
|
||||
_freeMMXreg(t0reg);
|
||||
|
||||
return to;
|
||||
}
|
||||
|
||||
|
@ -1054,7 +1033,7 @@ int _allocCheckGPRtoMMX(EEINST* pinst, int reg, int mode)
|
|||
return _checkMMXreg(MMX_GPR+reg, mode);
|
||||
}
|
||||
|
||||
// fixme - yay stupid? This sucks, and is used form iCOp2.cpp only.
|
||||
// fixme - yay stupid? This sucks, and is used from iCOP2.cpp only.
|
||||
// Surely there is a better way!
|
||||
void _recMove128MtoM(u32 to, u32 from)
|
||||
{
|
||||
|
|
|
@ -607,8 +607,9 @@ static void recShutdown( void )
|
|||
s_nInstCacheSize = 0;
|
||||
}
|
||||
|
||||
// Ignored by Linux
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4731) // frame pointer register 'ebp' modified by inline assembly code
|
||||
#endif
|
||||
|
||||
void recStep( void ) {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue