blob: 0176d6f6f87a4bd1f74f83284b7f688012875480 [file] [log] [blame]
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001/*
Tim Peters88396172002-06-30 17:56:40 +00002
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00003 Reference Cycle Garbage Collection
4 ==================================
5
Neil Schemenauerb2c2c9e2000-10-04 16:34:09 +00006 Neil Schemenauer <nas@arctrix.com>
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00007
8 Based on a post on the python-dev list. Ideas from Guido van Rossum,
9 Eric Tiedemann, and various others.
10
Neil Schemenauer43411b52001-08-30 00:05:51 +000011 http://www.arctrix.com/nas/python/gc/
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000012 http://www.python.org/pipermail/python-dev/2000-March/003869.html
13 http://www.python.org/pipermail/python-dev/2000-March/004010.html
14 http://www.python.org/pipermail/python-dev/2000-March/004022.html
15
16 For a highlevel view of the collection process, read the collect
17 function.
18
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000019*/
20
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000021#include "Python.h"
22
Neil Schemenauer43411b52001-08-30 00:05:51 +000023/* Get an object's GC head */
24#define AS_GC(o) ((PyGC_Head *)(o)-1)
25
26/* Get the object given the GC head */
27#define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
28
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000029/*** Global GC state ***/
30
Neil Schemenauer2880ae52002-05-04 05:35:20 +000031struct gc_generation {
32 PyGC_Head head;
33 int threshold; /* collection threshold */
34 int count; /* count of allocations or collections of younger
35 generations */
36};
37
38#define NUM_GENERATIONS 3
39#define GEN_HEAD(n) (&generations[n].head)
40
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000041/* linked lists of container objects */
Neil Schemenauer2880ae52002-05-04 05:35:20 +000042static struct gc_generation generations[NUM_GENERATIONS] = {
43 /* PyGC_Head, threshold, count */
44 {{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0},
45 {{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0},
46 {{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0},
47};
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000048
Neil Schemenauer2880ae52002-05-04 05:35:20 +000049PyGC_Head *_PyGC_generation0 = GEN_HEAD(0);
50
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +000051static int enabled = 1; /* automatic collection enabled? */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000052
Neil Schemenauer43411b52001-08-30 00:05:51 +000053/* true if we are currently running the collector */
Tim Petersbf384c22003-04-06 00:11:39 +000054static int collecting = 0;
Neil Schemenauer43411b52001-08-30 00:05:51 +000055
Tim Peters6fc13d92002-07-02 18:12:35 +000056/* list of uncollectable objects */
Tim Petersbf384c22003-04-06 00:11:39 +000057static PyObject *garbage = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000058
59/* Python string to use if unhandled exception occurs */
Tim Petersbf384c22003-04-06 00:11:39 +000060static PyObject *gc_str = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000061
Tim Peters93ad66d2003-04-05 17:15:44 +000062/* Python string used to look for __del__ attribute. */
63static PyObject *delstr = NULL;
Jeremy Hyltonce136e92003-04-04 19:59:06 +000064
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000065/* set for debugging information */
66#define DEBUG_STATS (1<<0) /* print collection statistics */
67#define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
68#define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */
69#define DEBUG_INSTANCES (1<<3) /* print instances */
70#define DEBUG_OBJECTS (1<<4) /* print other objects */
Neil Schemenauer544de1e2000-09-22 15:22:38 +000071#define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000072#define DEBUG_LEAK DEBUG_COLLECTABLE | \
73 DEBUG_UNCOLLECTABLE | \
74 DEBUG_INSTANCES | \
Neil Schemenauer544de1e2000-09-22 15:22:38 +000075 DEBUG_OBJECTS | \
76 DEBUG_SAVEALL
Jeremy Hyltonb709df32000-09-01 02:47:25 +000077static int debug;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000078
Tim Peters6fc13d92002-07-02 18:12:35 +000079/*--------------------------------------------------------------------------
80gc_refs values.
Neil Schemenauer43411b52001-08-30 00:05:51 +000081
Tim Peters6fc13d92002-07-02 18:12:35 +000082Between collections, every gc'ed object has one of two gc_refs values:
83
84GC_UNTRACKED
85 The initial state; objects returned by PyObject_GC_Malloc are in this
86 state. The object doesn't live in any generation list, and its
87 tp_traverse slot must not be called.
88
89GC_REACHABLE
90 The object lives in some generation list, and its tp_traverse is safe to
91 call. An object transitions to GC_REACHABLE when PyObject_GC_Track
92 is called.
93
94During a collection, gc_refs can temporarily take on other states:
95
96>= 0
97 At the start of a collection, update_refs() copies the true refcount
98 to gc_refs, for each object in the generation being collected.
99 subtract_refs() then adjusts gc_refs so that it equals the number of
100 times an object is referenced directly from outside the generation
101 being collected.
Martin v. Löwis774348c2002-11-09 19:54:06 +0000102 gc_refs remains >= 0 throughout these steps.
Tim Peters6fc13d92002-07-02 18:12:35 +0000103
104GC_TENTATIVELY_UNREACHABLE
105 move_unreachable() then moves objects not reachable (whether directly or
106 indirectly) from outside the generation into an "unreachable" set.
107 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
108 again. Objects that are found to be unreachable have gc_refs set to
109 GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing
110 this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may
111 transition back to GC_REACHABLE.
112
113 Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates
114 for collection. If it's decided not to collect such an object (e.g.,
115 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
116----------------------------------------------------------------------------
117*/
Tim Petersea405632002-07-02 00:52:30 +0000118#define GC_UNTRACKED _PyGC_REFS_UNTRACKED
119#define GC_REACHABLE _PyGC_REFS_REACHABLE
120#define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE
Tim Peters19b74c72002-07-01 03:52:19 +0000121
Tim Peters6fc13d92002-07-02 18:12:35 +0000122#define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
Tim Peters19b74c72002-07-01 03:52:19 +0000123#define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE)
124#define IS_TENTATIVELY_UNREACHABLE(o) ( \
125 (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE)
Neil Schemenauera2b11ec2002-05-21 15:53:24 +0000126
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000127/*** list functions ***/
128
129static void
130gc_list_init(PyGC_Head *list)
131{
Tim Peters9e4ca102001-10-11 18:31:31 +0000132 list->gc.gc_prev = list;
133 list->gc.gc_next = list;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000134}
135
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000136static int
137gc_list_is_empty(PyGC_Head *list)
138{
139 return (list->gc.gc_next == list);
140}
141
Tim Peterse2d59182004-11-01 01:39:08 +0000142#if 0
143/* This became unused after gc_list_move() was introduced. */
144/* Append `node` to `list`. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000145static void
146gc_list_append(PyGC_Head *node, PyGC_Head *list)
147{
Tim Peters9e4ca102001-10-11 18:31:31 +0000148 node->gc.gc_next = list;
149 node->gc.gc_prev = list->gc.gc_prev;
150 node->gc.gc_prev->gc.gc_next = node;
151 list->gc.gc_prev = node;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000152}
Tim Peterse2d59182004-11-01 01:39:08 +0000153#endif
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000154
Tim Peterse2d59182004-11-01 01:39:08 +0000155/* Remove `node` from the gc list it's currently in. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000156static void
157gc_list_remove(PyGC_Head *node)
158{
Tim Peters9e4ca102001-10-11 18:31:31 +0000159 node->gc.gc_prev->gc.gc_next = node->gc.gc_next;
160 node->gc.gc_next->gc.gc_prev = node->gc.gc_prev;
161 node->gc.gc_next = NULL; /* object is not currently tracked */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000162}
163
Tim Peterse2d59182004-11-01 01:39:08 +0000164/* Move `node` from the gc list it's currently in (which is not explicitly
165 * named here) to the end of `list`. This is semantically the same as
166 * gc_list_remove(node) followed by gc_list_append(node, list).
167 */
168static void
169gc_list_move(PyGC_Head *node, PyGC_Head *list)
170{
Tim Petersbc1d1b82004-11-01 16:39:57 +0000171 PyGC_Head *new_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000172 PyGC_Head *current_prev = node->gc.gc_prev;
173 PyGC_Head *current_next = node->gc.gc_next;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000174 /* Unlink from current list. */
Tim Peterse2d59182004-11-01 01:39:08 +0000175 current_prev->gc.gc_next = current_next;
176 current_next->gc.gc_prev = current_prev;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000177 /* Relink at end of new list. */
178 new_prev = node->gc.gc_prev = list->gc.gc_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000179 new_prev->gc.gc_next = list->gc.gc_prev = node;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000180 node->gc.gc_next = list;
Tim Peterse2d59182004-11-01 01:39:08 +0000181}
182
183/* append list `from` onto list `to`; `from` becomes an empty list */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000184static void
185gc_list_merge(PyGC_Head *from, PyGC_Head *to)
186{
187 PyGC_Head *tail;
Tim Peterse2d59182004-11-01 01:39:08 +0000188 assert(from != to);
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000189 if (!gc_list_is_empty(from)) {
Tim Peters9e4ca102001-10-11 18:31:31 +0000190 tail = to->gc.gc_prev;
191 tail->gc.gc_next = from->gc.gc_next;
192 tail->gc.gc_next->gc.gc_prev = tail;
193 to->gc.gc_prev = from->gc.gc_prev;
194 to->gc.gc_prev->gc.gc_next = to;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000195 }
196 gc_list_init(from);
197}
198
Neal Norwitz7b216c52006-03-04 20:01:53 +0000199static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000200gc_list_size(PyGC_Head *list)
201{
202 PyGC_Head *gc;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000203 Py_ssize_t n = 0;
Tim Peters9e4ca102001-10-11 18:31:31 +0000204 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000205 n++;
206 }
207 return n;
208}
209
Tim Peters259272b2003-04-06 19:41:39 +0000210/* Append objects in a GC list to a Python list.
211 * Return 0 if all OK, < 0 if error (out of memory for list).
212 */
213static int
214append_objects(PyObject *py_list, PyGC_Head *gc_list)
215{
216 PyGC_Head *gc;
217 for (gc = gc_list->gc.gc_next; gc != gc_list; gc = gc->gc.gc_next) {
218 PyObject *op = FROM_GC(gc);
219 if (op != py_list) {
220 if (PyList_Append(py_list, op)) {
221 return -1; /* exception */
222 }
223 }
224 }
225 return 0;
226}
227
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000228/*** end of list stuff ***/
229
230
Tim Peters19b74c72002-07-01 03:52:19 +0000231/* Set all gc_refs = ob_refcnt. After this, gc_refs is > 0 for all objects
232 * in containers, and is GC_REACHABLE for all tracked gc objects not in
233 * containers.
Tim Peters88396172002-06-30 17:56:40 +0000234 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000235static void
236update_refs(PyGC_Head *containers)
237{
Tim Peters9e4ca102001-10-11 18:31:31 +0000238 PyGC_Head *gc = containers->gc.gc_next;
Tim Petersea405632002-07-02 00:52:30 +0000239 for (; gc != containers; gc = gc->gc.gc_next) {
240 assert(gc->gc.gc_refs == GC_REACHABLE);
Tim Peters9e4ca102001-10-11 18:31:31 +0000241 gc->gc.gc_refs = FROM_GC(gc)->ob_refcnt;
Tim Peters780c4972003-11-14 00:01:17 +0000242 /* Python's cyclic gc should never see an incoming refcount
243 * of 0: if something decref'ed to 0, it should have been
244 * deallocated immediately at that time.
245 * Possible cause (if the assert triggers): a tp_dealloc
246 * routine left a gc-aware object tracked during its teardown
247 * phase, and did something-- or allowed something to happen --
248 * that called back into Python. gc can trigger then, and may
249 * see the still-tracked dying object. Before this assert
250 * was added, such mistakes went on to allow gc to try to
251 * delete the object again. In a debug build, that caused
252 * a mysterious segfault, when _Py_ForgetReference tried
253 * to remove the object from the doubly-linked list of all
254 * objects a second time. In a release build, an actual
255 * double deallocation occurred, which leads to corruption
256 * of the allocator's internal bookkeeping pointers. That's
257 * so serious that maybe this should be a release-build
258 * check instead of an assert?
259 */
260 assert(gc->gc.gc_refs != 0);
Tim Petersea405632002-07-02 00:52:30 +0000261 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000262}
263
Tim Peters19b74c72002-07-01 03:52:19 +0000264/* A traversal callback for subtract_refs. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000265static int
266visit_decref(PyObject *op, void *data)
267{
Tim Peters93cd83e2002-06-30 21:31:03 +0000268 assert(op != NULL);
Tim Peters19b74c72002-07-01 03:52:19 +0000269 if (PyObject_IS_GC(op)) {
270 PyGC_Head *gc = AS_GC(op);
271 /* We're only interested in gc_refs for objects in the
272 * generation being collected, which can be recognized
273 * because only they have positive gc_refs.
274 */
Tim Petersaab713b2002-07-02 22:15:28 +0000275 assert(gc->gc.gc_refs != 0); /* else refcount was too small */
Tim Peters19b74c72002-07-01 03:52:19 +0000276 if (gc->gc.gc_refs > 0)
277 gc->gc.gc_refs--;
278 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000279 return 0;
280}
281
Tim Peters19b74c72002-07-01 03:52:19 +0000282/* Subtract internal references from gc_refs. After this, gc_refs is >= 0
283 * for all objects in containers, and is GC_REACHABLE for all tracked gc
284 * objects not in containers. The ones with gc_refs > 0 are directly
285 * reachable from outside containers, and so can't be collected.
286 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000287static void
288subtract_refs(PyGC_Head *containers)
289{
290 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000291 PyGC_Head *gc = containers->gc.gc_next;
292 for (; gc != containers; gc=gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000293 traverse = FROM_GC(gc)->ob_type->tp_traverse;
294 (void) traverse(FROM_GC(gc),
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000295 (visitproc)visit_decref,
296 NULL);
297 }
298}
299
Tim Peters19b74c72002-07-01 03:52:19 +0000300/* A traversal callback for move_unreachable. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000301static int
Tim Peters19b74c72002-07-01 03:52:19 +0000302visit_reachable(PyObject *op, PyGC_Head *reachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000303{
Tim Petersea405632002-07-02 00:52:30 +0000304 if (PyObject_IS_GC(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000305 PyGC_Head *gc = AS_GC(op);
Martin v. Löwis6db0e002006-03-01 16:56:25 +0000306 const Py_ssize_t gc_refs = gc->gc.gc_refs;
Tim Peters19b74c72002-07-01 03:52:19 +0000307
308 if (gc_refs == 0) {
309 /* This is in move_unreachable's 'young' list, but
310 * the traversal hasn't yet gotten to it. All
311 * we need to do is tell move_unreachable that it's
312 * reachable.
313 */
314 gc->gc.gc_refs = 1;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000315 }
Tim Peters19b74c72002-07-01 03:52:19 +0000316 else if (gc_refs == GC_TENTATIVELY_UNREACHABLE) {
317 /* This had gc_refs = 0 when move_unreachable got
318 * to it, but turns out it's reachable after all.
319 * Move it back to move_unreachable's 'young' list,
320 * and move_unreachable will eventually get to it
321 * again.
322 */
Tim Peterse2d59182004-11-01 01:39:08 +0000323 gc_list_move(gc, reachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000324 gc->gc.gc_refs = 1;
325 }
326 /* Else there's nothing to do.
327 * If gc_refs > 0, it must be in move_unreachable's 'young'
328 * list, and move_unreachable will eventually get to it.
329 * If gc_refs == GC_REACHABLE, it's either in some other
330 * generation so we don't care about it, or move_unreachable
Tim Peters6fc13d92002-07-02 18:12:35 +0000331 * already dealt with it.
Tim Petersea405632002-07-02 00:52:30 +0000332 * If gc_refs == GC_UNTRACKED, it must be ignored.
Tim Peters19b74c72002-07-01 03:52:19 +0000333 */
Tim Petersea405632002-07-02 00:52:30 +0000334 else {
335 assert(gc_refs > 0
336 || gc_refs == GC_REACHABLE
337 || gc_refs == GC_UNTRACKED);
338 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000339 }
340 return 0;
341}
342
Tim Peters19b74c72002-07-01 03:52:19 +0000343/* Move the unreachable objects from young to unreachable. After this,
344 * all objects in young have gc_refs = GC_REACHABLE, and all objects in
345 * unreachable have gc_refs = GC_TENTATIVELY_UNREACHABLE. All tracked
346 * gc objects not in young or unreachable still have gc_refs = GC_REACHABLE.
347 * All objects in young after this are directly or indirectly reachable
348 * from outside the original young; and all objects in unreachable are
349 * not.
Tim Peters88396172002-06-30 17:56:40 +0000350 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000351static void
Tim Peters19b74c72002-07-01 03:52:19 +0000352move_unreachable(PyGC_Head *young, PyGC_Head *unreachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000353{
Tim Peters19b74c72002-07-01 03:52:19 +0000354 PyGC_Head *gc = young->gc.gc_next;
355
356 /* Invariants: all objects "to the left" of us in young have gc_refs
357 * = GC_REACHABLE, and are indeed reachable (directly or indirectly)
358 * from outside the young list as it was at entry. All other objects
359 * from the original young "to the left" of us are in unreachable now,
360 * and have gc_refs = GC_TENTATIVELY_UNREACHABLE. All objects to the
361 * left of us in 'young' now have been scanned, and no objects here
362 * or to the right have been scanned yet.
363 */
364
365 while (gc != young) {
366 PyGC_Head *next;
367
Tim Peters6fc13d92002-07-02 18:12:35 +0000368 if (gc->gc.gc_refs) {
369 /* gc is definitely reachable from outside the
370 * original 'young'. Mark it as such, and traverse
371 * its pointers to find any other objects that may
372 * be directly reachable from it. Note that the
373 * call to tp_traverse may append objects to young,
374 * so we have to wait until it returns to determine
375 * the next object to visit.
376 */
377 PyObject *op = FROM_GC(gc);
378 traverseproc traverse = op->ob_type->tp_traverse;
379 assert(gc->gc.gc_refs > 0);
380 gc->gc.gc_refs = GC_REACHABLE;
381 (void) traverse(op,
382 (visitproc)visit_reachable,
383 (void *)young);
384 next = gc->gc.gc_next;
385 }
386 else {
Tim Peters19b74c72002-07-01 03:52:19 +0000387 /* This *may* be unreachable. To make progress,
388 * assume it is. gc isn't directly reachable from
389 * any object we've already traversed, but may be
390 * reachable from an object we haven't gotten to yet.
391 * visit_reachable will eventually move gc back into
392 * young if that's so, and we'll see it again.
393 */
394 next = gc->gc.gc_next;
Tim Peterse2d59182004-11-01 01:39:08 +0000395 gc_list_move(gc, unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000396 gc->gc.gc_refs = GC_TENTATIVELY_UNREACHABLE;
397 }
Tim Peters19b74c72002-07-01 03:52:19 +0000398 gc = next;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000399 }
400}
401
Tim Peters86b993b2003-04-05 17:35:54 +0000402/* Return true if object has a finalization method.
403 * CAUTION: An instance of an old-style class has to be checked for a
Tim Petersf6b80452003-04-07 19:21:15 +0000404 *__del__ method, and earlier versions of this used to call PyObject_HasAttr,
405 * which in turn could call the class's __getattr__ hook (if any). That
406 * could invoke arbitrary Python code, mutating the object graph in arbitrary
407 * ways, and that was the source of some excruciatingly subtle bugs.
Tim Peters86b993b2003-04-05 17:35:54 +0000408 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000409static int
410has_finalizer(PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000411{
Tim Peters86b993b2003-04-05 17:35:54 +0000412 if (PyInstance_Check(op)) {
Tim Peters86b993b2003-04-05 17:35:54 +0000413 assert(delstr != NULL);
Tim Petersf6b80452003-04-07 19:21:15 +0000414 return _PyInstance_Lookup(op, delstr) != NULL;
Tim Peters86b993b2003-04-05 17:35:54 +0000415 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000416 else if (PyType_HasFeature(op->ob_type, Py_TPFLAGS_HEAPTYPE))
Tim Peters86b993b2003-04-05 17:35:54 +0000417 return op->ob_type->tp_del != NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000418 else if (PyGen_CheckExact(op))
419 return PyGen_NeedsFinalizing((PyGenObject *)op);
420 else
421 return 0;
Neil Schemenauera765c122001-11-01 17:35:23 +0000422}
423
Tim Petersead8b7a2004-10-30 23:09:22 +0000424/* Move the objects in unreachable with __del__ methods into `finalizers`.
425 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
426 * objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE.
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000427 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000428static void
Tim Petersead8b7a2004-10-30 23:09:22 +0000429move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
Neil Schemenauera765c122001-11-01 17:35:23 +0000430{
Tim Petersead8b7a2004-10-30 23:09:22 +0000431 PyGC_Head *gc;
432 PyGC_Head *next;
Tim Petersf6b80452003-04-07 19:21:15 +0000433
Tim Petersead8b7a2004-10-30 23:09:22 +0000434 /* March over unreachable. Move objects with finalizers into
435 * `finalizers`.
436 */
437 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000438 PyObject *op = FROM_GC(gc);
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000439
Tim Petersf6ae7a42003-04-05 18:40:50 +0000440 assert(IS_TENTATIVELY_UNREACHABLE(op));
Tim Petersead8b7a2004-10-30 23:09:22 +0000441 next = gc->gc.gc_next;
Tim Petersf6ae7a42003-04-05 18:40:50 +0000442
Tim Petersf6b80452003-04-07 19:21:15 +0000443 if (has_finalizer(op)) {
Tim Peterse2d59182004-11-01 01:39:08 +0000444 gc_list_move(gc, finalizers);
Tim Petersf6b80452003-04-07 19:21:15 +0000445 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000446 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000447 }
448}
449
Tim Peters19b74c72002-07-01 03:52:19 +0000450/* A traversal callback for move_finalizer_reachable. */
451static int
452visit_move(PyObject *op, PyGC_Head *tolist)
453{
454 if (PyObject_IS_GC(op)) {
Tim Petersea405632002-07-02 00:52:30 +0000455 if (IS_TENTATIVELY_UNREACHABLE(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000456 PyGC_Head *gc = AS_GC(op);
Tim Peterse2d59182004-11-01 01:39:08 +0000457 gc_list_move(gc, tolist);
Tim Peters19b74c72002-07-01 03:52:19 +0000458 gc->gc.gc_refs = GC_REACHABLE;
459 }
460 }
461 return 0;
462}
463
464/* Move objects that are reachable from finalizers, from the unreachable set
Tim Petersf6b80452003-04-07 19:21:15 +0000465 * into finalizers set.
Tim Peters19b74c72002-07-01 03:52:19 +0000466 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000467static void
Tim Petersf6b80452003-04-07 19:21:15 +0000468move_finalizer_reachable(PyGC_Head *finalizers)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000469{
470 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000471 PyGC_Head *gc = finalizers->gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000472 for (; gc != finalizers; gc = gc->gc.gc_next) {
473 /* Note that the finalizers list may grow during this. */
Neil Schemenauer43411b52001-08-30 00:05:51 +0000474 traverse = FROM_GC(gc)->ob_type->tp_traverse;
Tim Peters88396172002-06-30 17:56:40 +0000475 (void) traverse(FROM_GC(gc),
Tim Petersbf384c22003-04-06 00:11:39 +0000476 (visitproc)visit_move,
Tim Petersf6b80452003-04-07 19:21:15 +0000477 (void *)finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000478 }
479}
480
Tim Petersead8b7a2004-10-30 23:09:22 +0000481/* Clear all weakrefs to unreachable objects, and if such a weakref has a
482 * callback, invoke it if necessary. Note that it's possible for such
483 * weakrefs to be outside the unreachable set -- indeed, those are precisely
484 * the weakrefs whose callbacks must be invoked. See gc_weakref.txt for
485 * overview & some details. Some weakrefs with callbacks may be reclaimed
486 * directly by this routine; the number reclaimed is the return value. Other
487 * weakrefs with callbacks may be moved into the `old` generation. Objects
488 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
489 * unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns,
490 * no object in `unreachable` is weakly referenced anymore.
Tim Peters403a2032003-11-20 21:21:46 +0000491 */
492static int
Tim Petersead8b7a2004-10-30 23:09:22 +0000493handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
Tim Peters403a2032003-11-20 21:21:46 +0000494{
Tim Petersead8b7a2004-10-30 23:09:22 +0000495 PyGC_Head *gc;
496 PyObject *op; /* generally FROM_GC(gc) */
497 PyWeakReference *wr; /* generally a cast of op */
Tim Petersead8b7a2004-10-30 23:09:22 +0000498 PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */
Tim Petersead8b7a2004-10-30 23:09:22 +0000499 PyGC_Head *next;
Tim Peters403a2032003-11-20 21:21:46 +0000500 int num_freed = 0;
501
Tim Petersead8b7a2004-10-30 23:09:22 +0000502 gc_list_init(&wrcb_to_call);
Tim Peters403a2032003-11-20 21:21:46 +0000503
Tim Petersead8b7a2004-10-30 23:09:22 +0000504 /* Clear all weakrefs to the objects in unreachable. If such a weakref
505 * also has a callback, move it into `wrcb_to_call` if the callback
Tim Peterscc2a8662004-10-31 22:12:43 +0000506 * needs to be invoked. Note that we cannot invoke any callbacks until
507 * all weakrefs to unreachable objects are cleared, lest the callback
508 * resurrect an unreachable object via a still-active weakref. We
509 * make another pass over wrcb_to_call, invoking callbacks, after this
510 * pass completes.
Tim Petersead8b7a2004-10-30 23:09:22 +0000511 */
512 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
513 PyWeakReference **wrlist;
514
515 op = FROM_GC(gc);
516 assert(IS_TENTATIVELY_UNREACHABLE(op));
517 next = gc->gc.gc_next;
518
519 if (! PyType_SUPPORTS_WEAKREFS(op->ob_type))
520 continue;
521
522 /* It supports weakrefs. Does it have any? */
523 wrlist = (PyWeakReference **)
524 PyObject_GET_WEAKREFS_LISTPTR(op);
525
526 /* `op` may have some weakrefs. March over the list, clear
527 * all the weakrefs, and move the weakrefs with callbacks
Tim Peterscc2a8662004-10-31 22:12:43 +0000528 * that must be called into wrcb_to_call.
Tim Petersead8b7a2004-10-30 23:09:22 +0000529 */
530 for (wr = *wrlist; wr != NULL; wr = *wrlist) {
531 PyGC_Head *wrasgc; /* AS_GC(wr) */
532
533 /* _PyWeakref_ClearRef clears the weakref but leaves
534 * the callback pointer intact. Obscure: it also
535 * changes *wrlist.
536 */
537 assert(wr->wr_object == op);
538 _PyWeakref_ClearRef(wr);
539 assert(wr->wr_object == Py_None);
540 if (wr->wr_callback == NULL)
541 continue; /* no callback */
542
543 /* Headache time. `op` is going away, and is weakly referenced by
544 * `wr`, which has a callback. Should the callback be invoked? If wr
545 * is also trash, no:
546 *
547 * 1. There's no need to call it. The object and the weakref are
548 * both going away, so it's legitimate to pretend the weakref is
549 * going away first. The user has to ensure a weakref outlives its
550 * referent if they want a guarantee that the wr callback will get
551 * invoked.
552 *
553 * 2. It may be catastrophic to call it. If the callback is also in
554 * cyclic trash (CT), then although the CT is unreachable from
555 * outside the current generation, CT may be reachable from the
556 * callback. Then the callback could resurrect insane objects.
557 *
558 * Since the callback is never needed and may be unsafe in this case,
Tim Peterscc2a8662004-10-31 22:12:43 +0000559 * wr is simply left in the unreachable set. Note that because we
560 * already called _PyWeakref_ClearRef(wr), its callback will never
561 * trigger.
Tim Petersead8b7a2004-10-30 23:09:22 +0000562 *
563 * OTOH, if wr isn't part of CT, we should invoke the callback: the
564 * weakref outlived the trash. Note that since wr isn't CT in this
565 * case, its callback can't be CT either -- wr acted as an external
566 * root to this generation, and therefore its callback did too. So
567 * nothing in CT is reachable from the callback either, so it's hard
568 * to imagine how calling it later could create a problem for us. wr
569 * is moved to wrcb_to_call in this case.
Tim Petersead8b7a2004-10-30 23:09:22 +0000570 */
Tim Peterscc2a8662004-10-31 22:12:43 +0000571 if (IS_TENTATIVELY_UNREACHABLE(wr))
572 continue;
573 assert(IS_REACHABLE(wr));
574
Tim Petersead8b7a2004-10-30 23:09:22 +0000575 /* Create a new reference so that wr can't go away
576 * before we can process it again.
577 */
578 Py_INCREF(wr);
579
Tim Peterscc2a8662004-10-31 22:12:43 +0000580 /* Move wr to wrcb_to_call, for the next pass. */
Tim Petersead8b7a2004-10-30 23:09:22 +0000581 wrasgc = AS_GC(wr);
Tim Peterscc2a8662004-10-31 22:12:43 +0000582 assert(wrasgc != next); /* wrasgc is reachable, but
583 next isn't, so they can't
584 be the same */
Tim Peterse2d59182004-11-01 01:39:08 +0000585 gc_list_move(wrasgc, &wrcb_to_call);
Tim Petersead8b7a2004-10-30 23:09:22 +0000586 }
587 }
588
Tim Peterscc2a8662004-10-31 22:12:43 +0000589 /* Invoke the callbacks we decided to honor. It's safe to invoke them
590 * because they can't reference unreachable objects.
Tim Petersead8b7a2004-10-30 23:09:22 +0000591 */
592 while (! gc_list_is_empty(&wrcb_to_call)) {
593 PyObject *temp;
594 PyObject *callback;
595
596 gc = wrcb_to_call.gc.gc_next;
597 op = FROM_GC(gc);
598 assert(IS_REACHABLE(op));
599 assert(PyWeakref_Check(op));
600 wr = (PyWeakReference *)op;
601 callback = wr->wr_callback;
602 assert(callback != NULL);
603
604 /* copy-paste of weakrefobject.c's handle_callback() */
605 temp = PyObject_CallFunction(callback, "O", wr);
606 if (temp == NULL)
607 PyErr_WriteUnraisable(callback);
608 else
609 Py_DECREF(temp);
610
611 /* Give up the reference we created in the first pass. When
612 * op's refcount hits 0 (which it may or may not do right now),
Tim Peterscc2a8662004-10-31 22:12:43 +0000613 * op's tp_dealloc will decref op->wr_callback too. Note
614 * that the refcount probably will hit 0 now, and because this
615 * weakref was reachable to begin with, gc didn't already
616 * add it to its count of freed objects. Example: a reachable
617 * weak value dict maps some key to this reachable weakref.
618 * The callback removes this key->weakref mapping from the
619 * dict, leaving no other references to the weakref (excepting
620 * ours).
Tim Petersead8b7a2004-10-30 23:09:22 +0000621 */
622 Py_DECREF(op);
623 if (wrcb_to_call.gc.gc_next == gc) {
624 /* object is still alive -- move it */
Tim Peterse2d59182004-11-01 01:39:08 +0000625 gc_list_move(gc, old);
Tim Petersead8b7a2004-10-30 23:09:22 +0000626 }
627 else
628 ++num_freed;
629 }
630
Tim Peters403a2032003-11-20 21:21:46 +0000631 return num_freed;
632}
633
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000634static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000635debug_instance(char *msg, PyInstanceObject *inst)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000636{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000637 char *cname;
Neil Schemenauera765c122001-11-01 17:35:23 +0000638 /* simple version of instance_repr */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000639 PyObject *classname = inst->in_class->cl_name;
640 if (classname != NULL && PyString_Check(classname))
641 cname = PyString_AsString(classname);
642 else
643 cname = "?";
Jeremy Hylton06257772000-08-31 15:10:24 +0000644 PySys_WriteStderr("gc: %.100s <%.100s instance at %p>\n",
645 msg, cname, inst);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000646}
647
648static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000649debug_cycle(char *msg, PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000650{
651 if ((debug & DEBUG_INSTANCES) && PyInstance_Check(op)) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000652 debug_instance(msg, (PyInstanceObject *)op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000653 }
654 else if (debug & DEBUG_OBJECTS) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000655 PySys_WriteStderr("gc: %.100s <%.100s %p>\n",
656 msg, op->ob_type->tp_name, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000657 }
658}
659
Tim Petersbf384c22003-04-06 00:11:39 +0000660/* Handle uncollectable garbage (cycles with finalizers, and stuff reachable
661 * only from such cycles).
Tim Petersf6b80452003-04-07 19:21:15 +0000662 * If DEBUG_SAVEALL, all objects in finalizers are appended to the module
663 * garbage list (a Python list), else only the objects in finalizers with
664 * __del__ methods are appended to garbage. All objects in finalizers are
665 * merged into the old list regardless.
Tim Peters259272b2003-04-06 19:41:39 +0000666 * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list).
667 * The finalizers list is made empty on a successful return.
Tim Petersbf384c22003-04-06 00:11:39 +0000668 */
Tim Peters259272b2003-04-06 19:41:39 +0000669static int
Tim Petersf6b80452003-04-07 19:21:15 +0000670handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000671{
Tim Petersf6b80452003-04-07 19:21:15 +0000672 PyGC_Head *gc = finalizers->gc.gc_next;
673
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000674 if (garbage == NULL) {
675 garbage = PyList_New(0);
Tim Petersbf384c22003-04-06 00:11:39 +0000676 if (garbage == NULL)
677 Py_FatalError("gc couldn't create gc.garbage list");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000678 }
Tim Petersf6b80452003-04-07 19:21:15 +0000679 for (; gc != finalizers; gc = gc->gc.gc_next) {
680 PyObject *op = FROM_GC(gc);
681
682 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) {
683 if (PyList_Append(garbage, op) < 0)
684 return -1;
685 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000686 }
Tim Petersf6b80452003-04-07 19:21:15 +0000687
Tim Peters259272b2003-04-06 19:41:39 +0000688 gc_list_merge(finalizers, old);
689 return 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000690}
691
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000692/* Break reference cycles by clearing the containers involved. This is
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000693 * tricky business as the lists can be changing and we don't know which
Tim Peters19b74c72002-07-01 03:52:19 +0000694 * objects may be freed. It is possible I screwed something up here.
695 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000696static void
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000697delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000698{
699 inquiry clear;
700
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000701 while (!gc_list_is_empty(collectable)) {
702 PyGC_Head *gc = collectable->gc.gc_next;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000703 PyObject *op = FROM_GC(gc);
Tim Peters88396172002-06-30 17:56:40 +0000704
Tim Peters19b74c72002-07-01 03:52:19 +0000705 assert(IS_TENTATIVELY_UNREACHABLE(op));
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000706 if (debug & DEBUG_SAVEALL) {
707 PyList_Append(garbage, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000708 }
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000709 else {
710 if ((clear = op->ob_type->tp_clear) != NULL) {
711 Py_INCREF(op);
Jeremy Hylton8a135182002-06-06 23:23:55 +0000712 clear(op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000713 Py_DECREF(op);
714 }
715 }
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000716 if (collectable->gc.gc_next == gc) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000717 /* object is still alive, move it, it may die later */
Tim Peterse2d59182004-11-01 01:39:08 +0000718 gc_list_move(gc, old);
Tim Peters19b74c72002-07-01 03:52:19 +0000719 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000720 }
721 }
722}
723
724/* This is the main function. Read this to understand how the
725 * collection process works. */
Neal Norwitz7b216c52006-03-04 20:01:53 +0000726static Py_ssize_t
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000727collect(int generation)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000728{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000729 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000730 Py_ssize_t m = 0; /* # objects collected */
731 Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000732 PyGC_Head *young; /* the generation we are examining */
733 PyGC_Head *old; /* next older generation */
Tim Peters403a2032003-11-20 21:21:46 +0000734 PyGC_Head unreachable; /* non-problematic unreachable trash */
735 PyGC_Head finalizers; /* objects with, & reachable from, __del__ */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000736 PyGC_Head *gc;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000737 static PyObject *tmod = NULL;
738 double t1 = 0.0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000739
Tim Peters93ad66d2003-04-05 17:15:44 +0000740 if (delstr == NULL) {
741 delstr = PyString_InternFromString("__del__");
742 if (delstr == NULL)
743 Py_FatalError("gc couldn't allocate \"__del__\"");
744 }
745
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000746 if (tmod == NULL) {
747 tmod = PyImport_ImportModule("time");
748 if (tmod == NULL)
749 PyErr_Clear();
750 }
751
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000752 if (debug & DEBUG_STATS) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000753 if (tmod != NULL) {
754 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
755 if (f == NULL) {
756 PyErr_Clear();
757 }
758 else {
759 t1 = PyFloat_AsDouble(f);
760 Py_DECREF(f);
761 }
762 }
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000763 PySys_WriteStderr("gc: collecting generation %d...\n",
764 generation);
765 PySys_WriteStderr("gc: objects in each generation:");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000766 for (i = 0; i < NUM_GENERATIONS; i++)
767 PySys_WriteStderr(" %" PY_FORMAT_SIZE_T "d",
768 gc_list_size(GEN_HEAD(i)));
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000769 PySys_WriteStderr("\n");
770 }
771
772 /* update collection and allocation counters */
773 if (generation+1 < NUM_GENERATIONS)
774 generations[generation+1].count += 1;
775 for (i = 0; i <= generation; i++)
Neil Schemenauerc9051642002-06-28 19:16:04 +0000776 generations[i].count = 0;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000777
778 /* merge younger generations with one we are currently collecting */
779 for (i = 0; i < generation; i++) {
780 gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation));
781 }
782
783 /* handy references */
784 young = GEN_HEAD(generation);
Tim Peters19b74c72002-07-01 03:52:19 +0000785 if (generation < NUM_GENERATIONS-1)
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000786 old = GEN_HEAD(generation+1);
Tim Peters19b74c72002-07-01 03:52:19 +0000787 else
788 old = young;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000789
790 /* Using ob_refcnt and gc_refs, calculate which objects in the
Tim Petersead8b7a2004-10-30 23:09:22 +0000791 * container set are reachable from outside the set (i.e., have a
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000792 * refcount greater than 0 when all the references within the
Tim Petersead8b7a2004-10-30 23:09:22 +0000793 * set are taken into account).
Tim Peters19b74c72002-07-01 03:52:19 +0000794 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000795 update_refs(young);
796 subtract_refs(young);
797
Tim Peters19b74c72002-07-01 03:52:19 +0000798 /* Leave everything reachable from outside young in young, and move
799 * everything else (in young) to unreachable.
800 * NOTE: This used to move the reachable objects into a reachable
801 * set instead. But most things usually turn out to be reachable,
802 * so it's more efficient to move the unreachable things.
803 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000804 gc_list_init(&unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000805 move_unreachable(young, &unreachable);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000806
Tim Peters19b74c72002-07-01 03:52:19 +0000807 /* Move reachable objects to next generation. */
808 if (young != old)
809 gc_list_merge(young, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000810
Tim Peters19b74c72002-07-01 03:52:19 +0000811 /* All objects in unreachable are trash, but objects reachable from
812 * finalizers can't safely be deleted. Python programmers should take
813 * care not to create such things. For Python, finalizers means
Tim Peters403a2032003-11-20 21:21:46 +0000814 * instance objects with __del__ methods. Weakrefs with callbacks
Tim Petersead8b7a2004-10-30 23:09:22 +0000815 * can also call arbitrary Python code but they will be dealt with by
816 * handle_weakrefs().
Tim Petersf6b80452003-04-07 19:21:15 +0000817 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000818 gc_list_init(&finalizers);
Tim Petersead8b7a2004-10-30 23:09:22 +0000819 move_finalizers(&unreachable, &finalizers);
Tim Petersbf384c22003-04-06 00:11:39 +0000820 /* finalizers contains the unreachable objects with a finalizer;
Tim Peters403a2032003-11-20 21:21:46 +0000821 * unreachable objects reachable *from* those are also uncollectable,
822 * and we move those into the finalizers list too.
Tim Petersbf384c22003-04-06 00:11:39 +0000823 */
Tim Petersf6b80452003-04-07 19:21:15 +0000824 move_finalizer_reachable(&finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000825
826 /* Collect statistics on collectable objects found and print
Tim Peters403a2032003-11-20 21:21:46 +0000827 * debugging information.
828 */
Tim Petersf6b80452003-04-07 19:21:15 +0000829 for (gc = unreachable.gc.gc_next; gc != &unreachable;
Tim Peters9e4ca102001-10-11 18:31:31 +0000830 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000831 m++;
Jeremy Hylton06257772000-08-31 15:10:24 +0000832 if (debug & DEBUG_COLLECTABLE) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000833 debug_cycle("collectable", FROM_GC(gc));
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000834 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000835 if (tmod != NULL && (debug & DEBUG_STATS)) {
836 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
837 if (f == NULL) {
838 PyErr_Clear();
839 }
840 else {
841 t1 = PyFloat_AsDouble(f)-t1;
842 Py_DECREF(f);
843 PySys_WriteStderr("gc: %.4fs elapsed.\n", t1);
844 }
845 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000846 }
Tim Petersead8b7a2004-10-30 23:09:22 +0000847
848 /* Clear weakrefs and invoke callbacks as necessary. */
849 m += handle_weakrefs(&unreachable, old);
850
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000851 /* Call tp_clear on objects in the unreachable set. This will cause
852 * the reference cycles to be broken. It may also cause some objects
853 * in finalizers to be freed.
854 */
Tim Petersf6b80452003-04-07 19:21:15 +0000855 delete_garbage(&unreachable, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000856
857 /* Collect statistics on uncollectable objects found and print
858 * debugging information. */
Tim Peters50c61d52003-04-06 01:50:50 +0000859 for (gc = finalizers.gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000860 gc != &finalizers;
861 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000862 n++;
Tim Petersbf384c22003-04-06 00:11:39 +0000863 if (debug & DEBUG_UNCOLLECTABLE)
Neil Schemenauer43411b52001-08-30 00:05:51 +0000864 debug_cycle("uncollectable", FROM_GC(gc));
Tim Petersbf384c22003-04-06 00:11:39 +0000865 }
Jeremy Hylton06257772000-08-31 15:10:24 +0000866 if (debug & DEBUG_STATS) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000867 if (m == 0 && n == 0)
Jeremy Hylton06257772000-08-31 15:10:24 +0000868 PySys_WriteStderr("gc: done.\n");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000869 else
Neal Norwitze22373d2006-03-06 23:31:56 +0000870 PySys_WriteStderr(
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000871 "gc: done, "
872 "%" PY_FORMAT_SIZE_T "d unreachable, "
873 "%" PY_FORMAT_SIZE_T "d uncollectable.\n",
Neal Norwitze22373d2006-03-06 23:31:56 +0000874 n+m, n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000875 }
876
877 /* Append instances in the uncollectable set to a Python
878 * reachable list of garbage. The programmer has to deal with
Tim Petersbf384c22003-04-06 00:11:39 +0000879 * this if they insist on creating this type of structure.
880 */
Tim Petersf6b80452003-04-07 19:21:15 +0000881 (void)handle_finalizers(&finalizers, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000882
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000883 if (PyErr_Occurred()) {
Tim Petersf6b80452003-04-07 19:21:15 +0000884 if (gc_str == NULL)
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000885 gc_str = PyString_FromString("garbage collection");
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000886 PyErr_WriteUnraisable(gc_str);
887 Py_FatalError("unexpected exception during garbage collection");
888 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000889 return n+m;
890}
891
Neal Norwitz7b216c52006-03-04 20:01:53 +0000892static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000893collect_generations(void)
894{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000895 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000896 Py_ssize_t n = 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000897
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000898 /* Find the oldest generation (higest numbered) where the count
899 * exceeds the threshold. Objects in the that generation and
900 * generations younger than it will be collected. */
901 for (i = NUM_GENERATIONS-1; i >= 0; i--) {
902 if (generations[i].count > generations[i].threshold) {
903 n = collect(i);
904 break;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000905 }
906 }
907 return n;
908}
909
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000910PyDoc_STRVAR(gc_enable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000911"enable() -> None\n"
912"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000913"Enable automatic garbage collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000914
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000915static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000916gc_enable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000917{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000918 enabled = 1;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000919 Py_INCREF(Py_None);
920 return Py_None;
921}
922
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000923PyDoc_STRVAR(gc_disable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000924"disable() -> None\n"
925"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000926"Disable automatic garbage collection.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000927
928static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000929gc_disable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000930{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000931 enabled = 0;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000932 Py_INCREF(Py_None);
933 return Py_None;
934}
935
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000936PyDoc_STRVAR(gc_isenabled__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000937"isenabled() -> status\n"
938"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000939"Returns true if automatic garbage collection is enabled.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000940
941static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000942gc_isenabled(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000943{
Raymond Hettinger674d56b2004-01-04 04:00:13 +0000944 return PyBool_FromLong((long)enabled);
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000945}
946
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000947PyDoc_STRVAR(gc_collect__doc__,
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000948"collect([generation]) -> n\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000949"\n"
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000950"With no arguments, run a full collection. The optional argument\n"
951"may be an integer specifying which generation to collect. A ValueError\n"
952"is raised if the generation number is invalid.\n\n"
953"The number of unreachable objects is returned.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000954
955static PyObject *
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000956gc_collect(PyObject *self, PyObject *args, PyObject *kws)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000957{
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000958 static char *keywords[] = {"generation", NULL};
959 int genarg = NUM_GENERATIONS - 1;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000960 Py_ssize_t n;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000961
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000962 if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg))
963 return NULL;
964
965 else if (genarg < 0 || genarg >= NUM_GENERATIONS) {
966 PyErr_SetString(PyExc_ValueError, "invalid generation");
967 return NULL;
968 }
969
Tim Peters50c61d52003-04-06 01:50:50 +0000970 if (collecting)
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000971 n = 0; /* already collecting, don't do anything */
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000972 else {
973 collecting = 1;
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000974 n = collect(genarg);
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000975 collecting = 0;
976 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000977
Neal Norwitz7b216c52006-03-04 20:01:53 +0000978 return PyInt_FromSsize_t(n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000979}
980
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000981PyDoc_STRVAR(gc_set_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000982"set_debug(flags) -> None\n"
983"\n"
984"Set the garbage collection debugging flags. Debugging information is\n"
985"written to sys.stderr.\n"
986"\n"
987"flags is an integer and can have the following bits turned on:\n"
988"\n"
989" DEBUG_STATS - Print statistics during collection.\n"
990" DEBUG_COLLECTABLE - Print collectable objects found.\n"
991" DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n"
992" DEBUG_INSTANCES - Print instance objects.\n"
993" DEBUG_OBJECTS - Print objects other than instances.\n"
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000994" DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000995" DEBUG_LEAK - Debug leaking programs (everything but STATS).\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000996
997static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000998gc_set_debug(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000999{
Neil Schemenauer7760cff2000-09-22 22:35:36 +00001000 if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001001 return NULL;
1002
1003 Py_INCREF(Py_None);
1004 return Py_None;
1005}
1006
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001007PyDoc_STRVAR(gc_get_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001008"get_debug() -> flags\n"
1009"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001010"Get the garbage collection debugging flags.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001011
1012static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001013gc_get_debug(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001014{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001015 return Py_BuildValue("i", debug);
1016}
1017
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001018PyDoc_STRVAR(gc_set_thresh__doc__,
Neal Norwitz2a47c0f2002-01-29 00:53:41 +00001019"set_threshold(threshold0, [threshold1, threshold2]) -> None\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001020"\n"
1021"Sets the collection thresholds. Setting threshold0 to zero disables\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001022"collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001023
1024static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001025gc_set_thresh(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001026{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001027 int i;
1028 if (!PyArg_ParseTuple(args, "i|ii:set_threshold",
1029 &generations[0].threshold,
1030 &generations[1].threshold,
1031 &generations[2].threshold))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001032 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001033 for (i = 2; i < NUM_GENERATIONS; i++) {
1034 /* generations higher than 2 get the same threshold */
1035 generations[i].threshold = generations[2].threshold;
1036 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001037
1038 Py_INCREF(Py_None);
1039 return Py_None;
1040}
1041
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001042PyDoc_STRVAR(gc_get_thresh__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001043"get_threshold() -> (threshold0, threshold1, threshold2)\n"
1044"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001045"Return the current collection thresholds\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001046
1047static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001048gc_get_thresh(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001049{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001050 return Py_BuildValue("(iii)",
1051 generations[0].threshold,
1052 generations[1].threshold,
1053 generations[2].threshold);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001054}
1055
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001056PyDoc_STRVAR(gc_get_count__doc__,
1057"get_count() -> (count0, count1, count2)\n"
1058"\n"
1059"Return the current collection counts\n");
1060
1061static PyObject *
1062gc_get_count(PyObject *self, PyObject *noargs)
1063{
1064 return Py_BuildValue("(iii)",
1065 generations[0].count,
1066 generations[1].count,
1067 generations[2].count);
1068}
1069
Neil Schemenauer48c70342001-08-09 15:38:31 +00001070static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001071referrersvisit(PyObject* obj, PyObject *objs)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001072{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001073 Py_ssize_t i;
Martin v. Löwisc8fe77b2001-11-29 18:08:31 +00001074 for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
1075 if (PyTuple_GET_ITEM(objs, i) == obj)
1076 return 1;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001077 return 0;
1078}
1079
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001080static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001081gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001082{
1083 PyGC_Head *gc;
1084 PyObject *obj;
1085 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +00001086 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +00001087 obj = FROM_GC(gc);
Neil Schemenauer48c70342001-08-09 15:38:31 +00001088 traverse = obj->ob_type->tp_traverse;
1089 if (obj == objs || obj == resultlist)
1090 continue;
Martin v. Löwis560da622001-11-24 09:24:51 +00001091 if (traverse(obj, (visitproc)referrersvisit, objs)) {
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001092 if (PyList_Append(resultlist, obj) < 0)
1093 return 0; /* error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001094 }
1095 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001096 return 1; /* no error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001097}
1098
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001099PyDoc_STRVAR(gc_get_referrers__doc__,
Martin v. Löwis560da622001-11-24 09:24:51 +00001100"get_referrers(*objs) -> list\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001101Return the list of objects that directly refer to any of objs.");
Neil Schemenauer48c70342001-08-09 15:38:31 +00001102
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001103static PyObject *
Martin v. Löwis560da622001-11-24 09:24:51 +00001104gc_get_referrers(PyObject *self, PyObject *args)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001105{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001106 int i;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001107 PyObject *result = PyList_New(0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001108 if (!result) return NULL;
1109
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001110 for (i = 0; i < NUM_GENERATIONS; i++) {
1111 if (!(gc_referrers_for(args, GEN_HEAD(i), result))) {
1112 Py_DECREF(result);
1113 return NULL;
1114 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001115 }
Neil Schemenauer48c70342001-08-09 15:38:31 +00001116 return result;
1117}
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001118
Tim Peters0f81ab62003-04-08 16:39:48 +00001119/* Append obj to list; return true if error (out of memory), false if OK. */
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001120static int
Tim Peters730f5532003-04-08 17:17:17 +00001121referentsvisit(PyObject *obj, PyObject *list)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001122{
Tim Peters0f81ab62003-04-08 16:39:48 +00001123 return PyList_Append(list, obj) < 0;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001124}
1125
Tim Peters730f5532003-04-08 17:17:17 +00001126PyDoc_STRVAR(gc_get_referents__doc__,
1127"get_referents(*objs) -> list\n\
Jeremy Hylton059b0942003-04-03 16:29:13 +00001128Return the list of objects that are directly referred to by objs.");
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001129
1130static PyObject *
Tim Peters730f5532003-04-08 17:17:17 +00001131gc_get_referents(PyObject *self, PyObject *args)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001132{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001133 Py_ssize_t i;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001134 PyObject *result = PyList_New(0);
Tim Peters0f81ab62003-04-08 16:39:48 +00001135
1136 if (result == NULL)
1137 return NULL;
1138
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001139 for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001140 traverseproc traverse;
Tim Peters93ad66d2003-04-05 17:15:44 +00001141 PyObject *obj = PyTuple_GET_ITEM(args, i);
Tim Peters0f81ab62003-04-08 16:39:48 +00001142
1143 if (! PyObject_IS_GC(obj))
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001144 continue;
Tim Peters0f81ab62003-04-08 16:39:48 +00001145 traverse = obj->ob_type->tp_traverse;
1146 if (! traverse)
1147 continue;
Tim Peters730f5532003-04-08 17:17:17 +00001148 if (traverse(obj, (visitproc)referentsvisit, result)) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001149 Py_DECREF(result);
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001150 return NULL;
Tim Peters0f81ab62003-04-08 16:39:48 +00001151 }
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001152 }
1153 return result;
1154}
1155
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001156PyDoc_STRVAR(gc_get_objects__doc__,
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001157"get_objects() -> [...]\n"
1158"\n"
1159"Return a list of objects tracked by the collector (excluding the list\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001160"returned).\n");
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001161
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001162static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001163gc_get_objects(PyObject *self, PyObject *noargs)
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001164{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001165 int i;
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001166 PyObject* result;
1167
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001168 result = PyList_New(0);
Tim Peters50c61d52003-04-06 01:50:50 +00001169 if (result == NULL)
Martin v. Löwisf8a6f242001-12-02 18:31:02 +00001170 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001171 for (i = 0; i < NUM_GENERATIONS; i++) {
1172 if (append_objects(result, GEN_HEAD(i))) {
1173 Py_DECREF(result);
1174 return NULL;
1175 }
Martin v. Löwis155aad12001-12-02 12:21:34 +00001176 }
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001177 return result;
1178}
1179
1180
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001181PyDoc_STRVAR(gc__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001182"This module provides access to the garbage collector for reference cycles.\n"
1183"\n"
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001184"enable() -- Enable automatic garbage collection.\n"
1185"disable() -- Disable automatic garbage collection.\n"
1186"isenabled() -- Returns true if automatic collection is enabled.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001187"collect() -- Do a full collection right now.\n"
1188"set_debug() -- Set debugging flags.\n"
1189"get_debug() -- Get debugging flags.\n"
1190"set_threshold() -- Set the collection thresholds.\n"
1191"get_threshold() -- Return the current the collection thresholds.\n"
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001192"get_objects() -- Return a list of all objects tracked by the collector.\n"
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001193"get_referrers() -- Return the list of objects that refer to an object.\n"
Tim Peters730f5532003-04-08 17:17:17 +00001194"get_referents() -- Return the list of objects that an object refers to.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001195
1196static PyMethodDef GcMethods[] = {
Tim Peters50c61d52003-04-06 01:50:50 +00001197 {"enable", gc_enable, METH_NOARGS, gc_enable__doc__},
1198 {"disable", gc_disable, METH_NOARGS, gc_disable__doc__},
1199 {"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001200 {"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001201 {"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001202 {"get_count", gc_get_count, METH_NOARGS, gc_get_count__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001203 {"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001204 {"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001205 {"collect", (PyCFunction)gc_collect,
1206 METH_VARARGS | METH_KEYWORDS, gc_collect__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001207 {"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__},
Martin v. Löwis560da622001-11-24 09:24:51 +00001208 {"get_referrers", gc_get_referrers, METH_VARARGS,
1209 gc_get_referrers__doc__},
Tim Peters730f5532003-04-08 17:17:17 +00001210 {"get_referents", gc_get_referents, METH_VARARGS,
1211 gc_get_referents__doc__},
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001212 {NULL, NULL} /* Sentinel */
1213};
1214
Jason Tishler6bc06ec2003-09-04 11:59:50 +00001215PyMODINIT_FUNC
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001216initgc(void)
1217{
1218 PyObject *m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001219
1220 m = Py_InitModule4("gc",
1221 GcMethods,
1222 gc__doc__,
1223 NULL,
1224 PYTHON_API_VERSION);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001225 if (m == NULL)
1226 return;
Tim Peters11558872003-04-06 23:30:52 +00001227
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001228 if (garbage == NULL) {
1229 garbage = PyList_New(0);
Tim Peters11558872003-04-06 23:30:52 +00001230 if (garbage == NULL)
1231 return;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001232 }
Neil Schemenauer3b1cbf92005-06-18 17:37:06 +00001233 Py_INCREF(garbage);
Tim Peters11558872003-04-06 23:30:52 +00001234 if (PyModule_AddObject(m, "garbage", garbage) < 0)
1235 return;
1236#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return
1237 ADD_INT(DEBUG_STATS);
1238 ADD_INT(DEBUG_COLLECTABLE);
1239 ADD_INT(DEBUG_UNCOLLECTABLE);
1240 ADD_INT(DEBUG_INSTANCES);
1241 ADD_INT(DEBUG_OBJECTS);
1242 ADD_INT(DEBUG_SAVEALL);
1243 ADD_INT(DEBUG_LEAK);
1244#undef ADD_INT
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001245}
1246
Guido van Rossume13ddc92003-04-17 17:29:22 +00001247/* API to invoke gc.collect() from C */
Neal Norwitz7b216c52006-03-04 20:01:53 +00001248Py_ssize_t
Guido van Rossume13ddc92003-04-17 17:29:22 +00001249PyGC_Collect(void)
1250{
Neal Norwitz7b216c52006-03-04 20:01:53 +00001251 Py_ssize_t n;
Guido van Rossume13ddc92003-04-17 17:29:22 +00001252
1253 if (collecting)
1254 n = 0; /* already collecting, don't do anything */
1255 else {
1256 collecting = 1;
1257 n = collect(NUM_GENERATIONS - 1);
1258 collecting = 0;
1259 }
1260
1261 return n;
1262}
1263
Neil Schemenauer43411b52001-08-30 00:05:51 +00001264/* for debugging */
Guido van Rossume13ddc92003-04-17 17:29:22 +00001265void
1266_PyGC_Dump(PyGC_Head *g)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001267{
1268 _PyObject_Dump(FROM_GC(g));
1269}
1270
Neil Schemenauer43411b52001-08-30 00:05:51 +00001271/* extension modules might be compiled with GC support so these
1272 functions must always be available */
1273
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001274#undef PyObject_GC_Track
1275#undef PyObject_GC_UnTrack
1276#undef PyObject_GC_Del
1277#undef _PyObject_GC_Malloc
1278
Neil Schemenauer43411b52001-08-30 00:05:51 +00001279void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001280PyObject_GC_Track(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001281{
1282 _PyObject_GC_TRACK(op);
1283}
1284
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001285/* for binary compatibility with 2.2 */
Neil Schemenauer43411b52001-08-30 00:05:51 +00001286void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001287_PyObject_GC_Track(PyObject *op)
1288{
1289 PyObject_GC_Track(op);
1290}
1291
1292void
1293PyObject_GC_UnTrack(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001294{
Tim Peters803526b2002-07-07 05:13:56 +00001295 /* Obscure: the Py_TRASHCAN mechanism requires that we be able to
1296 * call PyObject_GC_UnTrack twice on an object.
1297 */
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001298 if (IS_TRACKED(op))
Guido van Rossumff413af2002-03-28 20:34:59 +00001299 _PyObject_GC_UNTRACK(op);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001300}
1301
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001302/* for binary compatibility with 2.2 */
1303void
1304_PyObject_GC_UnTrack(PyObject *op)
1305{
1306 PyObject_GC_UnTrack(op);
1307}
1308
Neil Schemenauer43411b52001-08-30 00:05:51 +00001309PyObject *
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001310_PyObject_GC_Malloc(size_t basicsize)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001311{
1312 PyObject *op;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001313 PyGC_Head *g = (PyGC_Head *)PyObject_MALLOC(
1314 sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001315 if (g == NULL)
Jeremy Hylton8a135182002-06-06 23:23:55 +00001316 return PyErr_NoMemory();
Tim Petersea405632002-07-02 00:52:30 +00001317 g->gc.gc_refs = GC_UNTRACKED;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001318 generations[0].count++; /* number of allocated GC objects */
1319 if (generations[0].count > generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001320 enabled &&
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001321 generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001322 !collecting &&
1323 !PyErr_Occurred()) {
1324 collecting = 1;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001325 collect_generations();
Neil Schemenauer43411b52001-08-30 00:05:51 +00001326 collecting = 0;
1327 }
1328 op = FROM_GC(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001329 return op;
1330}
1331
1332PyObject *
1333_PyObject_GC_New(PyTypeObject *tp)
1334{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001335 PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
Tim Petersfa8efab2002-04-28 01:57:25 +00001336 if (op != NULL)
1337 op = PyObject_INIT(op, tp);
1338 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001339}
1340
1341PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001342_PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001343{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001344 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
1345 PyVarObject *op = (PyVarObject *) _PyObject_GC_Malloc(size);
Tim Petersfa8efab2002-04-28 01:57:25 +00001346 if (op != NULL)
1347 op = PyObject_INIT_VAR(op, tp, nitems);
1348 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001349}
1350
1351PyVarObject *
Martin v. Löwis41290682006-02-16 14:56:14 +00001352_PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001353{
Tim Petersf2a67da2001-10-07 03:54:51 +00001354 const size_t basicsize = _PyObject_VAR_SIZE(op->ob_type, nitems);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001355 PyGC_Head *g = AS_GC(op);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001356 g = (PyGC_Head *)PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001357 if (g == NULL)
1358 return (PyVarObject *)PyErr_NoMemory();
1359 op = (PyVarObject *) FROM_GC(g);
Tim Peters6d483d32001-10-06 21:27:34 +00001360 op->ob_size = nitems;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001361 return op;
1362}
1363
1364void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001365PyObject_GC_Del(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001366{
Neil Schemenauer43411b52001-08-30 00:05:51 +00001367 PyGC_Head *g = AS_GC(op);
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001368 if (IS_TRACKED(op))
Neil Schemenauer43411b52001-08-30 00:05:51 +00001369 gc_list_remove(g);
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001370 if (generations[0].count > 0) {
1371 generations[0].count--;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001372 }
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001373 PyObject_FREE(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001374}
1375
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001376/* for binary compatibility with 2.2 */
1377#undef _PyObject_GC_Del
1378void
1379_PyObject_GC_Del(PyObject *op)
1380{
1381 PyObject_GC_Del(op);
1382}