2 /* Definitions for bytecode */
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) */
21 PyObject
*co_freevars
; /* tuple of strings (free variable names) */
22 PyObject
*co_cellvars
; /* tuple of strings (cell variable names) */
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) */
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
36 extern DL_IMPORT(PyTypeObject
) PyCode_Type
;
38 #define PyCode_Check(op) ((op)->ob_type == &PyCode_Type)
40 #define CO_MAXBLOCKS 20 /* Max static block nesting within a function */
42 /* Public interface */
43 struct _node
; /* Declare the existence of this type */
44 DL_IMPORT(PyCodeObject
*) PyNode_Compile(struct _node
*, char *);
45 DL_IMPORT(PyCodeObject
*) PyCode_New(
46 int, int, int, int, PyObject
*, PyObject
*, PyObject
*, PyObject
*,
47 PyObject
*, PyObject
*, PyObject
*, PyObject
*, int, PyObject
*);
48 /* same as struct above */
49 DL_IMPORT(int) PyCode_Addr2Line(PyCodeObject
*, int);
51 /* Future feature support */
59 DL_IMPORT(PyFutureFeatures
*) PyNode_Future(struct _node
*, char *);
61 #define NESTED_SCOPES_DEFAULT 0
62 #define FUTURE_NESTED_SCOPES "nested_scopes"
64 /* for internal use only */
65 #define _PyCode_GETCODEPTR(co, pp) \
66 ((*(co)->co_code->ob_type->tp_as_buffer->bf_getreadbuffer) \
67 ((co)->co_code, 0, (void **)(pp)))
72 #endif /* !Py_COMPILE_H */