2012-11-01 16:19:01 +01:00
|
|
|
// NOTE: Apologies for the quality of this code, this is really from pre-opensource Dolphin - that is, 2003.
|
|
|
|
|
|
|
|
#ifndef _DISASM_H
|
|
|
|
#define _DISASM_H
|
|
|
|
|
|
|
|
#include "../W32Util/DialogManager.h"
|
|
|
|
#include "CtrlDisasmView.h"
|
|
|
|
#include "CPURegsInterface.h"
|
2013-06-30 15:51:50 -07:00
|
|
|
#include "Globals.h"
|
|
|
|
#include "Core/CPU.h"
|
|
|
|
#include "Core/MIPS/MIPSDebugInterface.h"
|
|
|
|
#include "Core/Debugger/Breakpoints.h"
|
|
|
|
#include <vector>
|
2012-11-01 16:19:01 +01:00
|
|
|
|
2012-11-17 22:44:29 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
2013-06-29 10:54:33 -07:00
|
|
|
// Takes lParam for debug mode, zero or non zero.
|
|
|
|
const int WM_DISASM_SETDEBUG = WM_APP + 0;
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
class CDisasm : public Dialog
|
|
|
|
{
|
|
|
|
private:
|
2013-06-28 21:33:47 -07:00
|
|
|
RECT defaultRect;
|
|
|
|
RECT defaultBreakpointRect;
|
2012-11-01 16:19:01 +01:00
|
|
|
RECT regRect;
|
|
|
|
RECT disRect;
|
2013-06-27 21:07:49 +02:00
|
|
|
RECT breakpointRect;
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
DebugInterface *cpu;
|
2013-06-28 00:26:04 +02:00
|
|
|
u64 lastTicks;
|
|
|
|
|
2013-06-30 15:51:50 -07:00
|
|
|
std::vector<BreakPoint> displayedBreakPoints_;
|
|
|
|
std::vector<MemCheck> displayedMemChecks_;
|
|
|
|
|
2012-11-01 16:19:01 +01:00
|
|
|
BOOL DlgProc(UINT message, WPARAM wParam, LPARAM lParam);
|
2013-06-26 00:15:16 -07:00
|
|
|
void UpdateSize(WORD width, WORD height);
|
|
|
|
void SavePosition();
|
2013-06-27 21:07:49 +02:00
|
|
|
void updateBreakpointList();
|
|
|
|
void handleBreakpointNotify(LPARAM lParam);
|
|
|
|
void gotoBreakpointAddress(int itemIndex);
|
|
|
|
void removeBreakpoint(int itemIndex);
|
2013-06-30 15:51:50 -07:00
|
|
|
int getTotalBreakpointCount();
|
|
|
|
int getBreakpointIndex(int itemIndex, bool& isMemory);
|
2012-11-01 16:19:01 +01:00
|
|
|
public:
|
|
|
|
int index; //helper
|
|
|
|
|
|
|
|
CDisasm(HINSTANCE _hInstance, HWND _hParent, DebugInterface *cpu);
|
|
|
|
~CDisasm();
|
|
|
|
//
|
|
|
|
// --- tools ---
|
|
|
|
//
|
2013-06-27 21:07:49 +02:00
|
|
|
|
|
|
|
virtual void Update()
|
|
|
|
{
|
|
|
|
UpdateDialog(true);
|
|
|
|
updateBreakpointList();
|
|
|
|
};
|
2012-11-01 16:19:01 +01:00
|
|
|
void UpdateDialog(bool _bComplete = false);
|
|
|
|
// SetDebugMode
|
|
|
|
void SetDebugMode(bool _bDebug);
|
|
|
|
// show dialog
|
|
|
|
void Goto(u32 addr);
|
|
|
|
void NotifyMapLoaded();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|