Files
dolphin/Source/Core/Common/MemoryUtil.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
896 B
C++
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
// Refer to the license.txt file included.
2008-12-08 04:46:09 +00:00
#pragma once
2008-12-08 04:46:09 +00:00
#include <cstddef>
2013-10-19 18:58:02 -04:00
#include <string>
2016-08-07 13:03:07 -04:00
namespace Common
{
2017-04-14 12:53:32 +02:00
void* AllocateExecutableMemory(size_t size);
// Allows a thread to write to executable memory, but not execute the data.
2021-01-13 06:23:57 -08:00
void JITPageWriteEnableExecuteDisable();
// Allows a thread to execute memory allocated for execution, but not write to it.
2021-01-13 06:23:57 -08:00
void JITPageWriteDisableExecuteEnable();
void* AllocateMemoryPages(size_t size);
void FreeMemoryPages(void* ptr, size_t size);
void* AllocateAlignedMemory(size_t size, size_t alignment);
void FreeAlignedMemory(void* ptr);
void ReadProtectMemory(void* ptr, size_t size);
void WriteProtectMemory(void* ptr, size_t size, bool executable = false);
void UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false);
size_t MemPhysical();
2008-12-08 04:46:09 +00:00
2016-08-07 13:03:07 -04:00
} // namespace Common