mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-24 13:45:05 +00:00
Fixed additional patterns that were missed in the initial renaming: - PyThreadState → TyThreadState (typedef and all uses) - PyMem_RawFree → TyMem_RawFree - Py_buffer → Ty_buffer - Py_CLEANUP_SUPPORTED → Ty_CLEANUP_SUPPORTED - PyStatus → TyStatus and PyStatus_NoMemory → TyStatus_NoMemory - _Py__has_builtin → _Ty__has_builtin - _Py_SINGLETON → _Ty_SINGLETON - _Py_CODEUNIT → _Ty_CODEUNIT - _Py_BackoffCounter → _Ty_BackoffCounter - _Py_slot_* and _Py_type_* patterns Build is progressing with fewer errors. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
52 lines
1.7 KiB
C
52 lines
1.7 KiB
C
#ifndef Ty_INTERNAL_INTRINSIC_H
|
|
#define Ty_INTERNAL_INTRINSIC_H
|
|
|
|
#ifndef Ty_BUILD_CORE
|
|
# error "this header requires Ty_BUILD_CORE define"
|
|
#endif
|
|
|
|
/* Unary Functions: */
|
|
#define INTRINSIC_1_INVALID 0
|
|
#define INTRINSIC_PRINT 1
|
|
#define INTRINSIC_IMPORT_STAR 2
|
|
#define INTRINSIC_STOPITERATION_ERROR 3
|
|
#define INTRINSIC_ASYNC_GEN_WRAP 4
|
|
#define INTRINSIC_UNARY_POSITIVE 5
|
|
#define INTRINSIC_LIST_TO_TUPLE 6
|
|
#define INTRINSIC_TYPEVAR 7
|
|
#define INTRINSIC_PARAMSPEC 8
|
|
#define INTRINSIC_TYPEVARTUPLE 9
|
|
#define INTRINSIC_SUBSCRIPT_GENERIC 10
|
|
#define INTRINSIC_TYPEALIAS 11
|
|
|
|
#define MAX_INTRINSIC_1 11
|
|
|
|
|
|
/* Binary Functions: */
|
|
#define INTRINSIC_2_INVALID 0
|
|
#define INTRINSIC_PREP_RERAISE_STAR 1
|
|
#define INTRINSIC_TYPEVAR_WITH_BOUND 2
|
|
#define INTRINSIC_TYPEVAR_WITH_CONSTRAINTS 3
|
|
#define INTRINSIC_SET_FUNCTION_TYPE_PARAMS 4
|
|
#define INTRINSIC_SET_TYPEPARAM_DEFAULT 5
|
|
|
|
#define MAX_INTRINSIC_2 5
|
|
|
|
typedef TyObject *(*intrinsic_func1)(TyThreadState* tstate, TyObject *value);
|
|
typedef TyObject *(*intrinsic_func2)(TyThreadState* tstate, TyObject *value1, TyObject *value2);
|
|
|
|
typedef struct {
|
|
intrinsic_func1 func;
|
|
const char *name;
|
|
} intrinsic_func1_info;
|
|
|
|
typedef struct {
|
|
intrinsic_func2 func;
|
|
const char *name;
|
|
} intrinsic_func2_info;
|
|
|
|
PyAPI_DATA(const intrinsic_func1_info) _PyIntrinsics_UnaryFunctions[];
|
|
PyAPI_DATA(const intrinsic_func2_info) _PyIntrinsics_BinaryFunctions[];
|
|
|
|
#endif // !Ty_INTERNAL_INTRINSIC_H
|