1
0
mirror of https://git.code.sf.net/p/fuse-emulator/fuse synced 2026-01-27 01:41:34 +03:00
Files
fuse/debugger/debugger.c
Philip Kendall af0422ccdc Initial commit of Python hooks on breakpoints.
Very much WIP right now, this is a proof of concept rather than anything
intended to go into production.
2018-06-25 21:50:06 +01:00

206 lines
4.6 KiB
C

/* debugger.c: Fuse's monitor/debugger
Copyright (c) 2002-2016 Philip Kendall
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Author contact information:
E-mail: philip-fuse@shadowmagic.org.uk
*/
#include <config.h>
#include "debugger.h"
#include "debugger_internals.h"
#include "event.h"
#include "fuse.h"
#include "infrastructure/startup_manager.h"
#include "memory_pages.h"
#include "mempool.h"
#include "periph.h"
#include "ui/ui.h"
#include "z80/z80.h"
#include "z80/z80_macros.h"
/* The current activity state of the debugger */
enum debugger_mode_t debugger_mode;
/* Which base should we display things in */
int debugger_output_base;
/* Memory pool used by the lexer and parser */
int debugger_memory_pool;
/* The event type used for time breakpoints */
int debugger_breakpoint_event;
/* Fuse's exit code */
static int exit_code = 0;
static int
debugger_init( void *context )
{
debugger_breakpoints = NULL;
debugger_output_base = 16;
debugger_memory_pool = mempool_register_pool();
debugger_breakpoint_event = event_register( debugger_breakpoint_time_fn, "Breakpoint" );
debugger_event_init();
debugger_python_init();
debugger_system_variable_init();
debugger_variable_init();
debugger_reset();
return 0;
}
void
debugger_reset( void )
{
debugger_breakpoint_remove_all();
debugger_mode = DEBUGGER_MODE_INACTIVE;
}
static void
debugger_end( void )
{
debugger_breakpoint_remove_all();
debugger_variable_end();
debugger_system_variable_end();
debugger_python_end();
debugger_event_end();
}
void
debugger_register_startup( void )
{
startup_manager_module dependencies[] = {
STARTUP_MANAGER_MODULE_EVENT,
STARTUP_MANAGER_MODULE_MEMPOOL,
STARTUP_MANAGER_MODULE_SETUID,
};
startup_manager_register( STARTUP_MANAGER_MODULE_DEBUGGER, dependencies,
ARRAY_SIZE( dependencies ), debugger_init, NULL,
debugger_end );
}
/* Activate the debugger */
int
debugger_trap( void )
{
return ui_debugger_activate();
}
/* Step one instruction */
int
debugger_step( void )
{
debugger_mode = DEBUGGER_MODE_HALTED;
ui_debugger_deactivate( 0 );
return 0;
}
/* Step to the next instruction, ignoring CALLs etc */
int
debugger_next( void )
{
size_t length;
/* Find out how long the current instruction is */
debugger_disassemble( NULL, 0, &length, PC );
/* And add a breakpoint after that */
debugger_breakpoint_add_address(
DEBUGGER_BREAKPOINT_TYPE_EXECUTE, memory_source_any, 0, PC + length, 0,
DEBUGGER_BREAKPOINT_LIFE_ONESHOT, NULL
);
debugger_run();
return 0;
}
/* Set debugger_mode so that emulation will occur */
int
debugger_run( void )
{
debugger_mode = debugger_breakpoints ?
DEBUGGER_MODE_ACTIVE :
DEBUGGER_MODE_INACTIVE;
ui_debugger_deactivate( 1 );
return 0;
}
/* Exit from the last CALL etc by setting a oneshot breakpoint at
(SP) and then starting emulation */
int
debugger_breakpoint_exit( void )
{
libspectrum_word target;
target = readbyte_internal( SP ) + 0x100 * readbyte_internal( SP+1 );
if( debugger_breakpoint_add_address(
DEBUGGER_BREAKPOINT_TYPE_EXECUTE, memory_source_any, 0, target, 0,
DEBUGGER_BREAKPOINT_LIFE_ONESHOT, NULL
)
)
return 1;
if( debugger_run() ) return 1;
return 0;
}
/* Poke a value into RAM */
int
debugger_poke( libspectrum_word address, libspectrum_byte value )
{
writebyte_internal( address, value );
return 0;
}
/* Write a value to a port */
int
debugger_port_write( libspectrum_word port, libspectrum_byte value )
{
writeport_internal( port, value );
return 0;
}
/* Exit the emulator */
void
debugger_exit_emulator( debugger_expression *exit_code_expression )
{
fuse_exiting = 1;
exit_code = exit_code_expression ?
debugger_expression_evaluate( exit_code_expression ) : 0;
/* Ensure we break out of the main Z80 loop immediately */
event_add( 0, event_type_null );
debugger_run();
}
int
debugger_get_exit_code( void )
{
return exit_code;
}