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 22 matching lines...) Expand all Loading... |
33 namespace v8 { | 33 namespace v8 { |
34 namespace internal { | 34 namespace internal { |
35 | 35 |
36 class Snapshot { | 36 class Snapshot { |
37 public: | 37 public: |
38 // Initialize the VM from the given snapshot file. If snapshot_file is | 38 // Initialize the VM from the given snapshot file. If snapshot_file is |
39 // NULL, use the internal snapshot instead. Returns false if no snapshot | 39 // NULL, use the internal snapshot instead. Returns false if no snapshot |
40 // could be found. | 40 // could be found. |
41 static bool Initialize(const char* snapshot_file = NULL); | 41 static bool Initialize(const char* snapshot_file = NULL); |
42 | 42 |
| 43 static bool HaveASnapshotToStartFrom(); |
| 44 |
43 // Create a new context using the internal partial snapshot. | 45 // Create a new context using the internal partial snapshot. |
44 static Handle<Context> NewContextFromSnapshot(); | 46 static Handle<Context> NewContextFromSnapshot(); |
45 | 47 |
46 // Returns whether or not the snapshot is enabled. | 48 // Returns whether or not the snapshot is enabled. |
47 static bool IsEnabled() { return size_ != 0; } | 49 static bool IsEnabled() { return size_ != 0; } |
48 | 50 |
49 // Write snapshot to the given file. Returns true if snapshot was written | 51 // Write snapshot to the given file. Returns true if snapshot was written |
50 // successfully. | 52 // successfully. |
51 static bool WriteToFile(const char* snapshot_file); | 53 static bool WriteToFile(const char* snapshot_file); |
52 | 54 |
(...skipping 29 matching lines...) Expand all Loading... |
82 static const int context_raw_size_; | 84 static const int context_raw_size_; |
83 | 85 |
84 static bool Deserialize(const byte* content, int len); | 86 static bool Deserialize(const byte* content, int len); |
85 | 87 |
86 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot); | 88 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot); |
87 }; | 89 }; |
88 | 90 |
89 } } // namespace v8::internal | 91 } } // namespace v8::internal |
90 | 92 |
91 #endif // V8_SNAPSHOT_H_ | 93 #endif // V8_SNAPSHOT_H_ |
OLD | NEW |