2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-20 04:11:52 +01:00
|
|
|
#include <cstddef>
|
2013-10-20 00:58:02 +02:00
|
|
|
#include <string>
|
|
|
|
|
2016-08-07 19:03:07 +02:00
|
|
|
namespace Common
|
|
|
|
{
|
2017-04-14 12:53:32 +02:00
|
|
|
void* AllocateExecutableMemory(size_t size);
|
2021-05-15 16:10:10 +02:00
|
|
|
|
|
|
|
// These two functions control the executable/writable state of the W^X memory
|
|
|
|
// allocations. More detailed documentation about them is in the .cpp file.
|
|
|
|
// In general where applicable the ScopedJITPageWriteAndNoExecute wrapper
|
|
|
|
// should be used to prevent bugs from not pairing up the calls properly.
|
|
|
|
|
2021-01-17 05:31:48 +01:00
|
|
|
// Allows a thread to write to executable memory, but not execute the data.
|
2021-01-13 15:23:57 +01:00
|
|
|
void JITPageWriteEnableExecuteDisable();
|
2021-01-17 05:31:48 +01:00
|
|
|
// Allows a thread to execute memory allocated for execution, but not write to it.
|
2021-01-13 15:23:57 +01:00
|
|
|
void JITPageWriteDisableExecuteEnable();
|
2021-05-15 16:10:10 +02:00
|
|
|
// RAII Wrapper around JITPageWrite*Execute*(). When this is in scope the thread can
|
|
|
|
// write to executable memory but not execute it.
|
|
|
|
struct ScopedJITPageWriteAndNoExecute
|
|
|
|
{
|
|
|
|
ScopedJITPageWriteAndNoExecute() { JITPageWriteEnableExecuteDisable(); }
|
|
|
|
~ScopedJITPageWriteAndNoExecute() { JITPageWriteDisableExecuteEnable(); }
|
|
|
|
};
|
2008-12-19 22:24:52 +01:00
|
|
|
void* AllocateMemoryPages(size_t size);
|
2023-07-31 14:37:35 +02:00
|
|
|
bool FreeMemoryPages(void* ptr, size_t size);
|
2011-02-25 21:35:05 +01:00
|
|
|
void* AllocateAlignedMemory(size_t size, size_t alignment);
|
|
|
|
void FreeAlignedMemory(void* ptr);
|
2023-07-31 14:37:35 +02:00
|
|
|
bool ReadProtectMemory(void* ptr, size_t size);
|
|
|
|
bool WriteProtectMemory(void* ptr, size_t size, bool executable = false);
|
|
|
|
bool UnWriteProtectMemory(void* ptr, size_t size, bool allowExecute = false);
|
2015-05-16 15:26:11 +02:00
|
|
|
size_t MemPhysical();
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2016-08-07 19:03:07 +02:00
|
|
|
} // namespace Common
|