2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-02-23 07:22:32 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <string>
|
|
|
|
|
2014-09-19 04:17:41 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-07-08 12:29:26 +00:00
|
|
|
#include "Common/MemoryUtil.h"
|
2014-09-19 04:17:41 +00:00
|
|
|
#include "Common/MsgHandler.h"
|
|
|
|
#include "Common/Logging/Log.h"
|
2014-02-23 07:22:32 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#include <psapi.h>
|
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/mman.h>
|
2015-05-16 13:26:11 +00:00
|
|
|
#include <sys/types.h>
|
2015-06-11 05:15:11 +00:00
|
|
|
#if defined __APPLE__ || defined __FreeBSD__
|
2015-05-16 13:26:11 +00:00
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#else
|
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
#endif
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
|
|
|
|
2015-06-14 04:06:26 +00:00
|
|
|
// Valgrind doesn't support MAP_32BIT.
|
|
|
|
// Uncomment the following line to be able to run Dolphin in Valgrind.
|
|
|
|
//#undef MAP_32BIT
|
|
|
|
|
|
|
|
#if !defined(_WIN32) && defined(_M_X86_64) && !defined(MAP_32BIT)
|
|
|
|
#include <unistd.h>
|
|
|
|
#define PAGE_MASK (getpagesize() - 1)
|
|
|
|
#define round_page(x) ((((unsigned long)(x)) + PAGE_MASK) & ~(PAGE_MASK))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This is purposely not a full wrapper for virtualalloc/mmap, but it
|
|
|
|
// provides exactly the primitive operations that Dolphin needs.
|
|
|
|
|
|
|
|
void* AllocateExecutableMemory(size_t size, bool low)
|
2014-02-23 07:22:32 +00:00
|
|
|
{
|
|
|
|
#if defined(_WIN32)
|
|
|
|
void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
|
|
|
|
#else
|
2015-06-14 04:06:26 +00:00
|
|
|
static char *map_hint = nullptr;
|
|
|
|
#if defined(_M_X86_64) && !defined(MAP_32BIT)
|
|
|
|
// This OS has no flag to enforce allocation below the 4 GB boundary,
|
|
|
|
// but if we hint that we want a low address it is very likely we will
|
|
|
|
// get one.
|
|
|
|
// An older version of this code used MAP_FIXED, but that has the side
|
|
|
|
// effect of discarding already mapped pages that happen to be in the
|
|
|
|
// requested virtual memory range (such as the emulated RAM, sometimes).
|
|
|
|
if (low && (!map_hint))
|
|
|
|
map_hint = (char*)round_page(512*1024*1024); /* 0.5 GB rounded up to the next page */
|
|
|
|
#endif
|
2014-02-23 07:22:32 +00:00
|
|
|
void* ptr = mmap(map_hint, size, PROT_READ | PROT_WRITE | PROT_EXEC,
|
2015-06-14 04:06:26 +00:00
|
|
|
MAP_ANON | MAP_PRIVATE
|
|
|
|
#if defined(_M_X86_64) && defined(MAP_32BIT)
|
|
|
|
| (low ? MAP_32BIT : 0)
|
|
|
|
#endif
|
|
|
|
, -1, 0);
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif /* defined(_WIN32) */
|
|
|
|
|
2015-06-14 04:06:26 +00:00
|
|
|
// printf("Mapped executable memory at %p (size %ld)\n", ptr,
|
|
|
|
// (unsigned long)size);
|
|
|
|
|
2014-07-31 05:47:44 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
if (ptr == nullptr)
|
2015-06-14 04:06:26 +00:00
|
|
|
{
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2014-07-31 05:47:44 +00:00
|
|
|
if (ptr == MAP_FAILED)
|
2014-02-23 07:22:32 +00:00
|
|
|
{
|
2015-05-02 09:57:17 +00:00
|
|
|
ptr = nullptr;
|
2015-06-14 04:06:26 +00:00
|
|
|
#endif
|
|
|
|
PanicAlert("Failed to allocate executable memory. If you are running Dolphin in Valgrind, try '#undef MAP_32BIT'.");
|
|
|
|
}
|
|
|
|
#if !defined(_WIN32) && defined(_M_X86_64) && !defined(MAP_32BIT)
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (low)
|
|
|
|
{
|
|
|
|
map_hint += size;
|
|
|
|
map_hint = (char*)round_page(map_hint); /* round up to the next page */
|
|
|
|
// printf("Next map will (hopefully) be at %p\n", map_hint);
|
|
|
|
}
|
2014-02-23 07:22:32 +00:00
|
|
|
}
|
2015-06-14 04:06:26 +00:00
|
|
|
#endif
|
2014-02-23 07:22:32 +00:00
|
|
|
|
2015-06-14 04:06:26 +00:00
|
|
|
#if _M_X86_64
|
|
|
|
if ((u64)ptr >= 0x80000000 && low == true)
|
|
|
|
PanicAlert("Executable memory ended up above 2GB!");
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* AllocateMemoryPages(size_t size)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE);
|
|
|
|
#else
|
2014-03-09 20:14:26 +00:00
|
|
|
void* ptr = mmap(nullptr, size, PROT_READ | PROT_WRITE,
|
2014-02-23 07:22:32 +00:00
|
|
|
MAP_ANON | MAP_PRIVATE, -1, 0);
|
|
|
|
|
2014-08-10 08:50:58 +00:00
|
|
|
if (ptr == MAP_FAILED)
|
|
|
|
ptr = nullptr;
|
|
|
|
#endif
|
2014-02-23 07:22:32 +00:00
|
|
|
|
2014-03-09 20:14:26 +00:00
|
|
|
if (ptr == nullptr)
|
2014-02-23 07:22:32 +00:00
|
|
|
PanicAlert("Failed to allocate raw memory");
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2015-02-15 19:43:31 +00:00
|
|
|
void* AllocateAlignedMemory(size_t size, size_t alignment)
|
2014-02-23 07:22:32 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2015-06-14 04:06:26 +00:00
|
|
|
void* ptr = _aligned_malloc(size, alignment);
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2015-06-14 04:06:26 +00:00
|
|
|
void* ptr = nullptr;
|
|
|
|
if (posix_memalign(&ptr, alignment, size) != 0)
|
|
|
|
ERROR_LOG(MEMMAP, "Failed to allocate aligned memory");
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
|
|
|
|
// printf("Mapped memory at %p (size %ld)\n", ptr,
|
|
|
|
// (unsigned long)size);
|
|
|
|
|
|
|
|
if (ptr == nullptr)
|
2014-02-23 07:22:32 +00:00
|
|
|
PanicAlert("Failed to allocate aligned memory");
|
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeMemoryPages(void* ptr, size_t size)
|
|
|
|
{
|
2015-06-14 04:06:26 +00:00
|
|
|
if (ptr)
|
|
|
|
{
|
|
|
|
bool error_occurred = false;
|
|
|
|
|
2014-02-23 07:22:32 +00:00
|
|
|
#ifdef _WIN32
|
2015-06-14 04:06:26 +00:00
|
|
|
if (!VirtualFree(ptr, 0, MEM_RELEASE))
|
|
|
|
error_occurred = true;
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2015-06-14 04:06:26 +00:00
|
|
|
int retval = munmap(ptr, size);
|
|
|
|
|
|
|
|
if (retval != 0)
|
|
|
|
error_occurred = true;
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
|
|
|
|
if (error_occurred)
|
|
|
|
PanicAlert("FreeMemoryPages failed!\n%s", GetLastErrorMsg().c_str());
|
|
|
|
}
|
2014-02-23 07:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FreeAlignedMemory(void* ptr)
|
|
|
|
{
|
|
|
|
if (ptr)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2014-02-23 22:03:39 +00:00
|
|
|
_aligned_free(ptr);
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2014-02-23 22:03:39 +00:00
|
|
|
free(ptr);
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-16 03:03:07 +00:00
|
|
|
void ReadProtectMemory(void* ptr, size_t size)
|
|
|
|
{
|
2015-06-14 04:06:26 +00:00
|
|
|
bool error_occurred = false;
|
|
|
|
|
2014-09-16 03:03:07 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD oldValue;
|
|
|
|
if (!VirtualProtect(ptr, size, PAGE_NOACCESS, &oldValue))
|
2015-06-14 04:06:26 +00:00
|
|
|
error_occurred = true;
|
2014-09-16 03:03:07 +00:00
|
|
|
#else
|
2015-06-14 04:06:26 +00:00
|
|
|
int retval = mprotect(ptr, size, PROT_NONE);
|
|
|
|
|
|
|
|
if (retval != 0)
|
|
|
|
error_occurred = true;
|
2014-09-16 03:03:07 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
|
|
|
|
if (error_occurred)
|
2015-04-07 20:15:21 +00:00
|
|
|
PanicAlert("ReadProtectMemory failed!\n%s", GetLastErrorMsg().c_str());
|
2014-09-16 03:03:07 +00:00
|
|
|
}
|
|
|
|
|
2014-02-23 07:22:32 +00:00
|
|
|
void WriteProtectMemory(void* ptr, size_t size, bool allowExecute)
|
|
|
|
{
|
2015-06-14 04:06:26 +00:00
|
|
|
bool error_occurred = false;
|
|
|
|
|
2014-02-23 07:22:32 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD oldValue;
|
|
|
|
if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READ : PAGE_READONLY, &oldValue))
|
2015-06-14 04:06:26 +00:00
|
|
|
error_occurred = true;
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2015-06-14 04:06:26 +00:00
|
|
|
int retval = mprotect(ptr, size, allowExecute ? (PROT_READ | PROT_EXEC) : PROT_READ);
|
|
|
|
|
|
|
|
if (retval != 0)
|
|
|
|
error_occurred = true;
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
|
|
|
|
if (error_occurred)
|
2015-04-07 20:15:21 +00:00
|
|
|
PanicAlert("WriteProtectMemory failed!\n%s", GetLastErrorMsg().c_str());
|
2014-02-23 07:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute)
|
|
|
|
{
|
2015-06-14 04:06:26 +00:00
|
|
|
bool error_occurred = false;
|
|
|
|
|
2014-02-23 07:22:32 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD oldValue;
|
|
|
|
if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE, &oldValue))
|
2015-06-14 04:06:26 +00:00
|
|
|
error_occurred = true;
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2015-06-14 04:06:26 +00:00
|
|
|
int retval = mprotect(ptr, size, allowExecute ? (PROT_READ | PROT_WRITE | PROT_EXEC) : PROT_WRITE | PROT_READ);
|
|
|
|
|
|
|
|
if (retval != 0)
|
|
|
|
error_occurred = true;
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
|
|
|
|
if (error_occurred)
|
2015-04-07 20:15:21 +00:00
|
|
|
PanicAlert("UnWriteProtectMemory failed!\n%s", GetLastErrorMsg().c_str());
|
2014-02-23 07:22:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string MemUsage()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
#pragma comment(lib, "psapi")
|
|
|
|
DWORD processID = GetCurrentProcessId();
|
|
|
|
HANDLE hProcess;
|
|
|
|
PROCESS_MEMORY_COUNTERS pmc;
|
|
|
|
std::string Ret;
|
|
|
|
|
|
|
|
// Print information about the memory usage of the process.
|
|
|
|
|
|
|
|
hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, processID);
|
2015-06-14 04:06:26 +00:00
|
|
|
if (nullptr == hProcess) return "MemUsage Error";
|
2014-02-23 07:22:32 +00:00
|
|
|
|
|
|
|
if (GetProcessMemoryInfo(hProcess, &pmc, sizeof(pmc)))
|
|
|
|
Ret = StringFromFormat("%s K", ThousandSeparate(pmc.WorkingSetSize / 1024, 7).c_str());
|
|
|
|
|
|
|
|
CloseHandle(hProcess);
|
|
|
|
return Ret;
|
|
|
|
#else
|
|
|
|
return "";
|
|
|
|
#endif
|
|
|
|
}
|
2015-05-16 13:26:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
size_t MemPhysical()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
MEMORYSTATUSEX memInfo;
|
|
|
|
memInfo.dwLength = sizeof(MEMORYSTATUSEX);
|
|
|
|
GlobalMemoryStatusEx(&memInfo);
|
|
|
|
return memInfo.ullTotalPhys;
|
2015-06-11 05:15:11 +00:00
|
|
|
#elif defined __APPLE__ || defined __FreeBSD__
|
2015-05-16 13:26:11 +00:00
|
|
|
int mib[2];
|
|
|
|
size_t physical_memory;
|
|
|
|
mib[0] = CTL_HW;
|
2015-06-11 05:15:11 +00:00
|
|
|
#ifdef __APPLE__
|
2015-05-16 13:26:11 +00:00
|
|
|
mib[1] = HW_MEMSIZE;
|
2015-06-11 05:15:11 +00:00
|
|
|
#elif defined __FreeBSD__
|
|
|
|
mib[1] = HW_REALMEM;
|
|
|
|
#endif
|
2015-05-16 13:26:11 +00:00
|
|
|
size_t length = sizeof(size_t);
|
|
|
|
sysctl(mib, 2, &physical_memory, &length, NULL, 0);
|
|
|
|
return physical_memory;
|
|
|
|
#else
|
|
|
|
struct sysinfo memInfo;
|
|
|
|
sysinfo (&memInfo);
|
|
|
|
return (size_t)memInfo.totalram * memInfo.mem_unit;
|
|
|
|
#endif
|
|
|
|
}
|