blob: 1413cf0ebdbdd9076b02cade9b747932cee38794 [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
Antoine Pitrou3cbb24d2010-12-15 15:47:34 +00004IMPORTANT: if you want to build a debug-enabled Python, it is recommended
5that you use ``./configure --with-pydebug``, rather than the options listed
6here.
7
8However, if you wish to define some of these options individually, it is best
9to define them in the EXTRA_CFLAGS make variable;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010``make EXTRA_CFLAGS="-DPy_REF_DEBUG"``.
Brett Cannona2675632005-04-19 20:28:09 +000011
Tim Peters6045d482002-07-09 18:35:34 +000012---------------------------------------------------------------------------
Tim Peters62fc52e2002-07-11 00:23:58 +000013Py_REF_DEBUG introduced in 1.4
14 named REF_DEBUG before 1.4
Tim Peters6045d482002-07-09 18:35:34 +000015
16Turn on aggregate reference counting. This arranges that extern
17_Py_RefTotal hold a count of all references, the sum of ob_refcnt across
18all objects. In a debug-mode build, this is where the "8288" comes from
19in
20
21 >>> 23
22 23
23 [8288 refs]
24 >>>
25
26Note that if this count increases when you're not storing away new objects,
27there's probably a leak. Remember, though, that in interactive mode the
28special name "_" holds a reference to the last result displayed!
29
30Py_REF_DEBUG also checks after every decref to verify that the refcount
31hasn't gone negative, and causes an immediate fatal error if it has.
32
33Special gimmicks:
34
35sys.gettotalrefcount()
36 Return current total of all refcounts.
37 Available under Py_REF_DEBUG in Python 2.3.
38 Before 2.3, Py_TRACE_REFS was required to enable this function.
39---------------------------------------------------------------------------
Tim Peters62fc52e2002-07-11 00:23:58 +000040Py_TRACE_REFS introduced in 1.4
41 named TRACE_REFS before 1.4
Tim Peters6045d482002-07-09 18:35:34 +000042
43Turn on heavy reference debugging. This is major surgery. Every PyObject
44grows two more pointers, to maintain a doubly-linked list of all live
Georg Brandl93dc9eb2010-03-14 10:56:14 +000045heap-allocated objects. Most built-in type objects are not in this list,
Tim Peters78be7992003-03-23 02:51:01 +000046as they're statically allocated. Starting in Python 2.3, if COUNT_ALLOCS
47(see below) is also defined, a static type object T does appear in this
48list if at least one object of type T has been created.
49
50Note that because the fundamental PyObject layout changes, Python modules
51compiled with Py_TRACE_REFS are incompatible with modules compiled without
52it.
Tim Peters6045d482002-07-09 18:35:34 +000053
54Py_TRACE_REFS implies Py_REF_DEBUG.
55
56Special gimmicks:
57
58sys.getobjects(max[, type])
Tim Petersa788f5e2002-07-10 18:47:03 +000059 Return list of the (no more than) max most-recently allocated objects,
60 most recently allocated first in the list, least-recently allocated
61 last in the list. max=0 means no limit on list length.
62 If an optional type object is passed, the list is also restricted to
63 objects of that type.
64 The return list itself, and some temp objects created just to call
65 sys.getobjects(), are excluded from the return list. Note that the
66 list returned is just another object, though, so may appear in the
67 return list the next time you call getobjects(); note that every
68 object in the list is kept alive too, simply by virtue of being in
69 the list.
Tim Peters6045d482002-07-09 18:35:34 +000070
71envar PYTHONDUMPREFS
72 If this envar exists, Py_Finalize() arranges to print a list of
Tim Peters21d7d4d2003-04-18 00:45:59 +000073 all still-live heap objects. This is printed twice, in different
74 formats, before and after Py_Finalize has cleaned up everything it
75 can clean up. The first output block produces the repr() of each
76 object so is more informative; however, a lot of stuff destined to
77 die is still alive then. The second output block is much harder
78 to work with (repr() can't be invoked anymore -- the interpreter
79 has been torn down too far), but doesn't list any objects that will
80 die. The tool script combinerefs.py can be run over this to combine
81 the info from both output blocks. The second output block, and
82 combinerefs.py, were new in Python 2.3b1.
Tim Peters6045d482002-07-09 18:35:34 +000083---------------------------------------------------------------------------
Tim Peters62fc52e2002-07-11 00:23:58 +000084PYMALLOC_DEBUG introduced in 2.3
Tim Peters6045d482002-07-09 18:35:34 +000085
Tim Peters889f61d2002-07-10 19:29:49 +000086When pymalloc is enabled (WITH_PYMALLOC is defined), calls to the PyObject_
87memory routines are handled by Python's own small-object allocator, while
88calls to the PyMem_ memory routines are directed to the system malloc/
89realloc/free. If PYMALLOC_DEBUG is also defined, calls to both PyObject_
90and PyMem_ memory routines are directed to a special debugging mode of
91Python's small-object allocator.
92
93This mode fills dynamically allocated memory blocks with special,
94recognizable bit patterns, and adds debugging info on each end of
95dynamically allocated memory blocks. The special bit patterns are:
96
97#define CLEANBYTE 0xCB /* clean (newly allocated) memory */
98#define DEADBYTE 0xDB /* dead (newly freed) memory */
Thomas Wouters89f507f2006-12-13 04:49:30 +000099#define FORBIDDENBYTE 0xFB /* forbidden -- untouchable bytes */
Tim Peters889f61d2002-07-10 19:29:49 +0000100
101Strings of these bytes are unlikely to be valid addresses, floats, or 7-bit
102ASCII strings.
103
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000104Let S = sizeof(size_t). 2*S bytes are added at each end of each block of N
105bytes requested. The memory layout is like so, where p represents the
106address returned by a malloc-like or realloc-like function (p[i:j] means
107the slice of bytes from *(p+i) inclusive up to *(p+j) exclusive; note that
108the treatment of negative indices differs from a Python slice):
Tim Peters889f61d2002-07-10 19:29:49 +0000109
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000110p[-2*S:-S]
111 Number of bytes originally asked for. This is a size_t, big-endian
112 (easier to read in a memory dump).
113p[-S:0]
Tim Peters889f61d2002-07-10 19:29:49 +0000114 Copies of FORBIDDENBYTE. Used to catch under- writes and reads.
115p[0:N]
Tim Peters62fc52e2002-07-11 00:23:58 +0000116 The requested memory, filled with copies of CLEANBYTE, used to catch
117 reference to uninitialized memory.
Tim Peters889f61d2002-07-10 19:29:49 +0000118 When a realloc-like function is called requesting a larger memory
119 block, the new excess bytes are also filled with CLEANBYTE.
120 When a free-like function is called, these are overwritten with
Tim Peters62fc52e2002-07-11 00:23:58 +0000121 DEADBYTE, to catch reference to freed memory. When a realloc-
Tim Peters889f61d2002-07-10 19:29:49 +0000122 like function is called requesting a smaller memory block, the excess
123 old bytes are also filled with DEADBYTE.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000124p[N:N+S]
Tim Peters889f61d2002-07-10 19:29:49 +0000125 Copies of FORBIDDENBYTE. Used to catch over- writes and reads.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000126p[N+S:N+2*S]
Tim Peters889f61d2002-07-10 19:29:49 +0000127 A serial number, incremented by 1 on each call to a malloc-like or
128 realloc-like function.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000129 Big-endian size_t.
Tim Peters889f61d2002-07-10 19:29:49 +0000130 If "bad memory" is detected later, the serial number gives an
131 excellent way to set a breakpoint on the next run, to capture the
Tim Peters20c8a042002-07-11 00:02:52 +0000132 instant at which this block was passed out. The static function
133 bumpserialno() in obmalloc.c is the only place the serial number
134 is incremented, and exists so you can set such a breakpoint easily.
Tim Peters889f61d2002-07-10 19:29:49 +0000135
Tim Peters62fc52e2002-07-11 00:23:58 +0000136A realloc-like or free-like function first checks that the FORBIDDENBYTEs
Tim Peters889f61d2002-07-10 19:29:49 +0000137at each end are intact. If they've been altered, diagnostic output is
Tim Peters62fc52e2002-07-11 00:23:58 +0000138written to stderr, and the program is aborted via Py_FatalError(). The
139other main failure mode is provoking a memory error when a program
140reads up one of the special bit patterns and tries to use it as an address.
141If you get in a debugger then and look at the object, you're likely
142to see that it's entirely filled with 0xDB (meaning freed memory is
143getting used) or 0xCB (meaning uninitialized memory is getting used).
Tim Peters889f61d2002-07-10 19:29:49 +0000144
145Note that PYMALLOC_DEBUG requires WITH_PYMALLOC.
146
Tim Peters6045d482002-07-09 18:35:34 +0000147Special gimmicks:
148
149envar PYTHONMALLOCSTATS
150 If this envar exists, a report of pymalloc summary statistics is
151 printed to stderr whenever a new arena is allocated, and also
152 by Py_Finalize().
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000153
154Changed in 2.5: The number of extra bytes allocated is 4*sizeof(size_t).
155Before it was 16 on all boxes, reflecting that Python couldn't make use of
156allocations >= 2**32 bytes even on 64-bit boxes before 2.5.
Tim Peters6045d482002-07-09 18:35:34 +0000157---------------------------------------------------------------------------
Tim Peters62fc52e2002-07-11 00:23:58 +0000158Py_DEBUG introduced in 1.5
159 named DEBUG before 1.5
Tim Peters6045d482002-07-09 18:35:34 +0000160
161This is what is generally meant by "a debug build" of Python.
162
Michael W. Hudsona6255232002-07-30 09:49:29 +0000163Py_DEBUG implies LLTRACE, Py_REF_DEBUG, Py_TRACE_REFS, and
164PYMALLOC_DEBUG (if WITH_PYMALLOC is enabled). In addition, C
165assert()s are enabled (via the C way: by not defining NDEBUG), and
166some routines do additional sanity checks inside "#ifdef Py_DEBUG"
167blocks.
Tim Peters6045d482002-07-09 18:35:34 +0000168---------------------------------------------------------------------------
Michael W. Hudson202a4b62002-07-30 15:25:57 +0000169COUNT_ALLOCS introduced in 0.9.9
170 partly broken in 2.2 and 2.2.1
Tim Peters48ba6492002-07-09 19:24:54 +0000171
172Each type object grows three new members:
173
174 /* Number of times an object of this type was allocated. */
Guido van Rossum0c088642002-07-11 01:04:32 +0000175 int tp_allocs;
Tim Peters48ba6492002-07-09 19:24:54 +0000176
177 /* Number of times an object of this type was deallocated. */
Guido van Rossum0c088642002-07-11 01:04:32 +0000178 int tp_frees;
Tim Peters48ba6492002-07-09 19:24:54 +0000179
Guido van Rossum0c088642002-07-11 01:04:32 +0000180 /* Highwater mark: the maximum value of tp_allocs - tp_frees so
181 * far; or, IOW, the largest number of objects of this type alive at
182 * the same time.
183 */
184 int tp_maxalloc;
Tim Peters48ba6492002-07-09 19:24:54 +0000185
186Allocation and deallocation code keeps these counts up to date.
187Py_Finalize() displays a summary of the info returned by sys.getcounts()
188(see below), along with assorted other special allocation counts (like
189the number of tuple allocations satisfied by a tuple free-list, the number
190of 1-character strings allocated, etc).
191
192Before Python 2.2, type objects were immortal, and the COUNT_ALLOCS
193implementation relies on that. As of Python 2.2, heap-allocated type/
194class objects can go away. COUNT_ALLOCS can blow up in 2.2 and 2.2.1
195because of this; this was fixed in 2.2.2. Use of COUNT_ALLOCS makes
196all heap-allocated type objects immortal, except for those for which no
197object of that type is ever allocated.
198
Tim Peters78be7992003-03-23 02:51:01 +0000199Starting with Python 2.3, If Py_TRACE_REFS is also defined, COUNT_ALLOCS
200arranges to ensure that the type object for each allocated object
201appears in the doubly-linked list of all objects maintained by
202Py_TRACE_REFS.
203
Tim Peters48ba6492002-07-09 19:24:54 +0000204Special gimmicks:
205
206sys.getcounts()
207 Return a list of 4-tuples, one entry for each type object for which
208 at least one object of that type was allocated. Each tuple is of
209 the form:
210
211 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
212
Tim Peters44c1a7b2002-07-09 19:27:20 +0000213 Each distinct type object gets a distinct entry in this list, even
Tim Peters48ba6492002-07-09 19:24:54 +0000214 if two or more type objects have the same tp_name (in which case
215 there's no way to distinguish them by looking at this list). The
216 list is ordered by time of first object allocation: the type object
217 for which the first allocation of an object of that type occurred
218 most recently is at the front of the list.
219---------------------------------------------------------------------------
Michael W. Hudson202a4b62002-07-30 15:25:57 +0000220LLTRACE introduced well before 1.0
Michael W. Hudsona6255232002-07-30 09:49:29 +0000221
Michael W. Hudson46e6d922005-01-18 15:53:59 +0000222Compile in support for Low Level TRACE-ing of the main interpreter loop.
Michael W. Hudsona6255232002-07-30 09:49:29 +0000223
Michael W. Hudson46e6d922005-01-18 15:53:59 +0000224When this preprocessor symbol is defined, before PyEval_EvalFrame
225(eval_frame in 2.3 and 2.2, eval_code2 before that) executes a frame's code
226it checks the frame's global namespace for a variable "__lltrace__". If
227such a variable is found, mounds of information about what the interpreter
228is doing are sprayed to stdout, such as every opcode and opcode argument
229and values pushed onto and popped off the value stack.
Michael W. Hudsona6255232002-07-30 09:49:29 +0000230
231Not useful very often, but very useful when needed.
Jeremy Hylton985eba52003-02-05 23:13:00 +0000232
233---------------------------------------------------------------------------
234CALL_PROFILE introduced for Python 2.3
235
236Count the number of function calls executed.
237
238When this symbol is defined, the ceval mainloop and helper functions
239count the number of function calls made. It keeps detailed statistics
240about what kind of object was called and whether the call hit any of
241the special fast paths in the code.
Michael W. Hudson800ba232004-08-12 18:19:17 +0000242
243---------------------------------------------------------------------------
244WITH_TSC introduced for Python 2.4
245
246Super-lowlevel profiling of the interpreter. When enabled, the sys
247module grows a new function:
248
249settscdump(bool)
250 If true, tell the Python interpreter to dump VM measurements to
251 stderr. If false, turn off dump. The measurements are based on the
252 processor's time-stamp counter.
253
254This build option requires a small amount of platform specific code.
255Currently this code is present for linux/x86 and any PowerPC platform
256that uses GCC (i.e. OS X and linux/ppc).
257
258On the PowerPC the rate at which the time base register is incremented
259is not defined by the architecture specification, so you'll need to
Michael W. Hudson46e6d922005-01-18 15:53:59 +0000260find the manual for your specific processor. For the 750CX, 750CXe
261and 750FX (all sold as the G3) we find:
Michael W. Hudson800ba232004-08-12 18:19:17 +0000262
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000263 The time base counter is clocked at a frequency that is
Michael W. Hudson800ba232004-08-12 18:19:17 +0000264 one-fourth that of the bus clock.
265
266This build is enabled by the --with-tsc flag to configure.