summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx/debugconsole.mm
Commit message (Collapse)AuthorAgeFilesLines
* Debugger expression and memory access overhaul AJR2020-05-251-10/+11
| | | | | | | | | | | | | - Memory references in expressions no longer default to the console's visible CPU if no device name was specified, except when entered through the console itself. Expressions in view windows now use the context of the currently selected device instead. - The pcatmem debug command and similar qt mouseover function now produce an error message if the initial address translation fails. Related internal changes (nw) - The debugger_cpu class no longer interprets memory accesses. The existing routines have been moved into symbol_table (which used to invoke them as callbacks), and reimplemented in most other places. Thecode duplication is a bit messy, but could be potentially improved in the future with new utility classes. - The cheat engine no longer needs to hook into the debugger_cpu class or instantiate a dummy instance of it. - The inclusion of debug/express.h within emu.h has been undone. Some debugging structures now need unique_ptr to wrap the resulting incomplete classes; hopefully the performance impact of this is negligible. Another direct consequence is that the breakpoint, watchpoint and registerpoint classes are no longer inside device_debug and have their own source file. - The breakpoint list is now a std::multimap, using the addresses as keys to hopefully expedite lookup. - The visible CPU pointer has been removed from the debugger_cpu class, being now considered a property of the console instead. - Many minor bits of code have been simplified.
* Use std::forward_list for breakpoint and registerpoint lists (nw) AJR2019-09-101-7/+4
|
* Eliminate machine().firstcpu (nw) AJR2018-01-041-1/+1
|
* cocoa debugger: save/restore console split positions Vas Crabb2017-07-211-1/+20
|
* * Save/restore more Cocoa debugger state Vas Crabb2017-07-211-0/+8
| | | | | | * Fix some Cocoa debugger desync issues - Scroll to selection on gaining focus by keyboard (e.g. tab) only - Fixes jump on clicking a memory or disasm view that you've scrolled
* Added basic support for saving/restoring Cocoa debugger window state, ↵ Vas Crabb2017-07-201-0/+51
| | | | compatible with Qt debugger where possible
* Fix OS X build (nw) AJR2017-02-111-0/+1
|
* OS X Cocoa debugger: Improved view scroll behavior. [Curt Coder] Curt Coder2017-01-171-0/+3
|
* Fix OSX build - no idea why it wasn't breaking before (nw) Vas Crabb2016-12-311-1/+1
|
* srcclean (nw) Vas Crabb2016-11-271-17/+17
|
* std::min and std:max instead of MIN and MAX, also some more macros converted ↵ Miodrag Milanovic2016-07-311-4/+4
| | | | to inline functions (nw)
* Major refactoring of debugger core [Ryan Holtz] therealmogminer@gmail.com2016-06-081-10/+11
| | | | | | | | * Eliminate globals/file statics * Remove lots of stuff from global scope * Use std::function for custom command registration * Eliminate some trampolines * Build fixes from Vas Crabb and balr0g
* Fix Clang build (nw) Miodrag Milanovic2016-04-241-5/+5
|
* Various cleanups suggested by static analyzer (nw) Miodrag Milanovic2016-04-241-6/+6
|
* reverting: Miodrag Milanovic2016-01-201-1/+1
| | | | | | | SHA-1: 1f90ceab075c4869298e963bf0a14a0aac2f1caa * tags are now strings (nw) fix start project for custom builds in Visual Studio (nw)
* Revert "Fix OSX build (nw)" Miodrag Milanovic2016-01-201-1/+1
| | | | This reverts commit 8144b878ab0ba1fa2b7b9e5e00c614a9a7e58eb6.
* Fix OSX build (nw) Miodrag Milanovic2016-01-161-1/+1
|
* tags are now strings (nw) Miodrag Milanovic2016-01-161-1/+1
| | | | fix start project for custom builds in Visual Studio (nw)
* renamed m -> mm (nw) Miodrag Milanovic2015-11-081-0/+549