Skip to content

Commit 8d78d9e

Browse files
committed
lib: load v8_prof_processor dependencies as ESM
The script versions are no longer available. PR-URL: #37587 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
1 parent 8f5cce6 commit 8d78d9e

File tree

4 files changed

+70
-53
lines changed

4 files changed

+70
-53
lines changed

lib/internal/v8_prof_polyfill.js

+13-6
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if (module.id === 'internal/v8_prof_polyfill') return;
4040
// Node polyfill
4141
const fs = require('fs');
4242
const cp = require('child_process');
43-
const os = { // eslint-disable-line no-unused-vars
43+
const os = {
4444
system: function(name, args) {
4545
if (process.platform === 'linux' && name === 'nm') {
4646
// Filter out vdso and vsyscall entries.
@@ -66,14 +66,13 @@ const os = { // eslint-disable-line no-unused-vars
6666
return out;
6767
}
6868
};
69-
const print = console.log; // eslint-disable-line no-unused-vars
70-
function read(fileName) { // eslint-disable-line no-unused-vars
69+
const print = console.log;
70+
function read(fileName) {
7171
return fs.readFileSync(fileName, 'utf8');
7272
}
73-
const quit = process.exit; // eslint-disable-line no-unused-vars
74-
73+
const quit = process.exit;
7574
// Polyfill "readline()".
76-
const logFile = arguments[arguments.length - 1]; // eslint-disable-line no-undef
75+
const logFile = globalThis.arguments[globalThis.arguments.length - 1];
7776
try {
7877
fs.accessSync(logFile);
7978
} catch {
@@ -161,3 +160,11 @@ function macCppfiltNm(out) {
161160
return prefix + (filtered[i++] || postfix);
162161
});
163162
}
163+
164+
Object.assign(globalThis, {
165+
os,
166+
print,
167+
read,
168+
quit,
169+
readline,
170+
});

lib/internal/v8_prof_processor.js

+42-34
Original file line numberDiff line numberDiff line change
@@ -3,43 +3,51 @@
33
const {
44
ArrayPrototypePush,
55
ArrayPrototypeSlice,
6-
JSONStringify,
6+
StringPrototypeSlice,
77
} = primordials;
88

9+
const Buffer = require('buffer').Buffer;
10+
const console = require('internal/console/global');
911
const vm = require('vm');
12+
const { SourceTextModule } = require('internal/vm/module');
1013

11-
const scriptFiles = [
12-
'internal/v8_prof_polyfill',
13-
'internal/deps/v8/tools/splaytree',
14-
'internal/deps/v8/tools/codemap',
15-
'internal/deps/v8/tools/csvparser',
16-
'internal/deps/v8/tools/consarray',
17-
'internal/deps/v8/tools/profile',
18-
'internal/deps/v8/tools/profile_view',
19-
'internal/deps/v8/tools/logreader',
20-
'internal/deps/v8/tools/arguments',
21-
'internal/deps/v8/tools/tickprocessor',
22-
'internal/deps/v8/tools/SourceMap',
23-
'internal/deps/v8/tools/tickprocessor-driver',
24-
];
25-
let script = '';
26-
27-
for (const s of scriptFiles) {
28-
script += internalBinding('natives')[s] + '\n';
29-
}
14+
const natives = internalBinding('natives');
3015

31-
const tickArguments = [];
32-
if (process.platform === 'darwin') {
33-
ArrayPrototypePush(tickArguments, '--mac');
34-
} else if (process.platform === 'win32') {
35-
ArrayPrototypePush(tickArguments, '--windows');
16+
async function linker(specifier, referencingModule) {
17+
// Transform "./file.mjs" to "file"
18+
const file = StringPrototypeSlice(specifier, 2, -4);
19+
const code = natives[`internal/deps/v8/tools/${file}`];
20+
return new SourceTextModule(code, { context: referencingModule.context });
3621
}
37-
ArrayPrototypePush(tickArguments,
38-
...ArrayPrototypeSlice(process.argv, 1));
39-
script = `(function(module, require) {
40-
arguments = ${JSONStringify(tickArguments)};
41-
function write (s) { process.stdout.write(s) }
42-
function printErr(err) { console.error(err); }
43-
${script}
44-
})`;
45-
vm.runInThisContext(script)(module, require);
22+
23+
(async () => {
24+
const tickArguments = [];
25+
if (process.platform === 'darwin') {
26+
ArrayPrototypePush(tickArguments, '--mac');
27+
} else if (process.platform === 'win32') {
28+
ArrayPrototypePush(tickArguments, '--windows');
29+
}
30+
ArrayPrototypePush(tickArguments,
31+
...ArrayPrototypeSlice(process.argv, 1));
32+
33+
const context = vm.createContext({
34+
arguments: tickArguments,
35+
write(s) { process.stdout.write(s); },
36+
printErr(err) { console.error(err); },
37+
console,
38+
process,
39+
Buffer,
40+
});
41+
42+
const polyfill = natives['internal/v8_prof_polyfill'];
43+
const script = `(function(module, require) {
44+
${polyfill}
45+
})`;
46+
47+
vm.runInContext(script, context)(module, require);
48+
49+
const tickProcessor = natives['internal/deps/v8/tools/tickprocessor-driver'];
50+
const tickprocessorDriver = new SourceTextModule(tickProcessor, { context });
51+
await tickprocessorDriver.link(linker);
52+
await tickprocessorDriver.evaluate();
53+
})();

node.gyp

+11-11
Original file line numberDiff line numberDiff line change
@@ -264,17 +264,17 @@
264264
'lib/internal/streams/pipeline.js',
265265
'lib/internal/streams/end-of-stream.js',
266266
'lib/internal/streams/utils.js',
267-
'deps/v8/tools/splaytree.js',
268-
'deps/v8/tools/codemap.js',
269-
'deps/v8/tools/consarray.js',
270-
'deps/v8/tools/csvparser.js',
271-
'deps/v8/tools/profile.js',
272-
'deps/v8/tools/profile_view.js',
273-
'deps/v8/tools/logreader.js',
274-
'deps/v8/tools/arguments.js',
275-
'deps/v8/tools/tickprocessor.js',
276-
'deps/v8/tools/SourceMap.js',
277-
'deps/v8/tools/tickprocessor-driver.js',
267+
'deps/v8/tools/splaytree.mjs',
268+
'deps/v8/tools/codemap.mjs',
269+
'deps/v8/tools/consarray.mjs',
270+
'deps/v8/tools/csvparser.mjs',
271+
'deps/v8/tools/profile.mjs',
272+
'deps/v8/tools/profile_view.mjs',
273+
'deps/v8/tools/logreader.mjs',
274+
'deps/v8/tools/arguments.mjs',
275+
'deps/v8/tools/tickprocessor.mjs',
276+
'deps/v8/tools/sourcemap.mjs',
277+
'deps/v8/tools/tickprocessor-driver.mjs',
278278
'deps/node-inspect/lib/_inspect.js',
279279
'deps/node-inspect/lib/internal/inspect_client.js',
280280
'deps/node-inspect/lib/internal/inspect_repl.js',

tools/js2c.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ def JS2C(source_files, target):
140140

141141
for filename in source_files['.js']:
142142
AddModule(filename, definitions, initializers)
143+
for filename in source_files['.mjs']:
144+
AddModule(filename, definitions, initializers)
143145

144146
config_def, config_size = handle_config_gypi(source_files['config.gypi'])
145147
definitions.append(config_def)
@@ -208,8 +210,8 @@ def main():
208210
global is_verbose
209211
is_verbose = options.verbose
210212
source_files = functools.reduce(SourceFileByExt, options.sources, {})
211-
# Should have exactly 2 types: `.js`, and `.gypi`
212-
assert len(source_files) == 2
213+
# Should have exactly 3 types: `.js`, `.mjs` and `.gypi`
214+
assert len(source_files) == 3
213215
# Currently config.gypi is the only `.gypi` file allowed
214216
assert source_files['.gypi'] == ['config.gypi']
215217
source_files['config.gypi'] = source_files.pop('.gypi')[0]

0 commit comments

Comments
 (0)