blob: 4bfdea643a20d305df6049f8bc69fc6dfa0fbc64 [file] [log] [blame]
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001/*
Tim Peters88396172002-06-30 17:56:40 +00002
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00003 Reference Cycle Garbage Collection
4 ==================================
5
Neil Schemenauerb2c2c9e2000-10-04 16:34:09 +00006 Neil Schemenauer <nas@arctrix.com>
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00007
8 Based on a post on the python-dev list. Ideas from Guido van Rossum,
9 Eric Tiedemann, and various others.
10
Neil Schemenauer43411b52001-08-30 00:05:51 +000011 http://www.arctrix.com/nas/python/gc/
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000012 http://www.python.org/pipermail/python-dev/2000-March/003869.html
13 http://www.python.org/pipermail/python-dev/2000-March/004010.html
14 http://www.python.org/pipermail/python-dev/2000-March/004022.html
15
16 For a highlevel view of the collection process, read the collect
17 function.
18
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000019*/
20
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000021#include "Python.h"
22
Neil Schemenauer43411b52001-08-30 00:05:51 +000023/* Get an object's GC head */
24#define AS_GC(o) ((PyGC_Head *)(o)-1)
25
26/* Get the object given the GC head */
27#define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1))
28
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000029/*** Global GC state ***/
30
Neil Schemenauer2880ae52002-05-04 05:35:20 +000031struct gc_generation {
32 PyGC_Head head;
33 int threshold; /* collection threshold */
34 int count; /* count of allocations or collections of younger
35 generations */
36};
37
38#define NUM_GENERATIONS 3
39#define GEN_HEAD(n) (&generations[n].head)
40
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000041/* linked lists of container objects */
Neil Schemenauer2880ae52002-05-04 05:35:20 +000042static struct gc_generation generations[NUM_GENERATIONS] = {
43 /* PyGC_Head, threshold, count */
44 {{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0},
45 {{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0},
46 {{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0},
47};
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000048
Neil Schemenauer2880ae52002-05-04 05:35:20 +000049PyGC_Head *_PyGC_generation0 = GEN_HEAD(0);
50
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +000051static int enabled = 1; /* automatic collection enabled? */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000052
Neil Schemenauer43411b52001-08-30 00:05:51 +000053/* true if we are currently running the collector */
Tim Petersbf384c22003-04-06 00:11:39 +000054static int collecting = 0;
Neil Schemenauer43411b52001-08-30 00:05:51 +000055
Tim Peters6fc13d92002-07-02 18:12:35 +000056/* list of uncollectable objects */
Tim Petersbf384c22003-04-06 00:11:39 +000057static PyObject *garbage = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000058
59/* Python string to use if unhandled exception occurs */
Tim Petersbf384c22003-04-06 00:11:39 +000060static PyObject *gc_str = NULL;
Tim Peters6fc13d92002-07-02 18:12:35 +000061
Tim Peters93ad66d2003-04-05 17:15:44 +000062/* Python string used to look for __del__ attribute. */
63static PyObject *delstr = NULL;
Jeremy Hyltonce136e92003-04-04 19:59:06 +000064
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000065/* set for debugging information */
66#define DEBUG_STATS (1<<0) /* print collection statistics */
67#define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */
68#define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */
69#define DEBUG_INSTANCES (1<<3) /* print instances */
70#define DEBUG_OBJECTS (1<<4) /* print other objects */
Neil Schemenauer544de1e2000-09-22 15:22:38 +000071#define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000072#define DEBUG_LEAK DEBUG_COLLECTABLE | \
73 DEBUG_UNCOLLECTABLE | \
74 DEBUG_INSTANCES | \
Neil Schemenauer544de1e2000-09-22 15:22:38 +000075 DEBUG_OBJECTS | \
76 DEBUG_SAVEALL
Jeremy Hyltonb709df32000-09-01 02:47:25 +000077static int debug;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +000078
Tim Peters6fc13d92002-07-02 18:12:35 +000079/*--------------------------------------------------------------------------
80gc_refs values.
Neil Schemenauer43411b52001-08-30 00:05:51 +000081
Tim Peters6fc13d92002-07-02 18:12:35 +000082Between collections, every gc'ed object has one of two gc_refs values:
83
84GC_UNTRACKED
85 The initial state; objects returned by PyObject_GC_Malloc are in this
86 state. The object doesn't live in any generation list, and its
87 tp_traverse slot must not be called.
88
89GC_REACHABLE
90 The object lives in some generation list, and its tp_traverse is safe to
91 call. An object transitions to GC_REACHABLE when PyObject_GC_Track
92 is called.
93
94During a collection, gc_refs can temporarily take on other states:
95
96>= 0
97 At the start of a collection, update_refs() copies the true refcount
98 to gc_refs, for each object in the generation being collected.
99 subtract_refs() then adjusts gc_refs so that it equals the number of
100 times an object is referenced directly from outside the generation
101 being collected.
Martin v. Löwis774348c2002-11-09 19:54:06 +0000102 gc_refs remains >= 0 throughout these steps.
Tim Peters6fc13d92002-07-02 18:12:35 +0000103
104GC_TENTATIVELY_UNREACHABLE
105 move_unreachable() then moves objects not reachable (whether directly or
106 indirectly) from outside the generation into an "unreachable" set.
107 Objects that are found to be reachable have gc_refs set to GC_REACHABLE
108 again. Objects that are found to be unreachable have gc_refs set to
109 GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing
110 this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may
111 transition back to GC_REACHABLE.
112
113 Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates
114 for collection. If it's decided not to collect such an object (e.g.,
115 it has a __del__ method), its gc_refs is restored to GC_REACHABLE again.
116----------------------------------------------------------------------------
117*/
Tim Petersea405632002-07-02 00:52:30 +0000118#define GC_UNTRACKED _PyGC_REFS_UNTRACKED
119#define GC_REACHABLE _PyGC_REFS_REACHABLE
120#define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE
Tim Peters19b74c72002-07-01 03:52:19 +0000121
Tim Peters6fc13d92002-07-02 18:12:35 +0000122#define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED)
Tim Peters19b74c72002-07-01 03:52:19 +0000123#define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE)
124#define IS_TENTATIVELY_UNREACHABLE(o) ( \
125 (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE)
Neil Schemenauera2b11ec2002-05-21 15:53:24 +0000126
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000127/*** list functions ***/
128
129static void
130gc_list_init(PyGC_Head *list)
131{
Tim Peters9e4ca102001-10-11 18:31:31 +0000132 list->gc.gc_prev = list;
133 list->gc.gc_next = list;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000134}
135
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000136static int
137gc_list_is_empty(PyGC_Head *list)
138{
139 return (list->gc.gc_next == list);
140}
141
Tim Peterse2d59182004-11-01 01:39:08 +0000142#if 0
143/* This became unused after gc_list_move() was introduced. */
144/* Append `node` to `list`. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000145static void
146gc_list_append(PyGC_Head *node, PyGC_Head *list)
147{
Tim Peters9e4ca102001-10-11 18:31:31 +0000148 node->gc.gc_next = list;
149 node->gc.gc_prev = list->gc.gc_prev;
150 node->gc.gc_prev->gc.gc_next = node;
151 list->gc.gc_prev = node;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000152}
Tim Peterse2d59182004-11-01 01:39:08 +0000153#endif
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000154
Tim Peterse2d59182004-11-01 01:39:08 +0000155/* Remove `node` from the gc list it's currently in. */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000156static void
157gc_list_remove(PyGC_Head *node)
158{
Tim Peters9e4ca102001-10-11 18:31:31 +0000159 node->gc.gc_prev->gc.gc_next = node->gc.gc_next;
160 node->gc.gc_next->gc.gc_prev = node->gc.gc_prev;
161 node->gc.gc_next = NULL; /* object is not currently tracked */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000162}
163
Tim Peterse2d59182004-11-01 01:39:08 +0000164/* Move `node` from the gc list it's currently in (which is not explicitly
165 * named here) to the end of `list`. This is semantically the same as
166 * gc_list_remove(node) followed by gc_list_append(node, list).
167 */
168static void
169gc_list_move(PyGC_Head *node, PyGC_Head *list)
170{
171 PyGC_Head *current_prev = node->gc.gc_prev;
172 PyGC_Head *current_next = node->gc.gc_next;
173 PyGC_Head *new_prev = list->gc.gc_prev;
174 current_prev->gc.gc_next = current_next;
175 current_next->gc.gc_prev = current_prev;
176 node->gc.gc_next = list;
177 node->gc.gc_prev = new_prev;
178 new_prev->gc.gc_next = list->gc.gc_prev = node;
179}
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
197static long
198gc_list_size(PyGC_Head *list)
199{
200 PyGC_Head *gc;
201 long 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);
Tim Peters9e4ca102001-10-11 18:31:31 +0000239 gc->gc.gc_refs = FROM_GC(gc)->ob_refcnt;
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) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000291 traverse = FROM_GC(gc)->ob_type->tp_traverse;
292 (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);
304 const int gc_refs = gc->gc.gc_refs;
305
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);
376 traverseproc traverse = op->ob_type->tp_traverse;
377 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
Tim Peters86b993b2003-04-05 17:35:54 +0000400/* Return true if object has a finalization method.
401 * CAUTION: An instance of an old-style class has to be checked for a
Tim Petersf6b80452003-04-07 19:21:15 +0000402 *__del__ method, and earlier versions of this used to call PyObject_HasAttr,
403 * which in turn could call the class's __getattr__ hook (if any). That
404 * could invoke arbitrary Python code, mutating the object graph in arbitrary
405 * ways, and that was the source of some excruciatingly subtle bugs.
Tim Peters86b993b2003-04-05 17:35:54 +0000406 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000407static int
408has_finalizer(PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000409{
Tim Peters86b993b2003-04-05 17:35:54 +0000410 if (PyInstance_Check(op)) {
Tim Peters86b993b2003-04-05 17:35:54 +0000411 assert(delstr != NULL);
Tim Petersf6b80452003-04-07 19:21:15 +0000412 return _PyInstance_Lookup(op, delstr) != NULL;
Tim Peters86b993b2003-04-05 17:35:54 +0000413 }
414 else if (PyType_HasFeature(op->ob_type, Py_TPFLAGS_HEAPTYPE))
415 return op->ob_type->tp_del != NULL;
416 else
417 return 0;
Neil Schemenauera765c122001-11-01 17:35:23 +0000418}
419
Tim Petersead8b7a2004-10-30 23:09:22 +0000420/* Move the objects in unreachable with __del__ methods into `finalizers`.
421 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
422 * objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE.
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000423 */
Neil Schemenauera765c122001-11-01 17:35:23 +0000424static void
Tim Petersead8b7a2004-10-30 23:09:22 +0000425move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
Neil Schemenauera765c122001-11-01 17:35:23 +0000426{
Tim Petersead8b7a2004-10-30 23:09:22 +0000427 PyGC_Head *gc;
428 PyGC_Head *next;
Tim Petersf6b80452003-04-07 19:21:15 +0000429
Tim Petersead8b7a2004-10-30 23:09:22 +0000430 /* March over unreachable. Move objects with finalizers into
431 * `finalizers`.
432 */
433 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000434 PyObject *op = FROM_GC(gc);
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000435
Tim Petersf6ae7a42003-04-05 18:40:50 +0000436 assert(IS_TENTATIVELY_UNREACHABLE(op));
Tim Petersead8b7a2004-10-30 23:09:22 +0000437 next = gc->gc.gc_next;
Tim Petersf6ae7a42003-04-05 18:40:50 +0000438
Tim Petersf6b80452003-04-07 19:21:15 +0000439 if (has_finalizer(op)) {
Tim Peterse2d59182004-11-01 01:39:08 +0000440 gc_list_move(gc, finalizers);
Tim Petersf6b80452003-04-07 19:21:15 +0000441 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000442 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000443 }
444}
445
Tim Peters19b74c72002-07-01 03:52:19 +0000446/* A traversal callback for move_finalizer_reachable. */
447static int
448visit_move(PyObject *op, PyGC_Head *tolist)
449{
450 if (PyObject_IS_GC(op)) {
Tim Petersea405632002-07-02 00:52:30 +0000451 if (IS_TENTATIVELY_UNREACHABLE(op)) {
Tim Peters19b74c72002-07-01 03:52:19 +0000452 PyGC_Head *gc = AS_GC(op);
Tim Peterse2d59182004-11-01 01:39:08 +0000453 gc_list_move(gc, tolist);
Tim Peters19b74c72002-07-01 03:52:19 +0000454 gc->gc.gc_refs = GC_REACHABLE;
455 }
456 }
457 return 0;
458}
459
460/* Move objects that are reachable from finalizers, from the unreachable set
Tim Petersf6b80452003-04-07 19:21:15 +0000461 * into finalizers set.
Tim Peters19b74c72002-07-01 03:52:19 +0000462 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000463static void
Tim Petersf6b80452003-04-07 19:21:15 +0000464move_finalizer_reachable(PyGC_Head *finalizers)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000465{
466 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +0000467 PyGC_Head *gc = finalizers->gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000468 for (; gc != finalizers; gc = gc->gc.gc_next) {
469 /* Note that the finalizers list may grow during this. */
Neil Schemenauer43411b52001-08-30 00:05:51 +0000470 traverse = FROM_GC(gc)->ob_type->tp_traverse;
Tim Peters88396172002-06-30 17:56:40 +0000471 (void) traverse(FROM_GC(gc),
Tim Petersbf384c22003-04-06 00:11:39 +0000472 (visitproc)visit_move,
Tim Petersf6b80452003-04-07 19:21:15 +0000473 (void *)finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000474 }
475}
476
Tim Petersead8b7a2004-10-30 23:09:22 +0000477/* Clear all weakrefs to unreachable objects, and if such a weakref has a
478 * callback, invoke it if necessary. Note that it's possible for such
479 * weakrefs to be outside the unreachable set -- indeed, those are precisely
480 * the weakrefs whose callbacks must be invoked. See gc_weakref.txt for
481 * overview & some details. Some weakrefs with callbacks may be reclaimed
482 * directly by this routine; the number reclaimed is the return value. Other
483 * weakrefs with callbacks may be moved into the `old` generation. Objects
484 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
485 * unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns,
486 * no object in `unreachable` is weakly referenced anymore.
Tim Peters403a2032003-11-20 21:21:46 +0000487 */
488static int
Tim Petersead8b7a2004-10-30 23:09:22 +0000489handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
Tim Peters403a2032003-11-20 21:21:46 +0000490{
Tim Petersead8b7a2004-10-30 23:09:22 +0000491 PyGC_Head *gc;
492 PyObject *op; /* generally FROM_GC(gc) */
493 PyWeakReference *wr; /* generally a cast of op */
Tim Petersead8b7a2004-10-30 23:09:22 +0000494 PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */
Tim Petersead8b7a2004-10-30 23:09:22 +0000495 PyGC_Head *next;
Tim Peters403a2032003-11-20 21:21:46 +0000496 int num_freed = 0;
497
Tim Petersead8b7a2004-10-30 23:09:22 +0000498 gc_list_init(&wrcb_to_call);
Tim Peters403a2032003-11-20 21:21:46 +0000499
Tim Petersead8b7a2004-10-30 23:09:22 +0000500 /* Clear all weakrefs to the objects in unreachable. If such a weakref
501 * also has a callback, move it into `wrcb_to_call` if the callback
Tim Peterscc2a8662004-10-31 22:12:43 +0000502 * needs to be invoked. Note that we cannot invoke any callbacks until
503 * all weakrefs to unreachable objects are cleared, lest the callback
504 * resurrect an unreachable object via a still-active weakref. We
505 * make another pass over wrcb_to_call, invoking callbacks, after this
506 * pass completes.
Tim Petersead8b7a2004-10-30 23:09:22 +0000507 */
508 for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) {
509 PyWeakReference **wrlist;
510
511 op = FROM_GC(gc);
512 assert(IS_TENTATIVELY_UNREACHABLE(op));
513 next = gc->gc.gc_next;
514
515 if (! PyType_SUPPORTS_WEAKREFS(op->ob_type))
516 continue;
517
518 /* It supports weakrefs. Does it have any? */
519 wrlist = (PyWeakReference **)
520 PyObject_GET_WEAKREFS_LISTPTR(op);
521
522 /* `op` may have some weakrefs. March over the list, clear
523 * all the weakrefs, and move the weakrefs with callbacks
Tim Peterscc2a8662004-10-31 22:12:43 +0000524 * that must be called into wrcb_to_call.
Tim Petersead8b7a2004-10-30 23:09:22 +0000525 */
526 for (wr = *wrlist; wr != NULL; wr = *wrlist) {
527 PyGC_Head *wrasgc; /* AS_GC(wr) */
528
529 /* _PyWeakref_ClearRef clears the weakref but leaves
530 * the callback pointer intact. Obscure: it also
531 * changes *wrlist.
532 */
533 assert(wr->wr_object == op);
534 _PyWeakref_ClearRef(wr);
535 assert(wr->wr_object == Py_None);
536 if (wr->wr_callback == NULL)
537 continue; /* no callback */
538
539 /* Headache time. `op` is going away, and is weakly referenced by
540 * `wr`, which has a callback. Should the callback be invoked? If wr
541 * is also trash, no:
542 *
543 * 1. There's no need to call it. The object and the weakref are
544 * both going away, so it's legitimate to pretend the weakref is
545 * going away first. The user has to ensure a weakref outlives its
546 * referent if they want a guarantee that the wr callback will get
547 * invoked.
548 *
549 * 2. It may be catastrophic to call it. If the callback is also in
550 * cyclic trash (CT), then although the CT is unreachable from
551 * outside the current generation, CT may be reachable from the
552 * callback. Then the callback could resurrect insane objects.
553 *
554 * Since the callback is never needed and may be unsafe in this case,
Tim Peterscc2a8662004-10-31 22:12:43 +0000555 * wr is simply left in the unreachable set. Note that because we
556 * already called _PyWeakref_ClearRef(wr), its callback will never
557 * trigger.
Tim Petersead8b7a2004-10-30 23:09:22 +0000558 *
559 * OTOH, if wr isn't part of CT, we should invoke the callback: the
560 * weakref outlived the trash. Note that since wr isn't CT in this
561 * case, its callback can't be CT either -- wr acted as an external
562 * root to this generation, and therefore its callback did too. So
563 * nothing in CT is reachable from the callback either, so it's hard
564 * to imagine how calling it later could create a problem for us. wr
565 * is moved to wrcb_to_call in this case.
Tim Petersead8b7a2004-10-30 23:09:22 +0000566 */
Tim Peterscc2a8662004-10-31 22:12:43 +0000567 if (IS_TENTATIVELY_UNREACHABLE(wr))
568 continue;
569 assert(IS_REACHABLE(wr));
570
Tim Petersead8b7a2004-10-30 23:09:22 +0000571 /* Create a new reference so that wr can't go away
572 * before we can process it again.
573 */
574 Py_INCREF(wr);
575
Tim Peterscc2a8662004-10-31 22:12:43 +0000576 /* Move wr to wrcb_to_call, for the next pass. */
Tim Petersead8b7a2004-10-30 23:09:22 +0000577 wrasgc = AS_GC(wr);
Tim Peterscc2a8662004-10-31 22:12:43 +0000578 assert(wrasgc != next); /* wrasgc is reachable, but
579 next isn't, so they can't
580 be the same */
Tim Peterse2d59182004-11-01 01:39:08 +0000581 gc_list_move(wrasgc, &wrcb_to_call);
Tim Petersead8b7a2004-10-30 23:09:22 +0000582 }
583 }
584
Tim Peterscc2a8662004-10-31 22:12:43 +0000585 /* Invoke the callbacks we decided to honor. It's safe to invoke them
586 * because they can't reference unreachable objects.
Tim Petersead8b7a2004-10-30 23:09:22 +0000587 */
588 while (! gc_list_is_empty(&wrcb_to_call)) {
589 PyObject *temp;
590 PyObject *callback;
591
592 gc = wrcb_to_call.gc.gc_next;
593 op = FROM_GC(gc);
594 assert(IS_REACHABLE(op));
595 assert(PyWeakref_Check(op));
596 wr = (PyWeakReference *)op;
597 callback = wr->wr_callback;
598 assert(callback != NULL);
599
600 /* copy-paste of weakrefobject.c's handle_callback() */
601 temp = PyObject_CallFunction(callback, "O", wr);
602 if (temp == NULL)
603 PyErr_WriteUnraisable(callback);
604 else
605 Py_DECREF(temp);
606
607 /* Give up the reference we created in the first pass. When
608 * op's refcount hits 0 (which it may or may not do right now),
Tim Peterscc2a8662004-10-31 22:12:43 +0000609 * op's tp_dealloc will decref op->wr_callback too. Note
610 * that the refcount probably will hit 0 now, and because this
611 * weakref was reachable to begin with, gc didn't already
612 * add it to its count of freed objects. Example: a reachable
613 * weak value dict maps some key to this reachable weakref.
614 * The callback removes this key->weakref mapping from the
615 * dict, leaving no other references to the weakref (excepting
616 * ours).
Tim Petersead8b7a2004-10-30 23:09:22 +0000617 */
618 Py_DECREF(op);
619 if (wrcb_to_call.gc.gc_next == gc) {
620 /* object is still alive -- move it */
Tim Peterse2d59182004-11-01 01:39:08 +0000621 gc_list_move(gc, old);
Tim Petersead8b7a2004-10-30 23:09:22 +0000622 }
623 else
624 ++num_freed;
625 }
626
Tim Peters403a2032003-11-20 21:21:46 +0000627 return num_freed;
628}
629
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000630static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000631debug_instance(char *msg, PyInstanceObject *inst)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000632{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000633 char *cname;
Neil Schemenauera765c122001-11-01 17:35:23 +0000634 /* simple version of instance_repr */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000635 PyObject *classname = inst->in_class->cl_name;
636 if (classname != NULL && PyString_Check(classname))
637 cname = PyString_AsString(classname);
638 else
639 cname = "?";
Jeremy Hylton06257772000-08-31 15:10:24 +0000640 PySys_WriteStderr("gc: %.100s <%.100s instance at %p>\n",
641 msg, cname, inst);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000642}
643
644static void
Jeremy Hylton06257772000-08-31 15:10:24 +0000645debug_cycle(char *msg, PyObject *op)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000646{
647 if ((debug & DEBUG_INSTANCES) && PyInstance_Check(op)) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000648 debug_instance(msg, (PyInstanceObject *)op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000649 }
650 else if (debug & DEBUG_OBJECTS) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000651 PySys_WriteStderr("gc: %.100s <%.100s %p>\n",
652 msg, op->ob_type->tp_name, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000653 }
654}
655
Tim Petersbf384c22003-04-06 00:11:39 +0000656/* Handle uncollectable garbage (cycles with finalizers, and stuff reachable
657 * only from such cycles).
Tim Petersf6b80452003-04-07 19:21:15 +0000658 * If DEBUG_SAVEALL, all objects in finalizers are appended to the module
659 * garbage list (a Python list), else only the objects in finalizers with
660 * __del__ methods are appended to garbage. All objects in finalizers are
661 * merged into the old list regardless.
Tim Peters259272b2003-04-06 19:41:39 +0000662 * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list).
663 * The finalizers list is made empty on a successful return.
Tim Petersbf384c22003-04-06 00:11:39 +0000664 */
Tim Peters259272b2003-04-06 19:41:39 +0000665static int
Tim Petersf6b80452003-04-07 19:21:15 +0000666handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000667{
Tim Petersf6b80452003-04-07 19:21:15 +0000668 PyGC_Head *gc = finalizers->gc.gc_next;
669
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000670 if (garbage == NULL) {
671 garbage = PyList_New(0);
Tim Petersbf384c22003-04-06 00:11:39 +0000672 if (garbage == NULL)
673 Py_FatalError("gc couldn't create gc.garbage list");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000674 }
Tim Petersf6b80452003-04-07 19:21:15 +0000675 for (; gc != finalizers; gc = gc->gc.gc_next) {
676 PyObject *op = FROM_GC(gc);
677
678 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) {
679 if (PyList_Append(garbage, op) < 0)
680 return -1;
681 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000682 }
Tim Petersf6b80452003-04-07 19:21:15 +0000683
Tim Peters259272b2003-04-06 19:41:39 +0000684 gc_list_merge(finalizers, old);
685 return 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000686}
687
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000688/* Break reference cycles by clearing the containers involved. This is
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000689 * tricky business as the lists can be changing and we don't know which
Tim Peters19b74c72002-07-01 03:52:19 +0000690 * objects may be freed. It is possible I screwed something up here.
691 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000692static void
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000693delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000694{
695 inquiry clear;
696
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000697 while (!gc_list_is_empty(collectable)) {
698 PyGC_Head *gc = collectable->gc.gc_next;
Neil Schemenauer43411b52001-08-30 00:05:51 +0000699 PyObject *op = FROM_GC(gc);
Tim Peters88396172002-06-30 17:56:40 +0000700
Tim Peters19b74c72002-07-01 03:52:19 +0000701 assert(IS_TENTATIVELY_UNREACHABLE(op));
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000702 if (debug & DEBUG_SAVEALL) {
703 PyList_Append(garbage, op);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000704 }
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000705 else {
706 if ((clear = op->ob_type->tp_clear) != NULL) {
707 Py_INCREF(op);
Jeremy Hylton8a135182002-06-06 23:23:55 +0000708 clear(op);
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000709 Py_DECREF(op);
710 }
711 }
Jeremy Hyltonce136e92003-04-04 19:59:06 +0000712 if (collectable->gc.gc_next == gc) {
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000713 /* object is still alive, move it, it may die later */
Tim Peterse2d59182004-11-01 01:39:08 +0000714 gc_list_move(gc, old);
Tim Peters19b74c72002-07-01 03:52:19 +0000715 gc->gc.gc_refs = GC_REACHABLE;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000716 }
717 }
718}
719
720/* This is the main function. Read this to understand how the
721 * collection process works. */
722static long
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000723collect(int generation)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000724{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000725 int i;
Tim Peters19b74c72002-07-01 03:52:19 +0000726 long m = 0; /* # objects collected */
727 long n = 0; /* # unreachable objects that couldn't be collected */
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000728 PyGC_Head *young; /* the generation we are examining */
729 PyGC_Head *old; /* next older generation */
Tim Peters403a2032003-11-20 21:21:46 +0000730 PyGC_Head unreachable; /* non-problematic unreachable trash */
731 PyGC_Head finalizers; /* objects with, & reachable from, __del__ */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000732 PyGC_Head *gc;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000733
Tim Peters93ad66d2003-04-05 17:15:44 +0000734 if (delstr == NULL) {
735 delstr = PyString_InternFromString("__del__");
736 if (delstr == NULL)
737 Py_FatalError("gc couldn't allocate \"__del__\"");
738 }
739
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000740 if (debug & DEBUG_STATS) {
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000741 PySys_WriteStderr("gc: collecting generation %d...\n",
742 generation);
743 PySys_WriteStderr("gc: objects in each generation:");
744 for (i = 0; i < NUM_GENERATIONS; i++) {
745 PySys_WriteStderr(" %ld", gc_list_size(GEN_HEAD(i)));
746 }
747 PySys_WriteStderr("\n");
748 }
749
750 /* update collection and allocation counters */
751 if (generation+1 < NUM_GENERATIONS)
752 generations[generation+1].count += 1;
753 for (i = 0; i <= generation; i++)
Neil Schemenauerc9051642002-06-28 19:16:04 +0000754 generations[i].count = 0;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000755
756 /* merge younger generations with one we are currently collecting */
757 for (i = 0; i < generation; i++) {
758 gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation));
759 }
760
761 /* handy references */
762 young = GEN_HEAD(generation);
Tim Peters19b74c72002-07-01 03:52:19 +0000763 if (generation < NUM_GENERATIONS-1)
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000764 old = GEN_HEAD(generation+1);
Tim Peters19b74c72002-07-01 03:52:19 +0000765 else
766 old = young;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000767
768 /* Using ob_refcnt and gc_refs, calculate which objects in the
Tim Petersead8b7a2004-10-30 23:09:22 +0000769 * container set are reachable from outside the set (i.e., have a
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000770 * refcount greater than 0 when all the references within the
Tim Petersead8b7a2004-10-30 23:09:22 +0000771 * set are taken into account).
Tim Peters19b74c72002-07-01 03:52:19 +0000772 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000773 update_refs(young);
774 subtract_refs(young);
775
Tim Peters19b74c72002-07-01 03:52:19 +0000776 /* Leave everything reachable from outside young in young, and move
777 * everything else (in young) to unreachable.
778 * NOTE: This used to move the reachable objects into a reachable
779 * set instead. But most things usually turn out to be reachable,
780 * so it's more efficient to move the unreachable things.
781 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000782 gc_list_init(&unreachable);
Tim Peters19b74c72002-07-01 03:52:19 +0000783 move_unreachable(young, &unreachable);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000784
Tim Peters19b74c72002-07-01 03:52:19 +0000785 /* Move reachable objects to next generation. */
786 if (young != old)
787 gc_list_merge(young, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000788
Tim Peters19b74c72002-07-01 03:52:19 +0000789 /* All objects in unreachable are trash, but objects reachable from
790 * finalizers can't safely be deleted. Python programmers should take
791 * care not to create such things. For Python, finalizers means
Tim Peters403a2032003-11-20 21:21:46 +0000792 * instance objects with __del__ methods. Weakrefs with callbacks
Tim Petersead8b7a2004-10-30 23:09:22 +0000793 * can also call arbitrary Python code but they will be dealt with by
794 * handle_weakrefs().
Tim Petersf6b80452003-04-07 19:21:15 +0000795 */
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000796 gc_list_init(&finalizers);
Tim Petersead8b7a2004-10-30 23:09:22 +0000797 move_finalizers(&unreachable, &finalizers);
Tim Petersbf384c22003-04-06 00:11:39 +0000798 /* finalizers contains the unreachable objects with a finalizer;
Tim Peters403a2032003-11-20 21:21:46 +0000799 * unreachable objects reachable *from* those are also uncollectable,
800 * and we move those into the finalizers list too.
Tim Petersbf384c22003-04-06 00:11:39 +0000801 */
Tim Petersf6b80452003-04-07 19:21:15 +0000802 move_finalizer_reachable(&finalizers);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000803
804 /* Collect statistics on collectable objects found and print
Tim Peters403a2032003-11-20 21:21:46 +0000805 * debugging information.
806 */
Tim Petersf6b80452003-04-07 19:21:15 +0000807 for (gc = unreachable.gc.gc_next; gc != &unreachable;
Tim Peters9e4ca102001-10-11 18:31:31 +0000808 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000809 m++;
Jeremy Hylton06257772000-08-31 15:10:24 +0000810 if (debug & DEBUG_COLLECTABLE) {
Neil Schemenauer43411b52001-08-30 00:05:51 +0000811 debug_cycle("collectable", FROM_GC(gc));
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000812 }
813 }
Tim Petersead8b7a2004-10-30 23:09:22 +0000814
815 /* Clear weakrefs and invoke callbacks as necessary. */
816 m += handle_weakrefs(&unreachable, old);
817
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000818 /* Call tp_clear on objects in the unreachable set. This will cause
819 * the reference cycles to be broken. It may also cause some objects
820 * in finalizers to be freed.
821 */
Tim Petersf6b80452003-04-07 19:21:15 +0000822 delete_garbage(&unreachable, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000823
824 /* Collect statistics on uncollectable objects found and print
825 * debugging information. */
Tim Peters50c61d52003-04-06 01:50:50 +0000826 for (gc = finalizers.gc.gc_next;
Tim Petersbf384c22003-04-06 00:11:39 +0000827 gc != &finalizers;
828 gc = gc->gc.gc_next) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000829 n++;
Tim Petersbf384c22003-04-06 00:11:39 +0000830 if (debug & DEBUG_UNCOLLECTABLE)
Neil Schemenauer43411b52001-08-30 00:05:51 +0000831 debug_cycle("uncollectable", FROM_GC(gc));
Tim Petersbf384c22003-04-06 00:11:39 +0000832 }
Jeremy Hylton06257772000-08-31 15:10:24 +0000833 if (debug & DEBUG_STATS) {
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000834 if (m == 0 && n == 0) {
Jeremy Hylton06257772000-08-31 15:10:24 +0000835 PySys_WriteStderr("gc: done.\n");
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000836 }
837 else {
Jeremy Hylton06257772000-08-31 15:10:24 +0000838 PySys_WriteStderr(
839 "gc: done, %ld unreachable, %ld uncollectable.\n",
840 n+m, n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000841 }
842 }
843
844 /* Append instances in the uncollectable set to a Python
845 * reachable list of garbage. The programmer has to deal with
Tim Petersbf384c22003-04-06 00:11:39 +0000846 * this if they insist on creating this type of structure.
847 */
Tim Petersf6b80452003-04-07 19:21:15 +0000848 (void)handle_finalizers(&finalizers, old);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000849
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000850 if (PyErr_Occurred()) {
Tim Petersf6b80452003-04-07 19:21:15 +0000851 if (gc_str == NULL)
Tim Petersfb2ab4d2003-04-07 22:41:24 +0000852 gc_str = PyString_FromString("garbage collection");
Jeremy Hyltonb709df32000-09-01 02:47:25 +0000853 PyErr_WriteUnraisable(gc_str);
854 Py_FatalError("unexpected exception during garbage collection");
855 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000856 return n+m;
857}
858
859static long
860collect_generations(void)
861{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000862 int i;
Vladimir Marangozovb16714b2000-07-10 05:37:39 +0000863 long n = 0;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000864
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000865 /* Find the oldest generation (higest numbered) where the count
866 * exceeds the threshold. Objects in the that generation and
867 * generations younger than it will be collected. */
868 for (i = NUM_GENERATIONS-1; i >= 0; i--) {
869 if (generations[i].count > generations[i].threshold) {
870 n = collect(i);
871 break;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000872 }
873 }
874 return n;
875}
876
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000877PyDoc_STRVAR(gc_enable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000878"enable() -> None\n"
879"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000880"Enable automatic garbage collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000881
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000882static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000883gc_enable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000884{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000885 enabled = 1;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000886 Py_INCREF(Py_None);
887 return Py_None;
888}
889
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000890PyDoc_STRVAR(gc_disable__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000891"disable() -> None\n"
892"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000893"Disable automatic garbage collection.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000894
895static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000896gc_disable(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000897{
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000898 enabled = 0;
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000899 Py_INCREF(Py_None);
900 return Py_None;
901}
902
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000903PyDoc_STRVAR(gc_isenabled__doc__,
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000904"isenabled() -> status\n"
905"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000906"Returns true if automatic garbage collection is enabled.\n");
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000907
908static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000909gc_isenabled(PyObject *self, PyObject *noargs)
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000910{
Raymond Hettinger674d56b2004-01-04 04:00:13 +0000911 return PyBool_FromLong((long)enabled);
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000912}
913
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000914PyDoc_STRVAR(gc_collect__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000915"collect() -> n\n"
916"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000917"Run a full collection. The number of unreachable objects is returned.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000918
919static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000920gc_collect(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000921{
922 long n;
923
Tim Peters50c61d52003-04-06 01:50:50 +0000924 if (collecting)
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000925 n = 0; /* already collecting, don't do anything */
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000926 else {
927 collecting = 1;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000928 n = collect(NUM_GENERATIONS - 1);
Neil Schemenauere8c40cb2001-10-31 23:09:35 +0000929 collecting = 0;
930 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000931
Neil Schemenauer7760cff2000-09-22 22:35:36 +0000932 return Py_BuildValue("l", n);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000933}
934
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000935PyDoc_STRVAR(gc_set_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000936"set_debug(flags) -> None\n"
937"\n"
938"Set the garbage collection debugging flags. Debugging information is\n"
939"written to sys.stderr.\n"
940"\n"
941"flags is an integer and can have the following bits turned on:\n"
942"\n"
943" DEBUG_STATS - Print statistics during collection.\n"
944" DEBUG_COLLECTABLE - Print collectable objects found.\n"
945" DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n"
946" DEBUG_INSTANCES - Print instance objects.\n"
947" DEBUG_OBJECTS - Print objects other than instances.\n"
Neil Schemenauer544de1e2000-09-22 15:22:38 +0000948" DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000949" DEBUG_LEAK - Debug leaking programs (everything but STATS).\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000950
951static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000952gc_set_debug(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000953{
Neil Schemenauer7760cff2000-09-22 22:35:36 +0000954 if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000955 return NULL;
956
957 Py_INCREF(Py_None);
958 return Py_None;
959}
960
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000961PyDoc_STRVAR(gc_get_debug__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000962"get_debug() -> flags\n"
963"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000964"Get the garbage collection debugging flags.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000965
966static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +0000967gc_get_debug(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000968{
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000969 return Py_BuildValue("i", debug);
970}
971
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000972PyDoc_STRVAR(gc_set_thresh__doc__,
Neal Norwitz2a47c0f2002-01-29 00:53:41 +0000973"set_threshold(threshold0, [threshold1, threshold2]) -> None\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000974"\n"
975"Sets the collection thresholds. Setting threshold0 to zero disables\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000976"collection.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000977
978static PyObject *
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +0000979gc_set_thresh(PyObject *self, PyObject *args)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000980{
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000981 int i;
982 if (!PyArg_ParseTuple(args, "i|ii:set_threshold",
983 &generations[0].threshold,
984 &generations[1].threshold,
985 &generations[2].threshold))
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000986 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +0000987 for (i = 2; i < NUM_GENERATIONS; i++) {
988 /* generations higher than 2 get the same threshold */
989 generations[i].threshold = generations[2].threshold;
990 }
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000991
992 Py_INCREF(Py_None);
993 return Py_None;
994}
995
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000996PyDoc_STRVAR(gc_get_thresh__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +0000997"get_threshold() -> (threshold0, threshold1, threshold2)\n"
998"\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000999"Return the current collection thresholds\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001000
1001static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001002gc_get_thresh(PyObject *self, PyObject *noargs)
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001003{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001004 return Py_BuildValue("(iii)",
1005 generations[0].threshold,
1006 generations[1].threshold,
1007 generations[2].threshold);
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001008}
1009
Neil Schemenauer48c70342001-08-09 15:38:31 +00001010static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001011referrersvisit(PyObject* obj, PyObject *objs)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001012{
Martin v. Löwisc8fe77b2001-11-29 18:08:31 +00001013 int i;
1014 for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
1015 if (PyTuple_GET_ITEM(objs, i) == obj)
1016 return 1;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001017 return 0;
1018}
1019
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001020static int
Martin v. Löwis560da622001-11-24 09:24:51 +00001021gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001022{
1023 PyGC_Head *gc;
1024 PyObject *obj;
1025 traverseproc traverse;
Tim Peters9e4ca102001-10-11 18:31:31 +00001026 for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) {
Neil Schemenauer43411b52001-08-30 00:05:51 +00001027 obj = FROM_GC(gc);
Neil Schemenauer48c70342001-08-09 15:38:31 +00001028 traverse = obj->ob_type->tp_traverse;
1029 if (obj == objs || obj == resultlist)
1030 continue;
Martin v. Löwis560da622001-11-24 09:24:51 +00001031 if (traverse(obj, (visitproc)referrersvisit, objs)) {
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001032 if (PyList_Append(resultlist, obj) < 0)
1033 return 0; /* error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001034 }
1035 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001036 return 1; /* no error */
Neil Schemenauer48c70342001-08-09 15:38:31 +00001037}
1038
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001039PyDoc_STRVAR(gc_get_referrers__doc__,
Martin v. Löwis560da622001-11-24 09:24:51 +00001040"get_referrers(*objs) -> list\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001041Return the list of objects that directly refer to any of objs.");
Neil Schemenauer48c70342001-08-09 15:38:31 +00001042
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001043static PyObject *
Martin v. Löwis560da622001-11-24 09:24:51 +00001044gc_get_referrers(PyObject *self, PyObject *args)
Neil Schemenauer48c70342001-08-09 15:38:31 +00001045{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001046 int i;
Neil Schemenauer48c70342001-08-09 15:38:31 +00001047 PyObject *result = PyList_New(0);
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001048 for (i = 0; i < NUM_GENERATIONS; i++) {
1049 if (!(gc_referrers_for(args, GEN_HEAD(i), result))) {
1050 Py_DECREF(result);
1051 return NULL;
1052 }
Neil Schemenauer17e7be62001-08-10 14:46:47 +00001053 }
Neil Schemenauer48c70342001-08-09 15:38:31 +00001054 return result;
1055}
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001056
Tim Peters0f81ab62003-04-08 16:39:48 +00001057/* Append obj to list; return true if error (out of memory), false if OK. */
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001058static int
Tim Peters730f5532003-04-08 17:17:17 +00001059referentsvisit(PyObject *obj, PyObject *list)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001060{
Tim Peters0f81ab62003-04-08 16:39:48 +00001061 return PyList_Append(list, obj) < 0;
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001062}
1063
Tim Peters730f5532003-04-08 17:17:17 +00001064PyDoc_STRVAR(gc_get_referents__doc__,
1065"get_referents(*objs) -> list\n\
Jeremy Hylton059b0942003-04-03 16:29:13 +00001066Return the list of objects that are directly referred to by objs.");
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001067
1068static PyObject *
Tim Peters730f5532003-04-08 17:17:17 +00001069gc_get_referents(PyObject *self, PyObject *args)
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001070{
1071 int i;
1072 PyObject *result = PyList_New(0);
Tim Peters0f81ab62003-04-08 16:39:48 +00001073
1074 if (result == NULL)
1075 return NULL;
1076
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001077 for (i = 0; i < PyTuple_GET_SIZE(args); i++) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001078 traverseproc traverse;
Tim Peters93ad66d2003-04-05 17:15:44 +00001079 PyObject *obj = PyTuple_GET_ITEM(args, i);
Tim Peters0f81ab62003-04-08 16:39:48 +00001080
1081 if (! PyObject_IS_GC(obj))
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001082 continue;
Tim Peters0f81ab62003-04-08 16:39:48 +00001083 traverse = obj->ob_type->tp_traverse;
1084 if (! traverse)
1085 continue;
Tim Peters730f5532003-04-08 17:17:17 +00001086 if (traverse(obj, (visitproc)referentsvisit, result)) {
Tim Peters0f81ab62003-04-08 16:39:48 +00001087 Py_DECREF(result);
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001088 return NULL;
Tim Peters0f81ab62003-04-08 16:39:48 +00001089 }
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001090 }
1091 return result;
1092}
1093
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001094PyDoc_STRVAR(gc_get_objects__doc__,
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001095"get_objects() -> [...]\n"
1096"\n"
1097"Return a list of objects tracked by the collector (excluding the list\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001098"returned).\n");
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001099
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001100static PyObject *
Tim Peters50c61d52003-04-06 01:50:50 +00001101gc_get_objects(PyObject *self, PyObject *noargs)
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001102{
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001103 int i;
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001104 PyObject* result;
1105
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001106 result = PyList_New(0);
Tim Peters50c61d52003-04-06 01:50:50 +00001107 if (result == NULL)
Martin v. Löwisf8a6f242001-12-02 18:31:02 +00001108 return NULL;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001109 for (i = 0; i < NUM_GENERATIONS; i++) {
1110 if (append_objects(result, GEN_HEAD(i))) {
1111 Py_DECREF(result);
1112 return NULL;
1113 }
Martin v. Löwis155aad12001-12-02 12:21:34 +00001114 }
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001115 return result;
1116}
1117
1118
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001119PyDoc_STRVAR(gc__doc__,
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001120"This module provides access to the garbage collector for reference cycles.\n"
1121"\n"
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001122"enable() -- Enable automatic garbage collection.\n"
1123"disable() -- Disable automatic garbage collection.\n"
1124"isenabled() -- Returns true if automatic collection is enabled.\n"
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001125"collect() -- Do a full collection right now.\n"
1126"set_debug() -- Set debugging flags.\n"
1127"get_debug() -- Get debugging flags.\n"
1128"set_threshold() -- Set the collection thresholds.\n"
1129"get_threshold() -- Return the current the collection thresholds.\n"
Neil Schemenauerc7c8d8e2001-08-09 15:58:59 +00001130"get_objects() -- Return a list of all objects tracked by the collector.\n"
Jeremy Hylton5bd378b2003-04-03 16:28:38 +00001131"get_referrers() -- Return the list of objects that refer to an object.\n"
Tim Peters730f5532003-04-08 17:17:17 +00001132"get_referents() -- Return the list of objects that an object refers to.\n");
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001133
1134static PyMethodDef GcMethods[] = {
Tim Peters50c61d52003-04-06 01:50:50 +00001135 {"enable", gc_enable, METH_NOARGS, gc_enable__doc__},
1136 {"disable", gc_disable, METH_NOARGS, gc_disable__doc__},
1137 {"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001138 {"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001139 {"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__},
Vladimir Marangozovf9d20c32000-08-06 22:45:31 +00001140 {"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__},
Tim Peters50c61d52003-04-06 01:50:50 +00001141 {"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__},
1142 {"collect", gc_collect, METH_NOARGS, gc_collect__doc__},
1143 {"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__},
Martin v. Löwis560da622001-11-24 09:24:51 +00001144 {"get_referrers", gc_get_referrers, METH_VARARGS,
1145 gc_get_referrers__doc__},
Tim Peters730f5532003-04-08 17:17:17 +00001146 {"get_referents", gc_get_referents, METH_VARARGS,
1147 gc_get_referents__doc__},
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001148 {NULL, NULL} /* Sentinel */
1149};
1150
Jason Tishler6bc06ec2003-09-04 11:59:50 +00001151PyMODINIT_FUNC
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001152initgc(void)
1153{
1154 PyObject *m;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001155
1156 m = Py_InitModule4("gc",
1157 GcMethods,
1158 gc__doc__,
1159 NULL,
1160 PYTHON_API_VERSION);
Tim Peters11558872003-04-06 23:30:52 +00001161
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001162 if (garbage == NULL) {
1163 garbage = PyList_New(0);
Tim Peters11558872003-04-06 23:30:52 +00001164 if (garbage == NULL)
1165 return;
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001166 }
Tim Peters11558872003-04-06 23:30:52 +00001167 if (PyModule_AddObject(m, "garbage", garbage) < 0)
1168 return;
1169#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return
1170 ADD_INT(DEBUG_STATS);
1171 ADD_INT(DEBUG_COLLECTABLE);
1172 ADD_INT(DEBUG_UNCOLLECTABLE);
1173 ADD_INT(DEBUG_INSTANCES);
1174 ADD_INT(DEBUG_OBJECTS);
1175 ADD_INT(DEBUG_SAVEALL);
1176 ADD_INT(DEBUG_LEAK);
1177#undef ADD_INT
Jeremy Hyltonc5007aa2000-06-30 05:02:53 +00001178}
1179
Guido van Rossume13ddc92003-04-17 17:29:22 +00001180/* API to invoke gc.collect() from C */
1181long
1182PyGC_Collect(void)
1183{
1184 long n;
1185
1186 if (collecting)
1187 n = 0; /* already collecting, don't do anything */
1188 else {
1189 collecting = 1;
1190 n = collect(NUM_GENERATIONS - 1);
1191 collecting = 0;
1192 }
1193
1194 return n;
1195}
1196
Neil Schemenauer43411b52001-08-30 00:05:51 +00001197/* for debugging */
Guido van Rossume13ddc92003-04-17 17:29:22 +00001198void
1199_PyGC_Dump(PyGC_Head *g)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001200{
1201 _PyObject_Dump(FROM_GC(g));
1202}
1203
Neil Schemenauer43411b52001-08-30 00:05:51 +00001204/* extension modules might be compiled with GC support so these
1205 functions must always be available */
1206
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001207#undef PyObject_GC_Track
1208#undef PyObject_GC_UnTrack
1209#undef PyObject_GC_Del
1210#undef _PyObject_GC_Malloc
1211
Neil Schemenauer43411b52001-08-30 00:05:51 +00001212void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001213PyObject_GC_Track(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001214{
1215 _PyObject_GC_TRACK(op);
1216}
1217
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001218/* for binary compatibility with 2.2 */
Neil Schemenauer43411b52001-08-30 00:05:51 +00001219void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001220_PyObject_GC_Track(PyObject *op)
1221{
1222 PyObject_GC_Track(op);
1223}
1224
1225void
1226PyObject_GC_UnTrack(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001227{
Tim Peters803526b2002-07-07 05:13:56 +00001228 /* Obscure: the Py_TRASHCAN mechanism requires that we be able to
1229 * call PyObject_GC_UnTrack twice on an object.
1230 */
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001231 if (IS_TRACKED(op))
Guido van Rossumff413af2002-03-28 20:34:59 +00001232 _PyObject_GC_UNTRACK(op);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001233}
1234
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001235/* for binary compatibility with 2.2 */
1236void
1237_PyObject_GC_UnTrack(PyObject *op)
1238{
1239 PyObject_GC_UnTrack(op);
1240}
1241
Neil Schemenauer43411b52001-08-30 00:05:51 +00001242PyObject *
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001243_PyObject_GC_Malloc(size_t basicsize)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001244{
1245 PyObject *op;
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001246 PyGC_Head *g = PyObject_MALLOC(sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001247 if (g == NULL)
Jeremy Hylton8a135182002-06-06 23:23:55 +00001248 return PyErr_NoMemory();
Tim Petersea405632002-07-02 00:52:30 +00001249 g->gc.gc_refs = GC_UNTRACKED;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001250 generations[0].count++; /* number of allocated GC objects */
1251 if (generations[0].count > generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001252 enabled &&
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001253 generations[0].threshold &&
Neil Schemenauer43411b52001-08-30 00:05:51 +00001254 !collecting &&
1255 !PyErr_Occurred()) {
1256 collecting = 1;
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001257 collect_generations();
Neil Schemenauer43411b52001-08-30 00:05:51 +00001258 collecting = 0;
1259 }
1260 op = FROM_GC(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001261 return op;
1262}
1263
1264PyObject *
1265_PyObject_GC_New(PyTypeObject *tp)
1266{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001267 PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp));
Tim Petersfa8efab2002-04-28 01:57:25 +00001268 if (op != NULL)
1269 op = PyObject_INIT(op, tp);
1270 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001271}
1272
1273PyVarObject *
Tim Peters6d483d32001-10-06 21:27:34 +00001274_PyObject_GC_NewVar(PyTypeObject *tp, int nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001275{
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001276 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
1277 PyVarObject *op = (PyVarObject *) _PyObject_GC_Malloc(size);
Tim Petersfa8efab2002-04-28 01:57:25 +00001278 if (op != NULL)
1279 op = PyObject_INIT_VAR(op, tp, nitems);
1280 return op;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001281}
1282
1283PyVarObject *
Tim Peters6d483d32001-10-06 21:27:34 +00001284_PyObject_GC_Resize(PyVarObject *op, int nitems)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001285{
Tim Petersf2a67da2001-10-07 03:54:51 +00001286 const size_t basicsize = _PyObject_VAR_SIZE(op->ob_type, nitems);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001287 PyGC_Head *g = AS_GC(op);
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001288 g = PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001289 if (g == NULL)
1290 return (PyVarObject *)PyErr_NoMemory();
1291 op = (PyVarObject *) FROM_GC(g);
Tim Peters6d483d32001-10-06 21:27:34 +00001292 op->ob_size = nitems;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001293 return op;
1294}
1295
1296void
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001297PyObject_GC_Del(void *op)
Neil Schemenauer43411b52001-08-30 00:05:51 +00001298{
Neil Schemenauer43411b52001-08-30 00:05:51 +00001299 PyGC_Head *g = AS_GC(op);
Neil Schemenauera2b11ec2002-05-21 15:53:24 +00001300 if (IS_TRACKED(op))
Neil Schemenauer43411b52001-08-30 00:05:51 +00001301 gc_list_remove(g);
Neil Schemenauer2880ae52002-05-04 05:35:20 +00001302 if (generations[0].count > 0) {
1303 generations[0].count--;
Neil Schemenauer43411b52001-08-30 00:05:51 +00001304 }
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001305 PyObject_FREE(g);
Neil Schemenauer43411b52001-08-30 00:05:51 +00001306}
1307
Neil Schemenauerfec4eb12002-04-12 02:41:03 +00001308/* for binary compatibility with 2.2 */
1309#undef _PyObject_GC_Del
1310void
1311_PyObject_GC_Del(PyObject *op)
1312{
1313 PyObject_GC_Del(op);
1314}