- Notifications
You must be signed in to change notification settings - Fork 31.7k
/
Copy pathsymtable.h
98 lines (80 loc) · 3.64 KB
/
symtable.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#ifndefPy_SYMTABLE_H
#definePy_SYMTABLE_H
#ifdef__cplusplus
extern"C" {
#endif
typedefenum_block_type { FunctionBlock, ClassBlock, ModuleBlock }
_Py_block_ty;
struct_symtable_entry;
structsymtable {
constchar*st_filename; /* name of file being compiled */
struct_symtable_entry*st_cur; /* current symbol table entry */
struct_symtable_entry*st_top; /* module entry */
PyObject*st_symbols; /* dictionary of symbol table entries */
PyObject*st_stack; /* stack of namespace info */
PyObject*st_global; /* borrowed ref to MODULE in st_symbols */
intst_nblocks; /* number of blocks */
PyObject*st_private; /* name of current class or NULL */
PyFutureFeatures*st_future; /* module's future features */
};
typedefstruct_symtable_entry {
PyObject_HEAD
PyObject*ste_id; /* int: key in st_symbols */
PyObject*ste_symbols; /* dict: name to flags */
PyObject*ste_name; /* string: name of block */
PyObject*ste_varnames; /* list of variable names */
PyObject*ste_children; /* list of child ids */
_Py_block_tyste_type; /* module, class, or function */
intste_unoptimized; /* false if namespace is optimized */
intste_nested; /* true if block is nested */
unsignedste_free : 1; /* true if block has free variables */
unsignedste_child_free : 1; /* true if a child block has free vars,
including free refs to globals */
unsignedste_generator : 1; /* true if namespace is a generator */
unsignedste_varargs : 1; /* true if block has varargs */
unsignedste_varkeywords : 1; /* true if block has varkeywords */
unsignedste_returns_value : 1; /* true if namespace uses return with
an argument */
intste_lineno; /* first line of block */
intste_opt_lineno; /* lineno of last exec or import * */
intste_tmpname; /* counter for listcomp temp vars */
structsymtable*ste_table;
} PySTEntryObject;
PyAPI_DATA(PyTypeObject) PySTEntry_Type;
#definePySTEntry_Check(op) (Py_TYPE(op) == &PySTEntry_Type)
PyAPI_FUNC(int) PyST_GetScope(PySTEntryObject*, PyObject*);
PyAPI_FUNC(structsymtable*) PySymtable_Build(mod_ty, constchar*,
PyFutureFeatures*);
PyAPI_FUNC(PySTEntryObject*) PySymtable_Lookup(structsymtable*, void*);
PyAPI_FUNC(void) PySymtable_Free(structsymtable*);
/* Flags for def-use information */
#defineDEF_GLOBAL 1 /* global stmt */
#defineDEF_LOCAL 2 /* assignment in code block */
#defineDEF_PARAM 2<<1 /* formal parameter */
#defineUSE 2<<2 /* name is used */
#defineDEF_FREE 2<<3 /* name used but not defined in nested block */
#defineDEF_FREE_CLASS 2<<4 /* free variable from class's method */
#defineDEF_IMPORT 2<<5 /* assignment occurred via import */
#defineDEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
/* GLOBAL_EXPLICIT and GLOBAL_IMPLICIT are used internally by the symbol
table. GLOBAL is returned from PyST_GetScope() for either of them.
It is stored in ste_symbols at bits 12-14.
*/
#defineSCOPE_OFF 11
#defineSCOPE_MASK 7
#defineLOCAL 1
#defineGLOBAL_EXPLICIT 2
#defineGLOBAL_IMPLICIT 3
#defineFREE 4
#defineCELL 5
/* The following three names are used for the ste_unoptimized bit field */
#defineOPT_IMPORT_STAR 1
#defineOPT_EXEC 2
#defineOPT_BARE_EXEC 4
#defineOPT_TOPLEVEL 8 /* top-level names, including eval and exec */
#defineGENERATOR 1
#defineGENERATOR_EXPRESSION 2
#ifdef__cplusplus
}
#endif
#endif/* !Py_SYMTABLE_H */