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

Unified Diff: src/objects.h

Issue 2506633002: [heap] Only visit strong links during scavenge of promoted objects (Closed)
Patch Set: Created 4 years, 1 month 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
« src/heap/heap.cc ('K') | « src/heap/mark-compact.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 1cc325bb6501743b6e6be0e2602281ccb1b52c1e..ef7ac6ccc71cbc90234bb1fe432e60ebbd1a901c 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -8562,6 +8562,9 @@ class JSFunction: public JSObject {
static const int kNextFunctionLinkOffset = kCodeEntryOffset + kPointerSize;
static const int kSize = kNextFunctionLinkOffset + kPointerSize;
+ typedef FixedBodyDescriptor<kNextFunctionLinkOffset, kSize, kSize>
+ BodyDescriptorWeakFields;
+
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(JSFunction);
};
« src/heap/heap.cc ('K') | « src/heap/mark-compact.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698