| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 1 | This file describes some special Python build types enabled via | 
 | 2 | compile-time preprocessor defines. | 
 | 3 |  | 
| Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 4 | It is best to define these options in the EXTRA_CFLAGS make variable; | 
 | 5 | ``make EXTRA_CFLAGS="-DPy_REF_DEBUG"``. | 
| Brett Cannon | a267563 | 2005-04-19 20:28:09 +0000 | [diff] [blame] | 6 |  | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 7 | --------------------------------------------------------------------------- | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 8 | Py_REF_DEBUG                                              introduced in 1.4 | 
 | 9 |                                                  named REF_DEBUG before 1.4 | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 10 |  | 
 | 11 | Turn on aggregate reference counting.  This arranges that extern | 
 | 12 | _Py_RefTotal hold a count of all references, the sum of ob_refcnt across | 
 | 13 | all objects.  In a debug-mode build, this is where the "8288" comes from | 
 | 14 | in | 
 | 15 |  | 
 | 16 |     >>> 23 | 
 | 17 |     23 | 
 | 18 |     [8288 refs] | 
 | 19 |     >>> | 
 | 20 |  | 
 | 21 | Note that if this count increases when you're not storing away new objects, | 
 | 22 | there's probably a leak.  Remember, though, that in interactive mode the | 
 | 23 | special name "_" holds a reference to the last result displayed! | 
 | 24 |  | 
 | 25 | Py_REF_DEBUG also checks after every decref to verify that the refcount | 
 | 26 | hasn't gone negative, and causes an immediate fatal error if it has. | 
 | 27 |  | 
 | 28 | Special gimmicks: | 
 | 29 |  | 
 | 30 | sys.gettotalrefcount() | 
 | 31 |     Return current total of all refcounts. | 
 | 32 |     Available under Py_REF_DEBUG in Python 2.3. | 
 | 33 |     Before 2.3, Py_TRACE_REFS was required to enable this function. | 
 | 34 | --------------------------------------------------------------------------- | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 35 | Py_TRACE_REFS                                             introduced in 1.4 | 
 | 36 |                                                 named TRACE_REFS before 1.4 | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 37 |  | 
 | 38 | Turn on heavy reference debugging.  This is major surgery.  Every PyObject | 
 | 39 | grows two more pointers, to maintain a doubly-linked list of all live | 
| Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 40 | heap-allocated objects.  Most builtin type objects are not in this list, | 
 | 41 | as they're statically allocated.  Starting in Python 2.3, if COUNT_ALLOCS | 
 | 42 | (see below) is also defined, a static type object T does appear in this | 
 | 43 | list if at least one object of type T has been created. | 
 | 44 |  | 
 | 45 | Note that because the fundamental PyObject layout changes, Python modules | 
 | 46 | compiled with Py_TRACE_REFS are incompatible with modules compiled without | 
 | 47 | it. | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 48 |  | 
 | 49 | Py_TRACE_REFS implies Py_REF_DEBUG. | 
 | 50 |  | 
 | 51 | Special gimmicks: | 
 | 52 |  | 
 | 53 | sys.getobjects(max[, type]) | 
| Tim Peters | a788f5e | 2002-07-10 18:47:03 +0000 | [diff] [blame] | 54 |     Return list of the (no more than) max most-recently allocated objects, | 
 | 55 |     most recently allocated first in the list, least-recently allocated | 
 | 56 |     last in the list.  max=0 means no limit on list length. | 
 | 57 |     If an optional type object is passed, the list is also restricted to | 
 | 58 |     objects of that type. | 
 | 59 |     The return list itself, and some temp objects created just to call | 
 | 60 |     sys.getobjects(), are excluded from the return list.  Note that the | 
 | 61 |     list returned is just another object, though, so may appear in the | 
 | 62 |     return list the next time you call getobjects(); note that every | 
 | 63 |     object in the list is kept alive too, simply by virtue of being in | 
 | 64 |     the list. | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 65 |  | 
 | 66 | envar PYTHONDUMPREFS | 
 | 67 |     If this envar exists, Py_Finalize() arranges to print a list of | 
