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

Unified Diff: src/serialize.h

Issue 757813003: Serializer: use opcode to signal new chunk. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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 | « no previous file | 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 36854b1de902491f05dac2da35750a2c3b91bf0e..3bb0e1a7a774d4a27bce03ece3797c61e4dd001b 100644
--- a/src/serialize.h
+++ b/src/serialize.h
@@ -377,6 +377,8 @@ class SerializerDeserializer: public ObjectVisitor {
static const int kNop = 0xf; // Do nothing, used for padding.
+ static const int kNextChunk = 0x4f; // Move to next reserved chunk.
+
static const int kAnyOldSpace = -1;
// A bitmask for getting the space out of an instruction.
« no previous file with comments | « no previous file | src/serialize.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698