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-09-19 04:17:41 +00:00
|
|
|
#include "Common/Logging/Log.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"
|
2014-02-23 07:22:32 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.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>
|
2020-12-04 16:09:42 +00:00
|
|
|
#if defined __APPLE__ || defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__
|
2015-05-16 13:26:11 +00:00
|
|
|
#include <sys/sysctl.h>
|
2017-02-22 17:21:10 +00:00
|
|
|
#elif defined __HAIKU__
|
|
|
|
#include <OS.h>
|
2015-05-16 13:26:11 +00:00
|
|
|
#else
|
|
|
|
#include <sys/sysinfo.h>
|
|
|
|
#endif
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
|
|
|
|
2016-08-07 17:03:07 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2015-06-14 04:06:26 +00:00
|
|
|
// This is purposely not a full wrapper for virtualalloc/mmap, but it
|
|
|
|
// provides exactly the primitive operations that Dolphin needs.
|
|
|
|
|
2017-04-14 10:53:32 +00:00
|
|
|
void* AllocateExecutableMemory(size_t size)
|
2014-02-23 07:22:32 +00:00
|
|
|
{
|
|
|
|
#if defined(_WIN32)
|
2017-04-14 12:46:11 +00:00
|
|
|
void* ptr = VirtualAlloc(nullptr, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2017-04-14 10:53:32 +00:00
|
|
|
void* ptr =
|
|
|
|
mmap(nullptr, size, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_PRIVATE, -1, 0);
|
2014-02-23 07:22:32 +00:00
|
|
|
|
2014-07-31 05:47:44 +00:00
|
|
|
if (ptr == MAP_FAILED)
|
2015-05-02 09:57:17 +00:00
|
|
|
ptr = nullptr;
|
2015-06-14 04:06:26 +00:00
|
|
|
#endif
|
2014-02-23 07:22:32 +00:00
|
|
|
|
2017-04-14 10:53:32 +00:00
|
|
|
if (ptr == nullptr)
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("Failed to allocate executable memory");
|
2014-02-23 07:22:32 +00:00
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* AllocateMemoryPages(size_t size)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2017-04-14 12:46:11 +00:00
|
|
|
void* ptr = VirtualAlloc(nullptr, size, MEM_COMMIT, PAGE_READWRITE);
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2014-03-09 20:14:26 +00:00
|
|
|
void* ptr = mmap(nullptr, size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0);
|
2014-02-23 07:22:32 +00:00
|
|
|
|
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)
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("Failed to allocate raw memory");
|
2014-02-23 07:22:32 +00:00
|
|
|
|
|
|
|
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)
|
2020-10-23 18:41:30 +00:00
|
|
|
ERROR_LOG_FMT(MEMMAP, "Failed to allocate aligned memory");
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
|
|
|
|
if (ptr == nullptr)
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("Failed to allocate aligned memory");
|
2014-02-23 07:22:32 +00:00
|
|
|
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FreeMemoryPages(void* ptr, size_t size)
|
|
|
|
{
|
2015-06-14 04:06:26 +00:00
|
|
|
if (ptr)
|
|
|
|
{
|
2014-02-23 07:22:32 +00:00
|
|
|
#ifdef _WIN32
|
2015-06-14 04:06:26 +00:00
|
|
|
if (!VirtualFree(ptr, 0, MEM_RELEASE))
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("FreeMemoryPages failed!\nVirtualFree: {}", GetLastErrorString());
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2017-08-17 19:12:44 +00:00
|
|
|
if (munmap(ptr, size) != 0)
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("FreeMemoryPages failed!\nmunmap: {}", LastStrerrorString());
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
2015-06-14 04:06:26 +00:00
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD oldValue;
|
|
|
|
if (!VirtualProtect(ptr, size, PAGE_NOACCESS, &oldValue))
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("ReadProtectMemory failed!\nVirtualProtect: {}", GetLastErrorString());
|
2014-09-16 03:03:07 +00:00
|
|
|
#else
|
2017-08-17 19:12:44 +00:00
|
|
|
if (mprotect(ptr, size, PROT_NONE) != 0)
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("ReadProtectMemory failed!\nmprotect: {}", LastStrerrorString());
|
2014-09-16 03:03:07 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-02-23 07:22:32 +00:00
|
|
|
void WriteProtectMemory(void* ptr, size_t size, bool allowExecute)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD oldValue;
|
|
|
|
if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READ : PAGE_READONLY, &oldValue))
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("WriteProtectMemory failed!\nVirtualProtect: {}", GetLastErrorString());
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2017-08-17 19:12:44 +00:00
|
|
|
if (mprotect(ptr, size, allowExecute ? (PROT_READ | PROT_EXEC) : PROT_READ) != 0)
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("WriteProtectMemory failed!\nmprotect: {}", LastStrerrorString());
|
2014-02-23 07:22:32 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute)
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
DWORD oldValue;
|
|
|
|
if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE, &oldValue))
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("UnWriteProtectMemory failed!\nVirtualProtect: {}", GetLastErrorString());
|
2014-02-23 07:22:32 +00:00
|
|
|
#else
|
2017-08-17 19:12:44 +00:00
|
|
|
if (mprotect(ptr, size,
|
|
|
|
allowExecute ? (PROT_READ | PROT_WRITE | PROT_EXEC) : PROT_WRITE | PROT_READ) != 0)
|
|
|
|
{
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("UnWriteProtectMemory failed!\nmprotect: {}", LastStrerrorString());
|
2017-08-17 19:12:44 +00:00
|
|
|
}
|
2014-02-23 07:22:32 +00:00
|
|
|
#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;
|
2020-12-04 16:09:42 +00:00
|
|
|
#elif defined __APPLE__ || defined __FreeBSD__ || defined __OpenBSD__ || defined __NetBSD__
|
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;
|
2020-12-04 16:09:42 +00:00
|
|
|
#elif defined __OpenBSD__ || defined __NetBSD__
|
2020-12-20 22:25:36 +00:00
|
|
|
mib[1] = HW_PHYSMEM64;
|
2015-06-11 05:15:11 +00:00
|
|
|
#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;
|
2017-02-22 17:21:10 +00:00
|
|
|
#elif defined __HAIKU__
|
|
|
|
system_info sysinfo;
|
|
|
|
get_system_info(&sysinfo);
|
|
|
|
return static_cast<size_t>(sysinfo.max_pages * B_PAGE_SIZE);
|
2015-05-16 13:26:11 +00:00
|
|
|
#else
|
|
|
|
struct sysinfo memInfo;
|
|
|
|
sysinfo(&memInfo);
|
|
|
|
return (size_t)memInfo.totalram * memInfo.mem_unit;
|
|
|
|
#endif
|
|
|
|
}
|
2016-08-07 17:03:07 +00:00
|
|
|
|
|
|
|
} // namespace Common
|