| Tim Peters | 21d7d4d | 2003-04-18 00:45:59 +0000 | [diff] [blame] | 68 |     all still-live heap objects.  This is printed twice, in different | 
 | 69 |     formats, before and after Py_Finalize has cleaned up everything it | 
 | 70 |     can clean up.  The first output block produces the repr() of each | 
 | 71 |     object so is more informative; however, a lot of stuff destined to | 
 | 72 |     die is still alive then.  The second output block is much harder | 
 | 73 |     to work with (repr() can't be invoked anymore -- the interpreter | 
 | 74 |     has been torn down too far), but doesn't list any objects that will | 
 | 75 |     die.  The tool script combinerefs.py can be run over this to combine | 
 | 76 |     the info from both output blocks.  The second output block, and | 
 | 77 |     combinerefs.py, were new in Python 2.3b1. | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 78 | --------------------------------------------------------------------------- | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 79 | PYMALLOC_DEBUG                                            introduced in 2.3 | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 80 |  | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 81 | When pymalloc is enabled (WITH_PYMALLOC is defined), calls to the PyObject_ | 
 | 82 | memory routines are handled by Python's own small-object allocator, while | 
 | 83 | calls to the PyMem_ memory routines are directed to the system malloc/ | 
 | 84 | realloc/free.  If PYMALLOC_DEBUG is also defined, calls to both PyObject_ | 
 | 85 | and PyMem_ memory routines are directed to a special debugging mode of | 
 | 86 | Python's small-object allocator. | 
 | 87 |  | 
 | 88 | This mode fills dynamically allocated memory blocks with special, | 
 | 89 | recognizable bit patterns, and adds debugging info on each end of | 
 | 90 | dynamically allocated memory blocks.  The special bit patterns are: | 
 | 91 |  | 
 | 92 | #define CLEANBYTE     0xCB   /* clean (newly allocated) memory */ | 
 | 93 | #define DEADBYTE      0xDB   /* dead (newly freed) memory */ | 
| Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 94 | #define FORBIDDENBYTE 0xFB   /* forbidden -- untouchable bytes */ | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 95 |  | 
 | 96 | Strings of these bytes are unlikely to be valid addresses, floats, or 7-bit | 
 | 97 | ASCII strings. | 
 | 98 |  | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 99 | Let S = sizeof(size_t). 2*S bytes are added at each end of each block of N | 
 | 100 | bytes requested.  The memory layout is like so, where p represents the | 
 | 101 | address returned by a malloc-like or realloc-like function (p[i:j] means | 
 | 102 | the slice of bytes from *(p+i) inclusive up to *(p+j) exclusive; note that | 
 | 103 | the treatment of negative indices differs from a Python slice): | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 104 |  | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 105 | p[-2*S:-S] | 
 | 106 |     Number of bytes originally asked for.  This is a size_t, big-endian | 
 | 107 |     (easier to read in a memory dump). | 
 | 108 | p[-S:0] | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 109 |     Copies of FORBIDDENBYTE.  Used to catch under- writes and reads. | 
 | 110 | p[0:N] | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 111 |     The requested memory, filled with copies of CLEANBYTE, used to catch | 
 | 112 |     reference to uninitialized memory. | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 113 |     When a realloc-like function is called requesting a larger memory | 
 | 114 |     block, the new excess bytes are also filled with CLEANBYTE. | 
 | 115 |     When a free-like function is called, these are overwritten with | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 116 |     DEADBYTE, to catch reference to freed memory.  When a realloc- | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 117 |     like function is called requesting a smaller memory block, the excess | 
 | 118 |     old bytes are also filled with DEADBYTE. | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 119 | p[N:N+S] | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 120 |     Copies of FORBIDDENBYTE.  Used to catch over- writes and reads. | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 121 | p[N+S:N+2*S] | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 122 |     A serial number, incremented by 1 on each call to a malloc-like or | 
 | 123 |     realloc-like function. | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 124 |     Big-endian size_t. | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 125 |     If "bad memory" is detected later, the serial number gives an | 
 | 126 |     excellent way to set a breakpoint on the next run, to capture the | 
| Tim Peters | 20c8a04 | 2002-07-11 00:02:52 +0000 | [diff] [blame] | 127 |     instant at which this block was passed out.  The static function | 
 | 128 |     bumpserialno() in obmalloc.c is the only place the serial number | 
 | 129 |     is incremented, and exists so you can set such a breakpoint easily. | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 130 |  | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 131 | A realloc-like or free-like function first checks that the FORBIDDENBYTEs | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 132 | at each end are intact.  If they've been altered, diagnostic output is | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 133 | written to stderr, and the program is aborted via Py_FatalError().  The | 
 | 134 | other main failure mode is provoking a memory error when a program | 
 | 135 | reads up one of the special bit patterns and tries to use it as an address. | 
 | 136 | If you get in a debugger then and look at the object, you're likely | 
 | 137 | to see that it's entirely filled with 0xDB (meaning freed memory is | 
 | 138 | getting used) or 0xCB (meaning uninitialized memory is getting used). | 
