| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  | /* The PyObject_ memory family:  high-level object memory interfaces.
 | 
					
						
							|  |  |  |    See pymem.h for the low-level PyMem_ family. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:55:06 +00:00
										 |  |  | #ifndef Py_OBJIMPL_H
 | 
					
						
							|  |  |  | #define Py_OBJIMPL_H
 | 
					
						
							| 
									
										
										
										
											2000-07-31 22:19:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "pymem.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:55:06 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  | /* BEWARE:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Each interface exports both functions and macros.  Extension modules should | 
					
						
							|  |  |  |    use the functions, to ensure binary compatibility across Python versions. | 
					
						
							|  |  |  |    Because the Python implementation is free to change internal details, and | 
					
						
							|  |  |  |    the macros may (or may not) expose details for speed, if you do use the | 
					
						
							|  |  |  |    macros you must recompile your extensions with each Python release. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Never mix calls to PyObject_ memory functions with calls to the platform | 
					
						
							|  |  |  |    malloc/realloc/ calloc/free, or with calls to PyMem_. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | Functions and macros for modules that implement new object types. | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |  - PyObject_New(type, typeobj) allocates memory for a new object of the given | 
					
						
							|  |  |  |    type, and initializes part of it.  'type' must be the C structure type used | 
					
						
							|  |  |  |    to represent the object, and 'typeobj' the address of the corresponding | 
					
						
							|  |  |  |    type object.  Reference count and type pointer are filled in; the rest of | 
					
						
							|  |  |  |    the bytes of the object are *undefined*!  The resulting expression type is | 
					
						
							|  |  |  |    'type *'.  The size of the object is determined by the tp_basicsize field | 
					
						
							|  |  |  |    of the type object. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  - PyObject_NewVar(type, typeobj, n) is similar but allocates a variable-size | 
					
						
							|  |  |  |    object with room for n items.  In addition to the refcount and type pointer | 
					
						
							|  |  |  |    fields, this also fills in the ob_size field. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  - PyObject_Del(op) releases the memory allocated for an object.  It does not | 
					
						
							|  |  |  |    run a destructor -- it only frees the memory.  PyObject_Free is identical. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  - PyObject_Init(op, typeobj) and PyObject_InitVar(op, typeobj, n) don't | 
					
						
							|  |  |  |    allocate memory.  Instead of a 'type' parameter, they take a pointer to a | 
					
						
							|  |  |  |    new object (allocated by an arbitrary allocator), and initialize its object | 
					
						
							|  |  |  |    header fields. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Note that objects created with PyObject_{New, NewVar} are allocated using the | 
					
						
							|  |  |  | specialized Python allocator (implemented in obmalloc.c), if WITH_PYMALLOC is | 
					
						
							|  |  |  | enabled.  In addition, a special debugging allocator is used if PYMALLOC_DEBUG | 
					
						
							|  |  |  | is also #defined. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | In case a specific form of memory management is needed (for example, if you | 
					
						
							|  |  |  | must use the platform malloc heap(s), or shared memory, or C++ local storage or | 
					
						
							|  |  |  | operator new), you must first allocate the object with your custom allocator, | 
					
						
							|  |  |  | then pass its pointer to PyObject_{Init, InitVar} for filling in its Python- | 
					
						
							|  |  |  | specific fields:  reference count, type pointer, possibly others.  You should | 
					
						
							|  |  |  | be aware that Python no control over these objects because they don't | 
					
						
							|  |  |  | cooperate with the Python memory manager.  Such objects may not be eligible | 
					
						
							|  |  |  | for automatic garbage collection and you have to make sure that they are | 
					
						
							|  |  |  | released accordingly whenever their destructor gets called (cf. the specific | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | form of memory management you're using). | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  | Unless you have specific memory management requirements, use | 
					
						
							|  |  |  | PyObject_{New, NewVar, Del}. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Raw object memory interface | 
					
						
							|  |  |  |  * =========================== | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-12 05:21:34 +00:00
										 |  |  | /* Functions to call the same malloc/realloc/free as used by Python's
 | 
					
						
							|  |  |  |    object allocator.  If WITH_PYMALLOC is enabled, these may differ from | 
					
						
							|  |  |  |    the platform malloc/realloc/free.  The Python object allocator is | 
					
						
							|  |  |  |    designed for fast, cache-conscious allocation of many "small" objects, | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  |    and with low hidden memory overhead. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    PyObject_Malloc(0) returns a unique non-NULL pointer if possible. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    PyObject_Realloc(NULL, n) acts like PyObject_Malloc(n). | 
					
						
							|  |  |  |    PyObject_Realloc(p != NULL, 0) does not return  NULL, or free the memory | 
					
						
							|  |  |  |    at p. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Returned pointers must be checked for NULL explicitly; no action is | 
					
						
							|  |  |  |    performed on failure other than to return NULL (no warning it printed, no | 
					
						
							|  |  |  |    exception is set, etc). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    For allocating objects, use PyObject_{New, NewVar} instead whenever | 
					
						
							|  |  |  |    possible.  The PyObject_{Malloc, Realloc, Free} family is exposed | 
					
						
							|  |  |  |    so that you can exploit Python's small-block allocator for non-object | 
					
						
							|  |  |  |    uses.  If you must use these routines to allocate object memory, make sure | 
					
						
							|  |  |  |    the object gets initialized via PyObject_{Init, InitVar} after obtaining | 
					
						
							|  |  |  |    the raw memory. | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2013-07-07 02:05:46 +02:00
										 |  |  | PyAPI_FUNC(void *) PyObject_Malloc(size_t size); | 
					
						
							| 
									
										
										
										
											2014-05-02 22:31:14 +02:00
										 |  |  | PyAPI_FUNC(void *) PyObject_Calloc(size_t nelem, size_t elsize); | 
					
						
							| 
									
										
										
										
											2013-07-07 02:05:46 +02:00
										 |  |  | PyAPI_FUNC(void *) PyObject_Realloc(void *ptr, size_t new_size); | 
					
						
							|  |  |  | PyAPI_FUNC(void) PyObject_Free(void *ptr); | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 14:28:26 +01:00
										 |  |  | /* This function returns the number of allocated memory blocks, regardless of size */ | 
					
						
							|  |  |  | PyAPI_FUNC(Py_ssize_t) _Py_GetAllocatedBlocks(void); | 
					
						
							| 
									
										
										
										
											2002-04-12 02:38:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | /* Macros */ | 
					
						
							| 
									
										
										
										
											2002-04-12 02:38:45 +00:00
										 |  |  | #ifdef WITH_PYMALLOC
 | 
					
						
							| 
									
										
										
										
											2012-06-22 14:55:41 -04:00
										 |  |  | #ifndef Py_LIMITED_API
 | 
					
						
							|  |  |  | PyAPI_FUNC(void) _PyObject_DebugMallocStats(FILE *out); | 
					
						
							|  |  |  | #endif /* #ifndef Py_LIMITED_API */
 | 
					
						
							| 
									
										
										
										
											2013-07-07 02:05:46 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Macros */ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | #define PyObject_MALLOC         PyObject_Malloc
 | 
					
						
							|  |  |  | #define PyObject_REALLOC        PyObject_Realloc
 | 
					
						
							|  |  |  | #define PyObject_FREE           PyObject_Free
 | 
					
						
							|  |  |  | #define PyObject_Del            PyObject_Free
 | 
					
						
							| 
									
										
										
										
											2013-07-07 02:05:46 +02:00
										 |  |  | #define PyObject_DEL            PyObject_Free
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-12 02:38:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Generic object allocator interface | 
					
						
							|  |  |  |  * ================================== | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Functions */ | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PyObject_Init(PyObject *, PyTypeObject *); | 
					
						
							|  |  |  | PyAPI_FUNC(PyVarObject *) PyObject_InitVar(PyVarObject *, | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  |                                                  PyTypeObject *, Py_ssize_t); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) _PyObject_New(PyTypeObject *); | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | PyAPI_FUNC(PyVarObject *) _PyObject_NewVar(PyTypeObject *, Py_ssize_t); | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PyObject_New(type, typeobj) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 ( (type *) _PyObject_New(typeobj) ) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | #define PyObject_NewVar(type, typeobj, n) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 ( (type *) _PyObject_NewVar((typeobj), (n)) ) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-16 12:27:23 +00:00
										 |  |  | /* Macros trading binary compatibility for speed. See also pymem.h.
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |    Note that these macros expect non-NULL object pointers.*/ | 
					
						
							|  |  |  | #define PyObject_INIT(op, typeobj) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     ( Py_TYPE(op) = (typeobj), _Py_NewReference((PyObject *)(op)), (op) ) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | #define PyObject_INIT_VAR(op, typeobj, size) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     ( Py_SIZE(op) = (size), PyObject_INIT((op), (typeobj)) ) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
 | 
					
						
							| 
									
										
										
										
											2001-10-06 21:27:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-07 03:54:51 +00:00
										 |  |  | /* _PyObject_VAR_SIZE returns the number of bytes (as size_t) allocated for a
 | 
					
						
							|  |  |  |    vrbl-size object with nitems items, exclusive of gc overhead (if any).  The | 
					
						
							|  |  |  |    value is rounded up to the closest multiple of sizeof(void *), in order to | 
					
						
							|  |  |  |    ensure that pointer fields at the end of the object are correctly aligned | 
					
						
							|  |  |  |    for the platform (this is of special importance for subclasses of, e.g., | 
					
						
							| 
									
										
										
										
											2013-08-27 19:40:23 +03:00
										 |  |  |    str or int, so that pointers can be stored after the embedded data). | 
					
						
							| 
									
										
										
										
											2001-10-07 03:54:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Note that there's no memory wastage in doing this, as malloc has to | 
					
						
							|  |  |  |    return (at worst) pointer-aligned memory anyway. | 
					
						
							| 
									
										
										
										
											2001-10-06 21:27:34 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2001-10-07 03:54:51 +00:00
										 |  |  | #if ((SIZEOF_VOID_P - 1) & SIZEOF_VOID_P) != 0
 | 
					
						
							|  |  |  | #   error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | #define _PyObject_VAR_SIZE(typeobj, nitems)     \
 | 
					
						
							| 
									
										
										
										
											2012-09-20 20:56:47 +02:00
										 |  |  |     _Py_SIZE_ROUND_UP((typeobj)->tp_basicsize + \ | 
					
						
							|  |  |  |         (nitems)*(typeobj)->tp_itemsize,        \ | 
					
						
							|  |  |  |         SIZEOF_VOID_P) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PyObject_NEW(type, typeobj) \
 | 
					
						
							|  |  |  | ( (type *) PyObject_Init( \ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     (PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) ) | 
					
						
							| 
									
										
										
										
											2001-10-06 21:27:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-07 03:54:51 +00:00
										 |  |  | #define PyObject_NEW_VAR(type, typeobj, n) \
 | 
					
						
							|  |  |  | ( (type *) PyObject_InitVar( \ | 
					
						
							|  |  |  |       (PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\ | 
					
						
							|  |  |  |       (typeobj), (n)) ) | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* This example code implements an object constructor with a custom
 | 
					
						
							|  |  |  |    allocator, where PyObject_New is inlined, and shows the important | 
					
						
							|  |  |  |    distinction between two steps (at least): | 
					
						
							|  |  |  |        1) the actual allocation of the object storage; | 
					
						
							|  |  |  |        2) the initialization of the Python specific fields | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |       in this storage with PyObject_{Init, InitVar}. | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    PyObject * | 
					
						
							|  |  |  |    YourObject_New(...) | 
					
						
							|  |  |  |    { | 
					
						
							|  |  |  |        PyObject *op; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |        op = (PyObject *) Your_Allocator(_PyObject_SIZE(YourTypeStruct)); | 
					
						
							|  |  |  |        if (op == NULL) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |        return PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  |        PyObject_Init(op, &YourTypeStruct); | 
					
						
							| 
									
										
										
										
											1996-07-21 02:23:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |        op->ob_field = value; | 
					
						
							|  |  |  |        ... | 
					
						
							|  |  |  |        return op; | 
					
						
							|  |  |  |    } | 
					
						
							| 
									
										
										
										
											1996-07-21 02:23:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  |    Note that in C++, the use of the new operator usually implies that | 
					
						
							|  |  |  |    the 1st step is performed automatically for you, so in a C++ class | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  |    constructor you would start directly with PyObject_Init/InitVar | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											1996-07-21 02:23:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-07 02:05:46 +02:00
										 |  |  | #ifndef Py_LIMITED_API
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     /* user context passed as the first argument to the 2 functions */ | 
					
						
							|  |  |  |     void *ctx; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* allocate an arena of size bytes */ | 
					
						
							|  |  |  |     void* (*alloc) (void *ctx, size_t size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* free an arena */ | 
					
						
							|  |  |  |     void (*free) (void *ctx, void *ptr, size_t size); | 
					
						
							|  |  |  | } PyObjectArenaAllocator; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Get the arena allocator. */ | 
					
						
							|  |  |  | PyAPI_FUNC(void) PyObject_GetArenaAllocator(PyObjectArenaAllocator *allocator); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Set the arena allocator. */ | 
					
						
							|  |  |  | PyAPI_FUNC(void) PyObject_SetArenaAllocator(PyObjectArenaAllocator *allocator); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-30 05:02:53 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Garbage Collection Support | 
					
						
							|  |  |  |  * ========================== | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2000-06-23 19:37:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-04-17 17:29:22 +00:00
										 |  |  | /* C equivalent of gc.collect(). */ | 
					
						
							| 
									
										
										
										
											2006-03-04 20:01:53 +00:00
										 |  |  | PyAPI_FUNC(Py_ssize_t) PyGC_Collect(void); | 
					
						
							| 
									
										
										
										
											2003-04-17 17:29:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-19 01:11:58 +02:00
										 |  |  | #ifndef Py_LIMITED_API
 | 
					
						
							|  |  |  | PyAPI_FUNC(Py_ssize_t) _PyGC_CollectNoFail(void); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | /* Test if a type has a GC head */ | 
					
						
							|  |  |  | #define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
 | 
					
						
							| 
									
										
										
										
											2000-06-30 05:02:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | /* Test if an object has a GC head */ | 
					
						
							| 
									
										
										
										
											2007-12-19 02:45:37 +00:00
										 |  |  | #define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     (Py_TYPE(o)->tp_is_gc == NULL || Py_TYPE(o)->tp_is_gc(o))) | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-02-16 14:56:14 +00:00
										 |  |  | PyAPI_FUNC(PyVarObject *) _PyObject_GC_Resize(PyVarObject *, Py_ssize_t); | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | #define PyObject_GC_Resize(type, op, n) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 ( (type *) _PyObject_GC_Resize((PyVarObject *)(op), (n)) ) | 
					
						
							| 
									
										
										
										
											2000-06-30 05:02:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-28 04:11:46 +00:00
										 |  |  | /* GC information is stored BEFORE the object structure. */ | 
					
						
							| 
									
										
										
										
											2010-12-03 20:14:31 +00:00
										 |  |  | #ifndef Py_LIMITED_API
 | 
					
						
							| 
									
										
										
										
											2001-10-11 18:31:31 +00:00
										 |  |  | typedef union _gc_head { | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     struct { | 
					
						
							|  |  |  |         union _gc_head *gc_next; | 
					
						
							|  |  |  |         union _gc_head *gc_prev; | 
					
						
							|  |  |  |         Py_ssize_t gc_refs; | 
					
						
							|  |  |  |     } gc; | 
					
						
							| 
									
										
										
										
											2012-12-10 18:05:05 -08:00
										 |  |  |     double dummy;  /* force worst-case alignment */ | 
					
						
							| 
									
										
										
										
											2000-06-30 05:02:53 +00:00
										 |  |  | } PyGC_Head; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-04 05:36:06 +00:00
										 |  |  | extern PyGC_Head *_PyGC_generation0; | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-28 21:06:16 +00:00
										 |  |  | #define _Py_AS_GC(o) ((PyGC_Head *)(o)-1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  | /* Bit 0 is set when tp_finalize is called */ | 
					
						
							|  |  |  | #define _PyGC_REFS_MASK_FINALIZED  (1 << 0)
 | 
					
						
							|  |  |  | /* The (N-1) most significant bits contain the gc state / refcount */ | 
					
						
							|  |  |  | #define _PyGC_REFS_SHIFT           (1)
 | 
					
						
							|  |  |  | #define _PyGC_REFS_MASK            (((size_t) -1) << _PyGC_REFS_SHIFT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _PyGCHead_REFS(g) ((g)->gc.gc_refs >> _PyGC_REFS_SHIFT)
 | 
					
						
							|  |  |  | #define _PyGCHead_SET_REFS(g, v) do { \
 | 
					
						
							|  |  |  |     (g)->gc.gc_refs = ((g)->gc.gc_refs & ~_PyGC_REFS_MASK) \ | 
					
						
							| 
									
										
										
										
											2014-03-14 20:15:29 -05:00
										 |  |  |         | (((size_t)(v)) << _PyGC_REFS_SHIFT);             \ | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     } while (0) | 
					
						
							|  |  |  | #define _PyGCHead_DECREF(g) ((g)->gc.gc_refs -= 1 << _PyGC_REFS_SHIFT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _PyGCHead_FINALIZED(g) (((g)->gc.gc_refs & _PyGC_REFS_MASK_FINALIZED) != 0)
 | 
					
						
							|  |  |  | #define _PyGCHead_SET_FINALIZED(g, v) do {  \
 | 
					
						
							|  |  |  |     (g)->gc.gc_refs = ((g)->gc.gc_refs & ~_PyGC_REFS_MASK_FINALIZED) \ | 
					
						
							|  |  |  |         | (v != 0); \ | 
					
						
							|  |  |  |     } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _PyGC_FINALIZED(o) _PyGCHead_FINALIZED(_Py_AS_GC(o))
 | 
					
						
							|  |  |  | #define _PyGC_SET_FINALIZED(o, v) _PyGCHead_SET_FINALIZED(_Py_AS_GC(o), v)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _PyGC_REFS(o) _PyGCHead_REFS(_Py_AS_GC(o))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | #define _PyGC_REFS_UNTRACKED                    (-2)
 | 
					
						
							|  |  |  | #define _PyGC_REFS_REACHABLE                    (-3)
 | 
					
						
							|  |  |  | #define _PyGC_REFS_TENTATIVELY_UNREACHABLE      (-4)
 | 
					
						
							| 
									
										
										
										
											2002-07-02 00:52:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | /* Tell the GC to track this object.  NB: While the object is tracked the
 | 
					
						
							|  |  |  |  * collector it must be safe to call the ob_traverse method. */ | 
					
						
							|  |  |  | #define _PyObject_GC_TRACK(o) do { \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyGC_Head *g = _Py_AS_GC(o); \ | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     if (_PyGCHead_REFS(g) != _PyGC_REFS_UNTRACKED) \ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |         Py_FatalError("GC object already tracked"); \ | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     _PyGCHead_SET_REFS(g, _PyGC_REFS_REACHABLE); \ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     g->gc.gc_next = _PyGC_generation0; \ | 
					
						
							|  |  |  |     g->gc.gc_prev = _PyGC_generation0->gc.gc_prev; \ | 
					
						
							|  |  |  |     g->gc.gc_prev->gc.gc_next = g; \ | 
					
						
							|  |  |  |     _PyGC_generation0->gc.gc_prev = g; \ | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  |     } while (0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-02 18:12:35 +00:00
										 |  |  | /* Tell the GC to stop tracking this object.
 | 
					
						
							|  |  |  |  * gc_next doesn't need to be set to NULL, but doing so is a good | 
					
						
							|  |  |  |  * way to provoke memory errors if calling code is confused. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | #define _PyObject_GC_UNTRACK(o) do { \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     PyGC_Head *g = _Py_AS_GC(o); \ | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     assert(_PyGCHead_REFS(g) != _PyGC_REFS_UNTRACKED); \ | 
					
						
							|  |  |  |     _PyGCHead_SET_REFS(g, _PyGC_REFS_UNTRACKED); \ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     g->gc.gc_prev->gc.gc_next = g->gc.gc_next; \ | 
					
						
							|  |  |  |     g->gc.gc_next->gc.gc_prev = g->gc.gc_prev; \ | 
					
						
							|  |  |  |     g->gc.gc_next = NULL; \ | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  |     } while (0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-23 18:52:06 +00:00
										 |  |  | /* True if the object is currently tracked by the GC. */ | 
					
						
							|  |  |  | #define _PyObject_GC_IS_TRACKED(o) \
 | 
					
						
							| 
									
										
										
										
											2013-07-30 19:59:21 +02:00
										 |  |  |     (_PyGC_REFS(o) != _PyGC_REFS_UNTRACKED) | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-23 18:52:06 +00:00
										 |  |  | /* True if the object may be tracked by the GC in the future, or already is.
 | 
					
						
							|  |  |  |    This can be useful to implement some optimizations. */ | 
					
						
							|  |  |  | #define _PyObject_GC_MAY_BE_TRACKED(obj) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     (PyObject_IS_GC(obj) && \ | 
					
						
							|  |  |  |         (!PyTuple_CheckExact(obj) || _PyObject_GC_IS_TRACKED(obj))) | 
					
						
							| 
									
										
										
										
											2010-12-03 20:14:31 +00:00
										 |  |  | #endif /* Py_LIMITED_API */
 | 
					
						
							| 
									
										
										
										
											2009-03-23 18:52:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-02 22:31:14 +02:00
										 |  |  | PyAPI_FUNC(PyObject *) _PyObject_GC_Malloc(size_t size); | 
					
						
							|  |  |  | PyAPI_FUNC(PyObject *) _PyObject_GC_Calloc(size_t size); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) _PyObject_GC_New(PyTypeObject *); | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | PyAPI_FUNC(PyVarObject *) _PyObject_GC_NewVar(PyTypeObject *, Py_ssize_t); | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(void) PyObject_GC_Track(void *); | 
					
						
							|  |  |  | PyAPI_FUNC(void) PyObject_GC_UnTrack(void *); | 
					
						
							|  |  |  | PyAPI_FUNC(void) PyObject_GC_Del(void *); | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PyObject_GC_New(type, typeobj) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 ( (type *) _PyObject_GC_New(typeobj) ) | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | #define PyObject_GC_NewVar(type, typeobj, n) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |                 ( (type *) _PyObject_GC_NewVar((typeobj), (n)) ) | 
					
						
							| 
									
										
										
										
											2002-04-12 02:38:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-29 23:49:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-15 04:05:59 +00:00
										 |  |  | /* Utility macro to help write tp_traverse functions.
 | 
					
						
							|  |  |  |  * To use this macro, the tp_traverse function must name its arguments | 
					
						
							|  |  |  |  * "visit" and "arg".  This is intended to keep tp_traverse functions | 
					
						
							|  |  |  |  * looking as much alike as possible. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  | #define Py_VISIT(op)                                                    \
 | 
					
						
							|  |  |  |     do {                                                                \ | 
					
						
							|  |  |  |         if (op) {                                                       \ | 
					
						
							|  |  |  |             int vret = visit((PyObject *)(op), arg);                    \ | 
					
						
							|  |  |  |             if (vret)                                                   \ | 
					
						
							|  |  |  |                 return vret;                                            \ | 
					
						
							|  |  |  |         }                                                               \ | 
					
						
							|  |  |  |     } while (0) | 
					
						
							| 
									
										
										
										
											2004-07-14 19:08:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-23 19:37:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-01 05:27:45 +00:00
										 |  |  | /* Test if a type supports weak references */ | 
					
						
							| 
									
										
										
										
											2006-07-27 21:53:35 +00:00
										 |  |  | #define PyType_SUPPORTS_WEAKREFS(t) ((t)->tp_weaklistoffset > 0)
 | 
					
						
							| 
									
										
										
										
											2001-02-01 05:27:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PyObject_GET_WEAKREFS_LISTPTR(o) \
 | 
					
						
							| 
									
										
										
										
											2010-05-09 15:52:27 +00:00
										 |  |  |     ((PyObject **) (((char *) (o)) + Py_TYPE(o)->tp_weaklistoffset)) | 
					
						
							| 
									
										
										
										
											2001-02-01 05:27:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_OBJIMPL_H */
 |