blob: 8462ee93faa19888e5535c05ce1f2050eca3224d [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/
Neil Schemenauera7024e92008-07-15 19:24:01 +000012
13 The following mailing list threads provide a historical perspective on
14 the design of this module. Note that a fair amount of refinement has
15 occurred since those discussions.
16
17 http://mail.python.org/pipermail/python-dev/2000-March/002385.html
18 http://mail.python.org/pipermail/python-dev/2000-March/002434.html
19 http://mail.python.org/pipermail/python-dev/2000-March/002497.html
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000020
21 For a highlevel view of the collection process, read the collect
22 function.
23
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000024*/
25
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000026#include "Python.h"
Christian Heimesa156e092008-02-16 07:38:31 +000027#include "frameobject.h" /* for PyFrame_ClearFreeList */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000028
Neil Schemenauer43411b52001-08-30 00:05:51 +000029/* Get an object's GC head */
30#define AS_GC(o) ((PyGC_Head *)(o)-1)
31
32/* Get the object given the GC head */
33#define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
34
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000035/*** Global GC state ***/
36
Neil Schemenauer2880ae52002-05-04 05:35:20 +000037struct gc_generation {
38 PyGC_Head head;
39 int threshold; /* collection threshold */
40 int count; /* count of allocations or collections of younger
41 generations */
42};
43
44#define NUM_GENERATIONS 3
45#define GEN_HEAD(n) (&generations[n].head)
46
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000047/* linked lists of container objects */
Neil Schemenauer2880ae52002-05-04 05:35:20 +000048static struct gc_generation generations[NUM_GENERATIONS] = {
49 /* PyGC_Head, threshold, count */
50 {{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0},
51 {{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0},
52 {{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0},
53};
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000054
Neil Schemenauer2880ae52002-05-04 05:35:20 +000055PyGC_Head *_PyGC_generation0 = GEN_HEAD(0);
56
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +000057static int enabled = 1; /* automatic collection enabled? */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000058
Neil Schemenauer43411b52001-08-30 00:05:51 +000059/* true if we are currently running the collector */
Tim Petersbf384c22003-04-06 00:11:39 +000060static int collecting = 0;
Neil Schemenauer43411b52001-08-30 00:05:51 +000061
Tim Peters6fc13d92002-07-02 18:12:35 +000062/* list of uncollectable objects */
Tim Petersbf384c22003-04-06 00:11:39 +000063static PyObject *garbage = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000064
65/* Python string to use if unhandled exception occurs */
Tim Petersbf384c22003-04-06 00:11:39 +000066static PyObject *gc_str = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000067
Tim Peters93ad66d2003-04-05 17:15:44 +000068/* Python string used to look for __del__ attribute. */
69static PyObject *delstr = NULL;
Jeremy Hyltonce136e92003-04-04 19:59:06 +000070
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000071/* set for debugging information */
72#define DEBUG_STATS (1<<0) /* print collection statistics */
73#define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
74#define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */
Neil Schemenauer544de1e2000-09-22 15:22:38 +000075#define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000076#define DEBUG_LEAK DEBUG_COLLECTABLE | \
77 DEBUG_UNCOLLECTABLE | \
Neil Schemenauer544de1e2000-09-22 15:22:38 +000078 DEBUG_SAVEALL
Jeremy Hyltonb709df32000-09-01 02:47:25 +000079static int debug;
Thomas Wouters477c8d52006-05-27 19:21:47 +000080static PyObject *tmod = NULL;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000081
Tim Peters6fc13d92002-07-02 18:12:35 +000082/*--------------------------------------------------------------------------
83gc_refs values.
Neil Schemenauer43411b52001-08-30 00:05:51 +000084
Tim Peters6fc13d92002-07-02 18:12:35 +000085Between collections, every gc'ed object has one of two gc_refs values:
86
87GC_UNTRACKED
88 The initial state; objects returned by PyObject_GC_Malloc are in this
89 state. The object doesn't live in any generation list, and its
90 tp_traverse slot must not be called.
91
92GC_REACHABLE
93 The object lives in some generation list, and its tp_traverse is safe to
94 call. An object transitions to GC_REACHABLE when PyObject_GC_Track
95 is called.
96
97During a collection, gc_refs can temporarily take on other states:
98
99>= 0
100 At the start of a collection, update_refs() copies the true refcount
101 to gc_refs, for each object in the generation being collected.
102 subtract_refs() then adjusts gc_refs so that it equals the number of
103 times an object is referenced directly from outside the generation
104 being collected.
Martin v. Löwis774348c2002-11-09 19:54:06 +0000105 gc_refs remains >= 0 throughout these steps.
Tim Peters6fc13d92002-07-02 18:12:35 +0000106
107GC_TENTATIVELY_UNREACHABLE
108 move_unreachable() then moves objects not reachable (whether directly or
109 indirectly) from outside the generation into an "unreachable" set.
110 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
111 again. Objects that are found to be unreachable have gc_refs set to
112 GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing
113 this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may
114 transition back to GC_REACHABLE.
115
116 Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates
117 for collection. If it's decided not to collect such an object (e.g.,
118 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
119----------------------------------------------------------------------------
120*/
Tim Petersea405632002-07-02 00:52:30 +0000121#define GC_UNTRACKED _PyGC_REFS_UNTRACKED
122#define GC_REACHABLE _PyGC_REFS_REACHABLE
123#define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE
Tim Peters19b74c72002-07-01 03:52:19 +0000124
Tim Peters6fc13d92002-07-02 18:12:35 +0000125#define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
Tim Peters19b74c72002-07-01 03:52:19 +0000126#define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE)
127#define IS_TENTATIVELY_UNREACHABLE(o) ( \
128 (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE)
Neil Schemenauera2b11ec2002-05-21 15:53:24 +0000129
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000130/*** list functions ***/
131
132static void
133gc_list_init(PyGC_Head *list)
134{
Tim Peters9e4ca102001-10-11 18:31:31 +0000135 list->gc.gc_prev = list;
136 list->gc.gc_next = list;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000137}
138
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000139static int
140gc_list_is_empty(PyGC_Head *list)
141{
142 return (list->gc.gc_next == list);
143}
144
Tim Peterse2d59182004-11-01 01:39:08 +0000145#if 0
146/* This became unused after gc_list_move() was introduced. */
147/* Append `node` to `list`. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000148static void
149gc_list_append(PyGC_Head *node, PyGC_Head *list)
150{
Tim Peters9e4ca102001-10-11 18:31:31 +0000151 node->gc.gc_next = list;
152 node->gc.gc_prev = list->gc.gc_prev;
153 node->gc.gc_prev->gc.gc_next = node;
154 list->gc.gc_prev = node;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000155}
Tim Peterse2d59182004-11-01 01:39:08 +0000156#endif
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000157
Tim Peterse2d59182004-11-01 01:39:08 +0000158/* Remove `node` from the gc list it's currently in. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000159static void
160gc_list_remove(PyGC_Head *node)
161{
Tim Peters9e4ca102001-10-11 18:31:31 +0000162 node->gc.gc_prev->gc.gc_next = node->gc.gc_next;
163 node->gc.gc_next->gc.gc_prev = node->gc.gc_prev;
164 node->gc.gc_next = NULL; /* object is not currently tracked */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000165}
166
Tim Peterse2d59182004-11-01 01:39:08 +0000167/* Move `node` from the gc list it's currently in (which is not explicitly
168 * named here) to the end of `list`. This is semantically the same as
169 * gc_list_remove(node) followed by gc_list_append(node, list).
170 */
171static void
172gc_list_move(PyGC_Head *node, PyGC_Head *list)
173{
Tim Petersbc1d1b82004-11-01 16:39:57 +0000174 PyGC_Head *new_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000175 PyGC_Head *current_prev = node->gc.gc_prev;
176 PyGC_Head *current_next = node->gc.gc_next;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000177 /* Unlink from current list. */
Tim Peterse2d59182004-11-01 01:39:08 +0000178 current_prev->gc.gc_next = current_next;
179 current_next->gc.gc_prev = current_prev;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000180 /* Relink at end of new list. */
181 new_prev = node->gc.gc_prev = list->gc.gc_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000182 new_prev->gc.gc_next = list->gc.gc_prev = node;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000183 node->gc.gc_next = list;
Tim Peterse2d59182004-11-01 01:39:08 +0000184}
185
186/* append list `from` onto list `to`; `from` becomes an empty list */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000187static void
188gc_list_merge(PyGC_Head *from, PyGC_Head *to)
189{
190 PyGC_Head *tail;
Tim Peterse2d59182004-11-01 01:39:08 +0000191 assert(from != to);
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000192 if (!gc_list_is_empty(from)) {
Tim Peters9e4ca102001-10-11 18:31:31 +0000193 tail = to->gc.gc_prev;
194 tail->gc.gc_next = from->gc.gc_next;
195 tail->gc.gc_next->gc.gc_prev = tail;
196 to->gc.gc_prev = from->gc.gc_prev;
197 to->gc.gc_prev->gc.gc_next = to;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000198 }
199 gc_list_init(from);
200}
201
Neal Norwitz7b216c52006-03-04 20:01:53 +0000202static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000203gc_list_size(PyGC_Head *list)
204{
205 PyGC_Head *gc;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000206 Py_ssize_t n = 0;
Tim Peters9e4ca102001-10-11 18:31:31 +0000207 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000208 n++;
209 }
210 return n;
211}
212
Tim Peters259272b2003-04-06 19:41:39 +0000213/* Append objects in a GC list to a Python list.
214 * Return 0 if all OK, < 0 if error (out of memory for list).
215 */
216static int
217append_objects(PyObject *py_list, PyGC_Head *gc_list)
218{
219 PyGC_Head *gc;
220 for (gc = gc_list->gc.gc_next; gc != gc_list; gc = gc->gc.gc_next) {
221 PyObject *op = FROM_GC(gc);
222 if (op != py_list) {
223 if (PyList_Append(py_list, op)) {
224 return -1; /* exception */
225 }
226 }
227 }
228 return 0;
229}
230
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000231/*** end of list stuff ***/
232
233
Tim Peters19b74c72002-07-01 03:52:19 +0000234/* Set all gc_refs = ob_refcnt. After this, gc_refs is > 0 for all objects
235 * in containers, and is GC_REACHABLE for all tracked gc objects not in
236 * containers.
Tim Peters88396172002-06-30 17:56:40 +0000237 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000238static void
239update_refs(PyGC_Head *containers)
240{
Tim Peters9e4ca102001-10-11 18:31:31 +0000241 PyGC_Head *gc = containers->gc.gc_next;
Tim Petersea405632002-07-02 00:52:30 +0000242 for (; gc != containers; gc = gc->gc.gc_next) {
243 assert(gc->gc.gc_refs == GC_REACHABLE);
Christian Heimes90aa7642007-12-19 02:45:37 +0000244 gc->gc.gc_refs = Py_REFCNT(FROM_GC(gc));
Tim Peters780c4972003-11-14 00:01:17 +0000245 /* Python's cyclic gc should never see an incoming refcount
246 * of 0: if something decref'ed to 0, it should have been
247 * deallocated immediately at that time.
248 * Possible cause (if the assert triggers): a tp_dealloc
249 * routine left a gc-aware object tracked during its teardown
250 * phase, and did something-- or allowed something to happen --
251 * that called back into Python. gc can trigger then, and may
252 * see the still-tracked dying object. Before this assert
253 * was added, such mistakes went on to allow gc to try to
254 * delete the object again. In a debug build, that caused
255 * a mysterious segfault, when _Py_ForgetReference tried
256 * to remove the object from the doubly-linked list of all
257 * objects a second time. In a release build, an actual
258 * double deallocation occurred, which leads to corruption
259 * of the allocator's internal bookkeeping pointers. That's
260 * so serious that maybe this should be a release-build
261 * check instead of an assert?
262 */
263 assert(gc->gc.gc_refs != 0);
Tim Petersea405632002-07-02 00:52:30 +0000264 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000265}
266
Tim Peters19b74c72002-07-01 03:52:19 +0000267/* A traversal callback for subtract_refs. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000268static int
269visit_decref(PyObject *op, void *data)
270{
Tim Peters93cd83e2002-06-30 21:31:03 +0000271 assert(op != NULL);
Tim Peters19b74c72002-07-01 03:52:19 +0000272 if (PyObject_IS_GC(op)) {
273 PyGC_Head *gc = AS_GC(op);
274 /* We're only interested in gc_refs for objects in the
275 * generation being collected, which can be recognized
276 * because only they have positive gc_refs.
277 */
Tim Petersaab713b2002-07-02 22:15:28 +0000278 assert(gc->gc.gc_refs != 0); /* else refcount was too small */
Tim Peters19b74c72002-07-01 03:52:19 +0000279 if (gc->gc.gc_refs > 0)
280 gc->gc.gc_refs--;
281 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000282 return 0;
283}
284
Tim Peters19b74c72002-07-01 03:52:19 +0000285/* Subtract internal references from gc_refs. After this, gc_refs is >= 0
286 * for all objects in containers, and is GC_REACHABLE for all tracked gc
287 * objects not in containers. The ones with gc_refs > 0 are directly
288 * reachable from outside containers, and so can't be collected.
289 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000290static void
291subtract_refs(PyGC_Head *containers)
292{
293 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000294 PyGC_Head *gc = containers->gc.gc_next;
295 for (; gc != containers; gc=gc->gc.gc_next) {
Christian Heimes90aa7642007-12-19 02:45:37 +0000296 traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000297 (void) traverse(FROM_GC(gc),
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000298 (visitproc)visit_decref,
299 NULL);
300 }
301}
302
Tim Peters19b74c72002-07-01 03:52:19 +0000303/* A traversal callback for move_unreachable. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000304static int
Tim Peters19b74c72002-07-01 03:52:19 +0000305visit_reachable(PyObject *op, PyGC_Head *reachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000306{
Tim Petersea405632002-07-02 00:52:30 +0000307 if (PyObject_IS_GC(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000308 PyGC_Head *gc = AS_GC(op);
Martin v. Löwis6db0e002006-03-01 16:56:25 +0000309 const Py_ssize_t gc_refs = gc->gc.gc_refs;
Tim Peters19b74c72002-07-01 03:52:19 +0000310
311 if (gc_refs == 0) {
312 /* This is in move_unreachable's 'young' list, but
313 * the traversal hasn't yet gotten to it. All
314 * we need to do is tell move_unreachable that it's
315 * reachable.
316 */
317 gc->gc.gc_refs = 1;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000318 }
Tim Peters19b74c72002-07-01 03:52:19 +0000319 else if (gc_refs == GC_TENTATIVELY_UNREACHABLE) {
320 /* This had gc_refs = 0 when move_unreachable got
321 * to it, but turns out it's reachable after all.
322 * Move it back to move_unreachable's 'young' list,
323 * and move_unreachable will eventually get to it
324 * again.
325 */
Tim Peterse2d59182004-11-01 01:39:08 +0000326 gc_list_move(gc, reachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000327 gc->gc.gc_refs = 1;
328 }
329 /* Else there's nothing to do.
330 * If gc_refs > 0, it must be in move_unreachable's 'young'
331 * list, and move_unreachable will eventually get to it.
332 * If gc_refs == GC_REACHABLE, it's either in some other
333 * generation so we don't care about it, or move_unreachable
Tim Peters6fc13d92002-07-02 18:12:35 +0000334 * already dealt with it.
Tim Petersea405632002-07-02 00:52:30 +0000335 * If gc_refs == GC_UNTRACKED, it must be ignored.
Tim Peters19b74c72002-07-01 03:52:19 +0000336 */
Tim Petersea405632002-07-02 00:52:30 +0000337 else {
338 assert(gc_refs > 0
339 || gc_refs == GC_REACHABLE
340 || gc_refs == GC_UNTRACKED);
341 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000342 }
343 return 0;
344}
345
Tim Peters19b74c72002-07-01 03:52:19 +0000346/* Move the unreachable objects from young to unreachable. After this,
347 * all objects in young have gc_refs = GC_REACHABLE, and all objects in
348 * unreachable have gc_refs = GC_TENTATIVELY_UNREACHABLE. All tracked
349 * gc objects not in young or unreachable still have gc_refs = GC_REACHABLE.
350 * All objects in young after this are directly or indirectly reachable
351 * from outside the original young; and all objects in unreachable are
352 * not.
Tim Peters88396172002-06-30 17:56:40 +0000353 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000354static void
Tim Peters19b74c72002-07-01 03:52:19 +0000355move_unreachable(PyGC_Head *young, PyGC_Head *unreachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000356{
Tim Peters19b74c72002-07-01 03:52:19 +0000357 PyGC_Head *gc = young->gc.gc_next;
358
359 /* Invariants: all objects "to the left" of us in young have gc_refs
360 * = GC_REACHABLE, and are indeed reachable (directly or indirectly)
361 * from outside the young list as it was at entry. All other objects
362 * from the original young "to the left" of us are in unreachable now,
363 * and have gc_refs = GC_TENTATIVELY_UNREACHABLE. All objects to the
364 * left of us in 'young' now have been scanned, and no objects here
365 * or to the right have been scanned yet.
366 */
367
368 while (gc != young) {
369 PyGC_Head *next;
370
Tim Peters6fc13d92002-07-02 18:12:35 +0000371 if (gc->gc.gc_refs) {
372 /* gc is definitely reachable from outside the
373 * original 'young'. Mark it as such, and traverse
374 * its pointers to find any other objects that may
375 * be directly reachable from it. Note that the
376 * call to tp_traverse may append objects to young,
377 * so we have to wait until it returns to determine
378 * the next object to visit.
379 */
380 PyObject *op = FROM_GC(gc);
Christian Heimes90aa7642007-12-19 02:45:37 +0000381 traverseproc traverse = Py_TYPE(op)->tp_traverse;
Tim Peters6fc13d92002-07-02 18:12:35 +0000382 assert(gc->gc.gc_refs > 0);
383 gc->gc.gc_refs = GC_REACHABLE;
384 (void) traverse(op,
385 (visitproc)visit_reachable,
386 (void *)young);
387 next = gc->gc.gc_next;
388 }
389 else {
Tim Peters19b74c72002-07-01 03:52:19 +0000390 /* This *may* be unreachable. To make progress,
391 * assume it is. gc isn't directly reachable from
392 * any object we've already traversed, but may be
393 * reachable from an object we haven't gotten to yet.
394 * visit_reachable will eventually move gc back into
395 * young if that's so, and we'll see it again.
396 */
397 next = gc->gc.gc_next;
Tim Peterse2d59182004-11-01 01:39:08 +0000398 gc_list_move(gc, unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000399 gc->gc.gc_refs = GC_TENTATIVELY_UNREACHABLE;
400 }
Tim Peters19b74c72002-07-01 03:52:19 +0000401 gc = next;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000402 }
403}
404
Amaury Forgeot d'Arcad8dcd52007-12-10 23:58:35 +0000405/* Return true if object has a finalization method. */
Neil Schemenauera765c122001-11-01 17:35:23 +0000406static int
407has_finalizer(PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000408{
Guido van Rossum50e9fb92006-08-17 05:42:55 +0000409 if (PyGen_CheckExact(op))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000410 return PyGen_NeedsFinalizing((PyGenObject *)op);
411 else
Thomas Wouters3dfc3c12006-08-21 22:15:41 +0000412 return op->ob_type->tp_del != NULL;
Neil Schemenauera765c122001-11-01 17:35:23 +0000413}
414
Tim Petersead8b7a2004-10-30 23:09:22 +0000415/* Move the objects in unreachable with __del__ methods into `finalizers`.
416 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
417 * objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE.
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000418 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000419static void
Tim Petersead8b7a2004-10-30 23:09:22 +0000420move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
Neil Schemenauera765c122001-11-01 17:35:23 +0000421{
Tim Petersead8b7a2004-10-30 23:09:22 +0000422 PyGC_Head *gc;
423 PyGC_Head *next;
Tim Petersf6b80452003-04-07 19:21:15 +0000424
Tim Petersead8b7a2004-10-30 23:09:22 +0000425 /* March over unreachable. Move objects with finalizers into
426 * `finalizers`.
427 */
428 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000429 PyObject *op = FROM_GC(gc);
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000430
Tim Petersf6ae7a42003-04-05 18:40:50 +0000431 assert(IS_TENTATIVELY_UNREACHABLE(op));
Tim Petersead8b7a2004-10-30 23:09:22 +0000432 next = gc->gc.gc_next;
Tim Petersf6ae7a42003-04-05 18:40:50 +0000433
Tim Petersf6b80452003-04-07 19:21:15 +0000434 if (has_finalizer(op)) {
Tim Peterse2d59182004-11-01 01:39:08 +0000435 gc_list_move(gc, finalizers);
Tim Petersf6b80452003-04-07 19:21:15 +0000436 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000437 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000438 }
439}
440
Tim Peters19b74c72002-07-01 03:52:19 +0000441/* A traversal callback for move_finalizer_reachable. */
442static int
443visit_move(PyObject *op, PyGC_Head *tolist)
444{
445 if (PyObject_IS_GC(op)) {
Tim Petersea405632002-07-02 00:52:30 +0000446 if (IS_TENTATIVELY_UNREACHABLE(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000447 PyGC_Head *gc = AS_GC(op);
Tim Peterse2d59182004-11-01 01:39:08 +0000448 gc_list_move(gc, tolist);
Tim Peters19b74c72002-07-01 03:52:19 +0000449 gc->gc.gc_refs = GC_REACHABLE;
450 }
451 }
452 return 0;
453}
454
455/* Move objects that are reachable from finalizers, from the unreachable set
Tim Petersf6b80452003-04-07 19:21:15 +0000456 * into finalizers set.
Tim Peters19b74c72002-07-01 03:52:19 +0000457 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000458static void
Tim Petersf6b80452003-04-07 19:21:15 +0000459move_finalizer_reachable(PyGC_Head *finalizers)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000460{
461 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000462 PyGC_Head *gc = finalizers->gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000463 for (; gc != finalizers; gc = gc->gc.gc_next) {
464 /* Note that the finalizers list may grow during this. */
Christian Heimes90aa7642007-12-19 02:45:37 +0000465 traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
Tim Peters88396172002-06-30 17:56:40 +0000466 (void) traverse(FROM_GC(gc),
Tim Petersbf384c22003-04-06 00:11:39 +0000467 (visitproc)visit_move,
Tim Petersf6b80452003-04-07 19:21:15 +0000468 (void *)finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000469 }
470}
471
Tim Petersead8b7a2004-10-30 23:09:22 +0000472/* Clear all weakrefs to unreachable objects, and if such a weakref has a
473 * callback, invoke it if necessary. Note that it's possible for such
474 * weakrefs to be outside the unreachable set -- indeed, those are precisely
475 * the weakrefs whose callbacks must be invoked. See gc_weakref.txt for
476 * overview & some details. Some weakrefs with callbacks may be reclaimed
477 * directly by this routine; the number reclaimed is the return value. Other
478 * weakrefs with callbacks may be moved into the `old` generation. Objects
479 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
480 * unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns,
481 * no object in `unreachable` is weakly referenced anymore.
Tim Peters403a2032003-11-20 21:21:46 +0000482 */
483static int
Tim Petersead8b7a2004-10-30 23:09:22 +0000484handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
Tim Peters403a2032003-11-20 21:21:46 +0000485{
Tim Petersead8b7a2004-10-30 23:09:22 +0000486 PyGC_Head *gc;
487 PyObject *op; /* generally FROM_GC(gc) */
488 PyWeakReference *wr; /* generally a cast of op */
Tim Petersead8b7a2004-10-30 23:09:22 +0000489 PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */
Tim Petersead8b7a2004-10-30 23:09:22 +0000490 PyGC_Head *next;
Tim Peters403a2032003-11-20 21:21:46 +0000491 int num_freed = 0;
492
Tim Petersead8b7a2004-10-30 23:09:22 +0000493 gc_list_init(&wrcb_to_call);
Tim Peters403a2032003-11-20 21:21:46 +0000494
Tim Petersead8b7a2004-10-30 23:09:22 +0000495 /* Clear all weakrefs to the objects in unreachable. If such a weakref
496 * also has a callback, move it into `wrcb_to_call` if the callback
Tim Peterscc2a8662004-10-31 22:12:43 +0000497 * needs to be invoked. Note that we cannot invoke any callbacks until
498 * all weakrefs to unreachable objects are cleared, lest the callback
499 * resurrect an unreachable object via a still-active weakref. We
500 * make another pass over wrcb_to_call, invoking callbacks, after this
501 * pass completes.
Tim Petersead8b7a2004-10-30 23:09:22 +0000502 */
503 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
504 PyWeakReference **wrlist;
505
506 op = FROM_GC(gc);
507 assert(IS_TENTATIVELY_UNREACHABLE(op));
508 next = gc->gc.gc_next;
509
Christian Heimes90aa7642007-12-19 02:45:37 +0000510 if (! PyType_SUPPORTS_WEAKREFS(Py_TYPE(op)))
Tim Petersead8b7a2004-10-30 23:09:22 +0000511 continue;
512
513 /* It supports weakrefs. Does it have any? */
514 wrlist = (PyWeakReference **)
515 PyObject_GET_WEAKREFS_LISTPTR(op);
516
517 /* `op` may have some weakrefs. March over the list, clear
518 * all the weakrefs, and move the weakrefs with callbacks
Tim Peterscc2a8662004-10-31 22:12:43 +0000519 * that must be called into wrcb_to_call.
Tim Petersead8b7a2004-10-30 23:09:22 +0000520 */
521 for (wr = *wrlist; wr != NULL; wr = *wrlist) {
522 PyGC_Head *wrasgc; /* AS_GC(wr) */
523
524 /* _PyWeakref_ClearRef clears the weakref but leaves
525 * the callback pointer intact. Obscure: it also
526 * changes *wrlist.
527 */
528 assert(wr->wr_object == op);
529 _PyWeakref_ClearRef(wr);
530 assert(wr->wr_object == Py_None);
531 if (wr->wr_callback == NULL)
532 continue; /* no callback */
533
534 /* Headache time. `op` is going away, and is weakly referenced by
535 * `wr`, which has a callback. Should the callback be invoked? If wr
536 * is also trash, no:
537 *
538 * 1. There's no need to call it. The object and the weakref are
539 * both going away, so it's legitimate to pretend the weakref is
540 * going away first. The user has to ensure a weakref outlives its
541 * referent if they want a guarantee that the wr callback will get
542 * invoked.
543 *
544 * 2. It may be catastrophic to call it. If the callback is also in
545 * cyclic trash (CT), then although the CT is unreachable from
546 * outside the current generation, CT may be reachable from the
547 * callback. Then the callback could resurrect insane objects.
548 *
549 * Since the callback is never needed and may be unsafe in this case,
Tim Peterscc2a8662004-10-31 22:12:43 +0000550 * wr is simply left in the unreachable set. Note that because we
551 * already called _PyWeakref_ClearRef(wr), its callback will never
552 * trigger.
Tim Petersead8b7a2004-10-30 23:09:22 +0000553 *
554 * OTOH, if wr isn't part of CT, we should invoke the callback: the
555 * weakref outlived the trash. Note that since wr isn't CT in this
556 * case, its callback can't be CT either -- wr acted as an external
557 * root to this generation, and therefore its callback did too. So
558 * nothing in CT is reachable from the callback either, so it's hard
559 * to imagine how calling it later could create a problem for us. wr
560 * is moved to wrcb_to_call in this case.
Tim Petersead8b7a2004-10-30 23:09:22 +0000561 */
Tim Peterscc2a8662004-10-31 22:12:43 +0000562 if (IS_TENTATIVELY_UNREACHABLE(wr))
563 continue;
564 assert(IS_REACHABLE(wr));
565
Tim Petersead8b7a2004-10-30 23:09:22 +0000566 /* Create a new reference so that wr can't go away
567 * before we can process it again.
568 */
569 Py_INCREF(wr);
570
Tim Peterscc2a8662004-10-31 22:12:43 +0000571 /* Move wr to wrcb_to_call, for the next pass. */
Tim Petersead8b7a2004-10-30 23:09:22 +0000572 wrasgc = AS_GC(wr);
Tim Peterscc2a8662004-10-31 22:12:43 +0000573 assert(wrasgc != next); /* wrasgc is reachable, but
574 next isn't, so they can't
575 be the same */
Tim Peterse2d59182004-11-01 01:39:08 +0000576 gc_list_move(wrasgc, &wrcb_to_call);
Tim Petersead8b7a2004-10-30 23:09:22 +0000577 }
578 }
579
Tim Peterscc2a8662004-10-31 22:12:43 +0000580 /* Invoke the callbacks we decided to honor. It's safe to invoke them
581 * because they can't reference unreachable objects.
Tim Petersead8b7a2004-10-30 23:09:22 +0000582 */
583 while (! gc_list_is_empty(&wrcb_to_call)) {
584 PyObject *temp;
585 PyObject *callback;
586
587 gc = wrcb_to_call.gc.gc_next;
588 op = FROM_GC(gc);
589 assert(IS_REACHABLE(op));
590 assert(PyWeakref_Check(op));
591 wr = (PyWeakReference *)op;
592 callback = wr->wr_callback;
593 assert(callback != NULL);
594
595 /* copy-paste of weakrefobject.c's handle_callback() */
Thomas Wouters477c8d52006-05-27 19:21:47 +0000596 temp = PyObject_CallFunctionObjArgs(callback, wr, NULL);
Tim Petersead8b7a2004-10-30 23:09:22 +0000597 if (temp == NULL)
598 PyErr_WriteUnraisable(callback);
599 else
600 Py_DECREF(temp);
601
602 /* Give up the reference we created in the first pass. When
603 * op's refcount hits 0 (which it may or may not do right now),
Tim Peterscc2a8662004-10-31 22:12:43 +0000604 * op's tp_dealloc will decref op->wr_callback too. Note
605 * that the refcount probably will hit 0 now, and because this
606 * weakref was reachable to begin with, gc didn't already
607 * add it to its count of freed objects. Example: a reachable
608 * weak value dict maps some key to this reachable weakref.
609 * The callback removes this key->weakref mapping from the
610 * dict, leaving no other references to the weakref (excepting
611 * ours).
Tim Petersead8b7a2004-10-30 23:09:22 +0000612 */
613 Py_DECREF(op);
614 if (wrcb_to_call.gc.gc_next == gc) {
615 /* object is still alive -- move it */
Tim Peterse2d59182004-11-01 01:39:08 +0000616 gc_list_move(gc, old);
Tim Petersead8b7a2004-10-30 23:09:22 +0000617 }
618 else
619 ++num_freed;
620 }
621
Tim Peters403a2032003-11-20 21:21:46 +0000622 return num_freed;
623}
624
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000625static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000626debug_cycle(char *msg, PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000627{
Amaury Forgeot d'Arcad8dcd52007-12-10 23:58:35 +0000628 PySys_WriteStderr("gc: %.100s <%.100s %p>\n",
Christian Heimes90aa7642007-12-19 02:45:37 +0000629 msg, Py_TYPE(op)->tp_name, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000630}
631
Tim Petersbf384c22003-04-06 00:11:39 +0000632/* Handle uncollectable garbage (cycles with finalizers, and stuff reachable
633 * only from such cycles).
Tim Petersf6b80452003-04-07 19:21:15 +0000634 * If DEBUG_SAVEALL, all objects in finalizers are appended to the module
635 * garbage list (a Python list), else only the objects in finalizers with
636 * __del__ methods are appended to garbage. All objects in finalizers are
637 * merged into the old list regardless.
Tim Peters259272b2003-04-06 19:41:39 +0000638 * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list).
639 * The finalizers list is made empty on a successful return.
Tim Petersbf384c22003-04-06 00:11:39 +0000640 */
Tim Peters259272b2003-04-06 19:41:39 +0000641static int
Tim Petersf6b80452003-04-07 19:21:15 +0000642handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000643{
Tim Petersf6b80452003-04-07 19:21:15 +0000644 PyGC_Head *gc = finalizers->gc.gc_next;
645
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000646 if (garbage == NULL) {
647 garbage = PyList_New(0);
Tim Petersbf384c22003-04-06 00:11:39 +0000648 if (garbage == NULL)
649 Py_FatalError("gc couldn't create gc.garbage list");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000650 }
Tim Petersf6b80452003-04-07 19:21:15 +0000651 for (; gc != finalizers; gc = gc->gc.gc_next) {
652 PyObject *op = FROM_GC(gc);
653
654 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) {
655 if (PyList_Append(garbage, op) < 0)
656 return -1;
657 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000658 }
Tim Petersf6b80452003-04-07 19:21:15 +0000659
Tim Peters259272b2003-04-06 19:41:39 +0000660 gc_list_merge(finalizers, old);
661 return 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000662}
663
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000664/* Break reference cycles by clearing the containers involved. This is
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000665 * tricky business as the lists can be changing and we don't know which
Tim Peters19b74c72002-07-01 03:52:19 +0000666 * objects may be freed. It is possible I screwed something up here.
667 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000668static void
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000669delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000670{
671 inquiry clear;
672
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000673 while (!gc_list_is_empty(collectable)) {
674 PyGC_Head *gc = collectable->gc.gc_next;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000675 PyObject *op = FROM_GC(gc);
Tim Peters88396172002-06-30 17:56:40 +0000676
Tim Peters19b74c72002-07-01 03:52:19 +0000677 assert(IS_TENTATIVELY_UNREACHABLE(op));
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000678 if (debug & DEBUG_SAVEALL) {
679 PyList_Append(garbage, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000680 }
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000681 else {
Christian Heimes90aa7642007-12-19 02:45:37 +0000682 if ((clear = Py_TYPE(op)->tp_clear) != NULL) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000683 Py_INCREF(op);
Jeremy Hylton8a135182002-06-06 23:23:55 +0000684 clear(op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000685 Py_DECREF(op);
686 }
687 }
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000688 if (collectable->gc.gc_next == gc) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000689 /* object is still alive, move it, it may die later */
Tim Peterse2d59182004-11-01 01:39:08 +0000690 gc_list_move(gc, old);
Tim Peters19b74c72002-07-01 03:52:19 +0000691 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000692 }
693 }
694}
695
Christian Heimesa156e092008-02-16 07:38:31 +0000696/* Clear all free lists
697 * All free lists are cleared during the collection of the highest generation.
698 * Allocated items in the free list may keep a pymalloc arena occupied.
699 * Clearing the free lists may give back memory to the OS earlier.
700 */
701static void
702clear_freelists(void)
703{
704 (void)PyMethod_ClearFreeList();
705 (void)PyFrame_ClearFreeList();
706 (void)PyCFunction_ClearFreeList();
707 (void)PyTuple_ClearFreeList();
708 (void)PyUnicode_ClearFreeList();
Georg Brandl2ee470f2008-07-16 12:55:28 +0000709 (void)PyFloat_ClearFreeList();
Christian Heimesa156e092008-02-16 07:38:31 +0000710}
711
Antoine Pitrou621601a2008-12-17 23:18:19 +0000712static double
713get_time(void)
714{
715 double result = 0;
716 if (tmod != NULL) {
717 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
718 if (f == NULL) {
719 PyErr_Clear();
720 }
721 else {
722 if (PyFloat_Check(f))
723 result = PyFloat_AsDouble(f);
724 Py_DECREF(f);
725 }
726 }
727 return result;
728}
729
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000730/* This is the main function. Read this to understand how the
731 * collection process works. */
Neal Norwitz7b216c52006-03-04 20:01:53 +0000732static Py_ssize_t
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000733collect(int generation)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000734{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000735 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000736 Py_ssize_t m = 0; /* # objects collected */
737 Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000738 PyGC_Head *young; /* the generation we are examining */
739 PyGC_Head *old; /* next older generation */
Tim Peters403a2032003-11-20 21:21:46 +0000740 PyGC_Head unreachable; /* non-problematic unreachable trash */
741 PyGC_Head finalizers; /* objects with, & reachable from, __del__ */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000742 PyGC_Head *gc;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000743 double t1 = 0.0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000744
Tim Peters93ad66d2003-04-05 17:15:44 +0000745 if (delstr == NULL) {
Martin v. Löwis5b222132007-06-10 09:51:05 +0000746 delstr = PyUnicode_InternFromString("__del__");
Tim Peters93ad66d2003-04-05 17:15:44 +0000747 if (delstr == NULL)
748 Py_FatalError("gc couldn't allocate \"__del__\"");
749 }
750
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000751 if (debug & DEBUG_STATS) {
Antoine Pitrou621601a2008-12-17 23:18:19 +0000752 t1 = get_time();
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000753 PySys_WriteStderr("gc: collecting generation %d...\n",
754 generation);
755 PySys_WriteStderr("gc: objects in each generation:");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000756 for (i = 0; i < NUM_GENERATIONS; i++)
757 PySys_WriteStderr(" %" PY_FORMAT_SIZE_T "d",
758 gc_list_size(GEN_HEAD(i)));
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000759 PySys_WriteStderr("\n");
760 }
761
762 /* update collection and allocation counters */
763 if (generation+1 < NUM_GENERATIONS)
764 generations[generation+1].count += 1;
765 for (i = 0; i <= generation; i++)
Neil Schemenauerc9051642002-06-28 19:16:04 +0000766 generations[i].count = 0;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000767
768 /* merge younger generations with one we are currently collecting */
769 for (i = 0; i < generation; i++) {
770 gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation));
771 }
772
773 /* handy references */
774 young = GEN_HEAD(generation);
Tim Peters19b74c72002-07-01 03:52:19 +0000775 if (generation < NUM_GENERATIONS-1)
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000776 old = GEN_HEAD(generation+1);
Tim Peters19b74c72002-07-01 03:52:19 +0000777 else
778 old = young;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000779
780 /* Using ob_refcnt and gc_refs, calculate which objects in the
Tim Petersead8b7a2004-10-30 23:09:22 +0000781 * container set are reachable from outside the set (i.e., have a
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000782 * refcount greater than 0 when all the references within the
Tim Petersead8b7a2004-10-30 23:09:22 +0000783 * set are taken into account).
Tim Peters19b74c72002-07-01 03:52:19 +0000784 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000785 update_refs(young);
786 subtract_refs(young);
787
Tim Peters19b74c72002-07-01 03:52:19 +0000788 /* Leave everything reachable from outside young in young, and move
789 * everything else (in young) to unreachable.
790 * NOTE: This used to move the reachable objects into a reachable
791 * set instead. But most things usually turn out to be reachable,
792 * so it's more efficient to move the unreachable things.
793 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000794 gc_list_init(&unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000795 move_unreachable(young, &unreachable);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000796
Tim Peters19b74c72002-07-01 03:52:19 +0000797 /* Move reachable objects to next generation. */
798 if (young != old)
799 gc_list_merge(young, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000800
Tim Peters19b74c72002-07-01 03:52:19 +0000801 /* All objects in unreachable are trash, but objects reachable from
802 * finalizers can't safely be deleted. Python programmers should take
803 * care not to create such things. For Python, finalizers means
Tim Peters403a2032003-11-20 21:21:46 +0000804 * instance objects with __del__ methods. Weakrefs with callbacks
Tim Petersead8b7a2004-10-30 23:09:22 +0000805 * can also call arbitrary Python code but they will be dealt with by
806 * handle_weakrefs().
Tim Petersf6b80452003-04-07 19:21:15 +0000807 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000808 gc_list_init(&finalizers);
Tim Petersead8b7a2004-10-30 23:09:22 +0000809 move_finalizers(&unreachable, &finalizers);
Tim Petersbf384c22003-04-06 00:11:39 +0000810 /* finalizers contains the unreachable objects with a finalizer;
Tim Peters403a2032003-11-20 21:21:46 +0000811 * unreachable objects reachable *from* those are also uncollectable,
812 * and we move those into the finalizers list too.
Tim Petersbf384c22003-04-06 00:11:39 +0000813 */
Tim Petersf6b80452003-04-07 19:21:15 +0000814 move_finalizer_reachable(&finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000815
816 /* Collect statistics on collectable objects found and print
Tim Peters403a2032003-11-20 21:21:46 +0000817 * debugging information.
818 */
Tim Petersf6b80452003-04-07 19:21:15 +0000819 for (gc = unreachable.gc.gc_next; gc != &unreachable;
Tim Peters9e4ca102001-10-11 18:31:31 +0000820 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000821 m++;
Jeremy Hylton06257772000-08-31 15:10:24 +0000822 if (debug & DEBUG_COLLECTABLE) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000823 debug_cycle("collectable", FROM_GC(gc));
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000824 }
825 }
Tim Petersead8b7a2004-10-30 23:09:22 +0000826
827 /* Clear weakrefs and invoke callbacks as necessary. */
828 m += handle_weakrefs(&unreachable, old);
829
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000830 /* Call tp_clear on objects in the unreachable set. This will cause
831 * the reference cycles to be broken. It may also cause some objects
832 * in finalizers to be freed.
833 */
Tim Petersf6b80452003-04-07 19:21:15 +0000834 delete_garbage(&unreachable, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000835
836 /* Collect statistics on uncollectable objects found and print
837 * debugging information. */
Tim Peters50c61d52003-04-06 01:50:50 +0000838 for (gc = finalizers.gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000839 gc != &finalizers;
840 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000841 n++;
Tim Petersbf384c22003-04-06 00:11:39 +0000842 if (debug & DEBUG_UNCOLLECTABLE)
Neil Schemenauer43411b52001-08-30 00:05:51 +0000843 debug_cycle("uncollectable", FROM_GC(gc));
Tim Petersbf384c22003-04-06 00:11:39 +0000844 }
Jeremy Hylton06257772000-08-31 15:10:24 +0000845 if (debug & DEBUG_STATS) {
Antoine Pitrou621601a2008-12-17 23:18:19 +0000846 double t2 = get_time();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000847 if (m == 0 && n == 0)
Antoine Pitrou621601a2008-12-17 23:18:19 +0000848 PySys_WriteStderr("gc: done");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000849 else
Neal Norwitze22373d2006-03-06 23:31:56 +0000850 PySys_WriteStderr(
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000851 "gc: done, "
852 "%" PY_FORMAT_SIZE_T "d unreachable, "
Antoine Pitrou621601a2008-12-17 23:18:19 +0000853 "%" PY_FORMAT_SIZE_T "d uncollectable",
Neal Norwitze22373d2006-03-06 23:31:56 +0000854 n+m, n);
Antoine Pitrou621601a2008-12-17 23:18:19 +0000855 if (t1 && t2) {
856 PySys_WriteStderr(", %.4fs elapsed", t2-t1);
857 }
858 PySys_WriteStderr(".\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000859 }
860
861 /* Append instances in the uncollectable set to a Python
862 * reachable list of garbage. The programmer has to deal with
Tim Petersbf384c22003-04-06 00:11:39 +0000863 * this if they insist on creating this type of structure.
864 */
Tim Petersf6b80452003-04-07 19:21:15 +0000865 (void)handle_finalizers(&finalizers, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000866
Christian Heimesa156e092008-02-16 07:38:31 +0000867 /* Clear free list only during the collection of the higest
868 * generation */
869 if (generation == NUM_GENERATIONS-1) {
870 clear_freelists();
871 }
872
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000873 if (PyErr_Occurred()) {
Tim Petersf6b80452003-04-07 19:21:15 +0000874 if (gc_str == NULL)
Neal Norwitz53cbdaa2007-08-23 21:42:55 +0000875 gc_str = PyUnicode_FromString("garbage collection");
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000876 PyErr_WriteUnraisable(gc_str);
877 Py_FatalError("unexpected exception during garbage collection");
878 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000879 return n+m;
880}
881
Neal Norwitz7b216c52006-03-04 20:01:53 +0000882static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000883collect_generations(void)
884{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000885 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000886 Py_ssize_t n = 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000887
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000888 /* Find the oldest generation (higest numbered) where the count
889 * exceeds the threshold. Objects in the that generation and
890 * generations younger than it will be collected. */
891 for (i = NUM_GENERATIONS-1; i >= 0; i--) {
892 if (generations[i].count > generations[i].threshold) {
893 n = collect(i);
894 break;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000895 }
896 }
897 return n;
898}
899
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000900PyDoc_STRVAR(gc_enable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000901"enable() -> None\n"
902"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000903"Enable automatic garbage collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000904
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000905static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000906gc_enable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000907{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000908 enabled = 1;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000909 Py_INCREF(Py_None);
910 return Py_None;
911}
912
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000913PyDoc_STRVAR(gc_disable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000914"disable() -> None\n"
915"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000916"Disable automatic garbage collection.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000917
918static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000919gc_disable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000920{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000921 enabled = 0;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000922 Py_INCREF(Py_None);
923 return Py_None;
924}
925
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000926PyDoc_STRVAR(gc_isenabled__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000927"isenabled() -> status\n"
928"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000929"Returns true if automatic garbage collection is enabled.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000930
931static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000932gc_isenabled(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000933{
Raymond Hettinger674d56b2004-01-04 04:00:13 +0000934 return PyBool_FromLong((long)enabled);
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000935}
936
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000937PyDoc_STRVAR(gc_collect__doc__,
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000938"collect([generation]) -> n\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000939"\n"
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000940"With no arguments, run a full collection. The optional argument\n"
941"may be an integer specifying which generation to collect. A ValueError\n"
942"is raised if the generation number is invalid.\n\n"
943"The number of unreachable objects is returned.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000944
945static PyObject *
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000946gc_collect(PyObject *self, PyObject *args, PyObject *kws)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000947{
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000948 static char *keywords[] = {"generation", NULL};
949 int genarg = NUM_GENERATIONS - 1;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000950 Py_ssize_t n;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000951
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000952 if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg))
953 return NULL;
954
955 else if (genarg < 0 || genarg >= NUM_GENERATIONS) {
956 PyErr_SetString(PyExc_ValueError, "invalid generation");
957 return NULL;
958 }
959
Tim Peters50c61d52003-04-06 01:50:50 +0000960 if (collecting)
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000961 n = 0; /* already collecting, don't do anything */
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000962 else {
963 collecting = 1;
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000964 n = collect(genarg);
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000965 collecting = 0;
966 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000967
Christian Heimes217cfd12007-12-02 14:31:20 +0000968 return PyLong_FromSsize_t(n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000969}
970
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000971PyDoc_STRVAR(gc_set_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000972"set_debug(flags) -> None\n"
973"\n"
974"Set the garbage collection debugging flags. Debugging information is\n"
975"written to sys.stderr.\n"
976"\n"
977"flags is an integer and can have the following bits turned on:\n"
978"\n"
979" DEBUG_STATS - Print statistics during collection.\n"
980" DEBUG_COLLECTABLE - Print collectable objects found.\n"
981" DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n"
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000982" DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000983" DEBUG_LEAK - Debug leaking programs (everything but STATS).\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000984
985static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000986gc_set_debug(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000987{
Neil Schemenauer7760cff2000-09-22 22:35:36 +0000988 if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000989 return NULL;
990
991 Py_INCREF(Py_None);
992 return Py_None;
993}
994
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000995PyDoc_STRVAR(gc_get_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000996"get_debug() -> flags\n"
997"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000998"Get the garbage collection debugging flags.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000999
1000static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001001gc_get_debug(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001002{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001003 return Py_BuildValue("i", debug);
1004}
1005
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001006PyDoc_STRVAR(gc_set_thresh__doc__,
Neal Norwitz2a47c0f2002-01-29 00:53:41 +00001007"set_threshold(threshold0, [threshold1, threshold2]) -> None\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001008"\n"
1009"Sets the collection thresholds. Setting threshold0 to zero disables\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001010"collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001011
1012static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001013gc_set_thresh(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001014{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001015 int i;
1016 if (!PyArg_ParseTuple(args, "i|ii:set_threshold",
1017 &generations[0].threshold,
1018 &generations[1].threshold,
1019 &generations[2].threshold))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001020 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001021 for (i = 2; i < NUM_GENERATIONS; i++) {
1022 /* generations higher than 2 get the same threshold */
1023 generations[i].threshold = generations[2].threshold;
1024 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001025
1026 Py_INCREF(Py_None);
1027 return Py_None;
1028}
1029
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001030PyDoc_STRVAR(gc_get_thresh__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001031"get_threshold() -> (threshold0, threshold1, threshold2)\n"
1032"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001033"Return the current collection thresholds\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001034
1035static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001036gc_get_thresh(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001037{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001038 return Py_BuildValue("(iii)",
1039 generations[0].threshold,
1040 generations[1].threshold,
1041 generations[2].threshold);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001042}
1043
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001044PyDoc_STRVAR(gc_get_count__doc__,
1045"get_count() -> (count0, count1, count2)\n"
1046"\n"
1047"Return the current collection counts\n");
1048
1049static PyObject *
1050gc_get_count(PyObject *self, PyObject *noargs)
1051{
1052 return Py_BuildValue("(iii)",
1053 generations[0].count,
1054 generations[1].count,
1055 generations[2].count);
1056}
1057
Neil Schemenauer48c70342001-08-09 15:38:31 +00001058static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001059referrersvisit(PyObject* obj, PyObject *objs)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001060{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001061 Py_ssize_t i;
Martin v. Löwisc8fe77b2001-11-29 18:08:31 +00001062 for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
1063 if (PyTuple_GET_ITEM(objs, i) == obj)
1064 return 1;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001065 return 0;
1066}
1067
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001068static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001069gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001070{
1071 PyGC_Head *gc;
1072 PyObject *obj;
1073 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +00001074 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +00001075 obj = FROM_GC(gc);
Christian Heimes90aa7642007-12-19 02:45:37 +00001076 traverse = Py_TYPE(obj)->tp_traverse;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001077 if (obj == objs || obj == resultlist)
1078 continue;
Martin v. Löwis560da622001-11-24 09:24:51 +00001079 if (traverse(obj, (visitproc)referrersvisit, objs)) {
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001080 if (PyList_Append(resultlist, obj) < 0)
1081 return 0; /* error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001082 }
1083 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001084 return 1; /* no error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001085}
1086
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001087PyDoc_STRVAR(gc_get_referrers__doc__,
Martin v. Löwis560da622001-11-24 09:24:51 +00001088"get_referrers(*objs) -> list\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001089Return the list of objects that directly refer to any of objs.");
Neil Schemenauer48c70342001-08-09 15:38:31 +00001090
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001091static PyObject *
Martin v. Löwis560da622001-11-24 09:24:51 +00001092gc_get_referrers(PyObject *self, PyObject *args)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001093{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001094 int i;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001095 PyObject *result = PyList_New(0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001096 if (!result) return NULL;
1097
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001098 for (i = 0; i < NUM_GENERATIONS; i++) {
1099 if (!(gc_referrers_for(args, GEN_HEAD(i), result))) {
1100 Py_DECREF(result);
1101 return NULL;
1102 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001103 }
Neil Schemenauer48c70342001-08-09 15:38:31 +00001104 return result;
1105}
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001106
Tim Peters0f81ab62003-04-08 16:39:48 +00001107/* Append obj to list; return true if error (out of memory), false if OK. */
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001108static int
Tim Peters730f5532003-04-08 17:17:17 +00001109referentsvisit(PyObject *obj, PyObject *list)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001110{
Tim Peters0f81ab62003-04-08 16:39:48 +00001111 return PyList_Append(list, obj) < 0;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001112}
1113
Tim Peters730f5532003-04-08 17:17:17 +00001114PyDoc_STRVAR(gc_get_referents__doc__,
1115"get_referents(*objs) -> list\n\
Jeremy Hylton059b0942003-04-03 16:29:13 +00001116Return the list of objects that are directly referred to by objs.");
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001117
1118static PyObject *
Tim Peters730f5532003-04-08 17:17:17 +00001119gc_get_referents(PyObject *self, PyObject *args)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001120{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001121 Py_ssize_t i;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001122 PyObject *result = PyList_New(0);
Tim Peters0f81ab62003-04-08 16:39:48 +00001123
1124 if (result == NULL)
1125 return NULL;
1126
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001127 for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001128 traverseproc traverse;
Tim Peters93ad66d2003-04-05 17:15:44 +00001129 PyObject *obj = PyTuple_GET_ITEM(args, i);
Tim Peters0f81ab62003-04-08 16:39:48 +00001130
1131 if (! PyObject_IS_GC(obj))
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001132 continue;
Christian Heimes90aa7642007-12-19 02:45:37 +00001133 traverse = Py_TYPE(obj)->tp_traverse;
Tim Peters0f81ab62003-04-08 16:39:48 +00001134 if (! traverse)
1135 continue;
Tim Peters730f5532003-04-08 17:17:17 +00001136 if (traverse(obj, (visitproc)referentsvisit, result)) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001137 Py_DECREF(result);
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001138 return NULL;
Tim Peters0f81ab62003-04-08 16:39:48 +00001139 }
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001140 }
1141 return result;
1142}
1143
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001144PyDoc_STRVAR(gc_get_objects__doc__,
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001145"get_objects() -> [...]\n"
1146"\n"
1147"Return a list of objects tracked by the collector (excluding the list\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001148"returned).\n");
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001149
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001150static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001151gc_get_objects(PyObject *self, PyObject *noargs)
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001152{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001153 int i;
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001154 PyObject* result;
1155
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001156 result = PyList_New(0);
Tim Peters50c61d52003-04-06 01:50:50 +00001157 if (result == NULL)
Martin v. Löwisf8a6f242001-12-02 18:31:02 +00001158 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001159 for (i = 0; i < NUM_GENERATIONS; i++) {
1160 if (append_objects(result, GEN_HEAD(i))) {
1161 Py_DECREF(result);
1162 return NULL;
1163 }
Martin v. Löwis155aad12001-12-02 12:21:34 +00001164 }
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001165 return result;
1166}
1167
1168
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001169PyDoc_STRVAR(gc__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001170"This module provides access to the garbage collector for reference cycles.\n"
1171"\n"
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001172"enable() -- Enable automatic garbage collection.\n"
1173"disable() -- Disable automatic garbage collection.\n"
1174"isenabled() -- Returns true if automatic collection is enabled.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001175"collect() -- Do a full collection right now.\n"
Thomas Wouters89f507f2006-12-13 04:49:30 +00001176"get_count() -- Return the current collection counts.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001177"set_debug() -- Set debugging flags.\n"
1178"get_debug() -- Get debugging flags.\n"
1179"set_threshold() -- Set the collection thresholds.\n"
1180"get_threshold() -- Return the current the collection thresholds.\n"
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001181"get_objects() -- Return a list of all objects tracked by the collector.\n"
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001182"get_referrers() -- Return the list of objects that refer to an object.\n"
Tim Peters730f5532003-04-08 17:17:17 +00001183"get_referents() -- Return the list of objects that an object refers to.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001184
1185static PyMethodDef GcMethods[] = {
Tim Peters50c61d52003-04-06 01:50:50 +00001186 {"enable", gc_enable, METH_NOARGS, gc_enable__doc__},
1187 {"disable", gc_disable, METH_NOARGS, gc_disable__doc__},
1188 {"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001189 {"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001190 {"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001191 {"get_count", gc_get_count, METH_NOARGS, gc_get_count__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001192 {"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001193 {"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001194 {"collect", (PyCFunction)gc_collect,
1195 METH_VARARGS | METH_KEYWORDS, gc_collect__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001196 {"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__},
Martin v. Löwis560da622001-11-24 09:24:51 +00001197 {"get_referrers", gc_get_referrers, METH_VARARGS,
1198 gc_get_referrers__doc__},
Tim Peters730f5532003-04-08 17:17:17 +00001199 {"get_referents", gc_get_referents, METH_VARARGS,
1200 gc_get_referents__doc__},
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001201 {NULL, NULL} /* Sentinel */
1202};
1203
Martin v. Löwis1a214512008-06-11 05:26:20 +00001204static struct PyModuleDef gcmodule = {
1205 PyModuleDef_HEAD_INIT,
1206 "gc",
1207 gc__doc__,
1208 -1,
1209 GcMethods,
1210 NULL,
1211 NULL,
1212 NULL,
1213 NULL
1214};
1215
1216
Jason Tishler6bc06ec2003-09-04 11:59:50 +00001217PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001218PyInit_gc(void)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001219{
1220 PyObject *m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001221
Martin v. Löwis1a214512008-06-11 05:26:20 +00001222 m = PyModule_Create(&gcmodule);
1223
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001224 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001225 return NULL;
Tim Peters11558872003-04-06 23:30:52 +00001226
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001227 if (garbage == NULL) {
1228 garbage = PyList_New(0);
Tim Peters11558872003-04-06 23:30:52 +00001229 if (garbage == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001230 return NULL;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001231 }
Neil Schemenauer3b1cbf92005-06-18 17:37:06 +00001232 Py_INCREF(garbage);
Tim Peters11558872003-04-06 23:30:52 +00001233 if (PyModule_AddObject(m, "garbage", garbage) < 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001234 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001235
1236 /* Importing can't be done in collect() because collect()
1237 * can be called via PyGC_Collect() in Py_Finalize().
1238 * This wouldn't be a problem, except that <initialized> is
1239 * reset to 0 before calling collect which trips up
1240 * the import and triggers an assertion.
1241 */
1242 if (tmod == NULL) {
Christian Heimes072c0f12008-01-03 23:01:04 +00001243 tmod = PyImport_ImportModuleNoBlock("time");
Thomas Wouters477c8d52006-05-27 19:21:47 +00001244 if (tmod == NULL)
1245 PyErr_Clear();
1246 }
1247
Martin v. Löwis1a214512008-06-11 05:26:20 +00001248#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return NULL
Tim Peters11558872003-04-06 23:30:52 +00001249 ADD_INT(DEBUG_STATS);
1250 ADD_INT(DEBUG_COLLECTABLE);
1251 ADD_INT(DEBUG_UNCOLLECTABLE);
Tim Peters11558872003-04-06 23:30:52 +00001252 ADD_INT(DEBUG_SAVEALL);
1253 ADD_INT(DEBUG_LEAK);
1254#undef ADD_INT
Martin v. Löwis1a214512008-06-11 05:26:20 +00001255 return m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001256}
1257
Guido van Rossume13ddc92003-04-17 17:29:22 +00001258/* API to invoke gc.collect() from C */
Neal Norwitz7b216c52006-03-04 20:01:53 +00001259Py_ssize_t
Guido van Rossume13ddc92003-04-17 17:29:22 +00001260PyGC_Collect(void)
1261{
Neal Norwitz7b216c52006-03-04 20:01:53 +00001262 Py_ssize_t n;
Guido van Rossume13ddc92003-04-17 17:29:22 +00001263
1264 if (collecting)
1265 n = 0; /* already collecting, don't do anything */
1266 else {
1267 collecting = 1;
1268 n = collect(NUM_GENERATIONS - 1);
1269 collecting = 0;
1270 }
1271
1272 return n;
1273}
1274
Neil Schemenauer43411b52001-08-30 00:05:51 +00001275/* for debugging */
Guido van Rossume13ddc92003-04-17 17:29:22 +00001276void
1277_PyGC_Dump(PyGC_Head *g)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001278{
1279 _PyObject_Dump(FROM_GC(g));
1280}
1281
Neil Schemenauer43411b52001-08-30 00:05:51 +00001282/* extension modules might be compiled with GC support so these
1283 functions must always be available */
1284
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001285#undef PyObject_GC_Track
1286#undef PyObject_GC_UnTrack
1287#undef PyObject_GC_Del
1288#undef _PyObject_GC_Malloc
1289
Neil Schemenauer43411b52001-08-30 00:05:51 +00001290void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001291PyObject_GC_Track(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001292{
1293 _PyObject_GC_TRACK(op);
1294}
1295
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001296/* for binary compatibility with 2.2 */
Neil Schemenauer43411b52001-08-30 00:05:51 +00001297void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001298_PyObject_GC_Track(PyObject *op)
1299{
1300 PyObject_GC_Track(op);
1301}
1302
1303void
1304PyObject_GC_UnTrack(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001305{
Tim Peters803526b2002-07-07 05:13:56 +00001306 /* Obscure: the Py_TRASHCAN mechanism requires that we be able to
1307 * call PyObject_GC_UnTrack twice on an object.
1308 */
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001309 if (IS_TRACKED(op))
Guido van Rossumff413af2002-03-28 20:34:59 +00001310 _PyObject_GC_UNTRACK(op);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001311}
1312
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001313/* for binary compatibility with 2.2 */
1314void
1315_PyObject_GC_UnTrack(PyObject *op)
1316{
1317 PyObject_GC_UnTrack(op);
1318}
1319
Neil Schemenauer43411b52001-08-30 00:05:51 +00001320PyObject *
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001321_PyObject_GC_Malloc(size_t basicsize)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001322{
1323 PyObject *op;
Neal Norwitz3ce5d922008-08-24 07:08:55 +00001324 PyGC_Head *g;
1325 if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head))
1326 return PyErr_NoMemory();
1327 g = (PyGC_Head *)PyObject_MALLOC(
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001328 sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001329 if (g == NULL)
Jeremy Hylton8a135182002-06-06 23:23:55 +00001330 return PyErr_NoMemory();
Tim Petersea405632002-07-02 00:52:30 +00001331 g->gc.gc_refs = GC_UNTRACKED;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001332 generations[0].count++; /* number of allocated GC objects */
1333 if (generations[0].count > generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001334 enabled &&
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001335 generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001336 !collecting &&
1337 !PyErr_Occurred()) {
1338 collecting = 1;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001339 collect_generations();
Neil Schemenauer43411b52001-08-30 00:05:51 +00001340 collecting = 0;
1341 }
1342 op = FROM_GC(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001343 return op;
1344}
1345
1346PyObject *
1347_PyObject_GC_New(PyTypeObject *tp)
1348{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001349 PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
Tim Petersfa8efab2002-04-28 01:57:25 +00001350 if (op != NULL)
1351 op = PyObject_INIT(op, tp);
1352 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001353}
1354
1355PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001356_PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001357{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001358 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
1359 PyVarObject *op = (PyVarObject *) _PyObject_GC_Malloc(size);
Tim Petersfa8efab2002-04-28 01:57:25 +00001360 if (op != NULL)
1361 op = PyObject_INIT_VAR(op, tp, nitems);
1362 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001363}
1364
1365PyVarObject *
Martin v. Löwis41290682006-02-16 14:56:14 +00001366_PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001367{
Christian Heimes90aa7642007-12-19 02:45:37 +00001368 const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001369 PyGC_Head *g = AS_GC(op);
Neal Norwitz3ce5d922008-08-24 07:08:55 +00001370 if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head))
1371 return (PyVarObject *)PyErr_NoMemory();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001372 g = (PyGC_Head *)PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001373 if (g == NULL)
1374 return (PyVarObject *)PyErr_NoMemory();
1375 op = (PyVarObject *) FROM_GC(g);
Christian Heimes90aa7642007-12-19 02:45:37 +00001376 Py_SIZE(op) = nitems;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001377 return op;
1378}
1379
1380void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001381PyObject_GC_Del(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001382{
Neil Schemenauer43411b52001-08-30 00:05:51 +00001383 PyGC_Head *g = AS_GC(op);
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001384 if (IS_TRACKED(op))
Neil Schemenauer43411b52001-08-30 00:05:51 +00001385 gc_list_remove(g);
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001386 if (generations[0].count > 0) {
1387 generations[0].count--;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001388 }
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001389 PyObject_FREE(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001390}
1391
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001392/* for binary compatibility with 2.2 */
1393#undef _PyObject_GC_Del
1394void
1395_PyObject_GC_Del(PyObject *op)
1396{
1397 PyObject_GC_Del(op);
1398}