-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunitdebugger.pas
195 lines (157 loc) · 4.41 KB
/
unitdebugger.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
unit UnitDebugger;
// Copyright 2022-2025 Zoran Vučenović
// SPDX-License-Identifier: Apache-2.0
{$mode ObjFPC}{$H+}
{$i zxinc.inc}
interface
uses
Classes, SysUtils, fgl, LazMethodList, UnitSpectrum, UnitDisassembler;
type
TBreakpointCondition = class(TObject)
private
FCondExprRpn: RawByteString;
FConditionExpr: RawByteString;
procedure SetConditionExpr(AValue: RawByteString);
public
constructor Create;
procedure Clear;
property ConditionExpr: RawByteString read FConditionExpr write SetConditionExpr;
property CondExprRpn: RawByteString read FCondExprRpn write FCondExprRpn;
end;
TBreakpoints = class(specialize TFPGMapObject<Word, TBreakpointCondition>)
public
constructor Create;
end;
TDebugger = class(TSpectrum.TAbstractDebugger)
strict private
FBreakpoints: TBreakpoints;
FDisassembler: TDisassembler;
FOnBreakpointChangeList: TMethodList;
FSpectrum: TSpectrum;
procedure DoOnBreakpointChange;
public
constructor CreateDebugger; override;
destructor Destroy; override;
procedure SetSpectrum(ASpectrum: TSpectrum); override;
function IsBreakpoint(Addr: Word): Boolean; inline;
function IsOnBreakpoint: Boolean; override;
function BreakpointsEmpty: Boolean; override;
procedure AddBreakpoint(Addr: Word; ABkpointCond: TBreakpointCondition);
procedure RemoveBreakpoint(Addr: Word);
procedure RemoveAllBreakpoints();
procedure AddOnBreakpointChange(ANotifyEvent: TNotifyEvent);
procedure RemoveOnBreakPointChangeHandlerOfObject(AObject: TObject);
property Breakpoints: TBreakpoints read FBreakpoints;
property Disassembler: TDisassembler read FDisassembler;
end;
implementation
{ TBreakpointCondition }
procedure TBreakpointCondition.SetConditionExpr(AValue: RawByteString);
begin
if FConditionExpr <> AValue then begin
FCondExprRpn := '';
FConditionExpr := AValue;
end;
end;
constructor TBreakpointCondition.Create;
begin
Clear;
end;
procedure TBreakpointCondition.Clear;
begin
FConditionExpr := '';
FCondExprRpn := '';
end;
{ TBreakpoints }
constructor TBreakpoints.Create;
begin
inherited Create(True);
Duplicates := TDuplicates.dupIgnore;
Sorted := True;
end;
{ TDebugger }
procedure TDebugger.DoOnBreakpointChange;
var
I: Integer;
begin
if Assigned(FOnBreakpointChangeList) then begin
for I := 0 to FOnBreakpointChangeList.Count - 1 do begin
TNotifyEvent(FOnBreakpointChangeList[I])(Self);
end;
end;
end;
constructor TDebugger.CreateDebugger;
begin
inherited Create;
FOnBreakpointChangeList := nil;
FDisassembler := nil;
FSpectrum := nil;
FBreakpoints := TBreakpoints.Create;
end;
destructor TDebugger.Destroy;
begin
FOnBreakpointChangeList.Free;
FBreakpoints.Free;
FDisassembler.Free;
inherited Destroy;
end;
function TDebugger.BreakpointsEmpty: Boolean;
begin
Result := FBreakpoints.Count = 0;
end;
procedure TDebugger.SetSpectrum(ASpectrum: TSpectrum);
begin
FSpectrum := ASpectrum;
if FDisassembler = nil then begin
FDisassembler := TDisassembler.Create(FSpectrum.Memory);
end else
FDisassembler.Memory := FSpectrum.Memory;
end;
function TDebugger.IsBreakpoint(Addr: Word): Boolean;
var
N: Integer;
begin
Result := FBreakpoints.Find(Addr, N);
end;
function TDebugger.IsOnBreakpoint: Boolean;
var
N: Integer;
begin
Result := FBreakpoints.Find(FSpectrum.GetProcessor.RegPC, N);
end;
procedure TDebugger.AddBreakpoint(Addr: Word; ABkpointCond: TBreakpointCondition
);
begin
if ABkpointCond = nil then
ABkpointCond := TBreakpointCondition.Create;
FBreakpoints.AddOrSetData(Addr, ABkpointCond);
DoOnBreakpointChange;
end;
procedure TDebugger.RemoveBreakpoint(Addr: Word);
begin
FBreakpoints.Remove(Addr);
DoOnBreakpointChange;
end;
procedure TDebugger.RemoveAllBreakpoints();
begin
FBreakpoints.Clear;
DoOnBreakpointChange;
end;
procedure TDebugger.AddOnBreakpointChange(ANotifyEvent: TNotifyEvent);
begin
if Assigned(ANotifyEvent) then begin
if FOnBreakpointChangeList = nil then begin
FOnBreakpointChangeList := TMethodList.Create;
end;
FOnBreakpointChangeList.Add(TMethod(ANotifyEvent));
end;
end;
procedure TDebugger.RemoveOnBreakPointChangeHandlerOfObject(AObject: TObject);
begin
if Assigned(FOnBreakpointChangeList) then begin
FOnBreakpointChangeList.RemoveAllMethodsOfObject(AObject);
if FOnBreakpointChangeList.Count = 0 then
FreeAndNil(FOnBreakpointChangeList);
end;
end;
end.