OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 15 matching lines...) Expand all Loading... |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 // The common functionality when building with or without snapshots. | 28 // The common functionality when building with or without snapshots. |
29 | 29 |
30 #include "v8.h" | 30 #include "v8.h" |
31 | 31 |
32 #include "api.h" | 32 #include "api.h" |
33 #include "serialize.h" | 33 #include "serialize.h" |
34 #include "snapshot.h" | 34 #include "snapshot.h" |
35 | 35 |
36 namespace v8 { namespace internal { | 36 namespace v8 { |
| 37 namespace internal { |
37 | 38 |
38 bool Snapshot::Deserialize(const byte* content, int len) { | 39 bool Snapshot::Deserialize(const byte* content, int len) { |
39 Deserializer des(content, len); | 40 Deserializer des(content, len); |
40 des.GetFlags(); | 41 des.GetFlags(); |
41 return V8::Initialize(&des); | 42 return V8::Initialize(&des); |
42 } | 43 } |
43 | 44 |
44 | 45 |
45 bool Snapshot::Initialize(const char* snapshot_file) { | 46 bool Snapshot::Initialize(const char* snapshot_file) { |
46 if (snapshot_file) { | 47 if (snapshot_file) { |
(...skipping 18 matching lines...) Expand all Loading... |
65 ser.Finalize(&str, &len); | 66 ser.Finalize(&str, &len); |
66 | 67 |
67 int written = WriteBytes(snapshot_file, str, len); | 68 int written = WriteBytes(snapshot_file, str, len); |
68 | 69 |
69 DeleteArray(str); | 70 DeleteArray(str); |
70 return written == len; | 71 return written == len; |
71 } | 72 } |
72 | 73 |
73 | 74 |
74 } } // namespace v8::internal | 75 } } // namespace v8::internal |
OLD | NEW |