2018-06-09 18:32:04 -04:00
|
|
|
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
|
|
// All rights reserved. MIT License.
|
2018-06-12 00:36:01 -04:00
|
|
|
// Hint: --trace_serializer is a useful debugging flag.
|
2018-06-14 05:50:35 -04:00
|
|
|
#include "deno_internal.h"
|
|
|
|
#include "file_util.h"
|
2018-06-10 08:18:15 -04:00
|
|
|
#include "include/deno.h"
|
2018-06-14 05:50:35 -04:00
|
|
|
#include "v8/include/v8.h"
|
|
|
|
#include "v8/src/base/logging.h"
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-18 10:02:08 -04:00
|
|
|
namespace deno {
|
|
|
|
|
|
|
|
v8::StartupData SerializeInternalFields(v8::Local<v8::Object> holder, int index,
|
|
|
|
void* data) {
|
|
|
|
DCHECK_EQ(data, nullptr);
|
|
|
|
InternalFieldData* embedder_field = static_cast<InternalFieldData*>(
|
|
|
|
holder->GetAlignedPointerFromInternalField(index));
|
|
|
|
if (embedder_field == nullptr) return {nullptr, 0};
|
|
|
|
int size = sizeof(*embedder_field);
|
|
|
|
char* payload = new char[size];
|
|
|
|
// We simply use memcpy to serialize the content.
|
|
|
|
memcpy(payload, embedder_field, size);
|
|
|
|
return {payload, size};
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::StartupData MakeSnapshot(const char* js_filename, const char* js_source) {
|
|
|
|
auto* creator = new v8::SnapshotCreator(external_references);
|
|
|
|
auto* isolate = creator->GetIsolate();
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
{
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
auto context = v8::Context::New(isolate);
|
|
|
|
InitializeContext(isolate, context, js_filename, js_source);
|
|
|
|
creator->SetDefaultContext(context, v8::SerializeInternalFieldsCallback(
|
|
|
|
SerializeInternalFields, nullptr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that using kKeep here will cause segfaults. This is demoed in the
|
|
|
|
// "SnapshotBug" test case.
|
|
|
|
auto snapshot_blob =
|
|
|
|
creator->CreateBlob(v8::SnapshotCreator::FunctionCodeHandling::kClear);
|
|
|
|
|
|
|
|
return snapshot_blob;
|
2018-06-09 18:32:04 -04:00
|
|
|
}
|
|
|
|
|
2018-06-18 10:02:08 -04:00
|
|
|
} // namespace deno
|
|
|
|
|
2018-06-09 18:32:04 -04:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
const char* js_fn = argv[1];
|
2018-06-18 10:02:08 -04:00
|
|
|
const char* snapshot_out_cc = argv[2];
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-18 10:02:08 -04:00
|
|
|
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
|
|
|
|
|
|
|
|
CHECK_EQ(argc, 3);
|
2018-06-14 05:50:35 -04:00
|
|
|
CHECK_NE(js_fn, nullptr);
|
|
|
|
CHECK_NE(snapshot_out_cc, nullptr);
|
|
|
|
|
|
|
|
std::string js_source;
|
|
|
|
CHECK(deno::ReadFileToString(js_fn, &js_source));
|
|
|
|
|
2018-06-19 07:34:06 -04:00
|
|
|
// 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.
|
|
|
|
auto smu_offset = js_source.rfind("//#");
|
|
|
|
CHECK(smu_offset != std::string::npos);
|
|
|
|
auto wrapped_js_source = "(function() {" + js_source.substr(0, smu_offset) +
|
|
|
|
"\n})();\n" + js_source.substr(smu_offset);
|
|
|
|
// 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(last_line.find("sourceMappingURL") != std::string::npos);
|
|
|
|
|
2018-06-10 08:18:15 -04:00
|
|
|
deno_init();
|
2018-06-19 07:34:06 -04:00
|
|
|
auto snapshot_blob = deno::MakeSnapshot(js_fn, wrapped_js_source.c_str());
|
2018-06-14 05:50:35 -04:00
|
|
|
std::string snapshot_str(snapshot_blob.data, snapshot_blob.raw_size);
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-06-14 05:50:35 -04:00
|
|
|
CHECK(deno::WriteDataAsCpp("snapshot", snapshot_out_cc, snapshot_str));
|
2018-06-09 18:32:04 -04:00
|
|
|
}
|