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

Side by Side Diff: runtime/vm/gc_marker.h

Issue 8984006: Implement weak persistent handles in the Dart API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_GC_MARKER_H_ 5 #ifndef VM_GC_MARKER_H_
6 #define VM_GC_MARKER_H_ 6 #define VM_GC_MARKER_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 9
10 namespace dart { 10 namespace dart {
11 11
12 // Forward declarations. 12 // Forward declarations.
13 class Heap; 13 class Heap;
14 class Isolate; 14 class Isolate;
15 class MarkingVisitor; 15 class MarkingVisitor;
16 class ObjectPointerVisitor;
16 class PageSpace; 17 class PageSpace;
17 18
18 // The class GCMarker is used to mark reachable old generation objects as part 19 // The class GCMarker is used to mark reachable old generation objects as part
19 // of the mark-sweep collection. The marking bit used is defined in RawObject. 20 // of the mark-sweep collection. The marking bit used is defined in RawObject.
20 class GCMarker : public ValueObject { 21 class GCMarker : public ValueObject {
21 public: 22 public:
22 explicit GCMarker(Heap* heap) : heap_(heap) { } 23 explicit GCMarker(Heap* heap) : heap_(heap) { }
23 ~GCMarker() { } 24 ~GCMarker() { }
24 25
25 void MarkObjects(Isolate* isolate, PageSpace* page_space); 26 void MarkObjects(Isolate* isolate, PageSpace* page_space);
26 27
27 private: 28 private:
28 void Prologue(Isolate* isolate); 29 void Prologue(Isolate* isolate);
29 void IterateRoots(Isolate* isolate, MarkingVisitor* visitor); 30 void IterateRoots(Isolate* isolate, ObjectPointerVisitor* visitor);
31 void IterateWeakRoots(Isolate* isolate, ObjectPointerVisitor* visitor);
30 void DrainMarkingStack(Isolate* isolate, MarkingVisitor* visitor); 32 void DrainMarkingStack(Isolate* isolate, MarkingVisitor* visitor);
31 33
32 Heap* heap_; 34 Heap* heap_;
33 35
34 DISALLOW_IMPLICIT_CONSTRUCTORS(GCMarker); 36 DISALLOW_IMPLICIT_CONSTRUCTORS(GCMarker);
35 }; 37 };
36 38
37 } // namespace dart 39 } // namespace dart
38 40
39 #endif // VM_GC_MARKER_H_ 41 #endif // VM_GC_MARKER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698