Index: src/objects.h |
=================================================================== |
--- src/objects.h (revision 9984) |
+++ src/objects.h (working copy) |
@@ -3669,7 +3669,8 @@ |
static const int kAstIdOffset = 0; |
static const int kTranslationIndexOffset = 1; |
static const int kArgumentsStackHeightOffset = 2; |
- static const int kDeoptEntrySize = 3; |
+ static const int kPcOffset = 3; |
+ static const int kDeoptEntrySize = 4; |
// Simple element accessors. |
#define DEFINE_ELEMENT_ACCESSORS(name, type) \ |
@@ -3705,6 +3706,7 @@ |
DEFINE_ENTRY_ACCESSORS(AstId, Smi) |
DEFINE_ENTRY_ACCESSORS(TranslationIndex, Smi) |
DEFINE_ENTRY_ACCESSORS(ArgumentsStackHeight, Smi) |
+ DEFINE_ENTRY_ACCESSORS(Pc, Smi) |
#undef DEFINE_ENTRY_ACCESSORS |