| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2008 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <cstddef>
 | 
					
						
							|  |  |  | #include <cstdlib>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-18 23:17:41 -05:00
										 |  |  | #include "Common/CommonFuncs.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-07 20:06:58 -05:00
										 |  |  | #include "Common/CommonTypes.h"
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include "Common/Logging/Log.h"
 | 
					
						
							| 
									
										
										
										
											2014-07-08 14:29:26 +02:00
										 |  |  | #include "Common/MemoryUtil.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-18 23:17:41 -05:00
										 |  |  | #include "Common/MsgHandler.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  | #include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #include "Common/StringUtil.h"
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <sys/mman.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | #include <sys/types.h>
 | 
					
						
							| 
									
										
										
										
											2016-07-17 04:06:38 -06:00
										 |  |  | #if defined __APPLE__ || defined __FreeBSD__ || defined __OpenBSD__
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | #include <sys/sysctl.h>
 | 
					
						
							| 
									
										
										
										
											2017-02-22 12:21:10 -05:00
										 |  |  | #elif defined __HAIKU__
 | 
					
						
							|  |  |  | #include <OS.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #include <sys/sysinfo.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-07 13:03:07 -04:00
										 |  |  | namespace Common | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | // This is purposely not a full wrapper for virtualalloc/mmap, but it
 | 
					
						
							|  |  |  | // provides exactly the primitive operations that Dolphin needs.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-14 12:53:32 +02:00
										 |  |  | void* AllocateExecutableMemory(size_t size) | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(_WIN32)
 | 
					
						
							| 
									
										
										
										
											2017-04-14 14:46:11 +02:00
										 |  |  |   void* ptr = VirtualAlloc(nullptr, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-04-14 12:53:32 +02:00
										 |  |  |   void* ptr = | 
					
						
							|  |  |  |       mmap(nullptr, size, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_ANON | MAP_PRIVATE, -1, 0); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (ptr == MAP_FAILED) | 
					
						
							|  |  |  |     ptr = nullptr; | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-14 12:53:32 +02:00
										 |  |  |   if (ptr == nullptr) | 
					
						
							|  |  |  |     PanicAlert("Failed to allocate executable memory"); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return ptr; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void* AllocateMemoryPages(size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2017-04-14 14:46:11 +02:00
										 |  |  |   void* ptr = VirtualAlloc(nullptr, size, MEM_COMMIT, PAGE_READWRITE); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   void* ptr = mmap(nullptr, size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (ptr == MAP_FAILED) | 
					
						
							|  |  |  |     ptr = nullptr; | 
					
						
							| 
									
										
										
										
											2014-08-10 04:50:58 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (ptr == nullptr) | 
					
						
							|  |  |  |     PanicAlert("Failed to allocate raw memory"); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return ptr; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-15 14:43:31 -05:00
										 |  |  | void* AllocateAlignedMemory(size_t size, size_t alignment) | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   void* ptr = _aligned_malloc(size, alignment); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   void* ptr = nullptr; | 
					
						
							|  |  |  |   if (posix_memalign(&ptr, alignment, size) != 0) | 
					
						
							|  |  |  |     ERROR_LOG(MEMMAP, "Failed to allocate aligned memory"); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (ptr == nullptr) | 
					
						
							|  |  |  |     PanicAlert("Failed to allocate aligned memory"); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   return ptr; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FreeMemoryPages(void* ptr, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (ptr) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     if (!VirtualFree(ptr, 0, MEM_RELEASE)) | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |       PanicAlert("FreeMemoryPages failed!\nVirtualFree: %s", GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     if (munmap(ptr, size) != 0) | 
					
						
							|  |  |  |       PanicAlert("FreeMemoryPages failed!\nmunmap: %s", LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FreeAlignedMemory(void* ptr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   if (ptr) | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     _aligned_free(ptr); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |     free(ptr); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | void ReadProtectMemory(void* ptr, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   DWORD oldValue; | 
					
						
							|  |  |  |   if (!VirtualProtect(ptr, size, PAGE_NOACCESS, &oldValue)) | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     PanicAlert("ReadProtectMemory failed!\nVirtualProtect: %s", GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   if (mprotect(ptr, size, PROT_NONE) != 0) | 
					
						
							|  |  |  |     PanicAlert("ReadProtectMemory failed!\nmprotect: %s", LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | void WriteProtectMemory(void* ptr, size_t size, bool allowExecute) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   DWORD oldValue; | 
					
						
							|  |  |  |   if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READ : PAGE_READONLY, &oldValue)) | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     PanicAlert("WriteProtectMemory failed!\nVirtualProtect: %s", GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   if (mprotect(ptr, size, allowExecute ? (PROT_READ | PROT_EXEC) : PROT_READ) != 0) | 
					
						
							|  |  |  |     PanicAlert("WriteProtectMemory failed!\nmprotect: %s", LastStrerrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   DWORD oldValue; | 
					
						
							|  |  |  |   if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE, &oldValue)) | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |     PanicAlert("UnWriteProtectMemory failed!\nVirtualProtect: %s", GetLastErrorString().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-08-17 20:12:44 +01:00
										 |  |  |   if (mprotect(ptr, size, | 
					
						
							|  |  |  |                allowExecute ? (PROT_READ | PROT_WRITE | PROT_EXEC) : PROT_WRITE | PROT_READ) != 0) | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     PanicAlert("UnWriteProtectMemory failed!\nmprotect: %s", LastStrerrorString().c_str()); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | size_t MemPhysical() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   MEMORYSTATUSEX memInfo; | 
					
						
							|  |  |  |   memInfo.dwLength = sizeof(MEMORYSTATUSEX); | 
					
						
							|  |  |  |   GlobalMemoryStatusEx(&memInfo); | 
					
						
							|  |  |  |   return memInfo.ullTotalPhys; | 
					
						
							| 
									
										
										
										
											2016-07-17 04:06:38 -06:00
										 |  |  | #elif defined __APPLE__ || defined __FreeBSD__ || defined __OpenBSD__
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   int mib[2]; | 
					
						
							|  |  |  |   size_t physical_memory; | 
					
						
							|  |  |  |   mib[0] = CTL_HW; | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   mib[1] = HW_MEMSIZE; | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #elif defined __FreeBSD__
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   mib[1] = HW_REALMEM; | 
					
						
							| 
									
										
										
										
											2016-07-17 04:06:38 -06:00
										 |  |  | #elif defined __OpenBSD__
 | 
					
						
							|  |  |  |   mib[1] = HW_PHYSMEM; | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   size_t length = sizeof(size_t); | 
					
						
							|  |  |  |   sysctl(mib, 2, &physical_memory, &length, NULL, 0); | 
					
						
							|  |  |  |   return physical_memory; | 
					
						
							| 
									
										
										
										
											2017-02-22 12:21:10 -05: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 15:26:11 +02:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2016-06-24 10:43:46 +02:00
										 |  |  |   struct sysinfo memInfo; | 
					
						
							|  |  |  |   sysinfo(&memInfo); | 
					
						
							|  |  |  |   return (size_t)memInfo.totalram * memInfo.mem_unit; | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-07 13:03:07 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | }  // namespace Common
 |