summaryrefslogtreecommitdiffstats
path: root/Include/compile.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-07-18 14:21:06 (GMT)
committerGuido van Rossum <guido@python.org>1995-07-18 14:21:06 (GMT)
commit884afd654a79bcb836afcdb5c953a627fd45c4c7 (patch)
treeeb0d6c872c09cad854aa168829d9feda2a4df4ea /Include/compile.h
parente15dee5e3cf863657f47974cb51721ef3cca2ff8 (diff)
downloadcpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.zip
cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.tar.gz
cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.tar.bz2
keyword arguments and faster function calls
Diffstat (limited to 'Include/compile.h')
-rw-r--r--Include/compile.h37
1 files changed, 21 insertions, 16 deletions
diff --git a/Include/compile.h b/Include/compile.h
index f311a4b..02d11dd 100644
--- a/Include/compile.h
+++ b/Include/compile.h
@@ -28,25 +28,29 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
******************************************************************/
-/* Definitions for compiled intermediate code */
-
-
-/* An intermediate code fragment contains:
- - a string that encodes the instructions,
- - a list of the constants,
- - a list of the names used,
- - the filename from which it was compiled,
- - the name of the object for which it was compiled. */
+/* Definitions for bytecode */
+/* Bytecode object */
typedef struct {
PyObject_HEAD
- PyStringObject *co_code; /* instruction opcodes */
- PyObject *co_consts; /* list of immutable constant objects */
- PyObject *co_names; /* list of stringobjects */
- PyObject *co_filename; /* string */
- PyObject *co_name; /* string */
+ int co_argcount; /* #arguments, except *args */
+ int co_nlocals; /* #local variables */
+ int co_flags; /* CO_..., see below */
+ PyStringObject *co_code; /* instruction opcodes */
+ PyObject *co_consts; /* list (constants used) */
+ PyObject *co_names; /* list of strings (names used) */
+ PyObject *co_varnames; /* tuple of strings (local variable names) */
+ /* The rest doesn't count for hash/cmp */
+ PyObject *co_filename; /* string (where it was loaded from) */
+ PyObject *co_name; /* string (name, for reference) */
} PyCodeObject;
+/* Masks for co_flags above */
+#define CO_OPTIMIZED 0x0001
+#define CO_NEWLOCALS 0x0002
+#define CO_VARARGS 0x0004
+#define CO_VARKEYWORDS 0x0008
+
extern DL_IMPORT(PyTypeObject) PyCode_Type;
#define PyCode_Check(op) ((op)->ob_type == &PyCode_Type)
@@ -55,8 +59,9 @@ extern DL_IMPORT(PyTypeObject) PyCode_Type;
/* Public interface */
struct _node; /* Declare the existence of this type */
PyCodeObject *PyNode_Compile Py_PROTO((struct _node *, char *));
-PyCodeObject *PyCode_New
- Py_PROTO((PyObject *, PyObject *, PyObject *, PyObject *, PyObject *));
+PyCodeObject *PyCode_New Py_PROTO((
+ int, int, int, PyObject *, PyObject *, PyObject *, PyObject *,
+ PyObject *, PyObject *)); /* same as struct above */
#ifdef __cplusplus
}