記憶體管理¶
總覽¶
Memory management in Python involves a private heap containing all Python objects and data structures. The management of this private heap is ensured internally by the Python memory manager. The Python memory manager has different components which deal with various dynamic storage management aspects, like sharing, segmentation, preallocation or caching.
At the lowest level, a raw memory allocator ensures that there is enough room in the private heap for storing all Python-related data by interacting with the memory manager of the operating system. On top of the raw memory allocator, several object-specific allocators operate on the same heap and implement distinct memory management policies adapted to the peculiarities of every object type. For example, integer objects are managed differently within the heap than strings, tuples or dictionaries because integers imply different storage requirements and speed/space tradeoffs. The Python memory manager thus delegates some of the work to the object-specific allocators, but ensures that the latter operate within the bounds of the private heap.
It is important to understand that the management of the Python heap is performed by the interpreter itself and that the user has no control over it, even if they regularly manipulate object pointers to memory blocks inside that heap. The allocation of heap space for Python objects and other internal buffers is performed on demand by the Python memory manager through the Python/C API functions listed in this document.
To avoid memory corruption, extension writers should never try to operate on
Python objects with the functions exported by the C library: malloc(),
calloc(), realloc() and free(). This will result in mixed
calls between the C allocator and the Python memory manager with fatal
consequences, because they implement different algorithms and operate on
different heaps. However, one may safely allocate and release memory blocks
with the C library allocator for individual purposes, as shown in the following
example:
PyObject *res;
char *buf = (char *) malloc(BUFSIZ); /* for I/O */
if (buf == NULL)
return PyErr_NoMemory();
...Do some I/O operation involving buf...
res = PyBytes_FromString(buf);
free(buf); /* malloc'ed */
return res;
In this example, the memory request for the I/O buffer is handled by the C library allocator. The Python memory manager is involved only in the allocation of the bytes object returned as a result.
In most situations, however, it is recommended to allocate memory from the Python heap specifically because the latter is under control of the Python memory manager. For example, this is required when the interpreter is extended with new object types written in C. Another reason for using the Python heap is the desire to inform the Python memory manager about the memory needs of the extension module. Even when the requested memory is used exclusively for internal, highly specific purposes, delegating all memory requests to the Python memory manager causes the interpreter to have a more accurate image of its memory footprint as a whole. Consequently, under certain circumstances, the Python memory manager may or may not trigger appropriate actions, like garbage collection, memory compaction or other preventive procedures. Note that by using the C library allocator as shown in the previous example, the allocated memory for the I/O buffer escapes completely the Python memory manager.
也參考
The PYTHONMALLOC environment variable can be used to configure
the memory allocators used by Python.
The PYTHONMALLOCSTATS environment variable can be used to print
statistics of the pymalloc memory allocator every time a
new pymalloc object arena is created, and on shutdown.
Allocator Domains¶
All allocating functions belong to one of three different "domains" (see also
PyMemAllocatorDomain). These domains represent different allocation
strategies and are optimized for different purposes. The specific details on
how every domain allocates memory or what internal functions each domain calls
is considered an implementation detail, but for debugging purposes a simplified
table can be found at Default Memory Allocators.
The APIs used to allocate and free a block of memory must be from the same domain.
For example, PyMem_Free() must be used to free memory allocated using PyMem_Malloc().
The three allocation domains are:
Raw domain: intended for allocating memory for general-purpose memory buffers where the allocation must go to the system allocator or where the allocator can operate without an attached thread state. The memory is requested directly from the system. See Raw Memory Interface.
"Mem" domain: intended for allocating memory for Python buffers and general-purpose memory buffers where the allocation must be performed with an attached thread state. The memory is taken from the Python private heap. See Memory Interface.
Object domain: intended for allocating memory for Python objects. The memory is taken from the Python private heap. See Object allocators.
備註
The free-threaded build requires that only Python objects are allocated using the "object" domain and that all Python objects are allocated using that domain. This differs from the prior Python versions, where this was only a best practice and not a hard requirement.
For example, buffers (non-Python objects) should be allocated using PyMem_Malloc(),
PyMem_RawMalloc(), or malloc(), but not PyObject_Malloc().
Raw Memory Interface¶
The following function sets are wrappers to the system allocator. These functions are thread-safe, so a thread state does not need to be attached.
The default raw memory allocator uses
the following functions: malloc(), calloc(), realloc()
and free(); call malloc(1) (or calloc(1, 1)) when requesting
zero bytes.
在 3.4 版被加入.
-
void *PyMem_RawMalloc(size_t n)¶
- 為 穩定 ABI 的一部分 自 3.13 版本開始.
Allocates n bytes and returns a pointer of type void* to the allocated memory, or
NULLif the request fails.Requesting zero bytes returns a distinct non-
NULLpointer if possible, as ifPyMem_RawMalloc(1)had been called instead. The memory will not have been initialized in any way.
-
void *PyMem_RawCalloc(size_t nelem, size_t elsize)¶
- 為 穩定 ABI 的一部分 自 3.13 版本開始.
Allocates nelem elements each whose size in bytes is elsize and returns a pointer of type void* to the allocated memory, or
NULLif the request fails. The memory is initialized to zeros.Requesting zero elements or elements of size zero bytes returns a distinct non-
NULLpointer if possible, as ifPyMem_RawCalloc(1, 1)had been called instead.在 3.5 版被加入.
-
void *PyMem_RawRealloc(void *p, size_t n)¶
- 為 穩定 ABI 的一部分 自 3.13 版本開始.
Resizes the memory block pointed to by p to n bytes. The contents will be unchanged to the minimum of the old and the new sizes.
If p is
NULL, the call is equivalent toPyMem_RawMalloc(n); else if n is equal to zero, the memory block is resized but is not freed, and the returned pointer is non-NULL.Unless p is
NULL, it must have been returned by a previous call toPyMem_RawMalloc(),PyMem_RawRealloc()orPyMem_RawCalloc().If the request fails,
PyMem_RawRealloc()returnsNULLand p remains a valid pointer to the previous memory area.
-
void PyMem_RawFree(void *p)¶
- 為 穩定 ABI 的一部分 自 3.13 版本開始.
Frees the memory block pointed to by p, which must have been returned by a previous call to
PyMem_RawMalloc(),PyMem_RawRealloc()orPyMem_RawCalloc(). Otherwise, or ifPyMem_RawFree(p)has been called before, undefined behavior occurs.If p is
NULL, no operation is performed.
記憶體介面¶
The following function sets, modeled after the ANSI C standard, but specifying behavior when requesting zero bytes, are available for allocating and releasing memory from the Python heap.
In the GIL-enabled build (default build) the default memory allocator uses the pymalloc memory allocator, whereas in the free-threaded build, the default is the mimalloc memory allocator instead.
警告
There must be an attached thread state when using these functions.
在 3.6 版的變更: The default allocator is now pymalloc instead of system malloc().
在 3.13 版的變更: In the free-threaded build, the default allocator is now mimalloc.
-
void *PyMem_Malloc(size_t n)¶
- 為 穩定 ABI 的一部分.
Allocates n bytes and returns a pointer of type void* to the allocated memory, or
NULLif the request fails.Requesting zero bytes returns a distinct non-
NULLpointer if possible, as ifPyMem_Malloc(1)had been called instead. The memory will not have been initialized in any way.
-
void *PyMem_Calloc(size_t nelem, size_t elsize)¶
- 為 穩定 ABI 的一部分 自 3.7 版本開始.
Allocates nelem elements each whose size in bytes is elsize and returns a pointer of type void* to the allocated memory, or
NULLif the request fails. The memory is initialized to zeros.Requesting zero elements or elements of size zero bytes returns a distinct non-
NULLpointer if possible, as ifPyMem_Calloc(1, 1)had been called instead.在 3.5 版被加入.
- void *PyMem_Realloc(void *p,