2015-08-26 15:18:01 +00:00
|
|
|
#include "stdafx.h"
|
2015-10-17 17:47:18 +00:00
|
|
|
#include "Utilities/Log.h"
|
2015-08-26 15:18:01 +00:00
|
|
|
#include "VirtualMemory.h"
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <Windows.h>
|
|
|
|
#else
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace memory_helper
|
|
|
|
{
|
|
|
|
void* reserve_memory(size_t size)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
return VirtualAlloc(NULL, size, MEM_RESERVE, PAGE_NOACCESS);
|
|
|
|
#else
|
|
|
|
return mmap(nullptr, size, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-10-17 17:47:18 +00:00
|
|
|
s32 commit_page_memory(void* pointer, size_t page_size)
|
2015-08-26 15:18:01 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2015-10-17 17:47:18 +00:00
|
|
|
if (VirtualAlloc((u8*)pointer, page_size, MEM_COMMIT, PAGE_READWRITE) == NULL)
|
|
|
|
{
|
|
|
|
LOG_ERROR(HLE, "commit_page_memory VirtualAlloc failed.");
|
|
|
|
return -1;
|
|
|
|
}
|
2015-08-26 15:18:01 +00:00
|
|
|
#else
|
2015-10-17 17:47:18 +00:00
|
|
|
s32 ret = mprotect((u8*)pointer, page_size, PROT_READ | PROT_WRITE)
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
LOG_ERROR(HLE, "commit_page_memory mprotect failed. (%d)", ret);
|
|
|
|
return -1;
|
|
|
|
}
|
2015-08-26 15:18:01 +00:00
|
|
|
#endif
|
2015-10-17 17:47:18 +00:00
|
|
|
return 0;
|
2015-08-26 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void free_reserved_memory(void* pointer, size_t size)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
VirtualFree(pointer, 0, MEM_RELEASE);
|
|
|
|
#else
|
|
|
|
munmap(pointer, size);
|
|
|
|
#endif
|
|
|
|
}
|
2015-09-26 20:46:04 +00:00
|
|
|
}
|