-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathDbgSamplingProfiler.pas
320 lines (261 loc) · 8.8 KB
/
DbgSamplingProfiler.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
unit DbgSamplingProfiler;
interface
uses System.Classes, WinApi.Windows, Collections.Queues, DbgHookTypes,
System.SysUtils, System.SyncObjs, DebugerTypes;
type
TDbgSamplingProfiler = class
private
// Timers
FTimerQueue: THandle;
FSamplingTimer: THandle;
FSamplingLock: TCriticalSection;
public
constructor Create;
destructor Destroy; override;
procedure Clear;
procedure InitSamplingTimer;
procedure ResetSamplingTimer;
procedure DoSamplingEvent;
procedure ProcessDbgSamplingInfo;
function ProcessSamplingInfo: LongBool;
procedure AddThreadSamplingInfo(ThreadData: PThreadData);
function ProcessThreadSamplingInfo(ThreadData: PThreadData): LongBool;
procedure ProcessThreadSamplingStack(ThreadData: PThreadData; var Stack: TDbgInfoStack);
procedure ProcessThreadSamplingAddress(ThData: PThreadData; FuncAddr, ParentFuncAddr: Pointer);
end;
implementation
uses
Debuger, WinAPIUtils, DebugInfo;
procedure _DbgSamplingEvent(Context: Pointer; Success: LongBool); stdcall;
begin
if Assigned(gvDebuger) then
gvDebuger.DbgSamplingProfiler.DoSamplingEvent;
end;
{ TDbgSamplingProfiler }
procedure TDbgSamplingProfiler.AddThreadSamplingInfo(ThreadData: PThreadData);
var
ThCPU: UInt64;
FreqCPU: Int64;
Stack: TDbgInfoStack;
StackInfo: PDbgInfoStackRec;
Res: DWORD;
begin
if Assigned(ThreadData^.ThreadAdvInfo) and (ThreadData^.ThreadAdvInfo.ThreadAdvType = tatNormal) then
begin
ThCPU := _QueryThreadCycleTime(ThreadData^.ThreadHandle);
FreqCPU := _QueryPerformanceFrequency;
// FreqCPU - êîëè÷åñòâî öèêëîâ CPU çà 1 ñåê
// Îáðàáàòûâàåì òîëüêî òå ïîòîêè, êîòîðûå ïîëó÷èëè áîëåå 10% öèêëîâ çà 1 ìñåê
if (ThCPU - ThreadData^.SamplingCPUTime) > (FreqCPU div 10000) then
begin
ThreadData^.SamplingCPUTime := ThCPU;
Inc(ThreadData^.SamplingCount);
SetLength(Stack, 0);
Res := SuspendThread(ThreadData^.ThreadHandle);
if Res = 0 then
begin
if gvDebuger.UpdateThreadContext(ThreadData, CONTEXT_CONTROL) then
begin
gvDebuger.GetCallStack(ThreadData, Stack);
end;
end;
ResumeThread(ThreadData^.ThreadHandle);
if Length(Stack) > 0 then
begin
New(StackInfo);
StackInfo^.Stack := Stack;
ThreadData^.SamplingQueue.Add(StackInfo);
end;
end
else
ThreadData^.SamplingCPUTime := ThCPU;
end;
end;
procedure TDbgSamplingProfiler.Clear;
begin
end;
constructor TDbgSamplingProfiler.Create;
begin
inherited;
FTimerQueue := 0;
FSamplingTimer := 0;
FSamplingLock := TCriticalSection.Create;
end;
destructor TDbgSamplingProfiler.Destroy;
begin
Clear;
FreeAndNil(FSamplingLock);
inherited;
end;
procedure TDbgSamplingProfiler.DoSamplingEvent;
begin
if gvDebuger.DbgState <> dsWait then Exit;
// Èãíîðèì îáðàáîòêó, åñëè íå óñïåëè çà îòâåäåííîå âðåìÿ
if FSamplingLock.TryEnter then
begin
ProcessDbgSamplingInfo;
FSamplingLock.Leave;
end;
end;
procedure TDbgSamplingProfiler.InitSamplingTimer;
begin
FTimerQueue := CreateTimerQueue;
if FTimerQueue <> 0 then
begin
if CreateTimerQueueTimer(FSamplingTimer, FTimerQueue, @_DbgSamplingEvent, nil, 100, 1, WT_EXECUTEINPERSISTENTTHREAD) then
begin
gvDebuger.Log('Init sampling timer - ok');
Exit;
end;
end;
gvDebuger.Log('Init sampling timer - fail');
end;
procedure TDbgSamplingProfiler.ProcessDbgSamplingInfo;
var
CPUTime: UInt64;
ThData: PThreadData;
I: Integer;
Threads: TDbgActiveThreads;
begin
CPUTime := _QueryProcessCycleTime(gvDebuger.ProcessData.AttachedProcessHandle);
// TODO: Êîíòðîëü çàãðóçêè CPU
if CPUTime > gvDebuger.ProcessData.SamplingCPUTime then
begin
gvDebuger.ProcessData.SamplingCPUTime := CPUTime;
TInterlocked.Increment(gvDebuger.ProcessData.SamplingCount);
gvDebuger.GetActiveThreads(Threads);
for I := 0 to High(Threads) do
begin
ThData := Threads[I];
if ThData^.State = tsActive then
AddThreadSamplingInfo(ThData);
end;
end;
end;
function TDbgSamplingProfiler.ProcessSamplingInfo: LongBool;
var
I: Integer;
ThData: PThreadData;
begin
Result := False;
if not(gvDebuger.CodeTracking and gvDebuger.SamplingMethod) then
Exit;
try
for I := gvDebuger.GetThreadCount - 1 downto 0 do
begin
ThData := gvDebuger.GetThreadDataByIdx(I);
Result := ProcessThreadSamplingInfo(ThData) or Result;
end;
except
on E: Exception do ; // TODO:
end;
end;
procedure TDbgSamplingProfiler.ProcessThreadSamplingAddress(ThData: PThreadData; FuncAddr, ParentFuncAddr: Pointer);
var
UnitInfo: TUnitInfo;
FuncInfo: TFuncInfo;
LineInfo: TLineInfo;
TrackFuncInfo: TCodeTrackFuncInfo;
ParentCallFuncInfo: TCallFuncInfo;
ParentFuncInfo: TFuncInfo;
ParentTrackFuncInfo: TCodeTrackFuncInfo;
begin
// --- Ðåãèñòðèðóåì âûçûâàåìóþ ôóíêöèþ â òåêóùåì ïîòîêå --- //
if gvDebugInfo.GetLineInfo(FuncAddr, UnitInfo, FuncInfo, LineInfo, False) = slNotFound then
Exit;
TrackFuncInfo := TCodeTrackFuncInfo(ThData^.DbgTrackFuncList.GetTrackFuncInfo(FuncInfo));
ThData^.DbgTrackUnitList.CheckTrackFuncInfo(TrackFuncInfo);
TrackFuncInfo.IncCallCount;
// Äîáàâëåíèå â ñïèñîê àêòèâíûõ þíèòîâ
ThData.DbgTrackUsedUnitList.AddOrSetValue(UnitInfo, TrackFuncInfo.TrackUnitInfo);
// Äîáàâëÿåì ëèíê ñ òåêóùåé ôóíêöèè íà ðîäèòåëüñêóþ
ParentCallFuncInfo := TrackFuncInfo.AddParentCall(ParentFuncAddr);
// Äîáàâëÿåì ëèíê ñ ðîäèòåëüñêîé ôóíêöèè íà òåêóùóþ
if Assigned(ParentCallFuncInfo) then
begin
ParentFuncInfo := TFuncInfo(ParentCallFuncInfo.FuncInfo);
if Assigned(ParentFuncInfo) then
begin
ParentTrackFuncInfo := TCodeTrackFuncInfo(ThData^.DbgTrackFuncList.GetTrackFuncInfo(ParentFuncInfo));
ThData^.DbgTrackUnitList.CheckTrackFuncInfo(ParentTrackFuncInfo);
ParentTrackFuncInfo.AddChildCall(FuncAddr);
end;
end;
// --- Ðåãèñòðèðóåì âûçûâàåìóþ ôóíêöèþ â ïðîöåññå --- //
TrackFuncInfo := TCodeTrackFuncInfo(gvDebuger.ProcessData.DbgTrackFuncList.GetTrackFuncInfo(FuncInfo));
gvDebuger.ProcessData.DbgTrackUnitList.CheckTrackFuncInfo(TrackFuncInfo);
TrackFuncInfo.IncCallCount;
// Äîáàâëåíèå â ñïèñîê àêòèâíûõ þíèòîâ
gvDebuger.ProcessData.DbgTrackUsedUnitList.AddOrSetValue(UnitInfo, TrackFuncInfo.TrackUnitInfo);
// Äîáàâëÿåì ëèíê ñ òåêóùåé ôóíêöèè íà ðîäèòåëüñêóþ
ParentCallFuncInfo := TrackFuncInfo.AddParentCall(ParentFuncAddr);
// Äîáàâëÿåì ëèíê ñ ðîäèòåëüñêîé ôóíêöèè íà òåêóùóþ
if Assigned(ParentCallFuncInfo) then
begin
ParentFuncInfo := TFuncInfo(ParentCallFuncInfo.FuncInfo);
if Assigned(ParentFuncInfo) then
begin
ParentTrackFuncInfo := TCodeTrackFuncInfo(gvDebuger.ProcessData.DbgTrackFuncList.GetTrackFuncInfo(ParentFuncInfo));
gvDebuger.ProcessData.DbgTrackUnitList.CheckTrackFuncInfo(ParentTrackFuncInfo);
ParentTrackFuncInfo.AddChildCall(FuncAddr);
end;
end;
end;
function TDbgSamplingProfiler.ProcessThreadSamplingInfo(ThreadData: PThreadData): LongBool;
var
StackInfo: PDbgInfoStackRec;
begin
if ThreadData.SamplingQueue.Count > 0 then
begin
try
while ThreadData.SamplingQueue.Count > 0 do
begin
StackInfo := ThreadData.SamplingQueue.Dequeue;
try
if Length(StackInfo^.Stack) > 0 then
ProcessThreadSamplingStack(ThreadData, StackInfo^.Stack);
finally
Dispose(StackInfo);
end;
end;
except
on E: Exception do ;
end;
Result := True;
end
else
Result := False;
end;
procedure TDbgSamplingProfiler.ProcessThreadSamplingStack(ThreadData: PThreadData; var Stack: TDbgInfoStack);
var
Idx: Integer;
TrackUnitInfoPair: TTrackUnitInfoPair;
begin
TInterlocked.Add(gvDebuger.ProcessData.DbgTrackEventCount, 1);
TInterlocked.Add(ThreadData^.DbgTrackEventCount, 1);
try
for Idx := 0 to High(Stack) - 1 do
ProcessThreadSamplingAddress(ThreadData, Stack[Idx], Stack[Idx + 1]);
for TrackUnitInfoPair in ThreadData.DbgTrackUsedUnitList do
TrackUnitInfoPair.Value.IncCallCount;
for TrackUnitInfoPair in gvDebuger.ProcessData.DbgTrackUsedUnitList do
TrackUnitInfoPair.Value.IncCallCount;
finally
SetLength(Stack, 0);
ThreadData.DbgTrackUsedUnitList.Clear;
gvDebuger.ProcessData.DbgTrackUsedUnitList.Clear;
end;
end;
procedure TDbgSamplingProfiler.ResetSamplingTimer;
begin
if FTimerQueue <> 0 then
begin
if DeleteTimerQueue(FTimerQueue) then
gvDebuger.Log('Reset timer queue - ok')
else
gvDebuger.Log('Reset timer queue - fail');
FSamplingTimer := 0;
FTimerQueue := 0;
end;
end;
end.