1991-02-19 08:39:46 -04:00
|
|
|
|
2000-07-08 21:55:06 -03:00
|
|
|
#ifndef Py_OBJIMPL_H
|
|
|
|
#define Py_OBJIMPL_H
|
2000-07-31 19:19:30 -03:00
|
|
|
|
|
|
|
#include "pymem.h"
|
|
|
|
|
2000-07-08 21:55:06 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/*
|
2000-05-03 20:44:39 -03:00
|
|
|
Functions and macros for modules that implement new object types.
|
1990-10-14 09:07:46 -03:00
|
|
|
You must first include "object.h".
|
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
- PyObject_New(type, typeobj) allocates memory for a new object of
|
|
|
|
the given type; here '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 actually
|
|
|
|
determined by the tp_basicsize field of the type object.
|
|
|
|
|
|
|
|
- PyObject_NewVar(type, typeobj, n) is similar but allocates a
|
|
|
|
variable-size object with n extra items. The size is computed as
|
|
|
|
tp_basicsize plus n * tp_itemsize. This fills in the ob_size field
|
|
|
|
as well.
|
|
|
|
|
|
|
|
- PyObject_Del(op) releases the memory allocated for an object.
|
|
|
|
|
|
|
|
- PyObject_Init(op, typeobj) and PyObject_InitVar(op, typeobj, n) are
|
|
|
|
similar to PyObject_{New, NewVar} except that they don't allocate
|
|
|
|
the memory needed for an object. Instead of the 'type' parameter,
|
|
|
|
they accept the pointer of a new object (allocated by an arbitrary
|
|
|
|
allocator) and initialize its object header fields.
|
|
|
|
|
|
|
|
Note that objects created with PyObject_{New, NewVar} are allocated
|
|
|
|
within the Python heap by an object allocator, the latter being
|
|
|
|
implemented (by default) on top of the Python raw memory
|
|
|
|
allocator. This ensures that Python keeps control on the user's
|
|
|
|
objects regarding their memory management; for instance, they may be
|
|
|
|
subject to automatic garbage collection.
|
|
|
|
|
|
|
|
In case a specific form of memory management is needed, implying that
|
|
|
|
the objects would not reside in the Python heap (for example standard
|
|
|
|
malloc heap(s) are mandatory, use of shared memory, 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 has very limited
|
|
|
|
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
|
|
|
|
form of memory management you're using).
|
|
|
|
|
|
|
|
Unless you have specific memory management requirements, it is
|
|
|
|
recommended to use PyObject_{New, NewVar, Del}. */
|
|
|
|
|
2001-10-06 18:27:34 -03:00
|
|
|
/*
|
2000-05-03 20:44:39 -03:00
|
|
|
* Core object memory allocator
|
|
|
|
* ============================
|
|
|
|
*/
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-07-10 01:30:56 -03:00
|
|
|
/* The purpose of the object allocator is to make the distinction
|
2000-05-03 20:44:39 -03:00
|
|
|
between "object memory" and the rest within the Python heap.
|
2001-10-06 18:27:34 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
Object memory is the one allocated by PyObject_{New, NewVar}, i.e.
|
|
|
|
the one that holds the object's representation defined by its C
|
|
|
|
type structure, *excluding* any object-specific memory buffers that
|
|
|
|
might be referenced by the structure (for type structures that have
|
|
|
|
pointer fields). By default, the object memory allocator is
|
|
|
|
implemented on top of the raw memory allocator.
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
The PyCore_* macros can be defined to make the interpreter use a
|
|
|
|
custom object memory allocator. They are reserved for internal
|
|
|
|
memory management purposes exclusively. Both the core and extension
|
|
|
|
modules should use the PyObject_* API. */
|
|
|
|
|
2001-02-27 00:45:05 -04:00
|
|
|
#ifdef WITH_PYMALLOC
|
|
|
|
#define PyCore_OBJECT_MALLOC_FUNC _PyCore_ObjectMalloc
|
|
|
|
#define PyCore_OBJECT_REALLOC_FUNC _PyCore_ObjectRealloc
|
|
|
|
#define PyCore_OBJECT_FREE_FUNC _PyCore_ObjectFree
|
|
|
|
#define NEED_TO_DECLARE_OBJECT_MALLOC_AND_FRIEND
|
|
|
|
#endif /* !WITH_PYMALLOC */
|
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
#ifndef PyCore_OBJECT_MALLOC_FUNC
|
|
|
|
#undef PyCore_OBJECT_REALLOC_FUNC
|
|
|
|
#undef PyCore_OBJECT_FREE_FUNC
|
|
|
|
#define PyCore_OBJECT_MALLOC_FUNC PyCore_MALLOC_FUNC
|
|
|
|
#define PyCore_OBJECT_REALLOC_FUNC PyCore_REALLOC_FUNC
|
|
|
|
#define PyCore_OBJECT_FREE_FUNC PyCore_FREE_FUNC
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PyCore_OBJECT_MALLOC_PROTO
|
|
|
|
#undef PyCore_OBJECT_REALLOC_PROTO
|
|
|
|
#undef PyCore_OBJECT_FREE_PROTO
|
|
|
|
#define PyCore_OBJECT_MALLOC_PROTO PyCore_MALLOC_PROTO
|
|
|
|
#define PyCore_OBJECT_REALLOC_PROTO PyCore_REALLOC_PROTO
|
|
|
|
#define PyCore_OBJECT_FREE_PROTO PyCore_FREE_PROTO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NEED_TO_DECLARE_OBJECT_MALLOC_AND_FRIEND
|
2000-07-25 09:56:38 -03:00
|
|
|
extern void *PyCore_OBJECT_MALLOC_FUNC PyCore_OBJECT_MALLOC_PROTO;
|
|
|
|
extern void *PyCore_OBJECT_REALLOC_FUNC PyCore_OBJECT_REALLOC_PROTO;
|
2000-05-03 20:44:39 -03:00
|
|
|
extern void PyCore_OBJECT_FREE_FUNC PyCore_OBJECT_FREE_PROTO;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PyCore_OBJECT_MALLOC
|
|
|
|
#undef PyCore_OBJECT_REALLOC
|
|
|
|
#undef PyCore_OBJECT_FREE
|
|
|
|
#define PyCore_OBJECT_MALLOC(n) PyCore_OBJECT_MALLOC_FUNC(n)
|
|
|
|
#define PyCore_OBJECT_REALLOC(p, n) PyCore_OBJECT_REALLOC_FUNC((p), (n))
|
|
|
|
#define PyCore_OBJECT_FREE(p) PyCore_OBJECT_FREE_FUNC(p)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Raw object memory interface
|
|
|
|
* ===========================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* The use of this API should be avoided, unless a builtin object
|
|
|
|
constructor inlines PyObject_{New, NewVar}, either because the
|
|
|
|
latter functions cannot allocate the exact amount of needed memory,
|
|
|
|
either for speed. This situation is exceptional, but occurs for
|
|
|
|
some object constructors (PyBuffer_New, PyList_New...). Inlining
|
|
|
|
PyObject_{New, NewVar} for objects that are supposed to belong to
|
|
|
|
the Python heap is discouraged. If you really have to, make sure
|
|
|
|
the object is initialized with PyObject_{Init, InitVar}. Do *not*
|
|
|
|
inline PyObject_{Init, InitVar} for user-extension types or you
|
|
|
|
might seriously interfere with Python's memory management. */
|
|
|
|
|
|
|
|
/* Functions */
|
|
|
|
|
|
|
|
/* Wrappers around PyCore_OBJECT_MALLOC and friends; useful if you
|
|
|
|
need to be sure that you are using the same object memory allocator
|
|
|
|
as Python. These wrappers *do not* make sure that allocating 0
|
|
|
|
bytes returns a non-NULL pointer. Returned pointers must be checked
|
|
|
|
for NULL explicitly; no action is performed on failure. */
|
2000-07-25 09:56:38 -03:00
|
|
|
extern DL_IMPORT(void *) PyObject_Malloc(size_t);
|
|
|
|
extern DL_IMPORT(void *) PyObject_Realloc(void *, size_t);
|
|
|
|
extern DL_IMPORT(void) PyObject_Free(void *);
|
2000-05-03 20:44:39 -03:00
|
|
|
|
|
|
|
/* Macros */
|
|
|
|
#define PyObject_MALLOC(n) PyCore_OBJECT_MALLOC(n)
|
2000-07-25 09:56:38 -03:00
|
|
|
#define PyObject_REALLOC(op, n) PyCore_OBJECT_REALLOC((void *)(op), (n))
|
|
|
|
#define PyObject_FREE(op) PyCore_OBJECT_FREE((void *)(op))
|
2000-05-03 20:44:39 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic object allocator interface
|
|
|
|
* ==================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Functions */
|
2000-07-08 21:55:06 -03:00
|
|
|
extern DL_IMPORT(PyObject *) PyObject_Init(PyObject *, PyTypeObject *);
|
|
|
|
extern DL_IMPORT(PyVarObject *) PyObject_InitVar(PyVarObject *,
|
|
|
|
PyTypeObject *, int);
|
|
|
|
extern DL_IMPORT(PyObject *) _PyObject_New(PyTypeObject *);
|
|
|
|
extern DL_IMPORT(PyVarObject *) _PyObject_NewVar(PyTypeObject *, int);
|
|
|
|
extern DL_IMPORT(void) _PyObject_Del(PyObject *);
|
2000-05-03 20:44:39 -03:00
|
|
|
|
|
|
|
#define PyObject_New(type, typeobj) \
|
|
|
|
( (type *) _PyObject_New(typeobj) )
|
|
|
|
#define PyObject_NewVar(type, typeobj, n) \
|
|
|
|
( (type *) _PyObject_NewVar((typeobj), (n)) )
|
|
|
|
#define PyObject_Del(op) _PyObject_Del((PyObject *)(op))
|
|
|
|
|
2000-08-16 09:27:23 -03:00
|
|
|
/* Macros trading binary compatibility for speed. See also pymem.h.
|
2000-05-03 20:44:39 -03:00
|
|
|
Note that these macros expect non-NULL object pointers.*/
|
|
|
|
#define PyObject_INIT(op, typeobj) \
|
2001-03-22 14:26:47 -04:00
|
|
|
( (op)->ob_type = (typeobj), _Py_NewReference((PyObject *)(op)), (op) )
|
2000-05-03 20:44:39 -03:00
|
|
|
#define PyObject_INIT_VAR(op, typeobj, size) \
|
|
|
|
( (op)->ob_size = (size), PyObject_INIT((op), (typeobj)) )
|
|
|
|
|
|
|
|
#define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize )
|
2001-10-06 18:27:34 -03:00
|
|
|
|
2001-10-07 00:54:51 -03: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.,
|
|
|
|
str or long, so that pointers can be stored after the embedded data).
|
|
|
|
|
|
|
|
Note that there's no memory wastage in doing this, as malloc has to
|
|
|
|
return (at worst) pointer-aligned memory anyway.
|
2001-10-06 18:27:34 -03:00
|
|
|
*/
|
2001-10-07 00:54:51 -03:00
|
|
|
#if ((SIZEOF_VOID_P - 1) & SIZEOF_VOID_P) != 0
|
|
|
|
# error "_PyObject_VAR_SIZE requires SIZEOF_VOID_P be a power of 2"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define _PyObject_VAR_SIZE(typeobj, nitems) \
|
|
|
|
(size_t) \
|
|
|
|
( ( (typeobj)->tp_basicsize + \
|
|
|
|
(nitems)*(typeobj)->tp_itemsize + \
|
|
|
|
(SIZEOF_VOID_P - 1) \
|
|
|
|
) & ~(SIZEOF_VOID_P - 1) \
|
|
|
|
)
|
2000-05-03 20:44:39 -03:00
|
|
|
|
|
|
|
#define PyObject_NEW(type, typeobj) \
|
|
|
|
( (type *) PyObject_Init( \
|
|
|
|
(PyObject *) PyObject_MALLOC( _PyObject_SIZE(typeobj) ), (typeobj)) )
|
2001-10-06 18:27:34 -03:00
|
|
|
|
2001-10-07 00:54:51 -03:00
|
|
|
#define PyObject_NEW_VAR(type, typeobj, n) \
|
|
|
|
( (type *) PyObject_InitVar( \
|
|
|
|
(PyVarObject *) PyObject_MALLOC(_PyObject_VAR_SIZE((typeobj),(n)) ),\
|
|
|
|
(typeobj), (n)) )
|
2000-05-03 20:44:39 -03:00
|
|
|
|
2000-06-30 22:00:38 -03:00
|
|
|
#define PyObject_DEL(op) PyObject_FREE(op)
|
|
|
|
|
2000-05-03 20:44:39 -03: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
|
|
|
|
in this storage with PyObject_{Init, InitVar}.
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
YourObject_New(...)
|
|
|
|
{
|
|
|
|
PyObject *op;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
op = (PyObject *) Your_Allocator(_PyObject_SIZE(YourTypeStruct));
|
|
|
|
if (op == NULL)
|
|
|
|
return PyErr_NoMemory();
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
op = PyObject_Init(op, &YourTypeStruct);
|
|
|
|
if (op == NULL)
|
|
|
|
return NULL;
|
1996-07-20 23:23:54 -03:00
|
|
|
|
2000-05-03 20:44:39 -03:00
|
|
|
op->ob_field = value;
|
|
|
|
...
|
|
|
|
return op;
|
|
|
|
}
|
1996-07-20 23:23:54 -03:00
|
|
|
|
2000-05-03 20:44:39 -03: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
|
|
|
|
constructor you would start directly with PyObject_Init/InitVar. */
|
1996-07-20 23:23:54 -03:00
|
|
|
|
2000-06-30 02:02:53 -03:00
|
|
|
/*
|
|
|
|
* Garbage Collection Support
|
|
|
|
* ==========================
|
Add Garbage Collection support to new-style classes (not yet to their
instances).
Also added GC support to various auxiliary types: super, property,
descriptors, wrappers, dictproxy. (Only type objects have a tp_clear
field; the other types are.)
One change was necessary to the GC infrastructure. We have statically
allocated type objects that don't have a GC header (and can't easily
be given one) and heap-allocated type objects that do have a GC
header. Giving these different metatypes would be really ugly: I
tried, and I had to modify pickle.py, cPickle.c, copy.py, add a new
invent a new name for the new metatype and make it a built-in, change
affected tests... In short, a mess. So instead, we add a new type
slot tp_is_gc, which is a simple Boolean function that determines
whether a particular instance has GC headers or not. This slot is
only relevant for types that have the (new) GC flag bit set. If the
tp_is_gc slot is NULL (by far the most common case), all instances of
the type are deemed to have GC headers. This slot is called by the
PyObject_IS_GC() macro (which is only used twice, both times in
gcmodule.c).
I also changed the extern declarations for a bunch of GC-related
functions (_PyObject_GC_Del etc.): these always exist but objimpl.h
only declared them when WITH_CYCLE_GC was defined, but I needed to be
able to reference them without #ifdefs. (When WITH_CYCLE_GC is not
defined, they do the same as their non-GC counterparts anyway.)
2001-10-02 18:24:57 -03:00
|
|
|
*
|
|
|
|
* Some of the functions and macros below are always defined; when
|
|
|
|
* WITH_CYCLE_GC is undefined, they simply don't do anything different
|
|
|
|
* than their non-GC counterparts.
|
2000-06-30 02:02:53 -03:00
|
|
|
*/
|
2000-06-23 16:37:02 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
/* Test if a type has a GC head */
|
|
|
|
#define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
|
2000-06-30 02:02:53 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
/* Test if an object has a GC head */
|
Add Garbage Collection support to new-style classes (not yet to their
instances).
Also added GC support to various auxiliary types: super, property,
descriptors, wrappers, dictproxy. (Only type objects have a tp_clear
field; the other types are.)
One change was necessary to the GC infrastructure. We have statically
allocated type objects that don't have a GC header (and can't easily
be given one) and heap-allocated type objects that do have a GC
header. Giving these different metatypes would be really ugly: I
tried, and I had to modify pickle.py, cPickle.c, copy.py, add a new
invent a new name for the new metatype and make it a built-in, change
affected tests... In short, a mess. So instead, we add a new type
slot tp_is_gc, which is a simple Boolean function that determines
whether a particular instance has GC headers or not. This slot is
only relevant for types that have the (new) GC flag bit set. If the
tp_is_gc slot is NULL (by far the most common case), all instances of
the type are deemed to have GC headers. This slot is called by the
PyObject_IS_GC() macro (which is only used twice, both times in
gcmodule.c).
I also changed the extern declarations for a bunch of GC-related
functions (_PyObject_GC_Del etc.): these always exist but objimpl.h
only declared them when WITH_CYCLE_GC was defined, but I needed to be
able to reference them without #ifdefs. (When WITH_CYCLE_GC is not
defined, they do the same as their non-GC counterparts anyway.)
2001-10-02 18:24:57 -03:00
|
|
|
#define PyObject_IS_GC(o) (PyType_IS_GC((o)->ob_type) && \
|
|
|
|
((o)->ob_type->tp_is_gc == NULL || (o)->ob_type->tp_is_gc(o)))
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2001-10-06 18:27:34 -03:00
|
|
|
extern DL_IMPORT(PyObject *) _PyObject_GC_Malloc(PyTypeObject *, int);
|
2001-08-29 20:49:28 -03:00
|
|
|
extern DL_IMPORT(PyVarObject *) _PyObject_GC_Resize(PyVarObject *, int);
|
2000-06-30 02:02:53 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
#define PyObject_GC_Resize(type, op, n) \
|
|
|
|
( (type *) _PyObject_GC_Resize((PyVarObject *)(op), (n)) )
|
2000-06-30 02:02:53 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
extern DL_IMPORT(PyObject *) _PyObject_GC_New(PyTypeObject *);
|
|
|
|
extern DL_IMPORT(PyVarObject *) _PyObject_GC_NewVar(PyTypeObject *, int);
|
|
|
|
extern DL_IMPORT(void) _PyObject_GC_Del(PyObject *);
|
|
|
|
extern DL_IMPORT(void) _PyObject_GC_Track(PyObject *);
|
|
|
|
extern DL_IMPORT(void) _PyObject_GC_UnTrack(PyObject *);
|
2000-06-30 02:02:53 -03:00
|
|
|
|
Add Garbage Collection support to new-style classes (not yet to their
instances).
Also added GC support to various auxiliary types: super, property,
descriptors, wrappers, dictproxy. (Only type objects have a tp_clear
field; the other types are.)
One change was necessary to the GC infrastructure. We have statically
allocated type objects that don't have a GC header (and can't easily
be given one) and heap-allocated type objects that do have a GC
header. Giving these different metatypes would be really ugly: I
tried, and I had to modify pickle.py, cPickle.c, copy.py, add a new
invent a new name for the new metatype and make it a built-in, change
affected tests... In short, a mess. So instead, we add a new type
slot tp_is_gc, which is a simple Boolean function that determines
whether a particular instance has GC headers or not. This slot is
only relevant for types that have the (new) GC flag bit set. If the
tp_is_gc slot is NULL (by far the most common case), all instances of
the type are deemed to have GC headers. This slot is called by the
PyObject_IS_GC() macro (which is only used twice, both times in
gcmodule.c).
I also changed the extern declarations for a bunch of GC-related
functions (_PyObject_GC_Del etc.): these always exist but objimpl.h
only declared them when WITH_CYCLE_GC was defined, but I needed to be
able to reference them without #ifdefs. (When WITH_CYCLE_GC is not
defined, they do the same as their non-GC counterparts anyway.)
2001-10-02 18:24:57 -03:00
|
|
|
#ifdef WITH_CYCLE_GC
|
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
/* GC information is stored BEFORE the object structure */
|
2001-10-11 15:31:31 -03:00
|
|
|
typedef union _gc_head {
|
|
|
|
struct {
|
|
|
|
union _gc_head *gc_next; /* not NULL if object is tracked */
|
|
|
|
union _gc_head *gc_prev;
|
|
|
|
int gc_refs;
|
|
|
|
} gc;
|
|
|
|
double dummy; /* force worst-case alignment */
|
2000-06-30 02:02:53 -03:00
|
|
|
} PyGC_Head;
|
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
extern PyGC_Head _PyGC_generation0;
|
|
|
|
|
|
|
|
/* 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 { \
|
|
|
|
PyGC_Head *g = (PyGC_Head *)(o)-1; \
|
2001-10-11 15:31:31 -03:00
|
|
|
if (g->gc.gc_next != NULL) \
|
2001-08-29 20:49:28 -03:00
|
|
|
Py_FatalError("GC object already in linked list"); \
|
2001-10-11 15:31:31 -03: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 20:49:28 -03:00
|
|
|
} while (0);
|
|
|
|
|
|
|
|
/* Tell the GC to stop tracking this object. */
|
|
|
|
#define _PyObject_GC_UNTRACK(o) do { \
|
|
|
|
PyGC_Head *g = (PyGC_Head *)(o)-1; \
|
2001-10-11 15:31:31 -03: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 20:49:28 -03:00
|
|
|
} while (0);
|
|
|
|
|
|
|
|
#define PyObject_GC_Track(op) _PyObject_GC_Track((PyObject *)op)
|
|
|
|
#define PyObject_GC_UnTrack(op) _PyObject_GC_UnTrack((PyObject *)op)
|
2001-10-06 18:27:34 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
|
|
|
|
#define PyObject_GC_New(type, typeobj) \
|
|
|
|
( (type *) _PyObject_GC_New(typeobj) )
|
|
|
|
#define PyObject_GC_NewVar(type, typeobj, n) \
|
|
|
|
( (type *) _PyObject_GC_NewVar((typeobj), (n)) )
|
|
|
|
#define PyObject_GC_Del(op) _PyObject_GC_Del((PyObject *)(op))
|
|
|
|
|
|
|
|
#else /* !WITH_CYCLE_GC */
|
|
|
|
|
|
|
|
#define PyObject_GC_New PyObject_New
|
|
|
|
#define PyObject_GC_NewVar PyObject_NewVar
|
|
|
|
#define PyObject_GC_Del PyObject_Del
|
2001-09-03 12:44:48 -03:00
|
|
|
#define _PyObject_GC_TRACK(op)
|
|
|
|
#define _PyObject_GC_UNTRACK(op)
|
2001-08-29 20:49:28 -03:00
|
|
|
#define PyObject_GC_Track(op)
|
|
|
|
#define PyObject_GC_UnTrack(op)
|
2000-06-30 02:02:53 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
#endif
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2001-08-29 20:49:28 -03:00
|
|
|
/* This is here for the sake of backwards compatibility. Extensions that
|
|
|
|
* use the old GC API will still compile but the objects will not be
|
|
|
|
* tracked by the GC. */
|
|
|
|
#define PyGC_HEAD_SIZE 0
|
|
|
|
#define PyObject_GC_Init(op)
|
|
|
|
#define PyObject_GC_Fini(op)
|
|
|
|
#define PyObject_AS_GC(op) (op)
|
|
|
|
#define PyObject_FROM_GC(op) (op)
|
2001-01-23 12:37:22 -04:00
|
|
|
|
2000-06-23 16:37:02 -03:00
|
|
|
|
2001-02-01 01:27:45 -04:00
|
|
|
/* Test if a type supports weak references */
|
2001-02-02 14:17:30 -04:00
|
|
|
#define PyType_SUPPORTS_WEAKREFS(t) \
|
|
|
|
(PyType_HasFeature((t), Py_TPFLAGS_HAVE_WEAKREFS) \
|
|
|
|
&& ((t)->tp_weaklistoffset > 0))
|
2001-02-01 01:27:45 -04:00
|
|
|
|
|
|
|
#define PyObject_GET_WEAKREFS_LISTPTR(o) \
|
|
|
|
((PyObject **) (((char *) (o)) + (o)->ob_type->tp_weaklistoffset))
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_OBJIMPL_H */
|