blob: 0851aa5fecd0b54b87f854db8470b159e6851e9b [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
Tim Peters889f61d2002-07-10 19:29:49 +000063When pymalloc is enabled (WITH_PYMALLOC is defined), calls to the PyObject_
64memory routines are handled by Python's own small-object allocator, while
65calls to the PyMem_ memory routines are directed to the system malloc/
66realloc/free. If PYMALLOC_DEBUG is also defined, calls to both PyObject_
67and PyMem_ memory routines are directed to a special debugging mode of
68Python's small-object allocator.
69
70This mode fills dynamically allocated memory blocks with special,
71recognizable bit patterns, and adds debugging info on each end of
72dynamically allocated memory blocks. The special bit patterns are:
73
74#define CLEANBYTE 0xCB /* clean (newly allocated) memory */
75#define DEADBYTE 0xDB /* dead (newly freed) memory */
76#define FORBIDDENBYTE 0xFB /* fordidden -- untouchable bytes */
77
78Strings of these bytes are unlikely to be valid addresses, floats, or 7-bit
79ASCII strings.
80
818 bytes are added at each end of each block of N bytes requested. The
82memory layout is like so, where p represents the address returned by a
83malloc-like or realloc-like function:
84
85p[-8:-4]
86 Number of bytes originally asked for. 4-byte unsigned integer,
87 big-endian (easier to read in a memory dump).
88p[-4:0]
89 Copies of FORBIDDENBYTE. Used to catch under- writes and reads.
90p[0:N]
91 The requested memory, filled with copies of CLEANBYTE.
92 Used to catch reference to uninitialized memory.
93 When a realloc-like function is called requesting a larger memory
94 block, the new excess bytes are also filled with CLEANBYTE.
95 When a free-like function is called, these are overwritten with
96 DEADBYTE, to catch reference to free()ed memory. When a realloc-
97 like function is called requesting a smaller memory block, the excess
98 old bytes are also filled with DEADBYTE.
99p[N:N+4]
100 Copies of FORBIDDENBYTE. Used to catch over- writes and reads.
101p[N+4:N+8]
102 A serial number, incremented by 1 on each call to a malloc-like or
103 realloc-like function.
104 4-byte unsigned integer, big-endian.
105 If "bad memory" is detected later, the serial number gives an
106 excellent way to set a breakpoint on the next run, to capture the
107 instant at which this block was passed out.
108
109A malloc-like or free-like function first checks that the FORBIDDENBYTEs
110at each end are intact. If they've been altered, diagnostic output is
111written to stderr, and the program is aborted by Py_FatalError().
112
113Note that PYMALLOC_DEBUG requires WITH_PYMALLOC.
114
Tim Peters6045d482002-07-09 18:35:34 +0000115Special gimmicks:
116
117envar PYTHONMALLOCSTATS
118 If this envar exists, a report of pymalloc summary statistics is
119 printed to stderr whenever a new arena is allocated, and also
120 by Py_Finalize().
121---------------------------------------------------------------------------
122Py_DEBUG
123
124This is what is generally meant by "a debug build" of Python.
125
126Py_DEBUG implies Py_REF_DEBUG, Py_TRACE_REFS, and PYMALLOC_DEBUG (if
127WITH_PYMALLOC is enabled).
128---------------------------------------------------------------------------
Tim Peters48ba6492002-07-09 19:24:54 +0000129COUNT_ALLOCS
130
131Each type object grows three new members:
132
133 /* Number of times an object of this type was allocated. */
134 int tp_allocs;
135
136 /* Number of times an object of this type was deallocated. */
137 int tp_frees;
138
139 /* Highwater mark: the maximum value of tp_allocs - tp_frees so
140 * far; or, IOW, the largest number of objects of this type alive at
141 * the same time.
142 */
143 int tp_maxalloc;
144
145Allocation and deallocation code keeps these counts up to date.
146Py_Finalize() displays a summary of the info returned by sys.getcounts()
147(see below), along with assorted other special allocation counts (like
148the number of tuple allocations satisfied by a tuple free-list, the number
149of 1-character strings allocated, etc).
150
151Before Python 2.2, type objects were immortal, and the COUNT_ALLOCS
152implementation relies on that. As of Python 2.2, heap-allocated type/
153class objects can go away. COUNT_ALLOCS can blow up in 2.2 and 2.2.1
154because of this; this was fixed in 2.2.2. Use of COUNT_ALLOCS makes
155all heap-allocated type objects immortal, except for those for which no
156object of that type is ever allocated.
157
158Special gimmicks:
159
160sys.getcounts()
161 Return a list of 4-tuples, one entry for each type object for which
162 at least one object of that type was allocated. Each tuple is of
163 the form:
164
165 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
166
Tim Peters44c1a7b2002-07-09 19:27:20 +0000167 Each distinct type object gets a distinct entry in this list, even
Tim Peters48ba6492002-07-09 19:24:54 +0000168 if two or more type objects have the same tp_name (in which case
169 there's no way to distinguish them by looking at this list). The
170 list is ordered by time of first object allocation: the type object
171 for which the first allocation of an object of that type occurred
172 most recently is at the front of the list.
173---------------------------------------------------------------------------