| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  | #ifndef Py_INTERNAL_GLOBAL_OBJECTS_H
 | 
					
						
							|  |  |  | #define Py_INTERNAL_GLOBAL_OBJECTS_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef Py_BUILD_CORE
 | 
					
						
							|  |  |  | #  error "this header requires Py_BUILD_CORE define"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-21 20:05:59 +02:00
										 |  |  | #include "pycore_context.h"         // _PyContextTokenMissing
 | 
					
						
							|  |  |  | #include "pycore_gc.h"              // _PyGC_Head_UNUSED
 | 
					
						
							| 
									
										
										
										
											2022-02-08 13:39:07 -07:00
										 |  |  | #include "pycore_global_strings.h"  // struct _Py_global_strings
 | 
					
						
							| 
									
										
										
										
											2022-11-16 09:54:28 -07:00
										 |  |  | #include "pycore_hamt.h"            // PyHamtNode_Bitmap
 | 
					
						
							| 
									
										
										
										
											2023-08-21 20:05:59 +02:00
										 |  |  | #include "pycore_hashtable.h"       // _Py_hashtable_t
 | 
					
						
							| 
									
										
										
										
											2022-11-14 13:50:56 -07:00
										 |  |  | #include "pycore_typeobject.h"      // pytype_slotdef
 | 
					
						
							| 
									
										
										
										
											2022-02-08 13:39:07 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-13 15:54:36 -07:00
										 |  |  | // These would be in pycore_long.h if it weren't for an include cycle.
 | 
					
						
							| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  | #define _PY_NSMALLPOSINTS           257
 | 
					
						
							|  |  |  | #define _PY_NSMALLNEGINTS           5
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Only immutable objects should be considered runtime-global.
 | 
					
						
							|  |  |  | // All others must be per-interpreter.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _Py_GLOBAL_OBJECT(NAME) \
 | 
					
						
							| 
									
										
										
										
											2022-12-14 11:53:57 -07:00
										 |  |  |     _PyRuntime.static_objects.NAME | 
					
						
							| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  | #define _Py_SINGLETON(NAME) \
 | 
					
						
							|  |  |  |     _Py_GLOBAL_OBJECT(singletons.NAME) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 13:56:59 -06:00
										 |  |  | struct _Py_cached_objects { | 
					
						
							|  |  |  |     // XXX We could statically allocate the hashtable.
 | 
					
						
							|  |  |  |     _Py_hashtable_t *interned_strings; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-14 11:53:57 -07:00
										 |  |  | struct _Py_static_objects { | 
					
						
							| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  |     struct { | 
					
						
							|  |  |  |         /* Small integers are preallocated in this array so that they
 | 
					
						
							|  |  |  |          * can be shared. | 
					
						
							|  |  |  |          * The integers that are preallocated are those in the range | 
					
						
							|  |  |  |          * -_PY_NSMALLNEGINTS (inclusive) to _PY_NSMALLPOSINTS (exclusive). | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         PyLongObject small_ints[_PY_NSMALLNEGINTS + _PY_NSMALLPOSINTS]; | 
					
						
							| 
									
										
										
										
											2022-01-11 09:37:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         PyBytesObject bytes_empty; | 
					
						
							|  |  |  |         struct { | 
					
						
							|  |  |  |             PyBytesObject ob; | 
					
						
							|  |  |  |             char eos; | 
					
						
							|  |  |  |         } bytes_characters[256]; | 
					
						
							| 
									
										
										
										
											2022-02-08 13:39:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         struct _Py_global_strings strings; | 
					
						
							| 
									
										
										
										
											2022-02-28 15:15:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         _PyGC_Head_UNUSED _tuple_empty_gc_not_used; | 
					
						
							|  |  |  |         PyTupleObject tuple_empty; | 
					
						
							| 
									
										
										
										
											2022-11-16 09:54:28 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         _PyGC_Head_UNUSED _hamt_bitmap_node_empty_gc_not_used; | 
					
						
							|  |  |  |         PyHamtNode_Bitmap hamt_bitmap_node_empty; | 
					
						
							|  |  |  |         _PyContextTokenMissing context_token_missing; | 
					
						
							| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  |     } singletons; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-11 14:24:18 -07:00
										 |  |  | #define _Py_INTERP_CACHED_OBJECT(interp, NAME) \
 | 
					
						
							|  |  |  |     (interp)->cached_objects.NAME | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct _Py_interp_cached_objects { | 
					
						
							| 
									
										
										
										
											2025-02-17 08:15:40 -05:00
										 |  |  | #ifdef Py_GIL_DISABLED
 | 
					
						
							|  |  |  |     PyMutex interned_mutex; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-03-28 12:52:28 -06:00
										 |  |  |     PyObject *interned_strings; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-14 13:50:56 -07:00
										 |  |  |     /* object.__reduce__ */ | 
					
						
							|  |  |  |     PyObject *objreduce; | 
					
						
							|  |  |  |     PyObject *type_slots_pname; | 
					
						
							|  |  |  |     pytype_slotdef *type_slots_ptrs[MAX_EQUIV]; | 
					
						
							| 
									
										
										
										
											2023-02-28 14:16:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-15 20:36:23 -07:00
										 |  |  |     /* TypeVar and related types */ | 
					
						
							|  |  |  |     PyTypeObject *generic_type; | 
					
						
							|  |  |  |     PyTypeObject *typevar_type; | 
					
						
							|  |  |  |     PyTypeObject *typevartuple_type; | 
					
						
							|  |  |  |     PyTypeObject *paramspec_type; | 
					
						
							|  |  |  |     PyTypeObject *paramspecargs_type; | 
					
						
							|  |  |  |     PyTypeObject *paramspeckwargs_type; | 
					
						
							| 
									
										
										
										
											2024-07-27 10:24:10 -07:00
										 |  |  |     PyTypeObject *constevaluator_type; | 
					
						
							| 
									
										
										
										
											2022-11-11 14:24:18 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _Py_INTERP_STATIC_OBJECT(interp, NAME) \
 | 
					
						
							|  |  |  |     (interp)->static_objects.NAME | 
					
						
							|  |  |  | #define _Py_INTERP_SINGLETON(interp, NAME) \
 | 
					
						
							|  |  |  |     _Py_INTERP_STATIC_OBJECT(interp, singletons.NAME) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct _Py_interp_static_objects { | 
					
						
							|  |  |  |     struct { | 
					
						
							|  |  |  |         int _not_used; | 
					
						
							| 
									
										
										
										
											2022-11-16 09:54:28 -07:00
										 |  |  |         // hamt_empty is here instead of global because of its weakreflist.
 | 
					
						
							|  |  |  |         _PyGC_Head_UNUSED _hamt_empty_gc_not_used; | 
					
						
							|  |  |  |         PyHamtObject hamt_empty; | 
					
						
							| 
									
										
										
										
											2023-03-06 19:40:09 -07:00
										 |  |  |         PyBaseExceptionObject last_resort_memory_error; | 
					
						
							| 
									
										
										
										
											2022-11-11 14:24:18 -07:00
										 |  |  |     } singletons; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-13 18:04:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_INTERNAL_GLOBAL_OBJECTS_H */
 |