Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(404)

Side by Side Diff: src/snapshot.h

Issue 781443002: Encode reservation meta data in the snapshot blob. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@snapshotformat
Patch Set: rebased Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/serialize.cc ('k') | src/snapshot-common.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/isolate.h" 5 #include "src/isolate.h"
6 6
7 #ifndef V8_SNAPSHOT_H_ 7 #ifndef V8_SNAPSHOT_H_
8 #define V8_SNAPSHOT_H_ 8 #define V8_SNAPSHOT_H_
9 9
10 namespace v8 { 10 namespace v8 {
11 namespace internal { 11 namespace internal {
12 12
13 class Snapshot { 13 class Snapshot {
14 public: 14 public:
15 // Initialize the Isolate from the internal snapshot. Returns false if no 15 // Initialize the Isolate from the internal snapshot. Returns false if no
16 // snapshot could be found. 16 // snapshot could be found.
17 static bool Initialize(Isolate* isolate); 17 static bool Initialize(Isolate* isolate);
18 18
19 static bool HaveASnapshotToStartFrom(); 19 static bool HaveASnapshotToStartFrom();
20 20
21 // Create a new context using the internal partial snapshot. 21 // Create a new context using the internal partial snapshot.
22 static Handle<Context> NewContextFromSnapshot(Isolate* isolate); 22 static Handle<Context> NewContextFromSnapshot(Isolate* isolate);
23 23
24 private: 24 private:
25 static const byte data_[]; 25 static const byte data_[];
26 static const byte* raw_data_; 26 static const int size_;
27 static const byte context_data_[]; 27 static const byte context_data_[];
28 static const byte* context_raw_data_;
29 static const int new_space_used_;
30 static const int pointer_space_used_;
31 static const int data_space_used_;
32 static const int code_space_used_;
33 static const int map_space_used_;
34 static const int cell_space_used_;
35 static const int property_cell_space_used_;
36 static const int lo_space_used_;
37 static const int context_new_space_used_;
38 static const int context_pointer_space_used_;
39 static const int context_data_space_used_;
40 static const int context_code_space_used_;
41 static const int context_map_space_used_;
42 static const int context_cell_space_used_;
43 static const int context_property_cell_space_used_;
44 static const int context_lo_space_used_;
45 static const int size_;
46 static const int raw_size_;
47 static const int context_size_; 28 static const int context_size_;
48 static const int context_raw_size_;
49
50 static void ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer);
51 29
52 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot); 30 DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
53 }; 31 };
54 32
55 #ifdef V8_USE_EXTERNAL_STARTUP_DATA 33 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
56 void SetSnapshotFromFile(StartupData* snapshot_blob); 34 void SetSnapshotFromFile(StartupData* snapshot_blob);
57 #endif 35 #endif
58 36
59 } } // namespace v8::internal 37 } } // namespace v8::internal
60 38
61 #endif // V8_SNAPSHOT_H_ 39 #endif // V8_SNAPSHOT_H_
OLDNEW
« no previous file with comments | « src/serialize.cc ('k') | src/snapshot-common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698