blob: 3c10f3766868d6ae4db560b8ee50e56233e0b05b [file] [log] [blame]
Tim Peters6045d482002-07-09 18:35:34 +00001This file describes some special Python build types enabled via
2compile-time preprocessor defines.
3
4---------------------------------------------------------------------------
5Py_REF_DEBUG
6
7Turn on aggregate reference counting. This arranges that extern
8_Py_RefTotal hold a count of all references, the sum of ob_refcnt across
9all objects. In a debug-mode build, this is where the "8288" comes from
10in
11
12 >>> 23
13 23
14 [8288 refs]
15 >>>
16
17Note that if this count increases when you're not storing away new objects,
18there's probably a leak. Remember, though, that in interactive mode the
19special name "_" holds a reference to the last result displayed!
20
21Py_REF_DEBUG also checks after every decref to verify that the refcount
22hasn't gone negative, and causes an immediate fatal error if it has.
23
24Special gimmicks:
25
26sys.gettotalrefcount()
27 Return current total of all refcounts.
28 Available under Py_REF_DEBUG in Python 2.3.
29 Before 2.3, Py_TRACE_REFS was required to enable this function.
30---------------------------------------------------------------------------
31Py_TRACE_REFS
32
33Turn on heavy reference debugging. This is major surgery. Every PyObject
34grows two more pointers, to maintain a doubly-linked list of all live
35heap-allocated objects (note that, e.g., most builtin type objects are not
36in this list, as they're statically allocated). Note that because the
37fundamental PyObject layout changes, Python modules compiled with
38Py_TRACE_REFS are incompatible with modules compiled without it.
39
40Py_TRACE_REFS implies Py_REF_DEBUG.
41
42Special gimmicks:
43
44sys.getobjects(max[, type])
45 Return list of the most-recently allocated max objects, most recently
46 allocated first in the list, least-recently allocated last in the
47 list. max=0 means no limit on list length. If an optional type
48 object is passed, the list is also restricted to objects of that
Tim Peters3486f612002-07-09 18:48:32 +000049 type. The return list itself, and some temp objects created just
50 to call sys.getobjects(), are excluded from the return list.
Tim Peters6045d482002-07-09 18:35:34 +000051
52envar PYTHONDUMPREFS
53 If this envar exists, Py_Finalize() arranges to print a list of
54 all still-live heap objects.
55---------------------------------------------------------------------------
Tim Peters6045d482002-07-09 18:35:34 +000056PYMALLOC_DEBUG
57
58Special gimmicks:
59
60envar PYTHONMALLOCSTATS
61 If this envar exists, a report of pymalloc summary statistics is
62 printed to stderr whenever a new arena is allocated, and also
63 by Py_Finalize().
64---------------------------------------------------------------------------
65Py_DEBUG
66
67This is what is generally meant by "a debug build" of Python.
68
69Py_DEBUG implies Py_REF_DEBUG, Py_TRACE_REFS, and PYMALLOC_DEBUG (if
70WITH_PYMALLOC is enabled).
71---------------------------------------------------------------------------
Tim Peters48ba6492002-07-09 19:24:54 +000072COUNT_ALLOCS
73
74Each type object grows three new members:
75
76 /* Number of times an object of this type was allocated. */
77 int tp_allocs;
78
79 /* Number of times an object of this type was deallocated. */
80 int tp_frees;
81
82 /* Highwater mark: the maximum value of tp_allocs - tp_frees so
83 * far; or, IOW, the largest number of objects of this type alive at
84 * the same time.
85 */
86 int tp_maxalloc;
87
88Allocation and deallocation code keeps these counts up to date.
89Py_Finalize() displays a summary of the info returned by sys.getcounts()
90(see below), along with assorted other special allocation counts (like
91the number of tuple allocations satisfied by a tuple free-list, the number
92of 1-character strings allocated, etc).
93
94Before Python 2.2, type objects were immortal, and the COUNT_ALLOCS
95implementation relies on that. As of Python 2.2, heap-allocated type/
96class objects can go away. COUNT_ALLOCS can blow up in 2.2 and 2.2.1
97because of this; this was fixed in 2.2.2. Use of COUNT_ALLOCS makes
98all heap-allocated type objects immortal, except for those for which no
99object of that type is ever allocated.
100
101Special gimmicks:
102
103sys.getcounts()
104 Return a list of 4-tuples, one entry for each type object for which
105 at least one object of that type was allocated. Each tuple is of
106 the form:
107
108 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
109
Tim Peters44c1a7b2002-07-09 19:27:20 +0000110 Each distinct type object gets a distinct entry in this list, even
Tim Peters48ba6492002-07-09 19:24:54 +0000111 if two or more type objects have the same tp_name (in which case
112 there's no way to distinguish them by looking at this list). The
113 list is ordered by time of first object allocation: the type object
114 for which the first allocation of an object of that type occurred
115 most recently is at the front of the list.
116---------------------------------------------------------------------------