| Tim Peters | 889f61d | 2002-07-10 19:29:49 +0000 | [diff] [blame] | 139 |  | 
 | 140 | Note that PYMALLOC_DEBUG requires WITH_PYMALLOC. | 
 | 141 |  | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 142 | Special gimmicks: | 
 | 143 |  | 
 | 144 | envar PYTHONMALLOCSTATS | 
 | 145 |     If this envar exists, a report of pymalloc summary statistics is | 
 | 146 |     printed to stderr whenever a new arena is allocated, and also | 
 | 147 |     by Py_Finalize(). | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 148 |  | 
 | 149 | Changed in 2.5:  The number of extra bytes allocated is 4*sizeof(size_t). | 
 | 150 | Before it was 16 on all boxes, reflecting that Python couldn't make use of | 
 | 151 | allocations >= 2**32 bytes even on 64-bit boxes before 2.5. | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 152 | --------------------------------------------------------------------------- | 
| Tim Peters | 62fc52e | 2002-07-11 00:23:58 +0000 | [diff] [blame] | 153 | Py_DEBUG                                                  introduced in 1.5 | 
 | 154 |                                                      named DEBUG before 1.5 | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 155 |  | 
 | 156 | This is what is generally meant by "a debug build" of Python. | 
 | 157 |  | 
| Michael W. Hudson | a625523 | 2002-07-30 09:49:29 +0000 | [diff] [blame] | 158 | Py_DEBUG implies LLTRACE, Py_REF_DEBUG, Py_TRACE_REFS, and | 
 | 159 | PYMALLOC_DEBUG (if WITH_PYMALLOC is enabled).  In addition, C | 
 | 160 | assert()s are enabled (via the C way: by not defining NDEBUG), and | 
 | 161 | some routines do additional sanity checks inside "#ifdef Py_DEBUG" | 
 | 162 | blocks. | 
| Tim Peters | 6045d48 | 2002-07-09 18:35:34 +0000 | [diff] [blame] | 163 | --------------------------------------------------------------------------- | 
| Michael W. Hudson | 202a4b6 | 2002-07-30 15:25:57 +0000 | [diff] [blame] | 164 | COUNT_ALLOCS                                            introduced in 0.9.9 | 
 | 165 |                                              partly broken in 2.2 and 2.2.1 | 
| Tim Peters | 48ba649 | 2002-07-09 19:24:54 +0000 | [diff] [blame] | 166 |  | 
 | 167 | Each type object grows three new members: | 
 | 168 |  | 
 | 169 |     /* Number of times an object of this type was allocated. */ | 
| Guido van Rossum | 0c08864 | 2002-07-11 01:04:32 +0000 | [diff] [blame] | 170 |     int tp_allocs; | 
| Tim Peters | 48ba649 | 2002-07-09 19:24:54 +0000 | [diff] [blame] | 171 |  | 
 | 172 |     /* Number of times an object of this type was deallocated. */ | 
| Guido van Rossum | 0c08864 | 2002-07-11 01:04:32 +0000 | [diff] [blame] | 173 |     int tp_frees; | 
| Tim Peters | 48ba649 | 2002-07-09 19:24:54 +0000 | [diff] [blame] | 174 |  | 
| Guido van Rossum | 0c08864 | 2002-07-11 01:04:32 +0000 | [diff] [blame] | 175 |     /* Highwater mark:  the maximum value of tp_allocs - tp_frees so | 
 | 176 |      * far; or, IOW, the largest number of objects of this type alive at | 
 | 177 |      * the same time. | 
 | 178 |      */ | 
 | 179 |     int tp_maxalloc; | 
| Tim Peters | 48ba649 | 2002-07-09 19:24:54 +0000 | [diff] [blame] | 180 |  | 
 | 181 | Allocation and deallocation code keeps these counts up to date. | 
 | 182 | Py_Finalize() displays a summary of the info returned by sys.getcounts() | 
 | 183 | (see below), along with assorted other special allocation counts (like | 
 | 184 | the number of tuple allocations satisfied by a tuple free-list, the number | 
 | 185 | of 1-character strings allocated, etc). | 
 | 186 |  | 
 | 187 | Before Python 2.2, type objects were immortal, and the COUNT_ALLOCS | 
 | 188 | implementation relies on that.  As of Python 2.2, heap-allocated type/ | 
 | 189 | class objects can go away.  COUNT_ALLOCS can blow up in 2.2 and 2.2.1 | 
 | 190 | because of this; this was fixed in 2.2.2.  Use of COUNT_ALLOCS makes | 
 | 191 | all heap-allocated type objects immortal, except for those for which no | 
 | 192 | object of that type is ever allocated. | 
 | 193 |  | 
| Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 194 | Starting with Python 2.3, If Py_TRACE_REFS is also defined, COUNT_ALLOCS | 
 | 195 | arranges to ensure that the type object for each allocated object | 
 | 196 | appears in the doubly-linked list of all objects maintained by | 
 | 197 | Py_TRACE_REFS. | 
 | 198 |  | 
