Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:06:45

0001 // Auto-generated by Tools/build/generate_opcode_h.py from Lib/opcode.py
0002 
0003 /* Unary Functions: */
0004 #define INTRINSIC_1_INVALID                      0
0005 #define INTRINSIC_PRINT                          1
0006 #define INTRINSIC_IMPORT_STAR                    2
0007 #define INTRINSIC_STOPITERATION_ERROR            3
0008 #define INTRINSIC_ASYNC_GEN_WRAP                 4
0009 #define INTRINSIC_UNARY_POSITIVE                 5
0010 #define INTRINSIC_LIST_TO_TUPLE                  6
0011 #define INTRINSIC_TYPEVAR                        7
0012 #define INTRINSIC_PARAMSPEC                      8
0013 #define INTRINSIC_TYPEVARTUPLE                   9
0014 #define INTRINSIC_SUBSCRIPT_GENERIC             10
0015 #define INTRINSIC_TYPEALIAS                     11
0016 
0017 #define MAX_INTRINSIC_1                         11
0018 
0019 
0020 /* Binary Functions: */
0021 #define INTRINSIC_2_INVALID                      0
0022 #define INTRINSIC_PREP_RERAISE_STAR              1
0023 #define INTRINSIC_TYPEVAR_WITH_BOUND             2
0024 #define INTRINSIC_TYPEVAR_WITH_CONSTRAINTS       3
0025 #define INTRINSIC_SET_FUNCTION_TYPE_PARAMS       4
0026 
0027 #define MAX_INTRINSIC_2                          4
0028 
0029 typedef PyObject *(*instrinsic_func1)(PyThreadState* tstate, PyObject *value);
0030 typedef PyObject *(*instrinsic_func2)(PyThreadState* tstate, PyObject *value1, PyObject *value2);
0031 extern const instrinsic_func1 _PyIntrinsics_UnaryFunctions[];
0032 extern const instrinsic_func2 _PyIntrinsics_BinaryFunctions[];