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

Unified Diff: src/serialize.h

Issue 1016803002: Remove PropertyCell space (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/objects-inl.h ('k') | src/serialize.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.h
diff --git a/src/serialize.h b/src/serialize.h
index ca748a7e339aa2fd8f8d916e589e1ac8d72e4b9f..f344e5ae5769de5759f8db5d1c07e92334440ee5 100644
--- a/src/serialize.h
+++ b/src/serialize.h
@@ -306,8 +306,8 @@ class SerializerDeserializer: public ObjectVisitor {
// Where the pointed-to object can be found:
enum Where {
kNewObject = 0, // Object is next in snapshot.
- // 1-7 One per space.
- // 0x8 Unused.
+ // 1-6 One per space.
+ // 0x7, 0x8 Unused.
kRootArray = 0x9, // Object is found in root array.
kPartialSnapshotCache = 0xa, // Object is in the cache.
kExternalReference = 0xb, // Pointer to an external reference.
@@ -316,9 +316,11 @@ class SerializerDeserializer: public ObjectVisitor {
kAttachedReference = 0xe, // Object is described in an attached list.
// 0xf Used by misc. See below.
kBackref = 0x10, // Object is described relative to end.
- // 0x11-0x17 One per space.
+ // 0x11-0x16 One per space.
+ // 0x17 Unused.
kBackrefWithSkip = 0x18, // Object is described relative to end.
- // 0x19-0x1f One per space.
+ // 0x19-0x1e One per space.
+ // 0x1f Unused.
// 0x20-0x3f Used by misc. See below.
kPointedToMask = 0x3f
};
« no previous file with comments | « src/objects-inl.h ('k') | src/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698