core/debugger: Implement new GDB stub debugger
This commit is contained in:
parent
7f1bf5c7a7
commit
2ee161a0bf
27 changed files with 1500 additions and 42 deletions
src/core
|
@ -95,6 +95,17 @@ public:
|
|||
*/
|
||||
[[nodiscard]] bool IsValidVirtualAddress(VAddr vaddr) const;
|
||||
|
||||
/**
|
||||
* Checks whether or not the supplied range of addresses are all valid
|
||||
* virtual addresses for the current process.
|
||||
*
|
||||
* @param base The address to begin checking.
|
||||
* @param size The amount of bytes to check.
|
||||
*
|
||||
* @returns True if all bytes in the given range are valid, false otherwise.
|
||||
*/
|
||||
[[nodiscard]] bool IsValidVirtualAddressRange(VAddr base, u64 size) const;
|
||||
|
||||
/**
|
||||
* Gets a pointer to the given address.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue