2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _MEMORYUTIL_H
|
|
|
|
#define _MEMORYUTIL_H
|
|
|
|
|
2013-10-19 16:58:02 -06:00
|
|
|
#include <string>
|
|
|
|
|
2010-07-17 23:15:16 -06:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
2009-09-07 06:40:43 -06:00
|
|
|
|
2008-12-19 14:24:52 -07:00
|
|
|
void* AllocateExecutableMemory(size_t size, bool low = true);
|
|
|
|
void* AllocateMemoryPages(size_t size);
|
|
|
|
void FreeMemoryPages(void* ptr, size_t size);
|
2011-02-25 13:35:05 -07:00
|
|
|
void* AllocateAlignedMemory(size_t size,size_t alignment);
|
|
|
|
void FreeAlignedMemory(void* ptr);
|
2008-12-19 14:24:52 -07:00
|
|
|
void WriteProtectMemory(void* ptr, size_t size, bool executable = false);
|
2009-04-06 12:47:21 -06:00
|
|
|
void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false);
|
2009-09-07 06:40:43 -06:00
|
|
|
std::string MemUsage();
|
2008-12-07 21:46:09 -07:00
|
|
|
|
2009-04-06 12:47:21 -06:00
|
|
|
inline int GetPageSize() { return 4096; }
|
2008-12-07 21:46:09 -07:00
|
|
|
|
|
|
|
#endif
|