rpcs3/Utilities/VirtualMemory.h

36 lines
892 B
C
Raw Normal View History

#pragma once
2017-03-13 09:40:54 +00:00
namespace utils
{
2017-03-19 12:50:56 +00:00
// Memory protection type
enum class protection
{
rw, // Read + write (default)
ro, // Read only
no, // No access
wx, // Read + write + execute
rx, // Read + execute
};
/**
2016-06-27 16:34:08 +00:00
* Reserve `size` bytes of virtual memory and returns it.
* The memory should be commited before usage.
*/
2017-03-19 12:50:56 +00:00
void* memory_reserve(std::size_t size, void* use_addr = nullptr);
/**
2016-06-27 16:34:08 +00:00
* Commit `size` bytes of virtual memory starting at pointer.
* That is, bake reserved memory with physical memory.
* pointer should belong to a range of reserved memory.
*/
2017-03-19 12:50:56 +00:00
void memory_commit(void* pointer, std::size_t size, protection prot = protection::rw);
/**
2016-06-27 16:34:08 +00:00
* Decommit all memory committed via commit_page_memory.
*/
2017-03-13 09:40:54 +00:00
void memory_decommit(void* pointer, std::size_t size);
2017-03-19 12:50:56 +00:00
// Set memory protection
2017-03-13 09:40:54 +00:00
void memory_protect(void* pointer, std::size_t size, protection prot);
2016-06-27 16:34:08 +00:00
}