|
125 | 125 |
|
126 | 126 | const config = getBinding('config');
|
127 | 127 |
|
| 128 | + const codeCache = getInternalBinding('code_cache'); |
| 129 | + const compiledWithoutCache = NativeModule.compiledWithoutCache = []; |
| 130 | + const compiledWithCache = NativeModule.compiledWithCache = []; |
| 131 | + |
128 | 132 | // Think of this as module.exports in this file even though it is not
|
129 | 133 | // written in CommonJS style.
|
130 | 134 | const loaderExports = { internalBinding, NativeModule };
|
131 | 135 | const loaderId = 'internal/bootstrap/loaders';
|
| 136 | + |
132 | 137 | NativeModule.require = function(id) {
|
133 | 138 | if (id === loaderId) {
|
134 | 139 | return loaderExports;
|
|
229 | 234 | this.loading = true;
|
230 | 235 |
|
231 | 236 | 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 | + |
233 | 260 | // Arguments: timeout, displayErrors, breakOnSigint
|
234 | 261 | const fn = script.runInThisContext(-1, true, false);
|
235 | 262 | const requireFn = this.id.startsWith('internal/deps/') ?
|
|
0 commit comments