forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
call-tree.js
436 lines (401 loc) · 13.1 KB
/
call-tree.js
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// @flow
import { timeCode } from '../utils/time-code';
import {
getSampleCallNodes,
resourceTypes,
getOriginAnnotationForFunc,
} from './profile-data';
import { UniqueStringArray } from '../utils/unique-string-array';
import type {
CategoryList,
Thread,
FuncTable,
ResourceTable,
IndexIntoFuncTable,
} from '../types/profile';
import type {
CallNodeTable,
IndexIntoCallNodeTable,
CallNodeInfo,
CallNodeData,
CallNodeDisplayData,
} from '../types/profile-derived';
import type { Milliseconds } from '../types/units';
import ExtensionIcon from '../../res/img/svg/extension.svg';
import { formatNumber, formatPercent } from '../utils/format-numbers';
type CallNodeChildren = IndexIntoCallNodeTable[];
type CallNodeTimes = {
selfTime: Float32Array,
totalTime: Float32Array,
};
export type CallTreeCountsAndTimings = {
callNodeChildCount: Uint32Array,
callNodeTimes: CallNodeTimes,
rootCount: number,
rootTotalTime: number,
};
function extractFaviconFromLibname(libname: string): string | null {
try {
const url = new URL('/favicon.ico', libname);
if (url.protocol === 'http:') {
// Upgrade http requests.
url.protocol = 'https:';
}
return url.href;
} catch (e) {
console.error(
'Error while extracing the favicon from the libname',
libname
);
return null;
}
}
export class CallTree {
_categories: CategoryList;
_callNodeTable: CallNodeTable;
_callNodeTimes: CallNodeTimes;
_callNodeChildCount: Uint32Array; // A table column matching the callNodeTable
_funcTable: FuncTable;
_resourceTable: ResourceTable;
_stringTable: UniqueStringArray;
_rootTotalTime: number;
_rootCount: number;
_displayDataByIndex: Map<IndexIntoCallNodeTable, CallNodeDisplayData>;
// _children is indexed by IndexIntoCallNodeTable. Since they are
// integers, using an array directly is faster than going through a Map.
_children: Array<CallNodeChildren>;
_jsOnly: boolean;
_isIntegerInterval: boolean;
constructor(
{ funcTable, resourceTable, stringTable }: Thread,
categories: CategoryList,
callNodeTable: CallNodeTable,
callNodeTimes: CallNodeTimes,
callNodeChildCount: Uint32Array,
rootTotalTime: number,
rootCount: number,
jsOnly: boolean,
isIntegerInterval: boolean
) {
this._categories = categories;
this._callNodeTable = callNodeTable;
this._callNodeTimes = callNodeTimes;
this._callNodeChildCount = callNodeChildCount;
this._funcTable = funcTable;
this._resourceTable = resourceTable;
this._stringTable = stringTable;
this._rootTotalTime = rootTotalTime;
this._rootCount = rootCount;
this._displayDataByIndex = new Map();
this._children = [];
this._jsOnly = jsOnly;
this._isIntegerInterval = isIntegerInterval;
}
getRoots() {
return this.getChildren(-1);
}
getChildren(callNodeIndex: IndexIntoCallNodeTable): CallNodeChildren {
let children = this._children[callNodeIndex];
if (children === undefined) {
const childCount =
callNodeIndex === -1
? this._rootCount
: this._callNodeChildCount[callNodeIndex];
children = [];
for (
let childCallNodeIndex = callNodeIndex + 1;
childCallNodeIndex < this._callNodeTable.length &&
children.length < childCount;
childCallNodeIndex++
) {
if (
this._callNodeTable.prefix[childCallNodeIndex] === callNodeIndex &&
this._callNodeTimes.totalTime[childCallNodeIndex] !== 0
) {
children.push(childCallNodeIndex);
}
}
children.sort(
(a, b) =>
this._callNodeTimes.totalTime[b] - this._callNodeTimes.totalTime[a]
);
this._children[callNodeIndex] = children;
}
return children;
}
hasChildren(callNodeIndex: IndexIntoCallNodeTable): boolean {
return this.getChildren(callNodeIndex).length !== 0;
}
_addDescendantsToSet(
callNodeIndex: IndexIntoCallNodeTable,
set: Set<IndexIntoCallNodeTable>
): void {
for (const child of this.getChildren(callNodeIndex)) {
set.add(child);
this._addDescendantsToSet(child, set);
}
}
getAllDescendants(
callNodeIndex: IndexIntoCallNodeTable
): Set<IndexIntoCallNodeTable> {
const result = new Set();
this._addDescendantsToSet(callNodeIndex, result);
return result;
}
getParent(
callNodeIndex: IndexIntoCallNodeTable
): IndexIntoCallNodeTable | -1 {
return this._callNodeTable.prefix[callNodeIndex];
}
getDepth(callNodeIndex: IndexIntoCallNodeTable): number {
return this._callNodeTable.depth[callNodeIndex];
}
hasSameNodeIds(tree: CallTree): boolean {
return this._callNodeTable === tree._callNodeTable;
}
getNodeData(callNodeIndex: IndexIntoCallNodeTable): CallNodeData {
const funcIndex = this._callNodeTable.func[callNodeIndex];
const funcName = this._stringTable.getString(
this._funcTable.name[funcIndex]
);
const totalTime = this._callNodeTimes.totalTime[callNodeIndex];
const totalTimeRelative = totalTime / this._rootTotalTime;
const selfTime = this._callNodeTimes.selfTime[callNodeIndex];
const selfTimeRelative = selfTime / this._rootTotalTime;
return {
funcName,
totalTime,
totalTimeRelative,
selfTime,
selfTimeRelative,
};
}
getDisplayData(callNodeIndex: IndexIntoCallNodeTable): CallNodeDisplayData {
let displayData = this._displayDataByIndex.get(callNodeIndex);
if (displayData === undefined) {
const {
funcName,
totalTime,
totalTimeRelative,
selfTime,
} = this.getNodeData(callNodeIndex);
const funcIndex = this._callNodeTable.func[callNodeIndex];
const categoryIndex = this._callNodeTable.category[callNodeIndex];
const resourceIndex = this._funcTable.resource[funcIndex];
const resourceType = this._resourceTable.type[resourceIndex];
const isJS = this._funcTable.isJS[funcIndex];
const libName = this._getOriginAnnotation(funcIndex);
let icon = null;
if (resourceType === resourceTypes.webhost) {
icon = extractFaviconFromLibname(libName);
} else if (resourceType === resourceTypes.addon) {
icon = ExtensionIcon;
}
const maxFractionalDigits = this._isIntegerInterval ? 0 : 1;
const formattedTotalTime = formatNumber(
totalTime,
3,
maxFractionalDigits
);
const formattedSelfTime = formatNumber(selfTime, 3, maxFractionalDigits);
displayData = {
totalTime: formattedTotalTime,
totalTimeWithUnit: formattedTotalTime + 'ms',
selfTime: selfTime === 0 ? '—' : formattedSelfTime,
selfTimeWithUnit: selfTime === 0 ? '—' : formattedSelfTime + 'ms',
totalTimePercent: `${formatPercent(totalTimeRelative)}`,
name: funcName,
lib: libName,
// Dim platform pseudo-stacks.
dim: !isJS && this._jsOnly,
categoryName: this._categories[categoryIndex].name,
categoryColor: this._categories[categoryIndex].color,
icon,
};
this._displayDataByIndex.set(callNodeIndex, displayData);
}
return displayData;
}
_getOriginAnnotation(funcIndex: IndexIntoFuncTable): string {
return getOriginAnnotationForFunc(
funcIndex,
this._funcTable,
this._resourceTable,
this._stringTable
);
}
}
function _getInvertedStackSelfTimes(
thread: Thread,
callNodeTable: CallNodeTable,
sampleCallNodes: Array<IndexIntoCallNodeTable | null>,
interval: Milliseconds
): {
// In an inverted profile, all the self time is accounted to the root nodes.
// So `callNodeSelfTime` will be 0 for all non-root nodes.
callNodeSelfTime: Float32Array,
// This property stores the time spent in the stacks' leaf nodes.
// Later these values will make it possible to compute the running times for
// all nodes by summing up the values up the tree.
callNodeLeafTime: Float32Array,
} {
// Compute an array that maps the callNodeIndex to its root.
const callNodeToRoot = new Int32Array(callNodeTable.length);
for (
let callNodeIndex = 0;
callNodeIndex < callNodeTable.length;
callNodeIndex++
) {
const prefixCallNode = callNodeTable.prefix[callNodeIndex];
if (prefixCallNode === -1) {
// callNodeIndex is a root node
callNodeToRoot[callNodeIndex] = callNodeIndex;
} else {
// The callNodeTable guarantees that a callNode's prefix always comes
// before the callNode; prefix references are always to lower callNode
// indexes and never to higher indexes.
// We are iterating the callNodeTable in forwards direction (starting at
// index 0) so we know that we have already visited the current call
// node's prefix call node and can reuse its stored root node, which
// recursively is the value we're looking for.
callNodeToRoot[callNodeIndex] = callNodeToRoot[prefixCallNode];
}
}
// Calculate the timing information by going through each sample.
const callNodeSelfTime = new Float32Array(callNodeTable.length);
const callNodeLeafTime = new Float32Array(callNodeTable.length);
for (
let sampleIndex = 0;
sampleIndex < sampleCallNodes.length;
sampleIndex++
) {
const callNodeIndex = sampleCallNodes[sampleIndex];
if (callNodeIndex !== null) {
const rootIndex = callNodeToRoot[callNodeIndex];
callNodeSelfTime[rootIndex] += interval;
callNodeLeafTime[callNodeIndex] += interval;
}
}
return { callNodeSelfTime, callNodeLeafTime };
}
/**
* This is a helper function to get the stack timings for un-inverted call trees.
*/
function _getStackSelfTimes(
thread: Thread,
callNodeTable: CallNodeTable,
sampleCallNodes: Array<null | IndexIntoCallNodeTable>,
interval: Milliseconds
): {
callNodeSelfTime: Float32Array, // Milliseconds[]
callNodeLeafTime: Float32Array, // Milliseconds[]
} {
const callNodeSelfTime = new Float32Array(callNodeTable.length);
for (
let sampleIndex = 0;
sampleIndex < sampleCallNodes.length;
sampleIndex++
) {
const callNodeIndex = sampleCallNodes[sampleIndex];
if (callNodeIndex !== null) {
callNodeSelfTime[callNodeIndex] += interval;
}
}
return { callNodeSelfTime, callNodeLeafTime: callNodeSelfTime };
}
/**
* This computes all of the count and timing information displayed in the calltree.
* It takes into account both the normal tree, and the inverted tree.
*/
export function computeCallTreeCountsAndTimings(
thread: Thread,
{ callNodeTable, stackIndexToCallNodeIndex }: CallNodeInfo,
interval: Milliseconds,
invertCallstack: boolean
): CallTreeCountsAndTimings {
const sampleCallNodes = getSampleCallNodes(
thread.samples,
stackIndexToCallNodeIndex
);
// Inverted trees need a different method for computing the timing.
const { callNodeSelfTime, callNodeLeafTime } = invertCallstack
? _getInvertedStackSelfTimes(
thread,
callNodeTable,
sampleCallNodes,
interval
)
: _getStackSelfTimes(thread, callNodeTable, sampleCallNodes, interval);
// Compute the following variables:
const callNodeTotalTime = new Float32Array(callNodeTable.length);
const callNodeChildCount = new Uint32Array(callNodeTable.length);
let rootTotalTime = 0;
let rootCount = 0;
// We loop the call node table in reverse, so that we find the children
// before their parents.
for (
let callNodeIndex = callNodeTable.length - 1;
callNodeIndex >= 0;
callNodeIndex--
) {
callNodeTotalTime[callNodeIndex] += callNodeLeafTime[callNodeIndex];
if (callNodeTotalTime[callNodeIndex] === 0) {
continue;
}
const prefixCallNode = callNodeTable.prefix[callNodeIndex];
if (prefixCallNode === -1) {
rootTotalTime += callNodeTotalTime[callNodeIndex];
rootCount++;
} else {
callNodeTotalTime[prefixCallNode] += callNodeTotalTime[callNodeIndex];
callNodeChildCount[prefixCallNode]++;
}
}
return {
callNodeTimes: {
selfTime: callNodeSelfTime,
totalTime: callNodeTotalTime,
},
callNodeChildCount,
rootTotalTime,
rootCount,
};
}
/**
* An exported interface to get an instance of the CallTree class.
* This handles computing timing information, and passing it all into
* the CallTree constructor.
*/
export function getCallTree(
thread: Thread,
interval: Milliseconds,
callNodeInfo: CallNodeInfo,
categories: CategoryList,
implementationFilter: string,
callTreeCountsAndTimings: CallTreeCountsAndTimings
): CallTree {
return timeCode('getCallTree', () => {
const {
callNodeTimes,
callNodeChildCount,
rootTotalTime,
rootCount,
} = callTreeCountsAndTimings;
const jsOnly = implementationFilter === 'js';
const isIntegerInterval = Math.floor(interval) === interval;
return new CallTree(
thread,
categories,
callNodeInfo.callNodeTable,
callNodeTimes,
callNodeChildCount,
rootTotalTime,
rootCount,
jsOnly,
isIntegerInterval
);
});
}