Submit
Path:
~
/
/
opt
/
alt
/
python312
/
include
/
python3.12
/
internal
/
File Content:
pycore_interp.h
#ifndef Py_INTERNAL_INTERP_H #define Py_INTERNAL_INTERP_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif #include <stdbool.h> #include "pycore_ast_state.h" // struct ast_state #include "pycore_atexit.h" // struct atexit_state #include "pycore_atomic.h" // _Py_atomic_address #include "pycore_ceval_state.h" // struct _ceval_state #include "pycore_code.h" // struct callable_cache #include "pycore_context.h" // struct _Py_context_state #include "pycore_dict_state.h" // struct _Py_dict_state #include "pycore_dtoa.h" // struct _dtoa_state #include "pycore_exceptions.h" // struct _Py_exc_state #include "pycore_floatobject.h" // struct _Py_float_state #include "pycore_function.h" // FUNC_MAX_WATCHERS #include "pycore_genobject.h" // struct _Py_async_gen_state #include "pycore_gc.h" // struct _gc_runtime_state #include "pycore_global_objects.h" // struct _Py_interp_static_objects #include "pycore_import.h" // struct _import_state #include "pycore_instruments.h" // _PY_MONITORING_EVENTS #include "pycore_list.h" // struct _Py_list_state #include "pycore_object_state.h" // struct _py_object_state #include "pycore_obmalloc.h" // struct obmalloc_state #include "pycore_tuple.h" // struct _Py_tuple_state #include "pycore_typeobject.h" // struct type_cache #include "pycore_unicodeobject.h" // struct _Py_unicode_state #include "pycore_warnings.h" // struct _warnings_runtime_state struct _Py_long_state { int max_str_digits; }; /* cross-interpreter data registry */ /* For now we use a global registry of shareable classes. An alternative would be to add a tp_* slot for a class's crossinterpdatafunc. It would be simpler and more efficient. */ struct _xidregitem; struct _xidregitem { struct _xidregitem *prev; struct _xidregitem *next; /* This can be a dangling pointer, but only if weakref is set. */ PyTypeObject *cls; /* This is NULL for builtin types. */ PyObject *weakref; size_t refcount; crossinterpdatafunc getdata; }; struct _xidregistry { PyThread_type_lock mutex; struct _xidregitem *head; }; /* interpreter state */ /* PyInterpreterState holds the global state for one of the runtime's interpreters. Typically the initial (main) interpreter is the only one. The PyInterpreterState typedef is in Include/pytypedefs.h. */ struct _is { PyInterpreterState *next; int64_t id; int64_t id_refcount; int requires_idref; PyThread_type_lock id_mutex; /* Has been initialized to a safe state. In order to be effective, this must be set to 0 during or right after allocation. */ int _initialized; int finalizing; uint64_t monitoring_version; uint64_t last_restart_version; struct pythreads { uint64_t next_unique_id; /* The linked list of threads, newest first. */ PyThreadState *head; /* Used in Modules/_threadmodule.c. */ long count; /* Support for runtime thread stack size tuning. A value of 0 means using the platform's default stack size or the size specified by the THREAD_STACK_SIZE macro. */ /* Used in Python/thread.c. */ size_t stacksize; } threads; /* Reference to the _PyRuntime global variable. This field exists to not have to pass runtime in addition to tstate to a function. Get runtime from tstate: tstate->interp->runtime. */ struct pyruntimestate *runtime; /* Set by Py_EndInterpreter(). Use _PyInterpreterState_GetFinalizing() and _PyInterpreterState_SetFinalizing() to access it, don't access it directly. */ _Py_atomic_address _finalizing; struct _gc_runtime_state gc; /* The following fields are here to avoid allocation during init. The data is exposed through PyInterpreterState pointer fields. These fields should not be accessed directly outside of init. All other PyInterpreterState pointer fields are populated when needed and default to NULL. For now there are some exceptions to that rule, which require allocation during init. These will be addressed on a case-by-case basis. Also see _PyRuntimeState regarding the various mutex fields. */ // Dictionary of the sys module PyObject *sysdict; // Dictionary of the builtins module PyObject *builtins; struct _ceval_state ceval; struct _import_state imports; /* The per-interpreter GIL, which might not be used. */ struct _gil_runtime_state _gil; /* ---------- IMPORTANT --------------------------- The fields above this line are declared as early as possible to facilitate out-of-process observability tools. */ PyObject *codec_search_path; PyObject *codec_search_cache; PyObject *codec_error_registry; int codecs_initialized; PyConfig config; unsigned long feature_flags; PyObject *dict; /* Stores per-interpreter state */ PyObject *sysdict_copy; PyObject *builtins_copy; // Initialized to _PyEval_EvalFrameDefault(). _PyFrameEvalFunction eval_frame; PyFunction_WatchCallback func_watchers[FUNC_MAX_WATCHERS]; // One bit is set for each non-NULL entry in func_watchers uint8_t active_func_watchers; Py_ssize_t co_extra_user_count; freefunc co_extra_freefuncs[MAX_CO_EXTRA_USERS]; #ifdef HAVE_FORK PyObject *before_forkers; PyObject *after_forkers_parent; PyObject *after_forkers_child; #endif struct _warnings_runtime_state warnings; struct atexit_state atexit; struct _obmalloc_state obmalloc; PyObject *audit_hooks; PyType_WatchCallback type_watchers[TYPE_MAX_WATCHERS]; PyCode_WatchCallback code_watchers[CODE_MAX_WATCHERS]; // One bit is set for each non-NULL entry in code_watchers uint8_t active_code_watchers; struct _py_object_state object_state; struct _Py_unicode_state unicode; struct _Py_float_state float_state; struct _Py_long_state long_state; struct _dtoa_state dtoa; struct _py_func_state func_state; /* Using a cache is very effective since typically only a single slice is created and then deleted again. */ PySliceObject *slice_cache; struct _Py_tuple_state tuple; struct _Py_list_state list; struct _Py_dict_state dict_state; struct _Py_async_gen_state async_gen; struct _Py_context_state context; struct _Py_exc_state exc_state; struct ast_state ast; struct types_state types; struct callable_cache callable_cache; PyCodeObject *interpreter_trampoline; _Py_GlobalMonitors monitors; bool f_opcode_trace_set; bool sys_profile_initialized; bool sys_trace_initialized; Py_ssize_t sys_profiling_threads; /* Count of threads with c_profilefunc set */ Py_ssize_t sys_tracing_threads; /* Count of threads with c_tracefunc set */ PyObject *monitoring_callables[PY_MONITORING_TOOL_IDS][_PY_MONITORING_EVENTS]; PyObject *monitoring_tool_names[PY_MONITORING_TOOL_IDS]; struct _Py_interp_cached_objects cached_objects; struct _Py_interp_static_objects static_objects; // XXX Remove this field once we have a tp_* slot. struct _xidregistry xidregistry; /* The thread currently executing in the __main__ module, if any. */ PyThreadState *threads_main; /* The ID of the OS thread in which we are finalizing. We use _Py_atomic_address instead of adding a new _Py_atomic_ulong. */ _Py_atomic_address _finalizing_id; /* the initial PyInterpreterState.threads.head */ PyThreadState _initial_thread; }; /* other API */ extern void _PyInterpreterState_Clear(PyThreadState *tstate); static inline PyThreadState* _PyInterpreterState_GetFinalizing(PyInterpreterState *interp) { return (PyThreadState*)_Py_atomic_load_relaxed(&interp->_finalizing); } static inline unsigned long _PyInterpreterState_GetFinalizingID(PyInterpreterState *interp) { return (unsigned long)_Py_atomic_load_relaxed(&interp->_finalizing_id); } static inline void _PyInterpreterState_SetFinalizing(PyInterpreterState *interp, PyThreadState *tstate) { _Py_atomic_store_relaxed(&interp->_finalizing, (uintptr_t)tstate); if (tstate == NULL) { _Py_atomic_store_relaxed(&interp->_finalizing_id, 0); } else { // XXX Re-enable this assert once gh-109860 is fixed. //assert(tstate->thread_id == PyThread_get_thread_ident()); _Py_atomic_store_relaxed(&interp->_finalizing_id, (uintptr_t)tstate->thread_id); } } PyAPI_FUNC(PyInterpreterState*) _PyInterpreterState_LookUpID(int64_t); PyAPI_FUNC(int) _PyInterpreterState_IDInitref(PyInterpreterState *); PyAPI_FUNC(int) _PyInterpreterState_IDIncref(PyInterpreterState *); PyAPI_FUNC(void) _PyInterpreterState_IDDecref(PyInterpreterState *); #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_INTERP_H */
Submit
FILE
FOLDER
Name
Size
Permission
Action
pycore_abstract.h
611 bytes
0644
pycore_asdl.h
3035 bytes
0644
pycore_ast.h
31288 bytes
0644
pycore_ast_state.h
6749 bytes
0644
pycore_atexit.h
1149 bytes
0644
pycore_atomic.h
16979 bytes
0644
pycore_atomic_funcs.h
2438 bytes
0644
pycore_bitutils.h
6062 bytes
0644
pycore_blocks_output_buffer.h
8688 bytes
0644
pycore_bytes_methods.h
3384 bytes
0644
pycore_bytesobject.h
1339 bytes
0644
pycore_call.h
3920 bytes
0644
pycore_ceval.h
5265 bytes
0644
pycore_ceval_state.h
2744 bytes
0644
pycore_code.h
15835 bytes
0644
pycore_compile.h
3453 bytes
0644
pycore_condvar.h
2909 bytes
0644
pycore_context.h
1301 bytes
0644
pycore_descrobject.h
499 bytes
0644
pycore_dict.h
6384 bytes
0644
pycore_dict_state.h
1095 bytes
0644
pycore_dtoa.h
1615 bytes
0644
pycore_emscripten_signal.h
562 bytes
0644
pycore_exceptions.h
842 bytes
0644
pycore_faulthandler.h
2220 bytes
0644
pycore_fileutils.h
7910 bytes
0644
pycore_fileutils_windows.h
2724 bytes
0644
pycore_floatobject.h
1578 bytes
0644
pycore_flowgraph.h
4630 bytes
0644
pycore_format.h
480 bytes
0644
pycore_frame.h
9255 bytes
0644
pycore_function.h
611 bytes
0644
pycore_gc.h
7658 bytes
0644
pycore_genobject.h
1186 bytes
0644
pycore_getopt.h
490 bytes
0644
pycore_gil.h
1565 bytes
0644
pycore_global_objects.h
3035 bytes
0644
pycore_global_objects_fini_generated.h
115361 bytes
0644
pycore_global_strings.h
25438 bytes
0644
pycore_hamt.h
3742 bytes
0644
pycore_hashtable.h
4286 bytes
0644
pycore_import.h
6358 bytes
0644
pycore_initconfig.h
5706 bytes
0644
pycore_instruments.h
2998 bytes
0644
pycore_interp.h
9086 bytes
0644
pycore_intrinsics.h
1397 bytes
0644
pycore_list.h
1980 bytes
0644
pycore_long.h
7805 bytes
0644
pycore_memoryobject.h
383 bytes
0644
pycore_moduleobject.h
1192 bytes
0644
pycore_namespace.h
392 bytes
0644
pycore_object.h
14917 bytes
0644
pycore_object_state.h
1016 bytes
0644
pycore_obmalloc.h
27284 bytes
0644
pycore_obmalloc_init.h
2085 bytes
0644
pycore_opcode.h
20081 bytes
0644
pycore_opcode_utils.h
2686 bytes
0644
pycore_parser.h
1358 bytes
0644
pycore_pathconfig.h
606 bytes
0644
pycore_pyarena.h
2733 bytes
0644
pycore_pyerrors.h
3110 bytes
0644
pycore_pyhash.h
709 bytes
0644
pycore_pylifecycle.h
3365 bytes
0644
pycore_pymath.h
8600 bytes
0644
pycore_pymem.h
3040 bytes
0644
pycore_pymem_init.h
2654 bytes
0644
pycore_pystate.h
4982 bytes
0644
pycore_pythread.h
2075 bytes
0644
pycore_range.h
346 bytes
0644
pycore_runtime.h
8429 bytes
0644
pycore_runtime_init.h
5912 bytes
0644
pycore_runtime_init_generated.h
45751 bytes
0644
pycore_signal.h
2611 bytes
0644
pycore_sliceobject.h
414 bytes
0644
pycore_strhex.h
937 bytes
0644
pycore_structseq.h
923 bytes
0644
pycore_symtable.h
7035 bytes
0644
pycore_sysmodule.h
999 bytes
0644
pycore_time.h
388 bytes
0644
pycore_token.h
3050 bytes
0644
pycore_traceback.h
3501 bytes
0644
pycore_tracemalloc.h
3075 bytes
0644
pycore_tuple.h
2197 bytes
0644
pycore_typeobject.h
4731 bytes
0644
pycore_typevarobject.h
763 bytes
0644
pycore_ucnhash.h
898 bytes
0644
pycore_unicodeobject.h
2657 bytes
0644
pycore_unicodeobject_generated.h
125516 bytes
0644
pycore_unionobject.h
682 bytes
0644
pycore_warnings.h
740 bytes
0644
N4ST4R_ID | Naxtarrr