Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | |
| 4 | .. _memory: |
| 5 | |
| 6 | ***************** |
| 7 | Memory Management |
| 8 | ***************** |
| 9 | |
| 10 | .. sectionauthor:: Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr> |
| 11 | |
| 12 | |
| 13 | |
| 14 | .. _memoryoverview: |
| 15 | |
| 16 | Overview |
| 17 | ======== |
| 18 | |
| 19 | Memory management in Python involves a private heap containing all Python |
| 20 | objects and data structures. The management of this private heap is ensured |
| 21 | internally by the *Python memory manager*. The Python memory manager has |
| 22 | different components which deal with various dynamic storage management aspects, |
| 23 | like sharing, segmentation, preallocation or caching. |
| 24 | |
| 25 | At the lowest level, a raw memory allocator ensures that there is enough room in |
| 26 | the private heap for storing all Python-related data by interacting with the |
| 27 | memory manager of the operating system. On top of the raw memory allocator, |
| 28 | several object-specific allocators operate on the same heap and implement |
| 29 | distinct memory management policies adapted to the peculiarities of every object |
| 30 | type. For example, integer objects are managed differently within the heap than |
| 31 | strings, tuples or dictionaries because integers imply different storage |
| 32 | requirements and speed/space tradeoffs. The Python memory manager thus delegates |
| 33 | some of the work to the object-specific allocators, but ensures that the latter |
| 34 | operate within the bounds of the private heap. |
| 35 | |
| 36 | It is important to understand that the management of the Python heap is |
| 37 | performed by the interpreter itself and that the user has no control over it, |
| 38 | even if she regularly manipulates object pointers to memory blocks inside that |
| 39 | heap. The allocation of heap space for Python objects and other internal |
| 40 | buffers is performed on demand by the Python memory manager through the Python/C |
| 41 | API functions listed in this document. |
| 42 | |
| 43 | .. index:: |
| 44 | single: malloc() |
| 45 | single: calloc() |
| 46 | single: realloc() |
| 47 | single: free() |
| 48 | |
| 49 | To avoid memory corruption, extension writers should never try to operate on |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 50 | Python objects with the functions exported by the C library: :c:func:`malloc`, |
| 51 | :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`. This will result in mixed |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 52 | calls between the C allocator and the Python memory manager with fatal |
| 53 | consequences, because they implement different algorithms and operate on |
| 54 | different heaps. However, one may safely allocate and release memory blocks |
| 55 | with the C library allocator for individual purposes, as shown in the following |
| 56 | example:: |
| 57 | |
| 58 | PyObject *res; |
| 59 | char *buf = (char *) malloc(BUFSIZ); /* for I/O */ |
| 60 | |
| 61 | if (buf == NULL) |
| 62 | return PyErr_NoMemory(); |
| 63 | ...Do some I/O operation involving buf... |
Gregory P. Smith | 4b52ae8 | 2013-03-22 13:43:30 -0700 | [diff] [blame] | 64 | res = PyBytes_FromString(buf); |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 65 | free(buf); /* malloc'ed */ |
| 66 | return res; |
| 67 | |
| 68 | In this example, the memory request for the I/O buffer is handled by the C |
| 69 | library allocator. The Python memory manager is involved only in the allocation |
| 70 | of the string object returned as a result. |
| 71 | |
| 72 | In most situations, however, it is recommended to allocate memory from the |
| 73 | Python heap specifically because the latter is under control of the Python |
| 74 | memory manager. For example, this is required when the interpreter is extended |
| 75 | with new object types written in C. Another reason for using the Python heap is |
| 76 | the desire to *inform* the Python memory manager about the memory needs of the |
| 77 | extension module. Even when the requested memory is used exclusively for |
| 78 | internal, highly-specific purposes, delegating all memory requests to the Python |
| 79 | memory manager causes the interpreter to have a more accurate image of its |
| 80 | memory footprint as a whole. Consequently, under certain circumstances, the |
| 81 | Python memory manager may or may not trigger appropriate actions, like garbage |
| 82 | collection, memory compaction or other preventive procedures. Note that by using |
| 83 | the C library allocator as shown in the previous example, the allocated memory |
| 84 | for the I/O buffer escapes completely the Python memory manager. |
| 85 | |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 86 | .. seealso:: |
| 87 | |
| 88 | The :envvar:`PYTHONMALLOCSTATS` environment variable can be used to print |
| 89 | memory allocation statistics every time a new object arena is created, and |
| 90 | on shutdown. |
| 91 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 92 | |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 93 | Raw Memory Interface |
| 94 | ==================== |
| 95 | |
| 96 | The following function sets are wrappers to the system allocator. These |
| 97 | functions are thread-safe, the :term:`GIL <global interpreter lock>` does not |
| 98 | need to be held. |
| 99 | |
| 100 | The default raw memory block allocator uses the following functions: |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 101 | :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`; call |
| 102 | ``malloc(1)`` (or ``calloc(1, 1)``) when requesting zero bytes. |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 103 | |
| 104 | .. versionadded:: 3.4 |
| 105 | |
| 106 | .. c:function:: void* PyMem_RawMalloc(size_t n) |
| 107 | |
| 108 | Allocates *n* bytes and returns a pointer of type :c:type:`void\*` to the |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 109 | allocated memory, or *NULL* if the request fails. |
| 110 | |
| 111 | Requesting zero bytes returns a distinct non-*NULL* pointer if possible, as |
| 112 | if ``PyMem_RawMalloc(1)`` had been called instead. The memory will not have |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 113 | been initialized in any way. |
| 114 | |
| 115 | |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 116 | .. c:function:: void* PyMem_RawCalloc(size_t nelem, size_t elsize) |
| 117 | |
| 118 | Allocates *nelem* elements each whose size in bytes is *elsize* and returns |
| 119 | a pointer of type :c:type:`void\*` to the allocated memory, or *NULL* if the |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 120 | request fails. The memory is initialized to zeros. |
| 121 | |
| 122 | Requesting zero elements or elements of size zero bytes returns a distinct |
| 123 | non-*NULL* pointer if possible, as if ``PyMem_RawCalloc(1, 1)`` had been |
| 124 | called instead. |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 125 | |
| 126 | .. versionadded:: 3.5 |
| 127 | |
| 128 | |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 129 | .. c:function:: void* PyMem_RawRealloc(void *p, size_t n) |
| 130 | |
| 131 | Resizes the memory block pointed to by *p* to *n* bytes. The contents will |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 132 | be unchanged to the minimum of the old and the new sizes. |
| 133 | |
| 134 | If *p* is *NULL*, the call is equivalent to ``PyMem_RawMalloc(n)``; else if |
| 135 | *n* is equal to zero, the memory block is resized but is not freed, and the |
| 136 | returned pointer is non-*NULL*. |
| 137 | |
| 138 | Unless *p* is *NULL*, it must have been returned by a previous call to |
| 139 | :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or |
| 140 | :c:func:`PyMem_RawCalloc`. |
| 141 | |
| 142 | If the request fails, :c:func:`PyMem_RawRealloc` returns *NULL* and *p* |
| 143 | remains a valid pointer to the previous memory area. |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 144 | |
| 145 | |
| 146 | .. c:function:: void PyMem_RawFree(void *p) |
| 147 | |
| 148 | Frees the memory block pointed to by *p*, which must have been returned by a |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 149 | previous call to :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc` or |
| 150 | :c:func:`PyMem_RawCalloc`. Otherwise, or if ``PyMem_Free(p)`` has been |
| 151 | called before, undefined behavior occurs. |
| 152 | |
| 153 | If *p* is *NULL*, no operation is performed. |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 154 | |
| 155 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 156 | .. _memoryinterface: |
| 157 | |
| 158 | Memory Interface |
| 159 | ================ |
| 160 | |
| 161 | The following function sets, modeled after the ANSI C standard, but specifying |
| 162 | behavior when requesting zero bytes, are available for allocating and releasing |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 163 | memory from the Python heap. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 165 | The default memory block allocator uses the following functions: |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 166 | :c:func:`malloc`, :c:func:`calloc`, :c:func:`realloc` and :c:func:`free`; call |
| 167 | ``malloc(1)`` (or ``calloc(1, 1)``) when requesting zero bytes. |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 168 | |
| 169 | .. warning:: |
| 170 | |
| 171 | The :term:`GIL <global interpreter lock>` must be held when using these |
| 172 | functions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 173 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 174 | .. c:function:: void* PyMem_Malloc(size_t n) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 175 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 176 | Allocates *n* bytes and returns a pointer of type :c:type:`void\*` to the |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 177 | allocated memory, or *NULL* if the request fails. |
| 178 | |
| 179 | Requesting zero bytes returns a distinct non-*NULL* pointer if possible, as |
| 180 | if ``PyMem_Malloc(1)`` had been called instead. The memory will not have |
| 181 | been initialized in any way. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 182 | |
| 183 | |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 184 | .. c:function:: void* PyMem_Calloc(size_t nelem, size_t elsize) |
| 185 | |
| 186 | Allocates *nelem* elements each whose size in bytes is *elsize* and returns |
| 187 | a pointer of type :c:type:`void\*` to the allocated memory, or *NULL* if the |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 188 | request fails. The memory is initialized to zeros. |
| 189 | |
| 190 | Requesting zero elements or elements of size zero bytes returns a distinct |
| 191 | non-*NULL* pointer if possible, as if ``PyMem_Calloc(1, 1)`` had been called |
| 192 | instead. |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 193 | |
| 194 | .. versionadded:: 3.5 |
| 195 | |
| 196 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 197 | .. c:function:: void* PyMem_Realloc(void *p, size_t n) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 198 | |
| 199 | Resizes the memory block pointed to by *p* to *n* bytes. The contents will be |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 200 | unchanged to the minimum of the old and the new sizes. |
| 201 | |
| 202 | If *p* is *NULL*, the call is equivalent to ``PyMem_Malloc(n)``; else if *n* |
| 203 | is equal to zero, the memory block is resized but is not freed, and the |
| 204 | returned pointer is non-*NULL*. |
| 205 | |
| 206 | Unless *p* is *NULL*, it must have been returned by a previous call to |
| 207 | :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or :c:func:`PyMem_Calloc`. |
| 208 | |
| 209 | If the request fails, :c:func:`PyMem_Realloc` returns *NULL* and *p* remains |
| 210 | a valid pointer to the previous memory area. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 211 | |
| 212 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 213 | .. c:function:: void PyMem_Free(void *p) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 214 | |
| 215 | Frees the memory block pointed to by *p*, which must have been returned by a |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 216 | previous call to :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc` or |
| 217 | :c:func:`PyMem_Calloc`. Otherwise, or if ``PyMem_Free(p)`` has been called |
| 218 | before, undefined behavior occurs. |
| 219 | |
| 220 | If *p* is *NULL*, no operation is performed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 221 | |
| 222 | The following type-oriented macros are provided for convenience. Note that |
| 223 | *TYPE* refers to any C type. |
| 224 | |
| 225 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 226 | .. c:function:: TYPE* PyMem_New(TYPE, size_t n) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 227 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 228 | Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes of |
| 229 | memory. Returns a pointer cast to :c:type:`TYPE\*`. The memory will not have |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 230 | been initialized in any way. |
| 231 | |
| 232 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 233 | .. c:function:: TYPE* PyMem_Resize(void *p, TYPE, size_t n) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 234 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 235 | Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n * |
| 236 | sizeof(TYPE))`` bytes. Returns a pointer cast to :c:type:`TYPE\*`. On return, |
Georg Brandl | d492ad8 | 2008-07-23 16:13:07 +0000 | [diff] [blame] | 237 | *p* will be a pointer to the new memory area, or *NULL* in the event of |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 238 | failure. |
| 239 | |
| 240 | This is a C preprocessor macro; *p* is always reassigned. Save the original |
| 241 | value of *p* to avoid losing memory when handling errors. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 242 | |
| 243 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 244 | .. c:function:: void PyMem_Del(void *p) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 245 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 246 | Same as :c:func:`PyMem_Free`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 247 | |
| 248 | In addition, the following macro sets are provided for calling the Python memory |
| 249 | allocator directly, without involving the C API functions listed above. However, |
| 250 | note that their use does not preserve binary compatibility across Python |
| 251 | versions and is therefore deprecated in extension modules. |
| 252 | |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 253 | * ``PyMem_MALLOC(size)`` |
| 254 | * ``PyMem_NEW(type, size)`` |
| 255 | * ``PyMem_REALLOC(ptr, size)`` |
| 256 | * ``PyMem_RESIZE(ptr, type, size)`` |
| 257 | * ``PyMem_FREE(ptr)`` |
| 258 | * ``PyMem_DEL(ptr)`` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 259 | |
| 260 | |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 261 | Customize Memory Allocators |
| 262 | =========================== |
| 263 | |
| 264 | .. versionadded:: 3.4 |
| 265 | |
Victor Stinner | d8f0d92 | 2014-06-02 21:57:10 +0200 | [diff] [blame] | 266 | .. c:type:: PyMemAllocatorEx |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 267 | |
| 268 | Structure used to describe a memory block allocator. The structure has |
| 269 | four fields: |
| 270 | |
| 271 | +----------------------------------------------------------+---------------------------------------+ |
| 272 | | Field | Meaning | |
| 273 | +==========================================================+=======================================+ |
| 274 | | ``void *ctx`` | user context passed as first argument | |
| 275 | +----------------------------------------------------------+---------------------------------------+ |
| 276 | | ``void* malloc(void *ctx, size_t size)`` | allocate a memory block | |
| 277 | +----------------------------------------------------------+---------------------------------------+ |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 278 | | ``void* calloc(void *ctx, size_t nelem, size_t elsize)`` | allocate a memory block initialized | |
| 279 | | | with zeros | |
| 280 | +----------------------------------------------------------+---------------------------------------+ |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 281 | | ``void* realloc(void *ctx, void *ptr, size_t new_size)`` | allocate or resize a memory block | |
| 282 | +----------------------------------------------------------+---------------------------------------+ |
| 283 | | ``void free(void *ctx, void *ptr)`` | free a memory block | |
| 284 | +----------------------------------------------------------+---------------------------------------+ |
| 285 | |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 286 | .. versionchanged:: 3.5 |
Victor Stinner | d8f0d92 | 2014-06-02 21:57:10 +0200 | [diff] [blame] | 287 | The :c:type:`PyMemAllocator` structure was renamed to |
| 288 | :c:type:`PyMemAllocatorEx` and a new ``calloc`` field was added. |
| 289 | |
Victor Stinner | db067af | 2014-05-02 22:31:14 +0200 | [diff] [blame] | 290 | |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 291 | .. c:type:: PyMemAllocatorDomain |
| 292 | |
| 293 | Enum used to identify an allocator domain. Domains: |
| 294 | |
| 295 | * :c:data:`PYMEM_DOMAIN_RAW`: functions :c:func:`PyMem_RawMalloc`, |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 296 | :c:func:`PyMem_RawRealloc`, :c:func:`PyMem_RawCalloc` and |
| 297 | :c:func:`PyMem_RawFree` |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 298 | * :c:data:`PYMEM_DOMAIN_MEM`: functions :c:func:`PyMem_Malloc`, |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 299 | :c:func:`PyMem_Realloc`, :c:func:`PyMem_Calloc` and :c:func:`PyMem_Free` |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 300 | * :c:data:`PYMEM_DOMAIN_OBJ`: functions :c:func:`PyObject_Malloc`, |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 301 | :c:func:`PyObject_Realloc`, :c:func:`PyObject_Calloc` and |
| 302 | :c:func:`PyObject_Free` |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 303 | |
| 304 | |
Victor Stinner | d8f0d92 | 2014-06-02 21:57:10 +0200 | [diff] [blame] | 305 | .. c:function:: void PyMem_GetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator) |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 306 | |
| 307 | Get the memory block allocator of the specified domain. |
| 308 | |
| 309 | |
Victor Stinner | d8f0d92 | 2014-06-02 21:57:10 +0200 | [diff] [blame] | 310 | .. c:function:: void PyMem_SetAllocator(PyMemAllocatorDomain domain, PyMemAllocatorEx *allocator) |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 311 | |
| 312 | Set the memory block allocator of the specified domain. |
| 313 | |
| 314 | The new allocator must return a distinct non-NULL pointer when requesting |
| 315 | zero bytes. |
| 316 | |
| 317 | For the :c:data:`PYMEM_DOMAIN_RAW` domain, the allocator must be |
| 318 | thread-safe: the :term:`GIL <global interpreter lock>` is not held when the |
| 319 | allocator is called. |
| 320 | |
| 321 | If the new allocator is not a hook (does not call the previous allocator), |
| 322 | the :c:func:`PyMem_SetupDebugHooks` function must be called to reinstall the |
| 323 | debug hooks on top on the new allocator. |
| 324 | |
| 325 | |
| 326 | .. c:function:: void PyMem_SetupDebugHooks(void) |
| 327 | |
| 328 | Setup hooks to detect bugs in the following Python memory allocator |
| 329 | functions: |
| 330 | |
| 331 | - :c:func:`PyMem_RawMalloc`, :c:func:`PyMem_RawRealloc`, |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 332 | :c:func:`PyMem_RawCalloc`, :c:func:`PyMem_RawFree` |
| 333 | - :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc`, :c:func:`PyMem_Calloc`, |
| 334 | :c:func:`PyMem_Free` |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 335 | - :c:func:`PyObject_Malloc`, :c:func:`PyObject_Realloc`, |
Victor Stinner | 29bf27f | 2016-03-09 14:49:52 +0100 | [diff] [blame] | 336 | :c:func:`PyObject_Calloc`, :c:func:`PyObject_Free` |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 337 | |
| 338 | Newly allocated memory is filled with the byte ``0xCB``, freed memory is |
R David Murray | 5be7f15 | 2015-04-14 16:42:08 -0400 | [diff] [blame] | 339 | filled with the byte ``0xDB``. Additional checks: |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 340 | |
| 341 | - detect API violations, ex: :c:func:`PyObject_Free` called on a buffer |
| 342 | allocated by :c:func:`PyMem_Malloc` |
| 343 | - detect write before the start of the buffer (buffer underflow) |
| 344 | - detect write after the end of the buffer (buffer overflow) |
| 345 | |
| 346 | The function does nothing if Python is not compiled is debug mode. |
| 347 | |
| 348 | |
| 349 | Customize PyObject Arena Allocator |
| 350 | ================================== |
| 351 | |
| 352 | Python has a *pymalloc* allocator for allocations smaller than 512 bytes. This |
| 353 | allocator is optimized for small objects with a short lifetime. It uses memory |
| 354 | mappings called "arenas" with a fixed size of 256 KB. It falls back to |
Victor Stinner | 6cf185d | 2013-10-10 15:58:42 +0200 | [diff] [blame] | 355 | :c:func:`PyMem_RawMalloc` and :c:func:`PyMem_RawRealloc` for allocations larger |
| 356 | than 512 bytes. *pymalloc* is the default allocator used by |
Victor Stinner | 0507bf5 | 2013-07-07 02:05:46 +0200 | [diff] [blame] | 357 | :c:func:`PyObject_Malloc`. |
| 358 | |
| 359 | The default arena allocator uses the following functions: |
| 360 | |
| 361 | * :c:func:`VirtualAlloc` and :c:func:`VirtualFree` on Windows, |
| 362 | * :c:func:`mmap` and :c:func:`munmap` if available, |
| 363 | * :c:func:`malloc` and :c:func:`free` otherwise. |
| 364 | |
| 365 | .. versionadded:: 3.4 |
| 366 | |
| 367 | .. c:type:: PyObjectArenaAllocator |
| 368 | |
| 369 | Structure used to describe an arena allocator. The structure has |
| 370 | three fields: |
| 371 | |
| 372 | +--------------------------------------------------+---------------------------------------+ |
| 373 | | Field | Meaning | |
| 374 | +==================================================+=======================================+ |
| 375 | | ``void *ctx`` | user context passed as first argument | |
| 376 | +--------------------------------------------------+---------------------------------------+ |
| 377 | | ``void* alloc(void *ctx, size_t size)`` | allocate an arena of size bytes | |
| 378 | +--------------------------------------------------+---------------------------------------+ |
| 379 | | ``void free(void *ctx, size_t size, void *ptr)`` | free an arena | |
| 380 | +--------------------------------------------------+---------------------------------------+ |
| 381 | |
| 382 | .. c:function:: PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator) |
| 383 | |
| 384 | Get the arena allocator. |
| 385 | |
| 386 | .. c:function:: PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator) |
| 387 | |
| 388 | Set the arena allocator. |
| 389 | |
| 390 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 391 | .. _memoryexamples: |
| 392 | |
| 393 | Examples |
| 394 | ======== |
| 395 | |
| 396 | Here is the example from section :ref:`memoryoverview`, rewritten so that the |
| 397 | I/O buffer is allocated from the Python heap by using the first function set:: |
| 398 | |
| 399 | PyObject *res; |
| 400 | char *buf = (char *) PyMem_Malloc(BUFSIZ); /* for I/O */ |
| 401 | |
| 402 | if (buf == NULL) |
| 403 | return PyErr_NoMemory(); |
| 404 | /* ...Do some I/O operation involving buf... */ |
Gregory P. Smith | 4b52ae8 | 2013-03-22 13:43:30 -0700 | [diff] [blame] | 405 | res = PyBytes_FromString(buf); |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 406 | PyMem_Free(buf); /* allocated with PyMem_Malloc */ |
| 407 | return res; |
| 408 | |
| 409 | The same code using the type-oriented function set:: |
| 410 | |
| 411 | PyObject *res; |
| 412 | char *buf = PyMem_New(char, BUFSIZ); /* for I/O */ |
| 413 | |
| 414 | if (buf == NULL) |
| 415 | return PyErr_NoMemory(); |
| 416 | /* ...Do some I/O operation involving buf... */ |
Gregory P. Smith | 4b52ae8 | 2013-03-22 13:43:30 -0700 | [diff] [blame] | 417 | res = PyBytes_FromString(buf); |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 418 | PyMem_Del(buf); /* allocated with PyMem_New */ |
| 419 | return res; |
| 420 | |
| 421 | Note that in the two examples above, the buffer is always manipulated via |
| 422 | functions belonging to the same set. Indeed, it is required to use the same |
| 423 | memory API family for a given memory block, so that the risk of mixing different |
| 424 | allocators is reduced to a minimum. The following code sequence contains two |
| 425 | errors, one of which is labeled as *fatal* because it mixes two different |
| 426 | allocators operating on different heaps. :: |
| 427 | |
| 428 | char *buf1 = PyMem_New(char, BUFSIZ); |
| 429 | char *buf2 = (char *) malloc(BUFSIZ); |
| 430 | char *buf3 = (char *) PyMem_Malloc(BUFSIZ); |
| 431 | ... |
| 432 | PyMem_Del(buf3); /* Wrong -- should be PyMem_Free() */ |
| 433 | free(buf2); /* Right -- allocated via malloc() */ |
| 434 | free(buf1); /* Fatal -- should be PyMem_Del() */ |
| 435 | |
| 436 | In addition to the functions aimed at handling raw memory blocks from the Python |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 437 | heap, objects in Python are allocated and released with :c:func:`PyObject_New`, |
| 438 | :c:func:`PyObject_NewVar` and :c:func:`PyObject_Del`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 439 | |
| 440 | These will be explained in the next chapter on defining and implementing new |
| 441 | object types in C. |
| 442 | |