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

Unified Diff: src/objects.h

Issue 50213003: Do deferred migration of maps after deoptimizing once. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 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 c0835e21eb9cb5d3df0d1f5ad1e464b6d4022323..db4c27e02f691615a2b6681ad44567bb6469ace4 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -5635,6 +5635,15 @@ class Map: public HeapObject {
class IsUnstable: public BitField<bool, 29, 1> {};
class IsMigrationTarget: public BitField<bool, 30, 1> {};
+ // Bit field 4.
+ inline uint32_t bit_field4();
+ inline void set_bit_field4(uint32_t bits);
+
+ class HasMigrated: public BitField<int, 0, 1> {};
+
+ inline void set_has_migrated(bool value);
+ inline bool has_migrated();
+
// Tells whether the object in the prototype property will be used
// for instances created from this function. If the prototype
// property is set to a value that is not a JSObject, the prototype
@@ -6185,7 +6194,8 @@ class Map: public HeapObject {
static const int kCodeCacheOffset = kDescriptorsOffset + kPointerSize;
static const int kDependentCodeOffset = kCodeCacheOffset + kPointerSize;
static const int kBitField3Offset = kDependentCodeOffset + kPointerSize;
- static const int kSize = kBitField3Offset + kPointerSize;
+ static const int kBitField4Offset = kBitField3Offset + kPointerSize;
+ static const int kSize = kBitField4Offset + kPointerSize;
// Layout of pointer fields. Heap iteration code relies on them
// being continuously allocated.
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/objects.cc » ('j') | src/objects-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698