Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 1 | #include "Python.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2 | #include "Python-ast.h" |
| 3 | #include "code.h" |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 4 | #include "symtable.h" |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 5 | #include "structmember.h" |
| 6 | |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 7 | /* error strings used for warnings */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 8 | #define GLOBAL_AFTER_ASSIGN \ |
| 9 | "name '%.400s' is assigned to before global declaration" |
Jeremy Hylton | 2990640 | 2001-12-10 00:53:18 +0000 | [diff] [blame] | 10 | |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 11 | #define NONLOCAL_AFTER_ASSIGN \ |
| 12 | "name '%.400s' is assigned to before nonlocal declaration" |
| 13 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 14 | #define GLOBAL_AFTER_USE \ |
| 15 | "name '%.400s' is used prior to global declaration" |
Jeremy Hylton | 2990640 | 2001-12-10 00:53:18 +0000 | [diff] [blame] | 16 | |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 17 | #define NONLOCAL_AFTER_USE \ |
| 18 | "name '%.400s' is used prior to nonlocal declaration" |
| 19 | |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 20 | #define IMPORT_STAR_WARNING "import * only allowed at module level" |
| 21 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 22 | #define RETURN_VAL_IN_GENERATOR \ |
| 23 | "'return' with argument inside generator" |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 24 | |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 25 | |
Neal Norwitz | 090b3dd | 2006-02-28 22:36:46 +0000 | [diff] [blame] | 26 | static PySTEntryObject * |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 27 | ste_new(struct symtable *st, identifier name, _Py_block_ty block, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 28 | void *key, int lineno) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 29 | { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 30 | PySTEntryObject *ste = NULL; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 31 | PyObject *k; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 32 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 33 | k = PyLong_FromVoidPtr(key); |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 34 | if (k == NULL) |
| 35 | goto fail; |
Christian Heimes | 08976cb | 2008-03-16 00:32:36 +0000 | [diff] [blame] | 36 | ste = PyObject_New(PySTEntryObject, &PySTEntry_Type); |
| 37 | if (ste == NULL) |
| 38 | goto fail; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 39 | ste->ste_table = st; |
| 40 | ste->ste_id = k; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 41 | ste->ste_tmpname = 0; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 42 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 43 | ste->ste_name = name; |
| 44 | Py_INCREF(name); |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 45 | |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 46 | ste->ste_symbols = NULL; |
| 47 | ste->ste_varnames = NULL; |
| 48 | ste->ste_children = NULL; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 49 | |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 50 | ste->ste_symbols = PyDict_New(); |
| 51 | if (ste->ste_symbols == NULL) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 52 | goto fail; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 53 | |
| 54 | ste->ste_varnames = PyList_New(0); |
| 55 | if (ste->ste_varnames == NULL) |
| 56 | goto fail; |
| 57 | |
| 58 | ste->ste_children = PyList_New(0); |
| 59 | if (ste->ste_children == NULL) |
| 60 | goto fail; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 61 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 62 | ste->ste_type = block; |
| 63 | ste->ste_unoptimized = 0; |
| 64 | ste->ste_nested = 0; |
| 65 | ste->ste_free = 0; |
| 66 | ste->ste_varargs = 0; |
| 67 | ste->ste_varkeywords = 0; |
Jeremy Hylton | 86424e3 | 2001-12-04 02:41:46 +0000 | [diff] [blame] | 68 | ste->ste_opt_lineno = 0; |
Jeremy Hylton | 4d508ad | 2003-05-21 17:34:50 +0000 | [diff] [blame] | 69 | ste->ste_tmpname = 0; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 70 | ste->ste_lineno = lineno; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 71 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 72 | if (st->st_cur != NULL && |
| 73 | (st->st_cur->ste_nested || |
| 74 | st->st_cur->ste_type == FunctionBlock)) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 75 | ste->ste_nested = 1; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 76 | ste->ste_child_free = 0; |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 77 | ste->ste_generator = 0; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 78 | ste->ste_returns_value = 0; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 79 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 80 | if (PyDict_SetItem(st->st_blocks, ste->ste_id, (PyObject *)ste) < 0) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 81 | goto fail; |
Jeremy Hylton | 74b3bc4 | 2001-02-23 17:55:27 +0000 | [diff] [blame] | 82 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 83 | return ste; |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 84 | fail: |
| 85 | Py_XDECREF(ste); |
| 86 | return NULL; |
| 87 | } |
| 88 | |
| 89 | static PyObject * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 90 | ste_repr(PySTEntryObject *ste) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 91 | { |
Walter Dörwald | 5d4ede1 | 2007-06-11 16:03:16 +0000 | [diff] [blame] | 92 | return PyUnicode_FromFormat("<symtable entry %U(%ld), line %d>", |
| 93 | ste->ste_name, |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 94 | PyLong_AS_LONG(ste->ste_id), ste->ste_lineno); |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static void |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 98 | ste_dealloc(PySTEntryObject *ste) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 99 | { |
| 100 | ste->ste_table = NULL; |
| 101 | Py_XDECREF(ste->ste_id); |
| 102 | Py_XDECREF(ste->ste_name); |
| 103 | Py_XDECREF(ste->ste_symbols); |
| 104 | Py_XDECREF(ste->ste_varnames); |
| 105 | Py_XDECREF(ste->ste_children); |
| 106 | PyObject_Del(ste); |
| 107 | } |
| 108 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 109 | #define OFF(x) offsetof(PySTEntryObject, x) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 110 | |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 111 | static PyMemberDef ste_memberlist[] = { |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 112 | {"id", T_OBJECT, OFF(ste_id), READONLY}, |
| 113 | {"name", T_OBJECT, OFF(ste_name), READONLY}, |
| 114 | {"symbols", T_OBJECT, OFF(ste_symbols), READONLY}, |
| 115 | {"varnames", T_OBJECT, OFF(ste_varnames), READONLY}, |
| 116 | {"children", T_OBJECT, OFF(ste_children), READONLY}, |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 117 | {"optimized",T_INT, OFF(ste_unoptimized), READONLY}, |
| 118 | {"nested", T_INT, OFF(ste_nested), READONLY}, |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 119 | {"type", T_INT, OFF(ste_type), READONLY}, |
| 120 | {"lineno", T_INT, OFF(ste_lineno), READONLY}, |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 121 | {NULL} |
| 122 | }; |
| 123 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 124 | PyTypeObject PySTEntry_Type = { |
Martin v. Löwis | 9f2e346 | 2007-07-21 17:22:18 +0000 | [diff] [blame] | 125 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 126 | "symtable entry", |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 127 | sizeof(PySTEntryObject), |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 128 | 0, |
| 129 | (destructor)ste_dealloc, /* tp_dealloc */ |
| 130 | 0, /* tp_print */ |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 131 | 0, /* tp_getattr */ |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 132 | 0, /* tp_setattr */ |
Mark Dickinson | e94c679 | 2009-02-02 20:36:42 +0000 | [diff] [blame] | 133 | 0, /* tp_reserved */ |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 134 | (reprfunc)ste_repr, /* tp_repr */ |
| 135 | 0, /* tp_as_number */ |
| 136 | 0, /* tp_as_sequence */ |
| 137 | 0, /* tp_as_mapping */ |
| 138 | 0, /* tp_hash */ |
| 139 | 0, /* tp_call */ |
| 140 | 0, /* tp_str */ |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 141 | PyObject_GenericGetAttr, /* tp_getattro */ |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 142 | 0, /* tp_setattro */ |
| 143 | 0, /* tp_as_buffer */ |
| 144 | Py_TPFLAGS_DEFAULT, /* tp_flags */ |
| 145 | 0, /* tp_doc */ |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 146 | 0, /* tp_traverse */ |
| 147 | 0, /* tp_clear */ |
| 148 | 0, /* tp_richcompare */ |
| 149 | 0, /* tp_weaklistoffset */ |
| 150 | 0, /* tp_iter */ |
| 151 | 0, /* tp_iternext */ |
| 152 | 0, /* tp_methods */ |
| 153 | ste_memberlist, /* tp_members */ |
| 154 | 0, /* tp_getset */ |
| 155 | 0, /* tp_base */ |
| 156 | 0, /* tp_dict */ |
| 157 | 0, /* tp_descr_get */ |
| 158 | 0, /* tp_descr_set */ |
| 159 | 0, /* tp_dictoffset */ |
| 160 | 0, /* tp_init */ |
| 161 | 0, /* tp_alloc */ |
| 162 | 0, /* tp_new */ |
Jeremy Hylton | cb17ae8 | 2001-02-09 22:22:18 +0000 | [diff] [blame] | 163 | }; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 164 | |
| 165 | static int symtable_analyze(struct symtable *st); |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 166 | static int symtable_warn(struct symtable *st, char *msg, int lineno); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 167 | static int symtable_enter_block(struct symtable *st, identifier name, |
Neal Norwitz | 62c2fac | 2005-10-24 00:30:44 +0000 | [diff] [blame] | 168 | _Py_block_ty block, void *ast, int lineno); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 169 | static int symtable_exit_block(struct symtable *st, void *ast); |
| 170 | static int symtable_visit_stmt(struct symtable *st, stmt_ty s); |
| 171 | static int symtable_visit_expr(struct symtable *st, expr_ty s); |
| 172 | static int symtable_visit_genexp(struct symtable *st, expr_ty s); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 173 | static int symtable_visit_listcomp(struct symtable *st, expr_ty s); |
| 174 | static int symtable_visit_setcomp(struct symtable *st, expr_ty s); |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 175 | static int symtable_visit_dictcomp(struct symtable *st, expr_ty s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 176 | static int symtable_visit_arguments(struct symtable *st, arguments_ty); |
| 177 | static int symtable_visit_excepthandler(struct symtable *st, excepthandler_ty); |
| 178 | static int symtable_visit_alias(struct symtable *st, alias_ty); |
| 179 | static int symtable_visit_comprehension(struct symtable *st, comprehension_ty); |
| 180 | static int symtable_visit_keyword(struct symtable *st, keyword_ty); |
| 181 | static int symtable_visit_slice(struct symtable *st, slice_ty); |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 182 | static int symtable_visit_params(struct symtable *st, asdl_seq *args); |
| 183 | static int symtable_visit_argannotations(struct symtable *st, asdl_seq *args); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 184 | static int symtable_implicit_arg(struct symtable *st, int pos); |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 185 | static int symtable_visit_annotations(struct symtable *st, stmt_ty s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 186 | |
| 187 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 188 | static identifier top = NULL, lambda = NULL, genexpr = NULL, |
Benjamin Peterson | dcaf329 | 2009-03-03 00:54:05 +0000 | [diff] [blame] | 189 | listcomp = NULL, setcomp = NULL, dictcomp = NULL, |
| 190 | __class__ = NULL, __locals__ = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 191 | |
| 192 | #define GET_IDENTIFIER(VAR) \ |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 193 | ((VAR) ? (VAR) : ((VAR) = PyUnicode_InternFromString(# VAR))) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 194 | |
| 195 | #define DUPLICATE_ARGUMENT \ |
Neal Norwitz | a5d16a3 | 2007-08-24 22:53:58 +0000 | [diff] [blame] | 196 | "duplicate argument '%U' in function definition" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 197 | |
| 198 | static struct symtable * |
| 199 | symtable_new(void) |
| 200 | { |
| 201 | struct symtable *st; |
| 202 | |
| 203 | st = (struct symtable *)PyMem_Malloc(sizeof(struct symtable)); |
| 204 | if (st == NULL) |
| 205 | return NULL; |
| 206 | |
| 207 | st->st_filename = NULL; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 208 | st->st_blocks = NULL; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 209 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 210 | if ((st->st_stack = PyList_New(0)) == NULL) |
| 211 | goto fail; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 212 | if ((st->st_blocks = PyDict_New()) == NULL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 213 | goto fail; |
| 214 | st->st_cur = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 215 | st->st_private = NULL; |
| 216 | return st; |
| 217 | fail: |
| 218 | PySymtable_Free(st); |
| 219 | return NULL; |
| 220 | } |
| 221 | |
| 222 | struct symtable * |
| 223 | PySymtable_Build(mod_ty mod, const char *filename, PyFutureFeatures *future) |
| 224 | { |
| 225 | struct symtable *st = symtable_new(); |
| 226 | asdl_seq *seq; |
| 227 | int i; |
| 228 | |
| 229 | if (st == NULL) |
| 230 | return st; |
| 231 | st->st_filename = filename; |
| 232 | st->st_future = future; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 233 | /* Make the initial symbol information gathering pass */ |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 234 | if (!GET_IDENTIFIER(top) || |
| 235 | !symtable_enter_block(st, top, ModuleBlock, (void *)mod, 0)) { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 236 | PySymtable_Free(st); |
| 237 | return NULL; |
| 238 | } |
| 239 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 240 | st->st_top = st->st_cur; |
| 241 | st->st_cur->ste_unoptimized = OPT_TOPLEVEL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 242 | switch (mod->kind) { |
| 243 | case Module_kind: |
| 244 | seq = mod->v.Module.body; |
| 245 | for (i = 0; i < asdl_seq_LEN(seq); i++) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 246 | if (!symtable_visit_stmt(st, |
| 247 | (stmt_ty)asdl_seq_GET(seq, i))) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 248 | goto error; |
| 249 | break; |
| 250 | case Expression_kind: |
| 251 | if (!symtable_visit_expr(st, mod->v.Expression.body)) |
| 252 | goto error; |
| 253 | break; |
| 254 | case Interactive_kind: |
| 255 | seq = mod->v.Interactive.body; |
| 256 | for (i = 0; i < asdl_seq_LEN(seq); i++) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 257 | if (!symtable_visit_stmt(st, |
| 258 | (stmt_ty)asdl_seq_GET(seq, i))) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 259 | goto error; |
| 260 | break; |
| 261 | case Suite_kind: |
| 262 | PyErr_SetString(PyExc_RuntimeError, |
| 263 | "this compiler does not handle Suites"); |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 264 | goto error; |
| 265 | } |
| 266 | if (!symtable_exit_block(st, (void *)mod)) { |
| 267 | PySymtable_Free(st); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 268 | return NULL; |
| 269 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 270 | /* Make the second symbol analysis pass */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 271 | if (symtable_analyze(st)) |
| 272 | return st; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 273 | PySymtable_Free(st); |
| 274 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 275 | error: |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 276 | (void) symtable_exit_block(st, (void *)mod); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 277 | PySymtable_Free(st); |
| 278 | return NULL; |
| 279 | } |
| 280 | |
| 281 | void |
| 282 | PySymtable_Free(struct symtable *st) |
| 283 | { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 284 | Py_XDECREF(st->st_blocks); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 285 | Py_XDECREF(st->st_stack); |
| 286 | PyMem_Free((void *)st); |
| 287 | } |
| 288 | |
| 289 | PySTEntryObject * |
| 290 | PySymtable_Lookup(struct symtable *st, void *key) |
| 291 | { |
| 292 | PyObject *k, *v; |
| 293 | |
| 294 | k = PyLong_FromVoidPtr(key); |
| 295 | if (k == NULL) |
| 296 | return NULL; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 297 | v = PyDict_GetItem(st->st_blocks, k); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 298 | if (v) { |
| 299 | assert(PySTEntry_Check(v)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 300 | Py_INCREF(v); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 301 | } |
| 302 | else { |
| 303 | PyErr_SetString(PyExc_KeyError, |
| 304 | "unknown symbol table entry"); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 305 | } |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 306 | |
| 307 | Py_DECREF(k); |
| 308 | return (PySTEntryObject *)v; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | int |
| 312 | PyST_GetScope(PySTEntryObject *ste, PyObject *name) |
| 313 | { |
| 314 | PyObject *v = PyDict_GetItem(ste->ste_symbols, name); |
| 315 | if (!v) |
| 316 | return 0; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 317 | assert(PyLong_Check(v)); |
| 318 | return (PyLong_AS_LONG(v) >> SCOPE_OFFSET) & SCOPE_MASK; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | |
| 322 | /* Analyze raw symbol information to determine scope of each name. |
| 323 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 324 | The next several functions are helpers for symtable_analyze(), |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 325 | which determines whether a name is local, global, or free. In addition, |
| 326 | it determines which local variables are cell variables; they provide |
| 327 | bindings that are used for free variables in enclosed blocks. |
| 328 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 329 | There are also two kinds of global variables, implicit and explicit. An |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 330 | explicit global is declared with the global statement. An implicit |
| 331 | global is a free variable for which the compiler has found no binding |
| 332 | in an enclosing function scope. The implicit global is either a global |
| 333 | or a builtin. Python's module and class blocks use the xxx_NAME opcodes |
| 334 | to handle these names to implement slightly odd semantics. In such a |
| 335 | block, the name is treated as global until it is assigned to; then it |
| 336 | is treated as a local. |
| 337 | |
| 338 | The symbol table requires two passes to determine the scope of each name. |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 339 | The first pass collects raw facts from the AST via the symtable_visit_* |
| 340 | functions: the name is a parameter here, the name is used but not defined |
| 341 | here, etc. The second pass analyzes these facts during a pass over the |
| 342 | PySTEntryObjects created during pass 1. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 343 | |
| 344 | When a function is entered during the second pass, the parent passes |
| 345 | the set of all name bindings visible to its children. These bindings |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 346 | are used to determine if non-local variables are free or implicit globals. |
Nick Coghlan | 4138bfe | 2007-04-23 10:14:27 +0000 | [diff] [blame] | 347 | Names which are explicitly declared nonlocal must exist in this set of |
| 348 | visible names - if they do not, a syntax error is raised. After doing |
| 349 | the local analysis, it analyzes each of its child blocks using an |
| 350 | updated set of name bindings. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 351 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 352 | The children update the free variable set. If a local variable is added to |
| 353 | the free variable set by the child, the variable is marked as a cell. The |
| 354 | function object being defined must provide runtime storage for the variable |
| 355 | that may outlive the function's frame. Cell variables are removed from the |
| 356 | free set before the analyze function returns to its parent. |
Nick Coghlan | 4138bfe | 2007-04-23 10:14:27 +0000 | [diff] [blame] | 357 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 358 | During analysis, the names are: |
| 359 | symbols: dict mapping from symbol names to flag values (including offset scope values) |
| 360 | scopes: dict mapping from symbol names to scope values (no offset) |
| 361 | local: set of all symbol names local to the current scope |
| 362 | bound: set of all symbol names local to a containing function scope |
| 363 | free: set of all symbol names referenced but not bound in child scopes |
| 364 | global: set of all symbol names explicitly declared as global |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 365 | */ |
| 366 | |
| 367 | #define SET_SCOPE(DICT, NAME, I) { \ |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 368 | PyObject *o = PyLong_FromLong(I); \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 369 | if (!o) \ |
| 370 | return 0; \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 371 | if (PyDict_SetItem((DICT), (NAME), o) < 0) { \ |
| 372 | Py_DECREF(o); \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 373 | return 0; \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 374 | } \ |
| 375 | Py_DECREF(o); \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 376 | } |
| 377 | |
| 378 | /* Decide on scope of name, given flags. |
| 379 | |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 380 | The namespace dictionaries may be modified to record information |
| 381 | about the new name. For example, a new global will add an entry to |
| 382 | global. A name that was global can be changed to local. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 383 | */ |
| 384 | |
| 385 | static int |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 386 | analyze_name(PySTEntryObject *ste, PyObject *scopes, PyObject *name, long flags, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 387 | PyObject *bound, PyObject *local, PyObject *free, |
| 388 | PyObject *global) |
| 389 | { |
| 390 | if (flags & DEF_GLOBAL) { |
| 391 | if (flags & DEF_PARAM) { |
| 392 | PyErr_Format(PyExc_SyntaxError, |
Walter Dörwald | 4ddbdad | 2007-06-11 16:06:26 +0000 | [diff] [blame] | 393 | "name '%U' is parameter and global", |
| 394 | name); |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 395 | PyErr_SyntaxLocation(ste->ste_table->st_filename, |
| 396 | ste->ste_lineno); |
| 397 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 398 | return 0; |
| 399 | } |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 400 | if (flags & DEF_NONLOCAL) { |
| 401 | PyErr_Format(PyExc_SyntaxError, |
Walter Dörwald | 4ddbdad | 2007-06-11 16:06:26 +0000 | [diff] [blame] | 402 | "name '%U' is nonlocal and global", |
| 403 | name); |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 404 | return 0; |
| 405 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 406 | SET_SCOPE(scopes, name, GLOBAL_EXPLICIT); |
| 407 | if (PySet_Add(global, name) < 0) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 408 | return 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 409 | if (bound && (PySet_Discard(bound, name) < 0)) |
| 410 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 411 | return 1; |
| 412 | } |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 413 | if (flags & DEF_NONLOCAL) { |
| 414 | if (flags & DEF_PARAM) { |
| 415 | PyErr_Format(PyExc_SyntaxError, |
Walter Dörwald | 4ddbdad | 2007-06-11 16:06:26 +0000 | [diff] [blame] | 416 | "name '%U' is parameter and nonlocal", |
| 417 | name); |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 418 | return 0; |
| 419 | } |
Nick Coghlan | 4138bfe | 2007-04-23 10:14:27 +0000 | [diff] [blame] | 420 | if (!bound) { |
| 421 | PyErr_Format(PyExc_SyntaxError, |
| 422 | "nonlocal declaration not allowed at module level"); |
| 423 | return 0; |
| 424 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 425 | if (!PySet_Contains(bound, name)) { |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 426 | PyErr_Format(PyExc_SyntaxError, |
Walter Dörwald | 4ddbdad | 2007-06-11 16:06:26 +0000 | [diff] [blame] | 427 | "no binding for nonlocal '%U' found", |
| 428 | name); |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 429 | |
| 430 | return 0; |
| 431 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 432 | SET_SCOPE(scopes, name, FREE); |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 433 | ste->ste_free = 1; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 434 | return PySet_Add(free, name) >= 0; |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 435 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 436 | if (flags & DEF_BOUND) { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 437 | SET_SCOPE(scopes, name, LOCAL); |
| 438 | if (PySet_Add(local, name) < 0) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 439 | return 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 440 | if (PySet_Discard(global, name) < 0) |
| 441 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 442 | return 1; |
| 443 | } |
| 444 | /* If an enclosing block has a binding for this name, it |
| 445 | is a free variable rather than a global variable. |
| 446 | Note that having a non-NULL bound implies that the block |
| 447 | is nested. |
| 448 | */ |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 449 | if (bound && PySet_Contains(bound, name)) { |
| 450 | SET_SCOPE(scopes, name, FREE); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 451 | ste->ste_free = 1; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 452 | return PySet_Add(free, name) >= 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 453 | } |
| 454 | /* If a parent has a global statement, then call it global |
| 455 | explicit? It could also be global implicit. |
| 456 | */ |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 457 | if (global && PySet_Contains(global, name)) { |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 458 | SET_SCOPE(scopes, name, GLOBAL_IMPLICIT); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 459 | return 1; |
| 460 | } |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 461 | if (ste->ste_nested) |
| 462 | ste->ste_free = 1; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 463 | SET_SCOPE(scopes, name, GLOBAL_IMPLICIT); |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 464 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | #undef SET_SCOPE |
| 468 | |
| 469 | /* If a name is defined in free and also in locals, then this block |
| 470 | provides the binding for the free variable. The name should be |
| 471 | marked CELL in this block and removed from the free list. |
| 472 | |
| 473 | Note that the current block's free variables are included in free. |
| 474 | That's safe because no name can be free and local in the same scope. |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 475 | |
Martin v. Löwis | 2673a57 | 2007-10-29 19:54:24 +0000 | [diff] [blame] | 476 | The 'restricted' argument may be set to a string to restrict the analysis |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 477 | to the one variable whose name equals that string (e.g. "__class__"). |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 478 | */ |
| 479 | |
| 480 | static int |
Martin v. Löwis | 2673a57 | 2007-10-29 19:54:24 +0000 | [diff] [blame] | 481 | analyze_cells(PyObject *scopes, PyObject *free, const char *restricted) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 482 | { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 483 | PyObject *name, *v, *v_cell; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 484 | int success = 0; |
| 485 | Py_ssize_t pos = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 486 | |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 487 | v_cell = PyLong_FromLong(CELL); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 488 | if (!v_cell) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 489 | return 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 490 | while (PyDict_Next(scopes, &pos, &name, &v)) { |
| 491 | long scope; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 492 | assert(PyLong_Check(v)); |
| 493 | scope = PyLong_AS_LONG(v); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 494 | if (scope != LOCAL) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 495 | continue; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 496 | if (!PySet_Contains(free, name)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 497 | continue; |
Martin v. Löwis | 2673a57 | 2007-10-29 19:54:24 +0000 | [diff] [blame] | 498 | if (restricted != NULL && |
| 499 | PyUnicode_CompareWithASCIIString(name, restricted)) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 500 | continue; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 501 | /* Replace LOCAL with CELL for this name, and remove |
| 502 | from free. It is safe to replace the value of name |
| 503 | in the dict, because it will not cause a resize. |
| 504 | */ |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 505 | if (PyDict_SetItem(scopes, name, v_cell) < 0) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 506 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 507 | if (PySet_Discard(free, name) < 0) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 508 | goto error; |
| 509 | } |
| 510 | success = 1; |
| 511 | error: |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 512 | Py_DECREF(v_cell); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 513 | return success; |
| 514 | } |
| 515 | |
| 516 | /* Check for illegal statements in unoptimized namespaces */ |
| 517 | static int |
| 518 | check_unoptimized(const PySTEntryObject* ste) { |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 519 | const char* trailer; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 520 | |
Neil Schemenauer | 2dfcef5 | 2005-10-23 18:50:36 +0000 | [diff] [blame] | 521 | if (ste->ste_type != FunctionBlock || !ste->ste_unoptimized |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 522 | || !(ste->ste_free || ste->ste_child_free)) |
| 523 | return 1; |
| 524 | |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 525 | trailer = (ste->ste_child_free ? |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 526 | "contains a nested function with free variables" : |
| 527 | "is a nested function"); |
| 528 | |
| 529 | switch (ste->ste_unoptimized) { |
Georg Brandl | 7cae87c | 2006-09-06 06:51:57 +0000 | [diff] [blame] | 530 | case OPT_TOPLEVEL: /* import * at top-level is fine */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 531 | return 1; |
| 532 | case OPT_IMPORT_STAR: |
Walter Dörwald | 3ef72bb | 2007-06-11 16:12:10 +0000 | [diff] [blame] | 533 | PyErr_Format(PyExc_SyntaxError, |
| 534 | "import * is not allowed in function '%U' because it %s", |
Walter Dörwald | e42109d | 2007-06-11 16:08:41 +0000 | [diff] [blame] | 535 | ste->ste_name, trailer); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 536 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 537 | } |
| 538 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 539 | PyErr_SyntaxLocation(ste->ste_table->st_filename, |
| 540 | ste->ste_opt_lineno); |
| 541 | return 0; |
| 542 | } |
| 543 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 544 | /* Enter the final scope information into the ste_symbols dict. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 545 | * |
| 546 | * All arguments are dicts. Modifies symbols, others are read-only. |
| 547 | */ |
| 548 | static int |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 549 | update_symbols(PyObject *symbols, PyObject *scopes, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 550 | PyObject *bound, PyObject *free, int classflag) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 551 | { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 552 | PyObject *name = NULL, *itr = NULL; |
| 553 | PyObject *v = NULL, *v_scope = NULL, *v_new = NULL, *v_free = NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 554 | Py_ssize_t pos = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 555 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 556 | /* Update scope information for all symbols in this scope */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 557 | while (PyDict_Next(symbols, &pos, &name, &v)) { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 558 | long scope, flags; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 559 | assert(PyLong_Check(v)); |
| 560 | flags = PyLong_AS_LONG(v); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 561 | v_scope = PyDict_GetItem(scopes, name); |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 562 | assert(v_scope && PyLong_Check(v_scope)); |
| 563 | scope = PyLong_AS_LONG(v_scope); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 564 | flags |= (scope << SCOPE_OFFSET); |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 565 | v_new = PyLong_FromLong(flags); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 566 | if (!v_new) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 567 | return 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 568 | if (PyDict_SetItem(symbols, name, v_new) < 0) { |
| 569 | Py_DECREF(v_new); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 570 | return 0; |
| 571 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 572 | Py_DECREF(v_new); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 575 | /* Record not yet resolved free variables from children (if any) */ |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 576 | v_free = PyLong_FromLong(FREE << SCOPE_OFFSET); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 577 | if (!v_free) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 578 | return 0; |
| 579 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 580 | itr = PyObject_GetIter(free); |
| 581 | if (!itr) |
| 582 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 583 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 584 | while ((name = PyIter_Next(itr))) { |
| 585 | v = PyDict_GetItem(symbols, name); |
| 586 | |
| 587 | /* Handle symbol that already exists in this scope */ |
| 588 | if (v) { |
| 589 | /* Handle a free variable in a method of |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 590 | the class that has the same name as a local |
| 591 | or global in the class scope. |
| 592 | */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 593 | if (classflag && |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 594 | PyLong_AS_LONG(v) & (DEF_BOUND | DEF_GLOBAL)) { |
| 595 | long flags = PyLong_AS_LONG(v) | DEF_FREE_CLASS; |
| 596 | v_new = PyLong_FromLong(flags); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 597 | if (!v_new) { |
| 598 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 599 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 600 | if (PyDict_SetItem(symbols, name, v_new) < 0) { |
| 601 | Py_DECREF(v_new); |
| 602 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 603 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 604 | Py_DECREF(v_new); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 605 | } |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 606 | /* It's a cell, or already free in this scope */ |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 607 | Py_DECREF(name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 608 | continue; |
| 609 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 610 | /* Handle global symbol */ |
| 611 | if (!PySet_Contains(bound, name)) { |
| 612 | Py_DECREF(name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 613 | continue; /* it's a global */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 614 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 615 | /* Propagate new free symbol up the lexical stack */ |
| 616 | if (PyDict_SetItem(symbols, name, v_free) < 0) { |
| 617 | goto error; |
| 618 | } |
| 619 | Py_DECREF(name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 620 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 621 | Py_DECREF(itr); |
| 622 | Py_DECREF(v_free); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 623 | return 1; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 624 | error: |
| 625 | Py_XDECREF(v_free); |
| 626 | Py_XDECREF(itr); |
| 627 | Py_XDECREF(name); |
| 628 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 629 | } |
| 630 | |
| 631 | /* Make final symbol table decisions for block of ste. |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 632 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 633 | Arguments: |
| 634 | ste -- current symtable entry (input/output) |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 635 | bound -- set of variables bound in enclosing scopes (input). bound |
| 636 | is NULL for module blocks. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 637 | free -- set of free variables in enclosed scopes (output) |
| 638 | globals -- set of declared global variables in enclosing scopes (input) |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 639 | |
| 640 | The implementation uses two mutually recursive functions, |
| 641 | analyze_block() and analyze_child_block(). analyze_block() is |
| 642 | responsible for analyzing the individual names defined in a block. |
| 643 | analyze_child_block() prepares temporary namespace dictionaries |
| 644 | used to evaluated nested blocks. |
| 645 | |
| 646 | The two functions exist because a child block should see the name |
| 647 | bindings of its enclosing blocks, but those bindings should not |
| 648 | propagate back to a parent block. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 649 | */ |
| 650 | |
| 651 | static int |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 652 | analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, |
| 653 | PyObject *global, PyObject* child_free); |
| 654 | |
| 655 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 656 | analyze_block(PySTEntryObject *ste, PyObject *bound, PyObject *free, |
| 657 | PyObject *global) |
| 658 | { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 659 | PyObject *name, *v, *local = NULL, *scopes = NULL, *newbound = NULL; |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 660 | PyObject *newglobal = NULL, *newfree = NULL, *allfree = NULL; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 661 | int i, success = 0; |
| 662 | Py_ssize_t pos = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 663 | |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 664 | local = PySet_New(NULL); /* collect new names bound in block */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 665 | if (!local) |
| 666 | goto error; |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 667 | scopes = PyDict_New(); /* collect scopes defined for each name */ |
| 668 | if (!scopes) |
| 669 | goto error; |
| 670 | |
| 671 | /* Allocate new global and bound variable dictionaries. These |
| 672 | dictionaries hold the names visible in nested blocks. For |
| 673 | ClassBlocks, the bound and global names are initialized |
| 674 | before analyzing names, because class bindings aren't |
| 675 | visible in methods. For other blocks, they are initialized |
| 676 | after names are analyzed. |
| 677 | */ |
| 678 | |
| 679 | /* TODO(jhylton): Package these dicts in a struct so that we |
| 680 | can write reasonable helper functions? |
| 681 | */ |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 682 | newglobal = PySet_New(NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 683 | if (!newglobal) |
| 684 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 685 | newfree = PySet_New(NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 686 | if (!newfree) |
| 687 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 688 | newbound = PySet_New(NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 689 | if (!newbound) |
| 690 | goto error; |
| 691 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 692 | /* Class namespace has no effect on names visible in |
| 693 | nested functions, so populate the global and bound |
| 694 | sets to be passed to child blocks before analyzing |
| 695 | this one. |
| 696 | */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 697 | if (ste->ste_type == ClassBlock) { |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 698 | /* Pass down known globals */ |
| 699 | if (!PyNumber_InPlaceOr(newglobal, global)) |
| 700 | goto error; |
| 701 | Py_DECREF(newglobal); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 702 | /* Pass down previously bound symbols */ |
| 703 | if (bound) { |
| 704 | if (!PyNumber_InPlaceOr(newbound, bound)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 705 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 706 | Py_DECREF(newbound); |
| 707 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 708 | } |
| 709 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 710 | while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 711 | long flags = PyLong_AS_LONG(v); |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 712 | if (!analyze_name(ste, scopes, name, flags, |
| 713 | bound, local, free, global)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 714 | goto error; |
| 715 | } |
| 716 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 717 | /* Populate global and bound sets to be passed to children. */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 718 | if (ste->ste_type != ClassBlock) { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 719 | /* Add function locals to bound set */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 720 | if (ste->ste_type == FunctionBlock) { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 721 | if (!PyNumber_InPlaceOr(newbound, local)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 722 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 723 | Py_DECREF(newbound); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 724 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 725 | /* Pass down previously bound symbols */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 726 | if (bound) { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 727 | if (!PyNumber_InPlaceOr(newbound, bound)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 728 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 729 | Py_DECREF(newbound); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 730 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 731 | /* Pass down known globals */ |
| 732 | if (!PyNumber_InPlaceOr(newglobal, global)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 733 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 734 | Py_DECREF(newglobal); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 735 | } |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 736 | else { |
| 737 | /* Special-case __class__ */ |
| 738 | if (!GET_IDENTIFIER(__class__)) |
| 739 | goto error; |
| 740 | assert(PySet_Contains(local, __class__) == 1); |
| 741 | if (PySet_Add(newbound, __class__) < 0) |
| 742 | goto error; |
| 743 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 744 | |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 745 | /* Recursively call analyze_block() on each child block. |
| 746 | |
| 747 | newbound, newglobal now contain the names visible in |
| 748 | nested blocks. The free variables in the children will |
| 749 | be collected in allfree. |
| 750 | */ |
| 751 | allfree = PySet_New(NULL); |
| 752 | if (!allfree) |
| 753 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 754 | for (i = 0; i < PyList_GET_SIZE(ste->ste_children); ++i) { |
| 755 | PyObject *c = PyList_GET_ITEM(ste->ste_children, i); |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 756 | PySTEntryObject* entry; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 757 | assert(c && PySTEntry_Check(c)); |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 758 | entry = (PySTEntryObject*)c; |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 759 | if (!analyze_child_block(entry, newbound, newfree, newglobal, |
| 760 | allfree)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 761 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 762 | /* Check if any children have free variables */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 763 | if (entry->ste_free || entry->ste_child_free) |
| 764 | ste->ste_child_free = 1; |
| 765 | } |
| 766 | |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 767 | if (PyNumber_InPlaceOr(newfree, allfree) < 0) |
| 768 | goto error; |
Benjamin Peterson | 22081a1 | 2009-04-02 01:50:37 +0000 | [diff] [blame] | 769 | Py_DECREF(newfree); |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 770 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 771 | /* Check if any local variables must be converted to cell variables */ |
| 772 | if (ste->ste_type == FunctionBlock && !analyze_cells(scopes, newfree, |
| 773 | NULL)) |
| 774 | goto error; |
| 775 | else if (ste->ste_type == ClassBlock && !analyze_cells(scopes, newfree, |
| 776 | "__class__")) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 777 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 778 | /* Records the results of the analysis in the symbol table entry */ |
| 779 | if (!update_symbols(ste->ste_symbols, scopes, bound, newfree, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 780 | ste->ste_type == ClassBlock)) |
| 781 | goto error; |
| 782 | if (!check_unoptimized(ste)) |
| 783 | goto error; |
| 784 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 785 | if (!PyNumber_InPlaceOr(free, newfree)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 786 | goto error; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 787 | Py_DECREF(free); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 788 | success = 1; |
| 789 | error: |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 790 | Py_XDECREF(scopes); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 791 | Py_XDECREF(local); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 792 | Py_XDECREF(newbound); |
| 793 | Py_XDECREF(newglobal); |
| 794 | Py_XDECREF(newfree); |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 795 | Py_XDECREF(allfree); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 796 | if (!success) |
| 797 | assert(PyErr_Occurred()); |
| 798 | return success; |
| 799 | } |
| 800 | |
| 801 | static int |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 802 | analyze_child_block(PySTEntryObject *entry, PyObject *bound, PyObject *free, |
| 803 | PyObject *global, PyObject* child_free) |
| 804 | { |
| 805 | PyObject *temp_bound = NULL, *temp_global = NULL, *temp_free = NULL; |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 806 | |
| 807 | /* Copy the bound and global dictionaries. |
| 808 | |
| 809 | These dictionary are used by all blocks enclosed by the |
| 810 | current block. The analyze_block() call modifies these |
| 811 | dictionaries. |
| 812 | |
| 813 | */ |
| 814 | temp_bound = PySet_New(bound); |
| 815 | if (!temp_bound) |
| 816 | goto error; |
| 817 | temp_free = PySet_New(free); |
| 818 | if (!temp_free) |
| 819 | goto error; |
| 820 | temp_global = PySet_New(global); |
| 821 | if (!temp_global) |
| 822 | goto error; |
| 823 | |
| 824 | if (!analyze_block(entry, temp_bound, temp_free, temp_global)) |
| 825 | goto error; |
Benjamin Peterson | d1e5493 | 2009-04-02 02:27:20 +0000 | [diff] [blame] | 826 | if (PyNumber_InPlaceOr(child_free, temp_free) < 0) |
| 827 | goto error; |
Benjamin Peterson | 22081a1 | 2009-04-02 01:50:37 +0000 | [diff] [blame] | 828 | Py_DECREF(child_free); |
Benjamin Peterson | d1e5493 | 2009-04-02 02:27:20 +0000 | [diff] [blame] | 829 | Py_DECREF(temp_bound); |
| 830 | Py_DECREF(temp_free); |
| 831 | Py_DECREF(temp_global); |
| 832 | return 1; |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 833 | error: |
| 834 | Py_XDECREF(temp_bound); |
| 835 | Py_XDECREF(temp_free); |
| 836 | Py_XDECREF(temp_global); |
Benjamin Peterson | d1e5493 | 2009-04-02 02:27:20 +0000 | [diff] [blame] | 837 | return 0; |
Jeremy Hylton | f37708e | 2009-03-31 15:26:37 +0000 | [diff] [blame] | 838 | } |
| 839 | |
| 840 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 841 | symtable_analyze(struct symtable *st) |
| 842 | { |
| 843 | PyObject *free, *global; |
| 844 | int r; |
| 845 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 846 | free = PySet_New(NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 847 | if (!free) |
| 848 | return 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 849 | global = PySet_New(NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 850 | if (!global) { |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 851 | Py_DECREF(free); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 852 | return 0; |
| 853 | } |
| 854 | r = analyze_block(st->st_top, NULL, free, global); |
| 855 | Py_DECREF(free); |
| 856 | Py_DECREF(global); |
| 857 | return r; |
| 858 | } |
| 859 | |
| 860 | |
| 861 | static int |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 862 | symtable_warn(struct symtable *st, char *msg, int lineno) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 863 | { |
| 864 | if (PyErr_WarnExplicit(PyExc_SyntaxWarning, msg, st->st_filename, |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 865 | lineno, NULL, NULL) < 0) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 866 | if (PyErr_ExceptionMatches(PyExc_SyntaxWarning)) { |
| 867 | PyErr_SetString(PyExc_SyntaxError, msg); |
| 868 | PyErr_SyntaxLocation(st->st_filename, |
| 869 | st->st_cur->ste_lineno); |
| 870 | } |
| 871 | return 0; |
| 872 | } |
| 873 | return 1; |
| 874 | } |
| 875 | |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 876 | /* symtable_enter_block() gets a reference via ste_new. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 877 | This reference is released when the block is exited, via the DECREF |
| 878 | in symtable_exit_block(). |
| 879 | */ |
| 880 | |
| 881 | static int |
| 882 | symtable_exit_block(struct symtable *st, void *ast) |
| 883 | { |
Martin v. Löwis | d96ee90 | 2006-02-16 14:37:16 +0000 | [diff] [blame] | 884 | Py_ssize_t end; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 885 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 886 | Py_CLEAR(st->st_cur); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 887 | end = PyList_GET_SIZE(st->st_stack) - 1; |
| 888 | if (end >= 0) { |
| 889 | st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, |
| 890 | end); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 891 | if (st->st_cur == NULL) |
| 892 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 893 | Py_INCREF(st->st_cur); |
| 894 | if (PySequence_DelItem(st->st_stack, end) < 0) |
| 895 | return 0; |
| 896 | } |
| 897 | return 1; |
| 898 | } |
| 899 | |
| 900 | static int |
Neal Norwitz | 62c2fac | 2005-10-24 00:30:44 +0000 | [diff] [blame] | 901 | symtable_enter_block(struct symtable *st, identifier name, _Py_block_ty block, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 902 | void *ast, int lineno) |
| 903 | { |
| 904 | PySTEntryObject *prev = NULL; |
| 905 | |
| 906 | if (st->st_cur) { |
| 907 | prev = st->st_cur; |
| 908 | if (PyList_Append(st->st_stack, (PyObject *)st->st_cur) < 0) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 909 | return 0; |
| 910 | } |
| 911 | Py_DECREF(st->st_cur); |
| 912 | } |
Benjamin Peterson | 55e00f2 | 2008-08-17 18:02:44 +0000 | [diff] [blame] | 913 | st->st_cur = ste_new(st, name, block, ast, lineno); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 914 | if (st->st_cur == NULL) |
| 915 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 916 | if (name == GET_IDENTIFIER(top)) |
| 917 | st->st_global = st->st_cur->ste_symbols; |
| 918 | if (prev) { |
| 919 | if (PyList_Append(prev->ste_children, |
| 920 | (PyObject *)st->st_cur) < 0) { |
| 921 | return 0; |
| 922 | } |
| 923 | } |
| 924 | return 1; |
| 925 | } |
| 926 | |
Neal Norwitz | 46b7bda | 2006-01-08 01:06:06 +0000 | [diff] [blame] | 927 | static long |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 928 | symtable_lookup(struct symtable *st, PyObject *name) |
| 929 | { |
| 930 | PyObject *o; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 931 | PyObject *mangled = _Py_Mangle(st->st_private, name); |
| 932 | if (!mangled) |
| 933 | return 0; |
| 934 | o = PyDict_GetItem(st->st_cur->ste_symbols, mangled); |
| 935 | Py_DECREF(mangled); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 936 | if (!o) |
| 937 | return 0; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 938 | return PyLong_AsLong(o); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | static int |
| 942 | symtable_add_def(struct symtable *st, PyObject *name, int flag) |
| 943 | { |
| 944 | PyObject *o; |
| 945 | PyObject *dict; |
Neal Norwitz | 46b7bda | 2006-01-08 01:06:06 +0000 | [diff] [blame] | 946 | long val; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 947 | PyObject *mangled = _Py_Mangle(st->st_private, name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 948 | |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 949 | |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 950 | if (!mangled) |
| 951 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 952 | dict = st->st_cur->ste_symbols; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 953 | if ((o = PyDict_GetItem(dict, mangled))) { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 954 | val = PyLong_AS_LONG(o); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 955 | if ((flag & DEF_PARAM) && (val & DEF_PARAM)) { |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 956 | /* Is it better to use 'mangled' or 'name' here? */ |
Neal Norwitz | a5d16a3 | 2007-08-24 22:53:58 +0000 | [diff] [blame] | 957 | PyErr_Format(PyExc_SyntaxError, DUPLICATE_ARGUMENT, name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 958 | PyErr_SyntaxLocation(st->st_filename, |
| 959 | st->st_cur->ste_lineno); |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 960 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 961 | } |
| 962 | val |= flag; |
| 963 | } else |
| 964 | val = flag; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 965 | o = PyLong_FromLong(val); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 966 | if (o == NULL) |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 967 | goto error; |
| 968 | if (PyDict_SetItem(dict, mangled, o) < 0) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 969 | Py_DECREF(o); |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 970 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 971 | } |
| 972 | Py_DECREF(o); |
| 973 | |
| 974 | if (flag & DEF_PARAM) { |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 975 | if (PyList_Append(st->st_cur->ste_varnames, mangled) < 0) |
| 976 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 977 | } else if (flag & DEF_GLOBAL) { |
| 978 | /* XXX need to update DEF_GLOBAL for other flags too; |
| 979 | perhaps only DEF_FREE_GLOBAL */ |
| 980 | val = flag; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 981 | if ((o = PyDict_GetItem(st->st_global, mangled))) { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 982 | val |= PyLong_AS_LONG(o); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 983 | } |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 984 | o = PyLong_FromLong(val); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 985 | if (o == NULL) |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 986 | goto error; |
| 987 | if (PyDict_SetItem(st->st_global, mangled, o) < 0) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 988 | Py_DECREF(o); |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 989 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 990 | } |
| 991 | Py_DECREF(o); |
| 992 | } |
Neal Norwitz | 4737b23 | 2005-11-19 23:58:29 +0000 | [diff] [blame] | 993 | Py_DECREF(mangled); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 994 | return 1; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 995 | |
| 996 | error: |
| 997 | Py_DECREF(mangled); |
| 998 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 999 | } |
| 1000 | |
| 1001 | /* VISIT, VISIT_SEQ and VIST_SEQ_TAIL take an ASDL type as their second argument. |
| 1002 | They use the ASDL name to synthesize the name of the C type and the visit |
| 1003 | function. |
| 1004 | |
| 1005 | VISIT_SEQ_TAIL permits the start of an ASDL sequence to be skipped, which is |
| 1006 | useful if the first node in the sequence requires special treatment. |
| 1007 | */ |
| 1008 | |
| 1009 | #define VISIT(ST, TYPE, V) \ |
| 1010 | if (!symtable_visit_ ## TYPE((ST), (V))) \ |
| 1011 | return 0; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1012 | |
| 1013 | #define VISIT_IN_BLOCK(ST, TYPE, V, S) \ |
| 1014 | if (!symtable_visit_ ## TYPE((ST), (V))) { \ |
| 1015 | symtable_exit_block((ST), (S)); \ |
| 1016 | return 0; \ |
| 1017 | } |
| 1018 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1019 | #define VISIT_SEQ(ST, TYPE, SEQ) { \ |
| 1020 | int i; \ |
| 1021 | asdl_seq *seq = (SEQ); /* avoid variable capture */ \ |
| 1022 | for (i = 0; i < asdl_seq_LEN(seq); i++) { \ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1023 | TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1024 | if (!symtable_visit_ ## TYPE((ST), elt)) \ |
| 1025 | return 0; \ |
| 1026 | } \ |
| 1027 | } |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1028 | |
| 1029 | #define VISIT_SEQ_IN_BLOCK(ST, TYPE, SEQ, S) { \ |
| 1030 | int i; \ |
| 1031 | asdl_seq *seq = (SEQ); /* avoid variable capture */ \ |
| 1032 | for (i = 0; i < asdl_seq_LEN(seq); i++) { \ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1033 | TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1034 | if (!symtable_visit_ ## TYPE((ST), elt)) { \ |
| 1035 | symtable_exit_block((ST), (S)); \ |
| 1036 | return 0; \ |
| 1037 | } \ |
| 1038 | } \ |
| 1039 | } |
| 1040 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1041 | #define VISIT_SEQ_TAIL(ST, TYPE, SEQ, START) { \ |
| 1042 | int i; \ |
| 1043 | asdl_seq *seq = (SEQ); /* avoid variable capture */ \ |
| 1044 | for (i = (START); i < asdl_seq_LEN(seq); i++) { \ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1045 | TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1046 | if (!symtable_visit_ ## TYPE((ST), elt)) \ |
| 1047 | return 0; \ |
| 1048 | } \ |
| 1049 | } |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1050 | |
| 1051 | #define VISIT_SEQ_TAIL_IN_BLOCK(ST, TYPE, SEQ, START, S) { \ |
| 1052 | int i; \ |
| 1053 | asdl_seq *seq = (SEQ); /* avoid variable capture */ \ |
| 1054 | for (i = (START); i < asdl_seq_LEN(seq); i++) { \ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1055 | TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1056 | if (!symtable_visit_ ## TYPE((ST), elt)) { \ |
| 1057 | symtable_exit_block((ST), (S)); \ |
| 1058 | return 0; \ |
| 1059 | } \ |
| 1060 | } \ |
| 1061 | } |
| 1062 | |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1063 | #define VISIT_KWONLYDEFAULTS(ST, KW_DEFAULTS) { \ |
| 1064 | int i = 0; \ |
| 1065 | asdl_seq *seq = (KW_DEFAULTS); /* avoid variable capture */ \ |
| 1066 | for (i = 0; i < asdl_seq_LEN(seq); i++) { \ |
| 1067 | expr_ty elt = (expr_ty)asdl_seq_GET(seq, i); \ |
| 1068 | if (!elt) continue; /* can be NULL */ \ |
| 1069 | if (!symtable_visit_expr((ST), elt)) \ |
| 1070 | return 0; \ |
| 1071 | } \ |
| 1072 | } |
| 1073 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1074 | static int |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1075 | symtable_new_tmpname(struct symtable *st) |
| 1076 | { |
| 1077 | char tmpname[256]; |
| 1078 | identifier tmp; |
| 1079 | |
| 1080 | PyOS_snprintf(tmpname, sizeof(tmpname), "_[%d]", |
| 1081 | ++st->st_cur->ste_tmpname); |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1082 | tmp = PyUnicode_InternFromString(tmpname); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 1083 | if (!tmp) |
| 1084 | return 0; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1085 | if (!symtable_add_def(st, tmp, DEF_LOCAL)) |
| 1086 | return 0; |
| 1087 | Py_DECREF(tmp); |
| 1088 | return 1; |
| 1089 | } |
| 1090 | |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1091 | |
| 1092 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1093 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1094 | symtable_visit_stmt(struct symtable *st, stmt_ty s) |
| 1095 | { |
| 1096 | switch (s->kind) { |
| 1097 | case FunctionDef_kind: |
| 1098 | if (!symtable_add_def(st, s->v.FunctionDef.name, DEF_LOCAL)) |
| 1099 | return 0; |
| 1100 | if (s->v.FunctionDef.args->defaults) |
| 1101 | VISIT_SEQ(st, expr, s->v.FunctionDef.args->defaults); |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1102 | if (s->v.FunctionDef.args->kw_defaults) |
| 1103 | VISIT_KWONLYDEFAULTS(st, |
| 1104 | s->v.FunctionDef.args->kw_defaults); |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1105 | if (!symtable_visit_annotations(st, s)) |
| 1106 | return 0; |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 1107 | if (s->v.FunctionDef.decorator_list) |
| 1108 | VISIT_SEQ(st, expr, s->v.FunctionDef.decorator_list); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1109 | if (!symtable_enter_block(st, s->v.FunctionDef.name, |
| 1110 | FunctionBlock, (void *)s, s->lineno)) |
| 1111 | return 0; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1112 | VISIT_IN_BLOCK(st, arguments, s->v.FunctionDef.args, s); |
| 1113 | VISIT_SEQ_IN_BLOCK(st, stmt, s->v.FunctionDef.body, s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1114 | if (!symtable_exit_block(st, s)) |
| 1115 | return 0; |
| 1116 | break; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 1117 | case ClassDef_kind: { |
| 1118 | PyObject *tmp; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1119 | if (!symtable_add_def(st, s->v.ClassDef.name, DEF_LOCAL)) |
| 1120 | return 0; |
| 1121 | VISIT_SEQ(st, expr, s->v.ClassDef.bases); |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame] | 1122 | VISIT_SEQ(st, keyword, s->v.ClassDef.keywords); |
| 1123 | if (s->v.ClassDef.starargs) |
| 1124 | VISIT(st, expr, s->v.ClassDef.starargs); |
| 1125 | if (s->v.ClassDef.kwargs) |
| 1126 | VISIT(st, expr, s->v.ClassDef.kwargs); |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 1127 | if (s->v.ClassDef.decorator_list) |
| 1128 | VISIT_SEQ(st, expr, s->v.ClassDef.decorator_list); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1129 | if (!symtable_enter_block(st, s->v.ClassDef.name, ClassBlock, |
| 1130 | (void *)s, s->lineno)) |
| 1131 | return 0; |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1132 | if (!GET_IDENTIFIER(__class__) || |
Benjamin Peterson | dcaf329 | 2009-03-03 00:54:05 +0000 | [diff] [blame] | 1133 | !symtable_add_def(st, __class__, DEF_LOCAL) || |
| 1134 | !GET_IDENTIFIER(__locals__) || |
| 1135 | !symtable_add_def(st, __locals__, DEF_PARAM)) { |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1136 | symtable_exit_block(st, s); |
| 1137 | return 0; |
| 1138 | } |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 1139 | tmp = st->st_private; |
| 1140 | st->st_private = s->v.ClassDef.name; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1141 | VISIT_SEQ_IN_BLOCK(st, stmt, s->v.ClassDef.body, s); |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 1142 | st->st_private = tmp; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1143 | if (!symtable_exit_block(st, s)) |
| 1144 | return 0; |
| 1145 | break; |
Neil Schemenauer | 8b528b2 | 2005-10-23 18:37:42 +0000 | [diff] [blame] | 1146 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1147 | case Return_kind: |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1148 | if (s->v.Return.value) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1149 | VISIT(st, expr, s->v.Return.value); |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1150 | st->st_cur->ste_returns_value = 1; |
| 1151 | if (st->st_cur->ste_generator) { |
| 1152 | PyErr_SetString(PyExc_SyntaxError, |
| 1153 | RETURN_VAL_IN_GENERATOR); |
| 1154 | PyErr_SyntaxLocation(st->st_filename, |
| 1155 | s->lineno); |
| 1156 | return 0; |
| 1157 | } |
| 1158 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1159 | break; |
| 1160 | case Delete_kind: |
| 1161 | VISIT_SEQ(st, expr, s->v.Delete.targets); |
| 1162 | break; |
| 1163 | case Assign_kind: |
| 1164 | VISIT_SEQ(st, expr, s->v.Assign.targets); |
| 1165 | VISIT(st, expr, s->v.Assign.value); |
| 1166 | break; |
| 1167 | case AugAssign_kind: |
| 1168 | VISIT(st, expr, s->v.AugAssign.target); |
| 1169 | VISIT(st, expr, s->v.AugAssign.value); |
| 1170 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1171 | case For_kind: |
| 1172 | VISIT(st, expr, s->v.For.target); |
| 1173 | VISIT(st, expr, s->v.For.iter); |
| 1174 | VISIT_SEQ(st, stmt, s->v.For.body); |
| 1175 | if (s->v.For.orelse) |
| 1176 | VISIT_SEQ(st, stmt, s->v.For.orelse); |
| 1177 | break; |
| 1178 | case While_kind: |
| 1179 | VISIT(st, expr, s->v.While.test); |
| 1180 | VISIT_SEQ(st, stmt, s->v.While.body); |
| 1181 | if (s->v.While.orelse) |
| 1182 | VISIT_SEQ(st, stmt, s->v.While.orelse); |
| 1183 | break; |
| 1184 | case If_kind: |
| 1185 | /* XXX if 0: and lookup_yield() hacks */ |
| 1186 | VISIT(st, expr, s->v.If.test); |
| 1187 | VISIT_SEQ(st, stmt, s->v.If.body); |
| 1188 | if (s->v.If.orelse) |
| 1189 | VISIT_SEQ(st, stmt, s->v.If.orelse); |
| 1190 | break; |
| 1191 | case Raise_kind: |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 1192 | if (s->v.Raise.exc) { |
| 1193 | VISIT(st, expr, s->v.Raise.exc); |
| 1194 | if (s->v.Raise.cause) { |
| 1195 | VISIT(st, expr, s->v.Raise.cause); |
| 1196 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1197 | } |
| 1198 | break; |
| 1199 | case TryExcept_kind: |
| 1200 | VISIT_SEQ(st, stmt, s->v.TryExcept.body); |
| 1201 | VISIT_SEQ(st, stmt, s->v.TryExcept.orelse); |
| 1202 | VISIT_SEQ(st, excepthandler, s->v.TryExcept.handlers); |
| 1203 | break; |
| 1204 | case TryFinally_kind: |
| 1205 | VISIT_SEQ(st, stmt, s->v.TryFinally.body); |
| 1206 | VISIT_SEQ(st, stmt, s->v.TryFinally.finalbody); |
| 1207 | break; |
| 1208 | case Assert_kind: |
| 1209 | VISIT(st, expr, s->v.Assert.test); |
| 1210 | if (s->v.Assert.msg) |
| 1211 | VISIT(st, expr, s->v.Assert.msg); |
| 1212 | break; |
| 1213 | case Import_kind: |
| 1214 | VISIT_SEQ(st, alias, s->v.Import.names); |
| 1215 | /* XXX Don't have the lineno available inside |
| 1216 | visit_alias */ |
| 1217 | if (st->st_cur->ste_unoptimized && !st->st_cur->ste_opt_lineno) |
| 1218 | st->st_cur->ste_opt_lineno = s->lineno; |
| 1219 | break; |
| 1220 | case ImportFrom_kind: |
| 1221 | VISIT_SEQ(st, alias, s->v.ImportFrom.names); |
| 1222 | /* XXX Don't have the lineno available inside |
| 1223 | visit_alias */ |
| 1224 | if (st->st_cur->ste_unoptimized && !st->st_cur->ste_opt_lineno) |
| 1225 | st->st_cur->ste_opt_lineno = s->lineno; |
| 1226 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1227 | case Global_kind: { |
| 1228 | int i; |
| 1229 | asdl_seq *seq = s->v.Global.names; |
| 1230 | for (i = 0; i < asdl_seq_LEN(seq); i++) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1231 | identifier name = (identifier)asdl_seq_GET(seq, i); |
Marc-André Lemburg | 4cc0f24 | 2008-08-07 18:54:33 +0000 | [diff] [blame] | 1232 | char *c_name = _PyUnicode_AsString(name); |
Neal Norwitz | 46b7bda | 2006-01-08 01:06:06 +0000 | [diff] [blame] | 1233 | long cur = symtable_lookup(st, name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1234 | if (cur < 0) |
| 1235 | return 0; |
| 1236 | if (cur & (DEF_LOCAL | USE)) { |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1237 | char buf[256]; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1238 | if (cur & DEF_LOCAL) |
| 1239 | PyOS_snprintf(buf, sizeof(buf), |
| 1240 | GLOBAL_AFTER_ASSIGN, |
| 1241 | c_name); |
| 1242 | else |
| 1243 | PyOS_snprintf(buf, sizeof(buf), |
| 1244 | GLOBAL_AFTER_USE, |
| 1245 | c_name); |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 1246 | if (!symtable_warn(st, buf, s->lineno)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1247 | return 0; |
| 1248 | } |
| 1249 | if (!symtable_add_def(st, name, DEF_GLOBAL)) |
| 1250 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1251 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1252 | break; |
| 1253 | } |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 1254 | case Nonlocal_kind: { |
| 1255 | int i; |
| 1256 | asdl_seq *seq = s->v.Nonlocal.names; |
| 1257 | for (i = 0; i < asdl_seq_LEN(seq); i++) { |
| 1258 | identifier name = (identifier)asdl_seq_GET(seq, i); |
Marc-André Lemburg | 4cc0f24 | 2008-08-07 18:54:33 +0000 | [diff] [blame] | 1259 | char *c_name = _PyUnicode_AsString(name); |
Jeremy Hylton | 81e9502 | 2007-02-27 06:50:52 +0000 | [diff] [blame] | 1260 | long cur = symtable_lookup(st, name); |
| 1261 | if (cur < 0) |
| 1262 | return 0; |
| 1263 | if (cur & (DEF_LOCAL | USE)) { |
| 1264 | char buf[256]; |
| 1265 | if (cur & DEF_LOCAL) |
| 1266 | PyOS_snprintf(buf, sizeof(buf), |
| 1267 | NONLOCAL_AFTER_ASSIGN, |
| 1268 | c_name); |
| 1269 | else |
| 1270 | PyOS_snprintf(buf, sizeof(buf), |
| 1271 | NONLOCAL_AFTER_USE, |
| 1272 | c_name); |
| 1273 | if (!symtable_warn(st, buf, s->lineno)) |
| 1274 | return 0; |
| 1275 | } |
| 1276 | if (!symtable_add_def(st, name, DEF_NONLOCAL)) |
| 1277 | return 0; |
| 1278 | } |
| 1279 | break; |
| 1280 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1281 | case Expr_kind: |
| 1282 | VISIT(st, expr, s->v.Expr.value); |
| 1283 | break; |
| 1284 | case Pass_kind: |
| 1285 | case Break_kind: |
| 1286 | case Continue_kind: |
| 1287 | /* nothing to do here */ |
| 1288 | break; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1289 | case With_kind: |
| 1290 | if (!symtable_new_tmpname(st)) |
| 1291 | return 0; |
| 1292 | VISIT(st, expr, s->v.With.context_expr); |
| 1293 | if (s->v.With.optional_vars) { |
| 1294 | if (!symtable_new_tmpname(st)) |
| 1295 | return 0; |
| 1296 | VISIT(st, expr, s->v.With.optional_vars); |
| 1297 | } |
| 1298 | VISIT_SEQ(st, stmt, s->v.With.body); |
| 1299 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1300 | } |
| 1301 | return 1; |
| 1302 | } |
| 1303 | |
| 1304 | static int |
| 1305 | symtable_visit_expr(struct symtable *st, expr_ty e) |
| 1306 | { |
| 1307 | switch (e->kind) { |
| 1308 | case BoolOp_kind: |
| 1309 | VISIT_SEQ(st, expr, e->v.BoolOp.values); |
| 1310 | break; |
| 1311 | case BinOp_kind: |
| 1312 | VISIT(st, expr, e->v.BinOp.left); |
| 1313 | VISIT(st, expr, e->v.BinOp.right); |
| 1314 | break; |
| 1315 | case UnaryOp_kind: |
| 1316 | VISIT(st, expr, e->v.UnaryOp.operand); |
| 1317 | break; |
| 1318 | case Lambda_kind: { |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 1319 | if (!GET_IDENTIFIER(lambda) || |
| 1320 | !symtable_add_def(st, lambda, DEF_LOCAL)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1321 | return 0; |
| 1322 | if (e->v.Lambda.args->defaults) |
| 1323 | VISIT_SEQ(st, expr, e->v.Lambda.args->defaults); |
| 1324 | /* XXX how to get line numbers for expressions */ |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 1325 | if (!symtable_enter_block(st, lambda, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1326 | FunctionBlock, (void *)e, 0)) |
| 1327 | return 0; |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1328 | VISIT_IN_BLOCK(st, arguments, e->v.Lambda.args, (void*)e); |
| 1329 | VISIT_IN_BLOCK(st, expr, e->v.Lambda.body, (void*)e); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1330 | if (!symtable_exit_block(st, (void *)e)) |
| 1331 | return 0; |
| 1332 | break; |
| 1333 | } |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1334 | case IfExp_kind: |
| 1335 | VISIT(st, expr, e->v.IfExp.test); |
| 1336 | VISIT(st, expr, e->v.IfExp.body); |
| 1337 | VISIT(st, expr, e->v.IfExp.orelse); |
| 1338 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1339 | case Dict_kind: |
| 1340 | VISIT_SEQ(st, expr, e->v.Dict.keys); |
| 1341 | VISIT_SEQ(st, expr, e->v.Dict.values); |
| 1342 | break; |
Georg Brandl | 17ab9a0 | 2006-08-28 16:38:22 +0000 | [diff] [blame] | 1343 | case Set_kind: |
| 1344 | VISIT_SEQ(st, expr, e->v.Set.elts); |
| 1345 | break; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1346 | case GeneratorExp_kind: |
| 1347 | if (!symtable_visit_genexp(st, e)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1348 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1349 | break; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1350 | case ListComp_kind: |
| 1351 | if (!symtable_visit_listcomp(st, e)) |
| 1352 | return 0; |
| 1353 | break; |
| 1354 | case SetComp_kind: |
| 1355 | if (!symtable_visit_setcomp(st, e)) |
| 1356 | return 0; |
| 1357 | break; |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 1358 | case DictComp_kind: |
| 1359 | if (!symtable_visit_dictcomp(st, e)) |
| 1360 | return 0; |
| 1361 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1362 | case Yield_kind: |
| 1363 | if (e->v.Yield.value) |
| 1364 | VISIT(st, expr, e->v.Yield.value); |
| 1365 | st->st_cur->ste_generator = 1; |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 1366 | if (st->st_cur->ste_returns_value) { |
| 1367 | PyErr_SetString(PyExc_SyntaxError, |
| 1368 | RETURN_VAL_IN_GENERATOR); |
| 1369 | PyErr_SyntaxLocation(st->st_filename, |
| 1370 | e->lineno); |
| 1371 | return 0; |
| 1372 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1373 | break; |
| 1374 | case Compare_kind: |
| 1375 | VISIT(st, expr, e->v.Compare.left); |
| 1376 | VISIT_SEQ(st, expr, e->v.Compare.comparators); |
| 1377 | break; |
| 1378 | case Call_kind: |
| 1379 | VISIT(st, expr, e->v.Call.func); |
| 1380 | VISIT_SEQ(st, expr, e->v.Call.args); |
| 1381 | VISIT_SEQ(st, keyword, e->v.Call.keywords); |
| 1382 | if (e->v.Call.starargs) |
| 1383 | VISIT(st, expr, e->v.Call.starargs); |
| 1384 | if (e->v.Call.kwargs) |
| 1385 | VISIT(st, expr, e->v.Call.kwargs); |
| 1386 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1387 | case Num_kind: |
| 1388 | case Str_kind: |
Georg Brandl | ee91be4 | 2007-02-24 19:41:35 +0000 | [diff] [blame] | 1389 | case Bytes_kind: |
| 1390 | case Ellipsis_kind: |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1391 | /* Nothing to do here. */ |
| 1392 | break; |
| 1393 | /* The following exprs can be assignment targets. */ |
| 1394 | case Attribute_kind: |
| 1395 | VISIT(st, expr, e->v.Attribute.value); |
| 1396 | break; |
| 1397 | case Subscript_kind: |
| 1398 | VISIT(st, expr, e->v.Subscript.value); |
| 1399 | VISIT(st, slice, e->v.Subscript.slice); |
| 1400 | break; |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 1401 | case Starred_kind: |
| 1402 | VISIT(st, expr, e->v.Starred.value); |
| 1403 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1404 | case Name_kind: |
| 1405 | if (!symtable_add_def(st, e->v.Name.id, |
| 1406 | e->v.Name.ctx == Load ? USE : DEF_LOCAL)) |
| 1407 | return 0; |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1408 | /* Special-case super: it counts as a use of __class__ */ |
| 1409 | if (e->v.Name.ctx == Load && |
| 1410 | st->st_cur->ste_type == FunctionBlock && |
| 1411 | !PyUnicode_CompareWithASCIIString(e->v.Name.id, "super")) { |
| 1412 | if (!GET_IDENTIFIER(__class__) || |
| 1413 | !symtable_add_def(st, __class__, USE)) |
| 1414 | return 0; |
| 1415 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1416 | break; |
| 1417 | /* child nodes of List and Tuple will have expr_context set */ |
| 1418 | case List_kind: |
| 1419 | VISIT_SEQ(st, expr, e->v.List.elts); |
| 1420 | break; |
| 1421 | case Tuple_kind: |
| 1422 | VISIT_SEQ(st, expr, e->v.Tuple.elts); |
| 1423 | break; |
| 1424 | } |
| 1425 | return 1; |
| 1426 | } |
| 1427 | |
| 1428 | static int |
| 1429 | symtable_implicit_arg(struct symtable *st, int pos) |
| 1430 | { |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1431 | PyObject *id = PyUnicode_FromFormat(".%d", pos); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1432 | if (id == NULL) |
| 1433 | return 0; |
| 1434 | if (!symtable_add_def(st, id, DEF_PARAM)) { |
| 1435 | Py_DECREF(id); |
| 1436 | return 0; |
| 1437 | } |
| 1438 | Py_DECREF(id); |
| 1439 | return 1; |
| 1440 | } |
| 1441 | |
| 1442 | static int |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1443 | symtable_visit_params(struct symtable *st, asdl_seq *args) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1444 | { |
Neal Norwitz | daf595f | 2006-01-07 21:24:54 +0000 | [diff] [blame] | 1445 | int i; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1446 | |
| 1447 | if (!args) |
| 1448 | return -1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1449 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1450 | for (i = 0; i < asdl_seq_LEN(args); i++) { |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1451 | arg_ty arg = (arg_ty)asdl_seq_GET(args, i); |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1452 | if (!symtable_add_def(st, arg->arg, DEF_PARAM)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1453 | return 0; |
| 1454 | } |
| 1455 | |
| 1456 | return 1; |
| 1457 | } |
| 1458 | |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1459 | static int |
| 1460 | symtable_visit_argannotations(struct symtable *st, asdl_seq *args) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1461 | { |
| 1462 | int i; |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1463 | |
| 1464 | if (!args) |
| 1465 | return -1; |
| 1466 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1467 | for (i = 0; i < asdl_seq_LEN(args); i++) { |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1468 | arg_ty arg = (arg_ty)asdl_seq_GET(args, i); |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1469 | if (arg->annotation) |
| 1470 | VISIT(st, expr, arg->annotation); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1471 | } |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1472 | |
| 1473 | return 1; |
| 1474 | } |
| 1475 | |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1476 | static int |
| 1477 | symtable_visit_annotations(struct symtable *st, stmt_ty s) |
| 1478 | { |
| 1479 | arguments_ty a = s->v.FunctionDef.args; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1480 | |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1481 | if (a->args && !symtable_visit_argannotations(st, a->args)) |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1482 | return 0; |
| 1483 | if (a->varargannotation) |
| 1484 | VISIT(st, expr, a->varargannotation); |
| 1485 | if (a->kwargannotation) |
| 1486 | VISIT(st, expr, a->kwargannotation); |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1487 | if (a->kwonlyargs && !symtable_visit_argannotations(st, a->kwonlyargs)) |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1488 | return 0; |
| 1489 | if (s->v.FunctionDef.returns) |
| 1490 | VISIT(st, expr, s->v.FunctionDef.returns); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1491 | return 1; |
| 1492 | } |
| 1493 | |
| 1494 | static int |
| 1495 | symtable_visit_arguments(struct symtable *st, arguments_ty a) |
| 1496 | { |
| 1497 | /* skip default arguments inside function block |
| 1498 | XXX should ast be different? |
| 1499 | */ |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1500 | if (a->args && !symtable_visit_params(st, a->args)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1501 | return 0; |
Guido van Rossum | 1bc535d | 2007-05-15 18:46:22 +0000 | [diff] [blame] | 1502 | if (a->kwonlyargs && !symtable_visit_params(st, a->kwonlyargs)) |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1503 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1504 | if (a->vararg) { |
| 1505 | if (!symtable_add_def(st, a->vararg, DEF_PARAM)) |
| 1506 | return 0; |
| 1507 | st->st_cur->ste_varargs = 1; |
| 1508 | } |
| 1509 | if (a->kwarg) { |
| 1510 | if (!symtable_add_def(st, a->kwarg, DEF_PARAM)) |
| 1511 | return 0; |
| 1512 | st->st_cur->ste_varkeywords = 1; |
| 1513 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1514 | return 1; |
| 1515 | } |
| 1516 | |
| 1517 | |
| 1518 | static int |
| 1519 | symtable_visit_excepthandler(struct symtable *st, excepthandler_ty eh) |
| 1520 | { |
Neal Norwitz | ad74aa8 | 2008-03-31 05:14:30 +0000 | [diff] [blame] | 1521 | if (eh->v.ExceptHandler.type) |
| 1522 | VISIT(st, expr, eh->v.ExceptHandler.type); |
| 1523 | if (eh->v.ExceptHandler.name) |
| 1524 | if (!symtable_add_def(st, eh->v.ExceptHandler.name, DEF_LOCAL)) |
Guido van Rossum | 16be03e | 2007-01-10 18:51:35 +0000 | [diff] [blame] | 1525 | return 0; |
Neal Norwitz | ad74aa8 | 2008-03-31 05:14:30 +0000 | [diff] [blame] | 1526 | VISIT_SEQ(st, stmt, eh->v.ExceptHandler.body); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1527 | return 1; |
| 1528 | } |
| 1529 | |
| 1530 | |
| 1531 | static int |
| 1532 | symtable_visit_alias(struct symtable *st, alias_ty a) |
| 1533 | { |
| 1534 | /* Compute store_name, the name actually bound by the import |
| 1535 | operation. It is diferent than a->name when a->name is a |
| 1536 | dotted package name (e.g. spam.eggs) |
| 1537 | */ |
| 1538 | PyObject *store_name; |
| 1539 | PyObject *name = (a->asname == NULL) ? a->name : a->asname; |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1540 | const Py_UNICODE *base = PyUnicode_AS_UNICODE(name); |
| 1541 | Py_UNICODE *dot = Py_UNICODE_strchr(base, '.'); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 1542 | if (dot) { |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1543 | store_name = PyUnicode_FromUnicode(base, dot - base); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 1544 | if (!store_name) |
| 1545 | return 0; |
| 1546 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1547 | else { |
| 1548 | store_name = name; |
| 1549 | Py_INCREF(store_name); |
| 1550 | } |
Martin v. Löwis | 5b22213 | 2007-06-10 09:51:05 +0000 | [diff] [blame] | 1551 | if (PyUnicode_CompareWithASCIIString(name, "*")) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1552 | int r = symtable_add_def(st, store_name, DEF_IMPORT); |
| 1553 | Py_DECREF(store_name); |
| 1554 | return r; |
| 1555 | } |
| 1556 | else { |
| 1557 | if (st->st_cur->ste_type != ModuleBlock) { |
Neal Norwitz | 5d0ad50 | 2005-12-19 04:27:42 +0000 | [diff] [blame] | 1558 | int lineno = st->st_cur->ste_lineno; |
Guido van Rossum | 33d2689 | 2007-08-05 15:29:28 +0000 | [diff] [blame] | 1559 | PyErr_SetString(PyExc_SyntaxError, IMPORT_STAR_WARNING); |
| 1560 | PyErr_SyntaxLocation(st->st_filename, lineno); |
| 1561 | Py_DECREF(store_name); |
| 1562 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1563 | } |
| 1564 | st->st_cur->ste_unoptimized |= OPT_IMPORT_STAR; |
Neal Norwitz | 4737b23 | 2005-11-19 23:58:29 +0000 | [diff] [blame] | 1565 | Py_DECREF(store_name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1566 | return 1; |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | |
| 1571 | static int |
| 1572 | symtable_visit_comprehension(struct symtable *st, comprehension_ty lc) |
| 1573 | { |
| 1574 | VISIT(st, expr, lc->target); |
| 1575 | VISIT(st, expr, lc->iter); |
| 1576 | VISIT_SEQ(st, expr, lc->ifs); |
| 1577 | return 1; |
| 1578 | } |
| 1579 | |
| 1580 | |
| 1581 | static int |
| 1582 | symtable_visit_keyword(struct symtable *st, keyword_ty k) |
| 1583 | { |
| 1584 | VISIT(st, expr, k->value); |
| 1585 | return 1; |
| 1586 | } |
| 1587 | |
| 1588 | |
| 1589 | static int |
| 1590 | symtable_visit_slice(struct symtable *st, slice_ty s) |
| 1591 | { |
| 1592 | switch (s->kind) { |
| 1593 | case Slice_kind: |
| 1594 | if (s->v.Slice.lower) |
| 1595 | VISIT(st, expr, s->v.Slice.lower) |
| 1596 | if (s->v.Slice.upper) |
| 1597 | VISIT(st, expr, s->v.Slice.upper) |
| 1598 | if (s->v.Slice.step) |
| 1599 | VISIT(st, expr, s->v.Slice.step) |
| 1600 | break; |
| 1601 | case ExtSlice_kind: |
| 1602 | VISIT_SEQ(st, slice, s->v.ExtSlice.dims) |
| 1603 | break; |
| 1604 | case Index_kind: |
| 1605 | VISIT(st, expr, s->v.Index.value) |
| 1606 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1607 | } |
| 1608 | return 1; |
| 1609 | } |
| 1610 | |
| 1611 | static int |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1612 | symtable_handle_comprehension(struct symtable *st, expr_ty e, |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 1613 | identifier scope_name, asdl_seq *generators, |
| 1614 | expr_ty elt, expr_ty value) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1615 | { |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1616 | int is_generator = (e->kind == GeneratorExp_kind); |
| 1617 | int needs_tmp = !is_generator; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1618 | comprehension_ty outermost = ((comprehension_ty) |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1619 | asdl_seq_GET(generators, 0)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1620 | /* Outermost iterator is evaluated in current scope */ |
| 1621 | VISIT(st, expr, outermost->iter); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1622 | /* Create comprehension scope for the rest */ |
| 1623 | if (!scope_name || |
| 1624 | !symtable_enter_block(st, scope_name, FunctionBlock, (void *)e, 0)) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1625 | return 0; |
| 1626 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1627 | st->st_cur->ste_generator = is_generator; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1628 | /* Outermost iter is received as an argument */ |
| 1629 | if (!symtable_implicit_arg(st, 0)) { |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1630 | symtable_exit_block(st, (void *)e); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1631 | return 0; |
| 1632 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1633 | /* Allocate temporary name if needed */ |
| 1634 | if (needs_tmp && !symtable_new_tmpname(st)) { |
| 1635 | symtable_exit_block(st, (void *)e); |
| 1636 | return 0; |
| 1637 | } |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1638 | VISIT_IN_BLOCK(st, expr, outermost->target, (void*)e); |
| 1639 | VISIT_SEQ_IN_BLOCK(st, expr, outermost->ifs, (void*)e); |
| 1640 | VISIT_SEQ_TAIL_IN_BLOCK(st, comprehension, |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1641 | generators, 1, (void*)e); |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 1642 | if (value) |
| 1643 | VISIT_IN_BLOCK(st, expr, value, (void*)e); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1644 | VISIT_IN_BLOCK(st, expr, elt, (void*)e); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 1645 | return symtable_exit_block(st, (void *)e); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1646 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1647 | |
| 1648 | static int |
| 1649 | symtable_visit_genexp(struct symtable *st, expr_ty e) |
| 1650 | { |
| 1651 | return symtable_handle_comprehension(st, e, GET_IDENTIFIER(genexpr), |
| 1652 | e->v.GeneratorExp.generators, |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 1653 | e->v.GeneratorExp.elt, NULL); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1654 | } |
| 1655 | |
| 1656 | static int |
| 1657 | symtable_visit_listcomp(struct symtable *st, expr_ty e) |
| 1658 | { |
| 1659 | return symtable_handle_comprehension(st, e, GET_IDENTIFIER(listcomp), |
| 1660 | e->v.ListComp.generators, |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 1661 | e->v.ListComp.elt, NULL); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1662 | } |
| 1663 | |
| 1664 | static int |
| 1665 | symtable_visit_setcomp(struct symtable *st, expr_ty e) |
| 1666 | { |
| 1667 | return symtable_handle_comprehension(st, e, GET_IDENTIFIER(setcomp), |
| 1668 | e->v.SetComp.generators, |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 1669 | e->v.SetComp.elt, NULL); |
| 1670 | } |
| 1671 | |
| 1672 | static int |
| 1673 | symtable_visit_dictcomp(struct symtable *st, expr_ty e) |
| 1674 | { |
| 1675 | return symtable_handle_comprehension(st, e, GET_IDENTIFIER(dictcomp), |
| 1676 | e->v.DictComp.generators, |
| 1677 | e->v.DictComp.key, |
| 1678 | e->v.DictComp.value); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 1679 | } |