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

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 comment. 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/mips64/assembler-mips64-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 1614ecd45459099ad78de707895cacd0492b75b4..82313fc24e9dedfbc9d0f266027e5ef4c688789c 100644
--- a/src/serialize.h
+++ b/src/serialize.h
@@ -329,8 +329,7 @@ class SerializerDeserializer: public ObjectVisitor {
kAttachedReference = 0x1b,
// 0x1c Builtin code referenced by index.
kBuiltin = 0x1c
- // 0x1d..0x1e Misc (including 0x3d..0x3f, 0x5d..0x5f, 0x7d..0x7f)
- // 0x1f Unused (including 0x3f, 0x5f, 0x7f).
+ // 0x1d..0x1f Misc (including 0x3d..0x3f, 0x5d..0x5f, 0x7d..0x7f)
};
static const int kWhereMask = 0x1f;
@@ -362,6 +361,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 = 0x1f;
// 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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698