blob: 897590c4f34e612118613e3ff285b735e68e71f3 [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"
Christian Heimesa156e092008-02-16 07:38:31 +000022#include "frameobject.h" /* for PyFrame_ClearFreeList */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000023
Neil Schemenauer43411b52001-08-30 00:05:51 +000024/* Get an object's GC head */
25#define AS_GC(o) ((PyGC_Head *)(o)-1)
26
27/* Get the object given the GC head */
28#define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
29
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000030/*** Global GC state ***/
31
Neil Schemenauer2880ae52002-05-04 05:35:20 +000032struct gc_generation {
33 PyGC_Head head;
34 int threshold; /* collection threshold */
35 int count; /* count of allocations or collections of younger
36 generations */
37};
38
39#define NUM_GENERATIONS 3
40#define GEN_HEAD(n) (&generations[n].head)
41
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000042/* linked lists of container objects */
Neil Schemenauer2880ae52002-05-04 05:35:20 +000043static struct gc_generation generations[NUM_GENERATIONS] = {
44 /* PyGC_Head, threshold, count */
45 {{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0},
46 {{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0},
47 {{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0},
48};
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000049
Neil Schemenauer2880ae52002-05-04 05:35:20 +000050PyGC_Head *_PyGC_generation0 = GEN_HEAD(0);
51
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +000052static int enabled = 1; /* automatic collection enabled? */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000053
Neil Schemenauer43411b52001-08-30 00:05:51 +000054/* true if we are currently running the collector */
Tim Petersbf384c22003-04-06 00:11:39 +000055static int collecting = 0;
Neil Schemenauer43411b52001-08-30 00:05:51 +000056
Tim Peters6fc13d92002-07-02 18:12:35 +000057/* list of uncollectable objects */
Tim Petersbf384c22003-04-06 00:11:39 +000058static PyObject *garbage = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000059
60/* Python string to use if unhandled exception occurs */
Tim Petersbf384c22003-04-06 00:11:39 +000061static PyObject *gc_str = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000062
Tim Peters93ad66d2003-04-05 17:15:44 +000063/* Python string used to look for __del__ attribute. */
64static PyObject *delstr = NULL;
Jeremy Hyltonce136e92003-04-04 19:59:06 +000065
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000066/* set for debugging information */
67#define DEBUG_STATS (1<<0) /* print collection statistics */
68#define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
69#define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */
Neil Schemenauer544de1e2000-09-22 15:22:38 +000070#define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000071#define DEBUG_LEAK DEBUG_COLLECTABLE | \
72 DEBUG_UNCOLLECTABLE | \
Neil Schemenauer544de1e2000-09-22 15:22:38 +000073 DEBUG_SAVEALL
Jeremy Hyltonb709df32000-09-01 02:47:25 +000074static int debug;
Thomas Wouters477c8d52006-05-27 19:21:47 +000075static PyObject *tmod = NULL;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000076
Tim Peters6fc13d92002-07-02 18:12:35 +000077/*--------------------------------------------------------------------------
78gc_refs values.
Neil Schemenauer43411b52001-08-30 00:05:51 +000079
Tim Peters6fc13d92002-07-02 18:12:35 +000080Between collections, every gc'ed object has one of two gc_refs values:
81
82GC_UNTRACKED
83 The initial state; objects returned by PyObject_GC_Malloc are in this
84 state. The object doesn't live in any generation list, and its
85 tp_traverse slot must not be called.
86
87GC_REACHABLE
88 The object lives in some generation list, and its tp_traverse is safe to
89 call. An object transitions to GC_REACHABLE when PyObject_GC_Track
90 is called.
91
92During a collection, gc_refs can temporarily take on other states:
93
94>= 0
95 At the start of a collection, update_refs() copies the true refcount
96 to gc_refs, for each object in the generation being collected.
97 subtract_refs() then adjusts gc_refs so that it equals the number of
98 times an object is referenced directly from outside the generation
99 being collected.
Martin v. Löwis774348c2002-11-09 19:54:06 +0000100 gc_refs remains >= 0 throughout these steps.
Tim Peters6fc13d92002-07-02 18:12:35 +0000101
102GC_TENTATIVELY_UNREACHABLE
103 move_unreachable() then moves objects not reachable (whether directly or
104 indirectly) from outside the generation into an "unreachable" set.
105 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
106 again. Objects that are found to be unreachable have gc_refs set to
107 GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing
108 this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may
109 transition back to GC_REACHABLE.
110
111 Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates
112 for collection. If it's decided not to collect such an object (e.g.,
113 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
114----------------------------------------------------------------------------
115*/
Tim Petersea405632002-07-02 00:52:30 +0000116#define GC_UNTRACKED _PyGC_REFS_UNTRACKED
117#define GC_REACHABLE _PyGC_REFS_REACHABLE
118#define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE
Tim Peters19b74c72002-07-01 03:52:19 +0000119
Tim Peters6fc13d92002-07-02 18:12:35 +0000120#define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
Tim Peters19b74c72002-07-01 03:52:19 +0000121#define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE)
122#define IS_TENTATIVELY_UNREACHABLE(o) ( \
123 (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE)
Neil Schemenauera2b11ec2002-05-21 15:53:24 +0000124
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000125/*** list functions ***/
126
127static void
128gc_list_init(PyGC_Head *list)
129{
Tim Peters9e4ca102001-10-11 18:31:31 +0000130 list->gc.gc_prev = list;
131 list->gc.gc_next = list;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000132}
133
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000134static int
135gc_list_is_empty(PyGC_Head *list)
136{
137 return (list->gc.gc_next == list);
138}
139
Tim Peterse2d59182004-11-01 01:39:08 +0000140#if 0
141/* This became unused after gc_list_move() was introduced. */
142/* Append `node` to `list`. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000143static void
144gc_list_append(PyGC_Head *node, PyGC_Head *list)
145{
Tim Peters9e4ca102001-10-11 18:31:31 +0000146 node->gc.gc_next = list;
147 node->gc.gc_prev = list->gc.gc_prev;
148 node->gc.gc_prev->gc.gc_next = node;
149 list->gc.gc_prev = node;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000150}
Tim Peterse2d59182004-11-01 01:39:08 +0000151#endif
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000152
Tim Peterse2d59182004-11-01 01:39:08 +0000153/* Remove `node` from the gc list it's currently in. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000154static void
155gc_list_remove(PyGC_Head *node)
156{
Tim Peters9e4ca102001-10-11 18:31:31 +0000157 node->gc.gc_prev->gc.gc_next = node->gc.gc_next;
158 node->gc.gc_next->gc.gc_prev = node->gc.gc_prev;
159 node->gc.gc_next = NULL; /* object is not currently tracked */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000160}
161
Tim Peterse2d59182004-11-01 01:39:08 +0000162/* Move `node` from the gc list it's currently in (which is not explicitly
163 * named here) to the end of `list`. This is semantically the same as
164 * gc_list_remove(node) followed by gc_list_append(node, list).
165 */
166static void
167gc_list_move(PyGC_Head *node, PyGC_Head *list)
168{
Tim Petersbc1d1b82004-11-01 16:39:57 +0000169 PyGC_Head *new_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000170 PyGC_Head *current_prev = node->gc.gc_prev;
171 PyGC_Head *current_next = node->gc.gc_next;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000172 /* Unlink from current list. */
Tim Peterse2d59182004-11-01 01:39:08 +0000173 current_prev->gc.gc_next = current_next;
174 current_next->gc.gc_prev = current_prev;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000175 /* Relink at end of new list. */
176 new_prev = node->gc.gc_prev = list->gc.gc_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000177 new_prev->gc.gc_next = list->gc.gc_prev = node;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000178 node->gc.gc_next = list;
Tim Peterse2d59182004-11-01 01:39:08 +0000179}
180
181/* append list `from` onto list `to`; `from` becomes an empty list */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000182static void
183gc_list_merge(PyGC_Head *from, PyGC_Head *to)
184{
185 PyGC_Head *tail;
Tim Peterse2d59182004-11-01 01:39:08 +0000186 assert(from != to);
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000187 if (!gc_list_is_empty(from)) {
Tim Peters9e4ca102001-10-11 18:31:31 +0000188 tail = to->gc.gc_prev;
189 tail->gc.gc_next = from->gc.gc_next;
190 tail->gc.gc_next->gc.gc_prev = tail;
191 to->gc.gc_prev = from->gc.gc_prev;
192 to->gc.gc_prev->gc.gc_next = to;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000193 }
194 gc_list_init(from);
195}
196
Neal Norwitz7b216c52006-03-04 20:01:53 +0000197static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000198gc_list_size(PyGC_Head *list)
199{
200 PyGC_Head *gc;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000201 Py_ssize_t n = 0;
Tim Peters9e4ca102001-10-11 18:31:31 +0000202 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000203 n++;
204 }
205 return n;
206}
207
Tim Peters259272b2003-04-06 19:41:39 +0000208/* Append objects in a GC list to a Python list.
209 * Return 0 if all OK, < 0 if error (out of memory for list).
210 */
211static int
212append_objects(PyObject *py_list, PyGC_Head *gc_list)
213{
214 PyGC_Head *gc;
215 for (gc = gc_list->gc.gc_next; gc != gc_list; gc = gc->gc.gc_next) {
216 PyObject *op = FROM_GC(gc);
217 if (op != py_list) {
218 if (PyList_Append(py_list, op)) {
219 return -1; /* exception */
220 }
221 }
222 }
223 return 0;
224}
225
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000226/*** end of list stuff ***/
227
228
Tim Peters19b74c72002-07-01 03:52:19 +0000229/* Set all gc_refs = ob_refcnt. After this, gc_refs is > 0 for all objects
230 * in containers, and is GC_REACHABLE for all tracked gc objects not in
231 * containers.
Tim Peters88396172002-06-30 17:56:40 +0000232 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000233static void
234update_refs(PyGC_Head *containers)
235{
Tim Peters9e4ca102001-10-11 18:31:31 +0000236 PyGC_Head *gc = containers->gc.gc_next;
Tim Petersea405632002-07-02 00:52:30 +0000237 for (; gc != containers; gc = gc->gc.gc_next) {
238 assert(gc->gc.gc_refs == GC_REACHABLE);
Christian Heimes90aa7642007-12-19 02:45:37 +0000239 gc->gc.gc_refs = Py_REFCNT(FROM_GC(gc));
Tim Peters780c4972003-11-14 00:01:17 +0000240 /* Python's cyclic gc should never see an incoming refcount
241 * of 0: if something decref'ed to 0, it should have been
242 * deallocated immediately at that time.
243 * Possible cause (if the assert triggers): a tp_dealloc
244 * routine left a gc-aware object tracked during its teardown
245 * phase, and did something-- or allowed something to happen --
246 * that called back into Python. gc can trigger then, and may
247 * see the still-tracked dying object. Before this assert
248 * was added, such mistakes went on to allow gc to try to
249 * delete the object again. In a debug build, that caused
250 * a mysterious segfault, when _Py_ForgetReference tried
251 * to remove the object from the doubly-linked list of all
252 * objects a second time. In a release build, an actual
253 * double deallocation occurred, which leads to corruption
254 * of the allocator's internal bookkeeping pointers. That's
255 * so serious that maybe this should be a release-build
256 * check instead of an assert?
257 */
258 assert(gc->gc.gc_refs != 0);
Tim Petersea405632002-07-02 00:52:30 +0000259 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000260}
261
Tim Peters19b74c72002-07-01 03:52:19 +0000262/* A traversal callback for subtract_refs. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000263static int
264visit_decref(PyObject *op, void *data)
265{
Tim Peters93cd83e2002-06-30 21:31:03 +0000266 assert(op != NULL);
Tim Peters19b74c72002-07-01 03:52:19 +0000267 if (PyObject_IS_GC(op)) {
268 PyGC_Head *gc = AS_GC(op);
269 /* We're only interested in gc_refs for objects in the
270 * generation being collected, which can be recognized
271 * because only they have positive gc_refs.
272 */
Tim Petersaab713b2002-07-02 22:15:28 +0000273 assert(gc->gc.gc_refs != 0); /* else refcount was too small */
Tim Peters19b74c72002-07-01 03:52:19 +0000274 if (gc->gc.gc_refs > 0)
275 gc->gc.gc_refs--;
276 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000277 return 0;
278}
279
Tim Peters19b74c72002-07-01 03:52:19 +0000280/* Subtract internal references from gc_refs. After this, gc_refs is >= 0
281 * for all objects in containers, and is GC_REACHABLE for all tracked gc
282 * objects not in containers. The ones with gc_refs > 0 are directly
283 * reachable from outside containers, and so can't be collected.
284 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000285static void
286subtract_refs(PyGC_Head *containers)
287{
288 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000289 PyGC_Head *gc = containers->gc.gc_next;
290 for (; gc != containers; gc=gc->gc.gc_next) {
Christian Heimes90aa7642007-12-19 02:45:37 +0000291 traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000292 (void) traverse(FROM_GC(gc),
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000293 (visitproc)visit_decref,
294 NULL);
295 }
296}
297
Tim Peters19b74c72002-07-01 03:52:19 +0000298/* A traversal callback for move_unreachable. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000299static int
Tim Peters19b74c72002-07-01 03:52:19 +0000300visit_reachable(PyObject *op, PyGC_Head *reachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000301{
Tim Petersea405632002-07-02 00:52:30 +0000302 if (PyObject_IS_GC(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000303 PyGC_Head *gc = AS_GC(op);
Martin v. Löwis6db0e002006-03-01 16:56:25 +0000304 const Py_ssize_t gc_refs = gc->gc.gc_refs;
Tim Peters19b74c72002-07-01 03:52:19 +0000305
306 if (gc_refs == 0) {
307 /* This is in move_unreachable's 'young' list, but
308 * the traversal hasn't yet gotten to it. All
309 * we need to do is tell move_unreachable that it's
310 * reachable.
311 */
312 gc->gc.gc_refs = 1;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000313 }
Tim Peters19b74c72002-07-01 03:52:19 +0000314 else if (gc_refs == GC_TENTATIVELY_UNREACHABLE) {
315 /* This had gc_refs = 0 when move_unreachable got
316 * to it, but turns out it's reachable after all.
317 * Move it back to move_unreachable's 'young' list,
318 * and move_unreachable will eventually get to it
319 * again.
320 */
Tim Peterse2d59182004-11-01 01:39:08 +0000321 gc_list_move(gc, reachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000322 gc->gc.gc_refs = 1;
323 }
324 /* Else there's nothing to do.
325 * If gc_refs > 0, it must be in move_unreachable's 'young'
326 * list, and move_unreachable will eventually get to it.
327 * If gc_refs == GC_REACHABLE, it's either in some other
328 * generation so we don't care about it, or move_unreachable
Tim Peters6fc13d92002-07-02 18:12:35 +0000329 * already dealt with it.
Tim Petersea405632002-07-02 00:52:30 +0000330 * If gc_refs == GC_UNTRACKED, it must be ignored.
Tim Peters19b74c72002-07-01 03:52:19 +0000331 */
Tim Petersea405632002-07-02 00:52:30 +0000332 else {
333 assert(gc_refs > 0
334 || gc_refs == GC_REACHABLE
335 || gc_refs == GC_UNTRACKED);
336 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000337 }
338 return 0;
339}
340
Tim Peters19b74c72002-07-01 03:52:19 +0000341/* Move the unreachable objects from young to unreachable. After this,
342 * all objects in young have gc_refs = GC_REACHABLE, and all objects in
343 * unreachable have gc_refs = GC_TENTATIVELY_UNREACHABLE. All tracked
344 * gc objects not in young or unreachable still have gc_refs = GC_REACHABLE.
345 * All objects in young after this are directly or indirectly reachable
346 * from outside the original young; and all objects in unreachable are
347 * not.
Tim Peters88396172002-06-30 17:56:40 +0000348 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000349static void
Tim Peters19b74c72002-07-01 03:52:19 +0000350move_unreachable(PyGC_Head *young, PyGC_Head *unreachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000351{
Tim Peters19b74c72002-07-01 03:52:19 +0000352 PyGC_Head *gc = young->gc.gc_next;
353
354 /* Invariants: all objects "to the left" of us in young have gc_refs
355 * = GC_REACHABLE, and are indeed reachable (directly or indirectly)
356 * from outside the young list as it was at entry. All other objects
357 * from the original young "to the left" of us are in unreachable now,
358 * and have gc_refs = GC_TENTATIVELY_UNREACHABLE. All objects to the
359 * left of us in 'young' now have been scanned, and no objects here
360 * or to the right have been scanned yet.
361 */
362
363 while (gc != young) {
364 PyGC_Head *next;
365
Tim Peters6fc13d92002-07-02 18:12:35 +0000366 if (gc->gc.gc_refs) {
367 /* gc is definitely reachable from outside the
368 * original 'young'. Mark it as such, and traverse
369 * its pointers to find any other objects that may
370 * be directly reachable from it. Note that the
371 * call to tp_traverse may append objects to young,
372 * so we have to wait until it returns to determine
373 * the next object to visit.
374 */
375 PyObject *op = FROM_GC(gc);
Christian Heimes90aa7642007-12-19 02:45:37 +0000376 traverseproc traverse = Py_TYPE(op)->tp_traverse;
Tim Peters6fc13d92002-07-02 18:12:35 +0000377 assert(gc->gc.gc_refs > 0);
378 gc->gc.gc_refs = GC_REACHABLE;
379 (void) traverse(op,
380 (visitproc)visit_reachable,
381 (void *)young);
382 next = gc->gc.gc_next;
383 }
384 else {
Tim Peters19b74c72002-07-01 03:52:19 +0000385 /* This *may* be unreachable. To make progress,
386 * assume it is. gc isn't directly reachable from
387 * any object we've already traversed, but may be
388 * reachable from an object we haven't gotten to yet.
389 * visit_reachable will eventually move gc back into
390 * young if that's so, and we'll see it again.
391 */
392 next = gc->gc.gc_next;
Tim Peterse2d59182004-11-01 01:39:08 +0000393 gc_list_move(gc, unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000394 gc->gc.gc_refs = GC_TENTATIVELY_UNREACHABLE;
395 }
Tim Peters19b74c72002-07-01 03:52:19 +0000396 gc = next;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000397 }
398}
399
Amaury Forgeot d'Arcad8dcd52007-12-10 23:58:35 +0000400/* Return true if object has a finalization method. */
Neil Schemenauera765c122001-11-01 17:35:23 +0000401static int
402has_finalizer(PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000403{
Guido van Rossum50e9fb92006-08-17 05:42:55 +0000404 if (PyGen_CheckExact(op))
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000405 return PyGen_NeedsFinalizing((PyGenObject *)op);
406 else
Thomas Wouters3dfc3c12006-08-21 22:15:41 +0000407 return op->ob_type->tp_del != NULL;
Neil Schemenauera765c122001-11-01 17:35:23 +0000408}
409
Tim Petersead8b7a2004-10-30 23:09:22 +0000410/* Move the objects in unreachable with __del__ methods into `finalizers`.
411 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
412 * objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE.
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000413 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000414static void
Tim Petersead8b7a2004-10-30 23:09:22 +0000415move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
Neil Schemenauera765c122001-11-01 17:35:23 +0000416{
Tim Petersead8b7a2004-10-30 23:09:22 +0000417 PyGC_Head *gc;
418 PyGC_Head *next;
Tim Petersf6b80452003-04-07 19:21:15 +0000419
Tim Petersead8b7a2004-10-30 23:09:22 +0000420 /* March over unreachable. Move objects with finalizers into
421 * `finalizers`.
422 */
423 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000424 PyObject *op = FROM_GC(gc);
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000425
Tim Petersf6ae7a42003-04-05 18:40:50 +0000426 assert(IS_TENTATIVELY_UNREACHABLE(op));
Tim Petersead8b7a2004-10-30 23:09:22 +0000427 next = gc->gc.gc_next;
Tim Petersf6ae7a42003-04-05 18:40:50 +0000428
Tim Petersf6b80452003-04-07 19:21:15 +0000429 if (has_finalizer(op)) {
Tim Peterse2d59182004-11-01 01:39:08 +0000430 gc_list_move(gc, finalizers);
Tim Petersf6b80452003-04-07 19:21:15 +0000431 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000432 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000433 }
434}
435
Tim Peters19b74c72002-07-01 03:52:19 +0000436/* A traversal callback for move_finalizer_reachable. */
437static int
438visit_move(PyObject *op, PyGC_Head *tolist)
439{
440 if (PyObject_IS_GC(op)) {
Tim Petersea405632002-07-02 00:52:30 +0000441 if (IS_TENTATIVELY_UNREACHABLE(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000442 PyGC_Head *gc = AS_GC(op);
Tim Peterse2d59182004-11-01 01:39:08 +0000443 gc_list_move(gc, tolist);
Tim Peters19b74c72002-07-01 03:52:19 +0000444 gc->gc.gc_refs = GC_REACHABLE;
445 }
446 }
447 return 0;
448}
449
450/* Move objects that are reachable from finalizers, from the unreachable set
Tim Petersf6b80452003-04-07 19:21:15 +0000451 * into finalizers set.
Tim Peters19b74c72002-07-01 03:52:19 +0000452 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000453static void
Tim Petersf6b80452003-04-07 19:21:15 +0000454move_finalizer_reachable(PyGC_Head *finalizers)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000455{
456 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000457 PyGC_Head *gc = finalizers->gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000458 for (; gc != finalizers; gc = gc->gc.gc_next) {
459 /* Note that the finalizers list may grow during this. */
Christian Heimes90aa7642007-12-19 02:45:37 +0000460 traverse = Py_TYPE(FROM_GC(gc))->tp_traverse;
Tim Peters88396172002-06-30 17:56:40 +0000461 (void) traverse(FROM_GC(gc),
Tim Petersbf384c22003-04-06 00:11:39 +0000462 (visitproc)visit_move,
Tim Petersf6b80452003-04-07 19:21:15 +0000463 (void *)finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000464 }
465}
466
Tim Petersead8b7a2004-10-30 23:09:22 +0000467/* Clear all weakrefs to unreachable objects, and if such a weakref has a
468 * callback, invoke it if necessary. Note that it's possible for such
469 * weakrefs to be outside the unreachable set -- indeed, those are precisely
470 * the weakrefs whose callbacks must be invoked. See gc_weakref.txt for
471 * overview & some details. Some weakrefs with callbacks may be reclaimed
472 * directly by this routine; the number reclaimed is the return value. Other
473 * weakrefs with callbacks may be moved into the `old` generation. Objects
474 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
475 * unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns,
476 * no object in `unreachable` is weakly referenced anymore.
Tim Peters403a2032003-11-20 21:21:46 +0000477 */
478static int
Tim Petersead8b7a2004-10-30 23:09:22 +0000479handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
Tim Peters403a2032003-11-20 21:21:46 +0000480{
Tim Petersead8b7a2004-10-30 23:09:22 +0000481 PyGC_Head *gc;
482 PyObject *op; /* generally FROM_GC(gc) */
483 PyWeakReference *wr; /* generally a cast of op */
Tim Petersead8b7a2004-10-30 23:09:22 +0000484 PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */
Tim Petersead8b7a2004-10-30 23:09:22 +0000485 PyGC_Head *next;
Tim Peters403a2032003-11-20 21:21:46 +0000486 int num_freed = 0;
487
Tim Petersead8b7a2004-10-30 23:09:22 +0000488 gc_list_init(&wrcb_to_call);
Tim Peters403a2032003-11-20 21:21:46 +0000489
Tim Petersead8b7a2004-10-30 23:09:22 +0000490 /* Clear all weakrefs to the objects in unreachable. If such a weakref
491 * also has a callback, move it into `wrcb_to_call` if the callback
Tim Peterscc2a8662004-10-31 22:12:43 +0000492 * needs to be invoked. Note that we cannot invoke any callbacks until
493 * all weakrefs to unreachable objects are cleared, lest the callback
494 * resurrect an unreachable object via a still-active weakref. We
495 * make another pass over wrcb_to_call, invoking callbacks, after this
496 * pass completes.
Tim Petersead8b7a2004-10-30 23:09:22 +0000497 */
498 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
499 PyWeakReference **wrlist;
500
501 op = FROM_GC(gc);
502 assert(IS_TENTATIVELY_UNREACHABLE(op));
503 next = gc->gc.gc_next;
504
Christian Heimes90aa7642007-12-19 02:45:37 +0000505 if (! PyType_SUPPORTS_WEAKREFS(Py_TYPE(op)))
Tim Petersead8b7a2004-10-30 23:09:22 +0000506 continue;
507
508 /* It supports weakrefs. Does it have any? */
509 wrlist = (PyWeakReference **)
510 PyObject_GET_WEAKREFS_LISTPTR(op);
511
512 /* `op` may have some weakrefs. March over the list, clear
513 * all the weakrefs, and move the weakrefs with callbacks
Tim Peterscc2a8662004-10-31 22:12:43 +0000514 * that must be called into wrcb_to_call.
Tim Petersead8b7a2004-10-30 23:09:22 +0000515 */
516 for (wr = *wrlist; wr != NULL; wr = *wrlist) {
517 PyGC_Head *wrasgc; /* AS_GC(wr) */
518
519 /* _PyWeakref_ClearRef clears the weakref but leaves
520 * the callback pointer intact. Obscure: it also
521 * changes *wrlist.
522 */
523 assert(wr->wr_object == op);
524 _PyWeakref_ClearRef(wr);
525 assert(wr->wr_object == Py_None);
526 if (wr->wr_callback == NULL)
527 continue; /* no callback */
528
529 /* Headache time. `op` is going away, and is weakly referenced by
530 * `wr`, which has a callback. Should the callback be invoked? If wr
531 * is also trash, no:
532 *
533 * 1. There's no need to call it. The object and the weakref are
534 * both going away, so it's legitimate to pretend the weakref is
535 * going away first. The user has to ensure a weakref outlives its
536 * referent if they want a guarantee that the wr callback will get
537 * invoked.
538 *
539 * 2. It may be catastrophic to call it. If the callback is also in
540 * cyclic trash (CT), then although the CT is unreachable from
541 * outside the current generation, CT may be reachable from the
542 * callback. Then the callback could resurrect insane objects.
543 *
544 * Since the callback is never needed and may be unsafe in this case,
Tim Peterscc2a8662004-10-31 22:12:43 +0000545 * wr is simply left in the unreachable set. Note that because we
546 * already called _PyWeakref_ClearRef(wr), its callback will never
547 * trigger.
Tim Petersead8b7a2004-10-30 23:09:22 +0000548 *
549 * OTOH, if wr isn't part of CT, we should invoke the callback: the
550 * weakref outlived the trash. Note that since wr isn't CT in this
551 * case, its callback can't be CT either -- wr acted as an external
552 * root to this generation, and therefore its callback did too. So
553 * nothing in CT is reachable from the callback either, so it's hard
554 * to imagine how calling it later could create a problem for us. wr
555 * is moved to wrcb_to_call in this case.
Tim Petersead8b7a2004-10-30 23:09:22 +0000556 */
Tim Peterscc2a8662004-10-31 22:12:43 +0000557 if (IS_TENTATIVELY_UNREACHABLE(wr))
558 continue;
559 assert(IS_REACHABLE(wr));
560
Tim Petersead8b7a2004-10-30 23:09:22 +0000561 /* Create a new reference so that wr can't go away
562 * before we can process it again.
563 */
564 Py_INCREF(wr);
565
Tim Peterscc2a8662004-10-31 22:12:43 +0000566 /* Move wr to wrcb_to_call, for the next pass. */
Tim Petersead8b7a2004-10-30 23:09:22 +0000567 wrasgc = AS_GC(wr);
Tim Peterscc2a8662004-10-31 22:12:43 +0000568 assert(wrasgc != next); /* wrasgc is reachable, but
569 next isn't, so they can't
570 be the same */
Tim Peterse2d59182004-11-01 01:39:08 +0000571 gc_list_move(wrasgc, &wrcb_to_call);
Tim Petersead8b7a2004-10-30 23:09:22 +0000572 }
573 }
574
Tim Peterscc2a8662004-10-31 22:12:43 +0000575 /* Invoke the callbacks we decided to honor. It's safe to invoke them
576 * because they can't reference unreachable objects.
Tim Petersead8b7a2004-10-30 23:09:22 +0000577 */
578 while (! gc_list_is_empty(&wrcb_to_call)) {
579 PyObject *temp;
580 PyObject *callback;
581
582 gc = wrcb_to_call.gc.gc_next;
583 op = FROM_GC(gc);
584 assert(IS_REACHABLE(op));
585 assert(PyWeakref_Check(op));
586 wr = (PyWeakReference *)op;
587 callback = wr->wr_callback;
588 assert(callback != NULL);
589
590 /* copy-paste of weakrefobject.c's handle_callback() */
Thomas Wouters477c8d52006-05-27 19:21:47 +0000591 temp = PyObject_CallFunctionObjArgs(callback, wr, NULL);
Tim Petersead8b7a2004-10-30 23:09:22 +0000592 if (temp == NULL)
593 PyErr_WriteUnraisable(callback);
594 else
595 Py_DECREF(temp);
596
597 /* Give up the reference we created in the first pass. When
598 * op's refcount hits 0 (which it may or may not do right now),
Tim Peterscc2a8662004-10-31 22:12:43 +0000599 * op's tp_dealloc will decref op->wr_callback too. Note
600 * that the refcount probably will hit 0 now, and because this
601 * weakref was reachable to begin with, gc didn't already
602 * add it to its count of freed objects. Example: a reachable
603 * weak value dict maps some key to this reachable weakref.
604 * The callback removes this key->weakref mapping from the
605 * dict, leaving no other references to the weakref (excepting
606 * ours).
Tim Petersead8b7a2004-10-30 23:09:22 +0000607 */
608 Py_DECREF(op);
609 if (wrcb_to_call.gc.gc_next == gc) {
610 /* object is still alive -- move it */
Tim Peterse2d59182004-11-01 01:39:08 +0000611 gc_list_move(gc, old);
Tim Petersead8b7a2004-10-30 23:09:22 +0000612 }
613 else
614 ++num_freed;
615 }
616
Tim Peters403a2032003-11-20 21:21:46 +0000617 return num_freed;
618}
619
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000620static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000621debug_cycle(char *msg, PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000622{
Amaury Forgeot d'Arcad8dcd52007-12-10 23:58:35 +0000623 PySys_WriteStderr("gc: %.100s <%.100s %p>\n",
Christian Heimes90aa7642007-12-19 02:45:37 +0000624 msg, Py_TYPE(op)->tp_name, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000625}
626
Tim Petersbf384c22003-04-06 00:11:39 +0000627/* Handle uncollectable garbage (cycles with finalizers, and stuff reachable
628 * only from such cycles).
Tim Petersf6b80452003-04-07 19:21:15 +0000629 * If DEBUG_SAVEALL, all objects in finalizers are appended to the module
630 * garbage list (a Python list), else only the objects in finalizers with
631 * __del__ methods are appended to garbage. All objects in finalizers are
632 * merged into the old list regardless.
Tim Peters259272b2003-04-06 19:41:39 +0000633 * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list).
634 * The finalizers list is made empty on a successful return.
Tim Petersbf384c22003-04-06 00:11:39 +0000635 */
Tim Peters259272b2003-04-06 19:41:39 +0000636static int
Tim Petersf6b80452003-04-07 19:21:15 +0000637handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000638{
Tim Petersf6b80452003-04-07 19:21:15 +0000639 PyGC_Head *gc = finalizers->gc.gc_next;
640
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000641 if (garbage == NULL) {
642 garbage = PyList_New(0);
Tim Petersbf384c22003-04-06 00:11:39 +0000643 if (garbage == NULL)
644 Py_FatalError("gc couldn't create gc.garbage list");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000645 }
Tim Petersf6b80452003-04-07 19:21:15 +0000646 for (; gc != finalizers; gc = gc->gc.gc_next) {
647 PyObject *op = FROM_GC(gc);
648
649 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) {
650 if (PyList_Append(garbage, op) < 0)
651 return -1;
652 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000653 }
Tim Petersf6b80452003-04-07 19:21:15 +0000654
Tim Peters259272b2003-04-06 19:41:39 +0000655 gc_list_merge(finalizers, old);
656 return 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000657}
658
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000659/* Break reference cycles by clearing the containers involved. This is
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000660 * tricky business as the lists can be changing and we don't know which
Tim Peters19b74c72002-07-01 03:52:19 +0000661 * objects may be freed. It is possible I screwed something up here.
662 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000663static void
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000664delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000665{
666 inquiry clear;
667
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000668 while (!gc_list_is_empty(collectable)) {
669 PyGC_Head *gc = collectable->gc.gc_next;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000670 PyObject *op = FROM_GC(gc);
Tim Peters88396172002-06-30 17:56:40 +0000671
Tim Peters19b74c72002-07-01 03:52:19 +0000672 assert(IS_TENTATIVELY_UNREACHABLE(op));
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000673 if (debug & DEBUG_SAVEALL) {
674 PyList_Append(garbage, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000675 }
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000676 else {
Christian Heimes90aa7642007-12-19 02:45:37 +0000677 if ((clear = Py_TYPE(op)->tp_clear) != NULL) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000678 Py_INCREF(op);
Jeremy Hylton8a135182002-06-06 23:23:55 +0000679 clear(op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000680 Py_DECREF(op);
681 }
682 }
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000683 if (collectable->gc.gc_next == gc) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000684 /* object is still alive, move it, it may die later */
Tim Peterse2d59182004-11-01 01:39:08 +0000685 gc_list_move(gc, old);
Tim Peters19b74c72002-07-01 03:52:19 +0000686 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000687 }
688 }
689}
690
Christian Heimesa156e092008-02-16 07:38:31 +0000691/* Clear all free lists
692 * All free lists are cleared during the collection of the highest generation.
693 * Allocated items in the free list may keep a pymalloc arena occupied.
694 * Clearing the free lists may give back memory to the OS earlier.
695 */
696static void
697clear_freelists(void)
698{
699 (void)PyMethod_ClearFreeList();
700 (void)PyFrame_ClearFreeList();
701 (void)PyCFunction_ClearFreeList();
702 (void)PyTuple_ClearFreeList();
703 (void)PyUnicode_ClearFreeList();
704}
705
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000706/* This is the main function. Read this to understand how the
707 * collection process works. */
Neal Norwitz7b216c52006-03-04 20:01:53 +0000708static Py_ssize_t
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000709collect(int generation)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000710{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000711 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000712 Py_ssize_t m = 0; /* # objects collected */
713 Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000714 PyGC_Head *young; /* the generation we are examining */
715 PyGC_Head *old; /* next older generation */
Tim Peters403a2032003-11-20 21:21:46 +0000716 PyGC_Head unreachable; /* non-problematic unreachable trash */
717 PyGC_Head finalizers; /* objects with, & reachable from, __del__ */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000718 PyGC_Head *gc;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000719 double t1 = 0.0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000720
Tim Peters93ad66d2003-04-05 17:15:44 +0000721 if (delstr == NULL) {
Martin v. Löwis5b222132007-06-10 09:51:05 +0000722 delstr = PyUnicode_InternFromString("__del__");
Tim Peters93ad66d2003-04-05 17:15:44 +0000723 if (delstr == NULL)
724 Py_FatalError("gc couldn't allocate \"__del__\"");
725 }
726
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000727 if (debug & DEBUG_STATS) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000728 if (tmod != NULL) {
729 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
730 if (f == NULL) {
731 PyErr_Clear();
732 }
733 else {
734 t1 = PyFloat_AsDouble(f);
735 Py_DECREF(f);
736 }
737 }
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000738 PySys_WriteStderr("gc: collecting generation %d...\n",
739 generation);
740 PySys_WriteStderr("gc: objects in each generation:");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000741 for (i = 0; i < NUM_GENERATIONS; i++)
742 PySys_WriteStderr(" %" PY_FORMAT_SIZE_T "d",
743 gc_list_size(GEN_HEAD(i)));
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000744 PySys_WriteStderr("\n");
745 }
746
747 /* update collection and allocation counters */
748 if (generation+1 < NUM_GENERATIONS)
749 generations[generation+1].count += 1;
750 for (i = 0; i <= generation; i++)
Neil Schemenauerc9051642002-06-28 19:16:04 +0000751 generations[i].count = 0;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000752
753 /* merge younger generations with one we are currently collecting */
754 for (i = 0; i < generation; i++) {
755 gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation));
756 }
757
758 /* handy references */
759 young = GEN_HEAD(generation);
Tim Peters19b74c72002-07-01 03:52:19 +0000760 if (generation < NUM_GENERATIONS-1)
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000761 old = GEN_HEAD(generation+1);
Tim Peters19b74c72002-07-01 03:52:19 +0000762 else
763 old = young;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000764
765 /* Using ob_refcnt and gc_refs, calculate which objects in the
Tim Petersead8b7a2004-10-30 23:09:22 +0000766 * container set are reachable from outside the set (i.e., have a
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000767 * refcount greater than 0 when all the references within the
Tim Petersead8b7a2004-10-30 23:09:22 +0000768 * set are taken into account).
Tim Peters19b74c72002-07-01 03:52:19 +0000769 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000770 update_refs(young);
771 subtract_refs(young);
772
Tim Peters19b74c72002-07-01 03:52:19 +0000773 /* Leave everything reachable from outside young in young, and move
774 * everything else (in young) to unreachable.
775 * NOTE: This used to move the reachable objects into a reachable
776 * set instead. But most things usually turn out to be reachable,
777 * so it's more efficient to move the unreachable things.
778 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000779 gc_list_init(&unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000780 move_unreachable(young, &unreachable);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000781
Tim Peters19b74c72002-07-01 03:52:19 +0000782 /* Move reachable objects to next generation. */
783 if (young != old)
784 gc_list_merge(young, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000785
Tim Peters19b74c72002-07-01 03:52:19 +0000786 /* All objects in unreachable are trash, but objects reachable from
787 * finalizers can't safely be deleted. Python programmers should take
788 * care not to create such things. For Python, finalizers means
Tim Peters403a2032003-11-20 21:21:46 +0000789 * instance objects with __del__ methods. Weakrefs with callbacks
Tim Petersead8b7a2004-10-30 23:09:22 +0000790 * can also call arbitrary Python code but they will be dealt with by
791 * handle_weakrefs().
Tim Petersf6b80452003-04-07 19:21:15 +0000792 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000793 gc_list_init(&finalizers);
Tim Petersead8b7a2004-10-30 23:09:22 +0000794 move_finalizers(&unreachable, &finalizers);
Tim Petersbf384c22003-04-06 00:11:39 +0000795 /* finalizers contains the unreachable objects with a finalizer;
Tim Peters403a2032003-11-20 21:21:46 +0000796 * unreachable objects reachable *from* those are also uncollectable,
797 * and we move those into the finalizers list too.
Tim Petersbf384c22003-04-06 00:11:39 +0000798 */
Tim Petersf6b80452003-04-07 19:21:15 +0000799 move_finalizer_reachable(&finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000800
801 /* Collect statistics on collectable objects found and print
Tim Peters403a2032003-11-20 21:21:46 +0000802 * debugging information.
803 */
Tim Petersf6b80452003-04-07 19:21:15 +0000804 for (gc = unreachable.gc.gc_next; gc != &unreachable;
Tim Peters9e4ca102001-10-11 18:31:31 +0000805 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000806 m++;
Jeremy Hylton06257772000-08-31 15:10:24 +0000807 if (debug & DEBUG_COLLECTABLE) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000808 debug_cycle("collectable", FROM_GC(gc));
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000809 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000810 if (tmod != NULL && (debug & DEBUG_STATS)) {
811 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
812 if (f == NULL) {
813 PyErr_Clear();
814 }
815 else {
816 t1 = PyFloat_AsDouble(f)-t1;
817 Py_DECREF(f);
818 PySys_WriteStderr("gc: %.4fs elapsed.\n", t1);
819 }
820 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000821 }
Tim Petersead8b7a2004-10-30 23:09:22 +0000822
823 /* Clear weakrefs and invoke callbacks as necessary. */
824 m += handle_weakrefs(&unreachable, old);
825
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000826 /* Call tp_clear on objects in the unreachable set. This will cause
827 * the reference cycles to be broken. It may also cause some objects
828 * in finalizers to be freed.
829 */
Tim Petersf6b80452003-04-07 19:21:15 +0000830 delete_garbage(&unreachable, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000831
832 /* Collect statistics on uncollectable objects found and print
833 * debugging information. */
Tim Peters50c61d52003-04-06 01:50:50 +0000834 for (gc = finalizers.gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000835 gc != &finalizers;
836 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000837 n++;
Tim Petersbf384c22003-04-06 00:11:39 +0000838 if (debug & DEBUG_UNCOLLECTABLE)
Neil Schemenauer43411b52001-08-30 00:05:51 +0000839 debug_cycle("uncollectable", FROM_GC(gc));
Tim Petersbf384c22003-04-06 00:11:39 +0000840 }
Jeremy Hylton06257772000-08-31 15:10:24 +0000841 if (debug & DEBUG_STATS) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000842 if (m == 0 && n == 0)
Jeremy Hylton06257772000-08-31 15:10:24 +0000843 PySys_WriteStderr("gc: done.\n");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000844 else
Neal Norwitze22373d2006-03-06 23:31:56 +0000845 PySys_WriteStderr(
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000846 "gc: done, "
847 "%" PY_FORMAT_SIZE_T "d unreachable, "
848 "%" PY_FORMAT_SIZE_T "d uncollectable.\n",
Neal Norwitze22373d2006-03-06 23:31:56 +0000849 n+m, n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000850 }
851
852 /* Append instances in the uncollectable set to a Python
853 * reachable list of garbage. The programmer has to deal with
Tim Petersbf384c22003-04-06 00:11:39 +0000854 * this if they insist on creating this type of structure.
855 */
Tim Petersf6b80452003-04-07 19:21:15 +0000856 (void)handle_finalizers(&finalizers, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000857
Christian Heimesa156e092008-02-16 07:38:31 +0000858 /* Clear free list only during the collection of the higest
859 * generation */
860 if (generation == NUM_GENERATIONS-1) {
861 clear_freelists();
862 }
863
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000864 if (PyErr_Occurred()) {
Tim Petersf6b80452003-04-07 19:21:15 +0000865 if (gc_str == NULL)
Neal Norwitz53cbdaa2007-08-23 21:42:55 +0000866 gc_str = PyUnicode_FromString("garbage collection");
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000867 PyErr_WriteUnraisable(gc_str);
868 Py_FatalError("unexpected exception during garbage collection");
869 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000870 return n+m;
871}
872
Neal Norwitz7b216c52006-03-04 20:01:53 +0000873static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000874collect_generations(void)
875{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000876 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000877 Py_ssize_t n = 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000878
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000879 /* Find the oldest generation (higest numbered) where the count
880 * exceeds the threshold. Objects in the that generation and
881 * generations younger than it will be collected. */
882 for (i = NUM_GENERATIONS-1; i >= 0; i--) {
883 if (generations[i].count > generations[i].threshold) {
884 n = collect(i);
885 break;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000886 }
887 }
888 return n;
889}
890
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000891PyDoc_STRVAR(gc_enable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000892"enable() -> None\n"
893"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000894"Enable automatic garbage collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000895
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000896static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000897gc_enable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000898{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000899 enabled = 1;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000900 Py_INCREF(Py_None);
901 return Py_None;
902}
903
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000904PyDoc_STRVAR(gc_disable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000905"disable() -> None\n"
906"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000907"Disable automatic garbage collection.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000908
909static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000910gc_disable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000911{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000912 enabled = 0;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000913 Py_INCREF(Py_None);
914 return Py_None;
915}
916
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000917PyDoc_STRVAR(gc_isenabled__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000918"isenabled() -> status\n"
919"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000920"Returns true if automatic garbage collection is enabled.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000921
922static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000923gc_isenabled(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000924{
Raymond Hettinger674d56b2004-01-04 04:00:13 +0000925 return PyBool_FromLong((long)enabled);
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000926}
927
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000928PyDoc_STRVAR(gc_collect__doc__,
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000929"collect([generation]) -> n\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000930"\n"
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000931"With no arguments, run a full collection. The optional argument\n"
932"may be an integer specifying which generation to collect. A ValueError\n"
933"is raised if the generation number is invalid.\n\n"
934"The number of unreachable objects is returned.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000935
936static PyObject *
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000937gc_collect(PyObject *self, PyObject *args, PyObject *kws)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000938{
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000939 static char *keywords[] = {"generation", NULL};
940 int genarg = NUM_GENERATIONS - 1;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000941 Py_ssize_t n;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000942
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000943 if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg))
944 return NULL;
945
946 else if (genarg < 0 || genarg >= NUM_GENERATIONS) {
947 PyErr_SetString(PyExc_ValueError, "invalid generation");
948 return NULL;
949 }
950
Tim Peters50c61d52003-04-06 01:50:50 +0000951 if (collecting)
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000952 n = 0; /* already collecting, don't do anything */
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000953 else {
954 collecting = 1;
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000955 n = collect(genarg);
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000956 collecting = 0;
957 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000958
Christian Heimes217cfd12007-12-02 14:31:20 +0000959 return PyLong_FromSsize_t(n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000960}
961
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000962PyDoc_STRVAR(gc_set_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000963"set_debug(flags) -> None\n"
964"\n"
965"Set the garbage collection debugging flags. Debugging information is\n"
966"written to sys.stderr.\n"
967"\n"
968"flags is an integer and can have the following bits turned on:\n"
969"\n"
970" DEBUG_STATS - Print statistics during collection.\n"
971" DEBUG_COLLECTABLE - Print collectable objects found.\n"
972" DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n"
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000973" DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000974" DEBUG_LEAK - Debug leaking programs (everything but STATS).\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000975
976static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000977gc_set_debug(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000978{
Neil Schemenauer7760cff2000-09-22 22:35:36 +0000979 if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000980 return NULL;
981
982 Py_INCREF(Py_None);
983 return Py_None;
984}
985
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000986PyDoc_STRVAR(gc_get_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000987"get_debug() -> flags\n"
988"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000989"Get the garbage collection debugging flags.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000990
991static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000992gc_get_debug(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000993{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000994 return Py_BuildValue("i", debug);
995}
996
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000997PyDoc_STRVAR(gc_set_thresh__doc__,
Neal Norwitz2a47c0f2002-01-29 00:53:41 +0000998"set_threshold(threshold0, [threshold1, threshold2]) -> None\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000999"\n"
1000"Sets the collection thresholds. Setting threshold0 to zero disables\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001001"collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001002
1003static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001004gc_set_thresh(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001005{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001006 int i;
1007 if (!PyArg_ParseTuple(args, "i|ii:set_threshold",
1008 &generations[0].threshold,
1009 &generations[1].threshold,
1010 &generations[2].threshold))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001011 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001012 for (i = 2; i < NUM_GENERATIONS; i++) {
1013 /* generations higher than 2 get the same threshold */
1014 generations[i].threshold = generations[2].threshold;
1015 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001016
1017 Py_INCREF(Py_None);
1018 return Py_None;
1019}
1020
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001021PyDoc_STRVAR(gc_get_thresh__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001022"get_threshold() -> (threshold0, threshold1, threshold2)\n"
1023"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001024"Return the current collection thresholds\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001025
1026static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001027gc_get_thresh(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001028{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001029 return Py_BuildValue("(iii)",
1030 generations[0].threshold,
1031 generations[1].threshold,
1032 generations[2].threshold);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001033}
1034
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001035PyDoc_STRVAR(gc_get_count__doc__,
1036"get_count() -> (count0, count1, count2)\n"
1037"\n"
1038"Return the current collection counts\n");
1039
1040static PyObject *
1041gc_get_count(PyObject *self, PyObject *noargs)
1042{
1043 return Py_BuildValue("(iii)",
1044 generations[0].count,
1045 generations[1].count,
1046 generations[2].count);
1047}
1048
Neil Schemenauer48c70342001-08-09 15:38:31 +00001049static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001050referrersvisit(PyObject* obj, PyObject *objs)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001051{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001052 Py_ssize_t i;
Martin v. Löwisc8fe77b2001-11-29 18:08:31 +00001053 for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
1054 if (PyTuple_GET_ITEM(objs, i) == obj)
1055 return 1;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001056 return 0;
1057}
1058
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001059static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001060gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001061{
1062 PyGC_Head *gc;
1063 PyObject *obj;
1064 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +00001065 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +00001066 obj = FROM_GC(gc);
Christian Heimes90aa7642007-12-19 02:45:37 +00001067 traverse = Py_TYPE(obj)->tp_traverse;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001068 if (obj == objs || obj == resultlist)
1069 continue;
Martin v. Löwis560da622001-11-24 09:24:51 +00001070 if (traverse(obj, (visitproc)referrersvisit, objs)) {
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001071 if (PyList_Append(resultlist, obj) < 0)
1072 return 0; /* error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001073 }
1074 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001075 return 1; /* no error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001076}
1077
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001078PyDoc_STRVAR(gc_get_referrers__doc__,
Martin v. Löwis560da622001-11-24 09:24:51 +00001079"get_referrers(*objs) -> list\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001080Return the list of objects that directly refer to any of objs.");
Neil Schemenauer48c70342001-08-09 15:38:31 +00001081
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001082static PyObject *
Martin v. Löwis560da622001-11-24 09:24:51 +00001083gc_get_referrers(PyObject *self, PyObject *args)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001084{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001085 int i;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001086 PyObject *result = PyList_New(0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001087 if (!result) return NULL;
1088
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001089 for (i = 0; i < NUM_GENERATIONS; i++) {
1090 if (!(gc_referrers_for(args, GEN_HEAD(i), result))) {
1091 Py_DECREF(result);
1092 return NULL;
1093 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001094 }
Neil Schemenauer48c70342001-08-09 15:38:31 +00001095 return result;
1096}
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001097
Tim Peters0f81ab62003-04-08 16:39:48 +00001098/* Append obj to list; return true if error (out of memory), false if OK. */
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001099static int
Tim Peters730f5532003-04-08 17:17:17 +00001100referentsvisit(PyObject *obj, PyObject *list)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001101{
Tim Peters0f81ab62003-04-08 16:39:48 +00001102 return PyList_Append(list, obj) < 0;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001103}
1104
Tim Peters730f5532003-04-08 17:17:17 +00001105PyDoc_STRVAR(gc_get_referents__doc__,
1106"get_referents(*objs) -> list\n\
Jeremy Hylton059b0942003-04-03 16:29:13 +00001107Return the list of objects that are directly referred to by objs.");
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001108
1109static PyObject *
Tim Peters730f5532003-04-08 17:17:17 +00001110gc_get_referents(PyObject *self, PyObject *args)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001111{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001112 Py_ssize_t i;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001113 PyObject *result = PyList_New(0);
Tim Peters0f81ab62003-04-08 16:39:48 +00001114
1115 if (result == NULL)
1116 return NULL;
1117
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001118 for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001119 traverseproc traverse;
Tim Peters93ad66d2003-04-05 17:15:44 +00001120 PyObject *obj = PyTuple_GET_ITEM(args, i);
Tim Peters0f81ab62003-04-08 16:39:48 +00001121
1122 if (! PyObject_IS_GC(obj))
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001123 continue;
Christian Heimes90aa7642007-12-19 02:45:37 +00001124 traverse = Py_TYPE(obj)->tp_traverse;
Tim Peters0f81ab62003-04-08 16:39:48 +00001125 if (! traverse)
1126 continue;
Tim Peters730f5532003-04-08 17:17:17 +00001127 if (traverse(obj, (visitproc)referentsvisit, result)) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001128 Py_DECREF(result);
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001129 return NULL;
Tim Peters0f81ab62003-04-08 16:39:48 +00001130 }
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001131 }
1132 return result;
1133}
1134
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001135PyDoc_STRVAR(gc_get_objects__doc__,
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001136"get_objects() -> [...]\n"
1137"\n"
1138"Return a list of objects tracked by the collector (excluding the list\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001139"returned).\n");
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001140
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001141static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001142gc_get_objects(PyObject *self, PyObject *noargs)
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001143{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001144 int i;
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001145 PyObject* result;
1146
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001147 result = PyList_New(0);
Tim Peters50c61d52003-04-06 01:50:50 +00001148 if (result == NULL)
Martin v. Löwisf8a6f242001-12-02 18:31:02 +00001149 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001150 for (i = 0; i < NUM_GENERATIONS; i++) {
1151 if (append_objects(result, GEN_HEAD(i))) {
1152 Py_DECREF(result);
1153 return NULL;
1154 }
Martin v. Löwis155aad12001-12-02 12:21:34 +00001155 }
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001156 return result;
1157}
1158
1159
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001160PyDoc_STRVAR(gc__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001161"This module provides access to the garbage collector for reference cycles.\n"
1162"\n"
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001163"enable() -- Enable automatic garbage collection.\n"
1164"disable() -- Disable automatic garbage collection.\n"
1165"isenabled() -- Returns true if automatic collection is enabled.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001166"collect() -- Do a full collection right now.\n"
Thomas Wouters89f507f2006-12-13 04:49:30 +00001167"get_count() -- Return the current collection counts.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001168"set_debug() -- Set debugging flags.\n"
1169"get_debug() -- Get debugging flags.\n"
1170"set_threshold() -- Set the collection thresholds.\n"
1171"get_threshold() -- Return the current the collection thresholds.\n"
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001172"get_objects() -- Return a list of all objects tracked by the collector.\n"
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001173"get_referrers() -- Return the list of objects that refer to an object.\n"
Tim Peters730f5532003-04-08 17:17:17 +00001174"get_referents() -- Return the list of objects that an object refers to.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001175
1176static PyMethodDef GcMethods[] = {
Tim Peters50c61d52003-04-06 01:50:50 +00001177 {"enable", gc_enable, METH_NOARGS, gc_enable__doc__},
1178 {"disable", gc_disable, METH_NOARGS, gc_disable__doc__},
1179 {"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001180 {"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001181 {"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001182 {"get_count", gc_get_count, METH_NOARGS, gc_get_count__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001183 {"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001184 {"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001185 {"collect", (PyCFunction)gc_collect,
1186 METH_VARARGS | METH_KEYWORDS, gc_collect__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001187 {"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__},
Martin v. Löwis560da622001-11-24 09:24:51 +00001188 {"get_referrers", gc_get_referrers, METH_VARARGS,
1189 gc_get_referrers__doc__},
Tim Peters730f5532003-04-08 17:17:17 +00001190 {"get_referents", gc_get_referents, METH_VARARGS,
1191 gc_get_referents__doc__},
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001192 {NULL, NULL} /* Sentinel */
1193};
1194
Martin v. Löwis1a214512008-06-11 05:26:20 +00001195static struct PyModuleDef gcmodule = {
1196 PyModuleDef_HEAD_INIT,
1197 "gc",
1198 gc__doc__,
1199 -1,
1200 GcMethods,
1201 NULL,
1202 NULL,
1203 NULL,
1204 NULL
1205};
1206
1207
Jason Tishler6bc06ec2003-09-04 11:59:50 +00001208PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001209PyInit_gc(void)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001210{
1211 PyObject *m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001212
Martin v. Löwis1a214512008-06-11 05:26:20 +00001213 m = PyModule_Create(&gcmodule);
1214
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001215 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001216 return NULL;
Tim Peters11558872003-04-06 23:30:52 +00001217
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001218 if (garbage == NULL) {
1219 garbage = PyList_New(0);
Tim Peters11558872003-04-06 23:30:52 +00001220 if (garbage == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001221 return NULL;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001222 }
Neil Schemenauer3b1cbf92005-06-18 17:37:06 +00001223 Py_INCREF(garbage);
Tim Peters11558872003-04-06 23:30:52 +00001224 if (PyModule_AddObject(m, "garbage", garbage) < 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001225 return NULL;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001226
1227 /* Importing can't be done in collect() because collect()
1228 * can be called via PyGC_Collect() in Py_Finalize().
1229 * This wouldn't be a problem, except that <initialized> is
1230 * reset to 0 before calling collect which trips up
1231 * the import and triggers an assertion.
1232 */
1233 if (tmod == NULL) {
Christian Heimes072c0f12008-01-03 23:01:04 +00001234 tmod = PyImport_ImportModuleNoBlock("time");
Thomas Wouters477c8d52006-05-27 19:21:47 +00001235 if (tmod == NULL)
1236 PyErr_Clear();
1237 }
1238
Martin v. Löwis1a214512008-06-11 05:26:20 +00001239#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return NULL
Tim Peters11558872003-04-06 23:30:52 +00001240 ADD_INT(DEBUG_STATS);
1241 ADD_INT(DEBUG_COLLECTABLE);
1242 ADD_INT(DEBUG_UNCOLLECTABLE);
Tim Peters11558872003-04-06 23:30:52 +00001243 ADD_INT(DEBUG_SAVEALL);
1244 ADD_INT(DEBUG_LEAK);
1245#undef ADD_INT
Martin v. Löwis1a214512008-06-11 05:26:20 +00001246 return m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001247}
1248
Guido van Rossume13ddc92003-04-17 17:29:22 +00001249/* API to invoke gc.collect() from C */
Neal Norwitz7b216c52006-03-04 20:01:53 +00001250Py_ssize_t
Guido van Rossume13ddc92003-04-17 17:29:22 +00001251PyGC_Collect(void)
1252{
Neal Norwitz7b216c52006-03-04 20:01:53 +00001253 Py_ssize_t n;
Guido van Rossume13ddc92003-04-17 17:29:22 +00001254
1255 if (collecting)
1256 n = 0; /* already collecting, don't do anything */
1257 else {
1258 collecting = 1;
1259 n = collect(NUM_GENERATIONS - 1);
1260 collecting = 0;
1261 }
1262
1263 return n;
1264}
1265
Neil Schemenauer43411b52001-08-30 00:05:51 +00001266/* for debugging */
Guido van Rossume13ddc92003-04-17 17:29:22 +00001267void
1268_PyGC_Dump(PyGC_Head *g)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001269{
1270 _PyObject_Dump(FROM_GC(g));
1271}
1272
Neil Schemenauer43411b52001-08-30 00:05:51 +00001273/* extension modules might be compiled with GC support so these
1274 functions must always be available */
1275
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001276#undef PyObject_GC_Track
1277#undef PyObject_GC_UnTrack
1278#undef PyObject_GC_Del
1279#undef _PyObject_GC_Malloc
1280
Neil Schemenauer43411b52001-08-30 00:05:51 +00001281void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001282PyObject_GC_Track(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001283{
1284 _PyObject_GC_TRACK(op);
1285}
1286
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001287/* for binary compatibility with 2.2 */
Neil Schemenauer43411b52001-08-30 00:05:51 +00001288void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001289_PyObject_GC_Track(PyObject *op)
1290{
1291 PyObject_GC_Track(op);
1292}
1293
1294void
1295PyObject_GC_UnTrack(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001296{
Tim Peters803526b2002-07-07 05:13:56 +00001297 /* Obscure: the Py_TRASHCAN mechanism requires that we be able to
1298 * call PyObject_GC_UnTrack twice on an object.
1299 */
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001300 if (IS_TRACKED(op))
Guido van Rossumff413af2002-03-28 20:34:59 +00001301 _PyObject_GC_UNTRACK(op);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001302}
1303
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001304/* for binary compatibility with 2.2 */
1305void
1306_PyObject_GC_UnTrack(PyObject *op)
1307{
1308 PyObject_GC_UnTrack(op);
1309}
1310
Neil Schemenauer43411b52001-08-30 00:05:51 +00001311PyObject *
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001312_PyObject_GC_Malloc(size_t basicsize)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001313{
1314 PyObject *op;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001315 PyGC_Head *g = (PyGC_Head *)PyObject_MALLOC(
1316 sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001317 if (g == NULL)
Jeremy Hylton8a135182002-06-06 23:23:55 +00001318 return PyErr_NoMemory();
Tim Petersea405632002-07-02 00:52:30 +00001319 g->gc.gc_refs = GC_UNTRACKED;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001320 generations[0].count++; /* number of allocated GC objects */
1321 if (generations[0].count > generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001322 enabled &&
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001323 generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001324 !collecting &&
1325 !PyErr_Occurred()) {
1326 collecting = 1;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001327 collect_generations();
Neil Schemenauer43411b52001-08-30 00:05:51 +00001328 collecting = 0;
1329 }
1330 op = FROM_GC(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001331 return op;
1332}
1333
1334PyObject *
1335_PyObject_GC_New(PyTypeObject *tp)
1336{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001337 PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
Tim Petersfa8efab2002-04-28 01:57:25 +00001338 if (op != NULL)
1339 op = PyObject_INIT(op, tp);
1340 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001341}
1342
1343PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001344_PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001345{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001346 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
1347 PyVarObject *op = (PyVarObject *) _PyObject_GC_Malloc(size);
Tim Petersfa8efab2002-04-28 01:57:25 +00001348 if (op != NULL)
1349 op = PyObject_INIT_VAR(op, tp, nitems);
1350 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001351}
1352
1353PyVarObject *
Martin v. Löwis41290682006-02-16 14:56:14 +00001354_PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001355{
Christian Heimes90aa7642007-12-19 02:45:37 +00001356 const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001357 PyGC_Head *g = AS_GC(op);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001358 g = (PyGC_Head *)PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001359 if (g == NULL)
1360 return (PyVarObject *)PyErr_NoMemory();
1361 op = (PyVarObject *) FROM_GC(g);
Christian Heimes90aa7642007-12-19 02:45:37 +00001362 Py_SIZE(op) = nitems;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001363 return op;
1364}
1365
1366void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001367PyObject_GC_Del(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001368{
Neil Schemenauer43411b52001-08-30 00:05:51 +00001369 PyGC_Head *g = AS_GC(op);
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001370 if (IS_TRACKED(op))
Neil Schemenauer43411b52001-08-30 00:05:51 +00001371 gc_list_remove(g);
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001372 if (generations[0].count > 0) {
1373 generations[0].count--;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001374 }
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001375 PyObject_FREE(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001376}
1377
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001378/* for binary compatibility with 2.2 */
1379#undef _PyObject_GC_Del
1380void
1381_PyObject_GC_Del(PyObject *op)
1382{
1383 PyObject_GC_Del(op);
1384}