rpcs3/Utilities/VirtualMemory.cpp

89 lines
2.1 KiB
C++
Raw Normal View History

#include "stdafx.h"
2015-10-17 17:47:18 +00:00
#include "Utilities/Log.h"
#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
2017-03-13 09:40:54 +00:00
namespace utils
{
2017-03-19 12:50:56 +00:00
// Convert memory protection (internal)
static auto operator +(protection prot)
{
#ifdef _WIN32
2017-03-19 12:50:56 +00:00
DWORD _prot = PAGE_NOACCESS;
switch (prot)
{
case protection::rw: _prot = PAGE_READWRITE; break;
case protection::ro: _prot = PAGE_READONLY; break;
case protection::no: break;
case protection::wx: _prot = PAGE_EXECUTE_READWRITE; break;
case protection::rx: _prot = PAGE_EXECUTE_READ; break;
}
#else
2017-03-19 12:50:56 +00:00
int _prot = PROT_NONE;
switch (prot)
{
case protection::rw: _prot = PROT_READ | PROT_WRITE; break;
case protection::ro: _prot = PROT_READ; break;
case protection::no: break;
case protection::wx: _prot = PROT_READ | PROT_WRITE | PROT_EXEC; break;
case protection::rx: _prot = PROT_READ | PROT_EXEC; break;
}
#endif
2017-03-19 12:50:56 +00:00
return _prot;
}
2017-03-19 12:50:56 +00:00
void* memory_reserve(std::size_t size, void* use_addr)
{
#ifdef _WIN32
2017-03-25 15:56:09 +00:00
return ::VirtualAlloc(use_addr, size, MEM_RESERVE, PAGE_NOACCESS);
#else
2017-03-25 15:56:09 +00:00
auto ptr = ::mmap(use_addr, size, PROT_NONE, MAP_ANON | MAP_PRIVATE, -1, 0);
if (use_addr && ptr != use_addr)
{
::munmap(ptr, size);
return nullptr;
}
return ptr;
2017-03-19 12:50:56 +00:00
#endif
}
void memory_commit(void* pointer, std::size_t size, protection prot)
{
#ifdef _WIN32
verify(HERE), ::VirtualAlloc(pointer, size, MEM_COMMIT, +prot);
#else
verify(HERE), ::mprotect((void*)((u64)pointer & -4096), ::align(size, 4096), +prot) != -1;
#endif
}
2017-03-13 09:40:54 +00:00
void memory_decommit(void* pointer, std::size_t size)
{
#ifdef _WIN32
verify(HERE), ::VirtualFree(pointer, size, MEM_DECOMMIT);
#else
2017-02-10 19:56:16 +00:00
verify(HERE), ::mmap(pointer, size, PROT_NONE, MAP_FIXED | MAP_ANON | MAP_PRIVATE, -1, 0);
2017-03-13 09:40:54 +00:00
#endif
}
void memory_protect(void* pointer, std::size_t size, protection prot)
{
#ifdef _WIN32
DWORD old;
2017-03-19 12:50:56 +00:00
verify(HERE), ::VirtualProtect(pointer, size, +prot, &old);
2017-03-13 09:40:54 +00:00
#else
2017-03-19 12:50:56 +00:00
verify(HERE), ::mprotect((void*)((u64)pointer & -4096), ::align(size, 4096), +prot) != -1;
#endif
}
}