1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

upgrade v8 to 6.9.297. remove IIFE workaround for bug in v8 snapshot serializer

This commit is contained in:
Mike Reinstein 2018-07-03 15:09:36 -07:00 committed by Ryan Dahl
parent a33f575cda
commit 86dac80d98
2 changed files with 2 additions and 28 deletions

View file

@ -1,5 +1,5 @@
solutions = [{ solutions = [{
'url': 'https://chromium.googlesource.com/v8/v8.git@6.8-lkgr', 'url': 'https://chromium.googlesource.com/v8/v8.git@6.9.297',
'name': 'v8', 'name': 'v8',
'deps_file': 'DEPS', 'deps_file': 'DEPS',
'custom_deps': { 'custom_deps': {

View file

@ -42,30 +42,6 @@ v8::StartupData MakeSnapshot(const char* js_filename, const char* js_source) {
return snapshot_blob; return snapshot_blob;
} }
// Wrap the js_source in an IIFE to work around a bug in the V8 snapshot
// serializer. Without it, CreateBlob() triggers the following assert:
// Debug check failed : outer_scope_info()->IsScopeInfo() || is_toplevel().
// ==== C stack trace ====
// v8::internal::SharedFunctionInfo::FlushCompiled
// v8::SnapshotCreator::CreateBlob
// deno::MakeSnapshot
// Avoid misaligning the source map, and ensure that the sourceMappingUrl
// comment remains at the last line.
// Try removing this when this bug is fixed:
// https://bugs.chromium.org/p/v8/issues/detail?id=7857
std::string WrapSourceCode(const std::string& js_source) {
auto smu_offset = js_source.rfind("//# sourceMappingURL=");
std::string tail =
smu_offset == std::string::npos ? "" : js_source.substr(smu_offset);
auto wrapped_js_source =
"(function() {" + js_source.substr(0, smu_offset) + "\n})();\n" + tail;
// Double check that the source mapping url comment is at the last line.
auto last_line = wrapped_js_source.substr(wrapped_js_source.rfind('\n'));
CHECK(smu_offset == std::string::npos ||
last_line.find("sourceMappingURL") != std::string::npos);
return wrapped_js_source;
}
} // namespace deno } // namespace deno
int main(int argc, char** argv) { int main(int argc, char** argv) {
@ -81,10 +57,8 @@ int main(int argc, char** argv) {
std::string js_source; std::string js_source;
CHECK(deno::ReadFileToString(js_fn, &js_source)); CHECK(deno::ReadFileToString(js_fn, &js_source));
auto wrapped_js_source = deno::WrapSourceCode(js_source);
deno_init(); deno_init();
auto snapshot_blob = deno::MakeSnapshot(js_fn, wrapped_js_source.c_str()); auto snapshot_blob = deno::MakeSnapshot(js_fn, js_source.c_str());
std::string snapshot_str(snapshot_blob.data, snapshot_blob.raw_size); std::string snapshot_str(snapshot_blob.data, snapshot_blob.raw_size);
CHECK(deno::WriteDataAsCpp("snapshot", snapshot_out_cc, snapshot_str)); CHECK(deno::WriteDataAsCpp("snapshot", snapshot_out_cc, snapshot_str));