Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1 | /* |
Tim Peters | 8839617 | 2002-06-30 17:56:40 +0000 | [diff] [blame] | 2 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 3 | Reference Cycle Garbage Collection |
| 4 | ================================== |
| 5 | |
Neil Schemenauer | b2c2c9e | 2000-10-04 16:34:09 +0000 | [diff] [blame] | 6 | Neil Schemenauer <nas@arctrix.com> |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 7 | |
| 8 | Based on a post on the python-dev list. Ideas from Guido van Rossum, |
| 9 | Eric Tiedemann, and various others. |
| 10 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 11 | http://www.arctrix.com/nas/python/gc/ |
Neil Schemenauer | a7024e9 | 2008-07-15 19:24:01 +0000 | [diff] [blame] | 12 | |
| 13 | The following mailing list threads provide a historical perspective on |
| 14 | the design of this module. Note that a fair amount of refinement has |
| 15 | occurred since those discussions. |
| 16 | |
| 17 | http://mail.python.org/pipermail/python-dev/2000-March/002385.html |
| 18 | http://mail.python.org/pipermail/python-dev/2000-March/002434.html |
| 19 | http://mail.python.org/pipermail/python-dev/2000-March/002497.html |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 20 | |
| 21 | For a highlevel view of the collection process, read the collect |
| 22 | function. |
| 23 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 24 | */ |
| 25 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 26 | #include "Python.h" |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 27 | #include "frameobject.h" /* for PyFrame_ClearFreeList */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 28 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 29 | /* Get an object's GC head */ |
| 30 | #define AS_GC(o) ((PyGC_Head *)(o)-1) |
| 31 | |
| 32 | /* Get the object given the GC head */ |
| 33 | #define FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1)) |
| 34 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 35 | /*** Global GC state ***/ |
| 36 | |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 37 | struct gc_generation { |
| 38 | PyGC_Head head; |
| 39 | int threshold; /* collection threshold */ |
| 40 | int count; /* count of allocations or collections of younger |
| 41 | generations */ |
| 42 | }; |
| 43 | |
| 44 | #define NUM_GENERATIONS 3 |
| 45 | #define GEN_HEAD(n) (&generations[n].head) |
| 46 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 47 | /* linked lists of container objects */ |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 48 | static struct gc_generation generations[NUM_GENERATIONS] = { |
| 49 | /* PyGC_Head, threshold, count */ |
| 50 | {{{GEN_HEAD(0), GEN_HEAD(0), 0}}, 700, 0}, |
| 51 | {{{GEN_HEAD(1), GEN_HEAD(1), 0}}, 10, 0}, |
| 52 | {{{GEN_HEAD(2), GEN_HEAD(2), 0}}, 10, 0}, |
| 53 | }; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 54 | |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 55 | PyGC_Head *_PyGC_generation0 = GEN_HEAD(0); |
| 56 | |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 57 | static int enabled = 1; /* automatic collection enabled? */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 58 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 59 | /* true if we are currently running the collector */ |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 60 | static int collecting = 0; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 61 | |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 62 | /* list of uncollectable objects */ |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 63 | static PyObject *garbage = NULL; |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 64 | |
| 65 | /* Python string to use if unhandled exception occurs */ |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 66 | static PyObject *gc_str = NULL; |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 67 | |
Tim Peters | 93ad66d | 2003-04-05 17:15:44 +0000 | [diff] [blame] | 68 | /* Python string used to look for __del__ attribute. */ |
| 69 | static PyObject *delstr = NULL; |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 70 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 71 | /* set for debugging information */ |
| 72 | #define DEBUG_STATS (1<<0) /* print collection statistics */ |
| 73 | #define DEBUG_COLLECTABLE (1<<1) /* print collectable objects */ |
| 74 | #define DEBUG_UNCOLLECTABLE (1<<2) /* print uncollectable objects */ |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 75 | #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 76 | #define DEBUG_LEAK DEBUG_COLLECTABLE | \ |
| 77 | DEBUG_UNCOLLECTABLE | \ |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 78 | DEBUG_SAVEALL |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 79 | static int debug; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 80 | static PyObject *tmod = NULL; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 81 | |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 82 | /*-------------------------------------------------------------------------- |
| 83 | gc_refs values. |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 84 | |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 85 | Between collections, every gc'ed object has one of two gc_refs values: |
| 86 | |
| 87 | GC_UNTRACKED |
| 88 | The initial state; objects returned by PyObject_GC_Malloc are in this |
| 89 | state. The object doesn't live in any generation list, and its |
| 90 | tp_traverse slot must not be called. |
| 91 | |
| 92 | GC_REACHABLE |
| 93 | The object lives in some generation list, and its tp_traverse is safe to |
| 94 | call. An object transitions to GC_REACHABLE when PyObject_GC_Track |
| 95 | is called. |
| 96 | |
| 97 | During a collection, gc_refs can temporarily take on other states: |
| 98 | |
| 99 | >= 0 |
| 100 | At the start of a collection, update_refs() copies the true refcount |
| 101 | to gc_refs, for each object in the generation being collected. |
| 102 | subtract_refs() then adjusts gc_refs so that it equals the number of |
| 103 | times an object is referenced directly from outside the generation |
| 104 | being collected. |
Martin v. Löwis | 774348c | 2002-11-09 19:54:06 +0000 | [diff] [blame] | 105 | gc_refs remains >= 0 throughout these steps. |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 106 | |
| 107 | GC_TENTATIVELY_UNREACHABLE |
| 108 | move_unreachable() then moves objects not reachable (whether directly or |
| 109 | indirectly) from outside the generation into an "unreachable" set. |
| 110 | Objects that are found to be reachable have gc_refs set to GC_REACHABLE |
| 111 | again. Objects that are found to be unreachable have gc_refs set to |
| 112 | GC_TENTATIVELY_UNREACHABLE. It's "tentatively" because the pass doing |
| 113 | this can't be sure until it ends, and GC_TENTATIVELY_UNREACHABLE may |
| 114 | transition back to GC_REACHABLE. |
| 115 | |
| 116 | Only objects with GC_TENTATIVELY_UNREACHABLE still set are candidates |
| 117 | for collection. If it's decided not to collect such an object (e.g., |
| 118 | it has a __del__ method), its gc_refs is restored to GC_REACHABLE again. |
| 119 | ---------------------------------------------------------------------------- |
| 120 | */ |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 121 | #define GC_UNTRACKED _PyGC_REFS_UNTRACKED |
| 122 | #define GC_REACHABLE _PyGC_REFS_REACHABLE |
| 123 | #define GC_TENTATIVELY_UNREACHABLE _PyGC_REFS_TENTATIVELY_UNREACHABLE |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 124 | |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 125 | #define IS_TRACKED(o) ((AS_GC(o))->gc.gc_refs != GC_UNTRACKED) |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 126 | #define IS_REACHABLE(o) ((AS_GC(o))->gc.gc_refs == GC_REACHABLE) |
| 127 | #define IS_TENTATIVELY_UNREACHABLE(o) ( \ |
| 128 | (AS_GC(o))->gc.gc_refs == GC_TENTATIVELY_UNREACHABLE) |
Neil Schemenauer | a2b11ec | 2002-05-21 15:53:24 +0000 | [diff] [blame] | 129 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 130 | /*** list functions ***/ |
| 131 | |
| 132 | static void |
| 133 | gc_list_init(PyGC_Head *list) |
| 134 | { |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 135 | list->gc.gc_prev = list; |
| 136 | list->gc.gc_next = list; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 139 | static int |
| 140 | gc_list_is_empty(PyGC_Head *list) |
| 141 | { |
| 142 | return (list->gc.gc_next == list); |
| 143 | } |
| 144 | |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 145 | #if 0 |
| 146 | /* This became unused after gc_list_move() was introduced. */ |
| 147 | /* Append `node` to `list`. */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 148 | static void |
| 149 | gc_list_append(PyGC_Head *node, PyGC_Head *list) |
| 150 | { |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 151 | node->gc.gc_next = list; |
| 152 | node->gc.gc_prev = list->gc.gc_prev; |
| 153 | node->gc.gc_prev->gc.gc_next = node; |
| 154 | list->gc.gc_prev = node; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 155 | } |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 156 | #endif |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 157 | |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 158 | /* Remove `node` from the gc list it's currently in. */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 159 | static void |
| 160 | gc_list_remove(PyGC_Head *node) |
| 161 | { |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 162 | node->gc.gc_prev->gc.gc_next = node->gc.gc_next; |
| 163 | node->gc.gc_next->gc.gc_prev = node->gc.gc_prev; |
| 164 | node->gc.gc_next = NULL; /* object is not currently tracked */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 165 | } |
| 166 | |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 167 | /* Move `node` from the gc list it's currently in (which is not explicitly |
| 168 | * named here) to the end of `list`. This is semantically the same as |
| 169 | * gc_list_remove(node) followed by gc_list_append(node, list). |
| 170 | */ |
| 171 | static void |
| 172 | gc_list_move(PyGC_Head *node, PyGC_Head *list) |
| 173 | { |
Tim Peters | bc1d1b8 | 2004-11-01 16:39:57 +0000 | [diff] [blame] | 174 | PyGC_Head *new_prev; |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 175 | PyGC_Head *current_prev = node->gc.gc_prev; |
| 176 | PyGC_Head *current_next = node->gc.gc_next; |
Tim Peters | bc1d1b8 | 2004-11-01 16:39:57 +0000 | [diff] [blame] | 177 | /* Unlink from current list. */ |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 178 | current_prev->gc.gc_next = current_next; |
| 179 | current_next->gc.gc_prev = current_prev; |
Tim Peters | bc1d1b8 | 2004-11-01 16:39:57 +0000 | [diff] [blame] | 180 | /* Relink at end of new list. */ |
| 181 | new_prev = node->gc.gc_prev = list->gc.gc_prev; |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 182 | new_prev->gc.gc_next = list->gc.gc_prev = node; |
Tim Peters | bc1d1b8 | 2004-11-01 16:39:57 +0000 | [diff] [blame] | 183 | node->gc.gc_next = list; |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /* append list `from` onto list `to`; `from` becomes an empty list */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 187 | static void |
| 188 | gc_list_merge(PyGC_Head *from, PyGC_Head *to) |
| 189 | { |
| 190 | PyGC_Head *tail; |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 191 | assert(from != to); |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 192 | if (!gc_list_is_empty(from)) { |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 193 | tail = to->gc.gc_prev; |
| 194 | tail->gc.gc_next = from->gc.gc_next; |
| 195 | tail->gc.gc_next->gc.gc_prev = tail; |
| 196 | to->gc.gc_prev = from->gc.gc_prev; |
| 197 | to->gc.gc_prev->gc.gc_next = to; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 198 | } |
| 199 | gc_list_init(from); |
| 200 | } |
| 201 | |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 202 | static Py_ssize_t |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 203 | gc_list_size(PyGC_Head *list) |
| 204 | { |
| 205 | PyGC_Head *gc; |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 206 | Py_ssize_t n = 0; |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 207 | for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) { |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 208 | n++; |
| 209 | } |
| 210 | return n; |
| 211 | } |
| 212 | |
Tim Peters | 259272b | 2003-04-06 19:41:39 +0000 | [diff] [blame] | 213 | /* Append objects in a GC list to a Python list. |
| 214 | * Return 0 if all OK, < 0 if error (out of memory for list). |
| 215 | */ |
| 216 | static int |
| 217 | append_objects(PyObject *py_list, PyGC_Head *gc_list) |
| 218 | { |
| 219 | PyGC_Head *gc; |
| 220 | for (gc = gc_list->gc.gc_next; gc != gc_list; gc = gc->gc.gc_next) { |
| 221 | PyObject *op = FROM_GC(gc); |
| 222 | if (op != py_list) { |
| 223 | if (PyList_Append(py_list, op)) { |
| 224 | return -1; /* exception */ |
| 225 | } |
| 226 | } |
| 227 | } |
| 228 | return 0; |
| 229 | } |
| 230 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 231 | /*** end of list stuff ***/ |
| 232 | |
| 233 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 234 | /* Set all gc_refs = ob_refcnt. After this, gc_refs is > 0 for all objects |
| 235 | * in containers, and is GC_REACHABLE for all tracked gc objects not in |
| 236 | * containers. |
Tim Peters | 8839617 | 2002-06-30 17:56:40 +0000 | [diff] [blame] | 237 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 238 | static void |
| 239 | update_refs(PyGC_Head *containers) |
| 240 | { |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 241 | PyGC_Head *gc = containers->gc.gc_next; |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 242 | for (; gc != containers; gc = gc->gc.gc_next) { |
| 243 | assert(gc->gc.gc_refs == GC_REACHABLE); |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 244 | gc->gc.gc_refs = Py_REFCNT(FROM_GC(gc)); |
Tim Peters | 780c497 | 2003-11-14 00:01:17 +0000 | [diff] [blame] | 245 | /* Python's cyclic gc should never see an incoming refcount |
| 246 | * of 0: if something decref'ed to 0, it should have been |
| 247 | * deallocated immediately at that time. |
| 248 | * Possible cause (if the assert triggers): a tp_dealloc |
| 249 | * routine left a gc-aware object tracked during its teardown |
| 250 | * phase, and did something-- or allowed something to happen -- |
| 251 | * that called back into Python. gc can trigger then, and may |
| 252 | * see the still-tracked dying object. Before this assert |
| 253 | * was added, such mistakes went on to allow gc to try to |
| 254 | * delete the object again. In a debug build, that caused |
| 255 | * a mysterious segfault, when _Py_ForgetReference tried |
| 256 | * to remove the object from the doubly-linked list of all |
| 257 | * objects a second time. In a release build, an actual |
| 258 | * double deallocation occurred, which leads to corruption |
| 259 | * of the allocator's internal bookkeeping pointers. That's |
| 260 | * so serious that maybe this should be a release-build |
| 261 | * check instead of an assert? |
| 262 | */ |
| 263 | assert(gc->gc.gc_refs != 0); |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 264 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 265 | } |
| 266 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 267 | /* A traversal callback for subtract_refs. */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 268 | static int |
| 269 | visit_decref(PyObject *op, void *data) |
| 270 | { |
Tim Peters | 93cd83e | 2002-06-30 21:31:03 +0000 | [diff] [blame] | 271 | assert(op != NULL); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 272 | if (PyObject_IS_GC(op)) { |
| 273 | PyGC_Head *gc = AS_GC(op); |
| 274 | /* We're only interested in gc_refs for objects in the |
| 275 | * generation being collected, which can be recognized |
| 276 | * because only they have positive gc_refs. |
| 277 | */ |
Tim Peters | aab713b | 2002-07-02 22:15:28 +0000 | [diff] [blame] | 278 | assert(gc->gc.gc_refs != 0); /* else refcount was too small */ |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 279 | if (gc->gc.gc_refs > 0) |
| 280 | gc->gc.gc_refs--; |
| 281 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 282 | return 0; |
| 283 | } |
| 284 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 285 | /* Subtract internal references from gc_refs. After this, gc_refs is >= 0 |
| 286 | * for all objects in containers, and is GC_REACHABLE for all tracked gc |
| 287 | * objects not in containers. The ones with gc_refs > 0 are directly |
| 288 | * reachable from outside containers, and so can't be collected. |
| 289 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 290 | static void |
| 291 | subtract_refs(PyGC_Head *containers) |
| 292 | { |
| 293 | traverseproc traverse; |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 294 | PyGC_Head *gc = containers->gc.gc_next; |
| 295 | for (; gc != containers; gc=gc->gc.gc_next) { |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 296 | traverse = Py_TYPE(FROM_GC(gc))->tp_traverse; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 297 | (void) traverse(FROM_GC(gc), |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 298 | (visitproc)visit_decref, |
| 299 | NULL); |
| 300 | } |
| 301 | } |
| 302 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 303 | /* A traversal callback for move_unreachable. */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 304 | static int |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 305 | visit_reachable(PyObject *op, PyGC_Head *reachable) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 306 | { |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 307 | if (PyObject_IS_GC(op)) { |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 308 | PyGC_Head *gc = AS_GC(op); |
Martin v. Löwis | 6db0e00 | 2006-03-01 16:56:25 +0000 | [diff] [blame] | 309 | const Py_ssize_t gc_refs = gc->gc.gc_refs; |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 310 | |
| 311 | if (gc_refs == 0) { |
| 312 | /* This is in move_unreachable's 'young' list, but |
| 313 | * the traversal hasn't yet gotten to it. All |
| 314 | * we need to do is tell move_unreachable that it's |
| 315 | * reachable. |
| 316 | */ |
| 317 | gc->gc.gc_refs = 1; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 318 | } |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 319 | else if (gc_refs == GC_TENTATIVELY_UNREACHABLE) { |
| 320 | /* This had gc_refs = 0 when move_unreachable got |
| 321 | * to it, but turns out it's reachable after all. |
| 322 | * Move it back to move_unreachable's 'young' list, |
| 323 | * and move_unreachable will eventually get to it |
| 324 | * again. |
| 325 | */ |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 326 | gc_list_move(gc, reachable); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 327 | gc->gc.gc_refs = 1; |
| 328 | } |
| 329 | /* Else there's nothing to do. |
| 330 | * If gc_refs > 0, it must be in move_unreachable's 'young' |
| 331 | * list, and move_unreachable will eventually get to it. |
| 332 | * If gc_refs == GC_REACHABLE, it's either in some other |
| 333 | * generation so we don't care about it, or move_unreachable |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 334 | * already dealt with it. |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 335 | * If gc_refs == GC_UNTRACKED, it must be ignored. |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 336 | */ |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 337 | else { |
| 338 | assert(gc_refs > 0 |
| 339 | || gc_refs == GC_REACHABLE |
| 340 | || gc_refs == GC_UNTRACKED); |
| 341 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 342 | } |
| 343 | return 0; |
| 344 | } |
| 345 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 346 | /* Move the unreachable objects from young to unreachable. After this, |
| 347 | * all objects in young have gc_refs = GC_REACHABLE, and all objects in |
| 348 | * unreachable have gc_refs = GC_TENTATIVELY_UNREACHABLE. All tracked |
| 349 | * gc objects not in young or unreachable still have gc_refs = GC_REACHABLE. |
| 350 | * All objects in young after this are directly or indirectly reachable |
| 351 | * from outside the original young; and all objects in unreachable are |
| 352 | * not. |
Tim Peters | 8839617 | 2002-06-30 17:56:40 +0000 | [diff] [blame] | 353 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 354 | static void |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 355 | move_unreachable(PyGC_Head *young, PyGC_Head *unreachable) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 356 | { |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 357 | PyGC_Head *gc = young->gc.gc_next; |
| 358 | |
| 359 | /* Invariants: all objects "to the left" of us in young have gc_refs |
| 360 | * = GC_REACHABLE, and are indeed reachable (directly or indirectly) |
| 361 | * from outside the young list as it was at entry. All other objects |
| 362 | * from the original young "to the left" of us are in unreachable now, |
| 363 | * and have gc_refs = GC_TENTATIVELY_UNREACHABLE. All objects to the |
| 364 | * left of us in 'young' now have been scanned, and no objects here |
| 365 | * or to the right have been scanned yet. |
| 366 | */ |
| 367 | |
| 368 | while (gc != young) { |
| 369 | PyGC_Head *next; |
| 370 | |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 371 | if (gc->gc.gc_refs) { |
| 372 | /* gc is definitely reachable from outside the |
| 373 | * original 'young'. Mark it as such, and traverse |
| 374 | * its pointers to find any other objects that may |
| 375 | * be directly reachable from it. Note that the |
| 376 | * call to tp_traverse may append objects to young, |
| 377 | * so we have to wait until it returns to determine |
| 378 | * the next object to visit. |
| 379 | */ |
| 380 | PyObject *op = FROM_GC(gc); |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 381 | traverseproc traverse = Py_TYPE(op)->tp_traverse; |
Tim Peters | 6fc13d9 | 2002-07-02 18:12:35 +0000 | [diff] [blame] | 382 | assert(gc->gc.gc_refs > 0); |
| 383 | gc->gc.gc_refs = GC_REACHABLE; |
| 384 | (void) traverse(op, |
| 385 | (visitproc)visit_reachable, |
| 386 | (void *)young); |
| 387 | next = gc->gc.gc_next; |
| 388 | } |
| 389 | else { |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 390 | /* This *may* be unreachable. To make progress, |
| 391 | * assume it is. gc isn't directly reachable from |
| 392 | * any object we've already traversed, but may be |
| 393 | * reachable from an object we haven't gotten to yet. |
| 394 | * visit_reachable will eventually move gc back into |
| 395 | * young if that's so, and we'll see it again. |
| 396 | */ |
| 397 | next = gc->gc.gc_next; |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 398 | gc_list_move(gc, unreachable); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 399 | gc->gc.gc_refs = GC_TENTATIVELY_UNREACHABLE; |
| 400 | } |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 401 | gc = next; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | |
Amaury Forgeot d'Arc | ad8dcd5 | 2007-12-10 23:58:35 +0000 | [diff] [blame] | 405 | /* Return true if object has a finalization method. */ |
Neil Schemenauer | a765c12 | 2001-11-01 17:35:23 +0000 | [diff] [blame] | 406 | static int |
| 407 | has_finalizer(PyObject *op) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 408 | { |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 409 | if (PyGen_CheckExact(op)) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 410 | return PyGen_NeedsFinalizing((PyGenObject *)op); |
| 411 | else |
Thomas Wouters | 3dfc3c1 | 2006-08-21 22:15:41 +0000 | [diff] [blame] | 412 | return op->ob_type->tp_del != NULL; |
Neil Schemenauer | a765c12 | 2001-11-01 17:35:23 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 415 | /* Move the objects in unreachable with __del__ methods into `finalizers`. |
| 416 | * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the |
| 417 | * objects remaining in unreachable are left at GC_TENTATIVELY_UNREACHABLE. |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 418 | */ |
Neil Schemenauer | a765c12 | 2001-11-01 17:35:23 +0000 | [diff] [blame] | 419 | static void |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 420 | move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers) |
Neil Schemenauer | a765c12 | 2001-11-01 17:35:23 +0000 | [diff] [blame] | 421 | { |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 422 | PyGC_Head *gc; |
| 423 | PyGC_Head *next; |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 424 | |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 425 | /* March over unreachable. Move objects with finalizers into |
| 426 | * `finalizers`. |
| 427 | */ |
| 428 | for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) { |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 429 | PyObject *op = FROM_GC(gc); |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 430 | |
Tim Peters | f6ae7a4 | 2003-04-05 18:40:50 +0000 | [diff] [blame] | 431 | assert(IS_TENTATIVELY_UNREACHABLE(op)); |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 432 | next = gc->gc.gc_next; |
Tim Peters | f6ae7a4 | 2003-04-05 18:40:50 +0000 | [diff] [blame] | 433 | |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 434 | if (has_finalizer(op)) { |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 435 | gc_list_move(gc, finalizers); |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 436 | gc->gc.gc_refs = GC_REACHABLE; |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 437 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 438 | } |
| 439 | } |
| 440 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 441 | /* A traversal callback for move_finalizer_reachable. */ |
| 442 | static int |
| 443 | visit_move(PyObject *op, PyGC_Head *tolist) |
| 444 | { |
| 445 | if (PyObject_IS_GC(op)) { |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 446 | if (IS_TENTATIVELY_UNREACHABLE(op)) { |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 447 | PyGC_Head *gc = AS_GC(op); |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 448 | gc_list_move(gc, tolist); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 449 | gc->gc.gc_refs = GC_REACHABLE; |
| 450 | } |
| 451 | } |
| 452 | return 0; |
| 453 | } |
| 454 | |
| 455 | /* Move objects that are reachable from finalizers, from the unreachable set |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 456 | * into finalizers set. |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 457 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 458 | static void |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 459 | move_finalizer_reachable(PyGC_Head *finalizers) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 460 | { |
| 461 | traverseproc traverse; |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 462 | PyGC_Head *gc = finalizers->gc.gc_next; |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 463 | for (; gc != finalizers; gc = gc->gc.gc_next) { |
| 464 | /* Note that the finalizers list may grow during this. */ |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 465 | traverse = Py_TYPE(FROM_GC(gc))->tp_traverse; |
Tim Peters | 8839617 | 2002-06-30 17:56:40 +0000 | [diff] [blame] | 466 | (void) traverse(FROM_GC(gc), |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 467 | (visitproc)visit_move, |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 468 | (void *)finalizers); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 472 | /* Clear all weakrefs to unreachable objects, and if such a weakref has a |
| 473 | * callback, invoke it if necessary. Note that it's possible for such |
| 474 | * weakrefs to be outside the unreachable set -- indeed, those are precisely |
| 475 | * the weakrefs whose callbacks must be invoked. See gc_weakref.txt for |
| 476 | * overview & some details. Some weakrefs with callbacks may be reclaimed |
| 477 | * directly by this routine; the number reclaimed is the return value. Other |
| 478 | * weakrefs with callbacks may be moved into the `old` generation. Objects |
| 479 | * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in |
| 480 | * unreachable are left at GC_TENTATIVELY_UNREACHABLE. When this returns, |
| 481 | * no object in `unreachable` is weakly referenced anymore. |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 482 | */ |
| 483 | static int |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 484 | handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old) |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 485 | { |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 486 | PyGC_Head *gc; |
| 487 | PyObject *op; /* generally FROM_GC(gc) */ |
| 488 | PyWeakReference *wr; /* generally a cast of op */ |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 489 | PyGC_Head wrcb_to_call; /* weakrefs with callbacks to call */ |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 490 | PyGC_Head *next; |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 491 | int num_freed = 0; |
| 492 | |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 493 | gc_list_init(&wrcb_to_call); |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 494 | |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 495 | /* Clear all weakrefs to the objects in unreachable. If such a weakref |
| 496 | * also has a callback, move it into `wrcb_to_call` if the callback |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 497 | * needs to be invoked. Note that we cannot invoke any callbacks until |
| 498 | * all weakrefs to unreachable objects are cleared, lest the callback |
| 499 | * resurrect an unreachable object via a still-active weakref. We |
| 500 | * make another pass over wrcb_to_call, invoking callbacks, after this |
| 501 | * pass completes. |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 502 | */ |
| 503 | for (gc = unreachable->gc.gc_next; gc != unreachable; gc = next) { |
| 504 | PyWeakReference **wrlist; |
| 505 | |
| 506 | op = FROM_GC(gc); |
| 507 | assert(IS_TENTATIVELY_UNREACHABLE(op)); |
| 508 | next = gc->gc.gc_next; |
| 509 | |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 510 | if (! PyType_SUPPORTS_WEAKREFS(Py_TYPE(op))) |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 511 | continue; |
| 512 | |
| 513 | /* It supports weakrefs. Does it have any? */ |
| 514 | wrlist = (PyWeakReference **) |
| 515 | PyObject_GET_WEAKREFS_LISTPTR(op); |
| 516 | |
| 517 | /* `op` may have some weakrefs. March over the list, clear |
| 518 | * all the weakrefs, and move the weakrefs with callbacks |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 519 | * that must be called into wrcb_to_call. |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 520 | */ |
| 521 | for (wr = *wrlist; wr != NULL; wr = *wrlist) { |
| 522 | PyGC_Head *wrasgc; /* AS_GC(wr) */ |
| 523 | |
| 524 | /* _PyWeakref_ClearRef clears the weakref but leaves |
| 525 | * the callback pointer intact. Obscure: it also |
| 526 | * changes *wrlist. |
| 527 | */ |
| 528 | assert(wr->wr_object == op); |
| 529 | _PyWeakref_ClearRef(wr); |
| 530 | assert(wr->wr_object == Py_None); |
| 531 | if (wr->wr_callback == NULL) |
| 532 | continue; /* no callback */ |
| 533 | |
| 534 | /* Headache time. `op` is going away, and is weakly referenced by |
| 535 | * `wr`, which has a callback. Should the callback be invoked? If wr |
| 536 | * is also trash, no: |
| 537 | * |
| 538 | * 1. There's no need to call it. The object and the weakref are |
| 539 | * both going away, so it's legitimate to pretend the weakref is |
| 540 | * going away first. The user has to ensure a weakref outlives its |
| 541 | * referent if they want a guarantee that the wr callback will get |
| 542 | * invoked. |
| 543 | * |
| 544 | * 2. It may be catastrophic to call it. If the callback is also in |
| 545 | * cyclic trash (CT), then although the CT is unreachable from |
| 546 | * outside the current generation, CT may be reachable from the |
| 547 | * callback. Then the callback could resurrect insane objects. |
| 548 | * |
| 549 | * Since the callback is never needed and may be unsafe in this case, |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 550 | * wr is simply left in the unreachable set. Note that because we |
| 551 | * already called _PyWeakref_ClearRef(wr), its callback will never |
| 552 | * trigger. |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 553 | * |
| 554 | * OTOH, if wr isn't part of CT, we should invoke the callback: the |
| 555 | * weakref outlived the trash. Note that since wr isn't CT in this |
| 556 | * case, its callback can't be CT either -- wr acted as an external |
| 557 | * root to this generation, and therefore its callback did too. So |
| 558 | * nothing in CT is reachable from the callback either, so it's hard |
| 559 | * to imagine how calling it later could create a problem for us. wr |
| 560 | * is moved to wrcb_to_call in this case. |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 561 | */ |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 562 | if (IS_TENTATIVELY_UNREACHABLE(wr)) |
| 563 | continue; |
| 564 | assert(IS_REACHABLE(wr)); |
| 565 | |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 566 | /* Create a new reference so that wr can't go away |
| 567 | * before we can process it again. |
| 568 | */ |
| 569 | Py_INCREF(wr); |
| 570 | |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 571 | /* Move wr to wrcb_to_call, for the next pass. */ |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 572 | wrasgc = AS_GC(wr); |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 573 | assert(wrasgc != next); /* wrasgc is reachable, but |
| 574 | next isn't, so they can't |
| 575 | be the same */ |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 576 | gc_list_move(wrasgc, &wrcb_to_call); |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 577 | } |
| 578 | } |
| 579 | |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 580 | /* Invoke the callbacks we decided to honor. It's safe to invoke them |
| 581 | * because they can't reference unreachable objects. |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 582 | */ |
| 583 | while (! gc_list_is_empty(&wrcb_to_call)) { |
| 584 | PyObject *temp; |
| 585 | PyObject *callback; |
| 586 | |
| 587 | gc = wrcb_to_call.gc.gc_next; |
| 588 | op = FROM_GC(gc); |
| 589 | assert(IS_REACHABLE(op)); |
| 590 | assert(PyWeakref_Check(op)); |
| 591 | wr = (PyWeakReference *)op; |
| 592 | callback = wr->wr_callback; |
| 593 | assert(callback != NULL); |
| 594 | |
| 595 | /* copy-paste of weakrefobject.c's handle_callback() */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 596 | temp = PyObject_CallFunctionObjArgs(callback, wr, NULL); |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 597 | if (temp == NULL) |
| 598 | PyErr_WriteUnraisable(callback); |
| 599 | else |
| 600 | Py_DECREF(temp); |
| 601 | |
| 602 | /* Give up the reference we created in the first pass. When |
| 603 | * op's refcount hits 0 (which it may or may not do right now), |
Tim Peters | cc2a866 | 2004-10-31 22:12:43 +0000 | [diff] [blame] | 604 | * op's tp_dealloc will decref op->wr_callback too. Note |
| 605 | * that the refcount probably will hit 0 now, and because this |
| 606 | * weakref was reachable to begin with, gc didn't already |
| 607 | * add it to its count of freed objects. Example: a reachable |
| 608 | * weak value dict maps some key to this reachable weakref. |
| 609 | * The callback removes this key->weakref mapping from the |
| 610 | * dict, leaving no other references to the weakref (excepting |
| 611 | * ours). |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 612 | */ |
| 613 | Py_DECREF(op); |
| 614 | if (wrcb_to_call.gc.gc_next == gc) { |
| 615 | /* object is still alive -- move it */ |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 616 | gc_list_move(gc, old); |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 617 | } |
| 618 | else |
| 619 | ++num_freed; |
| 620 | } |
| 621 | |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 622 | return num_freed; |
| 623 | } |
| 624 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 625 | static void |
Jeremy Hylton | 0625777 | 2000-08-31 15:10:24 +0000 | [diff] [blame] | 626 | debug_cycle(char *msg, PyObject *op) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 627 | { |
Amaury Forgeot d'Arc | ad8dcd5 | 2007-12-10 23:58:35 +0000 | [diff] [blame] | 628 | PySys_WriteStderr("gc: %.100s <%.100s %p>\n", |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 629 | msg, Py_TYPE(op)->tp_name, op); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 630 | } |
| 631 | |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 632 | /* Handle uncollectable garbage (cycles with finalizers, and stuff reachable |
| 633 | * only from such cycles). |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 634 | * If DEBUG_SAVEALL, all objects in finalizers are appended to the module |
| 635 | * garbage list (a Python list), else only the objects in finalizers with |
| 636 | * __del__ methods are appended to garbage. All objects in finalizers are |
| 637 | * merged into the old list regardless. |
Tim Peters | 259272b | 2003-04-06 19:41:39 +0000 | [diff] [blame] | 638 | * Returns 0 if all OK, <0 on error (out of memory to grow the garbage list). |
| 639 | * The finalizers list is made empty on a successful return. |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 640 | */ |
Tim Peters | 259272b | 2003-04-06 19:41:39 +0000 | [diff] [blame] | 641 | static int |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 642 | handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 643 | { |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 644 | PyGC_Head *gc = finalizers->gc.gc_next; |
| 645 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 646 | if (garbage == NULL) { |
| 647 | garbage = PyList_New(0); |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 648 | if (garbage == NULL) |
| 649 | Py_FatalError("gc couldn't create gc.garbage list"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 650 | } |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 651 | for (; gc != finalizers; gc = gc->gc.gc_next) { |
| 652 | PyObject *op = FROM_GC(gc); |
| 653 | |
| 654 | if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) { |
| 655 | if (PyList_Append(garbage, op) < 0) |
| 656 | return -1; |
| 657 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 658 | } |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 659 | |
Tim Peters | 259272b | 2003-04-06 19:41:39 +0000 | [diff] [blame] | 660 | gc_list_merge(finalizers, old); |
| 661 | return 0; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 662 | } |
| 663 | |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 664 | /* Break reference cycles by clearing the containers involved. This is |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 665 | * tricky business as the lists can be changing and we don't know which |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 666 | * objects may be freed. It is possible I screwed something up here. |
| 667 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 668 | static void |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 669 | delete_garbage(PyGC_Head *collectable, PyGC_Head *old) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 670 | { |
| 671 | inquiry clear; |
| 672 | |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 673 | while (!gc_list_is_empty(collectable)) { |
| 674 | PyGC_Head *gc = collectable->gc.gc_next; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 675 | PyObject *op = FROM_GC(gc); |
Tim Peters | 8839617 | 2002-06-30 17:56:40 +0000 | [diff] [blame] | 676 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 677 | assert(IS_TENTATIVELY_UNREACHABLE(op)); |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 678 | if (debug & DEBUG_SAVEALL) { |
| 679 | PyList_Append(garbage, op); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 680 | } |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 681 | else { |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 682 | if ((clear = Py_TYPE(op)->tp_clear) != NULL) { |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 683 | Py_INCREF(op); |
Jeremy Hylton | 8a13518 | 2002-06-06 23:23:55 +0000 | [diff] [blame] | 684 | clear(op); |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 685 | Py_DECREF(op); |
| 686 | } |
| 687 | } |
Jeremy Hylton | ce136e9 | 2003-04-04 19:59:06 +0000 | [diff] [blame] | 688 | if (collectable->gc.gc_next == gc) { |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 689 | /* object is still alive, move it, it may die later */ |
Tim Peters | e2d5918 | 2004-11-01 01:39:08 +0000 | [diff] [blame] | 690 | gc_list_move(gc, old); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 691 | gc->gc.gc_refs = GC_REACHABLE; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 692 | } |
| 693 | } |
| 694 | } |
| 695 | |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 696 | /* Clear all free lists |
| 697 | * All free lists are cleared during the collection of the highest generation. |
| 698 | * Allocated items in the free list may keep a pymalloc arena occupied. |
| 699 | * Clearing the free lists may give back memory to the OS earlier. |
| 700 | */ |
| 701 | static void |
| 702 | clear_freelists(void) |
| 703 | { |
| 704 | (void)PyMethod_ClearFreeList(); |
| 705 | (void)PyFrame_ClearFreeList(); |
| 706 | (void)PyCFunction_ClearFreeList(); |
| 707 | (void)PyTuple_ClearFreeList(); |
| 708 | (void)PyUnicode_ClearFreeList(); |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 709 | (void)PyFloat_ClearFreeList(); |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 710 | } |
| 711 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 712 | /* This is the main function. Read this to understand how the |
| 713 | * collection process works. */ |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 714 | static Py_ssize_t |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 715 | collect(int generation) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 716 | { |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 717 | int i; |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 718 | Py_ssize_t m = 0; /* # objects collected */ |
| 719 | Py_ssize_t n = 0; /* # unreachable objects that couldn't be collected */ |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 720 | PyGC_Head *young; /* the generation we are examining */ |
| 721 | PyGC_Head *old; /* next older generation */ |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 722 | PyGC_Head unreachable; /* non-problematic unreachable trash */ |
| 723 | PyGC_Head finalizers; /* objects with, & reachable from, __del__ */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 724 | PyGC_Head *gc; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 725 | double t1 = 0.0; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 726 | |
Tim Peters | 93ad66d | 2003-04-05 17:15:44 +0000 | [diff] [blame] | 727 | if (delstr == NULL) { |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 728 | delstr = PyUnicode_InternFromString("__del__"); |
Tim Peters | 93ad66d | 2003-04-05 17:15:44 +0000 | [diff] [blame] | 729 | if (delstr == NULL) |
| 730 | Py_FatalError("gc couldn't allocate \"__del__\""); |
| 731 | } |
| 732 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 733 | if (debug & DEBUG_STATS) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 734 | if (tmod != NULL) { |
| 735 | PyObject *f = PyObject_CallMethod(tmod, "time", NULL); |
| 736 | if (f == NULL) { |
| 737 | PyErr_Clear(); |
| 738 | } |
| 739 | else { |
| 740 | t1 = PyFloat_AsDouble(f); |
| 741 | Py_DECREF(f); |
| 742 | } |
| 743 | } |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 744 | PySys_WriteStderr("gc: collecting generation %d...\n", |
| 745 | generation); |
| 746 | PySys_WriteStderr("gc: objects in each generation:"); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 747 | for (i = 0; i < NUM_GENERATIONS; i++) |
| 748 | PySys_WriteStderr(" %" PY_FORMAT_SIZE_T "d", |
| 749 | gc_list_size(GEN_HEAD(i))); |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 750 | PySys_WriteStderr("\n"); |
| 751 | } |
| 752 | |
| 753 | /* update collection and allocation counters */ |
| 754 | if (generation+1 < NUM_GENERATIONS) |
| 755 | generations[generation+1].count += 1; |
| 756 | for (i = 0; i <= generation; i++) |
Neil Schemenauer | c905164 | 2002-06-28 19:16:04 +0000 | [diff] [blame] | 757 | generations[i].count = 0; |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 758 | |
| 759 | /* merge younger generations with one we are currently collecting */ |
| 760 | for (i = 0; i < generation; i++) { |
| 761 | gc_list_merge(GEN_HEAD(i), GEN_HEAD(generation)); |
| 762 | } |
| 763 | |
| 764 | /* handy references */ |
| 765 | young = GEN_HEAD(generation); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 766 | if (generation < NUM_GENERATIONS-1) |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 767 | old = GEN_HEAD(generation+1); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 768 | else |
| 769 | old = young; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 770 | |
| 771 | /* Using ob_refcnt and gc_refs, calculate which objects in the |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 772 | * container set are reachable from outside the set (i.e., have a |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 773 | * refcount greater than 0 when all the references within the |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 774 | * set are taken into account). |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 775 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 776 | update_refs(young); |
| 777 | subtract_refs(young); |
| 778 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 779 | /* Leave everything reachable from outside young in young, and move |
| 780 | * everything else (in young) to unreachable. |
| 781 | * NOTE: This used to move the reachable objects into a reachable |
| 782 | * set instead. But most things usually turn out to be reachable, |
| 783 | * so it's more efficient to move the unreachable things. |
| 784 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 785 | gc_list_init(&unreachable); |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 786 | move_unreachable(young, &unreachable); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 787 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 788 | /* Move reachable objects to next generation. */ |
| 789 | if (young != old) |
| 790 | gc_list_merge(young, old); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 791 | |
Tim Peters | 19b74c7 | 2002-07-01 03:52:19 +0000 | [diff] [blame] | 792 | /* All objects in unreachable are trash, but objects reachable from |
| 793 | * finalizers can't safely be deleted. Python programmers should take |
| 794 | * care not to create such things. For Python, finalizers means |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 795 | * instance objects with __del__ methods. Weakrefs with callbacks |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 796 | * can also call arbitrary Python code but they will be dealt with by |
| 797 | * handle_weakrefs(). |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 798 | */ |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 799 | gc_list_init(&finalizers); |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 800 | move_finalizers(&unreachable, &finalizers); |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 801 | /* finalizers contains the unreachable objects with a finalizer; |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 802 | * unreachable objects reachable *from* those are also uncollectable, |
| 803 | * and we move those into the finalizers list too. |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 804 | */ |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 805 | move_finalizer_reachable(&finalizers); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 806 | |
| 807 | /* Collect statistics on collectable objects found and print |
Tim Peters | 403a203 | 2003-11-20 21:21:46 +0000 | [diff] [blame] | 808 | * debugging information. |
| 809 | */ |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 810 | for (gc = unreachable.gc.gc_next; gc != &unreachable; |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 811 | gc = gc->gc.gc_next) { |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 812 | m++; |
Jeremy Hylton | 0625777 | 2000-08-31 15:10:24 +0000 | [diff] [blame] | 813 | if (debug & DEBUG_COLLECTABLE) { |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 814 | debug_cycle("collectable", FROM_GC(gc)); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 815 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 816 | if (tmod != NULL && (debug & DEBUG_STATS)) { |
| 817 | PyObject *f = PyObject_CallMethod(tmod, "time", NULL); |
| 818 | if (f == NULL) { |
| 819 | PyErr_Clear(); |
| 820 | } |
| 821 | else { |
| 822 | t1 = PyFloat_AsDouble(f)-t1; |
| 823 | Py_DECREF(f); |
| 824 | PySys_WriteStderr("gc: %.4fs elapsed.\n", t1); |
| 825 | } |
| 826 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 827 | } |
Tim Peters | ead8b7a | 2004-10-30 23:09:22 +0000 | [diff] [blame] | 828 | |
| 829 | /* Clear weakrefs and invoke callbacks as necessary. */ |
| 830 | m += handle_weakrefs(&unreachable, old); |
| 831 | |
Tim Peters | fb2ab4d | 2003-04-07 22:41:24 +0000 | [diff] [blame] | 832 | /* Call tp_clear on objects in the unreachable set. This will cause |
| 833 | * the reference cycles to be broken. It may also cause some objects |
| 834 | * in finalizers to be freed. |
| 835 | */ |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 836 | delete_garbage(&unreachable, old); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 837 | |
| 838 | /* Collect statistics on uncollectable objects found and print |
| 839 | * debugging information. */ |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 840 | for (gc = finalizers.gc.gc_next; |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 841 | gc != &finalizers; |
| 842 | gc = gc->gc.gc_next) { |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 843 | n++; |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 844 | if (debug & DEBUG_UNCOLLECTABLE) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 845 | debug_cycle("uncollectable", FROM_GC(gc)); |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 846 | } |
Jeremy Hylton | 0625777 | 2000-08-31 15:10:24 +0000 | [diff] [blame] | 847 | if (debug & DEBUG_STATS) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 848 | if (m == 0 && n == 0) |
Jeremy Hylton | 0625777 | 2000-08-31 15:10:24 +0000 | [diff] [blame] | 849 | PySys_WriteStderr("gc: done.\n"); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 850 | else |
Neal Norwitz | e22373d | 2006-03-06 23:31:56 +0000 | [diff] [blame] | 851 | PySys_WriteStderr( |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 852 | "gc: done, " |
| 853 | "%" PY_FORMAT_SIZE_T "d unreachable, " |
| 854 | "%" PY_FORMAT_SIZE_T "d uncollectable.\n", |
Neal Norwitz | e22373d | 2006-03-06 23:31:56 +0000 | [diff] [blame] | 855 | n+m, n); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | /* Append instances in the uncollectable set to a Python |
| 859 | * reachable list of garbage. The programmer has to deal with |
Tim Peters | bf384c2 | 2003-04-06 00:11:39 +0000 | [diff] [blame] | 860 | * this if they insist on creating this type of structure. |
| 861 | */ |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 862 | (void)handle_finalizers(&finalizers, old); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 863 | |
Christian Heimes | a156e09 | 2008-02-16 07:38:31 +0000 | [diff] [blame] | 864 | /* Clear free list only during the collection of the higest |
| 865 | * generation */ |
| 866 | if (generation == NUM_GENERATIONS-1) { |
| 867 | clear_freelists(); |
| 868 | } |
| 869 | |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 870 | if (PyErr_Occurred()) { |
Tim Peters | f6b8045 | 2003-04-07 19:21:15 +0000 | [diff] [blame] | 871 | if (gc_str == NULL) |
Neal Norwitz | 53cbdaa | 2007-08-23 21:42:55 +0000 | [diff] [blame] | 872 | gc_str = PyUnicode_FromString("garbage collection"); |
Jeremy Hylton | b709df3 | 2000-09-01 02:47:25 +0000 | [diff] [blame] | 873 | PyErr_WriteUnraisable(gc_str); |
| 874 | Py_FatalError("unexpected exception during garbage collection"); |
| 875 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 876 | return n+m; |
| 877 | } |
| 878 | |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 879 | static Py_ssize_t |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 880 | collect_generations(void) |
| 881 | { |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 882 | int i; |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 883 | Py_ssize_t n = 0; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 884 | |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 885 | /* Find the oldest generation (higest numbered) where the count |
| 886 | * exceeds the threshold. Objects in the that generation and |
| 887 | * generations younger than it will be collected. */ |
| 888 | for (i = NUM_GENERATIONS-1; i >= 0; i--) { |
| 889 | if (generations[i].count > generations[i].threshold) { |
| 890 | n = collect(i); |
| 891 | break; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 892 | } |
| 893 | } |
| 894 | return n; |
| 895 | } |
| 896 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 897 | PyDoc_STRVAR(gc_enable__doc__, |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 898 | "enable() -> None\n" |
| 899 | "\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 900 | "Enable automatic garbage collection.\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 901 | |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 902 | static PyObject * |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 903 | gc_enable(PyObject *self, PyObject *noargs) |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 904 | { |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 905 | enabled = 1; |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 906 | Py_INCREF(Py_None); |
| 907 | return Py_None; |
| 908 | } |
| 909 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 910 | PyDoc_STRVAR(gc_disable__doc__, |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 911 | "disable() -> None\n" |
| 912 | "\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 913 | "Disable automatic garbage collection.\n"); |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 914 | |
| 915 | static PyObject * |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 916 | gc_disable(PyObject *self, PyObject *noargs) |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 917 | { |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 918 | enabled = 0; |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 919 | Py_INCREF(Py_None); |
| 920 | return Py_None; |
| 921 | } |
| 922 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 923 | PyDoc_STRVAR(gc_isenabled__doc__, |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 924 | "isenabled() -> status\n" |
| 925 | "\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 926 | "Returns true if automatic garbage collection is enabled.\n"); |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 927 | |
| 928 | static PyObject * |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 929 | gc_isenabled(PyObject *self, PyObject *noargs) |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 930 | { |
Raymond Hettinger | 674d56b | 2004-01-04 04:00:13 +0000 | [diff] [blame] | 931 | return PyBool_FromLong((long)enabled); |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 932 | } |
| 933 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 934 | PyDoc_STRVAR(gc_collect__doc__, |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 935 | "collect([generation]) -> n\n" |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 936 | "\n" |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 937 | "With no arguments, run a full collection. The optional argument\n" |
| 938 | "may be an integer specifying which generation to collect. A ValueError\n" |
| 939 | "is raised if the generation number is invalid.\n\n" |
| 940 | "The number of unreachable objects is returned.\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 941 | |
| 942 | static PyObject * |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 943 | gc_collect(PyObject *self, PyObject *args, PyObject *kws) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 944 | { |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 945 | static char *keywords[] = {"generation", NULL}; |
| 946 | int genarg = NUM_GENERATIONS - 1; |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 947 | Py_ssize_t n; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 948 | |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 949 | if (!PyArg_ParseTupleAndKeywords(args, kws, "|i", keywords, &genarg)) |
| 950 | return NULL; |
| 951 | |
| 952 | else if (genarg < 0 || genarg >= NUM_GENERATIONS) { |
| 953 | PyErr_SetString(PyExc_ValueError, "invalid generation"); |
| 954 | return NULL; |
| 955 | } |
| 956 | |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 957 | if (collecting) |
Neil Schemenauer | e8c40cb | 2001-10-31 23:09:35 +0000 | [diff] [blame] | 958 | n = 0; /* already collecting, don't do anything */ |
Neil Schemenauer | e8c40cb | 2001-10-31 23:09:35 +0000 | [diff] [blame] | 959 | else { |
| 960 | collecting = 1; |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 961 | n = collect(genarg); |
Neil Schemenauer | e8c40cb | 2001-10-31 23:09:35 +0000 | [diff] [blame] | 962 | collecting = 0; |
| 963 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 964 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 965 | return PyLong_FromSsize_t(n); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 966 | } |
| 967 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 968 | PyDoc_STRVAR(gc_set_debug__doc__, |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 969 | "set_debug(flags) -> None\n" |
| 970 | "\n" |
| 971 | "Set the garbage collection debugging flags. Debugging information is\n" |
| 972 | "written to sys.stderr.\n" |
| 973 | "\n" |
| 974 | "flags is an integer and can have the following bits turned on:\n" |
| 975 | "\n" |
| 976 | " DEBUG_STATS - Print statistics during collection.\n" |
| 977 | " DEBUG_COLLECTABLE - Print collectable objects found.\n" |
| 978 | " DEBUG_UNCOLLECTABLE - Print unreachable but uncollectable objects found.\n" |
Neil Schemenauer | 544de1e | 2000-09-22 15:22:38 +0000 | [diff] [blame] | 979 | " DEBUG_SAVEALL - Save objects to gc.garbage rather than freeing them.\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 980 | " DEBUG_LEAK - Debug leaking programs (everything but STATS).\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 981 | |
| 982 | static PyObject * |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 983 | gc_set_debug(PyObject *self, PyObject *args) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 984 | { |
Neil Schemenauer | 7760cff | 2000-09-22 22:35:36 +0000 | [diff] [blame] | 985 | if (!PyArg_ParseTuple(args, "i:set_debug", &debug)) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 986 | return NULL; |
| 987 | |
| 988 | Py_INCREF(Py_None); |
| 989 | return Py_None; |
| 990 | } |
| 991 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 992 | PyDoc_STRVAR(gc_get_debug__doc__, |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 993 | "get_debug() -> flags\n" |
| 994 | "\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 995 | "Get the garbage collection debugging flags.\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 996 | |
| 997 | static PyObject * |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 998 | gc_get_debug(PyObject *self, PyObject *noargs) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 999 | { |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1000 | return Py_BuildValue("i", debug); |
| 1001 | } |
| 1002 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1003 | PyDoc_STRVAR(gc_set_thresh__doc__, |
Neal Norwitz | 2a47c0f | 2002-01-29 00:53:41 +0000 | [diff] [blame] | 1004 | "set_threshold(threshold0, [threshold1, threshold2]) -> None\n" |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1005 | "\n" |
| 1006 | "Sets the collection thresholds. Setting threshold0 to zero disables\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1007 | "collection.\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1008 | |
| 1009 | static PyObject * |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 1010 | gc_set_thresh(PyObject *self, PyObject *args) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1011 | { |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1012 | int i; |
| 1013 | if (!PyArg_ParseTuple(args, "i|ii:set_threshold", |
| 1014 | &generations[0].threshold, |
| 1015 | &generations[1].threshold, |
| 1016 | &generations[2].threshold)) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1017 | return NULL; |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1018 | for (i = 2; i < NUM_GENERATIONS; i++) { |
| 1019 | /* generations higher than 2 get the same threshold */ |
| 1020 | generations[i].threshold = generations[2].threshold; |
| 1021 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1022 | |
| 1023 | Py_INCREF(Py_None); |
| 1024 | return Py_None; |
| 1025 | } |
| 1026 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1027 | PyDoc_STRVAR(gc_get_thresh__doc__, |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1028 | "get_threshold() -> (threshold0, threshold1, threshold2)\n" |
| 1029 | "\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1030 | "Return the current collection thresholds\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1031 | |
| 1032 | static PyObject * |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1033 | gc_get_thresh(PyObject *self, PyObject *noargs) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1034 | { |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1035 | return Py_BuildValue("(iii)", |
| 1036 | generations[0].threshold, |
| 1037 | generations[1].threshold, |
| 1038 | generations[2].threshold); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1039 | } |
| 1040 | |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 1041 | PyDoc_STRVAR(gc_get_count__doc__, |
| 1042 | "get_count() -> (count0, count1, count2)\n" |
| 1043 | "\n" |
| 1044 | "Return the current collection counts\n"); |
| 1045 | |
| 1046 | static PyObject * |
| 1047 | gc_get_count(PyObject *self, PyObject *noargs) |
| 1048 | { |
| 1049 | return Py_BuildValue("(iii)", |
| 1050 | generations[0].count, |
| 1051 | generations[1].count, |
| 1052 | generations[2].count); |
| 1053 | } |
| 1054 | |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1055 | static int |
Martin v. Löwis | 560da62 | 2001-11-24 09:24:51 +0000 | [diff] [blame] | 1056 | referrersvisit(PyObject* obj, PyObject *objs) |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1057 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1058 | Py_ssize_t i; |
Martin v. Löwis | c8fe77b | 2001-11-29 18:08:31 +0000 | [diff] [blame] | 1059 | for (i = 0; i < PyTuple_GET_SIZE(objs); i++) |
| 1060 | if (PyTuple_GET_ITEM(objs, i) == obj) |
| 1061 | return 1; |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1062 | return 0; |
| 1063 | } |
| 1064 | |
Neil Schemenauer | 17e7be6 | 2001-08-10 14:46:47 +0000 | [diff] [blame] | 1065 | static int |
Martin v. Löwis | 560da62 | 2001-11-24 09:24:51 +0000 | [diff] [blame] | 1066 | gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist) |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1067 | { |
| 1068 | PyGC_Head *gc; |
| 1069 | PyObject *obj; |
| 1070 | traverseproc traverse; |
Tim Peters | 9e4ca10 | 2001-10-11 18:31:31 +0000 | [diff] [blame] | 1071 | for (gc = list->gc.gc_next; gc != list; gc = gc->gc.gc_next) { |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1072 | obj = FROM_GC(gc); |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 1073 | traverse = Py_TYPE(obj)->tp_traverse; |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1074 | if (obj == objs || obj == resultlist) |
| 1075 | continue; |
Martin v. Löwis | 560da62 | 2001-11-24 09:24:51 +0000 | [diff] [blame] | 1076 | if (traverse(obj, (visitproc)referrersvisit, objs)) { |
Neil Schemenauer | 17e7be6 | 2001-08-10 14:46:47 +0000 | [diff] [blame] | 1077 | if (PyList_Append(resultlist, obj) < 0) |
| 1078 | return 0; /* error */ |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1079 | } |
| 1080 | } |
Neil Schemenauer | 17e7be6 | 2001-08-10 14:46:47 +0000 | [diff] [blame] | 1081 | return 1; /* no error */ |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1084 | PyDoc_STRVAR(gc_get_referrers__doc__, |
Martin v. Löwis | 560da62 | 2001-11-24 09:24:51 +0000 | [diff] [blame] | 1085 | "get_referrers(*objs) -> list\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1086 | Return the list of objects that directly refer to any of objs."); |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1087 | |
Neil Schemenauer | 17e7be6 | 2001-08-10 14:46:47 +0000 | [diff] [blame] | 1088 | static PyObject * |
Martin v. Löwis | 560da62 | 2001-11-24 09:24:51 +0000 | [diff] [blame] | 1089 | gc_get_referrers(PyObject *self, PyObject *args) |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1090 | { |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1091 | int i; |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1092 | PyObject *result = PyList_New(0); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1093 | if (!result) return NULL; |
| 1094 | |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1095 | for (i = 0; i < NUM_GENERATIONS; i++) { |
| 1096 | if (!(gc_referrers_for(args, GEN_HEAD(i), result))) { |
| 1097 | Py_DECREF(result); |
| 1098 | return NULL; |
| 1099 | } |
Neil Schemenauer | 17e7be6 | 2001-08-10 14:46:47 +0000 | [diff] [blame] | 1100 | } |
Neil Schemenauer | 48c7034 | 2001-08-09 15:38:31 +0000 | [diff] [blame] | 1101 | return result; |
| 1102 | } |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1103 | |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1104 | /* Append obj to list; return true if error (out of memory), false if OK. */ |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1105 | static int |
Tim Peters | 730f553 | 2003-04-08 17:17:17 +0000 | [diff] [blame] | 1106 | referentsvisit(PyObject *obj, PyObject *list) |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1107 | { |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1108 | return PyList_Append(list, obj) < 0; |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1109 | } |
| 1110 | |
Tim Peters | 730f553 | 2003-04-08 17:17:17 +0000 | [diff] [blame] | 1111 | PyDoc_STRVAR(gc_get_referents__doc__, |
| 1112 | "get_referents(*objs) -> list\n\ |
Jeremy Hylton | 059b094 | 2003-04-03 16:29:13 +0000 | [diff] [blame] | 1113 | Return the list of objects that are directly referred to by objs."); |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1114 | |
| 1115 | static PyObject * |
Tim Peters | 730f553 | 2003-04-08 17:17:17 +0000 | [diff] [blame] | 1116 | gc_get_referents(PyObject *self, PyObject *args) |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1117 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1118 | Py_ssize_t i; |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1119 | PyObject *result = PyList_New(0); |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1120 | |
| 1121 | if (result == NULL) |
| 1122 | return NULL; |
| 1123 | |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1124 | for (i = 0; i < PyTuple_GET_SIZE(args); i++) { |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1125 | traverseproc traverse; |
Tim Peters | 93ad66d | 2003-04-05 17:15:44 +0000 | [diff] [blame] | 1126 | PyObject *obj = PyTuple_GET_ITEM(args, i); |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1127 | |
| 1128 | if (! PyObject_IS_GC(obj)) |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1129 | continue; |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 1130 | traverse = Py_TYPE(obj)->tp_traverse; |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1131 | if (! traverse) |
| 1132 | continue; |
Tim Peters | 730f553 | 2003-04-08 17:17:17 +0000 | [diff] [blame] | 1133 | if (traverse(obj, (visitproc)referentsvisit, result)) { |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1134 | Py_DECREF(result); |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1135 | return NULL; |
Tim Peters | 0f81ab6 | 2003-04-08 16:39:48 +0000 | [diff] [blame] | 1136 | } |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1137 | } |
| 1138 | return result; |
| 1139 | } |
| 1140 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1141 | PyDoc_STRVAR(gc_get_objects__doc__, |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1142 | "get_objects() -> [...]\n" |
| 1143 | "\n" |
| 1144 | "Return a list of objects tracked by the collector (excluding the list\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1145 | "returned).\n"); |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1146 | |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1147 | static PyObject * |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1148 | gc_get_objects(PyObject *self, PyObject *noargs) |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1149 | { |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1150 | int i; |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1151 | PyObject* result; |
| 1152 | |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1153 | result = PyList_New(0); |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1154 | if (result == NULL) |
Martin v. Löwis | f8a6f24 | 2001-12-02 18:31:02 +0000 | [diff] [blame] | 1155 | return NULL; |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1156 | for (i = 0; i < NUM_GENERATIONS; i++) { |
| 1157 | if (append_objects(result, GEN_HEAD(i))) { |
| 1158 | Py_DECREF(result); |
| 1159 | return NULL; |
| 1160 | } |
Martin v. Löwis | 155aad1 | 2001-12-02 12:21:34 +0000 | [diff] [blame] | 1161 | } |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1162 | return result; |
| 1163 | } |
| 1164 | |
| 1165 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1166 | PyDoc_STRVAR(gc__doc__, |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1167 | "This module provides access to the garbage collector for reference cycles.\n" |
| 1168 | "\n" |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 1169 | "enable() -- Enable automatic garbage collection.\n" |
| 1170 | "disable() -- Disable automatic garbage collection.\n" |
| 1171 | "isenabled() -- Returns true if automatic collection is enabled.\n" |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1172 | "collect() -- Do a full collection right now.\n" |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 1173 | "get_count() -- Return the current collection counts.\n" |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1174 | "set_debug() -- Set debugging flags.\n" |
| 1175 | "get_debug() -- Get debugging flags.\n" |
| 1176 | "set_threshold() -- Set the collection thresholds.\n" |
| 1177 | "get_threshold() -- Return the current the collection thresholds.\n" |
Neil Schemenauer | c7c8d8e | 2001-08-09 15:58:59 +0000 | [diff] [blame] | 1178 | "get_objects() -- Return a list of all objects tracked by the collector.\n" |
Jeremy Hylton | 5bd378b | 2003-04-03 16:28:38 +0000 | [diff] [blame] | 1179 | "get_referrers() -- Return the list of objects that refer to an object.\n" |
Tim Peters | 730f553 | 2003-04-08 17:17:17 +0000 | [diff] [blame] | 1180 | "get_referents() -- Return the list of objects that an object refers to.\n"); |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1181 | |
| 1182 | static PyMethodDef GcMethods[] = { |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1183 | {"enable", gc_enable, METH_NOARGS, gc_enable__doc__}, |
| 1184 | {"disable", gc_disable, METH_NOARGS, gc_disable__doc__}, |
| 1185 | {"isenabled", gc_isenabled, METH_NOARGS, gc_isenabled__doc__}, |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 1186 | {"set_debug", gc_set_debug, METH_VARARGS, gc_set_debug__doc__}, |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1187 | {"get_debug", gc_get_debug, METH_NOARGS, gc_get_debug__doc__}, |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 1188 | {"get_count", gc_get_count, METH_NOARGS, gc_get_count__doc__}, |
Vladimir Marangozov | f9d20c3 | 2000-08-06 22:45:31 +0000 | [diff] [blame] | 1189 | {"set_threshold", gc_set_thresh, METH_VARARGS, gc_set_thresh__doc__}, |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1190 | {"get_threshold", gc_get_thresh, METH_NOARGS, gc_get_thresh__doc__}, |
Barry Warsaw | d3c38ff | 2006-03-07 09:46:03 +0000 | [diff] [blame] | 1191 | {"collect", (PyCFunction)gc_collect, |
| 1192 | METH_VARARGS | METH_KEYWORDS, gc_collect__doc__}, |
Tim Peters | 50c61d5 | 2003-04-06 01:50:50 +0000 | [diff] [blame] | 1193 | {"get_objects", gc_get_objects,METH_NOARGS, gc_get_objects__doc__}, |
Martin v. Löwis | 560da62 | 2001-11-24 09:24:51 +0000 | [diff] [blame] | 1194 | {"get_referrers", gc_get_referrers, METH_VARARGS, |
| 1195 | gc_get_referrers__doc__}, |
Tim Peters | 730f553 | 2003-04-08 17:17:17 +0000 | [diff] [blame] | 1196 | {"get_referents", gc_get_referents, METH_VARARGS, |
| 1197 | gc_get_referents__doc__}, |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1198 | {NULL, NULL} /* Sentinel */ |
| 1199 | }; |
| 1200 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1201 | static struct PyModuleDef gcmodule = { |
| 1202 | PyModuleDef_HEAD_INIT, |
| 1203 | "gc", |
| 1204 | gc__doc__, |
| 1205 | -1, |
| 1206 | GcMethods, |
| 1207 | NULL, |
| 1208 | NULL, |
| 1209 | NULL, |
| 1210 | NULL |
| 1211 | }; |
| 1212 | |
| 1213 | |
Jason Tishler | 6bc06ec | 2003-09-04 11:59:50 +0000 | [diff] [blame] | 1214 | PyMODINIT_FUNC |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1215 | PyInit_gc(void) |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1216 | { |
| 1217 | PyObject *m; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1218 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1219 | m = PyModule_Create(&gcmodule); |
| 1220 | |
Neal Norwitz | 1ac754f | 2006-01-19 06:09:39 +0000 | [diff] [blame] | 1221 | if (m == NULL) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1222 | return NULL; |
Tim Peters | 1155887 | 2003-04-06 23:30:52 +0000 | [diff] [blame] | 1223 | |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1224 | if (garbage == NULL) { |
| 1225 | garbage = PyList_New(0); |
Tim Peters | 1155887 | 2003-04-06 23:30:52 +0000 | [diff] [blame] | 1226 | if (garbage == NULL) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1227 | return NULL; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1228 | } |
Neil Schemenauer | 3b1cbf9 | 2005-06-18 17:37:06 +0000 | [diff] [blame] | 1229 | Py_INCREF(garbage); |
Tim Peters | 1155887 | 2003-04-06 23:30:52 +0000 | [diff] [blame] | 1230 | if (PyModule_AddObject(m, "garbage", garbage) < 0) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1231 | return NULL; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1232 | |
| 1233 | /* Importing can't be done in collect() because collect() |
| 1234 | * can be called via PyGC_Collect() in Py_Finalize(). |
| 1235 | * This wouldn't be a problem, except that <initialized> is |
| 1236 | * reset to 0 before calling collect which trips up |
| 1237 | * the import and triggers an assertion. |
| 1238 | */ |
| 1239 | if (tmod == NULL) { |
Christian Heimes | 072c0f1 | 2008-01-03 23:01:04 +0000 | [diff] [blame] | 1240 | tmod = PyImport_ImportModuleNoBlock("time"); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1241 | if (tmod == NULL) |
| 1242 | PyErr_Clear(); |
| 1243 | } |
| 1244 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1245 | #define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return NULL |
Tim Peters | 1155887 | 2003-04-06 23:30:52 +0000 | [diff] [blame] | 1246 | ADD_INT(DEBUG_STATS); |
| 1247 | ADD_INT(DEBUG_COLLECTABLE); |
| 1248 | ADD_INT(DEBUG_UNCOLLECTABLE); |
Tim Peters | 1155887 | 2003-04-06 23:30:52 +0000 | [diff] [blame] | 1249 | ADD_INT(DEBUG_SAVEALL); |
| 1250 | ADD_INT(DEBUG_LEAK); |
| 1251 | #undef ADD_INT |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 1252 | return m; |
Jeremy Hylton | c5007aa | 2000-06-30 05:02:53 +0000 | [diff] [blame] | 1253 | } |
| 1254 | |
Guido van Rossum | e13ddc9 | 2003-04-17 17:29:22 +0000 | [diff] [blame] | 1255 | /* API to invoke gc.collect() from C */ |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 1256 | Py_ssize_t |
Guido van Rossum | e13ddc9 | 2003-04-17 17:29:22 +0000 | [diff] [blame] | 1257 | PyGC_Collect(void) |
| 1258 | { |
Neal Norwitz | 7b216c5 | 2006-03-04 20:01:53 +0000 | [diff] [blame] | 1259 | Py_ssize_t n; |
Guido van Rossum | e13ddc9 | 2003-04-17 17:29:22 +0000 | [diff] [blame] | 1260 | |
| 1261 | if (collecting) |
| 1262 | n = 0; /* already collecting, don't do anything */ |
| 1263 | else { |
| 1264 | collecting = 1; |
| 1265 | n = collect(NUM_GENERATIONS - 1); |
| 1266 | collecting = 0; |
| 1267 | } |
| 1268 | |
| 1269 | return n; |
| 1270 | } |
| 1271 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1272 | /* for debugging */ |
Guido van Rossum | e13ddc9 | 2003-04-17 17:29:22 +0000 | [diff] [blame] | 1273 | void |
| 1274 | _PyGC_Dump(PyGC_Head *g) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1275 | { |
| 1276 | _PyObject_Dump(FROM_GC(g)); |
| 1277 | } |
| 1278 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1279 | /* extension modules might be compiled with GC support so these |
| 1280 | functions must always be available */ |
| 1281 | |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1282 | #undef PyObject_GC_Track |
| 1283 | #undef PyObject_GC_UnTrack |
| 1284 | #undef PyObject_GC_Del |
| 1285 | #undef _PyObject_GC_Malloc |
| 1286 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1287 | void |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1288 | PyObject_GC_Track(void *op) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1289 | { |
| 1290 | _PyObject_GC_TRACK(op); |
| 1291 | } |
| 1292 | |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1293 | /* for binary compatibility with 2.2 */ |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1294 | void |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1295 | _PyObject_GC_Track(PyObject *op) |
| 1296 | { |
| 1297 | PyObject_GC_Track(op); |
| 1298 | } |
| 1299 | |
| 1300 | void |
| 1301 | PyObject_GC_UnTrack(void *op) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1302 | { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1303 | /* Obscure: the Py_TRASHCAN mechanism requires that we be able to |
| 1304 | * call PyObject_GC_UnTrack twice on an object. |
| 1305 | */ |
Neil Schemenauer | a2b11ec | 2002-05-21 15:53:24 +0000 | [diff] [blame] | 1306 | if (IS_TRACKED(op)) |
Guido van Rossum | ff413af | 2002-03-28 20:34:59 +0000 | [diff] [blame] | 1307 | _PyObject_GC_UNTRACK(op); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1308 | } |
| 1309 | |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1310 | /* for binary compatibility with 2.2 */ |
| 1311 | void |
| 1312 | _PyObject_GC_UnTrack(PyObject *op) |
| 1313 | { |
| 1314 | PyObject_GC_UnTrack(op); |
| 1315 | } |
| 1316 | |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1317 | PyObject * |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1318 | _PyObject_GC_Malloc(size_t basicsize) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1319 | { |
| 1320 | PyObject *op; |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 1321 | PyGC_Head *g; |
| 1322 | if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head)) |
| 1323 | return PyErr_NoMemory(); |
| 1324 | g = (PyGC_Head *)PyObject_MALLOC( |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1325 | sizeof(PyGC_Head) + basicsize); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1326 | if (g == NULL) |
Jeremy Hylton | 8a13518 | 2002-06-06 23:23:55 +0000 | [diff] [blame] | 1327 | return PyErr_NoMemory(); |
Tim Peters | ea40563 | 2002-07-02 00:52:30 +0000 | [diff] [blame] | 1328 | g->gc.gc_refs = GC_UNTRACKED; |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1329 | generations[0].count++; /* number of allocated GC objects */ |
| 1330 | if (generations[0].count > generations[0].threshold && |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1331 | enabled && |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1332 | generations[0].threshold && |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1333 | !collecting && |
| 1334 | !PyErr_Occurred()) { |
| 1335 | collecting = 1; |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1336 | collect_generations(); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1337 | collecting = 0; |
| 1338 | } |
| 1339 | op = FROM_GC(g); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1340 | return op; |
| 1341 | } |
| 1342 | |
| 1343 | PyObject * |
| 1344 | _PyObject_GC_New(PyTypeObject *tp) |
| 1345 | { |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1346 | PyObject *op = _PyObject_GC_Malloc(_PyObject_SIZE(tp)); |
Tim Peters | fa8efab | 2002-04-28 01:57:25 +0000 | [diff] [blame] | 1347 | if (op != NULL) |
| 1348 | op = PyObject_INIT(op, tp); |
| 1349 | return op; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1350 | } |
| 1351 | |
| 1352 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1353 | _PyObject_GC_NewVar(PyTypeObject *tp, Py_ssize_t nitems) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1354 | { |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1355 | const size_t size = _PyObject_VAR_SIZE(tp, nitems); |
| 1356 | PyVarObject *op = (PyVarObject *) _PyObject_GC_Malloc(size); |
Tim Peters | fa8efab | 2002-04-28 01:57:25 +0000 | [diff] [blame] | 1357 | if (op != NULL) |
| 1358 | op = PyObject_INIT_VAR(op, tp, nitems); |
| 1359 | return op; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
| 1362 | PyVarObject * |
Martin v. Löwis | 4129068 | 2006-02-16 14:56:14 +0000 | [diff] [blame] | 1363 | _PyObject_GC_Resize(PyVarObject *op, Py_ssize_t nitems) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1364 | { |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 1365 | const size_t basicsize = _PyObject_VAR_SIZE(Py_TYPE(op), nitems); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1366 | PyGC_Head *g = AS_GC(op); |
Neal Norwitz | 3ce5d92 | 2008-08-24 07:08:55 +0000 | [diff] [blame] | 1367 | if (basicsize > PY_SSIZE_T_MAX - sizeof(PyGC_Head)) |
| 1368 | return (PyVarObject *)PyErr_NoMemory(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1369 | g = (PyGC_Head *)PyObject_REALLOC(g, sizeof(PyGC_Head) + basicsize); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1370 | if (g == NULL) |
| 1371 | return (PyVarObject *)PyErr_NoMemory(); |
| 1372 | op = (PyVarObject *) FROM_GC(g); |
Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 1373 | Py_SIZE(op) = nitems; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1374 | return op; |
| 1375 | } |
| 1376 | |
| 1377 | void |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1378 | PyObject_GC_Del(void *op) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1379 | { |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1380 | PyGC_Head *g = AS_GC(op); |
Neil Schemenauer | a2b11ec | 2002-05-21 15:53:24 +0000 | [diff] [blame] | 1381 | if (IS_TRACKED(op)) |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1382 | gc_list_remove(g); |
Neil Schemenauer | 2880ae5 | 2002-05-04 05:35:20 +0000 | [diff] [blame] | 1383 | if (generations[0].count > 0) { |
| 1384 | generations[0].count--; |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1385 | } |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1386 | PyObject_FREE(g); |
Neil Schemenauer | 43411b5 | 2001-08-30 00:05:51 +0000 | [diff] [blame] | 1387 | } |
| 1388 | |
Neil Schemenauer | fec4eb1 | 2002-04-12 02:41:03 +0000 | [diff] [blame] | 1389 | /* for binary compatibility with 2.2 */ |
| 1390 | #undef _PyObject_GC_Del |
| 1391 | void |
| 1392 | _PyObject_GC_Del(PyObject *op) |
| 1393 | { |
| 1394 | PyObject_GC_Del(op); |
| 1395 | } |