| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | #ifndef Py_SYMTABLE_H
 | 
					
						
							|  |  |  | #define Py_SYMTABLE_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* A symbol table is constructed each time PyNode_Compile() is
 | 
					
						
							|  |  |  |    called.  The table walks the entire parse tree and identifies each | 
					
						
							|  |  |  |    use or definition of a variable.  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    The symbol table contains a dictionary for each code block in a | 
					
						
							|  |  |  |    module: The symbol dictionary for the block.  They keys of these | 
					
						
							|  |  |  |    dictionaries are the name of all variables used or defined in the | 
					
						
							|  |  |  |    block; the integer values are used to store several flags, | 
					
						
							|  |  |  |    e.g. DEF_PARAM indicates that a variable is a parameter to a | 
					
						
							|  |  |  |    function.  | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | struct _symtable_entry; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | struct symtable { | 
					
						
							|  |  |  | 	int st_pass;             /* pass == 1 or 2 */ | 
					
						
							| 
									
										
										
										
											2001-02-02 20:01:10 +00:00
										 |  |  | 	char *st_filename;       /* name of file being compiled */ | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | 	struct _symtable_entry *st_cur; /* current symbol table entry */ | 
					
						
							|  |  |  | 	PyObject *st_symbols;    /* dictionary of symbol table entries */ | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  |         PyObject *st_stack;      /* stack of namespace info */ | 
					
						
							|  |  |  | 	PyObject *st_global;     /* borrowed ref to MODULE in st_symbols */ | 
					
						
							|  |  |  | 	int st_nscopes;          /* number of scopes */ | 
					
						
							|  |  |  | 	int st_errors;           /* number of errors */ | 
					
						
							|  |  |  | 	char *st_private;        /* name of current class or NULL */ | 
					
						
							|  |  |  | 	int st_tmpname;          /* temporary name counter */ | 
					
						
							| 
									
										
										
										
											2001-02-27 19:07:02 +00:00
										 |  |  | 	PyFutureFeatures *st_future; /* module's future features */ | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | typedef struct _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 scope */ | 
					
						
							|  |  |  | 	PyObject *ste_varnames;  /* list of variable names */ | 
					
						
							|  |  |  | 	PyObject *ste_children;  /* list of child ids */ | 
					
						
							|  |  |  | 	int ste_type;            /* module, class, or function */ | 
					
						
							|  |  |  | 	int ste_lineno;          /* first line of scope */ | 
					
						
							| 
									
										
										
										
											2001-02-27 04:23:34 +00:00
										 |  |  | 	int ste_optimized;       /* true if namespace can't be optimized */ | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | 	int ste_nested;          /* true if scope is nested */ | 
					
						
							|  |  |  | 	int ste_child_free;      /* true if a child scope has free variables,
 | 
					
						
							|  |  |  | 				    including free refs to globals */ | 
					
						
							| 
									
										
										
										
											2001-06-18 22:08:13 +00:00
										 |  |  | 	int ste_generator;       /* true if namespace is a generator */ | 
					
						
							| 
									
										
										
										
											2001-03-22 03:57:58 +00:00
										 |  |  | 	int ste_opt_lineno;      /* lineno of last exec or import * */ | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | 	struct symtable *ste_table; | 
					
						
							|  |  |  | } PySymtableEntryObject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_DATA(PyTypeObject) PySymtableEntry_Type; | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PySymtableEntry_Check(op) ((op)->ob_type == &PySymtableEntry_Type)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PySymtableEntry_New(struct symtable *, | 
					
						
							| 
									
										
										
										
											2001-02-09 22:22:18 +00:00
										 |  |  | 						 char *, int, int); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(struct symtable *) PyNode_CompileSymtable(struct _node *, char *); | 
					
						
							|  |  |  | PyAPI_FUNC(void) PySymtable_Free(struct symtable *); | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define TOP "global"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Flags for def-use information */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DEF_GLOBAL 1           /* global stmt */
 | 
					
						
							|  |  |  | #define DEF_LOCAL 2            /* assignment in code block */
 | 
					
						
							|  |  |  | #define DEF_PARAM 2<<1         /* formal parameter */
 | 
					
						
							|  |  |  | #define USE 2<<2               /* name is used */
 | 
					
						
							|  |  |  | #define DEF_STAR 2<<3          /* parameter is star arg */
 | 
					
						
							|  |  |  | #define DEF_DOUBLESTAR 2<<4    /* parameter is star-star arg */
 | 
					
						
							|  |  |  | #define DEF_INTUPLE 2<<5       /* name defined in tuple in parameters */
 | 
					
						
							| 
									
										
										
										
											2001-02-28 23:03:39 +00:00
										 |  |  | #define DEF_FREE 2<<6          /* name used but not defined in nested scope */
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | #define DEF_FREE_GLOBAL 2<<7   /* free variable is actually implicit global */
 | 
					
						
							|  |  |  | #define DEF_FREE_CLASS 2<<8    /* free variable from class's method */
 | 
					
						
							|  |  |  | #define DEF_IMPORT 2<<9        /* assignment occurred via import */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-28 23:03:39 +00:00
										 |  |  | #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | #define TYPE_FUNCTION 1
 | 
					
						
							|  |  |  | #define TYPE_CLASS 2
 | 
					
						
							|  |  |  | #define TYPE_MODULE 3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LOCAL 1
 | 
					
						
							|  |  |  | #define GLOBAL_EXPLICIT 2
 | 
					
						
							|  |  |  | #define GLOBAL_IMPLICIT 3
 | 
					
						
							|  |  |  | #define FREE 4
 | 
					
						
							|  |  |  | #define CELL 5
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-27 04:23:34 +00:00
										 |  |  | #define OPT_IMPORT_STAR 1
 | 
					
						
							|  |  |  | #define OPT_EXEC 2
 | 
					
						
							|  |  |  | #define OPT_BARE_EXEC 4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-02 18:19:15 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_SYMTABLE_H */
 |