Skip to content

Commit 4750ce2

Browse files
committed
build: speed up startup with V8 code cache
This patch speeds up the startup time and reduce the startup memory footprint by using V8 code cache when comiling builtin modules. The current approach is demonstrated in the `with-code-cache` Makefile target (no corresponding Windows target at the moment). 1. Build the binary normally (`src/node_code_cache_stub.cc` is used), by now `internalBinding('code_cache')` is an empty object 2. Run `tools/generate_code_cache.js` with the binary, which generates the code caches by reading source code of builtin modules off source code exposed by `require('internal/bootstrap/cache').builtinSource` and then generate a C++ file containing static char arrays of the code cache, using a format similar to `node_javascript.cc` 3. Run `configure` with the `--code-cache-path` option so that the newly generated C++ file will be used when compiling the new binary. The generated C++ file will put the cache into the `internalBinding('code_cache')` object with the module ids as keys 4. The new binary tries to read the code cache from `internalBinding('code_cache')` and use it to compile builtin modules. If the cache is used, it will put the id into `require('internal/bootstrap/cache').compiledWithCache` for bookkeeping, otherwise the id will be pushed into `require('internal/bootstrap/cache').compiledWithoutCache` This patch also added tests that verify the code cache is generated and used when compiling builtin modules. The binary with code cache: - Is ~1MB bigger than the binary without code cahe - Consumes ~1MB less memory during start up - Starts up about 60% faster PR-URL: nodejs#21405 Reviewed-By: John-David Dalton <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Gus Caplan <[email protected]>
1 parent 7c45284 commit 4750ce2

13 files changed

+325
-3
lines changed

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,22 @@ $(NODE_G_EXE): config.gypi out/Makefile
9191
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
9292
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Debug/$(NODE_EXE) $@; fi
9393

94+
CODE_CACHE_DIR ?= out/$(BUILDTYPE)/obj/gen
95+
CODE_CACHE_FILE ?= $(CODE_CACHE_DIR)/node_code_cache.cc
96+
97+
.PHONY: with-code-cache
98+
with-code-cache:
99+
$(PYTHON) ./configure
100+
$(MAKE)
101+
mkdir -p $(CODE_CACHE_DIR)
102+
out/$(BUILDTYPE)/$(NODE_EXE) --expose-internals tools/generate_code_cache.js $(CODE_CACHE_FILE)
103+
$(PYTHON) ./configure --code-cache-path $(CODE_CACHE_FILE)
104+
$(MAKE)
105+
106+
.PHONY: test-code-cache
107+
test-code-cache: with-code-cache
108+
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) code-cache
109+
94110
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \
95111
deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \
96112
deps/v8/gypfiles/features.gypi deps/v8/gypfiles/v8.gyp node.gyp \

configure

+8
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,12 @@ parser.add_option('--without-snapshot',
491491
dest='without_snapshot',
492492
help=optparse.SUPPRESS_HELP)
493493

