| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2024-02-04 | gdb: fix load/save of fp values in a32 | 1 | -2/+2 | ||
| 2024-01-12 | kernel: fix debugger and process list lifetime | 3 | -42/+78 | ||
| 2024-01-08 | Fix typos in src/core (#12625) | 1 | -22/+22 | ||
| * Fix typos in src/core * Fix typo correction * Fix indentation of MemoryStateNames * Fix indent | |||||
| 2023-12-04 | core: refactor emulated cpu core activation | 3 | -272/+44 | ||
| 2023-11-11 | gdbstub: read module information from memory layout | 1 | -47/+118 | ||
| 2023-11-10 | kernel: add KPageTableBase | 1 | -44/+58 | ||
| Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk> | |||||
| 2023-10-21 | kernel: update KProcess | 2 | -31/+35 | ||
| 2023-10-20 | gdbstub: add PermissionLocked to mappings table | 1 | -4/+6 | ||
| 2023-10-01 | gdbserver: use numeric character references for unicode | 1 | -2/+15 | ||
| 2023-08-14 | gdbstub: fixup replaced instruction bytes in memory reads | 1 | -0/+17 | ||
| 2023-07-22 | core: reduce TOCTTOU memory access | 1 | -6/+3 | ||
| 2023-07-14 | k_process: PageTable -> GetPageTable | 1 | -2/+2 | ||
| 2023-03-23 | memory: rename global memory references to application memory | 1 | -17/+17 | ||
| 2023-03-22 | kernel: use KTypedAddress for addresses | 1 | -16/+20 | ||
| 2023-03-12 | kernel: convert KProcess to new style | 1 | -1/+1 | ||
| 2023-03-12 | kernel: convert KThread to new style | 2 | -8/+8 | ||
| 2023-02-21 | service: refactor server architecture | 2 | -6/+7 | ||
| Converts services to have their own processes | |||||
| 2023-02-14 | remove constexpr from virtual function | 2 | -5/+5 | ||
| Signed-off-by: arades79 <scravers@protonmail.com> | |||||
| 2023-02-14 | use a string view to skip allocation | 2 | -13/+7 | ||
| Signed-off-by: arades79 <scravers@protonmail.com> | |||||
| 2023-02-14 | add static lifetime to constexpr values to force compile time evaluation ↵ | 1 | -2/+2 | ||
| where possible Signed-off-by: arades79 <scravers@protonmail.com> | |||||
| 2023-02-13 | general: rename CurrentProcess to ApplicationProcess | 1 | -14/+14 | ||
| 2023-01-12 | debugger: add host fastmem pointer fetch command | 1 | -3/+23 | ||
| 2022-11-22 | general: fix compile for Apple Clang | 1 | -0/+1 | ||
| 2022-11-10 | gdbstub: add ams monitor commands | 2 | -0/+152 | ||
| 2022-11-10 | debugger: allow more than one connection attempt per session | 1 | -68/+93 | ||
| 2022-10-03 | common: remove "yuzu:" prefix from thread names | 1 | -1/+1 | ||
| 2022-07-25 | kernel: unlayer CPU interrupt handling | 1 | -4/+5 | ||
| 2022-06-30 | gdbstub_arch: Directly access SP register | 1 | -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. | |||||
| 2022-06-25 | gdbstub: fix register pokes | 1 | -0/+1 | ||
| 2022-06-16 | core/debugger: memory breakpoint support | 5 | -26/+151 | ||
| 2022-06-14 | kernel: implement KProcess suspension | 1 | -51/+43 | ||
| 2022-06-12 | core/debugger: allow remote connections | 1 | -1/+1 | ||
| 2022-06-11 | gdbstub_arch: Add missing virtual destructor | 1 | -0/+1 | ||
| The class is used polymorphically, so it's undefined behavior to delete instances of GDBStubA64 and GDBStubA32 from the base class pointer. | |||||
| 2022-06-10 | core/debugger: fix a number of shutdown deadlocks | 5 | -7/+61 | ||
| 2022-06-06 | core/debugger: fix asio write usage | 1 | -2/+2 | ||
| 2022-06-06 | core/debugger: fix crash due to incorrect lambda capture | 1 | -8/+9 | ||
| 2022-06-03 | gdbstub: add missing library list command | 1 | -22/+28 | ||
| 2022-06-01 | core/debugger: Support reading guest thread names | 2 | -14/+158 | ||
| 2022-06-01 | gdbstub: fix target descriptions | 2 | -10/+87 | ||
| 2022-06-01 | core/debugger: Define defaulted virtual destructors | 3 | -2/+6 | ||
| Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions. | |||||
| 2022-06-01 | core/debugger: Improved stepping mechanism and misc fixes | 5 | -42/+134 | ||
| 2022-06-01 | gdbstub: Explicitly cast return type to u8 | 1 | -2/+2 | ||
| Otherwise, the addition promotes the returned value to an int instead of keeping it as a u8. | |||||
| 2022-06-01 | core/debugger: Implement new GDB stub debugger | 7 | -0/+1281 | ||