arm: Implement native code execution backend
This commit is contained in:
parent
dee5002355
commit
19619b1b14
31 changed files with 1803 additions and 51 deletions
|
@ -189,6 +189,11 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
void EnableDirectMappedAddress() {
|
||||
// TODO
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
||||
const size_t backing_size; ///< Size of the backing memory in bytes
|
||||
const size_t virtual_size; ///< Size of the virtual address placeholder in bytes
|
||||
|
||||
|
@ -340,11 +345,6 @@ private:
|
|||
return false;
|
||||
}
|
||||
|
||||
void EnableDirectMappedAddress() {
|
||||
// TODO
|
||||
UNREACHABLE();
|
||||
}
|
||||
|
||||
HANDLE process{}; ///< Current process handle
|
||||
HANDLE backing_handle{}; ///< File based backing memory
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue