-
Notifications
You must be signed in to change notification settings - Fork 4
/
SAPReportMemoryLeaks.pas
269 lines (196 loc) · 5.41 KB
/
SAPReportMemoryLeaks.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
{****************************************************************************************
SAPMM v1.01 /17.06.2013/
Memory leaks reporting unit
****************************************************************************************}
unit SAPReportMemoryLeaks;
interface
{$Include SAPOptions.inc}
// Saving IP does not work when optimization is ON
{$OPTIMIZATION OFF}
{$STACKFRAMES ON}
uses SAPDefs;
{$IFDEF SAP_STATIP}
procedure SaveIP(var ips: TIPs);
{$ENDIF}
{$IFDEF SAP_MEMORYLEAKS}
type
TOutputProc = procedure (s: string);
procedure PrepareMemoryLeaksReport(mm: PSAPThreadMM; output: TOutputProc);
{$ENDIF SAP_MEMORYLEAKS}
implementation
{$IFDEF SAP_MEMORYLEAKS}
uses SAPXRef, SAPDebugUtils, SAPUtils;
var
line_no: Integer;
//------------------------------------------------------
procedure ReportForOneOSBlock(os: PSAPOSBlock; output: TOutputProc);
forward;
procedure ReportForBlock(x: PSAPAllocatedBlock; output: TOutputProc);
forward;
procedure ReportForSmallBlocks(block: PSAPAllocatedBlock; output: TOutputProc);
forward;
procedure AddToReport(p: LongWord; tags: TSAPTags; size: LongWord;
{$IFDEF SAP_STATIP}
const ips: TIPs;
{$ENDIF}
output: TOutputProc);
forward;
//------------------------------------------------------
procedure PrepareMemoryLeaksReport(mm: PSAPThreadMM; output: TOutputProc);
var
x: PSAPOSBlock;
begin
{$IFDEF SAP_SHOWCALLSTACK}
AttachMapFile;
{$ENDIF}
line_no := 0;
if mm = nil then
Exit;
x := mm.os_blocks;
if x = nil then
Exit;
while x <> nil do
begin
ReportForOneOSBlock(x, output);
x := x.next;
end;
end;
procedure ReportForOneOSBlock(os: PSAPOSBlock; output: TOutputProc);
var
x: PSAPAllocatedBlock;
stop: LongWord;
begin
x := Pointer(LongWord(os) + SizeOf(TSAPOSBlock));
stop := LongWord(os) + os.size;
while LongWord(x) < stop do
begin
ReportForBlock(x, output);
x := Pointer(LongWord(x) + x.size);
end;
end;
procedure ReportForBlock(x: PSAPAllocatedBlock; output: TOutputProc);
begin
if not (sap_allocated in x.tags) then
Exit;
if sap_small_blocks_piece in x.tags then
begin
ReportForSmallBlocks(x, output);
Exit;
end;
AddToReport(LongWord(x) + SizeOf(TSAPAllocatedBlock), x.tags, x.size,
{$IFDEF SAP_STATIP}
x.ips,
{$ENDIF}
output);
end;
procedure ReportForSmallBlocks(block: PSAPAllocatedBlock; output: TOutputProc);
var
h: PSAPSmallBlocksHeader;
x: PSAPSmallAllocatedBlock;
i: Integer;
begin
h := Pointer(LongWord(block) + SizeOf(TSAPAllocatedBlock));
assert(h.header_magic = cSmallBlockHeaderMagic);
x := Pointer(LongWord(h) + SizeOf(TSAPSmallBlocksHeader));
for i := 1 to h.blocks_no do
begin
assert(x.magic = cMagic);
if sap_allocated in x.tags then
begin
AddToReport(LongWord(x) + SizeOf(TSAPSmallAllocatedBlock), x.tags, h.block_size,
{$IFDEF SAP_STATIP}
x.ips,
{$ENDIF}
output);
end;
x := Pointer(LongWord(x) + h.block_size);
end;
end;
function TagsToStr(tags: TSAPTags): string;
begin
Result := '';
if sap_allocated in tags then Result := Result + ' allocated';
if sap_small_block in tags then Result := Result + ' small_block';
if sap_os_block_first in tags then Result := Result + ' os_block_first';
if sap_os_block_last in tags then Result := Result + ' os_block_last';
if sap_small_blocks_piece in tags then Result := Result + ' small_block_piece';
end;
procedure AddToReport(p: LongWord; tags: TSAPTags; size: LongWord;
{$IFDEF SAP_STATIP}
const ips: TIPs;
{$ENDIF SAP_STATIP}
output: TOutputProc);
const
code_start = $401000; // standard
var
s: string;
{$IFDEF SAP_SHOWCALLSTACK}
i: Integer;
name: string;
no: Integer;
{$ENDIF SAP_SHOWCALLSTACK}
begin
if sap_used_in_leaks_reporting in tags then
Exit;
Inc(line_no);
s := IntToStr(line_no) + ') '
+ IntToHex(p,8) + ': '
+ 'size=' + IntToStr(size)
+ TagsToStr(tags)
;
{$IFDEF SAP_STATIP}
s := s + ' [';
for i := Low(ips) to High(ips) do
begin
if ips[i] = 0 then break;
s := s + ' ' + IntToHex(ips[i] - code_start, 8);
end;
s := s + ']';
{$ENDIF SAP_STATIP}
output(s);
{$IFDEF SAP_SHOWCALLSTACK}
for i := Low(ips) to High(ips) do
begin
if ips[i] = 0 then break;
GetXRef(ips[i] - code_start, name, no);
s := name + ' ' + IntToStr(no);
output(s);
end;
{$ENDIF SAP_SHOWCALLSTACK}
end;
{$ENDIF}
//--------------------------------------------------
{$IFDEF SAP_STATIP}
procedure GetStackRange(var stack_base, stack_pointer: LongWord);
asm
mov ecx, fs:[4]
mov [eax], ecx
mov [edx], ebp
end;
procedure SaveIP(var ips: TIPs);
type PLongWord = ^ LongWord;
var
stack_base, stack_pointer: LongWord;
cur_bp: LongWord;
prev_bp: LongWord;
p_ip: PLongWord;
i: Integer;
begin
asm
mov cur_bp, ebp;
end;
GetStackRange(stack_base, stack_pointer);
i := -1;
while (i <= High(ips))
and (cur_bp >= stack_pointer)
and (cur_bp < stack_base) do
begin
if i >= Low(ips) then
ips[i] := PLongWord(LongWord(cur_bp) + 4)^;
Inc(i);
cur_bp := PLongWord(cur_bp)^
end;
while i <= High(ips) do begin ips[i] := 0; Inc(i); end;
end;
{$ENDIF SAP_MEMORYLEAKS}
end.