Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* Function object interface */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 3 | #ifndef Py_LIMITED_API |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 4 | #ifndef Py_FUNCOBJECT_H |
| 5 | #define Py_FUNCOBJECT_H |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
Mark Shannon | d6c33fb | 2021-01-29 13:24:55 +0000 | [diff] [blame] | 10 | |
| 11 | #define COMMON_FIELDS(PREFIX) \ |
| 12 | PyObject *PREFIX ## globals; \ |
| 13 | PyObject *PREFIX ## builtins; \ |
| 14 | PyObject *PREFIX ## name; \ |
| 15 | PyObject *PREFIX ## qualname; \ |
| 16 | PyObject *PREFIX ## code; /* A code object, the __code__ attribute */ \ |
| 17 | PyObject *PREFIX ## defaults; /* NULL or a tuple */ \ |
| 18 | PyObject *PREFIX ## kwdefaults; /* NULL or a dict */ \ |
| 19 | PyObject *PREFIX ## closure; /* NULL or a tuple of cell objects */ |
| 20 | |
| 21 | typedef struct { |
| 22 | COMMON_FIELDS(fc_) |
| 23 | } PyFrameConstructor; |
| 24 | |
Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 25 | /* Function objects and code objects should not be confused with each other: |
| 26 | * |
| 27 | * Function objects are created by the execution of the 'def' statement. |
Neal Norwitz | 8ced961 | 2007-08-25 17:01:41 +0000 | [diff] [blame] | 28 | * They reference a code object in their __code__ attribute, which is a |
Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 29 | * purely syntactic object, i.e. nothing more than a compiled version of some |
| 30 | * source code lines. There is one code object per source code "fragment", |
| 31 | * but each code object can be referenced by zero or many function objects |
| 32 | * depending only on how many times the 'def' statement in the source was |
| 33 | * executed so far. |
| 34 | */ |
| 35 | |
Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 36 | typedef struct { |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 37 | PyObject_HEAD |
Mark Shannon | d6c33fb | 2021-01-29 13:24:55 +0000 | [diff] [blame] | 38 | COMMON_FIELDS(func_) |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 39 | PyObject *func_doc; /* The __doc__ attribute, can be anything */ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 40 | PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ |
| 41 | PyObject *func_weakreflist; /* List of weak references */ |
| 42 | PyObject *func_module; /* The __module__ attribute, can be anything */ |
| 43 | PyObject *func_annotations; /* Annotations, a dict or NULL */ |
Jeroen Demeyer | aacc77f | 2019-05-29 20:31:52 +0200 | [diff] [blame] | 44 | vectorcallfunc vectorcall; |
Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 45 | |
| 46 | /* Invariant: |
| 47 | * func_closure contains the bindings for func_code->co_freevars, so |
| 48 | * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code) |
| 49 | * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0). |
| 50 | */ |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 51 | } PyFunctionObject; |
Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 52 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 53 | PyAPI_DATA(PyTypeObject) PyFunction_Type; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 54 | |
Dong-hee Na | d905df7 | 2020-02-14 02:37:17 +0900 | [diff] [blame] | 55 | #define PyFunction_Check(op) Py_IS_TYPE(op, &PyFunction_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 56 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 57 | PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 58 | PyAPI_FUNC(PyObject *) PyFunction_NewWithQualName(PyObject *, PyObject *, PyObject *); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 59 | PyAPI_FUNC(PyObject *) PyFunction_GetCode(PyObject *); |
| 60 | PyAPI_FUNC(PyObject *) PyFunction_GetGlobals(PyObject *); |
Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 61 | PyAPI_FUNC(PyObject *) PyFunction_GetModule(PyObject *); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 62 | PyAPI_FUNC(PyObject *) PyFunction_GetDefaults(PyObject *); |
| 63 | PyAPI_FUNC(int) PyFunction_SetDefaults(PyObject *, PyObject *); |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 64 | PyAPI_FUNC(PyObject *) PyFunction_GetKwDefaults(PyObject *); |
| 65 | PyAPI_FUNC(int) PyFunction_SetKwDefaults(PyObject *, PyObject *); |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 66 | PyAPI_FUNC(PyObject *) PyFunction_GetClosure(PyObject *); |
| 67 | PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *); |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 68 | PyAPI_FUNC(PyObject *) PyFunction_GetAnnotations(PyObject *); |
| 69 | PyAPI_FUNC(int) PyFunction_SetAnnotations(PyObject *, PyObject *); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 70 | |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 71 | #ifndef Py_LIMITED_API |
Jeroen Demeyer | 37788bc | 2019-05-30 15:11:22 +0200 | [diff] [blame] | 72 | PyAPI_FUNC(PyObject *) _PyFunction_Vectorcall( |
Victor Stinner | d873572 | 2016-09-09 12:36:44 -0700 | [diff] [blame] | 73 | PyObject *func, |
Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 74 | PyObject *const *stack, |
Jeroen Demeyer | aacc77f | 2019-05-29 20:31:52 +0200 | [diff] [blame] | 75 | size_t nargsf, |
Victor Stinner | d873572 | 2016-09-09 12:36:44 -0700 | [diff] [blame] | 76 | PyObject *kwnames); |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 77 | #endif |
| 78 | |
Guido van Rossum | ba0d061 | 1998-07-10 15:47:08 +0000 | [diff] [blame] | 79 | /* Macros for direct access to these values. Type checks are *not* |
| 80 | done, so use with care. */ |
| 81 | #define PyFunction_GET_CODE(func) \ |
| 82 | (((PyFunctionObject *)func) -> func_code) |
| 83 | #define PyFunction_GET_GLOBALS(func) \ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 84 | (((PyFunctionObject *)func) -> func_globals) |
Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 85 | #define PyFunction_GET_MODULE(func) \ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 86 | (((PyFunctionObject *)func) -> func_module) |
Guido van Rossum | ba0d061 | 1998-07-10 15:47:08 +0000 | [diff] [blame] | 87 | #define PyFunction_GET_DEFAULTS(func) \ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 88 | (((PyFunctionObject *)func) -> func_defaults) |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 89 | #define PyFunction_GET_KW_DEFAULTS(func) \ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 90 | (((PyFunctionObject *)func) -> func_kwdefaults) |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 91 | #define PyFunction_GET_CLOSURE(func) \ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 92 | (((PyFunctionObject *)func) -> func_closure) |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 93 | #define PyFunction_GET_ANNOTATIONS(func) \ |
Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 94 | (((PyFunctionObject *)func) -> func_annotations) |
Guido van Rossum | ba0d061 | 1998-07-10 15:47:08 +0000 | [diff] [blame] | 95 | |
Mark Shannon | d6c33fb | 2021-01-29 13:24:55 +0000 | [diff] [blame] | 96 | #define PyFunction_AS_FRAME_CONSTRUCTOR(func) \ |
| 97 | ((PyFrameConstructor *)&((PyFunctionObject *)(func))->func_globals) |
| 98 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 99 | /* The classmethod and staticmethod types lives here, too */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 100 | PyAPI_DATA(PyTypeObject) PyClassMethod_Type; |
| 101 | PyAPI_DATA(PyTypeObject) PyStaticMethod_Type; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 102 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 103 | PyAPI_FUNC(PyObject *) PyClassMethod_New(PyObject *); |
| 104 | PyAPI_FUNC(PyObject *) PyStaticMethod_New(PyObject *); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 105 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 106 | #ifdef __cplusplus |
| 107 | } |
| 108 | #endif |
| 109 | #endif /* !Py_FUNCOBJECT_H */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 110 | #endif /* Py_LIMITED_API */ |