blob: 872727d593206187a7057e3b28794cdbbf35f486 [file] [log] [blame]
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001/*
Tim Peters88396172002-06-30 17:56:40 +00002
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00003 Reference Cycle Garbage Collection
4 ==================================
5
Neil Schemenauerb2c2c9e2000-10-04 16:34:09 +00006 Neil Schemenauer <nas@arctrix.com>
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00007
8 Based on a post on the python-dev list. Ideas from Guido van Rossum,
9 Eric Tiedemann, and various others.
10
Neil Schemenauer43411b52001-08-30 00:05:51 +000011 http://www.arctrix.com/nas/python/gc/
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000012 http://www.python.org/pipermail/python-dev/2000-March/003869.html
13 http://www.python.org/pipermail/python-dev/2000-March/004010.html
14 http://www.python.org/pipermail/python-dev/2000-March/004022.html
15
16 For a highlevel view of the collection process, read the collect
17 function.
18
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000019*/
20
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000021#include "Python.h"
22
Neil Schemenauer43411b52001-08-30 00:05:51 +000023/* Get an object's GC head */
24#define AS_GC(o) ((PyGC_Head *)(o)-1)
25
26/* Get the object given the GC head */
27#define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
28
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000029/*** Global GC state ***/
30
Neil Schemenauer2880ae52002-05-04 05:35:20 +000031struct gc_generation {
32 PyGC_Head head;
33 int threshold; /* collection threshold */
34 int count; /* count of allocations or collections of younger
35 generations */
36};
37
38#define NUM_GENERATIONS 3
39#define GEN_HEAD(n) (&generations[n].head)
40
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000041/* linked lists of container objects */
Neil Schemenauer2880ae52002-05-04 05:35:20 +000042static struct gc_generation generations[NUM_GENERATIONS] = {
43 /* PyGC_Head, threshold, count */
44 {{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0},
45 {{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0},
46 {{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0},
47};
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000048
Neil Schemenauer2880ae52002-05-04 05:35:20 +000049PyGC_Head *_PyGC_generation0 = GEN_HEAD(0);
50
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +000051static int enabled = 1; /* automatic collection enabled? */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000052
Neil Schemenauer43411b52001-08-30 00:05:51 +000053/* true if we are currently running the collector */
Tim Petersbf384c22003-04-06 00:11:39 +000054static int collecting = 0;
Neil Schemenauer43411b52001-08-30 00:05:51 +000055
Tim Peters6fc13d92002-07-02 18:12:35 +000056/* list of uncollectable objects */
Tim Petersbf384c22003-04-06 00:11:39 +000057static PyObject *garbage = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000058
59/* Python string to use if unhandled exception occurs */
Tim Petersbf384c22003-04-06 00:11:39 +000060static PyObject *gc_str = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000061
Tim Peters93ad66d2003-04-05 17:15:44 +000062/* Python string used to look for __del__ attribute. */
63static PyObject *delstr = NULL;
Jeremy Hyltonce136e92003-04-04 19:59:06 +000064
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000065/* set for debugging information */
66#define DEBUG_STATS (1<<0) /* print collection statistics */
67#define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
68#define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */
69#define DEBUG_INSTANCES (1<<3) /* print instances */
70#define DEBUG_OBJECTS (1<<4) /* print other objects */
Neil Schemenauer544de1e2000-09-22 15:22:38 +000071#define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000072#define DEBUG_LEAK DEBUG_COLLECTABLE | \
73 DEBUG_UNCOLLECTABLE | \
74 DEBUG_INSTANCES | \
Neil Schemenauer544de1e2000-09-22 15:22:38 +000075 DEBUG_OBJECTS | \
76 DEBUG_SAVEALL
Jeremy Hyltonb709df32000-09-01 02:47:25 +000077static int debug;
Thomas Wouters477c8d52006-05-27 19:21:47 +000078static PyObject *tmod = NULL;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000079
Tim Peters6fc13d92002-07-02 18:12:35 +000080/*--------------------------------------------------------------------------
81gc_refs values.
Neil Schemenauer43411b52001-08-30 00:05:51 +000082
Tim Peters6fc13d92002-07-02 18:12:35 +000083Between collections, every gc'ed object has one of two gc_refs values:
84
85GC_UNTRACKED
86 The initial state; objects returned by PyObject_GC_Malloc are in this
87 state. The object doesn't live in any generation list, and its
88 tp_traverse slot must not be called.
89
90GC_REACHABLE
91 The object lives in some generation list, and its tp_traverse is safe to
92 call. An object transitions to GC_REACHABLE when PyObject_GC_Track
93 is called.
94
95During a collection, gc_refs can temporarily take on other states:
96
97>= 0
98 At the start of a collection, update_refs() copies the true refcount
99 to gc_refs, for each object in the generation being collected.
100 subtract_refs() then adjusts gc_refs so that it equals the number of
101 times an object is referenced directly from outside the generation
102 being collected.
Martin v. Löwis774348c2002-11-09 19:54:06 +0000103 gc_refs remains >= 0 throughout these steps.
Tim Peters6fc13d92002-07-02 18:12:35 +0000104
105GC_TENTATIVELY_UNREACHABLE
106 move_unreachable() then moves objects not reachable (whether directly or
107 indirectly) from outside the generation into an "unreachable" set.
108 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
109 again. Objects that are found to be unreachable have gc_refs set to
110 GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing
111 this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may
112 transition back to GC_REACHABLE.
113
114 Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates
115 for collection. If it's decided not to collect such an object (e.g.,
116 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
117----------------------------------------------------------------------------
118*/
Tim Petersea405632002-07-02 00:52:30 +0000119#define GC_UNTRACKED _PyGC_REFS_UNTRACKED
120#define GC_REACHABLE _PyGC_REFS_REACHABLE
121#define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE
Tim Peters19b74c72002-07-01 03:52:19 +0000122
Tim Peters6fc13d92002-07-02 18:12:35 +0000123#define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
Tim Peters19b74c72002-07-01 03:52:19 +0000124#define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE)
125#define IS_TENTATIVELY_UNREACHABLE(o) ( \
126 (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE)
Neil Schemenauera2b11ec2002-05-21 15:53:24 +0000127
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000128/*** list functions ***/
129
130static void
131gc_list_init(PyGC_Head *list)
132{
Tim Peters9e4ca102001-10-11 18:31:31 +0000133 list->gc.gc_prev = list;
134 list->gc.gc_next = list;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000135}
136
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000137static int
138gc_list_is_empty(PyGC_Head *list)
139{
140 return (list->gc.gc_next == list);
141}
142
Tim Peterse2d59182004-11-01 01:39:08 +0000143#if 0
144/* This became unused after gc_list_move() was introduced. */
145/* Append `node` to `list`. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000146static void
147gc_list_append(PyGC_Head *node, PyGC_Head *list)
148{
Tim Peters9e4ca102001-10-11 18:31:31 +0000149 node->gc.gc_next = list;
150 node->gc.gc_prev = list->gc.gc_prev;
151 node->gc.gc_prev->gc.gc_next = node;
152 list->gc.gc_prev = node;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000153}
Tim Peterse2d59182004-11-01 01:39:08 +0000154#endif
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000155
Tim Peterse2d59182004-11-01 01:39:08 +0000156/* Remove `node` from the gc list it's currently in. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000157static void
158gc_list_remove(PyGC_Head *node)
159{
Tim Peters9e4ca102001-10-11 18:31:31 +0000160 node->gc.gc_prev->gc.gc_next = node->gc.gc_next;
161 node->gc.gc_next->gc.gc_prev = node->gc.gc_prev;
162 node->gc.gc_next = NULL; /* object is not currently tracked */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000163}
164
Tim Peterse2d59182004-11-01 01:39:08 +0000165/* Move `node` from the gc list it's currently in (which is not explicitly
166 * named here) to the end of `list`. This is semantically the same as
167 * gc_list_remove(node) followed by gc_list_append(node, list).
168 */
169static void
170gc_list_move(PyGC_Head *node, PyGC_Head *list)
171{
Tim Petersbc1d1b82004-11-01 16:39:57 +0000172 PyGC_Head *new_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000173 PyGC_Head *current_prev = node->gc.gc_prev;
174 PyGC_Head *current_next = node->gc.gc_next;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000175 /* Unlink from current list. */
Tim Peterse2d59182004-11-01 01:39:08 +0000176 current_prev->gc.gc_next = current_next;
177 current_next->gc.gc_prev = current_prev;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000178 /* Relink at end of new list. */
179 new_prev = node->gc.gc_prev = list->gc.gc_prev;
Tim Peterse2d59182004-11-01 01:39:08 +0000180 new_prev->gc.gc_next = list->gc.gc_prev = node;
Tim Petersbc1d1b82004-11-01 16:39:57 +0000181 node->gc.gc_next = list;
Tim Peterse2d59182004-11-01 01:39:08 +0000182}
183
184/* append list `from` onto list `to`; `from` becomes an empty list */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000185static void
186gc_list_merge(PyGC_Head *from, PyGC_Head *to)
187{
188 PyGC_Head *tail;
Tim Peterse2d59182004-11-01 01:39:08 +0000189 assert(from != to);
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000190 if (!gc_list_is_empty(from)) {
Tim Peters9e4ca102001-10-11 18:31:31 +0000191 tail = to->gc.gc_prev;
192 tail->gc.gc_next = from->gc.gc_next;
193 tail->gc.gc_next->gc.gc_prev = tail;
194 to->gc.gc_prev = from->gc.gc_prev;
195 to->gc.gc_prev->gc.gc_next = to;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000196 }
197 gc_list_init(from);
198}
199
Neal Norwitz7b216c52006-03-04 20:01:53 +0000200static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000201gc_list_size(PyGC_Head *list)
202{
203 PyGC_Head *gc;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000204 Py_ssize_t n = 0;
Tim Peters9e4ca102001-10-11 18:31:31 +0000205 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000206 n++;
207 }
208 return n;
209}
210
Tim Peters259272b2003-04-06 19:41:39 +0000211/* Append objects in a GC list to a Python list.
212 * Return 0 if all OK, < 0 if error (out of memory for list).
213 */
214static int
215append_objects(PyObject *py_list, PyGC_Head *gc_list)
216{
217 PyGC_Head *gc;
218 for (gc = gc_list->gc.gc_next; gc != gc_list; gc = gc->gc.gc_next) {
219 PyObject *op = FROM_GC(gc);
220 if (op != py_list) {
221 if (PyList_Append(py_list, op)) {
222 return -1; /* exception */
223 }
224 }
225 }
226 return 0;
227}
228
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000229/*** end of list stuff ***/
230
231
Tim Peters19b74c72002-07-01 03:52:19 +0000232/* Set all gc_refs = ob_refcnt. After this, gc_refs is > 0 for all objects
233 * in containers, and is GC_REACHABLE for all tracked gc objects not in
234 * containers.
Tim Peters88396172002-06-30 17:56:40 +0000235 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000236static void
237update_refs(PyGC_Head *containers)
238{
Tim Peters9e4ca102001-10-11 18:31:31 +0000239 PyGC_Head *gc = containers->gc.gc_next;
Tim Petersea405632002-07-02 00:52:30 +0000240 for (; gc != containers; gc = gc->gc.gc_next) {
241 assert(gc->gc.gc_refs == GC_REACHABLE);
Tim Peters9e4ca102001-10-11 18:31:31 +0000242 gc->gc.gc_refs = FROM_GC(gc)->ob_refcnt;
Tim Peters780c4972003-11-14 00:01:17 +0000243 /* Python's cyclic gc should never see an incoming refcount
244 * of 0: if something decref'ed to 0, it should have been
245 * deallocated immediately at that time.
246 * Possible cause (if the assert triggers): a tp_dealloc
247 * routine left a gc-aware object tracked during its teardown
248 * phase, and did something-- or allowed something to happen --
249 * that called back into Python. gc can trigger then, and may
250 * see the still-tracked dying object. Before this assert
251 * was added, such mistakes went on to allow gc to try to
252 * delete the object again. In a debug build, that caused
253 * a mysterious segfault, when _Py_ForgetReference tried
254 * to remove the object from the doubly-linked list of all
255 * objects a second time. In a release build, an actual
256 * double deallocation occurred, which leads to corruption
257 * of the allocator's internal bookkeeping pointers. That's
258 * so serious that maybe this should be a release-build
259 * check instead of an assert?
260 */
261 assert(gc->gc.gc_refs != 0);
Tim Petersea405632002-07-02 00:52:30 +0000262 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000263}
264
Tim Peters19b74c72002-07-01 03:52:19 +0000265/* A traversal callback for subtract_refs. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000266static int
267visit_decref(PyObject *op, void *data)
268{
Tim Peters93cd83e2002-06-30 21:31:03 +0000269 assert(op != NULL);
Tim Peters19b74c72002-07-01 03:52:19 +0000270 if (PyObject_IS_GC(op)) {
271 PyGC_Head *gc = AS_GC(op);
272 /* We're only interested in gc_refs for objects in the
273 * generation being collected, which can be recognized
274 * because only they have positive gc_refs.
275 */
Tim Petersaab713b2002-07-02 22:15:28 +0000276 assert(gc->gc.gc_refs != 0); /* else refcount was too small */
Tim Peters19b74c72002-07-01 03:52:19 +0000277 if (gc->gc.gc_refs > 0)
278 gc->gc.gc_refs--;
279 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000280 return 0;
281}
282
Tim Peters19b74c72002-07-01 03:52:19 +0000283/* Subtract internal references from gc_refs. After this, gc_refs is >= 0
284 * for all objects in containers, and is GC_REACHABLE for all tracked gc
285 * objects not in containers. The ones with gc_refs > 0 are directly
286 * reachable from outside containers, and so can't be collected.
287 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000288static void
289subtract_refs(PyGC_Head *containers)
290{
291 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000292 PyGC_Head *gc = containers->gc.gc_next;
293 for (; gc != containers; gc=gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000294 traverse = FROM_GC(gc)->ob_type->tp_traverse;
295 (void) traverse(FROM_GC(gc),
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000296 (visitproc)visit_decref,
297 NULL);
298 }
299}
300
Tim Peters19b74c72002-07-01 03:52:19 +0000301/* A traversal callback for move_unreachable. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000302static int
Tim Peters19b74c72002-07-01 03:52:19 +0000303visit_reachable(PyObject *op, PyGC_Head *reachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000304{
Tim Petersea405632002-07-02 00:52:30 +0000305 if (PyObject_IS_GC(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000306 PyGC_Head *gc = AS_GC(op);
Martin v. Löwis6db0e002006-03-01 16:56:25 +0000307 const Py_ssize_t gc_refs = gc->gc.gc_refs;
Tim Peters19b74c72002-07-01 03:52:19 +0000308
309 if (gc_refs == 0) {
310 /* This is in move_unreachable's 'young' list, but
311 * the traversal hasn't yet gotten to it. All
312 * we need to do is tell move_unreachable that it's
313 * reachable.
314 */
315 gc->gc.gc_refs = 1;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000316 }
Tim Peters19b74c72002-07-01 03:52:19 +0000317 else if (gc_refs == GC_TENTATIVELY_UNREACHABLE) {
318 /* This had gc_refs = 0 when move_unreachable got
319 * to it, but turns out it's reachable after all.
320 * Move it back to move_unreachable's 'young' list,
321 * and move_unreachable will eventually get to it
322 * again.
323 */
Tim Peterse2d59182004-11-01 01:39:08 +0000324 gc_list_move(gc, reachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000325 gc->gc.gc_refs = 1;
326 }
327 /* Else there's nothing to do.
328 * If gc_refs > 0, it must be in move_unreachable's 'young'
329 * list, and move_unreachable will eventually get to it.
330 * If gc_refs == GC_REACHABLE, it's either in some other
331 * generation so we don't care about it, or move_unreachable
Tim Peters6fc13d92002-07-02 18:12:35 +0000332 * already dealt with it.
Tim Petersea405632002-07-02 00:52:30 +0000333 * If gc_refs == GC_UNTRACKED, it must be ignored.
Tim Peters19b74c72002-07-01 03:52:19 +0000334 */
Tim Petersea405632002-07-02 00:52:30 +0000335 else {
336 assert(gc_refs > 0
337 || gc_refs == GC_REACHABLE
338 || gc_refs == GC_UNTRACKED);
339 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000340 }
341 return 0;
342}
343
Tim Peters19b74c72002-07-01 03:52:19 +0000344/* Move the unreachable objects from young to unreachable. After this,
345 * all objects in young have gc_refs = GC_REACHABLE, and all objects in
346 * unreachable have gc_refs = GC_TENTATIVELY_UNREACHABLE. All tracked
347 * gc objects not in young or unreachable still have gc_refs = GC_REACHABLE.
348 * All objects in young after this are directly or indirectly reachable
349 * from outside the original young; and all objects in unreachable are
350 * not.
Tim Peters88396172002-06-30 17:56:40 +0000351 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000352static void
Tim Peters19b74c72002-07-01 03:52:19 +0000353move_unreachable(PyGC_Head *young, PyGC_Head *unreachable)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000354{
Tim Peters19b74c72002-07-01 03:52:19 +0000355 PyGC_Head *gc = young->gc.gc_next;
356
357 /* Invariants: all objects "to the left" of us in young have gc_refs
358 * = GC_REACHABLE, and are indeed reachable (directly or indirectly)
359 * from outside the young list as it was at entry. All other objects
360 * from the original young "to the left" of us are in unreachable now,
361 * and have gc_refs = GC_TENTATIVELY_UNREACHABLE. All objects to the
362 * left of us in 'young' now have been scanned, and no objects here
363 * or to the right have been scanned yet.
364 */
365
366 while (gc != young) {
367 PyGC_Head *next;
368
Tim Peters6fc13d92002-07-02 18:12:35 +0000369 if (gc->gc.gc_refs) {
370 /* gc is definitely reachable from outside the
371 * original 'young'. Mark it as such, and traverse
372 * its pointers to find any other objects that may
373 * be directly reachable from it. Note that the
374 * call to tp_traverse may append objects to young,
375 * so we have to wait until it returns to determine
376 * the next object to visit.
377 */
378 PyObject *op = FROM_GC(gc);
379 traverseproc traverse = op->ob_type->tp_traverse;
380 assert(gc->gc.gc_refs > 0);
381 gc->gc.gc_refs = GC_REACHABLE;
382 (void) traverse(op,
383 (visitproc)visit_reachable,
384 (void *)young);
385 next = gc->gc.gc_next;
386 }
387 else {
Tim Peters19b74c72002-07-01 03:52:19 +0000388 /* This *may* be unreachable. To make progress,
389 * assume it is. gc isn't directly reachable from
390 * any object we've already traversed, but may be
391 * reachable from an object we haven't gotten to yet.
392 * visit_reachable will eventually move gc back into
393 * young if that's so, and we'll see it again.
394 */
395 next = gc->gc.gc_next;
Tim Peterse2d59182004-11-01 01:39:08 +0000396 gc_list_move(gc, unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000397 gc->gc.gc_refs = GC_TENTATIVELY_UNREACHABLE;
398 }
Tim Peters19b74c72002-07-01 03:52:19 +0000399 gc = next;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000400 }
401}
402
Tim Peters86b993b2003-04-05 17:35:54 +0000403/* Return true if object has a finalization method.
404 * CAUTION: An instance of an old-style class has to be checked for a
Tim Petersf6b80452003-04-07 19:21:15 +0000405 *__del__ method, and earlier versions of this used to call PyObject_HasAttr,
406 * which in turn could call the class's __getattr__ hook (if any). That
407 * could invoke arbitrary Python code, mutating the object graph in arbitrary
408 * ways, and that was the source of some excruciatingly subtle bugs.
Tim Peters86b993b2003-04-05 17:35:54 +0000409 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000410static int
411has_finalizer(PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000412{
Tim Peters86b993b2003-04-05 17:35:54 +0000413 if (PyInstance_Check(op)) {
Tim Peters86b993b2003-04-05 17:35:54 +0000414 assert(delstr != NULL);
Tim Petersf6b80452003-04-07 19:21:15 +0000415 return _PyInstance_Lookup(op, delstr) != NULL;
Tim Peters86b993b2003-04-05 17:35:54 +0000416 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000417 else if (PyType_HasFeature(op->ob_type, Py_TPFLAGS_HEAPTYPE))
Tim Peters86b993b2003-04-05 17:35:54 +0000418 return op->ob_type->tp_del != NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000419 else if (PyGen_CheckExact(op))
420 return PyGen_NeedsFinalizing((PyGenObject *)op);
421 else
422 return 0;
Neil Schemenauera765c122001-11-01 17:35:23 +0000423}
424
Tim Petersead8b7a2004-10-30 23:09:22 +0000425/* Move the objects in unreachable with __del__ methods into `finalizers`.
426 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
427 * objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE.
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000428 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000429static void
Tim Petersead8b7a2004-10-30 23:09:22 +0000430move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
Neil Schemenauera765c122001-11-01 17:35:23 +0000431{
Tim Petersead8b7a2004-10-30 23:09:22 +0000432 PyGC_Head *gc;
433 PyGC_Head *next;
Tim Petersf6b80452003-04-07 19:21:15 +0000434
Tim Petersead8b7a2004-10-30 23:09:22 +0000435 /* March over unreachable. Move objects with finalizers into
436 * `finalizers`.
437 */
438 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000439 PyObject *op = FROM_GC(gc);
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000440
Tim Petersf6ae7a42003-04-05 18:40:50 +0000441 assert(IS_TENTATIVELY_UNREACHABLE(op));
Tim Petersead8b7a2004-10-30 23:09:22 +0000442 next = gc->gc.gc_next;
Tim Petersf6ae7a42003-04-05 18:40:50 +0000443
Tim Petersf6b80452003-04-07 19:21:15 +0000444 if (has_finalizer(op)) {
Tim Peterse2d59182004-11-01 01:39:08 +0000445 gc_list_move(gc, finalizers);
Tim Petersf6b80452003-04-07 19:21:15 +0000446 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000447 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000448 }
449}
450
Tim Peters19b74c72002-07-01 03:52:19 +0000451/* A traversal callback for move_finalizer_reachable. */
452static int
453visit_move(PyObject *op, PyGC_Head *tolist)
454{
455 if (PyObject_IS_GC(op)) {
Tim Petersea405632002-07-02 00:52:30 +0000456 if (IS_TENTATIVELY_UNREACHABLE(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000457 PyGC_Head *gc = AS_GC(op);
Tim Peterse2d59182004-11-01 01:39:08 +0000458 gc_list_move(gc, tolist);
Tim Peters19b74c72002-07-01 03:52:19 +0000459 gc->gc.gc_refs = GC_REACHABLE;
460 }
461 }
462 return 0;
463}
464
465/* Move objects that are reachable from finalizers, from the unreachable set
Tim Petersf6b80452003-04-07 19:21:15 +0000466 * into finalizers set.
Tim Peters19b74c72002-07-01 03:52:19 +0000467 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000468static void
Tim Petersf6b80452003-04-07 19:21:15 +0000469move_finalizer_reachable(PyGC_Head *finalizers)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000470{
471 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000472 PyGC_Head *gc = finalizers->gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000473 for (; gc != finalizers; gc = gc->gc.gc_next) {
474 /* Note that the finalizers list may grow during this. */
Neil Schemenauer43411b52001-08-30 00:05:51 +0000475 traverse = FROM_GC(gc)->ob_type->tp_traverse;
Tim Peters88396172002-06-30 17:56:40 +0000476 (void) traverse(FROM_GC(gc),
Tim Petersbf384c22003-04-06 00:11:39 +0000477 (visitproc)visit_move,
Tim Petersf6b80452003-04-07 19:21:15 +0000478 (void *)finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000479 }
480}
481
Tim Petersead8b7a2004-10-30 23:09:22 +0000482/* Clear all weakrefs to unreachable objects, and if such a weakref has a
483 * callback, invoke it if necessary. Note that it's possible for such
484 * weakrefs to be outside the unreachable set -- indeed, those are precisely
485 * the weakrefs whose callbacks must be invoked. See gc_weakref.txt for
486 * overview & some details. Some weakrefs with callbacks may be reclaimed
487 * directly by this routine; the number reclaimed is the return value. Other
488 * weakrefs with callbacks may be moved into the `old` generation. Objects
489 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
490 * unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns,
491 * no object in `unreachable` is weakly referenced anymore.
Tim Peters403a2032003-11-20 21:21:46 +0000492 */
493static int
Tim Petersead8b7a2004-10-30 23:09:22 +0000494handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
Tim Peters403a2032003-11-20 21:21:46 +0000495{
Tim Petersead8b7a2004-10-30 23:09:22 +0000496 PyGC_Head *gc;
497 PyObject *op; /* generally FROM_GC(gc) */
498 PyWeakReference *wr; /* generally a cast of op */
Tim Petersead8b7a2004-10-30 23:09:22 +0000499 PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */
Tim Petersead8b7a2004-10-30 23:09:22 +0000500 PyGC_Head *next;
Tim Peters403a2032003-11-20 21:21:46 +0000501 int num_freed = 0;
502
Tim Petersead8b7a2004-10-30 23:09:22 +0000503 gc_list_init(&wrcb_to_call);
Tim Peters403a2032003-11-20 21:21:46 +0000504
Tim Petersead8b7a2004-10-30 23:09:22 +0000505 /* Clear all weakrefs to the objects in unreachable. If such a weakref
506 * also has a callback, move it into `wrcb_to_call` if the callback
Tim Peterscc2a8662004-10-31 22:12:43 +0000507 * needs to be invoked. Note that we cannot invoke any callbacks until
508 * all weakrefs to unreachable objects are cleared, lest the callback
509 * resurrect an unreachable object via a still-active weakref. We
510 * make another pass over wrcb_to_call, invoking callbacks, after this
511 * pass completes.
Tim Petersead8b7a2004-10-30 23:09:22 +0000512 */
513 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
514 PyWeakReference **wrlist;
515
516 op = FROM_GC(gc);
517 assert(IS_TENTATIVELY_UNREACHABLE(op));
518 next = gc->gc.gc_next;
519
520 if (! PyType_SUPPORTS_WEAKREFS(op->ob_type))
521 continue;
522
523 /* It supports weakrefs. Does it have any? */
524 wrlist = (PyWeakReference **)
525 PyObject_GET_WEAKREFS_LISTPTR(op);
526
527 /* `op` may have some weakrefs. March over the list, clear
528 * all the weakrefs, and move the weakrefs with callbacks
Tim Peterscc2a8662004-10-31 22:12:43 +0000529 * that must be called into wrcb_to_call.
Tim Petersead8b7a2004-10-30 23:09:22 +0000530 */
531 for (wr = *wrlist; wr != NULL; wr = *wrlist) {
532 PyGC_Head *wrasgc; /* AS_GC(wr) */
533
534 /* _PyWeakref_ClearRef clears the weakref but leaves
535 * the callback pointer intact. Obscure: it also
536 * changes *wrlist.
537 */
538 assert(wr->wr_object == op);
539 _PyWeakref_ClearRef(wr);
540 assert(wr->wr_object == Py_None);
541 if (wr->wr_callback == NULL)
542 continue; /* no callback */
543
544 /* Headache time. `op` is going away, and is weakly referenced by
545 * `wr`, which has a callback. Should the callback be invoked? If wr
546 * is also trash, no:
547 *
548 * 1. There's no need to call it. The object and the weakref are
549 * both going away, so it's legitimate to pretend the weakref is
550 * going away first. The user has to ensure a weakref outlives its
551 * referent if they want a guarantee that the wr callback will get
552 * invoked.
553 *
554 * 2. It may be catastrophic to call it. If the callback is also in
555 * cyclic trash (CT), then although the CT is unreachable from
556 * outside the current generation, CT may be reachable from the
557 * callback. Then the callback could resurrect insane objects.
558 *
559 * Since the callback is never needed and may be unsafe in this case,
Tim Peterscc2a8662004-10-31 22:12:43 +0000560 * wr is simply left in the unreachable set. Note that because we
561 * already called _PyWeakref_ClearRef(wr), its callback will never
562 * trigger.
Tim Petersead8b7a2004-10-30 23:09:22 +0000563 *
564 * OTOH, if wr isn't part of CT, we should invoke the callback: the
565 * weakref outlived the trash. Note that since wr isn't CT in this
566 * case, its callback can't be CT either -- wr acted as an external
567 * root to this generation, and therefore its callback did too. So
568 * nothing in CT is reachable from the callback either, so it's hard
569 * to imagine how calling it later could create a problem for us. wr
570 * is moved to wrcb_to_call in this case.
Tim Petersead8b7a2004-10-30 23:09:22 +0000571 */
Tim Peterscc2a8662004-10-31 22:12:43 +0000572 if (IS_TENTATIVELY_UNREACHABLE(wr))
573 continue;
574 assert(IS_REACHABLE(wr));
575
Tim Petersead8b7a2004-10-30 23:09:22 +0000576 /* Create a new reference so that wr can't go away
577 * before we can process it again.
578 */
579 Py_INCREF(wr);
580
Tim Peterscc2a8662004-10-31 22:12:43 +0000581 /* Move wr to wrcb_to_call, for the next pass. */
Tim Petersead8b7a2004-10-30 23:09:22 +0000582 wrasgc = AS_GC(wr);
Tim Peterscc2a8662004-10-31 22:12:43 +0000583 assert(wrasgc != next); /* wrasgc is reachable, but
584 next isn't, so they can't
585 be the same */
Tim Peterse2d59182004-11-01 01:39:08 +0000586 gc_list_move(wrasgc, &wrcb_to_call);
Tim Petersead8b7a2004-10-30 23:09:22 +0000587 }
588 }
589
Tim Peterscc2a8662004-10-31 22:12:43 +0000590 /* Invoke the callbacks we decided to honor. It's safe to invoke them
591 * because they can't reference unreachable objects.
Tim Petersead8b7a2004-10-30 23:09:22 +0000592 */
593 while (! gc_list_is_empty(&wrcb_to_call)) {
594 PyObject *temp;
595 PyObject *callback;
596
597 gc = wrcb_to_call.gc.gc_next;
598 op = FROM_GC(gc);
599 assert(IS_REACHABLE(op));
600 assert(PyWeakref_Check(op));
601 wr = (PyWeakReference *)op;
602 callback = wr->wr_callback;
603 assert(callback != NULL);
604
605 /* copy-paste of weakrefobject.c's handle_callback() */
Thomas Wouters477c8d52006-05-27 19:21:47 +0000606 temp = PyObject_CallFunctionObjArgs(callback, wr, NULL);
Tim Petersead8b7a2004-10-30 23:09:22 +0000607 if (temp == NULL)
608 PyErr_WriteUnraisable(callback);
609 else
610 Py_DECREF(temp);
611
612 /* Give up the reference we created in the first pass. When
613 * op's refcount hits 0 (which it may or may not do right now),
Tim Peterscc2a8662004-10-31 22:12:43 +0000614 * op's tp_dealloc will decref op->wr_callback too. Note
615 * that the refcount probably will hit 0 now, and because this
616 * weakref was reachable to begin with, gc didn't already
617 * add it to its count of freed objects. Example: a reachable
618 * weak value dict maps some key to this reachable weakref.
619 * The callback removes this key->weakref mapping from the
620 * dict, leaving no other references to the weakref (excepting
621 * ours).
Tim Petersead8b7a2004-10-30 23:09:22 +0000622 */
623 Py_DECREF(op);
624 if (wrcb_to_call.gc.gc_next == gc) {
625 /* object is still alive -- move it */
Tim Peterse2d59182004-11-01 01:39:08 +0000626 gc_list_move(gc, old);
Tim Petersead8b7a2004-10-30 23:09:22 +0000627 }
628 else
629 ++num_freed;
630 }
631
Tim Peters403a2032003-11-20 21:21:46 +0000632 return num_freed;
633}
634
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000635static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000636debug_instance(char *msg, PyInstanceObject *inst)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000637{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000638 char *cname;
Neil Schemenauera765c122001-11-01 17:35:23 +0000639 /* simple version of instance_repr */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000640 PyObject *classname = inst->in_class->cl_name;
641 if (classname != NULL && PyString_Check(classname))
642 cname = PyString_AsString(classname);
643 else
644 cname = "?";
Jeremy Hylton06257772000-08-31 15:10:24 +0000645 PySys_WriteStderr("gc: %.100s <%.100s instance at %p>\n",
646 msg, cname, inst);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000647}
648
649static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000650debug_cycle(char *msg, PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000651{
652 if ((debug & DEBUG_INSTANCES) && PyInstance_Check(op)) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000653 debug_instance(msg, (PyInstanceObject *)op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000654 }
655 else if (debug & DEBUG_OBJECTS) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000656 PySys_WriteStderr("gc: %.100s <%.100s %p>\n",
657 msg, op->ob_type->tp_name, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000658 }
659}
660
Tim Petersbf384c22003-04-06 00:11:39 +0000661/* Handle uncollectable garbage (cycles with finalizers, and stuff reachable
662 * only from such cycles).
Tim Petersf6b80452003-04-07 19:21:15 +0000663 * If DEBUG_SAVEALL, all objects in finalizers are appended to the module
664 * garbage list (a Python list), else only the objects in finalizers with
665 * __del__ methods are appended to garbage. All objects in finalizers are
666 * merged into the old list regardless.
Tim Peters259272b2003-04-06 19:41:39 +0000667 * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list).
668 * The finalizers list is made empty on a successful return.
Tim Petersbf384c22003-04-06 00:11:39 +0000669 */
Tim Peters259272b2003-04-06 19:41:39 +0000670static int
Tim Petersf6b80452003-04-07 19:21:15 +0000671handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000672{
Tim Petersf6b80452003-04-07 19:21:15 +0000673 PyGC_Head *gc = finalizers->gc.gc_next;
674
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000675 if (garbage == NULL) {
676 garbage = PyList_New(0);
Tim Petersbf384c22003-04-06 00:11:39 +0000677 if (garbage == NULL)
678 Py_FatalError("gc couldn't create gc.garbage list");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000679 }
Tim Petersf6b80452003-04-07 19:21:15 +0000680 for (; gc != finalizers; gc = gc->gc.gc_next) {
681 PyObject *op = FROM_GC(gc);
682
683 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) {
684 if (PyList_Append(garbage, op) < 0)
685 return -1;
686 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000687 }
Tim Petersf6b80452003-04-07 19:21:15 +0000688
Tim Peters259272b2003-04-06 19:41:39 +0000689 gc_list_merge(finalizers, old);
690 return 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000691}
692
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000693/* Break reference cycles by clearing the containers involved. This is
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000694 * tricky business as the lists can be changing and we don't know which
Tim Peters19b74c72002-07-01 03:52:19 +0000695 * objects may be freed. It is possible I screwed something up here.
696 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000697static void
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000698delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000699{
700 inquiry clear;
701
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000702 while (!gc_list_is_empty(collectable)) {
703 PyGC_Head *gc = collectable->gc.gc_next;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000704 PyObject *op = FROM_GC(gc);
Tim Peters88396172002-06-30 17:56:40 +0000705
Tim Peters19b74c72002-07-01 03:52:19 +0000706 assert(IS_TENTATIVELY_UNREACHABLE(op));
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000707 if (debug & DEBUG_SAVEALL) {
708 PyList_Append(garbage, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000709 }
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000710 else {
711 if ((clear = op->ob_type->tp_clear) != NULL) {
712 Py_INCREF(op);
Jeremy Hylton8a135182002-06-06 23:23:55 +0000713 clear(op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000714 Py_DECREF(op);
715 }
716 }
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000717 if (collectable->gc.gc_next == gc) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000718 /* object is still alive, move it, it may die later */
Tim Peterse2d59182004-11-01 01:39:08 +0000719 gc_list_move(gc, old);
Tim Peters19b74c72002-07-01 03:52:19 +0000720 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000721 }
722 }
723}
724
725/* This is the main function. Read this to understand how the
726 * collection process works. */
Neal Norwitz7b216c52006-03-04 20:01:53 +0000727static Py_ssize_t
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000728collect(int generation)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000729{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000730 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000731 Py_ssize_t m = 0; /* # objects collected */
732 Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000733 PyGC_Head *young; /* the generation we are examining */
734 PyGC_Head *old; /* next older generation */
Tim Peters403a2032003-11-20 21:21:46 +0000735 PyGC_Head unreachable; /* non-problematic unreachable trash */
736 PyGC_Head finalizers; /* objects with, & reachable from, __del__ */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000737 PyGC_Head *gc;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000738 double t1 = 0.0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000739
Tim Peters93ad66d2003-04-05 17:15:44 +0000740 if (delstr == NULL) {
741 delstr = PyString_InternFromString("__del__");
742 if (delstr == NULL)
743 Py_FatalError("gc couldn't allocate \"__del__\"");
744 }
745
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000746 if (debug & DEBUG_STATS) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000747 if (tmod != NULL) {
748 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
749 if (f == NULL) {
750 PyErr_Clear();
751 }
752 else {
753 t1 = PyFloat_AsDouble(f);
754 Py_DECREF(f);
755 }
756 }
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000757 PySys_WriteStderr("gc: collecting generation %d...\n",
758 generation);
759 PySys_WriteStderr("gc: objects in each generation:");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000760 for (i = 0; i < NUM_GENERATIONS; i++)
761 PySys_WriteStderr(" %" PY_FORMAT_SIZE_T "d",
762 gc_list_size(GEN_HEAD(i)));
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000763 PySys_WriteStderr("\n");
764 }
765
766 /* update collection and allocation counters */
767 if (generation+1 < NUM_GENERATIONS)
768 generations[generation+1].count += 1;
769 for (i = 0; i <= generation; i++)
Neil Schemenauerc9051642002-06-28 19:16:04 +0000770 generations[i].count = 0;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000771
772 /* merge younger generations with one we are currently collecting */
773 for (i = 0; i < generation; i++) {
774 gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation));
775 }
776
777 /* handy references */
778 young = GEN_HEAD(generation);
Tim Peters19b74c72002-07-01 03:52:19 +0000779 if (generation < NUM_GENERATIONS-1)
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000780 old = GEN_HEAD(generation+1);
Tim Peters19b74c72002-07-01 03:52:19 +0000781 else
782 old = young;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000783
784 /* Using ob_refcnt and gc_refs, calculate which objects in the
Tim Petersead8b7a2004-10-30 23:09:22 +0000785 * container set are reachable from outside the set (i.e., have a
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000786 * refcount greater than 0 when all the references within the
Tim Petersead8b7a2004-10-30 23:09:22 +0000787 * set are taken into account).
Tim Peters19b74c72002-07-01 03:52:19 +0000788 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000789 update_refs(young);
790 subtract_refs(young);
791
Tim Peters19b74c72002-07-01 03:52:19 +0000792 /* Leave everything reachable from outside young in young, and move
793 * everything else (in young) to unreachable.
794 * NOTE: This used to move the reachable objects into a reachable
795 * set instead. But most things usually turn out to be reachable,
796 * so it's more efficient to move the unreachable things.
797 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000798 gc_list_init(&unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000799 move_unreachable(young, &unreachable);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000800
Tim Peters19b74c72002-07-01 03:52:19 +0000801 /* Move reachable objects to next generation. */
802 if (young != old)
803 gc_list_merge(young, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000804
Tim Peters19b74c72002-07-01 03:52:19 +0000805 /* All objects in unreachable are trash, but objects reachable from
806 * finalizers can't safely be deleted. Python programmers should take
807 * care not to create such things. For Python, finalizers means
Tim Peters403a2032003-11-20 21:21:46 +0000808 * instance objects with __del__ methods. Weakrefs with callbacks
Tim Petersead8b7a2004-10-30 23:09:22 +0000809 * can also call arbitrary Python code but they will be dealt with by
810 * handle_weakrefs().
Tim Petersf6b80452003-04-07 19:21:15 +0000811 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000812 gc_list_init(&finalizers);
Tim Petersead8b7a2004-10-30 23:09:22 +0000813 move_finalizers(&unreachable, &finalizers);
Tim Petersbf384c22003-04-06 00:11:39 +0000814 /* finalizers contains the unreachable objects with a finalizer;
Tim Peters403a2032003-11-20 21:21:46 +0000815 * unreachable objects reachable *from* those are also uncollectable,
816 * and we move those into the finalizers list too.
Tim Petersbf384c22003-04-06 00:11:39 +0000817 */
Tim Petersf6b80452003-04-07 19:21:15 +0000818 move_finalizer_reachable(&finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000819
820 /* Collect statistics on collectable objects found and print
Tim Peters403a2032003-11-20 21:21:46 +0000821 * debugging information.
822 */
Tim Petersf6b80452003-04-07 19:21:15 +0000823 for (gc = unreachable.gc.gc_next; gc != &unreachable;
Tim Peters9e4ca102001-10-11 18:31:31 +0000824 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000825 m++;
Jeremy Hylton06257772000-08-31 15:10:24 +0000826 if (debug & DEBUG_COLLECTABLE) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000827 debug_cycle("collectable", FROM_GC(gc));
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000828 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000829 if (tmod != NULL && (debug & DEBUG_STATS)) {
830 PyObject *f = PyObject_CallMethod(tmod, "time", NULL);
831 if (f == NULL) {
832 PyErr_Clear();
833 }
834 else {
835 t1 = PyFloat_AsDouble(f)-t1;
836 Py_DECREF(f);
837 PySys_WriteStderr("gc: %.4fs elapsed.\n", t1);
838 }
839 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000840 }
Tim Petersead8b7a2004-10-30 23:09:22 +0000841
842 /* Clear weakrefs and invoke callbacks as necessary. */
843 m += handle_weakrefs(&unreachable, old);
844
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000845 /* Call tp_clear on objects in the unreachable set. This will cause
846 * the reference cycles to be broken. It may also cause some objects
847 * in finalizers to be freed.
848 */
Tim Petersf6b80452003-04-07 19:21:15 +0000849 delete_garbage(&unreachable, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000850
851 /* Collect statistics on uncollectable objects found and print
852 * debugging information. */
Tim Peters50c61d52003-04-06 01:50:50 +0000853 for (gc = finalizers.gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000854 gc != &finalizers;
855 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000856 n++;
Tim Petersbf384c22003-04-06 00:11:39 +0000857 if (debug & DEBUG_UNCOLLECTABLE)
Neil Schemenauer43411b52001-08-30 00:05:51 +0000858 debug_cycle("uncollectable", FROM_GC(gc));
Tim Petersbf384c22003-04-06 00:11:39 +0000859 }
Jeremy Hylton06257772000-08-31 15:10:24 +0000860 if (debug & DEBUG_STATS) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000861 if (m == 0 && n == 0)
Jeremy Hylton06257772000-08-31 15:10:24 +0000862 PySys_WriteStderr("gc: done.\n");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000863 else
Neal Norwitze22373d2006-03-06 23:31:56 +0000864 PySys_WriteStderr(
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000865 "gc: done, "
866 "%" PY_FORMAT_SIZE_T "d unreachable, "
867 "%" PY_FORMAT_SIZE_T "d uncollectable.\n",
Neal Norwitze22373d2006-03-06 23:31:56 +0000868 n+m, n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000869 }
870
871 /* Append instances in the uncollectable set to a Python
872 * reachable list of garbage. The programmer has to deal with
Tim Petersbf384c22003-04-06 00:11:39 +0000873 * this if they insist on creating this type of structure.
874 */
Tim Petersf6b80452003-04-07 19:21:15 +0000875 (void)handle_finalizers(&finalizers, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000876
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000877 if (PyErr_Occurred()) {
Tim Petersf6b80452003-04-07 19:21:15 +0000878 if (gc_str == NULL)
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000879 gc_str = PyString_FromString("garbage collection");
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000880 PyErr_WriteUnraisable(gc_str);
881 Py_FatalError("unexpected exception during garbage collection");
882 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000883 return n+m;
884}
885
Neal Norwitz7b216c52006-03-04 20:01:53 +0000886static Py_ssize_t
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000887collect_generations(void)
888{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000889 int i;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000890 Py_ssize_t n = 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000891
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000892 /* Find the oldest generation (higest numbered) where the count
893 * exceeds the threshold. Objects in the that generation and
894 * generations younger than it will be collected. */
895 for (i = NUM_GENERATIONS-1; i >= 0; i--) {
896 if (generations[i].count > generations[i].threshold) {
897 n = collect(i);
898 break;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000899 }
900 }
901 return n;
902}
903
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000904PyDoc_STRVAR(gc_enable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000905"enable() -> None\n"
906"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000907"Enable automatic garbage collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000908
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000909static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000910gc_enable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000911{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000912 enabled = 1;
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_disable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000918"disable() -> None\n"
919"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000920"Disable automatic garbage collection.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000921
922static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000923gc_disable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000924{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000925 enabled = 0;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000926 Py_INCREF(Py_None);
927 return Py_None;
928}
929
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000930PyDoc_STRVAR(gc_isenabled__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000931"isenabled() -> status\n"
932"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000933"Returns true if automatic garbage collection is enabled.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000934
935static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000936gc_isenabled(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000937{
Raymond Hettinger674d56b2004-01-04 04:00:13 +0000938 return PyBool_FromLong((long)enabled);
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000939}
940
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000941PyDoc_STRVAR(gc_collect__doc__,
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000942"collect([generation]) -> n\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000943"\n"
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000944"With no arguments, run a full collection. The optional argument\n"
945"may be an integer specifying which generation to collect. A ValueError\n"
946"is raised if the generation number is invalid.\n\n"
947"The number of unreachable objects is returned.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000948
949static PyObject *
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000950gc_collect(PyObject *self, PyObject *args, PyObject *kws)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000951{
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000952 static char *keywords[] = {"generation", NULL};
953 int genarg = NUM_GENERATIONS - 1;
Neal Norwitz7b216c52006-03-04 20:01:53 +0000954 Py_ssize_t n;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000955
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000956 if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg))
957 return NULL;
958
959 else if (genarg < 0 || genarg >= NUM_GENERATIONS) {
960 PyErr_SetString(PyExc_ValueError, "invalid generation");
961 return NULL;
962 }
963
Tim Peters50c61d52003-04-06 01:50:50 +0000964 if (collecting)
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000965 n = 0; /* already collecting, don't do anything */
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000966 else {
967 collecting = 1;
Barry Warsawd3c38ff2006-03-07 09:46:03 +0000968 n = collect(genarg);
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000969 collecting = 0;
970 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000971
Neal Norwitz7b216c52006-03-04 20:01:53 +0000972 return PyInt_FromSsize_t(n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000973}
974
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000975PyDoc_STRVAR(gc_set_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000976"set_debug(flags) -> None\n"
977"\n"
978"Set the garbage collection debugging flags. Debugging information is\n"
979"written to sys.stderr.\n"
980"\n"
981"flags is an integer and can have the following bits turned on:\n"
982"\n"
983" DEBUG_STATS - Print statistics during collection.\n"
984" DEBUG_COLLECTABLE - Print collectable objects found.\n"
985" DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n"
986" DEBUG_INSTANCES - Print instance objects.\n"
987" DEBUG_OBJECTS - Print objects other than instances.\n"
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000988" DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000989" DEBUG_LEAK - Debug leaking programs (everything but STATS).\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000990
991static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000992gc_set_debug(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000993{
Neil Schemenauer7760cff2000-09-22 22:35:36 +0000994 if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000995 return NULL;
996
997 Py_INCREF(Py_None);
998 return Py_None;
999}
1000
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001001PyDoc_STRVAR(gc_get_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001002"get_debug() -> flags\n"
1003"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001004"Get the garbage collection debugging flags.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001005
1006static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001007gc_get_debug(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001008{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001009 return Py_BuildValue("i", debug);
1010}
1011
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001012PyDoc_STRVAR(gc_set_thresh__doc__,
Neal Norwitz2a47c0f2002-01-29 00:53:41 +00001013"set_threshold(threshold0, [threshold1, threshold2]) -> None\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001014"\n"
1015"Sets the collection thresholds. Setting threshold0 to zero disables\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001016"collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001017
1018static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001019gc_set_thresh(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001020{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001021 int i;
1022 if (!PyArg_ParseTuple(args, "i|ii:set_threshold",
1023 &generations[0].threshold,
1024 &generations[1].threshold,
1025 &generations[2].threshold))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001026 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001027 for (i = 2; i < NUM_GENERATIONS; i++) {
1028 /* generations higher than 2 get the same threshold */
1029 generations[i].threshold = generations[2].threshold;
1030 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001031
1032 Py_INCREF(Py_None);
1033 return Py_None;
1034}
1035
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001036PyDoc_STRVAR(gc_get_thresh__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001037"get_threshold() -> (threshold0, threshold1, threshold2)\n"
1038"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001039"Return the current collection thresholds\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001040
1041static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001042gc_get_thresh(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001043{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001044 return Py_BuildValue("(iii)",
1045 generations[0].threshold,
1046 generations[1].threshold,
1047 generations[2].threshold);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001048}
1049
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001050PyDoc_STRVAR(gc_get_count__doc__,
1051"get_count() -> (count0, count1, count2)\n"
1052"\n"
1053"Return the current collection counts\n");
1054
1055static PyObject *
1056gc_get_count(PyObject *self, PyObject *noargs)
1057{
1058 return Py_BuildValue("(iii)",
1059 generations[0].count,
1060 generations[1].count,
1061 generations[2].count);
1062}
1063
Neil Schemenauer48c70342001-08-09 15:38:31 +00001064static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001065referrersvisit(PyObject* obj, PyObject *objs)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001066{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001067 Py_ssize_t i;
Martin v. Löwisc8fe77b2001-11-29 18:08:31 +00001068 for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
1069 if (PyTuple_GET_ITEM(objs, i) == obj)
1070 return 1;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001071 return 0;
1072}
1073
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001074static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001075gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001076{
1077 PyGC_Head *gc;
1078 PyObject *obj;
1079 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +00001080 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +00001081 obj = FROM_GC(gc);
Neil Schemenauer48c70342001-08-09 15:38:31 +00001082 traverse = obj->ob_type->tp_traverse;
1083 if (obj == objs || obj == resultlist)
1084 continue;
Martin v. Löwis560da622001-11-24 09:24:51 +00001085 if (traverse(obj, (visitproc)referrersvisit, objs)) {
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001086 if (PyList_Append(resultlist, obj) < 0)
1087 return 0; /* error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001088 }
1089 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001090 return 1; /* no error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001091}
1092
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001093PyDoc_STRVAR(gc_get_referrers__doc__,
Martin v. Löwis560da622001-11-24 09:24:51 +00001094"get_referrers(*objs) -> list\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001095Return the list of objects that directly refer to any of objs.");
Neil Schemenauer48c70342001-08-09 15:38:31 +00001096
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001097static PyObject *
Martin v. Löwis560da622001-11-24 09:24:51 +00001098gc_get_referrers(PyObject *self, PyObject *args)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001099{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001100 int i;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001101 PyObject *result = PyList_New(0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001102 if (!result) return NULL;
1103
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001104 for (i = 0; i < NUM_GENERATIONS; i++) {
1105 if (!(gc_referrers_for(args, GEN_HEAD(i), result))) {
1106 Py_DECREF(result);
1107 return NULL;
1108 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001109 }
Neil Schemenauer48c70342001-08-09 15:38:31 +00001110 return result;
1111}
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001112
Tim Peters0f81ab62003-04-08 16:39:48 +00001113/* Append obj to list; return true if error (out of memory), false if OK. */
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001114static int
Tim Peters730f5532003-04-08 17:17:17 +00001115referentsvisit(PyObject *obj, PyObject *list)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001116{
Tim Peters0f81ab62003-04-08 16:39:48 +00001117 return PyList_Append(list, obj) < 0;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001118}
1119
Tim Peters730f5532003-04-08 17:17:17 +00001120PyDoc_STRVAR(gc_get_referents__doc__,
1121"get_referents(*objs) -> list\n\
Jeremy Hylton059b0942003-04-03 16:29:13 +00001122Return the list of objects that are directly referred to by objs.");
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001123
1124static PyObject *
Tim Peters730f5532003-04-08 17:17:17 +00001125gc_get_referents(PyObject *self, PyObject *args)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001126{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001127 Py_ssize_t i;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001128 PyObject *result = PyList_New(0);
Tim Peters0f81ab62003-04-08 16:39:48 +00001129
1130 if (result == NULL)
1131 return NULL;
1132
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001133 for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001134 traverseproc traverse;
Tim Peters93ad66d2003-04-05 17:15:44 +00001135 PyObject *obj = PyTuple_GET_ITEM(args, i);
Tim Peters0f81ab62003-04-08 16:39:48 +00001136
1137 if (! PyObject_IS_GC(obj))
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001138 continue;
Tim Peters0f81ab62003-04-08 16:39:48 +00001139 traverse = obj->ob_type->tp_traverse;
1140 if (! traverse)
1141 continue;
Tim Peters730f5532003-04-08 17:17:17 +00001142 if (traverse(obj, (visitproc)referentsvisit, result)) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001143 Py_DECREF(result);
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001144 return NULL;
Tim Peters0f81ab62003-04-08 16:39:48 +00001145 }
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001146 }
1147 return result;
1148}
1149
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001150PyDoc_STRVAR(gc_get_objects__doc__,
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001151"get_objects() -> [...]\n"
1152"\n"
1153"Return a list of objects tracked by the collector (excluding the list\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001154"returned).\n");
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001155
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001156static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001157gc_get_objects(PyObject *self, PyObject *noargs)
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001158{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001159 int i;
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001160 PyObject* result;
1161
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001162 result = PyList_New(0);
Tim Peters50c61d52003-04-06 01:50:50 +00001163 if (result == NULL)
Martin v. Löwisf8a6f242001-12-02 18:31:02 +00001164 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001165 for (i = 0; i < NUM_GENERATIONS; i++) {
1166 if (append_objects(result, GEN_HEAD(i))) {
1167 Py_DECREF(result);
1168 return NULL;
1169 }
Martin v. Löwis155aad12001-12-02 12:21:34 +00001170 }
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001171 return result;
1172}
1173
1174
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001175PyDoc_STRVAR(gc__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001176"This module provides access to the garbage collector for reference cycles.\n"
1177"\n"
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001178"enable() -- Enable automatic garbage collection.\n"
1179"disable() -- Disable automatic garbage collection.\n"
1180"isenabled() -- Returns true if automatic collection is enabled.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001181"collect() -- Do a full collection right now.\n"
1182"set_debug() -- Set debugging flags.\n"
1183"get_debug() -- Get debugging flags.\n"
1184"set_threshold() -- Set the collection thresholds.\n"
1185"get_threshold() -- Return the current the collection thresholds.\n"
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001186"get_objects() -- Return a list of all objects tracked by the collector.\n"
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001187"get_referrers() -- Return the list of objects that refer to an object.\n"
Tim Peters730f5532003-04-08 17:17:17 +00001188"get_referents() -- Return the list of objects that an object refers to.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001189
1190static PyMethodDef GcMethods[] = {
Tim Peters50c61d52003-04-06 01:50:50 +00001191 {"enable", gc_enable, METH_NOARGS, gc_enable__doc__},
1192 {"disable", gc_disable, METH_NOARGS, gc_disable__doc__},
1193 {"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001194 {"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001195 {"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001196 {"get_count", gc_get_count, METH_NOARGS, gc_get_count__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001197 {"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001198 {"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__},
Barry Warsawd3c38ff2006-03-07 09:46:03 +00001199 {"collect", (PyCFunction)gc_collect,
1200 METH_VARARGS | METH_KEYWORDS, gc_collect__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001201 {"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__},
Martin v. Löwis560da622001-11-24 09:24:51 +00001202 {"get_referrers", gc_get_referrers, METH_VARARGS,
1203 gc_get_referrers__doc__},
Tim Peters730f5532003-04-08 17:17:17 +00001204 {"get_referents", gc_get_referents, METH_VARARGS,
1205 gc_get_referents__doc__},
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001206 {NULL, NULL} /* Sentinel */
1207};
1208
Jason Tishler6bc06ec2003-09-04 11:59:50 +00001209PyMODINIT_FUNC
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001210initgc(void)
1211{
1212 PyObject *m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001213
1214 m = Py_InitModule4("gc",
1215 GcMethods,
1216 gc__doc__,
1217 NULL,
1218 PYTHON_API_VERSION);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001219 if (m == NULL)
1220 return;
Tim Peters11558872003-04-06 23:30:52 +00001221
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001222 if (garbage == NULL) {
1223 garbage = PyList_New(0);
Tim Peters11558872003-04-06 23:30:52 +00001224 if (garbage == NULL)
1225 return;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001226 }
Neil Schemenauer3b1cbf92005-06-18 17:37:06 +00001227 Py_INCREF(garbage);
Tim Peters11558872003-04-06 23:30:52 +00001228 if (PyModule_AddObject(m, "garbage", garbage) < 0)
1229 return;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001230
1231 /* Importing can't be done in collect() because collect()
1232 * can be called via PyGC_Collect() in Py_Finalize().
1233 * This wouldn't be a problem, except that <initialized> is
1234 * reset to 0 before calling collect which trips up
1235 * the import and triggers an assertion.
1236 */
1237 if (tmod == NULL) {
1238 tmod = PyImport_ImportModule("time");
1239 if (tmod == NULL)
1240 PyErr_Clear();
1241 }
1242
Tim Peters11558872003-04-06 23:30:52 +00001243#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return
1244 ADD_INT(DEBUG_STATS);
1245 ADD_INT(DEBUG_COLLECTABLE);
1246 ADD_INT(DEBUG_UNCOLLECTABLE);
1247 ADD_INT(DEBUG_INSTANCES);
1248 ADD_INT(DEBUG_OBJECTS);
1249 ADD_INT(DEBUG_SAVEALL);
1250 ADD_INT(DEBUG_LEAK);
1251#undef ADD_INT
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001252}
1253
Guido van Rossume13ddc92003-04-17 17:29:22 +00001254/* API to invoke gc.collect() from C */
Neal Norwitz7b216c52006-03-04 20:01:53 +00001255Py_ssize_t
Guido van Rossume13ddc92003-04-17 17:29:22 +00001256PyGC_Collect(void)
1257{
Neal Norwitz7b216c52006-03-04 20:01:53 +00001258 Py_ssize_t n;
Guido van Rossume13ddc92003-04-17 17:29:22 +00001259
1260 if (collecting)
1261 n = 0; /* already collecting, don't do anything */
1262 else {
1263 collecting = 1;
1264 n = collect(NUM_GENERATIONS - 1);
1265 collecting = 0;
1266 }
1267
1268 return n;
1269}
1270
Neil Schemenauer43411b52001-08-30 00:05:51 +00001271/* for debugging */
Guido van Rossume13ddc92003-04-17 17:29:22 +00001272void
1273_PyGC_Dump(PyGC_Head *g)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001274{
1275 _PyObject_Dump(FROM_GC(g));
1276}
1277
Neil Schemenauer43411b52001-08-30 00:05:51 +00001278/* extension modules might be compiled with GC support so these
1279 functions must always be available */
1280
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001281#undef PyObject_GC_Track
1282#undef PyObject_GC_UnTrack
1283#undef PyObject_GC_Del
1284#undef _PyObject_GC_Malloc
1285
Neil Schemenauer43411b52001-08-30 00:05:51 +00001286void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001287PyObject_GC_Track(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001288{
1289 _PyObject_GC_TRACK(op);
1290}
1291
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001292/* for binary compatibility with 2.2 */
Neil Schemenauer43411b52001-08-30 00:05:51 +00001293void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001294_PyObject_GC_Track(PyObject *op)
1295{
1296 PyObject_GC_Track(op);
1297}
1298
1299void
1300PyObject_GC_UnTrack(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001301{
Tim Peters803526b2002-07-07 05:13:56 +00001302 /* Obscure: the Py_TRASHCAN mechanism requires that we be able to
1303 * call PyObject_GC_UnTrack twice on an object.
1304 */
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001305 if (IS_TRACKED(op))
Guido van Rossumff413af2002-03-28 20:34:59 +00001306 _PyObject_GC_UNTRACK(op);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001307}
1308
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001309/* for binary compatibility with 2.2 */
1310void
1311_PyObject_GC_UnTrack(PyObject *op)
1312{
1313 PyObject_GC_UnTrack(op);
1314}
1315
Neil Schemenauer43411b52001-08-30 00:05:51 +00001316PyObject *
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001317_PyObject_GC_Malloc(size_t basicsize)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001318{
1319 PyObject *op;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001320 PyGC_Head *g = (PyGC_Head *)PyObject_MALLOC(
1321 sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001322 if (g == NULL)
Jeremy Hylton8a135182002-06-06 23:23:55 +00001323 return PyErr_NoMemory();
Tim Petersea405632002-07-02 00:52:30 +00001324 g->gc.gc_refs = GC_UNTRACKED;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001325 generations[0].count++; /* number of allocated GC objects */
1326 if (generations[0].count > generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001327 enabled &&
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001328 generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001329 !collecting &&
1330 !PyErr_Occurred()) {
1331 collecting = 1;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001332 collect_generations();
Neil Schemenauer43411b52001-08-30 00:05:51 +00001333 collecting = 0;
1334 }
1335 op = FROM_GC(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001336 return op;
1337}
1338
1339PyObject *
1340_PyObject_GC_New(PyTypeObject *tp)
1341{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001342 PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
Tim Petersfa8efab2002-04-28 01:57:25 +00001343 if (op != NULL)
1344 op = PyObject_INIT(op, tp);
1345 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001346}
1347
1348PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +00001349_PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001350{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001351 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
1352 PyVarObject *op = (PyVarObject *) _PyObject_GC_Malloc(size);
Tim Petersfa8efab2002-04-28 01:57:25 +00001353 if (op != NULL)
1354 op = PyObject_INIT_VAR(op, tp, nitems);
1355 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001356}
1357
1358PyVarObject *
Martin v. Löwis41290682006-02-16 14:56:14 +00001359_PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001360{
Tim Petersf2a67da2001-10-07 03:54:51 +00001361 const size_t basicsize = _PyObject_VAR_SIZE(op->ob_type, nitems);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001362 PyGC_Head *g = AS_GC(op);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001363 g = (PyGC_Head *)PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001364 if (g == NULL)
1365 return (PyVarObject *)PyErr_NoMemory();
1366 op = (PyVarObject *) FROM_GC(g);
Tim Peters6d483d32001-10-06 21:27:34 +00001367 op->ob_size = nitems;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001368 return op;
1369}
1370
1371void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001372PyObject_GC_Del(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001373{
Neil Schemenauer43411b52001-08-30 00:05:51 +00001374 PyGC_Head *g = AS_GC(op);
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001375 if (IS_TRACKED(op))
Neil Schemenauer43411b52001-08-30 00:05:51 +00001376 gc_list_remove(g);
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001377 if (generations[0].count > 0) {
1378 generations[0].count--;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001379 }
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001380 PyObject_FREE(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001381}
1382
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001383/* for binary compatibility with 2.2 */
1384#undef _PyObject_GC_Del
1385void
1386_PyObject_GC_Del(PyObject *op)
1387{
1388 PyObject_GC_Del(op);
1389}