| Tim Peters | 48ba649 | 2002-07-09 19:24:54 +0000 | [diff] [blame] | 199 | Special gimmicks: | 
 | 200 |  | 
 | 201 | sys.getcounts() | 
 | 202 |     Return a list of 4-tuples, one entry for each type object for which | 
 | 203 |     at least one object of that type was allocated.  Each tuple is of | 
 | 204 |     the form: | 
 | 205 |  | 
 | 206 |         (tp_name, tp_allocs, tp_frees, tp_maxalloc) | 
 | 207 |  | 
| Tim Peters | 44c1a7b | 2002-07-09 19:27:20 +0000 | [diff] [blame] | 208 |     Each distinct type object gets a distinct entry in this list, even | 
| Tim Peters | 48ba649 | 2002-07-09 19:24:54 +0000 | [diff] [blame] | 209 |     if two or more type objects have the same tp_name (in which case | 
 | 210 |     there's no way to distinguish them by looking at this list).  The | 
 | 211 |     list is ordered by time of first object allocation:  the type object | 
 | 212 |     for which the first allocation of an object of that type occurred | 
 | 213 |     most recently is at the front of the list. | 
 | 214 | --------------------------------------------------------------------------- | 
| Michael W. Hudson | 202a4b6 | 2002-07-30 15:25:57 +0000 | [diff] [blame] | 215 | LLTRACE                                          introduced well before 1.0 | 
| Michael W. Hudson | a625523 | 2002-07-30 09:49:29 +0000 | [diff] [blame] | 216 |  | 
| Michael W. Hudson | 46e6d92 | 2005-01-18 15:53:59 +0000 | [diff] [blame] | 217 | Compile in support for Low Level TRACE-ing of the main interpreter loop. | 
| Michael W. Hudson | a625523 | 2002-07-30 09:49:29 +0000 | [diff] [blame] | 218 |  | 
| Michael W. Hudson | 46e6d92 | 2005-01-18 15:53:59 +0000 | [diff] [blame] | 219 | When this preprocessor symbol is defined, before PyEval_EvalFrame | 
 | 220 | (eval_frame in 2.3 and 2.2, eval_code2 before that) executes a frame's code | 
 | 221 | it checks the frame's global namespace for a variable "__lltrace__".  If | 
 | 222 | such a variable is found, mounds of information about what the interpreter | 
 | 223 | is doing are sprayed to stdout, such as every opcode and opcode argument | 
 | 224 | and values pushed onto and popped off the value stack. | 
| Michael W. Hudson | a625523 | 2002-07-30 09:49:29 +0000 | [diff] [blame] | 225 |  | 
 | 226 | Not useful very often, but very useful when needed. | 
| Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 227 |  | 
 | 228 | --------------------------------------------------------------------------- | 
 | 229 | CALL_PROFILE                                      introduced for Python 2.3 | 
 | 230 |  | 
 | 231 | Count the number of function calls executed. | 
 | 232 |  | 
 | 233 | When this symbol is defined, the ceval mainloop and helper functions | 
 | 234 | count the number of function calls made.  It keeps detailed statistics | 
 | 235 | about what kind of object was called and whether the call hit any of | 
 | 236 | the special fast paths in the code. | 
| Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 237 |  | 
 | 238 | --------------------------------------------------------------------------- | 
 | 239 | WITH_TSC                                          introduced for Python 2.4 | 
 | 240 |  | 
 | 241 | Super-lowlevel profiling of the interpreter.  When enabled, the sys | 
 | 242 | module grows a new function: | 
 | 243 |  | 
 | 244 | settscdump(bool) | 
 | 245 |     If true, tell the Python interpreter to dump VM measurements to | 
 | 246 |     stderr.  If false, turn off dump.  The measurements are based on the | 
 | 247 |     processor's time-stamp counter. | 
 | 248 |  | 
 | 249 | This build option requires a small amount of platform specific code. | 
 | 250 | Currently this code is present for linux/x86 and any PowerPC platform | 
 | 251 | that uses GCC (i.e. OS X and linux/ppc). | 
 | 252 |  | 
 | 253 | On the PowerPC the rate at which the time base register is incremented | 
 | 254 | is not defined by the architecture specification, so you'll need to | 
| Michael W. Hudson | 46e6d92 | 2005-01-18 15:53:59 +0000 | [diff] [blame] | 255 | find the manual for your specific processor.  For the 750CX, 750CXe | 
 | 256 | and 750FX (all sold as the G3) we find: | 
| Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 257 |  | 
| Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 258 |     The time base counter is clocked at a frequency that is | 
| Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 259 |     one-fourth that of the bus clock. | 
 | 260 |  | 
 | 261 | This build is enabled by the --with-tsc flag to configure. |