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

Unified Diff: src/serialize.h

Issue 1025453003: MIPS: Fix 'MIPS: Serializer: serialize internal references via object visitor.' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix nits. 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
Index: src/serialize.h
diff --git a/src/serialize.h b/src/serialize.h
index 1614ecd45459099ad78de707895cacd0492b75b4..546c0ccc2e995261610299d7d615e2c338e872dd 100644
--- a/src/serialize.h
+++ b/src/serialize.h
@@ -318,7 +318,7 @@ class SerializerDeserializer: public ObjectVisitor {
// 0x10..0x15 Reference to previous object from space after skip.
kBackrefWithSkip = 0x10,
// 0x16 Unused (including 0x36, 0x56, 0x76).
- // 0x17 Unused (including 0x37, 0x57, 0x77).
+ // 0x17 Misc (including 0x37, 0x57, 0x77).
yangguo 2015/03/19 19:16:33 Please do not use this byte code. I'd like to rese
balazs.kilvady 2015/03/20 11:14:42 Done.
// 0x18 Root array item.
kRootArray = 0x18,
// 0x19 Object in the partial snapshot cache.
@@ -362,6 +362,7 @@ class SerializerDeserializer: public ObjectVisitor {
static const int kSkip = 0x1d;
// Internal reference encoded as offsets of pc and target from code entry.
static const int kInternalReference = 0x1e;
+ static const int kInternalReferenceEncoded = 0x17;
// Do nothing, used for padding.
static const int kNop = 0x3d;
// Move to next reserved chunk.
« no previous file with comments | « src/mips64/assembler-mips64-inl.h ('k') | src/serialize.cc » ('j') | src/serialize.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698