diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2019-06-22 01:28:32 +0200 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-04-26 13:02:53 +0200 |
commit | c5c342c0091d9bf36500950a21585c5c98dd7d9d (patch) | |
tree | 79abf542c763cce60ffe650e300bfee31194ba8a /src/dolphin/MemoryUtil.h | |
parent | d2f05cd30fcd530655649549452c34dea1969281 (diff) |
JIT: base
all instructions are interpreted
Diffstat (limited to 'src/dolphin/MemoryUtil.h')
-rw-r--r-- | src/dolphin/MemoryUtil.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/dolphin/MemoryUtil.h b/src/dolphin/MemoryUtil.h new file mode 100644 index 0000000..607b7a8 --- /dev/null +++ b/src/dolphin/MemoryUtil.h @@ -0,0 +1,22 @@ +// Copyright 2008 Dolphin Emulator Project +// Licensed under GPLv2+ +// Refer to the license_dolphin.txt file included. + +#pragma once + +#include <cstddef> +#include <string> + +namespace Common +{ +void* AllocateExecutableMemory(size_t size); +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(); + +} // namespace Common |