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

Unified Diff: src/objects.h

Issue 1923253002: [generators] Create the fixed array holding the registers only once. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/objects.h
diff --git a/src/objects.h b/src/objects.h
index 12dd06e6ef1998bdcc7fe24667cd20439a6b1fe8..26ec78535a1e7e6a062922a68235ec29f964231e 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -1009,7 +1009,8 @@ template <class C> inline bool Is(Object* obj);
V(True) \
V(False) \
V(ArgumentsMarker) \
- V(OptimizedOut)
+ V(OptimizedOut) \
+ V(Placeholder)
Benedikt Meurer 2016/04/27 17:46:02 Can we call this guy EmptyRegister or StaleRegiste
// The element types selection for CreateListFromArrayLike.
enum class ElementTypes { kAll, kStringAndSymbol };
@@ -9492,6 +9493,7 @@ class Oddball: public HeapObject {
static const byte kOther = 7;
static const byte kException = 8;
static const byte kOptimizedOut = 9;
+ static const byte kPlaceholder = 10;
typedef FixedBodyDescriptor<kToStringOffset, kTypeOfOffset + kPointerSize,
kSize> BodyDescriptor;

Powered by Google App Engine
This is Rietveld 408576698