2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
2013-10-19 22:58:02 +00:00
|
|
|
#include <string>
|
|
|
|
|
2008-12-19 21:24:52 +00:00
|
|
|
void* AllocateExecutableMemory(size_t size, bool low = true);
|
|
|
|
void* AllocateMemoryPages(size_t size);
|
|
|
|
void FreeMemoryPages(void* ptr, size_t size);
|
2011-02-25 20:35:05 +00:00
|
|
|
void* AllocateAlignedMemory(size_t size,size_t alignment);
|
|
|
|
void FreeAlignedMemory(void* ptr);
|
2008-12-19 21:24:52 +00:00
|
|
|
void WriteProtectMemory(void* ptr, size_t size, bool executable = false);
|
2009-04-06 18:47:21 +00:00
|
|
|
void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false);
|
2009-09-07 12:40:43 +00:00
|
|
|
std::string MemUsage();
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-04-06 18:47:21 +00:00
|
|
|
inline int GetPageSize() { return 4096; }
|