blob: 38b2958046af1571b207eb97e2dfb5a69b56a28e [file] [log] [blame]
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001/* Definitions for bytecode */
2
3#ifndef Py_CODE_H
4#define Py_CODE_H
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9/* Bytecode object */
10typedef 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 Yasskin655d8352009-05-23 23:23:01 +000026 PyObject *co_lnotab; /* string (encoding addr<->lineno mapping) See
27 Objects/lnotab_notes.txt for details. */
Richard Jones7c88dcc2006-05-23 10:37:38 +000028 void *co_zombieframe; /* for optimization only (see frameobject.c) */
Collin Winter001a3952010-03-18 21:54:01 +000029 PyObject *co_weakreflist; /* to support weakrefs to code objects */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000030} 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 Norwitz0090a4c2006-02-19 18:49:30 +000045
Neal Norwitzab51f5f2006-02-25 15:43:10 +000046#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 Hylton3e0055f2005-10-20 19:59:25 +000050#define CO_FUTURE_DIVISION 0x2000
Neal Norwitzcbce2802006-04-03 06:26:32 +000051#define CO_FUTURE_ABSOLUTE_IMPORT 0x4000 /* do absolute imports by default */
Thomas Wouters34aa7ba2006-02-28 19:02:24 +000052#define CO_FUTURE_WITH_STATEMENT 0x8000
Eric Smith7c478942008-03-18 23:45:49 +000053#define CO_FUTURE_PRINT_FUNCTION 0x10000
Christian Heimes3c608332008-03-26 22:01:37 +000054#define CO_FUTURE_UNICODE_LITERALS 0x20000
Thomas Wouters34aa7ba2006-02-28 19:02:24 +000055
56/* This should be defined if a future statement modifies the syntax.
57 For example, when a keyword is added.
58*/
Eric Smith7c478942008-03-18 23:45:49 +000059#if 1
Thomas Wouters34aa7ba2006-02-28 19:02:24 +000060#define PY_PARSER_REQUIRES_FUTURE_KEYWORD
Neal Norwitzca460d92006-09-06 06:28:06 +000061#endif
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000062
63#define CO_MAXBLOCKS 20 /* Max static block nesting within a function */
64
Neal Norwitz58a79852005-10-21 04:23:36 +000065PyAPI_DATA(PyTypeObject) PyCode_Type;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000066
Christian Heimese93237d2007-12-19 02:37:44 +000067#define PyCode_Check(op) (Py_TYPE(op) == &PyCode_Type)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000068#define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars))
69
70/* Public interface */
Neal Norwitz58a79852005-10-21 04:23:36 +000071PyAPI_FUNC(PyCodeObject *) PyCode_New(
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000072 int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *,
73 PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *);
74 /* same as struct above */
Jeffrey Yasskin1aa47002009-05-08 21:51:06 +000075
76/* Creates a new empty code object with the specified source location. */
77PyAPI_FUNC(PyCodeObject *)
78PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
79
Jeffrey Yasskinf7f858d2009-05-08 22:23:21 +000080/* 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 Norwitz58a79852005-10-21 04:23:36 +000083PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000084
85/* for internal use only */
86#define _PyCode_GETCODEPTR(co, pp) \
Christian Heimese93237d2007-12-19 02:37:44 +000087 ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000088 ((co)->co_code, 0, (void **)(pp)))
89
Jeremy Hyltona4ebc132006-04-18 14:47:00 +000090typedef struct _addr_pair {
91 int ap_lower;
92 int ap_upper;
93} PyAddrPair;
94
Jeffrey Yasskin655d8352009-05-23 23:23:01 +000095/* 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 Hyltona4ebc132006-04-18 14:47:00 +000097*/
Jeffrey Yasskin655d8352009-05-23 23:23:01 +000098PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co,
99 int lasti, PyAddrPair *bounds);
Jeremy Hyltona4ebc132006-04-18 14:47:00 +0000100
Jeremy Hylton271d5932006-08-21 16:20:29 +0000101PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,
102 PyObject *names, PyObject *lineno_obj);
103
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000104#ifdef __cplusplus
105}
106#endif
107#endif /* !Py_CODE_H */