2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
2008-07-03 15:10:15 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
using namespace v8;
|
|
|
|
|
|
|
|
static const unsigned int kMaxCounters = 256;
|
|
|
|
|
|
|
|
// A single counter in a counter collection.
|
|
|
|
class Counter {
|
|
|
|
public:
|
|
|
|
static const int kMaxNameSize = 64;
|
2008-12-01 07:40:43 +00:00
|
|
|
int32_t* Bind(const char* name) {
|
2008-07-03 15:10:15 +00:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < kMaxNameSize - 1 && name[i]; i++) {
|
2008-12-01 07:40:43 +00:00
|
|
|
name_[i] = name[i];
|
2008-07-03 15:10:15 +00:00
|
|
|
}
|
|
|
|
name_[i] = '\0';
|
|
|
|
return &counter_;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
int32_t counter_;
|
|
|
|
uint8_t name_[kMaxNameSize];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// A set of counters and associated information. An instance of this
|
|
|
|
// class is stored directly in the memory-mapped counters file if
|
|
|
|
// the --save-counters options is used
|
|
|
|
class CounterCollection {
|
|
|
|
public:
|
|
|
|
CounterCollection() {
|
|
|
|
magic_number_ = 0xDEADFACE;
|
|
|
|
max_counters_ = kMaxCounters;
|
|
|
|
max_name_size_ = Counter::kMaxNameSize;
|
|
|
|
counters_in_use_ = 0;
|
|
|
|
}
|
|
|
|
Counter* GetNextCounter() {
|
|
|
|
if (counters_in_use_ == kMaxCounters) return NULL;
|
|
|
|
return &counters_[counters_in_use_++];
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
uint32_t magic_number_;
|
|
|
|
uint32_t max_counters_;
|
|
|
|
uint32_t max_name_size_;
|
|
|
|
uint32_t counters_in_use_;
|
|
|
|
Counter counters_[kMaxCounters];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class PartialSnapshotSink : public i::SnapshotByteSink {
|
|
|
|
public:
|
|
|
|
PartialSnapshotSink() : data_(), raw_size_(-1) { }
|
|
|
|
virtual ~PartialSnapshotSink() { data_.Free(); }
|
|
|
|
virtual void Put(int byte, const char* description) {
|
|
|
|
data_.Add(byte);
|
|
|
|
}
|
|
|
|
virtual int Position() { return data_.length(); }
|
|
|
|
void Print(FILE* fp) {
|
|
|
|
int length = Position();
|
|
|
|
for (int j = 0; j < length; j++) {
|
|
|
|
if ((j & 0x1f) == 0x1f) {
|
|
|
|
fprintf(fp, "\n");
|
|
|
|
}
|
|
|
|
if (j != 0) {
|
|
|
|
fprintf(fp, ",");
|
|
|
|
}
|
2011-12-13 13:02:08 +00:00
|
|
|
fprintf(fp, "%u", static_cast<unsigned char>(at(j)));
|
2011-04-29 12:08:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
char at(int i) { return data_[i]; }
|
|
|
|
bool Compress(Compressor* compressor) {
|
|
|
|
ASSERT_EQ(-1, raw_size_);
|
|
|
|
raw_size_ = data_.length();
|
|
|
|
if (!compressor->Compress(data_.ToVector())) return false;
|
|
|
|
data_.Clear();
|
|
|
|
data_.AddAll(*compressor->output());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
int raw_size() { return raw_size_; }
|
2011-06-06 20:47:30 +00:00
|
|
|
|
2011-04-29 12:08:33 +00:00
|
|
|
private:
|
|
|
|
i::List<char> data_;
|
|
|
|
int raw_size_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class CppByteSink : public PartialSnapshotSink {
|
|
|
|
public:
|
|
|
|
explicit CppByteSink(const char* snapshot_file) {
|
2009-10-30 10:23:12 +00:00
|
|
|
fp_ = i::OS::FOpen(snapshot_file, "wb");
|
|
|
|
if (fp_ == NULL) {
|
|
|
|
i::PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
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");
|
|
|
|
fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n");
|
|
|
|
fprintf(fp_, "const byte Snapshot::data_[] = {");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~CppByteSink() {
|
2011-04-29 12:08:33 +00:00
|
|
|
fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position());
|
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
|
|
|
fprintf(fp_, "const byte* Snapshot::raw_data_ = NULL;\n");
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::raw_size_ = %d;\n\n",
|
|
|
|
raw_size());
|
|
|
|
#else
|
|
|
|
fprintf(fp_,
|
|
|
|
"const byte* Snapshot::raw_data_ = Snapshot::data_;\n");
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::raw_size_ = Snapshot::size_;\n\n");
|
|
|
|
#endif
|
2010-03-23 11:40:38 +00:00
|
|
|
fprintf(fp_, "} } // namespace v8::internal\n");
|
|
|
|
fclose(fp_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteSpaceUsed(
|
|
|
|
int new_space_used,
|
|
|
|
int pointer_space_used,
|
|
|
|
int data_space_used,
|
|
|
|
int code_space_used,
|
|
|
|
int map_space_used,
|
|
|
|
int cell_space_used,
|
|
|
|
int large_space_used) {
|
|
|
|
fprintf(fp_, "const int Snapshot::new_space_used_ = %d;\n", new_space_used);
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::pointer_space_used_ = %d;\n",
|
|
|
|
pointer_space_used);
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::data_space_used_ = %d;\n",
|
|
|
|
data_space_used);
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::code_space_used_ = %d;\n",
|
|
|
|
code_space_used);
|
|
|
|
fprintf(fp_, "const int Snapshot::map_space_used_ = %d;\n", map_space_used);
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::cell_space_used_ = %d;\n",
|
|
|
|
cell_space_used);
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::large_space_used_ = %d;\n",
|
|
|
|
large_space_used);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WritePartialSnapshot() {
|
|
|
|
int length = partial_sink_.Position();
|
|
|
|
fprintf(fp_, "};\n\n");
|
|
|
|
fprintf(fp_, "const int Snapshot::context_size_ = %d;\n", length);
|
2011-04-29 12:43:24 +00:00
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
2011-04-29 12:08:33 +00:00
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::context_raw_size_ = %d;\n",
|
|
|
|
partial_sink_.raw_size());
|
2011-04-29 12:43:24 +00:00
|
|
|
#else
|
|
|
|
fprintf(fp_,
|
|
|
|
"const int Snapshot::context_raw_size_ = "
|
2011-04-29 12:47:34 +00:00
|
|
|
"Snapshot::context_size_;\n");
|
2011-04-29 12:43:24 +00:00
|
|
|
#endif
|
2010-03-23 11:40:38 +00:00
|
|
|
fprintf(fp_, "const byte Snapshot::context_data_[] = {\n");
|
2011-04-29 12:08:33 +00:00
|
|
|
partial_sink_.Print(fp_);
|
|
|
|
fprintf(fp_, "};\n\n");
|
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
|
|
|
fprintf(fp_, "const byte* Snapshot::context_raw_data_ = NULL;\n");
|
|
|
|
#else
|
|
|
|
fprintf(fp_, "const byte* Snapshot::context_raw_data_ ="
|
|
|
|
" Snapshot::context_data_;\n");
|
|
|
|
#endif
|
2009-10-30 10:23:12 +00:00
|
|
|
}
|
|
|
|
|
2011-04-29 12:08:33 +00:00
|
|
|
void WriteSnapshot() {
|
|
|
|
Print(fp_);
|
2009-10-30 10:23:12 +00:00
|
|
|
}
|
|
|
|
|
2011-04-29 12:08:33 +00:00
|
|
|
PartialSnapshotSink* partial_sink() { return &partial_sink_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
FILE* fp_;
|
|
|
|
PartialSnapshotSink partial_sink_;
|
|
|
|
};
|
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
|
|
|
|
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
int main(int argc, char** argv) {
|
|
|
|
// 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.
|
|
|
|
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
|
2009-02-25 14:57:46 +00:00
|
|
|
i::Serializer::Enable();
|
2009-11-16 12:08:40 +00:00
|
|
|
Persistent<Context> context = v8::Context::New();
|
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) {
|
|
|
|
context->Enter();
|
|
|
|
// Capture 100 frames if anything happens.
|
|
|
|
V8::SetCaptureStackTraceForUncaughtExceptions(true, 100);
|
|
|
|
HandleScope scope;
|
|
|
|
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);
|
|
|
|
Local<String> source = String::New(chars);
|
|
|
|
TryCatch try_catch;
|
|
|
|
Local<Script> script = Script::Compile(source);
|
|
|
|
if (try_catch.HasCaught()) {
|
|
|
|
fprintf(stderr, "Failure compiling '%s' (see above)\n", name);
|
|
|
|
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);
|
|
|
|
Local<Message> message = try_catch.Message();
|
|
|
|
Local<String> message_string = message->Get();
|
|
|
|
Local<String> message_line = message->GetSourceLine();
|
|
|
|
int len = 2 + message_string->Utf8Length() + message_line->Utf8Length();
|
|
|
|
char* buf = new char(len);
|
|
|
|
message_string->WriteUtf8(buf);
|
|
|
|
fprintf(stderr, "%s at line %d\n", buf, message->GetLineNumber());
|
|
|
|
message_line->WriteUtf8(buf);
|
|
|
|
fprintf(stderr, "%s\n", buf);
|
|
|
|
int from = message->GetStartColumn();
|
|
|
|
int to = message->GetEndColumn();
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < from; i++) fprintf(stderr, " ");
|
|
|
|
for ( ; i <= to; i++) fprintf(stderr, "^");
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
context->Exit();
|
|
|
|
}
|
2008-07-30 08:49:36 +00:00
|
|
|
// Make sure all builtin scripts are cached.
|
|
|
|
{ HandleScope scope;
|
|
|
|
for (int i = 0; i < i::Natives::GetBuiltinsCount(); i++) {
|
2011-03-18 20:35:07 +00:00
|
|
|
i::Isolate::Current()->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.
|
2012-02-03 14:16:40 +00:00
|
|
|
HEAP->CollectAllGarbage(i::Heap::kNoGCFlags, "mksnapshot");
|
2010-03-23 11:40:38 +00:00
|
|
|
i::Object* raw_context = *(v8::Utils::OpenHandle(*context));
|
2009-11-16 12:08:40 +00:00
|
|
|
context.Dispose();
|
|
|
|
CppByteSink sink(argv[1]);
|
|
|
|
// This results in a somewhat smaller snapshot, probably because it gets rid
|
|
|
|
// of some things that are cached between garbage collections.
|
2010-01-27 08:25:48 +00:00
|
|
|
i::StartupSerializer ser(&sink);
|
2010-03-23 11:40:38 +00:00
|
|
|
ser.SerializeStrongReferences();
|
|
|
|
|
|
|
|
i::PartialSerializer partial_ser(&ser, sink.partial_sink());
|
|
|
|
partial_ser.Serialize(&raw_context);
|
|
|
|
|
|
|
|
ser.SerializeWeakReferences();
|
|
|
|
|
2011-04-29 12:08:33 +00:00
|
|
|
#ifdef COMPRESS_STARTUP_DATA_BZ2
|
|
|
|
BZip2Compressor compressor;
|
|
|
|
if (!sink.Compress(&compressor))
|
|
|
|
return 1;
|
|
|
|
if (!sink.partial_sink()->Compress(&compressor))
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
sink.WriteSnapshot();
|
2010-03-23 11:40:38 +00:00
|
|
|
sink.WritePartialSnapshot();
|
|
|
|
|
|
|
|
sink.WriteSpaceUsed(
|
|
|
|
partial_ser.CurrentAllocationAddress(i::NEW_SPACE),
|
|
|
|
partial_ser.CurrentAllocationAddress(i::OLD_POINTER_SPACE),
|
|
|
|
partial_ser.CurrentAllocationAddress(i::OLD_DATA_SPACE),
|
|
|
|
partial_ser.CurrentAllocationAddress(i::CODE_SPACE),
|
|
|
|
partial_ser.CurrentAllocationAddress(i::MAP_SPACE),
|
|
|
|
partial_ser.CurrentAllocationAddress(i::CELL_SPACE),
|
|
|
|
partial_ser.CurrentAllocationAddress(i::LO_SPACE));
|
2008-07-03 15:10:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|