2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2012-06-19 18:38:03 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
2011-04-29 12:08:33 +00:00
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
|
|
|
#include <bzlib.h>
|
|
|
|
#endif
|
2008-07-03 15:10:15 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "v8.h"
|
|
|
|
|
2014-05-16 15:18:24 +00:00
|
|
|
#include "assembler.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
#include "bootstrapper.h"
|
2012-06-19 18:38:03 +00:00
|
|
|
#include "flags.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
#include "natives.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "serialize.h"
|
2010-03-23 11:40:38 +00:00
|
|
|
#include "list.h"
|
2008-07-03 15:10:15 +00:00
|
|
|
|
2014-04-17 14:45:06 +00:00
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
using namespace v8;
|
|
|
|
|
|
|
|
|
2011-04-29 12:08:33 +00:00
|
|
|
class Compressor {
|
2009-10-30 10:23:12 +00:00
|
|
|
public:
|
2011-04-29 12:08:33 +00:00
|
|
|
virtual ~Compressor() {}
|
|
|
|
virtual bool Compress(i::Vector<char> input) = 0;
|
|
|
|
virtual i::Vector<char>* output() = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
class ListSnapshotSink : public i::SnapshotByteSink {
|
2011-04-29 12:08:33 +00:00
|
|
|
public:
|
2014-04-24 12:31:10 +00:00
|
|
|
explicit ListSnapshotSink(i::List<char>* data) : data_(data) { }
|
|
|
|
virtual ~ListSnapshotSink() {}
|
|
|
|
virtual void Put(int byte, const char* description) { data_->Add(byte); }
|
|
|
|
virtual int Position() { return data_->length(); }
|
|
|
|
private:
|
|
|
|
i::List<char>* data_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class SnapshotWriter {
|
|
|
|
public:
|
|
|
|
explicit SnapshotWriter(const char* snapshot_file)
|
|
|
|
: fp_(GetFileDescriptorOrDie(snapshot_file))
|
|
|
|
, raw_file_(NULL)
|
|
|
|
, raw_context_file_(NULL)
|
|
|
|
, compressor_(NULL)
|
|
|
|
, omit_(false) {
|
2011-04-29 12:08:33 +00:00
|
|
|
}
|
2014-04-24 12:31:10 +00:00
|
|
|
|
|
|
|
~SnapshotWriter() {
|
|
|
|
fclose(fp_);
|
|
|
|
if (raw_file_) fclose(raw_file_);
|
|
|
|
if (raw_context_file_) fclose(raw_context_file_);
|
2011-04-29 12:08:33 +00:00
|
|
|
}
|
2014-04-24 12:31:10 +00:00
|
|
|
|
|
|
|
void SetCompressor(Compressor* compressor) {
|
|
|
|
compressor_ = compressor;
|
2011-04-29 12:08:33 +00:00
|
|
|
}
|
2011-06-06 20:47:30 +00:00
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void SetOmit(bool omit) {
|
|
|
|
omit_ = omit;
|
|
|
|
}
|
2011-04-29 12:08:33 +00:00
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void SetRawFiles(const char* raw_file, const char* raw_context_file) {
|
|
|
|
raw_file_ = GetFileDescriptorOrDie(raw_file);
|
|
|
|
raw_context_file_ = GetFileDescriptorOrDie(raw_context_file);
|
|
|
|
}
|
2011-04-29 12:08:33 +00:00
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void WriteSnapshot(const i::List<char>& snapshot_data,
|
|
|
|
const i::Serializer& serializer,
|
|
|
|
const i::List<char>& context_snapshot_data,
|
|
|
|
const i::Serializer& context_serializer) const {
|
|
|
|
WriteFilePrefix();
|
|
|
|
WriteData("", snapshot_data, raw_file_);
|
|
|
|
WriteData("context_", context_snapshot_data, raw_context_file_);
|
|
|
|
WriteMeta("context_", context_serializer);
|
|
|
|
WriteMeta("", serializer);
|
|
|
|
WriteFileSuffix();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void WriteFilePrefix() const {
|
2009-10-30 10:23:12 +00:00
|
|
|
fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
|
|
|
|
fprintf(fp_, "#include \"v8.h\"\n");
|
|
|
|
fprintf(fp_, "#include \"platform.h\"\n\n");
|
|
|
|
fprintf(fp_, "#include \"snapshot.h\"\n\n");
|
2014-04-24 12:31:10 +00:00
|
|
|
fprintf(fp_, "namespace v8 {\n");
|
|
|
|
fprintf(fp_, "namespace internal {\n\n");
|
2009-10-30 10:23:12 +00:00
|
|
|
}
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void WriteFileSuffix() const {
|
|
|
|
fprintf(fp_, "} // namespace internal\n");
|
|
|
|
fprintf(fp_, "} // namespace v8\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteData(const char* prefix,
|
|
|
|
const i::List<char>& source_data,
|
|
|
|
FILE* raw_file) const {
|
|
|
|
const i::List <char>* data_to_be_written = NULL;
|
|
|
|
i::List<char> compressed_data;
|
|
|
|
if (!compressor_) {
|
|
|
|
data_to_be_written = &source_data;
|
|
|
|
} else if (compressor_->Compress(source_data.ToVector())) {
|
|
|
|
compressed_data.AddAll(*compressor_->output());
|
|
|
|
data_to_be_written = &compressed_data;
|
|
|
|
} else {
|
|
|
|
i::PrintF("Compression failed. Aborting.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(data_to_be_written);
|
|
|
|
MaybeWriteRawFile(data_to_be_written, raw_file);
|
|
|
|
WriteData(prefix, source_data, data_to_be_written);
|
2010-03-23 11:40:38 +00:00
|
|
|
}
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void MaybeWriteRawFile(const i::List<char>* data, FILE* raw_file) const {
|
|
|
|
if (!data || !raw_file)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Sanity check, whether i::List iterators truly return pointers to an
|
|
|
|
// internal array.
|
|
|
|
ASSERT(data->end() - data->begin() == data->length());
|
|
|
|
|
|
|
|
size_t written = fwrite(data->begin(), 1, data->length(), raw_file);
|
|
|
|
if (written != (size_t)data->length()) {
|
|
|
|
i::PrintF("Writing raw file failed.. Aborting.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-03-23 11:40:38 +00:00
|
|
|
}
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void WriteData(const char* prefix,
|
|
|
|
const i::List<char>& source_data,
|
|
|
|
const i::List<char>* data_to_be_written) const {
|
|
|
|
fprintf(fp_, "const byte Snapshot::%sdata_[] = {\n", prefix);
|
|
|
|
if (!omit_)
|
|
|
|
WriteSnapshotData(data_to_be_written);
|
|
|
|
fprintf(fp_, "};\n");
|
|
|
|
fprintf(fp_, "const int Snapshot::%ssize_ = %d;\n", prefix,
|
|
|
|
data_to_be_written->length());
|
|
|
|
|
|
|
|
if (data_to_be_written == &source_data && !omit_) {
|
|
|
|
fprintf(fp_, "const byte* Snapshot::%sraw_data_ = Snapshot::%sdata_;\n",
|
|
|
|
prefix, prefix);
|
|
|
|
fprintf(fp_, "const int Snapshot::%sraw_size_ = Snapshot::%ssize_;\n",
|
|
|
|
prefix, prefix);
|
|
|
|
} else {
|
|
|
|
fprintf(fp_, "const byte* Snapshot::%sraw_data_ = NULL;\n", prefix);
|
|
|
|
fprintf(fp_, "const int Snapshot::%sraw_size_ = %d;\n",
|
|
|
|
prefix, source_data.length());
|
|
|
|
}
|
|
|
|
fprintf(fp_, "\n");
|
2009-10-30 10:23:12 +00:00
|
|
|
}
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void WriteMeta(const char* prefix, const i::Serializer& ser) const {
|
|
|
|
WriteSizeVar(ser, prefix, "new", i::NEW_SPACE);
|
|
|
|
WriteSizeVar(ser, prefix, "pointer", i::OLD_POINTER_SPACE);
|
|
|
|
WriteSizeVar(ser, prefix, "data", i::OLD_DATA_SPACE);
|
|
|
|
WriteSizeVar(ser, prefix, "code", i::CODE_SPACE);
|
|
|
|
WriteSizeVar(ser, prefix, "map", i::MAP_SPACE);
|
|
|
|
WriteSizeVar(ser, prefix, "cell", i::CELL_SPACE);
|
|
|
|
WriteSizeVar(ser, prefix, "property_cell", i::PROPERTY_CELL_SPACE);
|
|
|
|
fprintf(fp_, "\n");
|
2009-10-30 10:23:12 +00:00
|
|
|
}
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
void WriteSizeVar(const i::Serializer& ser, const char* prefix,
|
|
|
|
const char* name, int space) const {
|
|
|
|
fprintf(fp_, "const int Snapshot::%s%s_space_used_ = %d;\n",
|
|
|
|
prefix, name, ser.CurrentAllocationAddress(space));
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteSnapshotData(const i::List<char>* data) const {
|
|
|
|
for (int i = 0; i < data->length(); i++) {
|
|
|
|
if ((i & 0x1f) == 0x1f)
|
|
|
|
fprintf(fp_, "\n");
|
|
|
|
if (i > 0)
|
|
|
|
fprintf(fp_, ",");
|
|
|
|
fprintf(fp_, "%u", static_cast<unsigned char>(data->at(i)));
|
|
|
|
}
|
|
|
|
fprintf(fp_, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE* GetFileDescriptorOrDie(const char* filename) {
|
|
|
|
FILE* fp = i::OS::FOpen(filename, "wb");
|
|
|
|
if (fp == NULL) {
|
|
|
|
i::PrintF("Unable to open file \"%s\" for writing.\n", filename);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return fp;
|
|
|
|
}
|
2011-04-29 12:08:33 +00:00
|
|
|
|
|
|
|
FILE* fp_;
|
2014-04-24 12:31:10 +00:00
|
|
|
FILE* raw_file_;
|
|
|
|
FILE* raw_context_file_;
|
|
|
|
Compressor* compressor_;
|
|
|
|
bool omit_;
|
2011-04-29 12:08:33 +00:00
|
|
|
};
|
2010-01-18 16:04:25 +00:00
|
|
|
|
2010-03-23 11:40:38 +00:00
|
|
|
|
2011-04-29 12:08:33 +00:00
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
|
|
|
class BZip2Compressor : public Compressor {
|
|
|
|
public:
|
|
|
|
BZip2Compressor() : output_(NULL) {}
|
|
|
|
virtual ~BZip2Compressor() {
|
|
|
|
delete output_;
|
|
|
|
}
|
|
|
|
virtual bool Compress(i::Vector<char> input) {
|
|
|
|
delete output_;
|
|
|
|
output_ = new i::ScopedVector<char>((input.length() * 101) / 100 + 1000);
|
|
|
|
unsigned int output_length_ = output_->length();
|
|
|
|
int result = BZ2_bzBuffToBuffCompress(output_->start(), &output_length_,
|
|
|
|
input.start(), input.length(),
|
|
|
|
9, 1, 0);
|
|
|
|
if (result == BZ_OK) {
|
|
|
|
output_->Truncate(output_length_);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "bzlib error code: %d\n", result);
|
|
|
|
return false;
|
2010-03-23 11:40:38 +00:00
|
|
|
}
|
2011-04-29 12:08:33 +00:00
|
|
|
}
|
|
|
|
virtual i::Vector<char>* output() { return output_; }
|
2010-03-23 11:40:38 +00:00
|
|
|
|
2009-10-30 10:23:12 +00:00
|
|
|
private:
|
2011-04-29 12:08:33 +00:00
|
|
|
i::ScopedVector<char>* output_;
|
2009-10-30 10:23:12 +00:00
|
|
|
};
|
2011-06-06 20:47:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BZip2Decompressor : public StartupDataDecompressor {
|
|
|
|
public:
|
|
|
|
virtual ~BZip2Decompressor() { }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual int DecompressData(char* raw_data,
|
|
|
|
int* raw_data_size,
|
|
|
|
const char* compressed_data,
|
|
|
|
int compressed_data_size) {
|
|
|
|
ASSERT_EQ(StartupData::kBZip2,
|
|
|
|
V8::GetCompressedStartupDataAlgorithm());
|
|
|
|
unsigned int decompressed_size = *raw_data_size;
|
|
|
|
int result =
|
|
|
|
BZ2_bzBuffToBuffDecompress(raw_data,
|
|
|
|
&decompressed_size,
|
|
|
|
const_cast<char*>(compressed_data),
|
|
|
|
compressed_data_size,
|
|
|
|
0, 1);
|
|
|
|
if (result == BZ_OK) {
|
|
|
|
*raw_data_size = decompressed_size;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
};
|
2011-04-29 12:08:33 +00:00
|
|
|
#endif
|
2009-10-30 10:23:12 +00:00
|
|
|
|
|
|
|
|
2013-04-29 11:49:24 +00:00
|
|
|
void DumpException(Handle<Message> message) {
|
|
|
|
String::Utf8Value message_string(message->Get());
|
|
|
|
String::Utf8Value message_line(message->GetSourceLine());
|
|
|
|
fprintf(stderr, "%s at line %d\n", *message_string, message->GetLineNumber());
|
|
|
|
fprintf(stderr, "%s\n", *message_line);
|
|
|
|
for (int i = 0; i <= message->GetEndColumn(); ++i) {
|
|
|
|
fprintf(stderr, "%c", i < message->GetStartColumn() ? ' ' : '^');
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
int main(int argc, char** argv) {
|
2013-07-11 09:58:54 +00:00
|
|
|
V8::InitializeICU();
|
2013-09-20 13:19:40 +00:00
|
|
|
i::Isolate::SetCrashIfDefaultIsolateInitialized();
|
2014-05-16 15:18:24 +00:00
|
|
|
i::CpuFeatures::Probe(true);
|
2013-07-11 09:58:54 +00:00
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
// By default, log code create information in the snapshot.
|
|
|
|
i::FLAG_log_code = true;
|
2011-07-13 09:09:04 +00:00
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
// Print the usage if an error occurs when parsing the command line
|
|
|
|
// flags or if the help flag is set.
|
2014-05-16 15:18:24 +00:00
|
|
|
int result = i::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
|
2008-11-06 10:43:15 +00:00
|
|
|
if (result > 0 || argc != 2 || i::FLAG_help) {
|
2008-07-03 15:10:15 +00:00
|
|
|
::printf("Usage: %s [flag] ... outfile\n", argv[0]);
|
2008-09-12 10:31:37 +00:00
|
|
|
i::FlagList::PrintHelp();
|
2008-11-06 10:43:15 +00:00
|
|
|
return !i::FLAG_help;
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
2011-06-06 20:47:30 +00:00
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
|
|
|
BZip2Decompressor natives_decompressor;
|
|
|
|
int bz2_result = natives_decompressor.Decompress();
|
|
|
|
if (bz2_result != BZ_OK) {
|
|
|
|
fprintf(stderr, "bzip error code: %d\n", bz2_result);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
#endif
|
2013-09-20 13:19:40 +00:00
|
|
|
i::FLAG_logfile_per_isolate = false;
|
|
|
|
|
|
|
|
Isolate* isolate = v8::Isolate::New();
|
|
|
|
isolate->Enter();
|
2013-09-03 11:54:08 +00:00
|
|
|
i::Isolate* internal_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
2014-04-17 14:45:06 +00:00
|
|
|
i::Serializer::RequestEnable(internal_isolate);
|
2013-05-08 07:45:16 +00:00
|
|
|
Persistent<Context> context;
|
|
|
|
{
|
|
|
|
HandleScope handle_scope(isolate);
|
|
|
|
context.Reset(isolate, Context::New(isolate));
|
|
|
|
}
|
|
|
|
|
2012-05-31 12:26:36 +00:00
|
|
|
if (context.IsEmpty()) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"\nException thrown while compiling natives - see above.\n\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2012-06-19 18:38:03 +00:00
|
|
|
if (i::FLAG_extra_code != NULL) {
|
|
|
|
// Capture 100 frames if anything happens.
|
|
|
|
V8::SetCaptureStackTraceForUncaughtExceptions(true, 100);
|
2013-03-15 12:06:53 +00:00
|
|
|
HandleScope scope(isolate);
|
2013-11-12 07:03:59 +00:00
|
|
|
v8::Context::Scope cscope(v8::Local<v8::Context>::New(isolate, context));
|
2012-06-19 18:38:03 +00:00
|
|
|
const char* name = i::FLAG_extra_code;
|
|
|
|
FILE* file = i::OS::FOpen(name, "rb");
|
|
|
|
if (file == NULL) {
|
|
|
|
fprintf(stderr, "Failed to open '%s': errno %d\n", name, errno);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
int size = ftell(file);
|
|
|
|
rewind(file);
|
|
|
|
|
|
|
|
char* chars = new char[size + 1];
|
|
|
|
chars[size] = '\0';
|
|
|
|
for (int i = 0; i < size;) {
|
|
|
|
int read = static_cast<int>(fread(&chars[i], 1, size - i, file));
|
|
|
|
if (read < 0) {
|
|
|
|
fprintf(stderr, "Failed to read '%s': errno %d\n", name, errno);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
i += read;
|
|
|
|
}
|
|
|
|
fclose(file);
|
2013-11-22 12:28:58 +00:00
|
|
|
Local<String> source = String::NewFromUtf8(isolate, chars);
|
2012-06-19 18:38:03 +00:00
|
|
|
TryCatch try_catch;
|
|
|
|
Local<Script> script = Script::Compile(source);
|
|
|
|
if (try_catch.HasCaught()) {
|
2013-04-29 11:49:24 +00:00
|
|
|
fprintf(stderr, "Failure compiling '%s'\n", name);
|
|
|
|
DumpException(try_catch.Message());
|
2012-06-19 18:38:03 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2012-06-20 08:14:31 +00:00
|
|
|
script->Run();
|
2012-06-19 18:38:03 +00:00
|
|
|
if (try_catch.HasCaught()) {
|
|
|
|
fprintf(stderr, "Failure running '%s'\n", name);
|
2013-04-29 11:49:24 +00:00
|
|
|
DumpException(try_catch.Message());
|
2012-06-19 18:38:03 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
2008-07-30 08:49:36 +00:00
|
|
|
// Make sure all builtin scripts are cached.
|
2013-03-15 12:06:53 +00:00
|
|
|
{ HandleScope scope(isolate);
|
2008-07-30 08:49:36 +00:00
|
|
|
for (int i = 0; i < i::Natives::GetBuiltinsCount(); i++) {
|
2013-09-03 11:54:08 +00:00
|
|
|
internal_isolate->bootstrapper()->NativesSourceLookup(i);
|
2008-07-30 08:49:36 +00:00
|
|
|
}
|
|
|
|
}
|
2010-03-23 11:40:38 +00:00
|
|
|
// If we don't do this then we end up with a stray root pointing at the
|
|
|
|
// context even after we have disposed of the context.
|
2013-09-11 07:14:41 +00:00
|
|
|
internal_isolate->heap()->CollectAllGarbage(
|
|
|
|
i::Heap::kNoGCFlags, "mksnapshot");
|
2013-06-13 09:27:09 +00:00
|
|
|
i::Object* raw_context = *v8::Utils::OpenPersistent(context);
|
2013-11-22 12:28:58 +00:00
|
|
|
context.Reset();
|
2014-04-24 12:31:10 +00:00
|
|
|
|
2009-11-16 12:08:40 +00:00
|
|
|
// This results in a somewhat smaller snapshot, probably because it gets rid
|
|
|
|
// of some things that are cached between garbage collections.
|
2014-04-24 12:31:10 +00:00
|
|
|
i::List<char> snapshot_data;
|
|
|
|
ListSnapshotSink snapshot_sink(&snapshot_data);
|
|
|
|
i::StartupSerializer ser(internal_isolate, &snapshot_sink);
|
2010-03-23 11:40:38 +00:00
|
|
|
ser.SerializeStrongReferences();
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
i::List<char> context_data;
|
|
|
|
ListSnapshotSink contex_sink(&context_data);
|
|
|
|
i::PartialSerializer context_ser(internal_isolate, &ser, &contex_sink);
|
|
|
|
context_ser.Serialize(&raw_context);
|
2010-03-23 11:40:38 +00:00
|
|
|
ser.SerializeWeakReferences();
|
|
|
|
|
2014-04-24 12:31:10 +00:00
|
|
|
{
|
|
|
|
SnapshotWriter writer(argv[1]);
|
|
|
|
writer.SetOmit(i::FLAG_omit);
|
|
|
|
if (i::FLAG_raw_file && i::FLAG_raw_context_file)
|
|
|
|
writer.SetRawFiles(i::FLAG_raw_file, i::FLAG_raw_context_file);
|
2011-04-29 12:08:33 +00:00
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
2014-04-24 12:31:10 +00:00
|
|
|
BZip2Compressor bzip2;
|
|
|
|
writer.SetCompressor(&bzip2);
|
2011-04-29 12:08:33 +00:00
|
|
|
#endif
|
2014-04-24 12:31:10 +00:00
|
|
|
writer.WriteSnapshot(snapshot_data, ser, context_data, context_ser);
|
|
|
|
}
|
|
|
|
|
2014-01-29 13:30:38 +00:00
|
|
|
isolate->Exit();
|
|
|
|
isolate->Dispose();
|
2014-05-09 08:40:18 +00:00
|
|
|
// TODO(svenpanne) Alas, we can't cleanly dispose V8 here, because
|
|
|
|
// Serializer::code_address_map_ is static (a.k.a. a global variable), and
|
|
|
|
// disposing that would involve accessing the Isolate just disposed.
|
|
|
|
// code_address_map_ really has to be an instance variable...
|
|
|
|
// V8::Dispose();
|
2008-07-03 15:10:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|