494+
parser.add_option('--code-cache-path',
495+
action='store',
496+
dest='code_cache_path',
497+
help='Use a file generated by tools/generate_code_cache.js to compile the'
498+
' code cache for builtin modules into the binary')
499+
494500
parser.add_option('--without-ssl',
495501
action='store_true',
496502
dest='without_ssl',
@@ -983,6 +989,8 @@ def configure_node(o):
983989
o['variables']['debug_nghttp2'] = 'false'
984990

985991
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
992+
if options.code_cache_path:
993+
o['variables']['node_code_cache_path'] = options.code_cache_path
986994
o['variables']['node_shared'] = b(options.shared)
987995
node_module_version = getmoduleversion.get_version()
988996

lib/internal/bootstrap/cache.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
'use strict';
2+
3+
// This is only exposed for internal build steps and testing purposes.
4+
// We create new copies of the source and the code cache
5+
// so the resources eventually used to compile builtin modules
6+
// cannot be tampered with even with --expose-internals
7+
8+
const {
9+
NativeModule, internalBinding
10+
} = require('internal/bootstrap/loaders');
11+
12+
module.exports = {
13+
builtinSource: Object.assign({}, NativeModule._source),
14+
codeCache: internalBinding('code_cache'),
15+
compiledWithoutCache: NativeModule.compiledWithoutCache,
16+
compiledWithCache: NativeModule.compiledWithCache,
17+
nativeModuleWrap(script) {
18+
return NativeModule.wrap(script);
19+
},
20+
// Modules with source code compiled in js2c that
21+
// cannot be compiled with the code cache
22+
cannotUseCache: [
23+
'config',
24+
// TODO(joyeecheung): update the C++ side so that
25+
// the code cache is also used when compiling these
26+
// two files.
27+
'internal/bootstrap/loaders',
28+
'internal/bootstrap/node'
29+
]
30+
};

lib/internal/bootstrap/loaders.js

+28-1
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,15 @@
125125

126126
const config = getBinding('config');
127127

128+
const codeCache = getInternalBinding('code_cache');
129+
const compiledWithoutCache = NativeModule.compiledWithoutCache = [];
130+
const compiledWithCache = NativeModule.compiledWithCache = [];
131+
128132
// Think of this as module.exports in this file even though it is not
129133
// written in CommonJS style.
130134
const loaderExports = { internalBinding, NativeModule };
131135
const loaderId = 'internal/bootstrap/loaders';
136+
132137
NativeModule.require = function(id) {
133138
if (id === loaderId) {
134139
return loaderExports;
@@ -229,7 +234,29 @@
229234
this.loading = true;
230235

231236
try {
232-
const script = new ContextifyScript(source, this.filename);
237+
// (code, filename, lineOffset, columnOffset
238+
// cachedData, produceCachedData, parsingContext)
239+
const script = new ContextifyScript(
240+
source, this.filename, 0, 0,
241+
codeCache[this.id], false, undefined
242+
);
243+
244+
// One of these conditions may be false when any of the inputs
245+
// of the `node_js2c` target in node.gyp is modified.
246+
// FIXME(joyeecheung):
247+
// 1. Figure out how to resolve the dependency issue. When the
248+
// code cache was introduced we were at a point where refactoring
249+
// node.gyp may not be worth the effort.
250+
// 2. Calculate checksums in both js2c and generate_code_cache.js
251+
// and compare them before compiling the native modules since
252+
// V8 only checks the length of the source to decide whether to
253+
// reject the cache.
254+
if (!codeCache[this.id] || script.cachedDataRejected) {
255+
compiledWithoutCache.push(this.id);
256+
} else {
257+
compiledWithCache.push(this.id);
258+
}
259+
233260
// Arguments: timeout, displayErrors, breakOnSigint
234261
const fn = script.runInThisContext(-1, true, false);
235262
const requireFn = this.id.startsWith('internal/deps/') ?

node.gyp

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
'node_use_etw%': 'false',
77
'node_use_perfctr%': 'false',
88
'node_no_browser_globals%': 'false',
9+
'node_code_cache_path%': '',
910
'node_use_v8_platform%': 'true',
1011
'node_use_bundled_v8%': 'true',
1112
'node_shared%': 'false',
@@ -24,6 +25,7 @@
2425
'node_lib_target_name%': 'node_lib',
2526
'node_intermediate_lib_type%': 'static_library',
2627
'library_files': [
28+
'lib/internal/bootstrap/cache.js',
2729
'lib/internal/bootstrap/loaders.js',
2830
'lib/internal/bootstrap/node.js',
2931
'lib/async_hooks.js',
@@ -396,6 +398,7 @@
396398
'src/module_wrap.h',
397399
'src/node.h',
398400
'src/node_buffer.h',
401+
'src/node_code_cache.h',
399402
'src/node_constants.h',
400403
'src/node_contextify.h',
401404
'src/node_debug_options.h',
@@ -459,6 +462,11 @@
459462
'NODE_OPENSSL_SYSTEM_CERT_PATH="<(openssl_system_ca_path)"',
460463
],
461464
'conditions': [
465+
[ 'node_code_cache_path!=""', {
466+
'sources': [ '<(node_code_cache_path)' ]
467+
}, {
468+
'sources': [ 'src/node_code_cache_stub.cc' ]
469+
}],
462470
[ 'node_shared=="true" and node_module_version!="" and OS!="win"', {
463471
'product_extension': '<(shlib_suffix)',
464472
'xcode_settings': {

src/node.cc

+11-2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "node_buffer.h"
2323
#include "node_constants.h"
2424
#include "node_javascript.h"
25+
#include "node_code_cache.h"
2526
#include "node_platform.h"
2627
#include "node_version.h"
2728
#include "node_internals.h"
@@ -1596,10 +1597,18 @@ static void GetInternalBinding(const FunctionCallbackInfo<Value>& args) {
15961597

15971598
Local<String> module = args[0].As<String>();
15981599
node::Utf8Value module_v(env->isolate(), module);
1600+
Local<Object> exports;
15991601

16001602
node_module* mod = get_internal_module(*module_v);
1601-
if (mod == nullptr) return ThrowIfNoSuchModule(env, *module_v);
1602-
Local<Object> exports = InitModule(env, mod, module);
1603+
if (mod != nullptr) {
1604+
exports = InitModule(env, mod, module);
1605+
} else if (!strcmp(*module_v, "code_cache")) {
1606+
// internalBinding('code_cache')
1607+
exports = Object::New(env->isolate());
1608+
DefineCodeCache(env, exports);
1609+
} else {
1610+
return ThrowIfNoSuchModule(env, *module_v);
1611+
}
16031612

16041613
args.GetReturnValue().Set(exports);
16051614
}

src/node_code_cache.h

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef SRC_NODE_CODE_CACHE_H_
2+
#define SRC_NODE_CODE_CACHE_H_
3+
4+
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
5+
6+
#include "node_internals.h"
7+
8+
namespace node {
9+
10+
void DefineCodeCache(Environment* env, v8::Local<v8::Object> target);
11+
12+
} // namespace node
13+
14+
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
15+
16+
#endif // SRC_NODE_CODE_CACHE_H_

src/node_code_cache_stub.cc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
#include "node_code_cache.h"
3+
4+
// This is supposed to be generated by tools/generate_code_cache.js
5+
// The stub here is used when configure is run without `--code-cache-path`
6+
7+
namespace node {
8+
void DefineCodeCache(Environment* env, v8::Local<v8::Object> target) {
9+
// When we do not produce code cache for builtin modules,
10+
// `internalBinding('code_cache')` returns an empty object
11+
// (here as `target`) so this is a noop.
12+
}
13+
14+
} // namespace node

test/code-cache/code-cache.status

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
prefix code-cache
2+
3+
# To mark a test as flaky, list the test name in the appropriate section
4+
# below, without ".js", followed by ": PASS,FLAKY". Example:
5+
# sample-test : PASS,FLAKY
6+
7+
[true] # This section applies to all platforms
8+
9+
[$system==win32]
10+
11+
[$system==linux]
12+
13+
[$system==macos]
14+
15+
[$arch==arm || $arch==arm64]
16+
17+
[$system==solaris] # Also applies to SmartOS
18+
19+
[$system==freebsd]
20+
21+
[$system==aix]

test/code-cache/test-code-cache.js

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
'use strict';
2+
3+
// Flags: --expose-internals
4+
// This test verifies that the binary is compiled with code cache and the
5+
// cache is used when built in modules are compiled.
6+
7+
require('../common');
8+
const assert = require('assert');
9+
const {
10+
types: {
11+
isUint8Array
12+
}
13+
} = require('util');
14+
const {
15+
builtinSource,
16+
codeCache,
17+
cannotUseCache,
18+
compiledWithCache,
19+
compiledWithoutCache
20+
} = require('internal/bootstrap/cache');
21+
22+
assert.strictEqual(
23+
typeof process.config.variables.node_code_cache_path,
24+
'string'
25+
);
26+
27+
assert.deepStrictEqual(compiledWithoutCache, []);
28+
29+
const loadedModules = process.moduleLoadList
30+
.filter((m) => m.startsWith('NativeModule'))
31+
.map((m) => m.replace('NativeModule ', ''));
32+
33+
for (const key of loadedModules) {
34+
assert(compiledWithCache.includes(key),
35+
`"${key}" should've been compiled with code cache`);
36+
}
37+
38+
for (const key of Object.keys(builtinSource)) {
39+
if (cannotUseCache.includes(key)) continue;
40+
assert(isUint8Array(codeCache[key]) && codeCache[key].length > 0,
41+
`Code cache for "${key}" should've been generated`);
42+
}

test/code-cache/testcfg.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import sys, os
2+
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
3+
import testpy
4+
5+
def GetConfiguration(context, root):
6+
return testpy.ParallelTestConfiguration(context, root, 'code-cache')

0 commit comments

Comments
 (0)