JITs: Add GetMemoryStats Function

Using the updated rangeset library
This commit is contained in:
mitaclaw
2024-07-26 23:59:19 -07:00
parent 46f8fe0eaf
commit a0987829e5
10 changed files with 42 additions and 0 deletions

View File

@ -41,6 +41,7 @@ public:
JitBaseBlockCache* GetBlockCache() override { return nullptr; }
void Jit(u32 em_address) override {}
void EraseSingleBlock(const JitBlock&) override {}
std::vector<MemoryStats> GetMemoryStats() const override { return {}; }
const CommonAsmRoutinesBase* GetAsmRoutines() override { return nullptr; }
virtual bool HandleFault(uintptr_t access_address, SContext* ctx) override
{