| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1 | /* Definitions for bytecode */ | 
 | 2 |  | 
 | 3 | #ifndef Py_CODE_H | 
 | 4 | #define Py_CODE_H | 
 | 5 | #ifdef __cplusplus | 
 | 6 | extern "C" { | 
 | 7 | #endif | 
 | 8 |  | 
 | 9 | /* Bytecode object */ | 
 | 10 | typedef struct { | 
 | 11 |     PyObject_HEAD | 
 | 12 |     int co_argcount;		/* #arguments, except *args */ | 
 | 13 |     int co_nlocals;		/* #local variables */ | 
 | 14 |     int co_stacksize;		/* #entries needed for evaluation stack */ | 
 | 15 |     int co_flags;		/* CO_..., see below */ | 
 | 16 |     PyObject *co_code;		/* instruction opcodes */ | 
 | 17 |     PyObject *co_consts;	/* list (constants used) */ | 
 | 18 |     PyObject *co_names;		/* list of strings (names used) */ | 
 | 19 |     PyObject *co_varnames;	/* tuple of strings (local variable names) */ | 
 | 20 |     PyObject *co_freevars;	/* tuple of strings (free variable names) */ | 
 | 21 |     PyObject *co_cellvars;      /* tuple of strings (cell variable names) */ | 
 | 22 |     /* The rest doesn't count for hash/cmp */ | 
 | 23 |     PyObject *co_filename;	/* string (where it was loaded from) */ | 
 | 24 |     PyObject *co_name;		/* string (name, for reference) */ | 
 | 25 |     int co_firstlineno;		/* first source line number */ | 
| Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 26 |     PyObject *co_lnotab;	/* string (encoding addr<->lineno mapping) See | 
 | 27 | 				   Objects/lnotab_notes.txt for details. */ | 
| Richard Jones | 7c88dcc | 2006-05-23 10:37:38 +0000 | [diff] [blame] | 28 |     void *co_zombieframe;     /* for optimization only (see frameobject.c) */ | 
| Collin Winter | 001a395 | 2010-03-18 21:54:01 +0000 | [diff] [blame] | 29 |     PyObject *co_weakreflist;   /* to support weakrefs to code objects */ | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 30 | } PyCodeObject; | 
 | 31 |  | 
 | 32 | /* Masks for co_flags above */ | 
 | 33 | #define CO_OPTIMIZED	0x0001 | 
 | 34 | #define CO_NEWLOCALS	0x0002 | 
 | 35 | #define CO_VARARGS	0x0004 | 
 | 36 | #define CO_VARKEYWORDS	0x0008 | 
 | 37 | #define CO_NESTED       0x0010 | 
 | 38 | #define CO_GENERATOR    0x0020 | 
 | 39 | /* The CO_NOFREE flag is set if there are no free or cell variables. | 
 | 40 |    This information is redundant, but it allows a single flag test | 
 | 41 |    to determine whether there is any extra work to be done when the | 
 | 42 |    call frame it setup. | 
 | 43 | */ | 
 | 44 | #define CO_NOFREE       0x0040 | 
| Neal Norwitz | 0090a4c | 2006-02-19 18:49:30 +0000 | [diff] [blame] | 45 |  | 
| Neal Norwitz | ab51f5f | 2006-02-25 15:43:10 +0000 | [diff] [blame] | 46 | #if 0 | 
 | 47 | /* This is no longer used.  Stopped defining in 2.5, do not re-use. */ | 
 | 48 | #define CO_GENERATOR_ALLOWED    0x1000 | 
 | 49 | #endif | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 50 | #define CO_FUTURE_DIVISION    	0x2000 | 
| Neal Norwitz | cbce280 | 2006-04-03 06:26:32 +0000 | [diff] [blame] | 51 | #define CO_FUTURE_ABSOLUTE_IMPORT 0x4000 /* do absolute imports by default */ | 
| Thomas Wouters | 34aa7ba | 2006-02-28 19:02:24 +0000 | [diff] [blame] | 52 | #define CO_FUTURE_WITH_STATEMENT  0x8000 | 
| Eric Smith | 7c47894 | 2008-03-18 23:45:49 +0000 | [diff] [blame] | 53 | #define CO_FUTURE_PRINT_FUNCTION  0x10000 | 
| Christian Heimes | 3c60833 | 2008-03-26 22:01:37 +0000 | [diff] [blame] | 54 | #define CO_FUTURE_UNICODE_LITERALS 0x20000 | 
| Thomas Wouters | 34aa7ba | 2006-02-28 19:02:24 +0000 | [diff] [blame] | 55 |  | 
 | 56 | /* This should be defined if a future statement modifies the syntax. | 
 | 57 |    For example, when a keyword is added. | 
 | 58 | */ | 
| Eric Smith | 7c47894 | 2008-03-18 23:45:49 +0000 | [diff] [blame] | 59 | #if 1 | 
| Thomas Wouters | 34aa7ba | 2006-02-28 19:02:24 +0000 | [diff] [blame] | 60 | #define PY_PARSER_REQUIRES_FUTURE_KEYWORD | 
| Neal Norwitz | ca460d9 | 2006-09-06 06:28:06 +0000 | [diff] [blame] | 61 | #endif | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 62 |  | 
 | 63 | #define CO_MAXBLOCKS 20 /* Max static block nesting within a function */ | 
 | 64 |  | 
| Neal Norwitz | 58a7985 | 2005-10-21 04:23:36 +0000 | [diff] [blame] | 65 | PyAPI_DATA(PyTypeObject) PyCode_Type; | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 66 |  | 
| Christian Heimes | e93237d | 2007-12-19 02:37:44 +0000 | [diff] [blame] | 67 | #define PyCode_Check(op) (Py_TYPE(op) == &PyCode_Type) | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 68 | #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars)) | 
 | 69 |  | 
 | 70 | /* Public interface */ | 
| Neal Norwitz | 58a7985 | 2005-10-21 04:23:36 +0000 | [diff] [blame] | 71 | PyAPI_FUNC(PyCodeObject *) PyCode_New( | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 72 | 	int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *, | 
| Victor Stinner | 7791165 | 2016-01-22 12:33:12 +0100 | [diff] [blame] | 73 | 	PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *); | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 74 |         /* same as struct above */ | 
| Jeffrey Yasskin | 1aa4700 | 2009-05-08 21:51:06 +0000 | [diff] [blame] | 75 |  | 
 | 76 | /* Creates a new empty code object with the specified source location. */ | 
 | 77 | PyAPI_FUNC(PyCodeObject *) | 
 | 78 | PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno); | 
 | 79 |  | 
