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
|
/* 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/. */
// @ts-check
/**
* @typedef {import("./@types/perf").NumberScaler} NumberScaler
* @typedef {import("./@types/perf").ScaleFunctions} ScaleFunctions
* @typedef {import("./@types/perf").FeatureDescription} FeatureDescription
*/
"use strict";
// @ts-ignore
const { OS } = require("resource://gre/modules/osfile.jsm");
const UNITS = ["B", "kiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"];
/**
* Linearly interpolate between values.
* https://en.wikipedia.org/wiki/Linear_interpolation
*
* @param {number} frac - Value ranged 0 - 1 to interpolate between the range start and range end.
* @param {number} rangeStart - The value to start from.
* @param {number} rangeEnd - The value to interpolate to.
* @returns {number}
*/
function lerp(frac, rangeStart, rangeEnd) {
return (1 - frac) * rangeStart + frac * rangeEnd;
}
/**
* Make sure a value is clamped between a min and max value.
*
* @param {number} val - The value to clamp.
* @param {number} min - The minimum value.
* @param {number} max - The max value.
* @returns {number}
*/
function clamp(val, min, max) {
return Math.max(min, Math.min(max, val));
}
/**
* Formats a file size.
* @param {number} num - The number (in bytes) to format.
* @returns {string} e.g. "10 B", "100 MiB"
*/
function formatFileSize(num) {
if (!Number.isFinite(num)) {
throw new TypeError(`Expected a finite number, got ${typeof num}: ${num}`);
}
const neg = num < 0;
if (neg) {
num = -num;
}
if (num < 1) {
return (neg ? "-" : "") + num + " B";
}
const exponent = Math.min(
Math.floor(Math.log2(num) / Math.log2(1024)),
UNITS.length - 1
);
const numStr = Number((num / Math.pow(1024, exponent)).toPrecision(3));
const unit = UNITS[exponent];
return (neg ? "-" : "") + numStr + " " + unit;
}
/**
* Creates numbers that scale exponentially.
*
* @param {number} rangeStart
* @param {number} rangeEnd
*
* @returns {ScaleFunctions}
*/
function makeExponentialScale(rangeStart, rangeEnd) {
const startExp = Math.log(rangeStart);
const endExp = Math.log(rangeEnd);
/** @type {NumberScaler} */
const fromFractionToValue = frac =>
Math.exp((1 - frac) * startExp + frac * endExp);
/** @type {NumberScaler} */
const fromValueToFraction = value =>
(Math.log(value) - startExp) / (endExp - startExp);
/** @type {NumberScaler} */
const fromFractionToSingleDigitValue = frac => {
return +fromFractionToValue(frac).toPrecision(1);
};
return {
// Takes a number ranged 0-1 and returns it within the range.
fromFractionToValue,
// Takes a number in the range, and returns a value between 0-1
fromValueToFraction,
// Takes a number ranged 0-1 and returns a value in the range, but with
// a single digit value.
fromFractionToSingleDigitValue,
};
}
/**
* Creates numbers that scale exponentially as powers of 2.
*
* @param {number} rangeStart
* @param {number} rangeEnd
*
* @returns {ScaleFunctions}
*/
function makePowerOf2Scale(rangeStart, rangeEnd) {
const startExp = Math.log2(rangeStart);
const endExp = Math.log2(rangeEnd);
/** @type {NumberScaler} */
const fromFractionToValue = frac =>
Math.pow(2, Math.round((1 - frac) * startExp + frac * endExp));
/** @type {NumberScaler} */
const fromValueToFraction = value =>
(Math.log2(value) - startExp) / (endExp - startExp);
/** @type {NumberScaler} */
const fromFractionToSingleDigitValue = frac => {
// fromFractionToValue returns an exact power of 2, we don't want to change
// its precision. Note that formatFileSize will display it in a nice binary
// unit with up to 3 digits.
return fromFractionToValue(frac);
};
return {
// Takes a number ranged 0-1 and returns it within the range.
fromFractionToValue,
// Takes a number in the range, and returns a value between 0-1
fromValueToFraction,
// Takes a number ranged 0-1 and returns a value in the range, but with
// a single digit value.
fromFractionToSingleDigitValue,
};
}
/**
* Scale a source range to a destination range, but clamp it within the
* destination range.
* @param {number} val - The source range value to map to the destination range,
* @param {number} sourceRangeStart,
* @param {number} sourceRangeEnd,
* @param {number} destRangeStart,
* @param {number} destRangeEnd
*/
function scaleRangeWithClamping(
val,
sourceRangeStart,
sourceRangeEnd,
destRangeStart,
destRangeEnd
) {
const frac = clamp(
(val - sourceRangeStart) / (sourceRangeEnd - sourceRangeStart),
0,
1
);
return lerp(frac, destRangeStart, destRangeEnd);
}
/**
* Use some heuristics to guess at the overhead of the recording settings.
*
* TODO - Bug 1597383. The UI for this has been removed, but it needs to be reworked
* for new overhead calculations. Keep it for now in tree.
*
* @param {number} interval
* @param {number} bufferSize
* @param {string[]} features - List of the selected features.
*/
function calculateOverhead(interval, bufferSize, features) {
// NOT "nostacksampling" (double negative) means periodic sampling is on.
const periodicSampling = !features.includes("nostacksampling");
const overheadFromSampling = periodicSampling
? scaleRangeWithClamping(
Math.log(interval),
Math.log(0.05),
Math.log(1),
1,
0
) +
scaleRangeWithClamping(
Math.log(interval),
Math.log(1),
Math.log(100),
0.1,
0
)
: 0;
const overheadFromBuffersize = scaleRangeWithClamping(
Math.log(bufferSize),
Math.log(10),
Math.log(1000000),
0,
0.1
);
const overheadFromStackwalk =
features.includes("stackwalk") && periodicSampling ? 0.05 : 0;
const overheadFromJavaScript =
features.includes("js") && periodicSampling ? 0.05 : 0;
const overheadFromTaskTracer = features.includes("tasktracer") ? 0.05 : 0;
const overheadFromJSTracer = features.includes("jstracer") ? 0.05 : 0;
const overheadFromJSAllocations = features.includes("jsallocations")
? 0.05
: 0;
const overheadFromNativeAllocations = features.includes("nativeallocations")
? 0.5
: 0;
return clamp(
overheadFromSampling +
overheadFromBuffersize +
overheadFromStackwalk +
overheadFromJavaScript +
overheadFromTaskTracer +
overheadFromJSTracer +
overheadFromJSAllocations +
overheadFromNativeAllocations,
0,
1
);
}
/**
* Given an array of absolute paths on the file system, return an array that
* doesn't contain the common prefix of the paths; in other words, if all paths
* share a common ancestor directory, cut off the path to that ancestor
* directory and only leave the path components that differ.
* This makes some lists look a little nicer. For example, this turns the list
* ["/Users/foo/code/obj-m-android-opt", "/Users/foo/code/obj-m-android-debug"]
* into the list ["obj-m-android-opt", "obj-m-android-debug"].
*
* @param {string[]} pathArray The array of absolute paths.
* @returns {string[]} A new array with the described adjustment.
*/
function withCommonPathPrefixRemoved(pathArray) {
if (pathArray.length === 0) {
return [];
}
const splitPaths = pathArray.map(path => OS.Path.split(path));
if (!splitPaths.every(sp => sp.absolute)) {
// We're expecting all paths to be absolute, so this is an unexpected case,
// return the original array.
return pathArray;
}
const [firstSplitPath, ...otherSplitPaths] = splitPaths;
if ("winDrive" in firstSplitPath) {
const winDrive = firstSplitPath.winDrive;
if (!otherSplitPaths.every(sp => sp.winDrive === winDrive)) {
return pathArray;
}
} else if (otherSplitPaths.some(sp => "winDrive" in sp)) {
// Inconsistent winDrive property presence, bail out.
return pathArray;
}
// At this point we're either not on Windows or all paths are on the same
// winDrive. And all paths are absolute.
// Find the common prefix. Start by assuming the entire path except for the
// last folder is shared.
const prefix = firstSplitPath.components.slice(0, -1);
for (const sp of otherSplitPaths) {
prefix.length = Math.min(prefix.length, sp.components.length - 1);
for (let i = 0; i < prefix.length; i++) {
if (prefix[i] !== sp.components[i]) {
prefix.length = i;
break;
}
}
}
if (prefix.length === 0 || (prefix.length === 1 && prefix[0] === "")) {
// There is no shared prefix.
// We treat a prefix of [""] as "no prefix", too: Absolute paths on
// non-Windows start with a slash, so OS.Path.split(path) always returns an
// array whose first element is the empty string on those platforms.
// Stripping off a prefix of [""] from the split paths would simply remove
// the leading slash from the un-split paths, which is not useful.
return pathArray;
}
return splitPaths.map(sp =>
OS.Path.join(...sp.components.slice(prefix.length))
);
}
class UnhandledCaseError extends Error {
/**
* @param {never} value - Check that
* @param {string} typeName - A friendly type name.
*/
constructor(value, typeName) {
super(`There was an unhandled case for "${typeName}": ${value}`);
this.name = "UnhandledCaseError";
}
}
/**
* @type {FeatureDescription[]}
*/
const featureDescriptions = [
{
name: "Native Stacks",
value: "stackwalk",
title:
"Record native stacks (C++ and Rust). This is not available on all platforms.",
recommended: true,
disabledReason: "Native stack walking is not supported on this platform.",
},
{
name: "JavaScript",
value: "js",
title:
"Record JavaScript stack information, and interleave it with native stacks.",
recommended: true,
},
{
name: "Java",
value: "java",
title: "Profile Java code",
disabledReason: "This feature is only available on Android.",
},
{
name: "Native Leaf Stack",
value: "leaf",
title:
"Record the native memory address of the leaf-most stack. This could be " +
"useful on platforms that do not support stack walking.",
},
{
name: "No Periodic Sampling",
value: "nostacksampling",
title: "Disable interval-based stack sampling",
},
{
name: "Main Thread File IO",
value: "mainthreadio",
title: "Record main thread File I/O markers.",
},
{
name: "Profiled Threads File IO",
value: "fileio",
title: "Record File I/O markers from only profiled threads.",
},
{
name: "All File IO",
value: "fileioall",
title:
"Record File I/O markers from all threads, even unregistered threads.",
},
{
name: "No File IO Stack Sampling",
value: "noiostacks",
title: "Do not sample stacks when recording File I/O markers.",
},
{
name: "Sequential Styling",
value: "seqstyle",
title: "Disable parallel traversal in styling.",
},
{
name: "TaskTracer",
value: "tasktracer",
title: "Enable TaskTracer",
experimental: true,
disabledReason:
"TaskTracer requires a custom build with the environment variable MOZ_TASK_TRACER set.",
},
{
name: "Screenshots",
value: "screenshots",
title: "Record screenshots of all browser windows.",
},
{
name: "JSTracer",
value: "jstracer",
title: "Trace JS engine",
experimental: true,
disabledReason:
"JS Tracer is currently disabled due to crashes. See Bug 1565788.",
},
{
name: "Preference Read",
value: "preferencereads",
title: "Track Preference Reads",
},
{
name: "IPC Messages",
value: "ipcmessages",
title: "Track IPC messages.",
},
{
name: "JS Allocations",
value: "jsallocations",
title: "Track JavaScript allocations",
},
{
name: "Native Allocations",
value: "nativeallocations",
title: "Track native allocations",
},
{
name: "Audio Callback Tracing",
value: "audiocallbacktracing",
title: "Trace real-time audio callbacks.",
},
{
name: "CPU Utilization",
value: "cpu",
title:
"CPU utilization by threads. To view graphs, in about:config set " +
"devtools.performance.recording.ui-base-url to " +
"https://deploy-preview-3098--perf-html.netlify.app",
experimental: true,
},
];
module.exports = {
formatFileSize,
makeExponentialScale,
makePowerOf2Scale,
scaleRangeWithClamping,
calculateOverhead,
withCommonPathPrefixRemoved,
UnhandledCaseError,
featureDescriptions,
};
|