mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-26 18:00:41 +00:00
285 lines
7.2 KiB
C++
285 lines
7.2 KiB
C++
// Copyright (c) 2012- PPSSPP 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 git repository and contact information can be found at
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
#pragma once
|
|
|
|
#include "../../../Globals.h"
|
|
|
|
#include "ArmJitCache.h"
|
|
#include "ArmRegCache.h"
|
|
#include "ArmRegCacheFPU.h"
|
|
#include "ArmAsm.h"
|
|
|
|
#if defined(MAEMO)
|
|
#include "stddef.h"
|
|
#endif
|
|
|
|
namespace MIPSComp
|
|
{
|
|
|
|
struct ArmJitOptions
|
|
{
|
|
ArmJitOptions()
|
|
{
|
|
enableBlocklink = true;
|
|
}
|
|
|
|
bool enableBlocklink;
|
|
};
|
|
|
|
struct ArmJitState
|
|
{
|
|
enum PrefixState
|
|
{
|
|
PREFIX_UNKNOWN = 0x00,
|
|
PREFIX_KNOWN = 0x01,
|
|
PREFIX_DIRTY = 0x10,
|
|
PREFIX_KNOWN_DIRTY = 0x11,
|
|
};
|
|
|
|
u32 compilerPC;
|
|
u32 blockStart;
|
|
bool cancel;
|
|
bool inDelaySlot;
|
|
int downcountAmount;
|
|
bool compiling; // TODO: get rid of this in favor of using analysis results to determine end of block
|
|
ArmJitBlock *curBlock;
|
|
|
|
// VFPU prefix magic
|
|
bool startDefaultPrefix;
|
|
u32 prefixS;
|
|
u32 prefixT;
|
|
u32 prefixD;
|
|
PrefixState prefixSFlag;
|
|
PrefixState prefixTFlag;
|
|
PrefixState prefixDFlag;
|
|
void PrefixStart() {
|
|
if (startDefaultPrefix) {
|
|
EatPrefix();
|
|
} else {
|
|
PrefixUnknown();
|
|
}
|
|
}
|
|
void PrefixUnknown() {
|
|
prefixSFlag = PREFIX_UNKNOWN;
|
|
prefixTFlag = PREFIX_UNKNOWN;
|
|
prefixDFlag = PREFIX_UNKNOWN;
|
|
}
|
|
bool MayHavePrefix() const {
|
|
if (HasUnknownPrefix()) {
|
|
return true;
|
|
} else if (prefixS != 0xE4 || prefixT != 0xE4 || prefixD != 0) {
|
|
return true;
|
|
} else if (VfpuWriteMask() != 0) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
bool HasUnknownPrefix() const {
|
|
if (!(prefixSFlag & PREFIX_KNOWN) || !(prefixTFlag & PREFIX_KNOWN) || !(prefixDFlag & PREFIX_KNOWN)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
void EatPrefix() {
|
|
if ((prefixSFlag & PREFIX_KNOWN) == 0 || prefixS != 0xE4) {
|
|
prefixSFlag = PREFIX_KNOWN_DIRTY;
|
|
prefixS = 0xE4;
|
|
}
|
|
if ((prefixTFlag & PREFIX_KNOWN) == 0 || prefixT != 0xE4) {
|
|
prefixTFlag = PREFIX_KNOWN_DIRTY;
|
|
prefixT = 0xE4;
|
|
}
|
|
if ((prefixDFlag & PREFIX_KNOWN) == 0 || prefixD != 0x0 || VfpuWriteMask() != 0) {
|
|
prefixDFlag = PREFIX_KNOWN_DIRTY;
|
|
prefixD = 0x0;
|
|
}
|
|
}
|
|
u8 VfpuWriteMask() const {
|
|
_assert_(prefixDFlag & PREFIX_KNOWN);
|
|
return (prefixD >> 8) & 0xF;
|
|
}
|
|
bool VfpuWriteMask(int i) const {
|
|
_assert_(prefixDFlag & PREFIX_KNOWN);
|
|
return (prefixD >> (8 + i)) & 1;
|
|
}
|
|
};
|
|
|
|
|
|
enum CompileDelaySlotFlags
|
|
{
|
|
// Easy, nothing extra.
|
|
DELAYSLOT_NICE = 0,
|
|
// Flush registers after delay slot.
|
|
DELAYSLOT_FLUSH = 1,
|
|
// Preserve flags.
|
|
DELAYSLOT_SAFE = 2,
|
|
// Flush registers after and preserve flags.
|
|
DELAYSLOT_SAFE_FLUSH = DELAYSLOT_FLUSH | DELAYSLOT_SAFE,
|
|
};
|
|
|
|
class Jit : public ArmGen::ARMXCodeBlock
|
|
{
|
|
public:
|
|
Jit(MIPSState *mips);
|
|
void DoState(PointerWrap &p);
|
|
static void DoDummyState(PointerWrap &p);
|
|
|
|
// Compiled ops should ignore delay slots
|
|
// the compiler will take care of them by itself
|
|
// OR NOT
|
|
void Comp_Generic(u32 op);
|
|
|
|
void RunLoopUntil(u64 globalticks);
|
|
|
|
void Compile(u32 em_address); // Compiles a block at current MIPS PC
|
|
const u8 *DoJit(u32 em_address, ArmJitBlock *b);
|
|
|
|
void CompileDelaySlot(int flags);
|
|
void CompileAt(u32 addr);
|
|
void EatInstruction(u32 op);
|
|
void Comp_RunBlock(u32 op);
|
|
|
|
// Ops
|
|
void Comp_ITypeMem(u32 op);
|
|
|
|
void Comp_RelBranch(u32 op);
|
|
void Comp_RelBranchRI(u32 op);
|
|
void Comp_FPUBranch(u32 op);
|
|
void Comp_FPULS(u32 op);
|
|
void Comp_FPUComp(u32 op);
|
|
void Comp_Jump(u32 op);
|
|
void Comp_JumpReg(u32 op);
|
|
void Comp_Syscall(u32 op);
|
|
void Comp_Break(u32 op);
|
|
|
|
void Comp_IType(u32 op);
|
|
void Comp_RType2(u32 op);
|
|
void Comp_RType3(u32 op);
|
|
void Comp_ShiftType(u32 op);
|
|
void Comp_Allegrex(u32 op);
|
|
void Comp_VBranch(u32 op);
|
|
void Comp_MulDivType(u32 op);
|
|
void Comp_Special3(u32 op);
|
|
|
|
void Comp_FPU3op(u32 op);
|
|
void Comp_FPU2op(u32 op);
|
|
void Comp_mxc1(u32 op);
|
|
|
|
void Comp_DoNothing(u32 op);
|
|
|
|
void Comp_SV(u32 op);
|
|
void Comp_SVQ(u32 op);
|
|
void Comp_VPFX(u32 op);
|
|
void Comp_VVectorInit(u32 op);
|
|
void Comp_VDot(u32 op);
|
|
void Comp_VecDo3(u32 op);
|
|
void Comp_VV2Op(u32 op);
|
|
void Comp_Mftv(u32 op);
|
|
void Comp_Vmtvc(u32 op);
|
|
void Comp_Vmmov(u32 op);
|
|
|
|
ArmJitBlockCache *GetBlockCache() { return &blocks; }
|
|
|
|
void ClearCache();
|
|
void ClearCacheAt(u32 em_address);
|
|
|
|
// TODO: Eat VFPU prefixes here.
|
|
void EatPrefix() { }
|
|
|
|
private:
|
|
void GenerateFixedCode();
|
|
void FlushAll();
|
|
void FlushPrefixV();
|
|
|
|
void WriteDownCount(int offset = 0);
|
|
void MovFromPC(ARMReg r);
|
|
void MovToPC(ARMReg r);
|
|
|
|
void WriteExit(u32 destination, int exit_num);
|
|
void WriteExitDestInR(ARMReg Reg);
|
|
void WriteSyscallExit();
|
|
|
|
// Utility compilation functions
|
|
void BranchFPFlag(u32 op, ArmGen::CCFlags cc, bool likely);
|
|
void BranchVFPUFlag(u32 op, ArmGen::CCFlags cc, bool likely);
|
|
void BranchRSZeroComp(u32 op, ArmGen::CCFlags cc, bool andLink, bool likely);
|
|
void BranchRSRTComp(u32 op, ArmGen::CCFlags cc, bool likely);
|
|
|
|
// Utilities to reduce duplicated code
|
|
void CompImmLogic(int rs, int rt, u32 uimm, void (ARMXEmitter::*arith)(ARMReg dst, ARMReg src, Operand2 op2), u32 (*eval)(u32 a, u32 b));
|
|
void CompType3(int rd, int rs, int rt, void (ARMXEmitter::*arithOp2)(ARMReg dst, ARMReg rm, Operand2 rn), u32 (*eval)(u32 a, u32 b), bool isSub = false);
|
|
|
|
void CompShiftImm(u32 op, ArmGen::ShiftType shiftType);
|
|
void CompShiftVar(u32 op, ArmGen::ShiftType shiftType);
|
|
|
|
void LogBlockNumber();
|
|
|
|
void ApplyPrefixST(u8 *vregs, u32 prefix, VectorSize sz);
|
|
void ApplyPrefixD(const u8 *vregs, VectorSize sz);
|
|
void GetVectorRegsPrefixS(u8 *regs, VectorSize sz, int vectorReg) {
|
|
_assert_(js.prefixSFlag & ArmJitState::PREFIX_KNOWN);
|
|
GetVectorRegs(regs, sz, vectorReg);
|
|
ApplyPrefixST(regs, js.prefixS, sz);
|
|
}
|
|
void GetVectorRegsPrefixT(u8 *regs, VectorSize sz, int vectorReg) {
|
|
_assert_(js.prefixTFlag & ArmJitState::PREFIX_KNOWN);
|
|
GetVectorRegs(regs, sz, vectorReg);
|
|
ApplyPrefixST(regs, js.prefixT, sz);
|
|
}
|
|
void GetVectorRegsPrefixD(u8 *regs, VectorSize sz, int vectorReg);
|
|
|
|
/*
|
|
void CompImmLogic(u32 op, void (ARMXEmitter::*arith)(int, const OpArg &, const OpArg &));
|
|
void CompTriArith(u32 op, void (ARMXEmitter::*arith)(int, const OpArg &, const OpArg &));
|
|
void CompShiftImm(u32 op, void (ARMXEmitter::*shift)(int, OpArg, OpArg));
|
|
void CompShiftVar(u32 op, void (XEmitter::*shift)(int, OpArg, OpArg));
|
|
*/
|
|
|
|
// Utils
|
|
void SetR0ToEffectiveAddress(int rs, s16 offset);
|
|
void SetCCAndR0ForSafeAddress(int rs, s16 offset, ARMReg tempReg);
|
|
|
|
ArmJitBlockCache blocks;
|
|
ArmJitOptions jo;
|
|
ArmJitState js;
|
|
|
|
ArmRegCache gpr;
|
|
ArmRegCacheFPU fpr;
|
|
|
|
MIPSState *mips_;
|
|
|
|
public:
|
|
// Code pointers
|
|
const u8 *enterCode;
|
|
|
|
const u8 *outerLoop;
|
|
const u8 *outerLoopPCInR0;
|
|
const u8 *dispatcherCheckCoreState;
|
|
const u8 *dispatcherPCInR0;
|
|
const u8 *dispatcher;
|
|
const u8 *dispatcherNoCheck;
|
|
|
|
const u8 *breakpointBailout;
|
|
};
|
|
|
|
typedef void (Jit::*MIPSCompileFunc)(u32 opcode);
|
|
|
|
} // namespace MIPSComp
|
|
|