2021-12-13 21:04:05 -04: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
|
|
|
|
|
2022-02-28 18:15:48 -04:00
|
|
|
#include "pycore_gc.h" // PyGC_Head
|
2022-02-08 16:39:07 -04:00
|
|
|
#include "pycore_global_strings.h" // struct _Py_global_strings
|
|
|
|
|
2021-12-13 21:04:05 -04:00
|
|
|
|
2022-01-13 18:54:36 -04:00
|
|
|
// These would be in pycore_long.h if it weren't for an include cycle.
|
2021-12-13 21:04:05 -04: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) \
|
|
|
|
_PyRuntime.global_objects.NAME
|
|
|
|
#define _Py_SINGLETON(NAME) \
|
|
|
|
_Py_GLOBAL_OBJECT(singletons.NAME)
|
|
|
|
|
|
|
|
struct _Py_global_objects {
|
|
|
|
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 12:37:24 -04:00
|
|
|
|
|
|
|
PyBytesObject bytes_empty;
|
|
|
|
struct {
|
|
|
|
PyBytesObject ob;
|
|
|
|
char eos;
|
|
|
|
} bytes_characters[256];
|
2022-02-08 16:39:07 -04:00
|
|
|
|
|
|
|
struct _Py_global_strings strings;
|
2022-02-28 18:15:48 -04:00
|
|
|
|
|
|
|
_PyGC_Head_UNUSED _tuple_empty_gc_not_used;
|
|
|
|
PyTupleObject tuple_empty;
|
2021-12-13 21:04:05 -04:00
|
|
|
} singletons;
|
2022-08-22 16:05:21 -03:00
|
|
|
|
|
|
|
PyObject *interned;
|
2021-12-13 21:04:05 -04:00
|
|
|
};
|
|
|
|
|
2022-11-11 17:24:18 -04:00
|
|
|
#define _Py_INTERP_CACHED_OBJECT(interp, NAME) \
|
|
|
|
(interp)->cached_objects.NAME
|
|
|
|
|
|
|
|
struct _Py_interp_cached_objects {
|
|
|
|
int _not_set;
|
|
|
|
};
|
|
|
|
|
|
|
|
#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;
|
|
|
|
} singletons;
|
|
|
|
};
|
|
|
|
|
2021-12-13 21:04:05 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_GLOBAL_OBJECTS_H */
|