summaryrefslogtreecommitdiff
path: root/src/core/debugger
AgeCommit message (Collapse)Author
2025-02-16build: upgrade fmt and SDL2Zephyron
Update fmt library to version 11.0.2 and make necessary adjustments: - Replace fmt/format.h includes with fmt/ranges.h - Add const qualifiers to formatter::format functions - Update CMake to require fmt version 11 Additional dependency updates: - Update SDL2 bundled version from 2.28.2 to 2.32.0 - Update catch2 to version 3.8.0 - Update vcpkg baseline to c82f74667287d3dc386bce81e44964370c91a289
2025-01-14Revert incorrect copyright attribution for non-contributed filesZephyron
- In commit b3facaa6bb30cdc39f2b7d632fef1e3bfeee7785, the copyright header was updated to include "Citron Homebrew Project" across multiple files, regardless of whether any contributions were made. - This commit removes the incorrect attribution and reverts the copyright header to its previous state. - Copyright attribution should only be added when meaningful contributions have been made to the file. - This commit ensures proper compliance with copyright standards and maintains correct attribution to the respective contributors. - Special thanks to Tachi for pointing out the need for these corrections and ensuring that proper attribution practices are followed.
2024-12-31chore: update project references and add Citron copyrightZephyron
- Replaced all references to the old project name with Citron. - Added Citron copyright information alongside existing notices in all files.
2024-02-04gdb: fix load/save of fp values in a32Liam
2024-01-12kernel: fix debugger and process list lifetimeLiam
2024-01-08Fix typos in src/core (#12625)Viktor Szépe
* Fix typos in src/core * Fix typo correction * Fix indentation of MemoryStateNames * Fix indent
2023-12-04core: refactor emulated cpu core activationLiam
2023-11-11gdbstub: read module information from memory layoutLiam
2023-11-10kernel: add KPageTableBaseLiam
Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
2023-10-21kernel: update KProcessLiam
2023-10-20gdbstub: add PermissionLocked to mappings tableLiam
2023-10-01gdbserver: use numeric character references for unicodeLiam
2023-08-14gdbstub: fixup replaced instruction bytes in memory readsLiam
2023-07-22core: reduce TOCTTOU memory accessLiam
2023-07-14k_process: PageTable -> GetPageTableLiam
2023-03-23memory: rename global memory references to application memoryLiam
2023-03-22kernel: use KTypedAddress for addressesLiam
2023-03-12kernel: convert KProcess to new styleLiam
2023-03-12kernel: convert KThread to new styleLiam
2023-02-21service: refactor server architectureLiam
Converts services to have their own processes
2023-02-15Merge pull request #9796 from liamwhite/currentliamwhite
general: rename CurrentProcess to ApplicationProcess
2023-02-14remove constexpr from virtual functionarades79
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14use a string view to skip allocationarades79
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation ↵arades79
where possible Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-13general: rename CurrentProcess to ApplicationProcessLiam
2023-01-12debugger: add host fastmem pointer fetch commandLiam
2022-11-22general: fix compile for Apple ClangLiam
2022-11-10gdbstub: add ams monitor commandsLiam
2022-11-10debugger: allow more than one connection attempt per sessionLiam
2022-10-03common: remove "yuzu:" prefix from thread namesLiam
2022-07-25kernel: unlayer CPU interrupt handlingLiam
2022-06-30gdbstub_arch: Directly access SP registerlat9nq
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-25gdbstub: fix register pokesLiam
2022-06-16core/debugger: memory breakpoint supportLiam
2022-06-14kernel: implement KProcess suspensionLiam
2022-06-13Merge pull request #8446 from liamwhite/cmd-gdbMorph
core/debugger: support operation in yuzu-cmd
2022-06-12core/debugger: allow remote connectionsLiam
2022-06-11gdbstub_arch: Add missing virtual destructorLioncash
The class is used polymorphically, so it's undefined behavior to delete instances of GDBStubA64 and GDBStubA32 from the base class pointer.
2022-06-10core/debugger: fix a number of shutdown deadlocksLiam
2022-06-06core/debugger: fix asio write usageLiam
2022-06-06core/debugger: fix crash due to incorrect lambda captureLiam
2022-06-03gdbstub: add missing library list commandLiam
2022-06-02Merge pull request #8410 from liamwhite/thread-namesMai M
gdbstub: Support reading guest thread names
2022-06-01core/debugger: Support reading guest thread namesLiam
2022-06-01Merge pull request #8409 from liamwhite/tdesc-fixMai M
gdbstub: fix target descriptions
2022-06-01Merge pull request #8402 from liamwhite/better-stepMorph
core/debugger: Improved stepping mechanism and misc fixes
2022-06-01gdbstub: fix target descriptionsLiam
2022-06-01Merge pull request #8404 from Morph1984/virtualliamwhite
core/debugger: Define defaulted virtual destructors
2022-06-01core/debugger: Define defaulted virtual destructorsMorph
Resolves an MSVC warning where a virtual destructor is not defined in the base class with virtual functions.
2022-06-01core/debugger: Improved stepping mechanism and misc fixesLiam