Skip to content

Commit 6c8378b

Browse files
jray319rvagg
authored andcommitted
vm: fix produceCachedData
Fix segmentation faults when compiling the same code with `produceCachedData` option. V8 ignores the option when the code is in its compilation cache and does not return cached data. Added `cachedDataProduced` property to `v8.Script` to denote whether the cached data is produced successfully. PR-URL: #5343 Reviewed-By: Fedor Indutny <fedor@indutny.com>
1 parent 967cf97 commit 6c8378b

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed

doc/api/vm.markdown

+6-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@ The options when creating a script are:
4141
- `cachedData`: an optional `Buffer` with V8's code cache data for the supplied
4242
source. When supplied `cachedDataRejected` value will be set to either
4343
`true` or `false` depending on acceptance of the data by V8.
44-
- `produceCachedData`: if `true` and no `cachedData` is present - a `Buffer`
45-
with V8's code cache data will be produced and stored in `cachedData` property
46-
of the returned `vm.Script` instance.
44+
- `produceCachedData`: if `true` and no `cachedData` is present - V8 tries to
45+
produce code cache data for `code`. Upon success, a `Buffer` with V8's code
46+
cache data will be produced and stored in `cachedData` property of the
47+
returned `vm.Script` instance. `cachedDataProduced` value will be set to
48+
either `true` or `false` depending on whether code cache data is produced
49+
successfully.
4750

4851
### script.runInContext(contextifiedSandbox[, options])
4952

src/env.h

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ namespace node {
6262
V(bytes_string, "bytes") \
6363
V(bytes_parsed_string, "bytesParsed") \
6464
V(cached_data_string, "cachedData") \
65+
V(cached_data_produced_string, "cachedDataProduced") \
6566
V(cached_data_rejected_string, "cachedDataRejected") \
6667
V(callback_string, "callback") \
6768
V(change_string, "change") \

src/node_contextify.cc

+11-5
Original file line numberDiff line numberDiff line change
@@ -544,11 +544,17 @@ class ContextifyScript : public BaseObject {
544544
Boolean::New(env->isolate(), source.GetCachedData()->rejected));
545545
} else if (compile_options == ScriptCompiler::kProduceCodeCache) {
546546
const ScriptCompiler::CachedData* cached_data = source.GetCachedData();
547-
MaybeLocal<Object> buf = Buffer::Copy(
548-
env,
549-
reinterpret_cast<const char*>(cached_data->data),
550-
cached_data->length);
551-
args.This()->Set(env->cached_data_string(), buf.ToLocalChecked());
547+
bool cached_data_produced = cached_data != nullptr;
548+
if (cached_data_produced) {
549+
MaybeLocal<Object> buf = Buffer::Copy(
550+
env,
551+
reinterpret_cast<const char*>(cached_data->data),
552+
cached_data->length);
553+
args.This()->Set(env->cached_data_string(), buf.ToLocalChecked());
554+
}
555+
args.This()->Set(
556+
env->cached_data_produced_string(),
557+
Boolean::New(env->isolate(), cached_data_produced));
552558
}
553559
}
554560

test/parallel/test-vm-cached-data.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function produce(source) {
1212
const script = new vm.Script(source, {
1313
produceCachedData: true
1414
});
15-
assert(script.cachedData instanceof Buffer);
15+
assert(!script.cachedDataProduced || script.cachedData instanceof Buffer);
1616

1717
return script.cachedData;
1818
}
@@ -31,6 +31,15 @@ function testProduceConsume() {
3131
}
3232
testProduceConsume();
3333

34+
function testProduceMultiple() {
35+
const source = getSource('original');
36+
37+
produce(source);
38+
produce(source);
39+
produce(source);
40+
}
41+
testProduceMultiple();
42+
3443
function testRejectInvalid() {
3544
const source = getSource('invalid');
3645

0 commit comments

Comments
 (0)