2022-01-13 18:54:36 -04:00
|
|
|
#ifndef Py_INTERNAL_RUNTIME_INIT_H
|
|
|
|
#define Py_INTERNAL_RUNTIME_INIT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
|
|
|
#endif
|
|
|
|
|
2023-08-21 15:05:59 -03:00
|
|
|
#include "pycore_ceval_state.h" // _PyEval_RUNTIME_PERF_INIT
|
2024-10-18 12:26:08 -03:00
|
|
|
#include "pycore_debug_offsets.h" // _Py_DebugOffsets_INIT()
|
2023-08-21 15:05:59 -03:00
|
|
|
#include "pycore_faulthandler.h" // _faulthandler_runtime_state_INIT
|
|
|
|
#include "pycore_floatobject.h" // _py_float_format_unknown
|
2024-10-08 11:04:35 -03:00
|
|
|
#include "pycore_function.h"
|
2023-08-21 15:05:59 -03:00
|
|
|
#include "pycore_object.h" // _PyObject_HEAD_INIT
|
|
|
|
#include "pycore_obmalloc_init.h" // _obmalloc_global_state_INIT
|
|
|
|
#include "pycore_parser.h" // _parser_runtime_state_INIT
|
|
|
|
#include "pycore_pyhash.h" // pyhash_state_INIT
|
|
|
|
#include "pycore_pymem_init.h" // _pymem_allocators_standard_INIT
|
2024-02-06 15:45:04 -04:00
|
|
|
#include "pycore_pythread.h" // _pythread_RUNTIME_INIT
|
2024-02-16 16:25:19 -04:00
|
|
|
#include "pycore_qsbr.h" // QSBR_INITIAL
|
2023-08-21 15:05:59 -03:00
|
|
|
#include "pycore_runtime_init_generated.h" // _Py_bytes_characters_INIT
|
|
|
|
#include "pycore_signal.h" // _signals_RUNTIME_INIT
|
|
|
|
#include "pycore_tracemalloc.h" // _tracemalloc_runtime_state_INIT
|
2022-01-13 18:54:36 -04:00
|
|
|
|
|
|
|
|
2023-03-06 22:40:09 -04:00
|
|
|
extern PyTypeObject _PyExc_MemoryError;
|
|
|
|
|
|
|
|
|
2022-01-13 18:54:36 -04:00
|
|
|
/* The static initializers defined here should only be used
|
|
|
|
in the runtime init code (in pystate.c and pylifecycle.c). */
|
|
|
|
|
2024-08-15 15:42:41 -03:00
|
|
|
#define _PyRuntimeState_INIT(runtime, debug_cookie) \
|
2022-01-13 18:54:36 -04:00
|
|
|
{ \
|
2024-10-18 12:26:08 -03:00
|
|
|
.debug_offsets = _Py_DebugOffsets_INIT(debug_cookie), \
|
2022-11-11 19:30:46 -04:00
|
|
|
.allocators = { \
|
2023-06-08 17:06:54 -03:00
|
|
|
.standard = _pymem_allocators_standard_INIT(runtime), \
|
|
|
|
.debug = _pymem_allocators_debug_INIT, \
|
|
|
|
.obj_arena = _pymem_allocators_obj_arena_INIT, \
|
2024-01-16 17:42:15 -04:00
|
|
|
.is_debug_enabled = _pymem_is_debug_enabled_INIT, \
|
2022-11-11 19:30:46 -04:00
|
|
|
}, \
|
2023-04-24 20:23:57 -03:00
|
|
|
.obmalloc = _obmalloc_global_state_INIT, \
|
2022-11-16 12:37:14 -04:00
|
|
|
.pyhash_state = pyhash_state_INIT, \
|
2024-02-06 15:45:04 -04:00
|
|
|
.threads = _pythread_RUNTIME_INIT(runtime.threads), \
|
2022-12-12 19:50:19 -04:00
|
|
|
.signals = _signals_RUNTIME_INIT, \
|
2022-01-13 19:33:40 -04:00
|
|
|
.interpreters = { \
|
|
|
|
/* This prevents interpreters from getting created \
|
|
|
|
until _PyInterpreterState_Enable() is called. */ \
|
|
|
|
.next_id = -1, \
|
|
|
|
}, \
|
2023-11-01 20:36:40 -03:00
|
|
|
.xi = { \
|
|
|
|
.registry = { \
|
|
|
|
.global = 1, \
|
|
|
|
}, \
|
|
|
|
}, \
|
2023-01-19 19:04:14 -04:00
|
|
|
/* A TSS key must be initialized with Py_tss_NEEDS_INIT \
|
|
|
|
in accordance with the specification. */ \
|
|
|
|
.autoTSSkey = Py_tss_NEEDS_INIT, \
|
2022-12-16 09:48:03 -04:00
|
|
|
.parser = _parser_runtime_state_INIT, \
|
2022-12-08 20:17:20 -04:00
|
|
|
.ceval = { \
|
2024-04-25 22:05:51 -03:00
|
|
|
.pending_mainthread = { \
|
|
|
|
.max = MAXPENDINGCALLS_MAIN, \
|
|
|
|
.maxloop = MAXPENDINGCALLSLOOP_MAIN, \
|
|
|
|
}, \
|
2022-12-08 20:17:20 -04:00
|
|
|
.perf = _PyEval_RUNTIME_PERF_INIT, \
|
|
|
|
}, \
|
2022-11-16 12:37:14 -04:00
|
|
|
.gilstate = { \
|
|
|
|
.check_enabled = 1, \
|
|
|
|
}, \
|
|
|
|
.fileutils = { \
|
|
|
|
.force_ascii = -1, \
|
|
|
|
}, \
|
2022-12-12 12:58:46 -04:00
|
|
|
.faulthandler = _faulthandler_runtime_state_INIT, \
|
2022-12-12 11:44:23 -04:00
|
|
|
.tracemalloc = _tracemalloc_runtime_state_INIT, \
|
2024-05-02 14:30:00 -03:00
|
|
|
.ref_tracer = { \
|
|
|
|
.tracer_func = NULL, \
|
|
|
|
.tracer_data = NULL, \
|
|
|
|
}, \
|
2024-01-23 14:08:23 -04:00
|
|
|
.stoptheworld = { \
|
|
|
|
.is_global = 1, \
|
|
|
|
}, \
|
2022-11-16 12:37:14 -04:00
|
|
|
.float_state = { \
|
|
|
|
.float_format = _py_float_format_unknown, \
|
|
|
|
.double_format = _py_float_format_unknown, \
|
|
|
|
}, \
|
|
|
|
.types = { \
|
|
|
|
.next_version_tag = 1, \
|
|
|
|
}, \
|
2022-12-14 14:53:57 -04:00
|
|
|
.static_objects = { \
|
2022-11-11 16:23:41 -04:00
|
|
|
.singletons = { \
|
|
|
|
.small_ints = _Py_small_ints_INIT, \
|
|
|
|
.bytes_empty = _PyBytes_SIMPLE_INIT(0, 0), \
|
|
|
|
.bytes_characters = _Py_bytes_characters_INIT, \
|
|
|
|
.strings = { \
|
|
|
|
.literals = _Py_str_literals_INIT, \
|
|
|
|
.identifiers = _Py_str_identifiers_INIT, \
|
|
|
|
.ascii = _Py_str_ascii_INIT, \
|
|
|
|
.latin1 = _Py_str_latin1_INIT, \
|
|
|
|
}, \
|
|
|
|
.tuple_empty = { \
|
2023-10-30 13:06:09 -03:00
|
|
|
.ob_base = _PyVarObject_HEAD_INIT(&PyTuple_Type, 0), \
|
2022-11-11 16:23:41 -04:00
|
|
|
}, \
|
2022-11-16 12:54:28 -04:00
|
|
|
.hamt_bitmap_node_empty = { \
|
2023-10-30 13:06:09 -03:00
|
|
|
.ob_base = _PyVarObject_HEAD_INIT(&_PyHamt_BitmapNode_Type, 0), \
|
2022-11-16 12:54:28 -04:00
|
|
|
}, \
|
|
|
|
.context_token_missing = { \
|
2023-10-30 13:06:09 -03:00
|
|
|
.ob_base = _PyObject_HEAD_INIT(&_PyContextTokenMissing_Type), \
|
2022-11-16 12:54:28 -04:00
|
|
|
}, \
|
2022-11-11 16:23:41 -04:00
|
|
|
}, \
|
|
|
|
}, \
|
2023-02-28 16:14:40 -04:00
|
|
|
._main_interpreter = _PyInterpreterState_INIT(runtime._main_interpreter), \
|
2022-01-13 18:54:36 -04:00
|
|
|
}
|
|
|
|
|
2023-02-28 16:14:40 -04:00
|
|
|
#define _PyInterpreterState_INIT(INTERP) \
|
2022-01-13 18:54:36 -04:00
|
|
|
{ \
|
2022-01-13 20:17:28 -04:00
|
|
|
.id_refcount = -1, \
|
2024-04-10 21:37:01 -03:00
|
|
|
._whence = _PyInterpreterState_WHENCE_NOTSET, \
|
2023-02-15 18:32:31 -04:00
|
|
|
.imports = IMPORTS_INIT, \
|
2022-01-13 20:17:28 -04:00
|
|
|
.ceval = { \
|
|
|
|
.recursion_limit = Py_DEFAULT_RECURSION_LIMIT, \
|
2024-04-25 22:05:51 -03:00
|
|
|
.pending = { \
|
|
|
|
.max = MAXPENDINGCALLS, \
|
|
|
|
.maxloop = MAXPENDINGCALLSLOOP, \
|
|
|
|
}, \
|
2022-01-13 20:17:28 -04:00
|
|
|
}, \
|
|
|
|
.gc = { \
|
|
|
|
.enabled = 1, \
|
2024-03-20 05:54:42 -03:00
|
|
|
.young = { .threshold = 2000, }, \
|
|
|
|
.old = { \
|
2022-01-13 20:17:28 -04:00
|
|
|
{ .threshold = 10, }, \
|
2024-03-20 05:54:42 -03:00
|
|
|
{ .threshold = 0, }, \
|
2022-01-13 20:17:28 -04:00
|
|
|
}, \
|
2024-03-20 05:54:42 -03:00
|
|
|
.work_to_do = -5000, \
|
2022-01-13 20:17:28 -04:00
|
|
|
}, \
|
2024-02-16 16:25:19 -04:00
|
|
|
.qsbr = { \
|
|
|
|
.wr_seq = QSBR_INITIAL, \
|
|
|
|
.rd_seq = QSBR_INITIAL, \
|
|
|
|
}, \
|
2023-02-28 16:14:40 -04:00
|
|
|
.dtoa = _dtoa_state_INIT(&(INTERP)), \
|
2023-05-10 10:28:40 -03:00
|
|
|
.dict_state = _dict_state_INIT, \
|
2024-02-20 14:04:37 -04:00
|
|
|
.mem_free_queue = _Py_mem_free_queue_INIT(INTERP.mem_free_queue), \
|
2023-03-08 18:56:36 -04:00
|
|
|
.func_state = { \
|
2024-10-08 11:04:35 -03:00
|
|
|
.next_version = FUNC_VERSION_FIRST_VALID, \
|
2023-03-08 18:56:36 -04:00
|
|
|
}, \
|
2023-04-24 19:30:13 -03:00
|
|
|
.types = { \
|
|
|
|
.next_version_tag = _Py_TYPE_BASE_VERSION_TAG, \
|
|
|
|
}, \
|
2022-11-11 17:24:18 -04:00
|
|
|
.static_objects = { \
|
|
|
|
.singletons = { \
|
|
|
|
._not_used = 1, \
|
2022-11-16 12:54:28 -04:00
|
|
|
.hamt_empty = { \
|
2023-10-30 13:06:09 -03:00
|
|
|
.ob_base = _PyObject_HEAD_INIT(&_PyHamt_Type), \
|
2022-11-16 12:54:28 -04:00
|
|
|
.h_root = (PyHamtNode*)&_Py_SINGLETON(hamt_bitmap_node_empty), \
|
|
|
|
}, \
|
2023-03-06 22:40:09 -04:00
|
|
|
.last_resort_memory_error = { \
|
2023-10-30 13:06:09 -03:00
|
|
|
_PyObject_HEAD_INIT(&_PyExc_MemoryError), \
|
2023-10-23 20:06:59 -03:00
|
|
|
.args = (PyObject*)&_Py_SINGLETON(tuple_empty) \
|
2023-03-06 22:40:09 -04:00
|
|
|
}, \
|
2022-11-11 17:24:18 -04:00
|
|
|
}, \
|
|
|
|
}, \
|
2023-12-07 15:11:45 -04:00
|
|
|
._initial_thread = _PyThreadStateImpl_INIT, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define _PyThreadStateImpl_INIT \
|
|
|
|
{ \
|
|
|
|
.base = _PyThreadState_INIT, \
|
2022-01-13 18:54:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#define _PyThreadState_INIT \
|
|
|
|
{ \
|
2023-10-03 12:20:48 -03:00
|
|
|
._whence = _PyThreadState_WHENCE_NOTSET, \
|
2022-10-04 21:34:03 -03:00
|
|
|
.py_recursion_limit = Py_DEFAULT_RECURSION_LIMIT, \
|
2022-01-13 20:09:24 -04:00
|
|
|
.context_ver = 1, \
|
2022-01-13 18:54:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// global objects
|
|
|
|
|
|
|
|
#define _PyBytes_SIMPLE_INIT(CH, LEN) \
|
|
|
|
{ \
|
2023-10-30 13:06:09 -03:00
|
|
|
_PyVarObject_HEAD_INIT(&PyBytes_Type, (LEN)), \
|
2022-01-13 18:54:36 -04:00
|
|
|
.ob_shash = -1, \
|
2022-06-20 11:04:52 -03:00
|
|
|
.ob_sval = { (CH) }, \
|
2022-01-13 18:54:36 -04:00
|
|
|
}
|
|
|
|
#define _PyBytes_CHAR_INIT(CH) \
|
|
|
|
{ \
|
2022-06-20 11:04:52 -03:00
|
|
|
_PyBytes_SIMPLE_INIT((CH), 1) \
|
2022-01-13 18:54:36 -04:00
|
|
|
}
|
|
|
|
|
2022-03-09 19:02:00 -04:00
|
|
|
#define _PyUnicode_ASCII_BASE_INIT(LITERAL, ASCII) \
|
2022-02-08 16:39:07 -04:00
|
|
|
{ \
|
2023-10-30 13:06:09 -03:00
|
|
|
.ob_base = _PyObject_HEAD_INIT(&PyUnicode_Type), \
|
2022-03-09 19:02:00 -04:00
|
|
|
.length = sizeof(LITERAL) - 1, \
|
|
|
|
.hash = -1, \
|
|
|
|
.state = { \
|
|
|
|
.kind = 1, \
|
|
|
|
.compact = 1, \
|
2022-06-20 11:04:52 -03:00
|
|
|
.ascii = (ASCII), \
|
2023-07-27 16:56:59 -03:00
|
|
|
.statically_allocated = 1, \
|
2022-02-08 16:39:07 -04:00
|
|
|
}, \
|
2022-03-09 19:02:00 -04:00
|
|
|
}
|
|
|
|
#define _PyASCIIObject_INIT(LITERAL) \
|
|
|
|
{ \
|
2022-06-20 11:04:52 -03:00
|
|
|
._ascii = _PyUnicode_ASCII_BASE_INIT((LITERAL), 1), \
|
|
|
|
._data = (LITERAL) \
|
2022-02-08 16:39:07 -04:00
|
|
|
}
|
|
|
|
#define INIT_STR(NAME, LITERAL) \
|
2022-11-07 16:06:23 -04:00
|
|
|
._py_ ## NAME = _PyASCIIObject_INIT(LITERAL)
|
2022-02-08 16:39:07 -04:00
|
|
|
#define INIT_ID(NAME) \
|
2022-11-07 16:06:23 -04:00
|
|
|
._py_ ## NAME = _PyASCIIObject_INIT(#NAME)
|
2022-09-03 03:43:08 -03:00
|
|
|
#define _PyUnicode_LATIN1_INIT(LITERAL, UTF8) \
|
2022-03-09 19:02:00 -04:00
|
|
|
{ \
|
|
|
|
._latin1 = { \
|
2022-06-20 11:04:52 -03:00
|
|
|
._base = _PyUnicode_ASCII_BASE_INIT((LITERAL), 0), \
|
2022-09-03 03:43:08 -03:00
|
|
|
.utf8 = (UTF8), \
|
|
|
|
.utf8_length = sizeof(UTF8) - 1, \
|
2022-03-09 19:02:00 -04:00
|
|
|
}, \
|
2022-06-20 11:04:52 -03:00
|
|
|
._data = (LITERAL), \
|
2022-03-09 19:02:00 -04:00
|
|
|
}
|
2022-01-27 14:06:09 -04:00
|
|
|
|
2022-07-07 17:04:05 -03:00
|
|
|
#include "pycore_runtime_init_generated.h"
|
2022-01-13 18:54:36 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_RUNTIME_INIT_H */
|