mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
decode_x64_reg_op: MOVUPS support
This commit is contained in:
parent
8e1991c1e1
commit
16b7d204d2
3 changed files with 18 additions and 5 deletions
|
@ -80,6 +80,8 @@ namespace vm
|
|||
std::array<atomic_t<u8>, 0x100000000ull / 4096> g_pages = {}; // information about every page
|
||||
|
||||
const thread_ctrl_t* const INVALID_THREAD = reinterpret_cast<const thread_ctrl_t*>(~0ull);
|
||||
|
||||
//using reservation_mutex_t = std::mutex;
|
||||
|
||||
class reservation_mutex_t
|
||||
{
|
||||
|
|
|
@ -181,7 +181,7 @@ namespace vm
|
|||
const u32 size; // total size
|
||||
const u64 flags; // currently unused
|
||||
|
||||
atomic_t<u32> used{}; // amount of memory used, may be increased manually prevent some memory from allocating
|
||||
atomic_t<u32> used{}; // amount of memory used, may be increased manually to prevent some memory from allocating
|
||||
|
||||
// Search and map memory (don't pass alignment smaller than 4096)
|
||||
u32 alloc(u32 size, u32 align = 4096);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue