summaryrefslogtreecommitdiffstats
path: root/src/core/debugger (follow)
Commit message (Collapse)AuthorAgeFilesLines
* gdb: fix load/save of fp values in a32Liam2024-02-051-2/+2
|
* kernel: fix debugger and process list lifetimeLiam2024-01-133-42/+78
|
* Fix typos in src/core (#12625)Viktor Szépe2024-01-081-22/+22
| | | | | | | | | * Fix typos in src/core * Fix typo correction * Fix indentation of MemoryStateNames * Fix indent
* core: refactor emulated cpu core activationLiam2023-12-043-272/+44
|
* gdbstub: read module information from memory layoutLiam2023-11-111-47/+118
|
* kernel: add KPageTableBaseLiam2023-11-101-44/+58
| | | | Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
* kernel: update KProcessLiam2023-10-222-31/+35
|
* gdbstub: add PermissionLocked to mappings tableLiam2023-10-201-4/+6
|
* gdbserver: use numeric character references for unicodeLiam2023-10-021-2/+15
|
* gdbstub: fixup replaced instruction bytes in memory readsLiam2023-08-141-0/+17
|
* core: reduce TOCTTOU memory accessLiam2023-07-221-6/+3
|
* k_process: PageTable -> GetPageTableLiam2023-07-151-2/+2
|
* memory: rename global memory references to application memoryLiam2023-03-241-17/+17
|
* kernel: use KTypedAddress for addressesLiam2023-03-221-16/+20
|
* kernel: convert KProcess to new styleLiam2023-03-131-1/+1
|
* kernel: convert KThread to new styleLiam2023-03-132-8/+8
|
* service: refactor server architectureLiam2023-02-212-6/+7
| | | | Converts services to have their own processes
* Merge pull request #9796 from liamwhite/currentliamwhite2023-02-151-14/+14
|\ | | | | general: rename CurrentProcess to ApplicationProcess
| * general: rename CurrentProcess to ApplicationProcessLiam2023-02-141-14/+14
| |
* | remove constexpr from virtual functionarades792023-02-152-5/+5
| | | | | | | | Signed-off-by: arades79 <scravers@protonmail.com>
* | use a string view to skip allocationarades792023-02-142-13/+7
| | | | | | | | Signed-off-by: arades79 <scravers@protonmail.com>
* | add static lifetime to constexpr values to force compile time evaluation where possiblearades792023-02-141-2/+2
|/ | | | Signed-off-by: arades79 <scravers@protonmail.com>
* debugger: add host fastmem pointer fetch commandLiam2023-01-131-3/+23
|
* general: fix compile for Apple ClangLiam2022-11-231-0/+1
|
* gdbstub: add ams monitor commandsLiam2022-11-112-0/+152
|
* debugger: allow more than one connection attempt per sessionLiam2022-11-101-68/+93
|
* common: remove "yuzu:" prefix from thread namesLiam2022-10-041-1/+1
|
* kernel: unlayer CPU interrupt handlingLiam2022-07-251-4/+5
|
* 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