1 /* Definitions for bytecode */
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 */
26 PyObject
*co_lnotab
; /* string (encoding addr<->lineno mapping) See
27 Objects/lnotab_notes.txt for details. */
28 void *co_zombieframe
; /* for optimization only (see frameobject.c) */
31 /* Masks for co_flags above */
32 #define CO_OPTIMIZED 0x0001
33 #define CO_NEWLOCALS 0x0002
34 #define CO_VARARGS 0x0004
35 #define CO_VARKEYWORDS 0x0008
36 #define CO_NESTED 0x0010
37 #define CO_GENERATOR 0x0020
38 /* The CO_NOFREE flag is set if there are no free or cell variables.
39 This information is redundant, but it allows a single flag test
40 to determine whether there is any extra work to be done when the
43 #define CO_NOFREE 0x0040
46 /* This is no longer used. Stopped defining in 2.5, do not re-use. */
47 #define CO_GENERATOR_ALLOWED 0x1000
49 #define CO_FUTURE_DIVISION 0x2000
50 #define CO_FUTURE_ABSOLUTE_IMPORT 0x4000 /* do absolute imports by default */
51 #define CO_FUTURE_WITH_STATEMENT 0x8000
52 #define CO_FUTURE_PRINT_FUNCTION 0x10000
53 #define CO_FUTURE_UNICODE_LITERALS 0x20000
55 /* This should be defined if a future statement modifies the syntax.
56 For example, when a keyword is added.
59 #define PY_PARSER_REQUIRES_FUTURE_KEYWORD
62 #define CO_MAXBLOCKS 20 /* Max static block nesting within a function */
64 PyAPI_DATA(PyTypeObject
) PyCode_Type
;
66 #define PyCode_Check(op) (Py_TYPE(op) == &PyCode_Type)
67 #define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars))
69 /* Public interface */
70 PyAPI_FUNC(PyCodeObject
*) PyCode_New(
71 int, int, int, int, PyObject
*, PyObject
*, PyObject
*, PyObject
*,
72 PyObject
*, PyObject
*, PyObject
*, PyObject
*, int, PyObject
*);
73 /* same as struct above */
75 /* Creates a new empty code object with the specified source location. */
76 PyAPI_FUNC(PyCodeObject
*)
77 PyCode_NewEmpty(const char *filename
, const char *funcname
, int firstlineno
);
79 /* Return the line number associated with the specified bytecode index
80 in this code object. If you just need the line number of a frame,
81 use PyFrame_GetLineNumber() instead. */
82 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject
*, int);
84 /* for internal use only */
85 #define _PyCode_GETCODEPTR(co, pp) \
86 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
87 ((co)->co_code, 0, (void **)(pp)))
89 typedef struct _addr_pair
{
94 /* Update *bounds to describe the first and one-past-the-last instructions in the
95 same line as lasti. Return the number of that line.
97 PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject
* co
,
98 int lasti
, PyAddrPair
*bounds
);
100 PyAPI_FUNC(PyObject
*) PyCode_Optimize(PyObject
*code
, PyObject
* consts
,
101 PyObject
*names
, PyObject
*lineno_obj
);
106 #endif /* !Py_CODE_H */