test: run code cache test by default and test generator
- Add the code cache tests to the default test suite, and test the bookkeeping when the binary is not built with the code cache. - Test the code cache generator to make sure we do not accidentally break it - until we enable code cache in the CI. Refs: https://github.com/nodejs/node/issues/21563 PR-URL: https://github.com/nodejs/node/pull/23855 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
9c0c3f1443
commit
010a3f8c23
58
test/code-cache/test-code-cache-generator.js
Normal file
58
test/code-cache/test-code-cache-generator.js
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
// This test verifies that the binary is compiled with code cache and the
|
||||||
|
// cache is used when built in modules are compiled.
|
||||||
|
|
||||||
|
const common = require('../common');
|
||||||
|
|
||||||
|
const tmpdir = require('../common/tmpdir');
|
||||||
|
const { spawnSync } = require('child_process');
|
||||||
|
const assert = require('assert');
|
||||||
|
const path = require('path');
|
||||||
|
const fs = require('fs');
|
||||||
|
const readline = require('readline');
|
||||||
|
|
||||||
|
const generator = path.join(
|
||||||
|
__dirname, '..', '..', 'tools', 'generate_code_cache.js'
|
||||||
|
);
|
||||||
|
tmpdir.refresh();
|
||||||
|
const dest = path.join(tmpdir.path, 'cache.cc');
|
||||||
|
|
||||||
|
// Run tools/generate_code_cache.js
|
||||||
|
const child = spawnSync(
|
||||||
|
process.execPath,
|
||||||
|
['--expose-internals', generator, dest]
|
||||||
|
);
|
||||||
|
assert.ifError(child.error);
|
||||||
|
if (child.status !== 0) {
|
||||||
|
console.log(child.stderr.toString());
|
||||||
|
assert.strictEqual(child.status, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Verifies that:
|
||||||
|
// - node::DefineCodeCache()
|
||||||
|
// - node::DefineCodeCacheHash()
|
||||||
|
// are defined in the generated code.
|
||||||
|
// See src/node_code_cache_stub.cc for explanations.
|
||||||
|
|
||||||
|
const rl = readline.createInterface({
|
||||||
|
input: fs.createReadStream(dest),
|
||||||
|
crlfDelay: Infinity
|
||||||
|
});
|
||||||
|
|
||||||
|
let hasCacheDef = false;
|
||||||
|
let hasHashDef = false;
|
||||||
|
|
||||||
|
rl.on('line', common.mustCallAtLeast((line) => {
|
||||||
|
if (line.includes('DefineCodeCache(')) {
|
||||||
|
hasCacheDef = true;
|
||||||
|
}
|
||||||
|
if (line.includes('DefineCodeCacheHash(')) {
|
||||||
|
hasHashDef = true;
|
||||||
|
}
|
||||||
|
}, 2));
|
||||||
|
|
||||||
|
rl.on('close', common.mustCall(() => {
|
||||||
|
assert.ok(hasCacheDef);
|
||||||
|
assert.ok(hasHashDef);
|
||||||
|
}));
|
@ -1,8 +1,9 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// Flags: --expose-internals
|
// Flags: --expose-internals
|
||||||
// This test verifies that the binary is compiled with code cache and the
|
// This test verifies that if the binary is compiled with code cache,
|
||||||
// cache is used when built in modules are compiled.
|
// and the cache is used when built in modules are compiled.
|
||||||
|
// Otherwise, verifies that no cache is used when compiling builtins.
|
||||||
|
|
||||||
require('../common');
|
require('../common');
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
@ -18,23 +19,36 @@ const {
|
|||||||
compiledWithoutCache
|
compiledWithoutCache
|
||||||
} = require('internal/bootstrap/cache');
|
} = require('internal/bootstrap/cache');
|
||||||
|
|
||||||
assert.strictEqual(
|
|
||||||
typeof process.config.variables.node_code_cache_path,
|
|
||||||
'string'
|
|
||||||
);
|
|
||||||
|
|
||||||
assert.deepStrictEqual(compiledWithoutCache, []);
|
|
||||||
|
|
||||||
const loadedModules = process.moduleLoadList
|
const loadedModules = process.moduleLoadList
|
||||||
.filter((m) => m.startsWith('NativeModule'))
|
.filter((m) => m.startsWith('NativeModule'))
|
||||||
.map((m) => m.replace('NativeModule ', ''));
|
.map((m) => m.replace('NativeModule ', ''));
|
||||||
|
|
||||||
for (const key of loadedModules) {
|
// The binary is not configured with code cache, verifies that the builtins
|
||||||
assert(compiledWithCache.includes(key),
|
// are all compiled without cache and we are doing the bookkeeping right.
|
||||||
`"${key}" should've been compiled with code cache`);
|
if (process.config.variables.node_code_cache_path === undefined) {
|
||||||
}
|
assert.deepStrictEqual(compiledWithCache, []);
|
||||||
|
assert.notStrictEqual(compiledWithoutCache.length, 0);
|
||||||
|
|
||||||
for (const key of cachableBuiltins) {
|
for (const key of loadedModules) {
|
||||||
assert(isUint8Array(codeCache[key]) && codeCache[key].length > 0,
|
assert(compiledWithoutCache.includes(key),
|
||||||
`Code cache for "${key}" should've been generated`);
|
`"${key}" should not have been compiled with code cache`);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// The binary is configured with code cache.
|
||||||
|
assert.strictEqual(
|
||||||
|
typeof process.config.variables.node_code_cache_path,
|
||||||
|
'string'
|
||||||
|
);
|
||||||
|
assert.deepStrictEqual(compiledWithoutCache, []);
|
||||||
|
|
||||||
|
for (const key of loadedModules) {
|
||||||
|
assert(compiledWithCache.includes(key),
|
||||||
|
`"${key}" should've been compiled with code cache`);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const key of cachableBuiltins) {
|
||||||
|
assert(isUint8Array(codeCache[key]) && codeCache[key].length > 0,
|
||||||
|
`Code cache for "${key}" should've been generated`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1498,7 +1498,6 @@ def PrintCrashed(code):
|
|||||||
IGNORED_SUITES = [
|
IGNORED_SUITES = [
|
||||||
'addons',
|
'addons',
|
||||||
'addons-napi',
|
'addons-napi',
|
||||||
'code-cache',
|
|
||||||
'doctool',
|
'doctool',
|
||||||
'internet',
|
'internet',
|
||||||
'pummel',
|
'pummel',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user