/* An arena-like memory interface for the compiler. */ #ifndef Py_INTERNAL_PYARENA_H #define Py_INTERNAL_PYARENA_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif typedef struct _arena PyArena; /* _PyArena_New() and _PyArena_Free() create a new arena and free it, respectively. Once an arena has been created, it can be used to allocate memory via _PyArena_Malloc(). Pointers to PyObject can also be registered with the arena via _PyArena_AddPyObject(), and the arena will ensure that the PyObjects stay alive at least until _PyArena_Free() is called. When an arena is freed, all the memory it allocated is freed, the arena releases internal references to registered PyObject*, and none of its pointers are valid. XXX (tim) What does "none of its pointers are valid" mean? Does it XXX mean that pointers previously obtained via _PyArena_Malloc() are XXX no longer valid? (That's clearly true, but not sure that's what XXX the text is trying to say.) _PyArena_New() returns an arena pointer. On error, it returns a negative number and sets an exception. XXX (tim): Not true. On error, _PyArena_New() actually returns NULL, XXX and looks like it may or may not set an exception (e.g., if the XXX internal PyList_New(0) returns NULL, _PyArena_New() passes that on XXX and an exception is set; OTOH, if the internal XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but XXX an exception is not set in that case). */ PyAPI_FUNC(PyArena*) _PyArena_New(void); PyAPI_FUNC(void) _PyArena_Free(PyArena *); /* Mostly like malloc(), return the address of a block of memory spanning * `size` bytes, or return NULL (without setting an exception) if enough * new memory can't be obtained. Unlike malloc(0), _PyArena_Malloc() with * size=0 does not guarantee to return a unique pointer (the pointer * returned may equal one or more other pointers obtained from * _PyArena_Malloc()). * Note that pointers obtained via _PyArena_Malloc() must never be passed to * the system free() or realloc(), or to any of Python's similar memory- * management functions. _PyArena_Malloc()-obtained pointers remain valid * until _PyArena_Free(ar) is called, at which point all pointers obtained * from the arena `ar` become invalid simultaneously. */ PyAPI_FUNC(void*) _PyArena_Malloc(PyArena *, size_t size); /* This routine isn't a proper arena allocation routine. It takes * a PyObject* and records it so that it can be DECREFed when the * arena is freed. */ PyAPI_FUNC(int) _PyArena_AddPyObject(PyArena *, PyObject *); #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_PYARENA_H */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
pycore_abstract.h | File | 479 B | 0644 |
|
pycore_accu.h | File | 1.1 KB | 0644 |
|
pycore_asdl.h | File | 2.9 KB | 0644 |
|
pycore_ast.h | File | 28.15 KB | 0644 |
|
pycore_ast_state.h | File | 6.31 KB | 0644 |
|
pycore_atomic.h | File | 16.58 KB | 0644 |
|
pycore_atomic_funcs.h | File | 2.38 KB | 0644 |
|
pycore_bitutils.h | File | 5.15 KB | 0644 |
|
pycore_blocks_output_buffer.h | File | 8.48 KB | 0644 |
|
pycore_bytes_methods.h | File | 3.3 KB | 0644 |
|
pycore_call.h | File | 870 B | 0644 |
|
pycore_ceval.h | File | 3.4 KB | 0644 |
|
pycore_code.h | File | 696 B | 0644 |
|
pycore_compile.h | File | 1.02 KB | 0644 |
|
pycore_condvar.h | File | 2.74 KB | 0644 |
|
pycore_context.h | File | 822 B | 0644 |
|
pycore_dtoa.h | File | 646 B | 0644 |
|
pycore_fileutils.h | File | 1.66 KB | 0644 |
|
pycore_format.h | File | 480 B | 0644 |
|
pycore_gc.h | File | 6.7 KB | 0644 |
|
pycore_getopt.h | File | 490 B | 0644 |
|
pycore_gil.h | File | 1.53 KB | 0644 |
|
pycore_hamt.h | File | 3.61 KB | 0644 |
|
pycore_hashtable.h | File | 4.1 KB | 0644 |
|
pycore_import.h | File | 346 B | 0644 |
|
pycore_initconfig.h | File | 5.49 KB | 0644 |
|
pycore_interp.h | File | 9.07 KB | 0644 |
|
pycore_list.h | File | 350 B | 0644 |
|
pycore_long.h | File | 2.53 KB | 0644 |
|
pycore_moduleobject.h | File | 1.02 KB | 0644 |
|
pycore_object.h | File | 5.85 KB | 0644 |
|
pycore_parser.h | File | 626 B | 0644 |
|
pycore_pathconfig.h | File | 1.93 KB | 0644 |
|
pycore_pyarena.h | File | 2.67 KB | 0644 |
|
pycore_pyerrors.h | File | 2.26 KB | 0644 |
|
pycore_pyhash.h | File | 206 B | 0644 |
|
pycore_pylifecycle.h | File | 4.82 KB | 0644 |
|
pycore_pymem.h | File | 3.14 KB | 0644 |
|
pycore_pystate.h | File | 3.85 KB | 0644 |
|
pycore_runtime.h | File | 4.79 KB | 0644 |
|
pycore_structseq.h | File | 386 B | 0644 |
|
pycore_symtable.h | File | 5.45 KB | 0644 |
|
pycore_sysmodule.h | File | 548 B | 0644 |
|
pycore_traceback.h | File | 2.9 KB | 0644 |
|
pycore_tuple.h | File | 425 B | 0644 |
|
pycore_ucnhash.h | File | 898 B | 0644 |
|
pycore_unionobject.h | File | 629 B | 0644 |
|
pycore_warnings.h | File | 633 B | 0644 |
|