Index: src/spaces.h |
=================================================================== |
--- src/spaces.h (revision 10961) |
+++ src/spaces.h (working copy) |
@@ -29,6 +29,7 @@ |
#define V8_SPACES_H_ |
#include "allocation.h" |
+#include "hashmap.h" |
#include "list.h" |
#include "log.h" |
@@ -2536,6 +2537,8 @@ |
intptr_t size_; // allocated bytes |
int page_count_; // number of chunks |
intptr_t objects_size_; // size of objects |
+ // Map MemoryChunk::kAlignment-aligned chunks to large pages covering them |
+ HashMap chunk_map_; |
friend class LargeObjectIterator; |