blob: 9ceecf0d746e6b61f6a3a8c947ca81fdbf4f8cfa [file] [log] [blame]
Jeremy Hylton4b38da62001-02-02 18:19:15 +00001#ifndef Py_SYMTABLE_H
2#define Py_SYMTABLE_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7/* A symbol table is constructed each time PyNode_Compile() is
8 called. The table walks the entire parse tree and identifies each
9 use or definition of a variable.
10
11 The symbol table contains a dictionary for each code block in a
12 module: The symbol dictionary for the block. They keys of these
13 dictionaries are the name of all variables used or defined in the
14 block; the integer values are used to store several flags,
15 e.g. DEF_PARAM indicates that a variable is a parameter to a
16 function.
Jeremy Hylton4b38da62001-02-02 18:19:15 +000017*/
18
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +000019struct _symtable_entry;
20
Jeremy Hylton4b38da62001-02-02 18:19:15 +000021struct symtable {
22 int st_pass; /* pass == 1 or 2 */
Jeremy Hylton29906ee2001-02-27 04:23:34 +000023 int st_nested_scopes; /* true if nested scopes are enabled */
Jeremy Hylton5acc0c02001-02-02 20:01:10 +000024 char *st_filename; /* name of file being compiled */
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +000025 struct _symtable_entry *st_cur; /* current symbol table entry */
26 PyObject *st_symbols; /* dictionary of symbol table entries */
Jeremy Hylton4b38da62001-02-02 18:19:15 +000027 PyObject *st_stack; /* stack of namespace info */
Jeremy Hylton4b38da62001-02-02 18:19:15 +000028 PyObject *st_global; /* borrowed ref to MODULE in st_symbols */
29 int st_nscopes; /* number of scopes */
30 int st_errors; /* number of errors */
31 char *st_private; /* name of current class or NULL */
32 int st_tmpname; /* temporary name counter */
Jeremy Hylton4db62b12001-02-27 19:07:02 +000033 PyFutureFeatures *st_future; /* module's future features */
Jeremy Hylton4b38da62001-02-02 18:19:15 +000034};
35
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +000036typedef struct _symtable_entry {
37 PyObject_HEAD
38 PyObject *ste_id; /* int: key in st_symbols) */
39 PyObject *ste_symbols; /* dict: name to flags) */
40 PyObject *ste_name; /* string: name of scope */
41 PyObject *ste_varnames; /* list of variable names */
42 PyObject *ste_children; /* list of child ids */
43 int ste_type; /* module, class, or function */
44 int ste_lineno; /* first line of scope */
Jeremy Hylton29906ee2001-02-27 04:23:34 +000045 int ste_optimized; /* true if namespace can't be optimized */
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +000046 int ste_nested; /* true if scope is nested */
47 int ste_child_free; /* true if a child scope has free variables,
48 including free refs to globals */
Tim Peters5ca576e2001-06-18 22:08:13 +000049 int ste_generator; /* true if namespace is a generator */
Jeremy Hylton2e2cded2001-03-22 03:57:58 +000050 int ste_opt_lineno; /* lineno of last exec or import * */
Jeremy Hyltoncb17ae82001-02-09 22:22:18 +000051 struct symtable *ste_table;
52} PySymtableEntryObject;
53
54extern DL_IMPORT(PyTypeObject) PySymtableEntry_Type;
55
56#define PySymtableEntry_Check(op) ((op)->ob_type == &PySymtableEntry_Type)
57
58extern DL_IMPORT(PyObject *) PySymtableEntry_New(struct symtable *,
59 char *, int, int);
60
Jeremy Hylton4b38da62001-02-02 18:19:15 +000061DL_IMPORT(struct symtable *) PyNode_CompileSymtable(struct _node *, char *);
62DL_IMPORT(void) PySymtable_Free(struct symtable *);
63
64
65#define TOP "global"
Jeremy Hylton4b38da62001-02-02 18:19:15 +000066
67/* Flags for def-use information */
68
69#define DEF_GLOBAL 1 /* global stmt */
70#define DEF_LOCAL 2 /* assignment in code block */
71#define DEF_PARAM 2<<1 /* formal parameter */
72#define USE 2<<2 /* name is used */
73#define DEF_STAR 2<<3 /* parameter is star arg */
74#define DEF_DOUBLESTAR 2<<4 /* parameter is star-star arg */
75#define DEF_INTUPLE 2<<5 /* name defined in tuple in parameters */
Jeremy Hylton99858b52001-02-28 23:03:39 +000076#define DEF_FREE 2<<6 /* name used but not defined in nested scope */
Jeremy Hylton4b38da62001-02-02 18:19:15 +000077#define DEF_FREE_GLOBAL 2<<7 /* free variable is actually implicit global */
78#define DEF_FREE_CLASS 2<<8 /* free variable from class's method */
79#define DEF_IMPORT 2<<9 /* assignment occurred via import */
80
Jeremy Hylton99858b52001-02-28 23:03:39 +000081#define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
82
Jeremy Hylton4b38da62001-02-02 18:19:15 +000083#define TYPE_FUNCTION 1
84#define TYPE_CLASS 2
85#define TYPE_MODULE 3
86
87#define LOCAL 1
88#define GLOBAL_EXPLICIT 2
89#define GLOBAL_IMPLICIT 3
90#define FREE 4
91#define CELL 5
92
Jeremy Hylton29906ee2001-02-27 04:23:34 +000093#define OPT_IMPORT_STAR 1
94#define OPT_EXEC 2
95#define OPT_BARE_EXEC 4
96
Jeremy Hylton4b38da62001-02-02 18:19:15 +000097#ifdef __cplusplus
98}
99#endif
100#endif /* !Py_SYMTABLE_H */