| Jeffrey Yasskin | f7f858d | 2009-05-08 22:23:21 +0000 | [diff] [blame] | 80 | /* Return the line number associated with the specified bytecode index | 
 | 81 |    in this code object.  If you just need the line number of a frame, | 
 | 82 |    use PyFrame_GetLineNumber() instead. */ | 
| Neal Norwitz | 58a7985 | 2005-10-21 04:23:36 +0000 | [diff] [blame] | 83 | PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int); | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 84 |  | 
 | 85 | /* for internal use only */ | 
 | 86 | #define _PyCode_GETCODEPTR(co, pp) \ | 
| Christian Heimes | e93237d | 2007-12-19 02:37:44 +0000 | [diff] [blame] | 87 | 	((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \ | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 88 | 	 ((co)->co_code, 0, (void **)(pp))) | 
 | 89 |  | 
| Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 90 | typedef struct _addr_pair { | 
 | 91 |         int ap_lower; | 
 | 92 |         int ap_upper; | 
 | 93 | } PyAddrPair; | 
 | 94 |  | 
| Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 95 | /* Update *bounds to describe the first and one-past-the-last instructions in the | 
 | 96 |    same line as lasti.  Return the number of that line. | 
| Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 97 | */ | 
| Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 98 | PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co, | 
 | 99 |                                         int lasti, PyAddrPair *bounds); | 
| Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 100 |  | 
| Victor Stinner | 7791165 | 2016-01-22 12:33:12 +0100 | [diff] [blame] | 101 | /* Create a comparable key used to compare constants taking in account the | 
 | 102 |  * object type. It is used to make sure types are not coerced (e.g., float and | 
 | 103 |  * complex) _and_ to distinguish 0.0 from -0.0 e.g. on IEEE platforms | 
 | 104 |  * | 
 | 105 |  * Return (type(obj), obj, ...): a tuple with variable size (at least 2 items) | 
 | 106 |  * depending on the type and the value. The type is the first item to not | 
 | 107 |  * compare bytes and str which can raise a BytesWarning exception. */ | 
 | 108 | PyAPI_FUNC(PyObject*) _PyCode_ConstantKey(PyObject *obj); | 
 | 109 |  | 
| Jeremy Hylton | 271d593 | 2006-08-21 16:20:29 +0000 | [diff] [blame] | 110 | PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts, | 
 | 111 |                                       PyObject *names, PyObject *lineno_obj); | 
 | 112 |  | 
| Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 113 | #ifdef __cplusplus | 
 | 114 | } | 
 | 115 | #endif | 
 | 116 | #endif /* !Py_CODE_H */ |