summaryrefslogtreecommitdiff
path: root/deps/v8/src/snapshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/snapshot.h')
-rw-r--r--deps/v8/src/snapshot.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/deps/v8/src/snapshot.h b/deps/v8/src/snapshot.h
index ab4529e517..c4ae45eee0 100644
--- a/deps/v8/src/snapshot.h
+++ b/deps/v8/src/snapshot.h
@@ -77,13 +77,18 @@ class Snapshot {
static const int code_space_used_;
static const int map_space_used_;
static const int cell_space_used_;
- static const int large_space_used_;
+ static const int context_new_space_used_;
+ static const int context_pointer_space_used_;
+ static const int context_data_space_used_;
+ static const int context_code_space_used_;
+ static const int context_map_space_used_;
+ static const int context_cell_space_used_;
static const int size_;
static const int raw_size_;
static const int context_size_;
static const int context_raw_size_;
- static bool Deserialize(const byte* content, int len);
+ static void ReserveSpaceForLinkedInSnapshot(Deserializer* deserializer);
DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
};