| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2014-07-08 14:29:26 +02:00
										 |  |  | #include "Common/MemoryUtil.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-18 23:17:41 -05:00
										 |  |  | #include "Common/MsgHandler.h"
 | 
					
						
							|  |  |  | #include "Common/Logging/Log.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | #include <psapi.h>
 | 
					
						
							|  |  |  | #include "Common/StringUtil.h"
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <sys/mman.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | #include <sys/types.h>
 | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #if defined __APPLE__ || defined __FreeBSD__
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | #include <sys/sysctl.h>
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include <sys/sysinfo.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12: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 08:22:32 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(_WIN32)
 | 
					
						
							|  |  |  | 	void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12: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 08:22:32 +01:00
										 |  |  | 	void* ptr = mmap(map_hint, size, PROT_READ | PROT_WRITE | PROT_EXEC, | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 		MAP_ANON | MAP_PRIVATE | 
					
						
							|  |  |  | #if defined(_M_X86_64) && defined(MAP_32BIT)
 | 
					
						
							|  |  |  | 		| (low ? MAP_32BIT : 0) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 		, -1, 0); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif /* defined(_WIN32) */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	// printf("Mapped executable memory at %p (size %ld)\n", ptr,
 | 
					
						
							|  |  |  | 	//	(unsigned long)size);
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-31 00:47:44 -05:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	if (ptr == nullptr) | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-07-31 00:47:44 -05:00
										 |  |  | 	if (ptr == MAP_FAILED) | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2015-05-02 11:57:17 +02:00
										 |  |  | 		ptr = nullptr; | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12: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 08:22:32 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | #if _M_X86_64
 | 
					
						
							|  |  |  | 	if ((u64)ptr >= 0x80000000 && low == true) | 
					
						
							|  |  |  | 		PanicAlert("Executable memory ended up above 2GB!"); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void* AllocateMemoryPages(size_t size) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	void* ptr = mmap(nullptr, size, PROT_READ | PROT_WRITE, | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 			MAP_ANON | MAP_PRIVATE, -1, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-10 04:50:58 -04:00
										 |  |  | 	if (ptr == MAP_FAILED) | 
					
						
							|  |  |  | 		ptr = nullptr; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-09 21:14:26 +01:00
										 |  |  | 	if (ptr == nullptr) | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 		PanicAlert("Failed to allocate raw memory"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	void* ptr = _aligned_malloc(size, alignment); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12: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
										 |  |  | 
 | 
					
						
							|  |  |  | 	// printf("Mapped memory at %p (size %ld)\n", ptr,
 | 
					
						
							|  |  |  | 	//	(unsigned long)size);
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ptr == nullptr) | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | 		PanicAlert("Failed to allocate aligned memory"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FreeMemoryPages(void* ptr, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	if (ptr) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		bool error_occurred = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 		if (!VirtualFree(ptr, 0, MEM_RELEASE)) | 
					
						
							|  |  |  | 			error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 		int retval = munmap(ptr, size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (retval != 0) | 
					
						
							|  |  |  | 			error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (error_occurred) | 
					
						
							|  |  |  | 			PanicAlert("FreeMemoryPages failed!\n%s", GetLastErrorMsg().c_str()); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void FreeAlignedMemory(void* ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (ptr) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2014-02-23 23:03:39 +01:00
										 |  |  | 		_aligned_free(ptr); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2014-02-23 23:03:39 +01:00
										 |  |  | 		free(ptr); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | void ReadProtectMemory(void* ptr, size_t size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	bool error_occurred = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	DWORD oldValue; | 
					
						
							|  |  |  | 	if (!VirtualProtect(ptr, size, PAGE_NOACCESS, &oldValue)) | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 		error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	int retval = mprotect(ptr, size, PROT_NONE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (retval != 0) | 
					
						
							|  |  |  | 		error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (error_occurred) | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 		PanicAlert("ReadProtectMemory failed!\n%s", GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2014-09-15 23:03:07 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | void WriteProtectMemory(void* ptr, size_t size, bool allowExecute) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	bool error_occurred = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	DWORD oldValue; | 
					
						
							|  |  |  | 	if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READ : PAGE_READONLY, &oldValue)) | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 		error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	int retval = mprotect(ptr, size, allowExecute ? (PROT_READ | PROT_EXEC) : PROT_READ); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (retval != 0) | 
					
						
							|  |  |  | 		error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (error_occurred) | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 		PanicAlert("WriteProtectMemory failed!\n%s", GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 	bool error_occurred = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	DWORD oldValue; | 
					
						
							|  |  |  | 	if (!VirtualProtect(ptr, size, allowExecute ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE, &oldValue)) | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 		error_occurred = true; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12: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 08:22:32 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-06-14 16:06:26 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (error_occurred) | 
					
						
							| 
									
										
										
										
											2015-04-07 22:15:21 +02:00
										 |  |  | 		PanicAlert("UnWriteProtectMemory failed!\n%s", GetLastErrorMsg().c_str()); | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01: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 16:06:26 +12:00
										 |  |  | 	if (nullptr == hProcess) return "MemUsage Error"; | 
					
						
							| 
									
										
										
										
											2014-02-23 08:22:32 +01: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 15:26:11 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | size_t MemPhysical() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 	MEMORYSTATUSEX memInfo; | 
					
						
							|  |  |  | 	memInfo.dwLength = sizeof(MEMORYSTATUSEX); | 
					
						
							|  |  |  | 	GlobalMemoryStatusEx(&memInfo); | 
					
						
							|  |  |  | 	return memInfo.ullTotalPhys; | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #elif defined __APPLE__ || defined __FreeBSD__
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | 	int mib[2]; | 
					
						
							|  |  |  | 	size_t physical_memory; | 
					
						
							|  |  |  | 	mib[0] = CTL_HW; | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #ifdef __APPLE__
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02:00
										 |  |  | 	mib[1] = HW_MEMSIZE; | 
					
						
							| 
									
										
										
										
											2015-06-10 22:15:11 -07:00
										 |  |  | #elif defined __FreeBSD__
 | 
					
						
							|  |  |  | 	mib[1] = HW_REALMEM; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-05-16 15:26:11 +02: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
 | 
					
						
							|  |  |  | } |