Home
last modified time | relevance | path

Searched refs:JitBlockCache (Results 1 – 25 of 57) sorted by relevance

123

/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/MIPS/JitCommon/
H A DJitBlockCache.cpp62 JitBlockCache::JitBlockCache(MIPSState *mipsState, CodeBlockCommon *codeBlock) : in JitBlockCache() function in JitBlockCache
66 JitBlockCache::~JitBlockCache() { in ~JitBlockCache()
76 bool JitBlockCache::IsFull() const { in IsFull()
80 void JitBlockCache::Init() { in Init()
88 void JitBlockCache::Shutdown() { in Shutdown()
104 void JitBlockCache::Clear() { in Clear()
117 void JitBlockCache::Reset() { in Reset()
122 JitBlock *JitBlockCache::GetBlock(int no) { in GetBlock()
414 void JitBlockCache::LinkBlock(int i) { in LinkBlock()
428 void JitBlockCache::UnlinkBlock(int i) { in UnlinkBlock()
[all …]
H A DJitBlockCache.h114 class JitBlockCache : public JitBlockCacheDebugInterface {
116 JitBlockCache(MIPSState *mipsState, CodeBlockCommon *codeBlock);
117 ~JitBlockCache();
H A DJitCommon.h33 class JitBlockCache; variable
131 virtual JitBlockCache *GetBlockCache() = 0;
H A DJitState.h26 class JitBlockCache; variable
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/MIPS/JitCommon/
H A DJitBlockCache.cpp62 JitBlockCache::JitBlockCache(MIPSState *mipsState, CodeBlockCommon *codeBlock) : in JitBlockCache() function in JitBlockCache
66 JitBlockCache::~JitBlockCache() { in ~JitBlockCache()
76 bool JitBlockCache::IsFull() const { in IsFull()
80 void JitBlockCache::Init() { in Init()
88 void JitBlockCache::Shutdown() { in Shutdown()
104 void JitBlockCache::Clear() { in Clear()
117 void JitBlockCache::Reset() { in Reset()
122 JitBlock *JitBlockCache::GetBlock(int no) { in GetBlock()
414 void JitBlockCache::LinkBlock(int i) { in LinkBlock()
428 void JitBlockCache::UnlinkBlock(int i) { in UnlinkBlock()
[all …]
H A DJitBlockCache.h114 class JitBlockCache : public JitBlockCacheDebugInterface {
116 JitBlockCache(MIPSState *mipsState, CodeBlockCommon *codeBlock);
117 ~JitBlockCache();
H A DJitCommon.h33 class JitBlockCache; variable
131 virtual JitBlockCache *GetBlockCache() = 0;
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/MIPS/JitCommon/
H A DJitBlockCache.cpp62 JitBlockCache::JitBlockCache(MIPSState *mipsState, CodeBlockCommon *codeBlock) : in JitBlockCache() function in JitBlockCache
66 JitBlockCache::~JitBlockCache() { in ~JitBlockCache()
76 bool JitBlockCache::IsFull() const { in IsFull()
80 void JitBlockCache::Init() { in Init()
88 void JitBlockCache::Shutdown() { in Shutdown()
104 void JitBlockCache::Clear() { in Clear()
117 void JitBlockCache::Reset() { in Reset()
122 JitBlock *JitBlockCache::GetBlock(int no) { in GetBlock()
414 void JitBlockCache::LinkBlock(int i) { in LinkBlock()
428 void JitBlockCache::UnlinkBlock(int i) { in UnlinkBlock()
[all …]
H A DJitBlockCache.h114 class JitBlockCache : public JitBlockCacheDebugInterface {
116 JitBlockCache(MIPSState *mipsState, CodeBlockCommon *codeBlock);
117 ~JitBlockCache();
H A DJitCommon.h33 class JitBlockCache; variable
131 virtual JitBlockCache *GetBlockCache() = 0;
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/Core/PowerPC/Jit64Common/
H A DBlockCache.cpp11 JitBlockCache::JitBlockCache(JitBase& jit) : JitBaseBlockCache{jit} in JitBlockCache() function in JitBlockCache
15 void JitBlockCache::WriteLinkBlock(const JitBlock::LinkData& source, const JitBlock* dest) in WriteLinkBlock()
48 void JitBlockCache::WriteDestroyBlock(const JitBlock& block) in WriteDestroyBlock()
57 void JitBlockCache::Init() in Init()
63 void JitBlockCache::DestroyBlock(JitBlock& block) in DestroyBlock()
73 const std::vector<std::pair<u8*, u8*>>& JitBlockCache::GetRangesToFreeNear() const in GetRangesToFreeNear()
78 const std::vector<std::pair<u8*, u8*>>& JitBlockCache::GetRangesToFreeFar() const in GetRangesToFreeFar()
83 void JitBlockCache::ClearRangesToFree() in ClearRangesToFree()
H A DBlockCache.h13 class JitBlockCache : public JitBaseBlockCache
16 explicit JitBlockCache(JitBase& jit);
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/MIPS/MIPS/
H A DMipsJit.h133 JitBlockCache *GetBlockCache() override { return &blocks; }
176 JitBlockCache blocks;
H A DMipsJit.cpp84 JitBlockCache *bc = GetBlockCache();
193 if (GetSpaceLeft() < 0x800 || js.numInstructions >= JitBlockCache::MAX_BLOCK_INSTRUCTIONS)
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/MIPS/MIPS/
H A DMipsJit.h133 JitBlockCache *GetBlockCache() override { return &blocks; } in GetBlockCache()
176 JitBlockCache blocks;
H A DMipsJit.cpp84 JitBlockCache *bc = GetBlockCache(); in GetOriginalOp()
193 if (GetSpaceLeft() < 0x800 || js.numInstructions >= JitBlockCache::MAX_BLOCK_INSTRUCTIONS) in DoJit()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/MIPS/MIPS/
H A DMipsJit.h133 JitBlockCache *GetBlockCache() override { return &blocks; } in GetBlockCache()
176 JitBlockCache blocks;
H A DMipsJit.cpp84 JitBlockCache *bc = GetBlockCache(); in GetOriginalOp()
193 if (GetSpaceLeft() < 0x800 || js.numInstructions >= JitBlockCache::MAX_BLOCK_INSTRUCTIONS) in DoJit()
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/MIPS/fake/
H A DFakeJit.h131 JitBlockCache *GetBlockCache() override { return &blocks; } in GetBlockCache()
174 JitBlockCache blocks;
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/MIPS/fake/
H A DFakeJit.h131 JitBlockCache *GetBlockCache() override { return &blocks; } in GetBlockCache()
174 JitBlockCache blocks;
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/MIPS/fake/
H A DFakeJit.h131 JitBlockCache *GetBlockCache() override { return &blocks; } in GetBlockCache()
174 JitBlockCache blocks;
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/Core/PowerPC/Jit64/
H A DJit.h73 JitBlockCache* GetBlockCache() override { return &blocks; } in GetBlockCache()
255 JitBlockCache blocks{*this};
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/Core/MIPS/x86/
H A DJit.cpp408 if (GetSpaceLeft() < 0x800 || js.numInstructions >= JitBlockCache::MAX_BLOCK_INSTRUCTIONS) { in DoJit()
503 int pad = JitBlockCache::GetBlockExitSize() - (int)actualSize; in LinkBlock()
717 int pad = JitBlockCache::GetBlockExitSize() - (int)actualSize; in WriteExit()
846 JitBlockCache *bc = GetBlockCache(); in GetOriginalOp()
/dports/emulators/ppsspp/ppsspp-1.12.3/Core/MIPS/x86/
H A DJit.cpp408 if (GetSpaceLeft() < 0x800 || js.numInstructions >= JitBlockCache::MAX_BLOCK_INSTRUCTIONS) { in DoJit()
503 int pad = JitBlockCache::GetBlockExitSize() - (int)actualSize; in LinkBlock()
717 int pad = JitBlockCache::GetBlockExitSize() - (int)actualSize; in WriteExit()
846 JitBlockCache *bc = GetBlockCache(); in GetOriginalOp()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/Core/MIPS/x86/
H A DJit.cpp408 if (GetSpaceLeft() < 0x800 || js.numInstructions >= JitBlockCache::MAX_BLOCK_INSTRUCTIONS) { in DoJit()
503 int pad = JitBlockCache::GetBlockExitSize() - (int)actualSize; in LinkBlock()
717 int pad = JitBlockCache::GetBlockExitSize() - (int)actualSize; in WriteExit()
846 JitBlockCache *bc = GetBlockCache(); in GetOriginalOp()

123