Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 884afd6 | 1995-07-18 14:21:06 +0000 | [diff] [blame] | 2 | /* Definitions for bytecode */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 3 | |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 4 | #ifndef Py_COMPILE_H |
| 5 | #define Py_COMPILE_H |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
Guido van Rossum | 884afd6 | 1995-07-18 14:21:06 +0000 | [diff] [blame] | 10 | /* Bytecode object */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 11 | typedef struct { |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 12 | PyObject_HEAD |
| 13 | int co_argcount; /* #arguments, except *args */ |
| 14 | int co_nlocals; /* #local variables */ |
| 15 | int co_stacksize; /* #entries needed for evaluation stack */ |
| 16 | int co_flags; /* CO_..., see below */ |
| 17 | PyObject *co_code; /* instruction opcodes */ |
| 18 | PyObject *co_consts; /* list (constants used) */ |
| 19 | PyObject *co_names; /* list of strings (names used) */ |
| 20 | PyObject *co_varnames; /* tuple of strings (local variable names) */ |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 21 | PyObject *co_freevars; /* tuple of strings (free variable names) */ |
| 22 | PyObject *co_cellvars; /* tuple of strings (cell variable names) */ |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 23 | /* The rest doesn't count for hash/cmp */ |
| 24 | PyObject *co_filename; /* string (where it was loaded from) */ |
| 25 | PyObject *co_name; /* string (name, for reference) */ |
| 26 | int co_firstlineno; /* first source line number */ |
| 27 | PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) */ |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 28 | } PyCodeObject; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 29 | |
Guido van Rossum | 884afd6 | 1995-07-18 14:21:06 +0000 | [diff] [blame] | 30 | /* Masks for co_flags above */ |
| 31 | #define CO_OPTIMIZED 0x0001 |
| 32 | #define CO_NEWLOCALS 0x0002 |
| 33 | #define CO_VARARGS 0x0004 |
| 34 | #define CO_VARKEYWORDS 0x0008 |
Jeremy Hylton | 061d106 | 2001-03-22 02:32:48 +0000 | [diff] [blame] | 35 | #define CO_NESTED 0x0010 |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 36 | #define CO_GENERATOR 0x0020 |
Tim Peters | 5ba5866 | 2001-07-16 02:29:45 +0000 | [diff] [blame] | 37 | /* XXX Temporary hack. Until generators are a permanent part of the |
| 38 | language, we need a way for a code object to record that generators |
| 39 | were *possible* when it was compiled. This is so code dynamically |
| 40 | compiled *by* a code object knows whether to allow yield stmts. In |
| 41 | effect, this passes on the "from __future__ import generators" state |
| 42 | in effect when the code block was compiled. */ |
Tim Peters | 2bbdba3 | 2002-04-12 01:20:10 +0000 | [diff] [blame] | 43 | #define CO_GENERATOR_ALLOWED 0x1000 /* no longer used in an essential way */ |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 44 | #define CO_FUTURE_DIVISION 0x2000 |
Guido van Rossum | 884afd6 | 1995-07-18 14:21:06 +0000 | [diff] [blame] | 45 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 46 | PyAPI_DATA(PyTypeObject) PyCode_Type; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 47 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 48 | #define PyCode_Check(op) ((op)->ob_type == &PyCode_Type) |
Jeremy Hylton | 12ce485 | 2001-12-13 19:47:02 +0000 | [diff] [blame] | 49 | #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars)) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 50 | |
Guido van Rossum | 3f6e408 | 1997-01-17 20:59:26 +0000 | [diff] [blame] | 51 | #define CO_MAXBLOCKS 20 /* Max static block nesting within a function */ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 52 | |
| 53 | /* Public interface */ |
Guido van Rossum | e543a94 | 1991-04-03 19:00:55 +0000 | [diff] [blame] | 54 | struct _node; /* Declare the existence of this type */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 55 | PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, char *); |
| 56 | PyAPI_FUNC(PyCodeObject *) PyCode_New( |
Guido van Rossum | 3f6e408 | 1997-01-17 20:59:26 +0000 | [diff] [blame] | 57 | int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *, |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 58 | PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *); |
| 59 | /* same as struct above */ |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 60 | PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 61 | |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 62 | /* Future feature support */ |
| 63 | |
| 64 | typedef struct { |
Jeremy Hylton | 39e2f3f | 2001-02-28 01:58:08 +0000 | [diff] [blame] | 65 | int ff_found_docstring; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 66 | int ff_last_lineno; |
Jeremy Hylton | fdd12f6 | 2001-08-10 21:38:04 +0000 | [diff] [blame] | 67 | int ff_features; |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 68 | } PyFutureFeatures; |
| 69 | |
Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 70 | PyAPI_FUNC(PyFutureFeatures *) PyNode_Future(struct _node *, char *); |
| 71 | PyAPI_FUNC(PyCodeObject *) PyNode_CompileFlags(struct _node *, char *, |
Jeremy Hylton | 9f324e9 | 2001-03-01 22:59:14 +0000 | [diff] [blame] | 72 | PyCompilerFlags *); |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 73 | |
Jeremy Hylton | 4db62b1 | 2001-02-27 19:07:02 +0000 | [diff] [blame] | 74 | #define FUTURE_NESTED_SCOPES "nested_scopes" |
Guido van Rossum | b09f7ed | 2001-07-15 21:08:29 +0000 | [diff] [blame] | 75 | #define FUTURE_GENERATORS "generators" |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 76 | #define FUTURE_DIVISION "division" |
| 77 | |
Guido van Rossum | d076c73 | 1998-10-07 19:42:25 +0000 | [diff] [blame] | 78 | /* for internal use only */ |
| 79 | #define _PyCode_GETCODEPTR(co, pp) \ |
| 80 | ((*(co)->co_code->ob_type->tp_as_buffer->bf_getreadbuffer) \ |
| 81 | ((co)->co_code, 0, (void **)(pp))) |
| 82 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 83 | #ifdef __cplusplus |
| 84 | } |
| 85 | #endif |
| 86 | #endif /* !Py_COMPILE_H */ |