annotate src/share/vm/gc_implementation/shared/markSweep.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class ReferenceProcessor;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // MarkSweep takes care of global mark-compact garbage collection for a
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // GenCollectedHeap using a four-phase pointer forwarding algorithm. All
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // generations are assumed to support marking; those that can also support
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // compaction.
a61af66fc99e Initial load
duke
parents:
diff changeset
31 //
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // Class unloading will only occur when a full gc is invoked.
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // If VALIDATE_MARK_SWEEP is defined, the -XX:+ValidateMarkSweep flag will
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // be operational, and will provide slow but comprehensive self-checks within
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // the GC. This is not enabled by default in product or release builds,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // since the extra call to track_adjusted_pointer() in _adjust_pointer()
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // would be too much overhead, and would disturb performance measurement.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // However, debug builds are sometimes way too slow to run GC tests!
a61af66fc99e Initial load
duke
parents:
diff changeset
40 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
41 #define VALIDATE_MARK_SWEEP 1
a61af66fc99e Initial load
duke
parents:
diff changeset
42 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
43 #ifdef VALIDATE_MARK_SWEEP
a61af66fc99e Initial load
duke
parents:
diff changeset
44 #define VALIDATE_MARK_SWEEP_ONLY(code) code
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
46 #define VALIDATE_MARK_SWEEP_ONLY(code)
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // declared at end
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class PreservedMark;
a61af66fc99e Initial load
duke
parents:
diff changeset
52
a61af66fc99e Initial load
duke
parents:
diff changeset
53 class MarkSweep : AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 //
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // In line closure decls
a61af66fc99e Initial load
duke
parents:
diff changeset
56 //
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 class FollowRootClosure: public OopsInGenClosure{
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 void do_oop(oop* p) { follow_root(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 virtual const bool do_nmethods() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 };
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 class MarkAndPushClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void do_oop(oop* p) { mark_and_push(p); }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 virtual const bool do_nmethods() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
68 };
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 class FollowStackClosure: public VoidClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void do_void() { follow_stack(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 };
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 class AdjustPointerClosure: public OopsInGenClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool _is_root;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
78 AdjustPointerClosure(bool is_root) : _is_root(is_root) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
79 void do_oop(oop* p) { _adjust_pointer(p, _is_root); }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 };
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // Used for java/lang/ref handling
a61af66fc99e Initial load
duke
parents:
diff changeset
83 class IsAliveClosure: public BoolObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 void do_object(oop p) { assert(false, "don't call"); }
a61af66fc99e Initial load
duke
parents:
diff changeset
86 bool do_object_b(oop p) { return p->is_gc_marked(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 };
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 class KeepAliveClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
91 void do_oop(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 };
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 //
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Friend decls
a61af66fc99e Initial load
duke
parents:
diff changeset
96 //
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 friend class AdjustPointerClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 friend class KeepAliveClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 friend class VM_MarkSweep;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 friend void marksweep_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 //
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Vars
a61af66fc99e Initial load
duke
parents:
diff changeset
105 //
a61af66fc99e Initial load
duke
parents:
diff changeset
106 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Traversal stack used during phase1
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static GrowableArray<oop>* _marking_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Stack for live klasses to revisit at end of marking phase
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static GrowableArray<Klass*>* _revisit_klass_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Space for storing/restoring mark word
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static GrowableArray<markOop>* _preserved_mark_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static GrowableArray<oop>* _preserved_oop_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 static size_t _preserved_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 static size_t _preserved_count_max;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 static PreservedMark* _preserved_marks;
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Reference processing (used in ...follow_contents)
a61af66fc99e Initial load
duke
parents:
diff changeset
120 static ReferenceProcessor* _ref_processor;
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 #ifdef VALIDATE_MARK_SWEEP
a61af66fc99e Initial load
duke
parents:
diff changeset
123 static GrowableArray<oop*>* _root_refs_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static GrowableArray<oop> * _live_oops;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 static GrowableArray<oop> * _live_oops_moved_to;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 static GrowableArray<size_t>* _live_oops_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 static size_t _live_oops_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 static size_t _live_oops_index_at_perm;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 static GrowableArray<oop*>* _other_refs_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 static GrowableArray<oop*>* _adjusted_pointers;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 static bool _pointer_tracking;
a61af66fc99e Initial load
duke
parents:
diff changeset
132 static bool _root_tracking;
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // The following arrays are saved since the time of the last GC and
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // assist in tracking down problems where someone has done an errant
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // store into the heap, usually to an oop that wasn't properly
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // handleized across a GC. If we crash or otherwise fail before the
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // next GC, we can query these arrays to find out the object we had
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // intended to do the store to (assuming it is still alive) and the
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // offset within that object. Covered under RecordMarkSweepCompaction.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static GrowableArray<HeapWord*> * _cur_gc_live_oops;
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static GrowableArray<HeapWord*> * _cur_gc_live_oops_moved_to;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 static GrowableArray<size_t>* _cur_gc_live_oops_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 static GrowableArray<HeapWord*> * _last_gc_live_oops;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 static GrowableArray<HeapWord*> * _last_gc_live_oops_moved_to;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 static GrowableArray<size_t>* _last_gc_live_oops_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // Non public closures
a61af66fc99e Initial load
duke
parents:
diff changeset
151 static IsAliveClosure is_alive;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 static KeepAliveClosure keep_alive;
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Class unloading. Update subklass/sibling/implementor links at end of marking phase.
a61af66fc99e Initial load
duke
parents:
diff changeset
155 static void follow_weak_klass_links();
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
158 static void trace(const char* msg) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Public closures
a61af66fc99e Initial load
duke
parents:
diff changeset
162 static FollowRootClosure follow_root_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 static MarkAndPushClosure mark_and_push_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
164 static FollowStackClosure follow_stack_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 static AdjustPointerClosure adjust_root_pointer_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
166 static AdjustPointerClosure adjust_pointer_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Reference Processing
a61af66fc99e Initial load
duke
parents:
diff changeset
169 static ReferenceProcessor* const ref_processor() { return _ref_processor; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // Call backs for marking
a61af66fc99e Initial load
duke
parents:
diff changeset
172 static void mark_object(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 static void follow_root(oop* p); // Mark pointer and follow contents. Empty marking
a61af66fc99e Initial load
duke
parents:
diff changeset
174
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // stack afterwards.
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 static void mark_and_follow(oop* p); // Mark pointer and follow contents.
a61af66fc99e Initial load
duke
parents:
diff changeset
178 static void _mark_and_push(oop* p); // Mark pointer and push obj on
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // marking stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181
a61af66fc99e Initial load
duke
parents:
diff changeset
182 static void mark_and_push(oop* p) { // Check mark and maybe push on
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // marking stack
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // assert(Universe::is_reserved_heap((oop)p), "we should only be traversing objects here");
a61af66fc99e Initial load
duke
parents:
diff changeset
185 oop m = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 if (m != NULL && !m->mark()->is_marked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 _mark_and_push(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 static void follow_stack(); // Empty marking stack.
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 static void preserve_mark(oop p, markOop mark); // Save the mark word so it can be restored later
a61af66fc99e Initial load
duke
parents:
diff changeset
195 static void adjust_marks(); // Adjust the pointers in the preserved marks table
a61af66fc99e Initial load
duke
parents:
diff changeset
196 static void restore_marks(); // Restore the marks that we saved in preserve_mark
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 static void _adjust_pointer(oop* p, bool isroot);
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 static void adjust_root_pointer(oop* p) { _adjust_pointer(p, true); }
a61af66fc99e Initial load
duke
parents:
diff changeset
201 static void adjust_pointer(oop* p) { _adjust_pointer(p, false); }
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 #ifdef VALIDATE_MARK_SWEEP
a61af66fc99e Initial load
duke
parents:
diff changeset
204 static void track_adjusted_pointer(oop* p, oop newobj, bool isroot);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 static void check_adjust_pointer(oop* p); // Adjust this pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
206 static void track_interior_pointers(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 static void check_interior_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 static void reset_live_oop_tracking(bool at_perm);
a61af66fc99e Initial load
duke
parents:
diff changeset
210 static void register_live_oop(oop p, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 static void validate_live_oop(oop p, size_t size);
a61af66fc99e Initial load
duke
parents:
diff changeset
212 static void live_oop_moved_to(HeapWord* q, size_t size, HeapWord* compaction_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 static void compaction_complete();
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // Querying operation of RecordMarkSweepCompaction results.
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Finds and prints the current base oop and offset for a word
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // within an oop that was live during the last GC. Helpful for
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // tracking down heap stomps.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 static void print_new_location_of_heap_address(HeapWord* q);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // Call backs for class unloading
a61af66fc99e Initial load
duke
parents:
diff changeset
223 static void revisit_weak_klass_link(Klass* k); // Update subklass/sibling/implementor links at end of marking.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 };
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226
a61af66fc99e Initial load
duke
parents:
diff changeset
227 class PreservedMark VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
229 oop _obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 markOop _mark;
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void init(oop obj, markOop mark) {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _obj = obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 _mark = mark;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 }
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 void adjust_pointer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 MarkSweep::adjust_pointer(&_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void restore() {
a61af66fc99e Initial load
duke
parents:
diff changeset
243 _obj->set_mark(_mark);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 };