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