blob: 0551c8e8e286950d77ce1ccc8995822c50167bb9 [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])
Tim Petersa788f5e2002-07-10 18:47:03 +000045 Return list of the (no more than) max most-recently allocated objects,
46 most recently allocated first in the list, least-recently allocated
47 last in the list. max=0 means no limit on list length.
48 If an optional type object is passed, the list is also restricted to
49 objects of that type.
50 The return list itself, and some temp objects created just to call
51 sys.getobjects(), are excluded from the return list. Note that the
52 list returned is just another object, though, so may appear in the
53 return list the next time you call getobjects(); note that every
54 object in the list is kept alive too, simply by virtue of being in
55 the list.
Tim Peters6045d482002-07-09 18:35:34 +000056
57envar PYTHONDUMPREFS
58 If this envar exists, Py_Finalize() arranges to print a list of
59 all still-live heap objects.
60---------------------------------------------------------------------------
Tim Peters6045d482002-07-09 18:35:34 +000061PYMALLOC_DEBUG
62
63Special gimmicks:
64
65envar PYTHONMALLOCSTATS
66 If this envar exists, a report of pymalloc summary statistics is
67 printed to stderr whenever a new arena is allocated, and also
68 by Py_Finalize().
69---------------------------------------------------------------------------
70Py_DEBUG
71
72This is what is generally meant by "a debug build" of Python.
73
74Py_DEBUG implies Py_REF_DEBUG, Py_TRACE_REFS, and PYMALLOC_DEBUG (if
75WITH_PYMALLOC is enabled).
76---------------------------------------------------------------------------
Tim Peters48ba6492002-07-09 19:24:54 +000077COUNT_ALLOCS
78
79Each type object grows three new members:
80
81 /* Number of times an object of this type was allocated. */
82 int tp_allocs;
83
84 /* Number of times an object of this type was deallocated. */
85 int tp_frees;
86
87 /* Highwater mark: the maximum value of tp_allocs - tp_frees so
88 * far; or, IOW, the largest number of objects of this type alive at
89 * the same time.
90 */
91 int tp_maxalloc;
92
93Allocation and deallocation code keeps these counts up to date.
94Py_Finalize() displays a summary of the info returned by sys.getcounts()
95(see below), along with assorted other special allocation counts (like
96the number of tuple allocations satisfied by a tuple free-list, the number
97of 1-character strings allocated, etc).
98
99Before Python 2.2, type objects were immortal, and the COUNT_ALLOCS
100implementation relies on that. As of Python 2.2, heap-allocated type/
101class objects can go away. COUNT_ALLOCS can blow up in 2.2 and 2.2.1
102because of this; this was fixed in 2.2.2. Use of COUNT_ALLOCS makes
103all heap-allocated type objects immortal, except for those for which no
104object of that type is ever allocated.
105
106Special gimmicks:
107
108sys.getcounts()
109 Return a list of 4-tuples, one entry for each type object for which
110 at least one object of that type was allocated. Each tuple is of
111 the form:
112
113 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
114
Tim Peters44c1a7b2002-07-09 19:27:20 +0000115 Each distinct type object gets a distinct entry in this list, even
Tim Peters48ba6492002-07-09 19:24:54 +0000116 if two or more type objects have the same tp_name (in which case
117 there's no way to distinguish them by looking at this list). The
118 list is ordered by time of first object allocation: the type object
119 for which the first allocation of an object of that type occurred
120 most recently is at the front of the list.
121---------------------------------------------------------------------------