blob: 27369abfb37b35e877a150bb2764e9be37d325de [file] [log] [blame]
Georg Brandlc1660762010-12-28 11:38:12 +00001This file describes some special Python build types enabled via compile-time
Paul Ganssle5c403b22019-04-27 14:14:35 -04002preprocessor directives.
Tim Peters6045d482002-07-09 18:35:34 +00003
Georg Brandlc1660762010-12-28 11:38:12 +00004IMPORTANT: if you want to build a debug-enabled Python, it is recommended that
5you use ``./configure --with-pydebug``, rather than the options listed here.
Antoine Pitrou3cbb24d2010-12-15 15:47:34 +00006
7However, if you wish to define some of these options individually, it is best
8to define them in the EXTRA_CFLAGS make variable;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009``make EXTRA_CFLAGS="-DPy_REF_DEBUG"``.
Brett Cannona2675632005-04-19 20:28:09 +000010
Tim Peters6045d482002-07-09 18:35:34 +000011
Georg Brandlc1660762010-12-28 11:38:12 +000012Py_REF_DEBUG
13------------
14
15Turn on aggregate reference counting. This arranges that extern _Py_RefTotal
Benjamin Petersonff57aef2014-03-30 17:16:09 -040016hold a count of all references, the sum of ob_refcnt across all objects.
17Passing ``-X showrefcount`` on the command line causes the interactive
18interpreter to print the reference count total as well the number of memory
19blocks allocated after each statement:
Tim Peters6045d482002-07-09 18:35:34 +000020
21 >>> 23
22 23
Benjamin Petersonff57aef2014-03-30 17:16:09 -040023 [8288 refs, 14332 blocks]
Tim Peters6045d482002-07-09 18:35:34 +000024 >>>
25
26Note that if this count increases when you're not storing away new objects,
Georg Brandlc1660762010-12-28 11:38:12 +000027there's probably a leak. Remember, though, that in interactive mode the special
28name "_" holds a reference to the last result displayed!
Tim Peters6045d482002-07-09 18:35:34 +000029
Georg Brandlc1660762010-12-28 11:38:12 +000030Py_REF_DEBUG also checks after every decref to verify that the refcount hasn't
31gone negative, and causes an immediate fatal error if it has.
Tim Peters6045d482002-07-09 18:35:34 +000032
Victor Stinner235e7b22019-04-25 01:46:31 +020033Py_DEBUG implies Py_REF_DEBUG.
34
Tim Peters6045d482002-07-09 18:35:34 +000035Special gimmicks:
36
37sys.gettotalrefcount()
38 Return current total of all refcounts.
Tim Peters6045d482002-07-09 18:35:34 +000039
Georg Brandlc1660762010-12-28 11:38:12 +000040
41Py_TRACE_REFS
42-------------
43
Victor Stinner235e7b22019-04-25 01:46:31 +020044Build option: ``./configure --with-trace-refs``.
45
Georg Brandlc1660762010-12-28 11:38:12 +000046Turn on heavy reference debugging. This is major surgery. Every PyObject grows
47two more pointers, to maintain a doubly-linked list of all live heap-allocated
48objects. Most built-in type objects are not in this list, as they're statically
Victor Stinnerc6e5c112020-02-03 15:17:15 +010049allocated.
Tim Peters78be7992003-03-23 02:51:01 +000050
51Note that because the fundamental PyObject layout changes, Python modules
Georg Brandlc1660762010-12-28 11:38:12 +000052compiled with Py_TRACE_REFS are incompatible with modules compiled without it.
Tim Peters6045d482002-07-09 18:35:34 +000053
Tim Peters6045d482002-07-09 18:35:34 +000054Special gimmicks:
55
56sys.getobjects(max[, type])
Georg Brandlc1660762010-12-28 11:38:12 +000057 Return list of the (no more than) max most-recently allocated objects, most
58 recently allocated first in the list, least-recently allocated last in the
59 list. max=0 means no limit on list length. If an optional type object is
60 passed, the list is also restricted to objects of that type. The return
61 list itself, and some temp objects created just to call sys.getobjects(),
62 are excluded from the return list. Note that the list returned is just
63 another object, though, so may appear in the return list the next time you
64 call getobjects(); note that every object in the list is kept alive too,
65 simply by virtue of being in the list.
Tim Peters6045d482002-07-09 18:35:34 +000066
Georg Brandlc1660762010-12-28 11:38:12 +000067envvar PYTHONDUMPREFS
Martin Panterb4ce1fc2015-11-30 03:18:29 +000068 If this envvar exists, Py_FinalizeEx() arranges to print a list of all
Georg Brandlc1660762010-12-28 11:38:12 +000069 still-live heap objects. This is printed twice, in different formats,
Martin Panterb4ce1fc2015-11-30 03:18:29 +000070 before and after Py_FinalizeEx has cleaned up everything it can clean up. The
Georg Brandlc1660762010-12-28 11:38:12 +000071 first output block produces the repr() of each object so is more
72 informative; however, a lot of stuff destined to die is still alive then.
73 The second output block is much harder to work with (repr() can't be invoked
74 anymore -- the interpreter has been torn down too far), but doesn't list any
75 objects that will die. The tool script combinerefs.py can be run over this
76 to combine the info from both output blocks. The second output block, and
Tim Peters21d7d4d2003-04-18 00:45:59 +000077 combinerefs.py, were new in Python 2.3b1.
Georg Brandlc1660762010-12-28 11:38:12 +000078
79
80PYMALLOC_DEBUG
81--------------
Tim Peters6045d482002-07-09 18:35:34 +000082
Tim Peters889f61d2002-07-10 19:29:49 +000083When pymalloc is enabled (WITH_PYMALLOC is defined), calls to the PyObject_
Georg Brandlc1660762010-12-28 11:38:12 +000084memory routines are handled by Python's own small-object allocator, while calls
85to the PyMem_ memory routines are directed to the system malloc/ realloc/free.
86If PYMALLOC_DEBUG is also defined, calls to both PyObject_ and PyMem_ memory
87routines are directed to a special debugging mode of Python's small-object
88allocator.
Tim Peters889f61d2002-07-10 19:29:49 +000089
Georg Brandlc1660762010-12-28 11:38:12 +000090This mode fills dynamically allocated memory blocks with special, recognizable
91bit patterns, and adds debugging info on each end of dynamically allocated
92memory blocks. The special bit patterns are:
Tim Peters889f61d2002-07-10 19:29:49 +000093
94#define CLEANBYTE 0xCB /* clean (newly allocated) memory */
95#define DEADBYTE 0xDB /* dead (newly freed) memory */
Thomas Wouters89f507f2006-12-13 04:49:30 +000096#define FORBIDDENBYTE 0xFB /* forbidden -- untouchable bytes */
Tim Peters889f61d2002-07-10 19:29:49 +000097
98Strings of these bytes are unlikely to be valid addresses, floats, or 7-bit
99ASCII strings.
100
Georg Brandlc1660762010-12-28 11:38:12 +0000101Let S = sizeof(size_t). 2*S bytes are added at each end of each block of N bytes
102requested. The memory layout is like so, where p represents the address
103returned by a malloc-like or realloc-like function (p[i:j] means the slice of
104bytes from *(p+i) inclusive up to *(p+j) exclusive; note that the treatment of
105negative indices differs from a Python slice):
Tim Peters889f61d2002-07-10 19:29:49 +0000106
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000107p[-2*S:-S]
Georg Brandlc1660762010-12-28 11:38:12 +0000108 Number of bytes originally asked for. This is a size_t, big-endian (easier
109 to read in a memory dump).
Tim Petersdf099f52013-09-19 21:06:37 -0500110p[-S]
111 API ID. See PEP 445. This is a character, but seems undocumented.
112p[-S+1:0]
Tim Peters889f61d2002-07-10 19:29:49 +0000113 Copies of FORBIDDENBYTE. Used to catch under- writes and reads.
114p[0:N]
Tim Peters62fc52e2002-07-11 00:23:58 +0000115 The requested memory, filled with copies of CLEANBYTE, used to catch
Georg Brandlc1660762010-12-28 11:38:12 +0000116 reference to uninitialized memory. When a realloc-like function is called
117 requesting a larger memory block, the new excess bytes are also filled with
118 CLEANBYTE. When a free-like function is called, these are overwritten with
119 DEADBYTE, to catch reference to freed memory. When a realloc- like function
120 is called requesting a smaller memory block, the excess old bytes are also
121 filled with DEADBYTE.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000122p[N:N+S]
Tim Peters889f61d2002-07-10 19:29:49 +0000123 Copies of FORBIDDENBYTE. Used to catch over- writes and reads.
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000124p[N+S:N+2*S]
Tim Peters889f61d2002-07-10 19:29:49 +0000125 A serial number, incremented by 1 on each call to a malloc-like or
Georg Brandlc1660762010-12-28 11:38:12 +0000126 realloc-like function. Big-endian size_t. If "bad memory" is detected
127 later, the serial number gives an excellent way to set a breakpoint on the
128 next run, to capture the instant at which this block was passed out. The
129 static function bumpserialno() in obmalloc.c is the only place the serial
130 number is incremented, and exists so you can set such a breakpoint easily.
Tim Peters889f61d2002-07-10 19:29:49 +0000131
Georg Brandlc1660762010-12-28 11:38:12 +0000132A realloc-like or free-like function first checks that the FORBIDDENBYTEs at
133each end are intact. If they've been altered, diagnostic output is written to
134stderr, and the program is aborted via Py_FatalError(). The other main failure
135mode is provoking a memory error when a program reads up one of the special bit
136patterns and tries to use it as an address. If you get in a debugger then and
137look at the object, you're likely to see that it's entirely filled with 0xDB
138(meaning freed memory is getting used) or 0xCB (meaning uninitialized memory is
139getting used).
Tim Peters889f61d2002-07-10 19:29:49 +0000140
Victor Stinner235e7b22019-04-25 01:46:31 +0200141Note that PYMALLOC_DEBUG requires WITH_PYMALLOC. Py_DEBUG implies
142PYMALLOC_DEBUG (if WITH_PYMALLOC is enabled).
Tim Peters889f61d2002-07-10 19:29:49 +0000143
Tim Peters6045d482002-07-09 18:35:34 +0000144Special gimmicks:
145
Georg Brandlc1660762010-12-28 11:38:12 +0000146envvar PYTHONMALLOCSTATS
147 If this envvar exists, a report of pymalloc summary statistics is printed to
Martin Panterb4ce1fc2015-11-30 03:18:29 +0000148 stderr whenever a new arena is allocated, and also by Py_FinalizeEx().
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000149
150Changed in 2.5: The number of extra bytes allocated is 4*sizeof(size_t).
151Before it was 16 on all boxes, reflecting that Python couldn't make use of
152allocations >= 2**32 bytes even on 64-bit boxes before 2.5.
Georg Brandlc1660762010-12-28 11:38:12 +0000153
154
155Py_DEBUG
156--------
Tim Peters6045d482002-07-09 18:35:34 +0000157
158This is what is generally meant by "a debug build" of Python.
159
Victor Stinner235e7b22019-04-25 01:46:31 +0200160Py_DEBUG implies LLTRACE, Py_REF_DEBUG, and PYMALLOC_DEBUG (if
Georg Brandlc1660762010-12-28 11:38:12 +0000161WITH_PYMALLOC is enabled). In addition, C assert()s are enabled (via the C way:
162by not defining NDEBUG), and some routines do additional sanity checks inside
163"#ifdef Py_DEBUG" blocks.
164
165
Georg Brandlc1660762010-12-28 11:38:12 +0000166LLTRACE
167-------
Michael W. Hudsona6255232002-07-30 09:49:29 +0000168
Michael W. Hudson46e6d922005-01-18 15:53:59 +0000169Compile in support for Low Level TRACE-ing of the main interpreter loop.
Michael W. Hudsona6255232002-07-30 09:49:29 +0000170
Benjamin Peterson6e820c02015-03-01 20:59:22 -0500171When this preprocessor symbol is defined, before PyEval_EvalFrame executes a
172frame's code it checks the frame's global namespace for a variable
Danish Prakash09efe492018-08-25 07:30:25 +0530173"__ltrace__". If such a variable is found, mounds of information about what
Benjamin Peterson6e820c02015-03-01 20:59:22 -0500174the interpreter is doing are sprayed to stdout, such as every opcode and opcode
175argument and values pushed onto and popped off the value stack.
Michael W. Hudsona6255232002-07-30 09:49:29 +0000176
177Not useful very often, but very useful when needed.
Victor Stinner235e7b22019-04-25 01:46:31 +0200178
179Py_DEBUG implies LLTRACE.