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

Unified Diff: src/objects-visiting.h

Issue 18173013: AllocationSite objects weakly linked for traversal (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review ready Created 7 years, 5 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-visiting.h
diff --git a/src/objects-visiting.h b/src/objects-visiting.h
index c2ab45df1df6904043c5a68d2d4a2d9c28532764..1502c7340db7b93cca0880571cd0740f2cadee5c 100644
--- a/src/objects-visiting.h
+++ b/src/objects-visiting.h
@@ -55,6 +55,7 @@ class StaticVisitorBase : public AllStatic {
V(FixedArray) \
V(FixedDoubleArray) \
V(NativeContext) \
+ V(AllocationSite) \
V(DataObject2) \
V(DataObject3) \
V(DataObject4) \
@@ -420,6 +421,7 @@ class StaticMarkingVisitor : public StaticVisitorBase {
INLINE(static void VisitJSTypedArray(Map* map, HeapObject* object));
INLINE(static void VisitJSDataView(Map* map, HeapObject* object));
INLINE(static void VisitNativeContext(Map* map, HeapObject* object));
+ INLINE(static void VisitAllocationSite(Map* map, HeapObject* object));
Michael Starzinger 2013/07/16 18:14:46 This is obsolete, see comment in the objects-visit
mvstanton 2013/07/16 19:34:57 Done.
// Mark pointers in a Map and its TransitionArray together, possibly
// treating transitions or back pointers weak.

Powered by Google App Engine
This is Rietveld 408576698