mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
204 lines
5.8 KiB
C++
204 lines
5.8 KiB
C++
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
// This program 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 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
#include "ABI.h"
|
|
#include "x64Emitter.h"
|
|
|
|
#include "../../MemMap.h"
|
|
|
|
#include "../MIPS.h"
|
|
#include "../../CoreTiming.h"
|
|
#include "MemoryUtil.h"
|
|
|
|
#include "ABI.h"
|
|
#include "Jit.h"
|
|
#include "../JitCommon/JitCommon.h"
|
|
#include "../../Core.h"
|
|
#include "Asm.h"
|
|
|
|
using namespace Gen;
|
|
|
|
//TODO - make an option
|
|
//#if _DEBUG
|
|
static bool enableDebug = false;
|
|
//#else
|
|
// bool enableDebug = false;
|
|
//#endif
|
|
|
|
//static bool enableStatistics = false; //unused?
|
|
|
|
//GLOBAL STATIC ALLOCATIONS x86
|
|
//EAX - ubiquitous scratch register - EVERYBODY scratches this
|
|
|
|
//GLOBAL STATIC ALLOCATIONS x64
|
|
//EAX - ubiquitous scratch register - EVERYBODY scratches this
|
|
//RBX - Base pointer of memory
|
|
//R15 - Pointer to array of block pointers
|
|
|
|
extern volatile CoreState coreState;
|
|
|
|
void Jit()
|
|
{
|
|
MIPSComp::jit->Compile(currentMIPS->pc);
|
|
}
|
|
|
|
// IDEA, NOT IMPLEMENTED: no more block numbers - hack opcodes just contain offset within
|
|
// dynarec buffer, gets rid of lookup into block buffer
|
|
// At this offset - 4, there is an int specifying the block number if needed.
|
|
|
|
void ImHere()
|
|
{
|
|
DEBUG_LOG(CPU, "I'm Here: %08x", currentMIPS->pc);
|
|
}
|
|
|
|
void AsmRoutineManager::Generate(MIPSState *mips, MIPSComp::Jit *jit)
|
|
{
|
|
enterCode = AlignCode16();
|
|
ABI_PushAllCalleeSavedRegsAndAdjustStack();
|
|
#ifdef _M_X64
|
|
// Two statically allocated registers.
|
|
MOV(64, R(RBX), Imm64((u64)Memory::base));
|
|
MOV(64, R(R15), Imm64((u64)jit->GetBlockCache()->GetCodePointers())); //It's below 2GB so 32 bits are good enough
|
|
#endif
|
|
|
|
outerLoop = GetCodePtr();
|
|
ABI_CallFunction(reinterpret_cast<void *>(&CoreTiming::Advance));
|
|
FixupBranch skipToRealDispatch = J(); //skip the sync and compare first time
|
|
|
|
dispatcherCheckCoreState = GetCodePtr();
|
|
|
|
CMP(32, M((void*)&coreState), Imm32(0));
|
|
FixupBranch badCoreState = J_CC(CC_NZ, true);
|
|
|
|
dispatcher = GetCodePtr();
|
|
// The result of slice decrementation should be in flags if somebody jumped here
|
|
// IMPORTANT - We jump on negative, not carry!!!
|
|
FixupBranch bail = J_CC(CC_BE, true);
|
|
/*
|
|
if (Core::g_CoreStartupParameter.bEnableDebugging)
|
|
{
|
|
TEST(32, M((void*)PowerPC::GetStatePtr()), Imm32(PowerPC::CPU_STEPPING));
|
|
FixupBranch notStepping = J_CC(CC_Z);
|
|
ABI_CallFunction(reinterpret_cast<void *>(&PowerPC::CheckBreakPoints));
|
|
TEST(32, M((void*)PowerPC::GetStatePtr()), Imm32(0xFFFFFFFF));
|
|
FixupBranch noBreakpoint = J_CC(CC_Z);
|
|
ABI_PopAllCalleeSavedRegsAndAdjustStack();
|
|
RET();
|
|
SetJumpTarget(noBreakpoint);
|
|
SetJumpTarget(notStepping);
|
|
}*/
|
|
|
|
SetJumpTarget(skipToRealDispatch);
|
|
|
|
dispatcherNoCheck = GetCodePtr();
|
|
|
|
// Debug
|
|
//CALL(&ImHere);
|
|
|
|
MOV(32, R(EAX), M(&mips->pc));
|
|
#ifdef _M_IX86
|
|
AND(32, R(EAX), Imm32(Memory::MEMVIEW32_MASK));
|
|
_assert_msg_(CPU, Memory::base != 0, "Memory base bogus");
|
|
MOV(32, R(EDX), Imm32((u32)Memory::base));
|
|
MOV(32, R(EAX), MComplex(EDX, EAX, SCALE_1, 0));
|
|
#elif _M_X64
|
|
MOV(32, R(EAX), MComplex(RBX, RAX, SCALE_1, 0));
|
|
#endif
|
|
MOV(32, R(EDX), R(EAX));
|
|
AND(32, R(EDX), Imm32(MIPS_EMUHACK_MASK));
|
|
CMP(32, R(EDX), Imm32(MIPS_EMUHACK_OPCODE));
|
|
FixupBranch notfound = J_CC(CC_NZ);
|
|
// IDEA - we have 24 bits, why not just use offsets from base of code?
|
|
if (enableDebug)
|
|
{
|
|
ADD(32, M(&mips->debugCount), Imm8(1));
|
|
}
|
|
//grab from list and jump to it
|
|
#ifdef _M_IX86
|
|
AND(32, R(EAX), Imm32(MIPS_EMUHACK_VALUE_MASK));
|
|
MOV(32, R(EDX), ImmPtr(jit->GetBlockCache()->GetCodePointers()));
|
|
JMPptr(MComplex(EDX, EAX, 4, 0));
|
|
#elif _M_X64
|
|
AND(32, R(EAX), Imm32(MIPS_EMUHACK_VALUE_MASK));
|
|
JMPptr(MComplex(R15, RAX, 8, 0));
|
|
#endif
|
|
SetJumpTarget(notfound);
|
|
|
|
//Ok, no block, let's jit
|
|
#ifdef _M_IX86
|
|
ABI_AlignStack(0);
|
|
CALL(reinterpret_cast<void *>(&Jit));
|
|
ABI_RestoreStack(0);
|
|
#elif _M_X64
|
|
CALL((void *)&Jit);
|
|
#endif
|
|
JMP(dispatcherNoCheck); // Let's just dispatch again, we'll enter the block since we know it's there.
|
|
|
|
SetJumpTarget(bail);
|
|
|
|
CMP(32, M((void*)&coreState), Imm32(0));
|
|
J_CC(CC_Z, outerLoop, true);
|
|
|
|
SetJumpTarget(badCoreState);
|
|
//Landing pad for drec space
|
|
ABI_PopAllCalleeSavedRegsAndAdjustStack();
|
|
RET();
|
|
|
|
breakpointBailout = GetCodePtr();
|
|
//Landing pad for drec space
|
|
ABI_PopAllCalleeSavedRegsAndAdjustStack();
|
|
RET();
|
|
|
|
GenerateCommon();
|
|
}
|
|
|
|
void AsmRoutineManager::GenerateCommon()
|
|
{
|
|
/*
|
|
fifoDirectWrite8 = AlignCode4();
|
|
GenFifoWrite(8);
|
|
fifoDirectWrite16 = AlignCode4();
|
|
GenFifoWrite(16);
|
|
fifoDirectWrite32 = AlignCode4();
|
|
GenFifoWrite(32);
|
|
fifoDirectWriteFloat = AlignCode4();
|
|
GenFifoFloatWrite();
|
|
fifoDirectWriteXmm64 = AlignCode4();
|
|
GenFifoXmm64Write();
|
|
|
|
GenQuantizedLoads();
|
|
GenQuantizedStores();
|
|
GenQuantizedSingleStores();
|
|
*/
|
|
|
|
//CMPSD(R(XMM0), M(&zero),
|
|
// TODO
|
|
|
|
// Fast write routines - special case the most common hardware write
|
|
// TODO: use this.
|
|
// Even in x86, the param values will be in the right registers.
|
|
/*
|
|
const u8 *fastMemWrite8 = AlignCode16();
|
|
CMP(32, R(ABI_PARAM2), Imm32(0xCC008000));
|
|
FixupBranch skip_fast_write = J_CC(CC_NE, false);
|
|
MOV(32, EAX, M(&m_gatherPipeCount));
|
|
MOV(8, MDisp(EAX, (u32)&m_gatherPipe), ABI_PARAM1);
|
|
ADD(32, 1, M(&m_gatherPipeCount));
|
|
RET();
|
|
SetJumpTarget(skip_fast_write);
|
|
CALL((void *)&Memory::Write_U8);*/
|
|
}
|