blob: a791dbba282302be09744c77c08179ea09fb6105 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000028#ifdef COMPRESS_STARTUP_DATA_BZ2
29#include <bzlib.h>
30#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000031#include <signal.h>
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000032
33#include "v8.h"
34
35#include "bootstrapper.h"
36#include "natives.h"
37#include "platform.h"
38#include "serialize.h"
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +000039#include "list.h"
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000040
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000041using namespace v8;
42
43static const unsigned int kMaxCounters = 256;
44
45// A single counter in a counter collection.
46class Counter {
47 public:
48 static const int kMaxNameSize = 64;
ager@chromium.orga74f0da2008-12-03 16:05:52 +000049 int32_t* Bind(const char* name) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000050 int i;
51 for (i = 0; i < kMaxNameSize - 1 && name[i]; i++) {
ager@chromium.orga74f0da2008-12-03 16:05:52 +000052 name_[i] = name[i];
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +000053 }
54 name_[i] = '\0';
55 return &counter_;
56 }
57 private:
58 int32_t counter_;
59 uint8_t name_[kMaxNameSize];
60};
61
62
63// A set of counters and associated information. An instance of this
64// class is stored directly in the memory-mapped counters file if
65// the --save-counters options is used
66class CounterCollection {
67 public:
68 CounterCollection() {
69 magic_number_ = 0xDEADFACE;
70 max_counters_ = kMaxCounters;
71 max_name_size_ = Counter::kMaxNameSize;
72 counters_in_use_ = 0;
73 }
74 Counter* GetNextCounter() {
75 if (counters_in_use_ == kMaxCounters) return NULL;
76 return &counters_[counters_in_use_++];
77 }
78 private:
79 uint32_t magic_number_;
80 uint32_t max_counters_;
81 uint32_t max_name_size_;
82 uint32_t counters_in_use_;
83 Counter counters_[kMaxCounters];
84};
85
86
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000087class Compressor {
ager@chromium.orgc4c92722009-11-18 14:12:51 +000088 public:
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +000089 virtual ~Compressor() {}
90 virtual bool Compress(i::Vector<char> input) = 0;
91 virtual i::Vector<char>* output() = 0;
92};
93
94
95class PartialSnapshotSink : public i::SnapshotByteSink {
96 public:
97 PartialSnapshotSink() : data_(), raw_size_(-1) { }
98 virtual ~PartialSnapshotSink() { data_.Free(); }
99 virtual void Put(int byte, const char* description) {
100 data_.Add(byte);
101 }
102 virtual int Position() { return data_.length(); }
103 void Print(FILE* fp) {
104 int length = Position();
105 for (int j = 0; j < length; j++) {
106 if ((j & 0x1f) == 0x1f) {
107 fprintf(fp, "\n");
108 }
109 if (j != 0) {
110 fprintf(fp, ",");
111 }
112 fprintf(fp, "%d", at(j));
113 }
114 }
115 char at(int i) { return data_[i]; }
116 bool Compress(Compressor* compressor) {
117 ASSERT_EQ(-1, raw_size_);
118 raw_size_ = data_.length();
119 if (!compressor->Compress(data_.ToVector())) return false;
120 data_.Clear();
121 data_.AddAll(*compressor->output());
122 return true;
123 }
124 int raw_size() { return raw_size_; }
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000125
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000126 private:
127 i::List<char> data_;
128 int raw_size_;
129};
130
131
132class CppByteSink : public PartialSnapshotSink {
133 public:
134 explicit CppByteSink(const char* snapshot_file) {
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000135 fp_ = i::OS::FOpen(snapshot_file, "wb");
136 if (fp_ == NULL) {
137 i::PrintF("Unable to write to snapshot file \"%s\"\n", snapshot_file);
138 exit(1);
139 }
140 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
141 fprintf(fp_, "#include \"v8.h\"\n");
142 fprintf(fp_, "#include \"platform.h\"\n\n");
143 fprintf(fp_, "#include \"snapshot.h\"\n\n");
144 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n");
145 fprintf(fp_, "const byte Snapshot::data_[] = {");
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000146 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000147
148 virtual ~CppByteSink() {
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000149 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position());
150#ifdef COMPRESS_STARTUP_DATA_BZ2
151 fprintf(fp_, "const byte* Snapshot::raw_data_ = NULL;\n");
152 fprintf(fp_,
153 "const int Snapshot::raw_size_ = %d;\n\n",
154 raw_size());
155#else
156 fprintf(fp_,
157 "const byte* Snapshot::raw_data_ = Snapshot::data_;\n");
158 fprintf(fp_,
159 "const int Snapshot::raw_size_ = Snapshot::size_;\n\n");
160#endif
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000161 fprintf(fp_, "} } // namespace v8::internal\n");
162 fclose(fp_);
163 }
164
165 void WriteSpaceUsed(
166 int new_space_used,
167 int pointer_space_used,
168 int data_space_used,
169 int code_space_used,
170 int map_space_used,
171 int cell_space_used,
172 int large_space_used) {
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000173 fprintf(fp_, "const int Snapshot::new_space_used_ = %d;\n", new_space_used);
174 fprintf(fp_,
175 "const int Snapshot::pointer_space_used_ = %d;\n",
176 pointer_space_used);
177 fprintf(fp_,
178 "const int Snapshot::data_space_used_ = %d;\n",
179 data_space_used);
180 fprintf(fp_,
181 "const int Snapshot::code_space_used_ = %d;\n",
182 code_space_used);
183 fprintf(fp_, "const int Snapshot::map_space_used_ = %d;\n", map_space_used);
184 fprintf(fp_,
185 "const int Snapshot::cell_space_used_ = %d;\n",
186 cell_space_used);
187 fprintf(fp_,
188 "const int Snapshot::large_space_used_ = %d;\n",
189 large_space_used);
190 }
191
192 void WritePartialSnapshot() {
193 int length = partial_sink_.Position();
194 fprintf(fp_, "};\n\n");
195 fprintf(fp_, "const int Snapshot::context_size_ = %d;\n", length);
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000196#ifdef COMPRESS_STARTUP_DATA_BZ2
197 fprintf(fp_,
198 "const int Snapshot::context_raw_size_ = %d;\n",
199 partial_sink_.raw_size());
200#else
201 fprintf(fp_,
202 "const int Snapshot::context_raw_size_ = "
203 "Snapshot::context_size_;\n");
204#endif
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000205 fprintf(fp_, "const byte Snapshot::context_data_[] = {\n");
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000206 partial_sink_.Print(fp_);
207 fprintf(fp_, "};\n\n");
208#ifdef COMPRESS_STARTUP_DATA_BZ2
209 fprintf(fp_, "const byte* Snapshot::context_raw_data_ = NULL;\n");
210#else
211 fprintf(fp_, "const byte* Snapshot::context_raw_data_ ="
212 " Snapshot::context_data_;\n");
213#endif
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000214 }
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000215
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000216 void WriteSnapshot() {
217 Print(fp_);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000218 }
219
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000220 PartialSnapshotSink* partial_sink() { return &partial_sink_; }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000221
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000222 private:
223 FILE* fp_;
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000224 PartialSnapshotSink partial_sink_;
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000225};
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000226
227
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000228#ifdef COMPRESS_STARTUP_DATA_BZ2
229class BZip2Compressor : public Compressor {
230 public:
231 BZip2Compressor() : output_(NULL) {}
232 virtual ~BZip2Compressor() {
233 delete output_;
234 }
235 virtual bool Compress(i::Vector<char> input) {
236 delete output_;
237 output_ = new i::ScopedVector<char>((input.length() * 101) / 100 + 1000);
238 unsigned int output_length_ = output_->length();
239 int result = BZ2_bzBuffToBuffCompress(output_->start(), &output_length_,
240 input.start(), input.length(),
241 9, 1, 0);
242 if (result == BZ_OK) {
243 output_->Truncate(output_length_);
244 return true;
245 } else {
246 fprintf(stderr, "bzlib error code: %d\n", result);
247 return false;
248 }
249 }
250 virtual i::Vector<char>* output() { return output_; }
251
252 private:
253 i::ScopedVector<char>* output_;
254};
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000255
256
257class BZip2Decompressor : public StartupDataDecompressor {
258 public:
259 virtual ~BZip2Decompressor() { }
260
261 protected:
262 virtual int DecompressData(char* raw_data,
263 int* raw_data_size,
264 const char* compressed_data,
265 int compressed_data_size) {
266 ASSERT_EQ(StartupData::kBZip2,
267 V8::GetCompressedStartupDataAlgorithm());
268 unsigned int decompressed_size = *raw_data_size;
269 int result =
270 BZ2_bzBuffToBuffDecompress(raw_data,
271 &decompressed_size,
272 const_cast<char*>(compressed_data),
273 compressed_data_size,
274 0, 1);
275 if (result == BZ_OK) {
276 *raw_data_size = decompressed_size;
277 }
278 return result;
279 }
280};
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000281#endif
282
283
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000284int main(int argc, char** argv) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000285 // By default, log code create information in the snapshot.
286 i::FLAG_log_code = true;
whesse@chromium.org030d38e2011-07-13 13:23:34 +0000287
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000288 // Print the usage if an error occurs when parsing the command line
289 // flags or if the help flag is set.
290 int result = i::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000291 if (result > 0 || argc != 2 || i::FLAG_help) {
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000292 ::printf("Usage: %s [flag] ... outfile\n", argv[0]);
kasperl@chromium.orgb9123622008-09-17 14:05:56 +0000293 i::FlagList::PrintHelp();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000294 return !i::FLAG_help;
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000295 }
jkummerow@chromium.orge297f592011-06-08 10:05:15 +0000296#ifdef COMPRESS_STARTUP_DATA_BZ2
297 BZip2Decompressor natives_decompressor;
298 int bz2_result = natives_decompressor.Decompress();
299 if (bz2_result != BZ_OK) {
300 fprintf(stderr, "bzip error code: %d\n", bz2_result);
301 exit(1);
302 }
303#endif
kasperl@chromium.org061ef742009-02-27 12:16:20 +0000304 i::Serializer::Enable();
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000305 Persistent<Context> context = v8::Context::New();
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000306 ASSERT(!context.IsEmpty());
kasper.lund7276f142008-07-30 08:49:36 +0000307 // Make sure all builtin scripts are cached.
308 { HandleScope scope;
309 for (int i = 0; i < i::Natives::GetBuiltinsCount(); i++) {
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000310 i::Isolate::Current()->bootstrapper()->NativesSourceLookup(i);
kasper.lund7276f142008-07-30 08:49:36 +0000311 }
312 }
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000313 // If we don't do this then we end up with a stray root pointing at the
314 // context even after we have disposed of the context.
sgjesse@chromium.orgea88ce92011-03-23 11:19:56 +0000315 HEAP->CollectAllGarbage(true);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000316 i::Object* raw_context = *(v8::Utils::OpenHandle(*context));
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000317 context.Dispose();
318 CppByteSink sink(argv[1]);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000319 // This results in a somewhat smaller snapshot, probably because it gets rid
320 // of some things that are cached between garbage collections.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000321 i::StartupSerializer ser(&sink);
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000322 ser.SerializeStrongReferences();
323
324 i::PartialSerializer partial_ser(&ser, sink.partial_sink());
325 partial_ser.Serialize(&raw_context);
326
327 ser.SerializeWeakReferences();
328
sgjesse@chromium.org8e8294a2011-05-02 14:30:53 +0000329#ifdef COMPRESS_STARTUP_DATA_BZ2
330 BZip2Compressor compressor;
331 if (!sink.Compress(&compressor))
332 return 1;
333 if (!sink.partial_sink()->Compress(&compressor))
334 return 1;
335#endif
336 sink.WriteSnapshot();
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000337 sink.WritePartialSnapshot();
338
339 sink.WriteSpaceUsed(
340 partial_ser.CurrentAllocationAddress(i::NEW_SPACE),
341 partial_ser.CurrentAllocationAddress(i::OLD_POINTER_SPACE),
342 partial_ser.CurrentAllocationAddress(i::OLD_DATA_SPACE),
343 partial_ser.CurrentAllocationAddress(i::CODE_SPACE),
344 partial_ser.CurrentAllocationAddress(i::MAP_SPACE),
345 partial_ser.CurrentAllocationAddress(i::CELL_SPACE),
346 partial_ser.CurrentAllocationAddress(i::LO_SPACE));
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000347 return 0;
348}