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

Unified Diff: vm/scavenger.h

Issue 10797021: - Start using the collected store buffer entries to find (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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
« no previous file with comments | « vm/scanner.cc ('k') | vm/scavenger.cc » ('j') | vm/scavenger.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/scavenger.h
===================================================================
--- vm/scavenger.h (revision 9751)
+++ vm/scavenger.h (working copy)
@@ -18,6 +18,7 @@
// Forward declarations.
class Heap;
class Isolate;
+class ScavengerVisitor;
DECLARE_FLAG(bool, gc_at_alloc);
@@ -88,13 +89,13 @@
uword FirstObjectStart() const { return to_->start() | object_alignment_; }
void Prologue(Isolate* isolate, bool invoke_api_callbacks);
void IterateRoots(Isolate* isolate,
- ObjectPointerVisitor* visitor,
+ ScavengerVisitor* visitor,
bool visit_prologue_weak_persistent_handles);
- void IterateWeakReferences(Isolate* isolate, ObjectPointerVisitor* visitor);
+ void IterateWeakReferences(Isolate* isolate, ScavengerVisitor* visitor);
void IterateWeakRoots(Isolate* isolate,
HandleVisitor* visitor,
bool visit_prologue_weak_persistent_handles);
- void ProcessToSpace(ObjectPointerVisitor* visitor);
+ void ProcessToSpace(ScavengerVisitor* visitor);
void Epilogue(Isolate* isolate, bool invoke_api_callbacks);
bool IsUnreachable(RawObject** p);
« no previous file with comments | « vm/scanner.cc ('k') | vm/scavenger.cc » ('j') | vm/scavenger.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698