summaryrefslogtreecommitdiffstats
path: root/src/core/debugger (follow)
Commit message (Collapse)AuthorAgeFilesLines
* gdbstub_arch: Directly access SP registerlat9nq2022-06-301-2/+6
| | | | | | | | Currently to access the SP register, RegRead and RegWrite rely on a out-of-bounds array access to reach the next element in a struct. As of writing only git versions of GCC catch this error. Specify the SP register when we want to access it in these functions.
* gdbstub: fix register pokesLiam2022-06-251-0/+1
|
* core/debugger: memory breakpoint supportLiam2022-06-165-26/+151
|
* kernel: implement KProcess suspensionLiam2022-06-141-51/+43
|
* Merge pull request #8446 from liamwhite/cmd-gdbMorph2022-06-135-7/+61
|\ | | | | core/debugger: support operation in yuzu-cmd
| * core/debugger: fix a number of shutdown deadlocksLiam2022-06-105-7/+61
| |
* | core/debugger: allow remote connectionsLiam2022-06-121-1/+1
| |
* | gdbstub_arch: Add missing virtual destructorLioncash2022-06-121-0/+1
|/ | | | | The class is used polymorphically, so it's undefined behavior to delete instances of GDBStubA64 and GDBStubA32 from the base class pointer.
* core/debugger: fix asio write usageLiam2022-06-071-2/+2
|
* core/debugger: fix crash due to incorrect lambda captureLiam2022-06-071-8/+9
|
* gdbstub: add missing library list commandLiam2022-06-041-22/+28
|
* Merge pull request #8410 from liamwhite/thread-namesMai M2022-06-022-14/+158
|\ | | | | gdbstub: Support reading guest thread names
| * core/debugger: Support reading guest thread namesLiam2022-06-022-14/+158
| |
* | Merge pull request #8409 from liamwhite/tdesc-fixMai M2022-06-022-10/+87
|\ \ | |/ |/| gdbstub: fix target descriptions
| * gdbstub: fix target descriptionsLiam2022-06-022-10/+87
| |
* | Merge pull request #8402 from liamwhite/better-stepMorph2022-06-025-42/+134
|\ \ | |/ |/| core/debugger: Improved stepping mechanism and misc fixes
| * core/debugger: Improved stepping mechanism and misc fixesLiam2022-06-015-42/+134
| |
* | Merge pull request #8404 from Morph1984/virtualliamwhite2022-06-013-2/+6
|\ \ | | | | | | core/debugger: Define defaulted virtual destructors
| * | core/debugger: Define defaulted virtual destructorsMorph2022-06-013-2/+6
| |/ | | | | | | Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions.
* / gdbstub: Explicitly cast return type to u8Morph2022-06-011-2/+2
|/ | | | Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8.
* core/debugger: Implement new GDB stub debuggerLiam2022-06-017-0/+1281