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

Unified Diff: runtime/vm/isolate.h

Issue 9655011: Implement prologue weak persistent handles. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: final revision Created 8 years, 9 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 | « runtime/vm/heap.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index ea2b9b571913a4c230bf092595354c2a14aedc20..6c94c8b983df26b079af78afa30076199b52ab20 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -48,9 +48,13 @@ class Isolate {
void Shutdown();
// Visit all object pointers.
- void VisitObjectPointers(ObjectPointerVisitor* visitor, bool validate_frames);
+ void VisitObjectPointers(ObjectPointerVisitor* visitor,
+ bool visit_prologue_weak_persistent_handles,
+ bool validate_frames);
- void VisitWeakPersistentHandles(HandleVisitor* visitor);
+ // Visits weak object pointers.
+ void VisitWeakPersistentHandles(HandleVisitor* visit,
+ bool visit_prologue_weak_persistent_handles);
StoreBufferBlock* store_buffer() { return &store_buffer_; }
« no previous file with comments | « runtime/vm/heap.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698