diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2019-06-22 01:28:32 +0200 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-06-16 11:53:05 +0200 |
commit | c692287ebab4dfdec16bb0a8ce338a4b6fe2d439 (patch) | |
tree | 227ef520beebbe860696a06948a6d95570f9741e /src/dolphin/MemoryUtil.h | |
parent | aa6ff499f98dfbb5ca9aa8cac27fed813684eb45 (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 |