UnleashedRecomp/UnleashedRecomp/kernel/memory.h

47 lines
967 B
C

#pragma once
#ifndef _WIN32
#define MEM_COMMIT 0x00001000
#define MEM_RESERVE 0x00002000
#endif
struct Memory
{
uint8_t* base{};
Memory();
bool IsInMemoryRange(const void* host) const noexcept
{
return host >= base && host < (base + PPC_MEMORY_SIZE);
}
void* Translate(size_t offset) const noexcept
{
if (offset)
assert(offset < PPC_MEMORY_SIZE);
return base + offset;
}
uint32_t MapVirtual(const void* host) const noexcept
{
if (host)
assert(IsInMemoryRange(host));
return static_cast<uint32_t>(static_cast<const uint8_t*>(host) - base);
}
PPCFunc* FindFunction(uint32_t guest) const noexcept
{
return PPC_LOOKUP_FUNC(base, guest);
}
void InsertFunction(uint32_t guest, PPCFunc* host)
{
PPC_LOOKUP_FUNC(base, guest) = host;
}
};
extern "C" void* MmGetHostAddress(uint32_t ptr);
extern Memory g_memory;