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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
;; @file
; STAM - Statistics Manager.
;
;
; Copyright (C) 2006-2023 Oracle and/or its affiliates.
;
; This file is part of VirtualBox base platform packages, as
; available from https://www.virtualbox.org.
;
; This program is free software; you can redistribute it and/or
; modify it under the terms of the GNU General Public License
; as published by the Free Software Foundation, in version 3 of the
; License.
;
; This program is distributed in the hope that it will be useful, but
; WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
; General Public License for more details.
;
; You should have received a copy of the GNU General Public License
; along with this program; if not, see <https://www.gnu.org/licenses>.
;
; The contents of this file may alternatively be used under the terms
; of the Common Development and Distribution License Version 1.0
; (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
; in the VirtualBox distribution, in which case the provisions of the
; CDDL are applicable instead of those of the GPL.
;
; You may elect to license modified versions of this file under the
; terms and conditions of either the GPL or the CDDL or both.
;
; SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
;
%ifndef ___VBox_vmm_stam_mac__
%define ___VBox_vmm_stam_mac__
%ifndef VBOX_WITH_STATISTICS
%ifdef DEBUG
%define VBOX_WITH_STATISTICS
%endif
%endif
;;
; Counter sample - STAMTYPE_COUNTER.
struc STAMCOUNTER
.c resd 2
endstruc
;;
; Increments a counter sample by one.
; @param %1 Pointer to the STAMCOUNTER structure to operate on.
%macro STAM32_COUNTER_INC 1
%ifdef VBOX_WITH_STATISTICS
push ebx
mov ebx, %1
inc dword [ebx + STAMCOUNTER.c]
adc dword [ebx + STAMCOUNTER.c + 1], byte 0
pop ebx
%endif
%endmacro
%macro STAM64_COUNTER_INC 1
%ifdef VBOX_WITH_STATISTICS
push rbx
mov rbx, %1
inc qword [rbx + STAMCOUNTER.c]
pop rbx
%endif
%endmacro
%macro STAM_COUNTER_INC 1
%ifdef VBOX_WITH_STATISTICS
%ifdef RT_ARCH_AMD64
STAM64_COUNTER_INC %1
%else
STAM32_COUNTER_INC %1
%endif
%endif
%endmacro
;;
; Increments a counter sample by a value.
;
; @param %1 Pointer to the STAMCOUNTER structure to operate on.
; @param %2 The value to add to the counter.
%macro STAM32_COUNTER_ADD 2
%ifdef VBOX_WITH_STATISTICS
push ebx
mov ebx, %1
push eax
mov eax, %2
add [ebx + STAMCOUNTER.c], eax
adc dword [ebx + STAMCOUNTER.c], byte 0
pop eax
pop ebx
%endif
%endmacro
%macro STAM64_COUNTER_ADD 2
%ifdef VBOX_WITH_STATISTICS
push rbx
mov rbx, %1
push rax
mov rax, %2
add [rbx + STAMCOUNTER.c], rax
pop rax
pop rbx
%endif
%endmacro
%macro STAM_COUNTER_ADD 2
%ifdef VBOX_WITH_STATISTICS
%ifdef RT_ARCH_AMD64
STAM64_COUNTER_ADD %1, %2
%else
STAM32_COUNTER_ADD %1, %2
%endif
%endif
%endmacro
;;
; Profiling sample - STAMTYPE_PROFILE.
struc STAMPROFILE
.cPeriods resd 2
.cTicks resd 2
.cTicksMax resd 2
.cTicksMin resd 2
endstruc
;;
; Samples the start time of a profiling period.
;
; @param %1 Pointer to somewhere one can store a 64-bit timestamp until STAM_PROFILE_STOPP
%macro STAM32_PROFILE_START 1
%ifdef VBOX_WITH_STATISTICS
push ebx
mov ebx, %1
push eax
push edx
rdtsc
mov [ebx], eax
mov [ebx + 4], edx
pop edx
pop eax
pop ebx
%endif
%endmacro
%macro STAM64_PROFILE_START 1
%ifdef VBOX_WITH_STATISTICS
push rbx
mov rbx, %1
push rax
push rdx
rdtsc
mov [rbx], eax
mov [rbx + 4], edx
pop rdx
pop rax
pop rbx
%endif
%endmacro
%macro STAM_PROFILE_START 1
%ifdef VBOX_WITH_STATISTICS
%ifdef RT_ARCH_AMD64
STAM64_PROFILE_START %1
%else
STAM32_PROFILE_START %1
%endif
%endif
%endmacro
;;
; Samples the stop time of a profiling period and updates the sample.
;
; @param %1 Pointer to the STAMPROFILE structure to operate on.
; @param %2 Pointer to where the 64-bit timestamp from STAM_PROFILE_START was stored.
%macro STAM32_PROFILE_STOP 2
%ifdef VBOX_WITH_STATISTICS
push ebx
mov ebx, %1
push eax
push edx
; calc cTicks
push ecx
mov ecx, %2
rdtsc
sub eax, [ecx]
sbb edx, [ecx + 4]
pop ecx
; update STAMPROFILE.cTicks
add [ebx + STAMPROFILE.cTicks], eax
adc [ebx + STAMPROFILE.cTicks + 4], edx
; update STAMPROFILE.cPeriods
inc dword [ebx + STAMPROFILE.cPeriods]
adc dword [ebx + STAMPROFILE.cPeriods + 4], byte 0
; update max?
cmp edx, [ebx + STAMPROFILE.cTicksMax + 4]
jb short %%not_update_max
ja short %%update_max
cmp eax, [ebx + STAMPROFILE.cTicksMax]
jbe short %%not_update_max
%%update_max:
mov [ebx + STAMPROFILE.cTicksMax], eax
mov [ebx + STAMPROFILE.cTicksMax + 4], edx
%%not_update_max:
; update min?
cmp edx, [ebx + STAMPROFILE.cTicksMin + 4]
ja short %%not_update_min
jb short %%update_min
cmp eax, [ebx + STAMPROFILE.cTicksMin]
jae short %%not_update_min
%%update_min:
mov [ebx + STAMPROFILE.cTicksMin], eax
mov [ebx + STAMPROFILE.cTicksMin + 4], edx
%%not_update_min:
pop edx
pop eax
pop ebx
%endif
%endmacro
%macro STAM64_PROFILE_STOP 2
%ifdef VBOX_WITH_STATISTICS
push rbx
mov rbx, %1
push rax
push rdx
; calc cTicks
push rcx
mov rcx, %2
rdtsc
sub rax, [ecx]
sbb rdx, [ecx + 4]
pop rcx
; update STAMPROFILE.cTicks
shl rdx, 32
or rdx, rax
add [rbx + STAMPROFILE.cTicks], rdx
; update STAMPROFILE.cPeriods
inc qword [rbx + STAMPROFILE.cPeriods]
; update max?
cmp rdx, [rbx + STAMPROFILE.cTicksMax]
jbe short %%not_update_max
mov [rbx + STAMPROFILE.cTicksMax], rdx
%%not_update_max:
; update min?
cmp rdx, [rbx + STAMPROFILE.cTicksMin]
jae short %%not_update_min
mov [rbx + STAMPROFILE.cTicksMin], rax
%%not_update_min:
pop rdx
pop rax
pop rbx
%endif
%endmacro
%macro STAM_PROFILE_STOP 2
%ifdef VBOX_WITH_STATISTICS
%ifdef RT_ARCH_AMD64
STAM64_PROFILE_STOP %1, %2
%else
STAM32_PROFILE_STOP %1, %2
%endif
%endif
%endmacro
struc STAMPROFILEADV
.cPeriods resd 2
.cTicks resd 2
.cTicksMax resd 2
.cTicksMin resd 2
.tsStart resd 2
endstruc
;;
; Samples the start time of a profiling period.
;
; @param %1 Pointer to the STAMPROFILEADV structure to operate on.
%macro STAM32_PROFILE_ADV_START 1
%ifdef VBOX_WITH_STATISTICS
push ecx
mov ecx, %1
lea ecx, [ecx + STAMPROFILEADV.tsStart]
STAM32_PROFILE_START ecx
pop ecx
%endif
%endmacro
%macro STAM64_PROFILE_ADV_START 1
%ifdef VBOX_WITH_STATISTICS
push rcx
mov rcx, %1
lea rcx, [rcx + STAMPROFILEADV.tsStart]
STAM64_PROFILE_START rcx
pop rcx
%endif
%endmacro
%macro STAM_PROFILE_ADV_START 1
%ifdef VBOX_WITH_STATISTICS
%ifdef RT_ARCH_AMD64
STAM64_PROFILE_ADV_START %1
%else
STAM32_PROFILE_ADV_START %1
%endif
%endif
%endmacro
;;
; Samples the stop time of a profiling period and updates the sample.
;
; @param %1 Pointer to the STAMPROFILEADV structure to operate on.
%macro STAM32_PROFILE_ADV_STOP 1
%ifdef VBOX_WITH_STATISTICS
push ecx
mov ecx, %1
lea ecx, [ecx + STAMPROFILEADV.tsStart]
cmp dword [ecx], byte 0
jnz short %%doit
cmp dword [ecx + 4], byte 0
jz short %%dont
%%doit:
STAM32_PROFILE_STOP %1, ecx
%%dont:
mov dword [ecx], 0
mov dword [ecx + 4], 0
pop ecx
%endif
%endmacro
%macro STAM64_PROFILE_ADV_STOP 1
%ifdef VBOX_WITH_STATISTICS
push rcx
mov rcx, %1
lea rcx, [rcx + STAMPROFILEADV.tsStart]
cmp qword [rcx], byte 0
jz short %%dont
%%doit:
STAM64_PROFILE_STOP %1, rcx
%%dont:
mov qword [rcx], 0
pop rcx
%endif
%endmacro
%macro STAM_PROFILE_ADV_STOP 1
%ifdef VBOX_WITH_STATISTICS
%ifdef RT_ARCH_AMD64
STAM64_PROFILE_ADV_STOP %1
%else
STAM32_PROFILE_ADV_STOP %1
%endif
%endif
%endmacro
%endif
|