/* PCSX2 - PS2 Emulator for PCs * Copyright (C) 2002-2010 PCSX2 Dev Team * * PCSX2 is free software: you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Found- * ation, either version 3 of the License, or (at your option) any later version. * * PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with PCSX2. * If not, see . */ #include "PrecompiledHeader.h" #include "Common.h" #include "COP0.h" // Updates the CPU's mode of operation (either, Kernel, Supervisor, or User modes). // Currently the different modes are not implemented. // Given this function is called so much, it's commented out for now. (rama) __ri void cpuUpdateOperationMode() { //u32 value = cpuRegs.CP0.n.Status.val; //if (value & 0x06 || // (value & 0x18) == 0) { // Kernel Mode (KSU = 0 | EXL = 1 | ERL = 1)*/ // memSetKernelMode(); // Kernel memory always //} else { // User Mode // memSetUserMode(); //} } void WriteCP0Status(u32 value) { //DMA_LOG("COP0 Status write = 0x%08x", value); cpuRegs.CP0.n.Status.val = value; cpuSetNextEventDelta(4); } void WriteCP0Config(u32 value) { // Protect the read-only ICacheSize (IC) and DataCacheSize (DC) bits cpuRegs.CP0.n.Config = value & ~0xFC0; cpuRegs.CP0.n.Config |= 0x440; } ////////////////////////////////////////////////////////////////////////////////////////// // Performance Counters Update Stuff! // // Note regarding updates of PERF and TIMR registers: never allow increment to be 0. // That happens when a game loads the MFC0 twice in the same recompiled block (before the // cpuRegs.cycles update), and can cause games to lock up since it's an unexpected result. // // PERF Overflow exceptions: The exception is raised when the MSB of the Performance // Counter Register is set. I'm assuming the exception continues to re-raise until the // app clears the bit manually (needs testing). // // PERF Events: // * Event 0 on PCR 0 is unused (counter disable) // * Event 16 is usable as a specific counter disable bit (since CTE affects both counters) // * Events 17-31 are reserved (act as counter disable) // // Most event mode aren't supported, and issue a warning and do a standard instruction // count. But only mode 1 (instruction counter) has been found to be used by games thus far. // static __fi bool PERF_ShouldCountEvent( uint evt ) { switch( evt ) { // This is a rough table of actions for various PCR modes. Some of these // can be implemented more accurately later. Others (WBBs in particular) // probably cannot without some severe complications. // left sides are PCR0 / right sides are PCR1 case 1: // cpu cycle counter. case 2: // single/dual instruction issued case 3: // Branch issued / Branch mispredicated return true; case 4: // BTAC/TLB miss case 5: // ITLB/DTLB miss case 6: // Data/Instruction cache miss return false; case 7: // Access to DTLB / WBB single request fail case 8: // Non-blocking load / WBB burst request fail case 9: case 10: return false; case 11: // CPU address bus busy / CPU data bus busy return false; case 12: // Instruction completed case 13: // non-delayslot instruction completed case 14: // COP2/COP1 instruction complete case 15: // Load/Store completed return true; } return false; } // Diagnostics for event modes that we just ignore for now. Using these perf units could // cause compat issues in some very odd/rare games, so if this msg comes up who knows, // might save some debugging effort. :) void COP0_DiagnosticPCCR() { if( cpuRegs.PERF.n.pccr.b.Event0 >= 7 && cpuRegs.PERF.n.pccr.b.Event0 <= 10 ) Console.Warning( "PERF/PCR0 Unsupported Update Event Mode = 0x%x", cpuRegs.PERF.n.pccr.b.Event0 ); if( cpuRegs.PERF.n.pccr.b.Event1 >= 7 && cpuRegs.PERF.n.pccr.b.Event1 <= 10 ) Console.Warning( "PERF/PCR1 Unsupported Update Event Mode = 0x%x", cpuRegs.PERF.n.pccr.b.Event1 ); } extern int branch; __fi void COP0_UpdatePCCR() { // Counting and counter exceptions are not performed if we are currently executing a Level 2 exception (ERL) // or the counting function is not enabled (CTE) if (cpuRegs.CP0.n.Status.b.ERL || !cpuRegs.PERF.n.pccr.b.CTE) { cpuRegs.lastPERFCycle[0] = cpuRegs.cycle; cpuRegs.lastPERFCycle[1] = cpuRegs.lastPERFCycle[0]; return; } // Implemented memory mode check (kernel/super/user) if( cpuRegs.PERF.n.pccr.val & ((1 << (cpuRegs.CP0.n.Status.b.KSU + 2)) | (cpuRegs.CP0.n.Status.b.EXL << 1))) { // ---------------------------------- // Update Performance Counter 0 // ---------------------------------- if( PERF_ShouldCountEvent( cpuRegs.PERF.n.pccr.b.Event0 ) ) { u32 incr = cpuRegs.cycle - cpuRegs.lastPERFCycle[0]; if( incr == 0 ) incr++; // use prev/XOR method for one-time exceptions (but likely less correct) //u32 prev = cpuRegs.PERF.n.pcr0; cpuRegs.PERF.n.pcr0 += incr; cpuRegs.lastPERFCycle[0] = cpuRegs.cycle; //prev ^= (1UL<<31); // XOR is fun! //if( (prev & cpuRegs.PERF.n.pcr0) & (1UL<<31) ) if((cpuRegs.PERF.n.pcr0 & 0x80000000)) { // TODO: Vector to the appropriate exception here. // This code *should* be correct, but is untested (and other parts of the emu are // not prepared to handle proper Level 2 exception vectors yet) //branch == 1 is probably not the best way to check for the delay slot, but it beats nothing! (Refraction) /* if( branch == 1 ) { cpuRegs.CP0.n.ErrorEPC = cpuRegs.pc - 4; cpuRegs.CP0.n.Cause |= 0x40000000; } else { cpuRegs.CP0.n.ErrorEPC = cpuRegs.pc; cpuRegs.CP0.n.Cause &= ~0x40000000; } if( cpuRegs.CP0.n.Status.b.DEV ) { // Bootstrap vector cpuRegs.pc = 0xbfc00280; } else { cpuRegs.pc = 0x80000080; } cpuRegs.CP0.n.Status.b.ERL = 1; cpuRegs.CP0.n.Cause |= 0x20000;*/ } } } if( cpuRegs.PERF.n.pccr.val & ((1 << (cpuRegs.CP0.n.Status.b.KSU + 12)) | (cpuRegs.CP0.n.Status.b.EXL << 11))) { // ---------------------------------- // Update Performance Counter 1 // ---------------------------------- if( PERF_ShouldCountEvent( cpuRegs.PERF.n.pccr.b.Event1 ) ) { u32 incr = cpuRegs.cycle - cpuRegs.lastPERFCycle[1]; if( incr == 0 ) incr++; cpuRegs.PERF.n.pcr1 += incr; cpuRegs.lastPERFCycle[1] = cpuRegs.cycle; if( (cpuRegs.PERF.n.pcr1 & 0x80000000)) { // TODO: Vector to the appropriate exception here. // This code *should* be correct, but is untested (and other parts of the emu are // not prepared to handle proper Level 2 exception vectors yet) //branch == 1 is probably not the best way to check for the delay slot, but it beats nothing! (Refraction) /*if( branch == 1 ) { cpuRegs.CP0.n.ErrorEPC = cpuRegs.pc - 4; cpuRegs.CP0.n.Cause |= 0x40000000; } else { cpuRegs.CP0.n.ErrorEPC = cpuRegs.pc; cpuRegs.CP0.n.Cause &= ~0x40000000; } if( cpuRegs.CP0.n.Status.b.DEV ) { // Bootstrap vector cpuRegs.pc = 0xbfc00280; } else { cpuRegs.pc = 0x80000080; } cpuRegs.CP0.n.Status.b.ERL = 1; cpuRegs.CP0.n.Cause |= 0x20000;*/ } } } } ////////////////////////////////////////////////////////////////////////////////////////// // void MapTLB(const tlbs& t, int i) { u32 mask, addr; u32 saddr, eaddr; COP0_LOG("MAP TLB %d: 0x%08X-> [0x%08X 0x%08X] S=%d G=%d ASID=%d Mask=0x%03X EntryLo0 PFN=%x EntryLo0 Cache=%x EntryLo1 PFN=%x EntryLo1 Cache=%x VPN2=%x", i, t.VPN2, t.PFN0, t.PFN1, t.S >> 31, t.G, t.ASID, t.Mask, t.EntryLo0 >> 6, (t.EntryLo0 & 0x38) >> 3, t.EntryLo1 >> 6, (t.EntryLo1 & 0x38) >> 3, t.VPN2); if (t.S) { vtlb_VMapBuffer(t.VPN2, eeMem->Scratch, Ps2MemSize::Scratch); } if (t.VPN2 == 0x70000000) return; //uh uhh right ... if (t.EntryLo0 & 0x2) { mask = ((~t.Mask) << 1) & 0xfffff; saddr = t.VPN2 >> 12; eaddr = saddr + t.Mask + 1; for (addr=saddr; addr> 12) & mask)) { //match memSetPageAddr(addr << 12, t.PFN0 + ((addr - saddr) << 12)); Cpu->Clear(addr << 12, 0x400); } } } if (t.EntryLo1 & 0x2) { mask = ((~t.Mask) << 1) & 0xfffff; saddr = (t.VPN2 >> 12) + t.Mask + 1; eaddr = saddr + t.Mask + 1; for (addr=saddr; addr> 12) & mask)) { //match memSetPageAddr(addr << 12, t.PFN1 + ((addr - saddr) << 12)); Cpu->Clear(addr << 12, 0x400); } } } } void UnmapTLB(const tlbs& t, int i) { //Console.WriteLn("Clear TLB %d: %08x-> [%08x %08x] S=%d G=%d ASID=%d Mask= %03X", i,t.VPN2,t.PFN0,t.PFN1,t.S,t.G,t.ASID,t.Mask); u32 mask, addr; u32 saddr, eaddr; if (t.S) { vtlb_VMapUnmap(t.VPN2,0x4000); return; } if (t.EntryLo0 & 0x2) { mask = ((~t.Mask) << 1) & 0xfffff; saddr = t.VPN2 >> 12; eaddr = saddr + t.Mask + 1; // Console.WriteLn("Clear TLB: %08x ~ %08x",saddr,eaddr-1); for (addr=saddr; addr> 12) & mask)) { //match memClearPageAddr(addr << 12); Cpu->Clear(addr << 12, 0x400); } } } if (t.EntryLo1 & 0x2) { mask = ((~t.Mask) << 1) & 0xfffff; saddr = (t.VPN2 >> 12) + t.Mask + 1; eaddr = saddr + t.Mask + 1; // Console.WriteLn("Clear TLB: %08x ~ %08x",saddr,eaddr-1); for (addr=saddr; addr> 12) & mask)) { //match memClearPageAddr(addr << 12); Cpu->Clear(addr << 12, 0x400); } } } } void WriteTLB(int i) { tlb[i].PageMask = cpuRegs.CP0.n.PageMask; tlb[i].EntryHi = cpuRegs.CP0.n.EntryHi; tlb[i].EntryLo0 = cpuRegs.CP0.n.EntryLo0; tlb[i].EntryLo1 = cpuRegs.CP0.n.EntryLo1; tlb[i].Mask = (cpuRegs.CP0.n.PageMask >> 13) & 0xfff; tlb[i].nMask = (~tlb[i].Mask) & 0xfff; tlb[i].VPN2 = ((cpuRegs.CP0.n.EntryHi >> 13) & (~tlb[i].Mask)) << 13; tlb[i].ASID = cpuRegs.CP0.n.EntryHi & 0xfff; tlb[i].G = cpuRegs.CP0.n.EntryLo0 & cpuRegs.CP0.n.EntryLo1 & 0x1; tlb[i].PFN0 = (((cpuRegs.CP0.n.EntryLo0 >> 6) & 0xFFFFF) & (~tlb[i].Mask)) << 12; tlb[i].PFN1 = (((cpuRegs.CP0.n.EntryLo1 >> 6) & 0xFFFFF) & (~tlb[i].Mask)) << 12; tlb[i].S = cpuRegs.CP0.n.EntryLo0&0x80000000; MapTLB(tlb[i], i); } namespace R5900 { namespace Interpreter { namespace OpcodeImpl { namespace COP0 { void TLBR() { COP0_LOG("COP0_TLBR %d:%x,%x,%x,%x", cpuRegs.CP0.n.Index, cpuRegs.CP0.n.PageMask, cpuRegs.CP0.n.EntryHi, cpuRegs.CP0.n.EntryLo0, cpuRegs.CP0.n.EntryLo1); int i = cpuRegs.CP0.n.Index & 0x3f; cpuRegs.CP0.n.PageMask = tlb[i].PageMask; cpuRegs.CP0.n.EntryHi = tlb[i].EntryHi&~(tlb[i].PageMask|0x1f00); cpuRegs.CP0.n.EntryLo0 = (tlb[i].EntryLo0&~1)|((tlb[i].EntryHi>>12)&1); cpuRegs.CP0.n.EntryLo1 =(tlb[i].EntryLo1&~1)|((tlb[i].EntryHi>>12)&1); } void TLBWI() { int j = cpuRegs.CP0.n.Index & 0x3f; //if (j > 48) return; COP0_LOG("COP0_TLBWI %d:%x,%x,%x,%x", cpuRegs.CP0.n.Index, cpuRegs.CP0.n.PageMask, cpuRegs.CP0.n.EntryHi, cpuRegs.CP0.n.EntryLo0, cpuRegs.CP0.n.EntryLo1); UnmapTLB(tlb[j], j); tlb[j].PageMask = cpuRegs.CP0.n.PageMask; tlb[j].EntryHi = cpuRegs.CP0.n.EntryHi; tlb[j].EntryLo0 = cpuRegs.CP0.n.EntryLo0; tlb[j].EntryLo1 = cpuRegs.CP0.n.EntryLo1; WriteTLB(j); } void TLBWR() { int j = cpuRegs.CP0.n.Random & 0x3f; //if (j > 48) return; DevCon.Warning("COP0_TLBWR %d:%x,%x,%x,%x\n", cpuRegs.CP0.n.Random, cpuRegs.CP0.n.PageMask, cpuRegs.CP0.n.EntryHi, cpuRegs.CP0.n.EntryLo0, cpuRegs.CP0.n.EntryLo1); //if (j > 48) return; UnmapTLB(tlb[j], j); tlb[j].PageMask = cpuRegs.CP0.n.PageMask; tlb[j].EntryHi = cpuRegs.CP0.n.EntryHi; tlb[j].EntryLo0 = cpuRegs.CP0.n.EntryLo0; tlb[j].EntryLo1 = cpuRegs.CP0.n.EntryLo1; WriteTLB(j); } void TLBP() { int i; union { struct { u32 VPN2:19; u32 VPN2X:2; u32 G:3; u32 ASID:8; } s; u32 u; } EntryHi32; EntryHi32.u = cpuRegs.CP0.n.EntryHi; cpuRegs.CP0.n.Index=0xFFFFFFFF; for(i=0;i<48;i++){ if (tlb[i].VPN2 == ((~tlb[i].Mask) & (EntryHi32.s.VPN2)) && ((tlb[i].G&1) || ((tlb[i].ASID & 0xff) == EntryHi32.s.ASID))) { cpuRegs.CP0.n.Index = i; break; } } if(cpuRegs.CP0.n.Index == 0xFFFFFFFF) cpuRegs.CP0.n.Index = 0x80000000; } void MFC0() { // Note on _Rd_ Condition 9: CP0.Count should be updated even if _Rt_ is 0. if ((_Rd_ != 9) && !_Rt_ ) return; //if(bExecBIOS == FALSE && _Rd_ == 25) Console.WriteLn("MFC0 _Rd_ %x = %x", _Rd_, cpuRegs.CP0.r[_Rd_]); switch (_Rd_) { case 12: cpuRegs.GPR.r[_Rt_].SD[0] = (s32)(cpuRegs.CP0.r[_Rd_] & 0xf0c79c1f); break; case 25: if (0 == (_Imm_ & 1)) // MFPS, register value ignored { cpuRegs.GPR.r[_Rt_].SD[0] = (s32)cpuRegs.PERF.n.pccr.val; } else if (0 == (_Imm_ & 2)) // MFPC 0, only LSB of register matters { COP0_UpdatePCCR(); cpuRegs.GPR.r[_Rt_].SD[0] = (s32)cpuRegs.PERF.n.pcr0; } else // MFPC 1 { COP0_UpdatePCCR(); cpuRegs.GPR.r[_Rt_].SD[0] = (s32)cpuRegs.PERF.n.pcr1; } /*Console.WriteLn("MFC0 PCCR = %x PCR0 = %x PCR1 = %x IMM= %x", params cpuRegs.PERF.n.pccr, cpuRegs.PERF.n.pcr0, cpuRegs.PERF.n.pcr1, _Imm_ & 0x3F);*/ break; case 24: COP0_LOG("MFC0 Breakpoint debug Registers code = %x", cpuRegs.code & 0x3FF); break; case 9: { u32 incr = cpuRegs.cycle - cpuRegs.lastCOP0Cycle; if( incr == 0 ) incr++; cpuRegs.CP0.n.Count += incr; cpuRegs.lastCOP0Cycle = cpuRegs.cycle; if( !_Rt_ ) break; } [[fallthrough]]; default: cpuRegs.GPR.r[_Rt_].SD[0] = (s32)cpuRegs.CP0.r[_Rd_]; } } void MTC0() { //if(bExecBIOS == FALSE && _Rd_ == 25) Console.WriteLn("MTC0 _Rd_ %x = %x", _Rd_, cpuRegs.CP0.r[_Rd_]); switch (_Rd_) { case 9: cpuRegs.lastCOP0Cycle = cpuRegs.cycle; cpuRegs.CP0.r[9] = cpuRegs.GPR.r[_Rt_].UL[0]; break; case 12: WriteCP0Status(cpuRegs.GPR.r[_Rt_].UL[0]); break; case 16: WriteCP0Config(cpuRegs.GPR.r[_Rt_].UL[0]); break; case 24: COP0_LOG("MTC0 Breakpoint debug Registers code = %x", cpuRegs.code & 0x3FF); break; case 25: /*if(bExecBIOS == FALSE && _Rd_ == 25) Console.WriteLn("MTC0 PCCR = %x PCR0 = %x PCR1 = %x IMM= %x", params cpuRegs.PERF.n.pccr, cpuRegs.PERF.n.pcr0, cpuRegs.PERF.n.pcr1, _Imm_ & 0x3F);*/ if (0 == (_Imm_ & 1)) // MTPS { if (0 != (_Imm_ & 0x3E)) // only effective when the register is 0 break; // Updates PCRs and sets the PCCR. COP0_UpdatePCCR(); cpuRegs.PERF.n.pccr.val = cpuRegs.GPR.r[_Rt_].UL[0]; COP0_DiagnosticPCCR(); } else if (0 == (_Imm_ & 2)) // MTPC 0, only LSB of register matters { cpuRegs.PERF.n.pcr0 = cpuRegs.GPR.r[_Rt_].UL[0]; cpuRegs.lastPERFCycle[0] = cpuRegs.cycle; } else // MTPC 1 { cpuRegs.PERF.n.pcr1 = cpuRegs.GPR.r[_Rt_].UL[0]; cpuRegs.lastPERFCycle[1] = cpuRegs.cycle; } break; default: cpuRegs.CP0.r[_Rd_] = cpuRegs.GPR.r[_Rt_].UL[0]; break; } } int CPCOND0() { return (((dmacRegs.stat.CIS | ~dmacRegs.pcr.CPC) & 0x3FF) == 0x3ff); } //#define CPCOND0 1 void BC0F() { if (CPCOND0() == 0) intDoBranch(_BranchTarget_); } void BC0T() { if (CPCOND0() == 1) intDoBranch(_BranchTarget_); } void BC0FL() { if (CPCOND0() == 0) intDoBranch(_BranchTarget_); else cpuRegs.pc+= 4; } void BC0TL() { if (CPCOND0() == 1) intDoBranch(_BranchTarget_); else cpuRegs.pc+= 4; } void ERET() { #ifdef ENABLE_VTUNE // Allow to stop vtune in a predictable way to compare runs // Of course, the limit will depend on the game. const u32 million = 1000 * 1000; static u32 vtune = 0; vtune++; // quick_exit vs exit: quick_exit won't call static storage destructor (OS will manage). It helps // avoiding the race condition between threads destruction. if (vtune > 30 * million) { Console.WriteLn("VTUNE: quick_exit"); std::quick_exit(EXIT_SUCCESS); } else if (!(vtune % million)) { Console.WriteLn("VTUNE: ERET was called %uM times", vtune/million); } #endif if (cpuRegs.CP0.n.Status.b.ERL) { cpuRegs.pc = cpuRegs.CP0.n.ErrorEPC; cpuRegs.CP0.n.Status.b.ERL = 0; } else { cpuRegs.pc = cpuRegs.CP0.n.EPC; cpuRegs.CP0.n.Status.b.EXL = 0; } cpuUpdateOperationMode(); cpuSetNextEventDelta(4); intSetBranch(); } void DI() { if (cpuRegs.CP0.n.Status.b._EDI || cpuRegs.CP0.n.Status.b.EXL || cpuRegs.CP0.n.Status.b.ERL || (cpuRegs.CP0.n.Status.b.KSU == 0)) { cpuRegs.CP0.n.Status.b.EIE = 0; // IRQs are disabled so no need to do a cpu exception/event test... //cpuSetNextEventDelta(); } } void EI() { if (cpuRegs.CP0.n.Status.b._EDI || cpuRegs.CP0.n.Status.b.EXL || cpuRegs.CP0.n.Status.b.ERL || (cpuRegs.CP0.n.Status.b.KSU == 0)) { cpuRegs.CP0.n.Status.b.EIE = 1; // schedule an event test, which will check for and raise pending IRQs. cpuSetNextEventDelta(4); } } } } } } // end namespace R5900::Interpreter::OpcodeImpl