2010-06-11 15:38:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-02-24 15:12:40 +00:00
|
|
|
#include "../SaveState_Structs_v1.h" // For SS_CARD_MOCKINGBOARD
|
|
|
|
#include "../Common.h"
|
2014-08-13 20:30:35 +00:00
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
#include "Debugger_Types.h"
|
|
|
|
#include "Debugger_DisassemblerData.h"
|
2021-03-17 20:32:19 +00:00
|
|
|
#include "Debugger_Disassembler.h"
|
2010-06-11 15:38:22 +00:00
|
|
|
#include "Debugger_Range.h"
|
|
|
|
#include "Debugger_Parser.h"
|
|
|
|
#include "Debugger_Console.h"
|
|
|
|
#include "Debugger_Assembler.h"
|
|
|
|
#include "Debugger_Help.h"
|
|
|
|
#include "Debugger_Display.h"
|
|
|
|
#include "Debugger_Symbols.h"
|
2014-08-13 21:25:22 +00:00
|
|
|
#include "Util_MemoryTextFile.h"
|
2010-06-11 15:38:22 +00:00
|
|
|
|
|
|
|
// Globals __________________________________________________________________
|
|
|
|
|
|
|
|
// All (Global)
|
|
|
|
extern bool g_bDebuggerEatKey;
|
|
|
|
|
|
|
|
// Benchmarking
|
|
|
|
extern DWORD extbench;
|
|
|
|
|
|
|
|
// Bookmarks
|
|
|
|
extern int g_nBookmarks;
|
|
|
|
extern Bookmark_t g_aBookmarks[ MAX_BOOKMARKS ];
|
|
|
|
|
|
|
|
// Breakpoints
|
2011-02-21 23:54:09 +00:00
|
|
|
enum BreakpointHit_t
|
|
|
|
{
|
2019-10-22 20:31:53 +00:00
|
|
|
BP_HIT_NONE = 0
|
|
|
|
, BP_HIT_INVALID = (1 << 0)
|
|
|
|
, BP_HIT_OPCODE = (1 << 1)
|
|
|
|
, BP_HIT_REG = (1 << 2)
|
|
|
|
, BP_HIT_MEM = (1 << 3)
|
|
|
|
, BP_HIT_MEMR = (1 << 4)
|
|
|
|
, BP_HIT_MEMW = (1 << 5)
|
|
|
|
, BP_HIT_PC_READ_FLOATING_BUS_OR_IO_MEM = (1 << 6)
|
2021-10-16 15:57:00 +00:00
|
|
|
, BP_HIT_INTERRUPT = (1 << 7)
|
2021-12-09 21:22:13 +00:00
|
|
|
, BP_DMA_TO_IO_MEM = (1 << 8)
|
|
|
|
, BP_DMA_FROM_IO_MEM = (1 << 9)
|
2022-06-03 14:34:37 +00:00
|
|
|
, BP_DMA_TO_MEM = (1 << 10)
|
|
|
|
, BP_DMA_FROM_MEM = (1 << 11)
|
2022-10-08 18:17:47 +00:00
|
|
|
, BP_HIT_VIDEO_POS = (1 << 12)
|
2011-02-21 23:54:09 +00:00
|
|
|
};
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
extern int g_nBreakpoints;
|
|
|
|
extern Breakpoint_t g_aBreakpoints[ MAX_BREAKPOINTS ];
|
|
|
|
|
|
|
|
extern const char *g_aBreakpointSource [ NUM_BREAKPOINT_SOURCES ];
|
|
|
|
extern const TCHAR *g_aBreakpointSymbols[ NUM_BREAKPOINT_OPERATORS ];
|
|
|
|
|
2011-02-21 23:54:09 +00:00
|
|
|
extern int g_nDebugBreakOnInvalid ;
|
|
|
|
extern int g_iDebugBreakOnOpcode ;
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
// Commands
|
2011-01-30 17:39:19 +00:00
|
|
|
void VerifyDebuggerCommandTable();
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
extern const int NUM_COMMANDS_WITH_ALIASES; // = sizeof(g_aCommands) / sizeof (Command_t); // Determined at compile-time ;-)
|
|
|
|
extern int g_iCommand; // last command
|
|
|
|
|
|
|
|
extern Command_t g_aCommands[];
|
|
|
|
extern Command_t g_aParameters[];
|
|
|
|
|
|
|
|
class commands_functor_compare
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool operator() ( const Command_t & rLHS, const Command_t & rRHS ) const
|
|
|
|
{
|
|
|
|
// return true if lhs<rhs
|
|
|
|
return (_tcscmp( rLHS.m_sName, rRHS.m_sName ) <= 0) ? true : false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Config - FileName
|
2019-09-06 16:34:25 +00:00
|
|
|
extern std::string g_sFileNameConfig;
|
2010-06-11 15:38:22 +00:00
|
|
|
|
|
|
|
// Cursor
|
|
|
|
extern WORD g_nDisasmTopAddress ;
|
|
|
|
extern WORD g_nDisasmBotAddress ;
|
|
|
|
extern WORD g_nDisasmCurAddress ;
|
|
|
|
|
|
|
|
extern bool g_bDisasmCurBad ;
|
|
|
|
extern int g_nDisasmCurLine ; // Aligned to Top or Center
|
|
|
|
extern int g_iDisasmCurState ;
|
|
|
|
|
|
|
|
extern int g_nDisasmWinHeight;
|
|
|
|
|
|
|
|
extern const int WINDOW_DATA_BYTES_PER_LINE;
|
|
|
|
|
2021-04-23 19:39:24 +00:00
|
|
|
extern int g_nDisasmDisplayLines;
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
// Config - Disassembly
|
|
|
|
extern bool g_bConfigDisasmAddressView ;
|
2017-08-25 14:22:08 +00:00
|
|
|
extern int g_bConfigDisasmClick ; // GH#462
|
2010-06-11 15:38:22 +00:00
|
|
|
extern bool g_bConfigDisasmAddressColon ;
|
|
|
|
extern bool g_bConfigDisasmOpcodesView ;
|
|
|
|
extern bool g_bConfigDisasmOpcodeSpaces ;
|
|
|
|
extern int g_iConfigDisasmTargets ;
|
|
|
|
extern int g_iConfigDisasmBranchType ;
|
|
|
|
extern int g_bConfigDisasmImmediateChar;
|
|
|
|
// Config - Info
|
|
|
|
extern bool g_bConfigInfoTargetPointer ;
|
|
|
|
|
|
|
|
// Disassembly
|
|
|
|
extern int g_aDisasmTargets[ MAX_DISPLAY_LINES ];
|
|
|
|
|
|
|
|
// Font
|
|
|
|
extern int g_nFontHeight;
|
|
|
|
extern int g_iFontSpacing;
|
|
|
|
|
|
|
|
// Memory
|
|
|
|
extern MemoryDump_t g_aMemDump[ NUM_MEM_DUMPS ];
|
|
|
|
|
|
|
|
// extern MemorySearchArray_t g_vMemSearchMatches;
|
2014-08-14 19:29:01 +00:00
|
|
|
extern std::vector<int> g_vMemorySearchResults;
|
2010-06-11 15:38:22 +00:00
|
|
|
|
|
|
|
// Source Level Debugging
|
2019-09-06 16:34:25 +00:00
|
|
|
extern std::string g_aSourceFileName;
|
2010-06-11 15:38:22 +00:00
|
|
|
extern MemoryTextFile_t g_AssemblerSourceBuffer;
|
|
|
|
|
|
|
|
extern int g_iSourceDisplayStart ;
|
|
|
|
extern int g_nSourceAssembleBytes ;
|
|
|
|
extern int g_nSourceAssemblySymbols;
|
|
|
|
|
|
|
|
// Version
|
|
|
|
extern const int DEBUGGER_VERSION;
|
|
|
|
|
|
|
|
// Watches
|
|
|
|
extern int g_nWatches;
|
|
|
|
extern Watches_t g_aWatches[ MAX_WATCHES ];
|
|
|
|
|
|
|
|
// Window
|
|
|
|
extern int g_iWindowLast;
|
|
|
|
extern int g_iWindowThis;
|
|
|
|
extern WindowSplit_t g_aWindowConfig[ NUM_WINDOWS ];
|
|
|
|
|
|
|
|
// Zero Page
|
|
|
|
extern int g_nZeroPagePointers;
|
|
|
|
extern ZeroPagePointers_t g_aZeroPagePointers[ MAX_ZEROPAGE_POINTERS ]; // TODO: use vector<> ?
|
|
|
|
|
|
|
|
// Prototypes _______________________________________________________________
|
|
|
|
|
2021-04-23 19:39:24 +00:00
|
|
|
void WindowUpdateSizes();
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
// Bookmarks
|
2020-05-19 15:28:44 +00:00
|
|
|
int Bookmark_Find( const WORD nAddress );
|
2010-06-11 15:38:22 +00:00
|
|
|
|
|
|
|
// Breakpoints
|
2011-02-21 23:54:09 +00:00
|
|
|
int CheckBreakpointsIO ();
|
|
|
|
int CheckBreakpointsReg ();
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
bool GetBreakpointInfo ( WORD nOffset, bool & bBreakpointActive_, bool & bBreakpointEnable_ );
|
|
|
|
|
|
|
|
// Source Level Debugging
|
|
|
|
int FindSourceLine( WORD nAddress );
|
|
|
|
|
2014-08-25 15:35:43 +00:00
|
|
|
// Memory
|
|
|
|
size_t Util_GetTextScreen( char* &pText_ );
|
|
|
|
void Util_CopyTextToClipboard( const size_t nSize, const char *pText );
|
|
|
|
|
|
|
|
// Main
|
2010-06-11 15:38:22 +00:00
|
|
|
Update_t DebuggerProcessCommand( const bool bEchoConsoleInput );
|
|
|
|
|
|
|
|
// Prototypes _______________________________________________________________
|
|
|
|
|
2016-11-06 14:23:23 +00:00
|
|
|
bool DebugGetVideoMode(UINT* pVideoMode);
|
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
void DebugBegin ();
|
2017-02-25 22:32:46 +00:00
|
|
|
void DebugExitDebugger ();
|
2019-12-20 09:15:24 +00:00
|
|
|
void DebugContinueStepping(const bool bCallerWillUpdateDisplay = false);
|
2017-04-22 16:13:41 +00:00
|
|
|
void DebugStopStepping(void);
|
2010-06-11 15:38:22 +00:00
|
|
|
void DebugDestroy ();
|
2017-04-22 19:52:21 +00:00
|
|
|
void DebugDisplay ( BOOL bInitDisasm = FALSE );
|
2010-06-11 15:38:22 +00:00
|
|
|
void DebugInitialize ();
|
2019-12-20 09:15:24 +00:00
|
|
|
void DebugReset(void);
|
2017-04-22 16:13:41 +00:00
|
|
|
|
2010-06-11 15:38:22 +00:00
|
|
|
void DebuggerInputConsoleChar( TCHAR ch );
|
|
|
|
void DebuggerProcessKey( int keycode );
|
|
|
|
|
|
|
|
void DebuggerUpdate();
|
|
|
|
void DebuggerCursorNext();
|
|
|
|
|
|
|
|
void DebuggerMouseClick( int x, int y );
|
2017-02-25 22:32:46 +00:00
|
|
|
|
|
|
|
bool IsDebugSteppingAtFullSpeed(void);
|
2022-06-03 14:34:37 +00:00
|
|
|
void DebuggerBreakOnDmaToOrFromIoMemory(WORD nAddress, bool isDmaToMemory);
|
|
|
|
bool DebuggerCheckMemBreakpoints(WORD nAddress, WORD nSize, bool isDmaToMemory);
|