Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file includes functions to transform a concrete syntax tree (CST) to |
| 3 | * an abstract syntax tree (AST). The main function is PyAST_FromNode(). |
| 4 | * |
| 5 | */ |
| 6 | #include "Python.h" |
| 7 | #include "Python-ast.h" |
| 8 | #include "grammar.h" |
| 9 | #include "node.h" |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 10 | #include "pyarena.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 11 | #include "ast.h" |
| 12 | #include "token.h" |
| 13 | #include "parsetok.h" |
| 14 | #include "graminit.h" |
| 15 | |
| 16 | #include <assert.h> |
| 17 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 18 | /* XXX TO DO |
| 19 | - re-indent this file (should be done) |
| 20 | - internal error checking (freeing memory, etc.) |
| 21 | - syntax errors |
| 22 | */ |
| 23 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 24 | /* Data structure used internally */ |
| 25 | struct compiling { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 26 | char *c_encoding; /* source encoding */ |
| 27 | PyArena *c_arena; /* arena for allocating memeory */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | static asdl_seq *seq_for_testlist(struct compiling *, const node *); |
| 31 | static expr_ty ast_for_expr(struct compiling *, const node *); |
| 32 | static stmt_ty ast_for_stmt(struct compiling *, const node *); |
| 33 | static asdl_seq *ast_for_suite(struct compiling *, const node *); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 34 | static asdl_seq *ast_for_exprlist(struct compiling *, const node *, expr_context_ty); |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 35 | static expr_ty ast_for_testlist(struct compiling *, const node *); |
| 36 | static expr_ty ast_for_testlist_gexp(struct compiling *, const node *); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 37 | |
| 38 | /* Note different signature for ast_for_call */ |
| 39 | static expr_ty ast_for_call(struct compiling *, const node *, expr_ty); |
| 40 | |
| 41 | static PyObject *parsenumber(const char *); |
| 42 | static PyObject *parsestr(const char *s, const char *encoding); |
| 43 | static PyObject *parsestrplus(struct compiling *, const node *n); |
| 44 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 45 | #ifndef LINENO |
| 46 | #define LINENO(n) ((n)->n_lineno) |
| 47 | #endif |
| 48 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 49 | static identifier |
| 50 | new_identifier(const char* n, PyArena *arena) { |
| 51 | PyObject* id = PyString_InternFromString(n); |
| 52 | PyArena_AddPyObject(arena, id); |
| 53 | return id; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 56 | #define NEW_IDENTIFIER(n) new_identifier(STR(n), c->c_arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 57 | |
| 58 | /* This routine provides an invalid object for the syntax error. |
| 59 | The outermost routine must unpack this error and create the |
| 60 | proper object. We do this so that we don't have to pass |
| 61 | the filename to everything function. |
| 62 | |
| 63 | XXX Maybe we should just pass the filename... |
| 64 | */ |
| 65 | |
| 66 | static int |
| 67 | ast_error(const node *n, const char *errstr) |
| 68 | { |
| 69 | PyObject *u = Py_BuildValue("zi", errstr, LINENO(n)); |
| 70 | if (!u) |
| 71 | return 0; |
| 72 | PyErr_SetObject(PyExc_SyntaxError, u); |
| 73 | Py_DECREF(u); |
| 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | static void |
| 78 | ast_error_finish(const char *filename) |
| 79 | { |
| 80 | PyObject *type, *value, *tback, *errstr, *loc, *tmp; |
Neal Norwitz | 46b7bda | 2006-01-08 01:06:06 +0000 | [diff] [blame] | 81 | long lineno; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 82 | |
| 83 | assert(PyErr_Occurred()); |
| 84 | if (!PyErr_ExceptionMatches(PyExc_SyntaxError)) |
| 85 | return; |
| 86 | |
| 87 | PyErr_Fetch(&type, &value, &tback); |
| 88 | errstr = PyTuple_GetItem(value, 0); |
| 89 | if (!errstr) |
| 90 | return; |
| 91 | Py_INCREF(errstr); |
| 92 | lineno = PyInt_AsLong(PyTuple_GetItem(value, 1)); |
Neal Norwitz | 8ad64aa | 2005-12-11 20:08:33 +0000 | [diff] [blame] | 93 | if (lineno == -1) { |
| 94 | Py_DECREF(errstr); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 95 | return; |
Neal Norwitz | 8ad64aa | 2005-12-11 20:08:33 +0000 | [diff] [blame] | 96 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 97 | Py_DECREF(value); |
| 98 | |
| 99 | loc = PyErr_ProgramText(filename, lineno); |
| 100 | if (!loc) { |
| 101 | Py_INCREF(Py_None); |
| 102 | loc = Py_None; |
| 103 | } |
Neal Norwitz | 46b7bda | 2006-01-08 01:06:06 +0000 | [diff] [blame] | 104 | tmp = Py_BuildValue("(zlOO)", filename, lineno, Py_None, loc); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 105 | Py_DECREF(loc); |
Neal Norwitz | 8ad64aa | 2005-12-11 20:08:33 +0000 | [diff] [blame] | 106 | if (!tmp) { |
| 107 | Py_DECREF(errstr); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 108 | return; |
Neal Norwitz | 8ad64aa | 2005-12-11 20:08:33 +0000 | [diff] [blame] | 109 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 110 | value = PyTuple_Pack(2, errstr, tmp); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 111 | Py_DECREF(errstr); |
| 112 | Py_DECREF(tmp); |
| 113 | if (!value) |
| 114 | return; |
| 115 | PyErr_Restore(type, value, tback); |
| 116 | } |
| 117 | |
| 118 | /* num_stmts() returns number of contained statements. |
| 119 | |
| 120 | Use this routine to determine how big a sequence is needed for |
| 121 | the statements in a parse tree. Its raison d'etre is this bit of |
| 122 | grammar: |
| 123 | |
| 124 | stmt: simple_stmt | compound_stmt |
| 125 | simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE |
| 126 | |
| 127 | A simple_stmt can contain multiple small_stmt elements joined |
| 128 | by semicolons. If the arg is a simple_stmt, the number of |
| 129 | small_stmt elements is returned. |
| 130 | */ |
| 131 | |
| 132 | static int |
| 133 | num_stmts(const node *n) |
| 134 | { |
| 135 | int i, l; |
| 136 | node *ch; |
| 137 | |
| 138 | switch (TYPE(n)) { |
| 139 | case single_input: |
| 140 | if (TYPE(CHILD(n, 0)) == NEWLINE) |
| 141 | return 0; |
| 142 | else |
| 143 | return num_stmts(CHILD(n, 0)); |
| 144 | case file_input: |
| 145 | l = 0; |
| 146 | for (i = 0; i < NCH(n); i++) { |
| 147 | ch = CHILD(n, i); |
| 148 | if (TYPE(ch) == stmt) |
| 149 | l += num_stmts(ch); |
| 150 | } |
| 151 | return l; |
| 152 | case stmt: |
| 153 | return num_stmts(CHILD(n, 0)); |
| 154 | case compound_stmt: |
| 155 | return 1; |
| 156 | case simple_stmt: |
| 157 | return NCH(n) / 2; /* Divide by 2 to remove count of semi-colons */ |
| 158 | case suite: |
| 159 | if (NCH(n) == 1) |
| 160 | return num_stmts(CHILD(n, 0)); |
| 161 | else { |
| 162 | l = 0; |
| 163 | for (i = 2; i < (NCH(n) - 1); i++) |
| 164 | l += num_stmts(CHILD(n, i)); |
| 165 | return l; |
| 166 | } |
| 167 | default: { |
| 168 | char buf[128]; |
| 169 | |
| 170 | sprintf(buf, "Non-statement found: %d %d\n", |
| 171 | TYPE(n), NCH(n)); |
| 172 | Py_FatalError(buf); |
| 173 | } |
| 174 | } |
| 175 | assert(0); |
| 176 | return 0; |
| 177 | } |
| 178 | |
| 179 | /* Transform the CST rooted at node * to the appropriate AST |
| 180 | */ |
| 181 | |
| 182 | mod_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 183 | PyAST_FromNode(const node *n, PyCompilerFlags *flags, const char *filename, |
| 184 | PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 185 | { |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 186 | int i, j, k, num; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 187 | asdl_seq *stmts = NULL; |
| 188 | stmt_ty s; |
| 189 | node *ch; |
| 190 | struct compiling c; |
| 191 | |
| 192 | if (flags && flags->cf_flags & PyCF_SOURCE_IS_UTF8) { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 193 | c.c_encoding = "utf-8"; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 194 | if (TYPE(n) == encoding_decl) { |
| 195 | ast_error(n, "encoding declaration in Unicode string"); |
| 196 | goto error; |
| 197 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 198 | } else if (TYPE(n) == encoding_decl) { |
| 199 | c.c_encoding = STR(n); |
| 200 | n = CHILD(n, 0); |
| 201 | } else { |
| 202 | c.c_encoding = NULL; |
| 203 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 204 | c.c_arena = arena; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 205 | |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 206 | k = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 207 | switch (TYPE(n)) { |
| 208 | case file_input: |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 209 | stmts = asdl_seq_new(num_stmts(n), arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 210 | if (!stmts) |
| 211 | return NULL; |
| 212 | for (i = 0; i < NCH(n) - 1; i++) { |
| 213 | ch = CHILD(n, i); |
| 214 | if (TYPE(ch) == NEWLINE) |
| 215 | continue; |
| 216 | REQ(ch, stmt); |
| 217 | num = num_stmts(ch); |
| 218 | if (num == 1) { |
| 219 | s = ast_for_stmt(&c, ch); |
| 220 | if (!s) |
| 221 | goto error; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 222 | asdl_seq_SET(stmts, k++, s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 223 | } |
| 224 | else { |
| 225 | ch = CHILD(ch, 0); |
| 226 | REQ(ch, simple_stmt); |
| 227 | for (j = 0; j < num; j++) { |
| 228 | s = ast_for_stmt(&c, CHILD(ch, j * 2)); |
| 229 | if (!s) |
| 230 | goto error; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 231 | asdl_seq_SET(stmts, k++, s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 232 | } |
| 233 | } |
| 234 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 235 | return Module(stmts, arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 236 | case eval_input: { |
| 237 | expr_ty testlist_ast; |
| 238 | |
| 239 | /* XXX Why not gen_for here? */ |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 240 | testlist_ast = ast_for_testlist(&c, CHILD(n, 0)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 241 | if (!testlist_ast) |
| 242 | goto error; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 243 | return Expression(testlist_ast, arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 244 | } |
| 245 | case single_input: |
| 246 | if (TYPE(CHILD(n, 0)) == NEWLINE) { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 247 | stmts = asdl_seq_new(1, arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 248 | if (!stmts) |
| 249 | goto error; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 250 | asdl_seq_SET(stmts, 0, Pass(n->n_lineno, n->n_col_offset, |
| 251 | arena)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 252 | return Interactive(stmts, arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 253 | } |
| 254 | else { |
| 255 | n = CHILD(n, 0); |
| 256 | num = num_stmts(n); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 257 | stmts = asdl_seq_new(num, arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 258 | if (!stmts) |
| 259 | goto error; |
| 260 | if (num == 1) { |
Neal Norwitz | 406c640 | 2006-01-07 21:23:26 +0000 | [diff] [blame] | 261 | s = ast_for_stmt(&c, n); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 262 | if (!s) |
| 263 | goto error; |
| 264 | asdl_seq_SET(stmts, 0, s); |
| 265 | } |
| 266 | else { |
| 267 | /* Only a simple_stmt can contain multiple statements. */ |
| 268 | REQ(n, simple_stmt); |
| 269 | for (i = 0; i < NCH(n); i += 2) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 270 | if (TYPE(CHILD(n, i)) == NEWLINE) |
| 271 | break; |
| 272 | s = ast_for_stmt(&c, CHILD(n, i)); |
| 273 | if (!s) |
| 274 | goto error; |
| 275 | asdl_seq_SET(stmts, i / 2, s); |
| 276 | } |
| 277 | } |
| 278 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 279 | return Interactive(stmts, arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 280 | } |
| 281 | default: |
| 282 | goto error; |
| 283 | } |
| 284 | error: |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 285 | ast_error_finish(filename); |
| 286 | return NULL; |
| 287 | } |
| 288 | |
| 289 | /* Return the AST repr. of the operator represented as syntax (|, ^, etc.) |
| 290 | */ |
| 291 | |
| 292 | static operator_ty |
| 293 | get_operator(const node *n) |
| 294 | { |
| 295 | switch (TYPE(n)) { |
| 296 | case VBAR: |
| 297 | return BitOr; |
| 298 | case CIRCUMFLEX: |
| 299 | return BitXor; |
| 300 | case AMPER: |
| 301 | return BitAnd; |
| 302 | case LEFTSHIFT: |
| 303 | return LShift; |
| 304 | case RIGHTSHIFT: |
| 305 | return RShift; |
| 306 | case PLUS: |
| 307 | return Add; |
| 308 | case MINUS: |
| 309 | return Sub; |
| 310 | case STAR: |
| 311 | return Mult; |
| 312 | case SLASH: |
| 313 | return Div; |
| 314 | case DOUBLESLASH: |
| 315 | return FloorDiv; |
| 316 | case PERCENT: |
| 317 | return Mod; |
| 318 | default: |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 319 | return (operator_ty)0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 320 | } |
| 321 | } |
| 322 | |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 323 | /* Set the context ctx for expr_ty e, recursively traversing e. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 324 | |
| 325 | Only sets context for expr kinds that "can appear in assignment context" |
| 326 | (according to ../Parser/Python.asdl). For other expr kinds, it sets |
| 327 | an appropriate syntax error and returns false. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 328 | */ |
| 329 | |
| 330 | static int |
| 331 | set_context(expr_ty e, expr_context_ty ctx, const node *n) |
| 332 | { |
| 333 | asdl_seq *s = NULL; |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 334 | /* If a particular expression type can't be used for assign / delete, |
| 335 | set expr_name to its name and an error message will be generated. |
| 336 | */ |
| 337 | const char* expr_name = NULL; |
| 338 | |
| 339 | /* The ast defines augmented store and load contexts, but the |
| 340 | implementation here doesn't actually use them. The code may be |
| 341 | a little more complex than necessary as a result. It also means |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 342 | that expressions in an augmented assignment have a Store context. |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 343 | Consider restructuring so that augmented assignment uses |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 344 | set_context(), too. |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 345 | */ |
| 346 | assert(ctx != AugStore && ctx != AugLoad); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 347 | |
| 348 | switch (e->kind) { |
| 349 | case Attribute_kind: |
| 350 | if (ctx == Store && |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 351 | !strcmp(PyString_AS_STRING(e->v.Attribute.attr), "None")) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 352 | return ast_error(n, "assignment to None"); |
| 353 | } |
| 354 | e->v.Attribute.ctx = ctx; |
| 355 | break; |
| 356 | case Subscript_kind: |
| 357 | e->v.Subscript.ctx = ctx; |
| 358 | break; |
| 359 | case Name_kind: |
| 360 | if (ctx == Store && |
| 361 | !strcmp(PyString_AS_STRING(e->v.Name.id), "None")) { |
| 362 | return ast_error(n, "assignment to None"); |
| 363 | } |
| 364 | e->v.Name.ctx = ctx; |
| 365 | break; |
| 366 | case List_kind: |
| 367 | e->v.List.ctx = ctx; |
| 368 | s = e->v.List.elts; |
| 369 | break; |
| 370 | case Tuple_kind: |
| 371 | if (asdl_seq_LEN(e->v.Tuple.elts) == 0) |
| 372 | return ast_error(n, "can't assign to ()"); |
| 373 | e->v.Tuple.ctx = ctx; |
| 374 | s = e->v.Tuple.elts; |
| 375 | break; |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 376 | case Lambda_kind: |
| 377 | expr_name = "lambda"; |
| 378 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 379 | case Call_kind: |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 380 | expr_name = "function call"; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 381 | break; |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 382 | case BoolOp_kind: |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 383 | case BinOp_kind: |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 384 | case UnaryOp_kind: |
| 385 | expr_name = "operator"; |
| 386 | break; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 387 | case GeneratorExp_kind: |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 388 | expr_name = "generator expression"; |
| 389 | break; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 390 | case Yield_kind: |
| 391 | expr_name = "yield expression"; |
| 392 | break; |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 393 | case ListComp_kind: |
| 394 | expr_name = "list comprehension"; |
| 395 | break; |
| 396 | case Dict_kind: |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 397 | case Num_kind: |
| 398 | case Str_kind: |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 399 | expr_name = "literal"; |
| 400 | break; |
| 401 | case Compare_kind: |
| 402 | expr_name = "comparison"; |
| 403 | break; |
| 404 | case Repr_kind: |
| 405 | expr_name = "repr"; |
| 406 | break; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 407 | case IfExp_kind: |
| 408 | expr_name = "conditional expression"; |
| 409 | break; |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 410 | default: |
| 411 | PyErr_Format(PyExc_SystemError, |
| 412 | "unexpected expression in assignment %d (line %d)", |
| 413 | e->kind, e->lineno); |
| 414 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 415 | } |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 416 | /* Check for error string set by switch */ |
| 417 | if (expr_name) { |
| 418 | char buf[300]; |
| 419 | PyOS_snprintf(buf, sizeof(buf), |
| 420 | "can't %s %s", |
| 421 | ctx == Store ? "assign to" : "delete", |
| 422 | expr_name); |
| 423 | return ast_error(n, buf); |
| 424 | } |
| 425 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 426 | /* If the LHS is a list or tuple, we need to set the assignment |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 427 | context for all the contained elements. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 428 | */ |
| 429 | if (s) { |
| 430 | int i; |
| 431 | |
| 432 | for (i = 0; i < asdl_seq_LEN(s); i++) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 433 | if (!set_context((expr_ty)asdl_seq_GET(s, i), ctx, n)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 434 | return 0; |
| 435 | } |
| 436 | } |
| 437 | return 1; |
| 438 | } |
| 439 | |
| 440 | static operator_ty |
| 441 | ast_for_augassign(const node *n) |
| 442 | { |
| 443 | REQ(n, augassign); |
| 444 | n = CHILD(n, 0); |
| 445 | switch (STR(n)[0]) { |
| 446 | case '+': |
| 447 | return Add; |
| 448 | case '-': |
| 449 | return Sub; |
| 450 | case '/': |
| 451 | if (STR(n)[1] == '/') |
| 452 | return FloorDiv; |
| 453 | else |
| 454 | return Div; |
| 455 | case '%': |
| 456 | return Mod; |
| 457 | case '<': |
| 458 | return LShift; |
| 459 | case '>': |
| 460 | return RShift; |
| 461 | case '&': |
| 462 | return BitAnd; |
| 463 | case '^': |
| 464 | return BitXor; |
| 465 | case '|': |
| 466 | return BitOr; |
| 467 | case '*': |
| 468 | if (STR(n)[1] == '*') |
| 469 | return Pow; |
| 470 | else |
| 471 | return Mult; |
| 472 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 473 | PyErr_Format(PyExc_SystemError, "invalid augassign: %s", STR(n)); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 474 | return (operator_ty)0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 475 | } |
| 476 | } |
| 477 | |
| 478 | static cmpop_ty |
| 479 | ast_for_comp_op(const node *n) |
| 480 | { |
| 481 | /* comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is' |
| 482 | |'is' 'not' |
| 483 | */ |
| 484 | REQ(n, comp_op); |
| 485 | if (NCH(n) == 1) { |
| 486 | n = CHILD(n, 0); |
| 487 | switch (TYPE(n)) { |
| 488 | case LESS: |
| 489 | return Lt; |
| 490 | case GREATER: |
| 491 | return Gt; |
| 492 | case EQEQUAL: /* == */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 493 | return Eq; |
| 494 | case LESSEQUAL: |
| 495 | return LtE; |
| 496 | case GREATEREQUAL: |
| 497 | return GtE; |
| 498 | case NOTEQUAL: |
| 499 | return NotEq; |
| 500 | case NAME: |
| 501 | if (strcmp(STR(n), "in") == 0) |
| 502 | return In; |
| 503 | if (strcmp(STR(n), "is") == 0) |
| 504 | return Is; |
| 505 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 506 | PyErr_Format(PyExc_SystemError, "invalid comp_op: %s", |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 507 | STR(n)); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 508 | return (cmpop_ty)0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 509 | } |
| 510 | } |
| 511 | else if (NCH(n) == 2) { |
| 512 | /* handle "not in" and "is not" */ |
| 513 | switch (TYPE(CHILD(n, 0))) { |
| 514 | case NAME: |
| 515 | if (strcmp(STR(CHILD(n, 1)), "in") == 0) |
| 516 | return NotIn; |
| 517 | if (strcmp(STR(CHILD(n, 0)), "is") == 0) |
| 518 | return IsNot; |
| 519 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 520 | PyErr_Format(PyExc_SystemError, "invalid comp_op: %s %s", |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 521 | STR(CHILD(n, 0)), STR(CHILD(n, 1))); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 522 | return (cmpop_ty)0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 523 | } |
| 524 | } |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 525 | PyErr_Format(PyExc_SystemError, "invalid comp_op: has %d children", |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 526 | NCH(n)); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 527 | return (cmpop_ty)0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | static asdl_seq * |
| 531 | seq_for_testlist(struct compiling *c, const node *n) |
| 532 | { |
| 533 | /* testlist: test (',' test)* [','] */ |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 534 | asdl_seq *seq; |
| 535 | expr_ty expression; |
| 536 | int i; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 537 | assert(TYPE(n) == testlist |
| 538 | || TYPE(n) == listmaker |
| 539 | || TYPE(n) == testlist_gexp |
| 540 | || TYPE(n) == testlist_safe |
| 541 | ); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 542 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 543 | seq = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 544 | if (!seq) |
| 545 | return NULL; |
| 546 | |
| 547 | for (i = 0; i < NCH(n); i += 2) { |
Thomas Wouters | fa443cd | 2006-02-27 15:43:57 +0000 | [diff] [blame] | 548 | assert(TYPE(CHILD(n, i)) == test || TYPE(CHILD(n, i)) == old_test); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 549 | |
| 550 | expression = ast_for_expr(c, CHILD(n, i)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 551 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 552 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 553 | |
| 554 | assert(i / 2 < seq->size); |
| 555 | asdl_seq_SET(seq, i / 2, expression); |
| 556 | } |
| 557 | return seq; |
| 558 | } |
| 559 | |
| 560 | static expr_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 561 | compiler_complex_args(struct compiling *c, const node *n) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 562 | { |
| 563 | int i, len = (NCH(n) + 1) / 2; |
| 564 | expr_ty result; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 565 | asdl_seq *args = asdl_seq_new(len, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 566 | if (!args) |
| 567 | return NULL; |
| 568 | |
| 569 | REQ(n, fplist); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 570 | for (i = 0; i < len; i++) { |
| 571 | const node *child = CHILD(CHILD(n, 2*i), 0); |
| 572 | expr_ty arg; |
| 573 | if (TYPE(child) == NAME) { |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 574 | if (!strcmp(STR(child), "None")) { |
| 575 | ast_error(child, "assignment to None"); |
| 576 | return NULL; |
| 577 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 578 | arg = Name(NEW_IDENTIFIER(child), Store, LINENO(child), |
| 579 | child->n_col_offset, c->c_arena); |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 580 | } |
| 581 | else { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 582 | arg = compiler_complex_args(c, CHILD(CHILD(n, 2*i), 1)); |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 583 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 584 | asdl_seq_SET(args, i, arg); |
| 585 | } |
| 586 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 587 | result = Tuple(args, Store, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 588 | if (!set_context(result, Store, n)) |
| 589 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 590 | return result; |
| 591 | } |
| 592 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 593 | |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 594 | /* Create AST for argument list. */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 595 | |
| 596 | static arguments_ty |
| 597 | ast_for_arguments(struct compiling *c, const node *n) |
| 598 | { |
| 599 | /* parameters: '(' [varargslist] ')' |
| 600 | varargslist: (fpdef ['=' test] ',')* ('*' NAME [',' '**' NAME] |
| 601 | | '**' NAME) | fpdef ['=' test] (',' fpdef ['=' test])* [','] |
| 602 | */ |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 603 | int i, j, k, n_args = 0, n_defaults = 0, found_default = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 604 | asdl_seq *args, *defaults; |
| 605 | identifier vararg = NULL, kwarg = NULL; |
| 606 | node *ch; |
| 607 | |
| 608 | if (TYPE(n) == parameters) { |
| 609 | if (NCH(n) == 2) /* () as argument list */ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 610 | return arguments(NULL, NULL, NULL, NULL, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 611 | n = CHILD(n, 1); |
| 612 | } |
| 613 | REQ(n, varargslist); |
| 614 | |
| 615 | /* first count the number of normal args & defaults */ |
| 616 | for (i = 0; i < NCH(n); i++) { |
| 617 | ch = CHILD(n, i); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 618 | if (TYPE(ch) == fpdef) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 619 | n_args++; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 620 | if (TYPE(ch) == EQUAL) |
| 621 | n_defaults++; |
| 622 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 623 | args = (n_args ? asdl_seq_new(n_args, c->c_arena) : NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 624 | if (!args && n_args) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 625 | return NULL; /* Don't need to goto error; no objects allocated */ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 626 | defaults = (n_defaults ? asdl_seq_new(n_defaults, c->c_arena) : NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 627 | if (!defaults && n_defaults) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 628 | return NULL; /* Don't need to goto error; no objects allocated */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 629 | |
| 630 | /* fpdef: NAME | '(' fplist ')' |
| 631 | fplist: fpdef (',' fpdef)* [','] |
| 632 | */ |
| 633 | i = 0; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 634 | j = 0; /* index for defaults */ |
| 635 | k = 0; /* index for args */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 636 | while (i < NCH(n)) { |
| 637 | ch = CHILD(n, i); |
| 638 | switch (TYPE(ch)) { |
| 639 | case fpdef: |
| 640 | /* XXX Need to worry about checking if TYPE(CHILD(n, i+1)) is |
| 641 | anything other than EQUAL or a comma? */ |
| 642 | /* XXX Should NCH(n) check be made a separate check? */ |
| 643 | if (i + 1 < NCH(n) && TYPE(CHILD(n, i + 1)) == EQUAL) { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 644 | expr_ty expression = ast_for_expr(c, CHILD(n, i + 2)); |
| 645 | if (!expression) |
| 646 | goto error; |
| 647 | assert(defaults != NULL); |
| 648 | asdl_seq_SET(defaults, j++, expression); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 649 | i += 2; |
| 650 | found_default = 1; |
| 651 | } |
| 652 | else if (found_default) { |
| 653 | ast_error(n, |
| 654 | "non-default argument follows default argument"); |
| 655 | goto error; |
| 656 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 657 | if (NCH(ch) == 3) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 658 | ch = CHILD(ch, 1); |
| 659 | /* def foo((x)): is not complex, special case. */ |
| 660 | if (NCH(ch) != 1) { |
| 661 | /* We have complex arguments, setup for unpacking. */ |
| 662 | asdl_seq_SET(args, k++, compiler_complex_args(c, ch)); |
| 663 | } else { |
| 664 | /* def foo((x)): setup for checking NAME below. */ |
| 665 | ch = CHILD(ch, 0); |
| 666 | } |
| 667 | } |
| 668 | if (TYPE(CHILD(ch, 0)) == NAME) { |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 669 | expr_ty name; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 670 | if (!strcmp(STR(CHILD(ch, 0)), "None")) { |
| 671 | ast_error(CHILD(ch, 0), "assignment to None"); |
| 672 | goto error; |
| 673 | } |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 674 | name = Name(NEW_IDENTIFIER(CHILD(ch, 0)), |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 675 | Param, LINENO(ch), ch->n_col_offset, |
| 676 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 677 | if (!name) |
| 678 | goto error; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 679 | asdl_seq_SET(args, k++, name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 680 | |
| 681 | } |
| 682 | i += 2; /* the name and the comma */ |
| 683 | break; |
| 684 | case STAR: |
| 685 | if (!strcmp(STR(CHILD(n, i+1)), "None")) { |
| 686 | ast_error(CHILD(n, i+1), "assignment to None"); |
| 687 | goto error; |
| 688 | } |
| 689 | vararg = NEW_IDENTIFIER(CHILD(n, i+1)); |
| 690 | i += 3; |
| 691 | break; |
| 692 | case DOUBLESTAR: |
| 693 | if (!strcmp(STR(CHILD(n, i+1)), "None")) { |
| 694 | ast_error(CHILD(n, i+1), "assignment to None"); |
| 695 | goto error; |
| 696 | } |
| 697 | kwarg = NEW_IDENTIFIER(CHILD(n, i+1)); |
| 698 | i += 3; |
| 699 | break; |
| 700 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 701 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 702 | "unexpected node in varargslist: %d @ %d", |
| 703 | TYPE(ch), i); |
| 704 | goto error; |
| 705 | } |
| 706 | } |
| 707 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 708 | return arguments(args, vararg, kwarg, defaults, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 709 | |
| 710 | error: |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 711 | Py_XDECREF(vararg); |
| 712 | Py_XDECREF(kwarg); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 713 | return NULL; |
| 714 | } |
| 715 | |
| 716 | static expr_ty |
| 717 | ast_for_dotted_name(struct compiling *c, const node *n) |
| 718 | { |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 719 | expr_ty e; |
| 720 | identifier id; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 721 | int lineno, col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 722 | int i; |
| 723 | |
| 724 | REQ(n, dotted_name); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 725 | |
| 726 | lineno = LINENO(n); |
| 727 | col_offset = n->n_col_offset; |
| 728 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 729 | id = NEW_IDENTIFIER(CHILD(n, 0)); |
| 730 | if (!id) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 731 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 732 | e = Name(id, Load, lineno, col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 733 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 734 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 735 | |
| 736 | for (i = 2; i < NCH(n); i+=2) { |
| 737 | id = NEW_IDENTIFIER(CHILD(n, i)); |
| 738 | if (!id) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 739 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 740 | e = Attribute(e, id, Load, lineno, col_offset, c->c_arena); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 741 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 742 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | return e; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | static expr_ty |
| 749 | ast_for_decorator(struct compiling *c, const node *n) |
| 750 | { |
| 751 | /* decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE */ |
| 752 | expr_ty d = NULL; |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 753 | expr_ty name_expr; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 754 | |
| 755 | REQ(n, decorator); |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 756 | REQ(CHILD(n, 0), AT); |
| 757 | REQ(RCHILD(n, -1), NEWLINE); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 758 | |
| 759 | name_expr = ast_for_dotted_name(c, CHILD(n, 1)); |
| 760 | if (!name_expr) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 761 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 762 | |
| 763 | if (NCH(n) == 3) { /* No arguments */ |
| 764 | d = name_expr; |
| 765 | name_expr = NULL; |
| 766 | } |
| 767 | else if (NCH(n) == 5) { /* Call with no arguments */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 768 | d = Call(name_expr, NULL, NULL, NULL, NULL, LINENO(n), |
| 769 | n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 770 | if (!d) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 771 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 772 | name_expr = NULL; |
| 773 | } |
| 774 | else { |
| 775 | d = ast_for_call(c, CHILD(n, 3), name_expr); |
| 776 | if (!d) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 777 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 778 | name_expr = NULL; |
| 779 | } |
| 780 | |
| 781 | return d; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | static asdl_seq* |
| 785 | ast_for_decorators(struct compiling *c, const node *n) |
| 786 | { |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 787 | asdl_seq* decorator_seq; |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 788 | expr_ty d; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 789 | int i; |
| 790 | |
| 791 | REQ(n, decorators); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 792 | decorator_seq = asdl_seq_new(NCH(n), c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 793 | if (!decorator_seq) |
| 794 | return NULL; |
| 795 | |
| 796 | for (i = 0; i < NCH(n); i++) { |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 797 | d = ast_for_decorator(c, CHILD(n, i)); |
| 798 | if (!d) |
| 799 | return NULL; |
| 800 | asdl_seq_SET(decorator_seq, i, d); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 801 | } |
| 802 | return decorator_seq; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | static stmt_ty |
| 806 | ast_for_funcdef(struct compiling *c, const node *n) |
| 807 | { |
| 808 | /* funcdef: 'def' [decorators] NAME parameters ':' suite */ |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 809 | identifier name; |
| 810 | arguments_ty args; |
| 811 | asdl_seq *body; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 812 | asdl_seq *decorator_seq = NULL; |
| 813 | int name_i; |
| 814 | |
| 815 | REQ(n, funcdef); |
| 816 | |
| 817 | if (NCH(n) == 6) { /* decorators are present */ |
| 818 | decorator_seq = ast_for_decorators(c, CHILD(n, 0)); |
| 819 | if (!decorator_seq) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 820 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 821 | name_i = 2; |
| 822 | } |
| 823 | else { |
| 824 | name_i = 1; |
| 825 | } |
| 826 | |
| 827 | name = NEW_IDENTIFIER(CHILD(n, name_i)); |
| 828 | if (!name) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 829 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 830 | else if (!strcmp(STR(CHILD(n, name_i)), "None")) { |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 831 | ast_error(CHILD(n, name_i), "assignment to None"); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 832 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 833 | } |
| 834 | args = ast_for_arguments(c, CHILD(n, name_i + 1)); |
| 835 | if (!args) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 836 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 837 | body = ast_for_suite(c, CHILD(n, name_i + 3)); |
| 838 | if (!body) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 839 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 840 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 841 | return FunctionDef(name, args, body, decorator_seq, LINENO(n), |
| 842 | n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 843 | } |
| 844 | |
| 845 | static expr_ty |
| 846 | ast_for_lambdef(struct compiling *c, const node *n) |
| 847 | { |
| 848 | /* lambdef: 'lambda' [varargslist] ':' test */ |
| 849 | arguments_ty args; |
| 850 | expr_ty expression; |
| 851 | |
| 852 | if (NCH(n) == 3) { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 853 | args = arguments(NULL, NULL, NULL, NULL, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 854 | if (!args) |
| 855 | return NULL; |
| 856 | expression = ast_for_expr(c, CHILD(n, 2)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 857 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 858 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 859 | } |
| 860 | else { |
| 861 | args = ast_for_arguments(c, CHILD(n, 1)); |
| 862 | if (!args) |
| 863 | return NULL; |
| 864 | expression = ast_for_expr(c, CHILD(n, 3)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 865 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 866 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 867 | } |
| 868 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 869 | return Lambda(args, expression, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 870 | } |
| 871 | |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 872 | static expr_ty |
| 873 | ast_for_ifexpr(struct compiling *c, const node *n) |
| 874 | { |
| 875 | /* test: or_test 'if' or_test 'else' test */ |
| 876 | expr_ty expression, body, orelse; |
| 877 | |
Thomas Wouters | aa8b6c5 | 2006-02-27 16:46:22 +0000 | [diff] [blame] | 878 | assert(NCH(n) == 5); |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 879 | body = ast_for_expr(c, CHILD(n, 0)); |
| 880 | if (!body) |
| 881 | return NULL; |
| 882 | expression = ast_for_expr(c, CHILD(n, 2)); |
| 883 | if (!expression) |
| 884 | return NULL; |
| 885 | orelse = ast_for_expr(c, CHILD(n, 4)); |
| 886 | if (!orelse) |
| 887 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 888 | return IfExp(expression, body, orelse, LINENO(n), n->n_col_offset, |
| 889 | c->c_arena); |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 890 | } |
| 891 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 892 | /* Count the number of 'for' loop in a list comprehension. |
| 893 | |
| 894 | Helper for ast_for_listcomp(). |
| 895 | */ |
| 896 | |
| 897 | static int |
| 898 | count_list_fors(const node *n) |
| 899 | { |
| 900 | int n_fors = 0; |
| 901 | node *ch = CHILD(n, 1); |
| 902 | |
| 903 | count_list_for: |
| 904 | n_fors++; |
| 905 | REQ(ch, list_for); |
| 906 | if (NCH(ch) == 5) |
| 907 | ch = CHILD(ch, 4); |
| 908 | else |
| 909 | return n_fors; |
| 910 | count_list_iter: |
| 911 | REQ(ch, list_iter); |
| 912 | ch = CHILD(ch, 0); |
| 913 | if (TYPE(ch) == list_for) |
| 914 | goto count_list_for; |
| 915 | else if (TYPE(ch) == list_if) { |
| 916 | if (NCH(ch) == 3) { |
| 917 | ch = CHILD(ch, 2); |
| 918 | goto count_list_iter; |
| 919 | } |
| 920 | else |
| 921 | return n_fors; |
| 922 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 923 | |
| 924 | /* Should never be reached */ |
| 925 | PyErr_SetString(PyExc_SystemError, "logic error in count_list_fors"); |
| 926 | return -1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | /* Count the number of 'if' statements in a list comprehension. |
| 930 | |
| 931 | Helper for ast_for_listcomp(). |
| 932 | */ |
| 933 | |
| 934 | static int |
| 935 | count_list_ifs(const node *n) |
| 936 | { |
| 937 | int n_ifs = 0; |
| 938 | |
| 939 | count_list_iter: |
| 940 | REQ(n, list_iter); |
| 941 | if (TYPE(CHILD(n, 0)) == list_for) |
| 942 | return n_ifs; |
| 943 | n = CHILD(n, 0); |
| 944 | REQ(n, list_if); |
| 945 | n_ifs++; |
| 946 | if (NCH(n) == 2) |
| 947 | return n_ifs; |
| 948 | n = CHILD(n, 2); |
| 949 | goto count_list_iter; |
| 950 | } |
| 951 | |
| 952 | static expr_ty |
| 953 | ast_for_listcomp(struct compiling *c, const node *n) |
| 954 | { |
| 955 | /* listmaker: test ( list_for | (',' test)* [','] ) |
| 956 | list_for: 'for' exprlist 'in' testlist_safe [list_iter] |
| 957 | list_iter: list_for | list_if |
| 958 | list_if: 'if' test [list_iter] |
| 959 | testlist_safe: test [(',' test)+ [',']] |
| 960 | */ |
| 961 | expr_ty elt; |
| 962 | asdl_seq *listcomps; |
| 963 | int i, n_fors; |
| 964 | node *ch; |
| 965 | |
| 966 | REQ(n, listmaker); |
| 967 | assert(NCH(n) > 1); |
| 968 | |
| 969 | elt = ast_for_expr(c, CHILD(n, 0)); |
| 970 | if (!elt) |
| 971 | return NULL; |
| 972 | |
| 973 | n_fors = count_list_fors(n); |
| 974 | if (n_fors == -1) |
| 975 | return NULL; |
| 976 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 977 | listcomps = asdl_seq_new(n_fors, c->c_arena); |
| 978 | if (!listcomps) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 979 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 980 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 981 | ch = CHILD(n, 1); |
| 982 | for (i = 0; i < n_fors; i++) { |
| 983 | comprehension_ty lc; |
| 984 | asdl_seq *t; |
| 985 | expr_ty expression; |
| 986 | |
| 987 | REQ(ch, list_for); |
| 988 | |
| 989 | t = ast_for_exprlist(c, CHILD(ch, 1), Store); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 990 | if (!t) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 991 | return NULL; |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 992 | expression = ast_for_testlist(c, CHILD(ch, 3)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 993 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 994 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 995 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 996 | if (asdl_seq_LEN(t) == 1) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 997 | lc = comprehension((expr_ty)asdl_seq_GET(t, 0), expression, NULL, |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 998 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 999 | else |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1000 | lc = comprehension(Tuple(t, Store, LINENO(ch), ch->n_col_offset, |
| 1001 | c->c_arena), |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1002 | expression, NULL, c->c_arena); |
| 1003 | if (!lc) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1004 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1005 | |
| 1006 | if (NCH(ch) == 5) { |
| 1007 | int j, n_ifs; |
| 1008 | asdl_seq *ifs; |
| 1009 | |
| 1010 | ch = CHILD(ch, 4); |
| 1011 | n_ifs = count_list_ifs(ch); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1012 | if (n_ifs == -1) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1013 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1014 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1015 | ifs = asdl_seq_new(n_ifs, c->c_arena); |
| 1016 | if (!ifs) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1017 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1018 | |
| 1019 | for (j = 0; j < n_ifs; j++) { |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 1020 | REQ(ch, list_iter); |
| 1021 | ch = CHILD(ch, 0); |
| 1022 | REQ(ch, list_if); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1023 | |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 1024 | asdl_seq_SET(ifs, j, ast_for_expr(c, CHILD(ch, 1))); |
| 1025 | if (NCH(ch) == 3) |
| 1026 | ch = CHILD(ch, 2); |
| 1027 | } |
| 1028 | /* on exit, must guarantee that ch is a list_for */ |
| 1029 | if (TYPE(ch) == list_iter) |
| 1030 | ch = CHILD(ch, 0); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1031 | lc->ifs = ifs; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 1032 | } |
| 1033 | asdl_seq_SET(listcomps, i, lc); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1036 | return ListComp(elt, listcomps, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | /* |
| 1040 | Count the number of 'for' loops in a generator expression. |
| 1041 | |
| 1042 | Helper for ast_for_genexp(). |
| 1043 | */ |
| 1044 | |
| 1045 | static int |
| 1046 | count_gen_fors(const node *n) |
| 1047 | { |
| 1048 | int n_fors = 0; |
| 1049 | node *ch = CHILD(n, 1); |
| 1050 | |
| 1051 | count_gen_for: |
| 1052 | n_fors++; |
| 1053 | REQ(ch, gen_for); |
| 1054 | if (NCH(ch) == 5) |
| 1055 | ch = CHILD(ch, 4); |
| 1056 | else |
| 1057 | return n_fors; |
| 1058 | count_gen_iter: |
| 1059 | REQ(ch, gen_iter); |
| 1060 | ch = CHILD(ch, 0); |
| 1061 | if (TYPE(ch) == gen_for) |
| 1062 | goto count_gen_for; |
| 1063 | else if (TYPE(ch) == gen_if) { |
| 1064 | if (NCH(ch) == 3) { |
| 1065 | ch = CHILD(ch, 2); |
| 1066 | goto count_gen_iter; |
| 1067 | } |
| 1068 | else |
| 1069 | return n_fors; |
| 1070 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1071 | |
| 1072 | /* Should never be reached */ |
| 1073 | PyErr_SetString(PyExc_SystemError, |
| 1074 | "logic error in count_gen_fors"); |
| 1075 | return -1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | /* Count the number of 'if' statements in a generator expression. |
| 1079 | |
| 1080 | Helper for ast_for_genexp(). |
| 1081 | */ |
| 1082 | |
| 1083 | static int |
| 1084 | count_gen_ifs(const node *n) |
| 1085 | { |
| 1086 | int n_ifs = 0; |
| 1087 | |
| 1088 | while (1) { |
| 1089 | REQ(n, gen_iter); |
| 1090 | if (TYPE(CHILD(n, 0)) == gen_for) |
| 1091 | return n_ifs; |
| 1092 | n = CHILD(n, 0); |
| 1093 | REQ(n, gen_if); |
| 1094 | n_ifs++; |
| 1095 | if (NCH(n) == 2) |
| 1096 | return n_ifs; |
| 1097 | n = CHILD(n, 2); |
| 1098 | } |
| 1099 | } |
| 1100 | |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 1101 | /* TODO(jhylton): Combine with list comprehension code? */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1102 | static expr_ty |
| 1103 | ast_for_genexp(struct compiling *c, const node *n) |
| 1104 | { |
| 1105 | /* testlist_gexp: test ( gen_for | (',' test)* [','] ) |
| 1106 | argument: [test '='] test [gen_for] # Really [keyword '='] test */ |
| 1107 | expr_ty elt; |
| 1108 | asdl_seq *genexps; |
| 1109 | int i, n_fors; |
| 1110 | node *ch; |
| 1111 | |
| 1112 | assert(TYPE(n) == (testlist_gexp) || TYPE(n) == (argument)); |
| 1113 | assert(NCH(n) > 1); |
| 1114 | |
| 1115 | elt = ast_for_expr(c, CHILD(n, 0)); |
| 1116 | if (!elt) |
| 1117 | return NULL; |
| 1118 | |
| 1119 | n_fors = count_gen_fors(n); |
| 1120 | if (n_fors == -1) |
| 1121 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1122 | |
| 1123 | genexps = asdl_seq_new(n_fors, c->c_arena); |
| 1124 | if (!genexps) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1125 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1126 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1127 | ch = CHILD(n, 1); |
| 1128 | for (i = 0; i < n_fors; i++) { |
| 1129 | comprehension_ty ge; |
| 1130 | asdl_seq *t; |
| 1131 | expr_ty expression; |
| 1132 | |
| 1133 | REQ(ch, gen_for); |
| 1134 | |
| 1135 | t = ast_for_exprlist(c, CHILD(ch, 1), Store); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1136 | if (!t) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1137 | return NULL; |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1138 | expression = ast_for_expr(c, CHILD(ch, 3)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1139 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1140 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1141 | |
| 1142 | if (asdl_seq_LEN(t) == 1) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1143 | ge = comprehension((expr_ty)asdl_seq_GET(t, 0), expression, |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1144 | NULL, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1145 | else |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1146 | ge = comprehension(Tuple(t, Store, LINENO(ch), ch->n_col_offset, |
| 1147 | c->c_arena), |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1148 | expression, NULL, c->c_arena); |
| 1149 | |
| 1150 | if (!ge) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1151 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1152 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1153 | if (NCH(ch) == 5) { |
| 1154 | int j, n_ifs; |
| 1155 | asdl_seq *ifs; |
| 1156 | |
| 1157 | ch = CHILD(ch, 4); |
| 1158 | n_ifs = count_gen_ifs(ch); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1159 | if (n_ifs == -1) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1160 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1161 | |
| 1162 | ifs = asdl_seq_new(n_ifs, c->c_arena); |
| 1163 | if (!ifs) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1164 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1165 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1166 | for (j = 0; j < n_ifs; j++) { |
| 1167 | REQ(ch, gen_iter); |
| 1168 | ch = CHILD(ch, 0); |
| 1169 | REQ(ch, gen_if); |
| 1170 | |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1171 | expression = ast_for_expr(c, CHILD(ch, 1)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1172 | if (!expression) |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1173 | return NULL; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 1174 | asdl_seq_SET(ifs, j, expression); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1175 | if (NCH(ch) == 3) |
| 1176 | ch = CHILD(ch, 2); |
| 1177 | } |
| 1178 | /* on exit, must guarantee that ch is a gen_for */ |
| 1179 | if (TYPE(ch) == gen_iter) |
| 1180 | ch = CHILD(ch, 0); |
| 1181 | ge->ifs = ifs; |
| 1182 | } |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 1183 | asdl_seq_SET(genexps, i, ge); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1184 | } |
| 1185 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1186 | return GeneratorExp(elt, genexps, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | static expr_ty |
| 1190 | ast_for_atom(struct compiling *c, const node *n) |
| 1191 | { |
| 1192 | /* atom: '(' [yield_expr|testlist_gexp] ')' | '[' [listmaker] ']' |
| 1193 | | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING+ |
| 1194 | */ |
| 1195 | node *ch = CHILD(n, 0); |
| 1196 | |
| 1197 | switch (TYPE(ch)) { |
| 1198 | case NAME: |
| 1199 | /* All names start in Load context, but may later be |
| 1200 | changed. */ |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1201 | return Name(NEW_IDENTIFIER(ch), Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1202 | case STRING: { |
| 1203 | PyObject *str = parsestrplus(c, n); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1204 | if (!str) |
| 1205 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1206 | |
| 1207 | PyArena_AddPyObject(c->c_arena, str); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1208 | return Str(str, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1209 | } |
| 1210 | case NUMBER: { |
| 1211 | PyObject *pynum = parsenumber(STR(ch)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1212 | if (!pynum) |
| 1213 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1214 | |
| 1215 | PyArena_AddPyObject(c->c_arena, pynum); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1216 | return Num(pynum, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1217 | } |
| 1218 | case LPAR: /* some parenthesized expressions */ |
| 1219 | ch = CHILD(n, 1); |
| 1220 | |
| 1221 | if (TYPE(ch) == RPAR) |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1222 | return Tuple(NULL, Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1223 | |
| 1224 | if (TYPE(ch) == yield_expr) |
| 1225 | return ast_for_expr(c, ch); |
| 1226 | |
| 1227 | if ((NCH(ch) > 1) && (TYPE(CHILD(ch, 1)) == gen_for)) |
| 1228 | return ast_for_genexp(c, ch); |
| 1229 | |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1230 | return ast_for_testlist_gexp(c, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1231 | case LSQB: /* list (or list comprehension) */ |
| 1232 | ch = CHILD(n, 1); |
| 1233 | |
| 1234 | if (TYPE(ch) == RSQB) |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1235 | return List(NULL, Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1236 | |
| 1237 | REQ(ch, listmaker); |
| 1238 | if (NCH(ch) == 1 || TYPE(CHILD(ch, 1)) == COMMA) { |
| 1239 | asdl_seq *elts = seq_for_testlist(c, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1240 | if (!elts) |
| 1241 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1242 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1243 | return List(elts, Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1244 | } |
| 1245 | else |
| 1246 | return ast_for_listcomp(c, ch); |
| 1247 | case LBRACE: { |
| 1248 | /* dictmaker: test ':' test (',' test ':' test)* [','] */ |
| 1249 | int i, size; |
| 1250 | asdl_seq *keys, *values; |
| 1251 | |
| 1252 | ch = CHILD(n, 1); |
| 1253 | size = (NCH(ch) + 1) / 4; /* +1 in case no trailing comma */ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1254 | keys = asdl_seq_new(size, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1255 | if (!keys) |
| 1256 | return NULL; |
| 1257 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1258 | values = asdl_seq_new(size, c->c_arena); |
| 1259 | if (!values) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1260 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1261 | |
| 1262 | for (i = 0; i < NCH(ch); i += 4) { |
| 1263 | expr_ty expression; |
| 1264 | |
| 1265 | expression = ast_for_expr(c, CHILD(ch, i)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1266 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1267 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1268 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1269 | asdl_seq_SET(keys, i / 4, expression); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1270 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1271 | expression = ast_for_expr(c, CHILD(ch, i + 2)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1272 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1273 | return NULL; |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 1274 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1275 | asdl_seq_SET(values, i / 4, expression); |
| 1276 | } |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1277 | return Dict(keys, values, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1278 | } |
| 1279 | case BACKQUOTE: { /* repr */ |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1280 | expr_ty expression = ast_for_testlist(c, CHILD(n, 1)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1281 | if (!expression) |
| 1282 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1283 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1284 | return Repr(expression, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1285 | } |
| 1286 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 1287 | PyErr_Format(PyExc_SystemError, "unhandled atom %d", TYPE(ch)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1288 | return NULL; |
| 1289 | } |
| 1290 | } |
| 1291 | |
| 1292 | static slice_ty |
| 1293 | ast_for_slice(struct compiling *c, const node *n) |
| 1294 | { |
| 1295 | node *ch; |
| 1296 | expr_ty lower = NULL, upper = NULL, step = NULL; |
| 1297 | |
| 1298 | REQ(n, subscript); |
| 1299 | |
| 1300 | /* |
| 1301 | subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop] |
| 1302 | sliceop: ':' [test] |
| 1303 | */ |
| 1304 | ch = CHILD(n, 0); |
| 1305 | if (TYPE(ch) == DOT) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1306 | return Ellipsis(c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1307 | |
| 1308 | if (NCH(n) == 1 && TYPE(ch) == test) { |
| 1309 | /* 'step' variable hold no significance in terms of being used over |
| 1310 | other vars */ |
| 1311 | step = ast_for_expr(c, ch); |
| 1312 | if (!step) |
| 1313 | return NULL; |
| 1314 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1315 | return Index(step, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
| 1318 | if (TYPE(ch) == test) { |
| 1319 | lower = ast_for_expr(c, ch); |
| 1320 | if (!lower) |
| 1321 | return NULL; |
| 1322 | } |
| 1323 | |
| 1324 | /* If there's an upper bound it's in the second or third position. */ |
| 1325 | if (TYPE(ch) == COLON) { |
| 1326 | if (NCH(n) > 1) { |
| 1327 | node *n2 = CHILD(n, 1); |
| 1328 | |
| 1329 | if (TYPE(n2) == test) { |
| 1330 | upper = ast_for_expr(c, n2); |
| 1331 | if (!upper) |
| 1332 | return NULL; |
| 1333 | } |
| 1334 | } |
| 1335 | } else if (NCH(n) > 2) { |
| 1336 | node *n2 = CHILD(n, 2); |
| 1337 | |
| 1338 | if (TYPE(n2) == test) { |
| 1339 | upper = ast_for_expr(c, n2); |
| 1340 | if (!upper) |
| 1341 | return NULL; |
| 1342 | } |
| 1343 | } |
| 1344 | |
| 1345 | ch = CHILD(n, NCH(n) - 1); |
| 1346 | if (TYPE(ch) == sliceop) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1347 | if (NCH(ch) == 1) { |
| 1348 | /* No expression, so step is None */ |
| 1349 | ch = CHILD(ch, 0); |
| 1350 | step = Name(new_identifier("None", c->c_arena), Load, |
| 1351 | LINENO(ch), ch->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1352 | if (!step) |
| 1353 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1354 | } else { |
| 1355 | ch = CHILD(ch, 1); |
| 1356 | if (TYPE(ch) == test) { |
| 1357 | step = ast_for_expr(c, ch); |
| 1358 | if (!step) |
| 1359 | return NULL; |
| 1360 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1361 | } |
| 1362 | } |
| 1363 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1364 | return Slice(lower, upper, step, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1365 | } |
| 1366 | |
| 1367 | static expr_ty |
| 1368 | ast_for_binop(struct compiling *c, const node *n) |
| 1369 | { |
| 1370 | /* Must account for a sequence of expressions. |
| 1371 | How should A op B op C by represented? |
| 1372 | BinOp(BinOp(A, op, B), op, C). |
| 1373 | */ |
| 1374 | |
| 1375 | int i, nops; |
| 1376 | expr_ty expr1, expr2, result; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1377 | operator_ty newoperator; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1378 | |
| 1379 | expr1 = ast_for_expr(c, CHILD(n, 0)); |
| 1380 | if (!expr1) |
| 1381 | return NULL; |
| 1382 | |
| 1383 | expr2 = ast_for_expr(c, CHILD(n, 2)); |
| 1384 | if (!expr2) |
| 1385 | return NULL; |
| 1386 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1387 | newoperator = get_operator(CHILD(n, 1)); |
| 1388 | if (!newoperator) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1389 | return NULL; |
| 1390 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1391 | result = BinOp(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, |
| 1392 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1393 | if (!result) |
| 1394 | return NULL; |
| 1395 | |
| 1396 | nops = (NCH(n) - 1) / 2; |
| 1397 | for (i = 1; i < nops; i++) { |
| 1398 | expr_ty tmp_result, tmp; |
| 1399 | const node* next_oper = CHILD(n, i * 2 + 1); |
| 1400 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1401 | newoperator = get_operator(next_oper); |
| 1402 | if (!newoperator) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1403 | return NULL; |
| 1404 | |
| 1405 | tmp = ast_for_expr(c, CHILD(n, i * 2 + 2)); |
| 1406 | if (!tmp) |
| 1407 | return NULL; |
| 1408 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1409 | tmp_result = BinOp(result, newoperator, tmp, |
| 1410 | LINENO(next_oper), next_oper->n_col_offset, |
| 1411 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1412 | if (!tmp) |
| 1413 | return NULL; |
| 1414 | result = tmp_result; |
| 1415 | } |
| 1416 | return result; |
| 1417 | } |
| 1418 | |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1419 | static expr_ty |
| 1420 | ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr) |
| 1421 | { |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1422 | /* trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME |
| 1423 | subscriptlist: subscript (',' subscript)* [','] |
| 1424 | subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop] |
| 1425 | */ |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1426 | REQ(n, trailer); |
| 1427 | if (TYPE(CHILD(n, 0)) == LPAR) { |
| 1428 | if (NCH(n) == 2) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1429 | return Call(left_expr, NULL, NULL, NULL, NULL, LINENO(n), |
| 1430 | n->n_col_offset, c->c_arena); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1431 | else |
Jeremy Hylton | 9ebfbf0 | 2006-02-27 16:50:35 +0000 | [diff] [blame] | 1432 | return ast_for_call(c, CHILD(n, 1), left_expr); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1433 | } |
Jeremy Hylton | 9ebfbf0 | 2006-02-27 16:50:35 +0000 | [diff] [blame] | 1434 | else if (TYPE(CHILD(n, 0)) == DOT ) { |
| 1435 | return Attribute(left_expr, NEW_IDENTIFIER(CHILD(n, 1)), Load, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1436 | LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 9ebfbf0 | 2006-02-27 16:50:35 +0000 | [diff] [blame] | 1437 | } |
| 1438 | else { |
| 1439 | REQ(CHILD(n, 0), LSQB); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1440 | REQ(CHILD(n, 2), RSQB); |
| 1441 | n = CHILD(n, 1); |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1442 | if (NCH(n) == 1) { |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1443 | slice_ty slc = ast_for_slice(c, CHILD(n, 0)); |
| 1444 | if (!slc) |
| 1445 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1446 | return Subscript(left_expr, slc, Load, LINENO(n), n->n_col_offset, |
| 1447 | c->c_arena); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1448 | } |
| 1449 | else { |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1450 | /* The grammar is ambiguous here. The ambiguity is resolved |
| 1451 | by treating the sequence as a tuple literal if there are |
| 1452 | no slice features. |
| 1453 | */ |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1454 | int j; |
| 1455 | slice_ty slc; |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1456 | expr_ty e; |
Thomas Wouters | 65b3dab | 2006-03-01 22:06:23 +0000 | [diff] [blame] | 1457 | bool simple = true; |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1458 | asdl_seq *slices, *elts; |
| 1459 | slices = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1460 | if (!slices) |
| 1461 | return NULL; |
| 1462 | for (j = 0; j < NCH(n); j += 2) { |
| 1463 | slc = ast_for_slice(c, CHILD(n, j)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1464 | if (!slc) |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1465 | return NULL; |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1466 | if (slc->kind != Index_kind) |
| 1467 | simple = false; |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1468 | asdl_seq_SET(slices, j / 2, slc); |
| 1469 | } |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1470 | if (!simple) { |
| 1471 | return Subscript(left_expr, ExtSlice(slices, c->c_arena), |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1472 | Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1473 | } |
| 1474 | /* extract Index values and put them in a Tuple */ |
| 1475 | elts = asdl_seq_new(asdl_seq_LEN(slices), c->c_arena); |
Hye-Shik Chang | 4af5c8c | 2006-03-07 15:39:21 +0000 | [diff] [blame] | 1476 | if (!elts) |
| 1477 | return NULL; |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1478 | for (j = 0; j < asdl_seq_LEN(slices); ++j) { |
| 1479 | slc = (slice_ty)asdl_seq_GET(slices, j); |
| 1480 | assert(slc->kind == Index_kind && slc->v.Index.value); |
| 1481 | asdl_seq_SET(elts, j, slc->v.Index.value); |
| 1482 | } |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1483 | e = Tuple(elts, Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | c7d3726 | 2006-02-27 17:29:29 +0000 | [diff] [blame] | 1484 | if (!e) |
| 1485 | return NULL; |
| 1486 | return Subscript(left_expr, Index(e, c->c_arena), |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1487 | Load, LINENO(n), n->n_col_offset, c->c_arena); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1488 | } |
| 1489 | } |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | static expr_ty |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1493 | ast_for_factor(struct compiling *c, const node *n) |
| 1494 | { |
| 1495 | node *pfactor, *ppower, *patom, *pnum; |
| 1496 | expr_ty expression; |
| 1497 | |
| 1498 | /* If the unary - operator is applied to a constant, don't generate |
| 1499 | a UNARY_NEGATIVE opcode. Just store the approriate value as a |
| 1500 | constant. The peephole optimizer already does something like |
| 1501 | this but it doesn't handle the case where the constant is |
| 1502 | (sys.maxint - 1). In that case, we want a PyIntObject, not a |
| 1503 | PyLongObject. |
| 1504 | */ |
| 1505 | if (TYPE(CHILD(n, 0)) == MINUS |
| 1506 | && NCH(n) == 2 |
| 1507 | && TYPE((pfactor = CHILD(n, 1))) == factor |
| 1508 | && NCH(pfactor) == 1 |
| 1509 | && TYPE((ppower = CHILD(pfactor, 0))) == power |
| 1510 | && NCH(ppower) == 1 |
| 1511 | && TYPE((patom = CHILD(ppower, 0))) == atom |
| 1512 | && TYPE((pnum = CHILD(patom, 0))) == NUMBER) { |
| 1513 | char *s = PyObject_MALLOC(strlen(STR(pnum)) + 2); |
| 1514 | if (s == NULL) |
| 1515 | return NULL; |
| 1516 | s[0] = '-'; |
| 1517 | strcpy(s + 1, STR(pnum)); |
| 1518 | PyObject_FREE(STR(pnum)); |
| 1519 | STR(pnum) = s; |
| 1520 | return ast_for_atom(c, patom); |
| 1521 | } |
| 1522 | |
| 1523 | expression = ast_for_expr(c, CHILD(n, 1)); |
| 1524 | if (!expression) |
| 1525 | return NULL; |
| 1526 | |
| 1527 | switch (TYPE(CHILD(n, 0))) { |
| 1528 | case PLUS: |
| 1529 | return UnaryOp(UAdd, expression, LINENO(n), n->n_col_offset, |
| 1530 | c->c_arena); |
| 1531 | case MINUS: |
| 1532 | return UnaryOp(USub, expression, LINENO(n), n->n_col_offset, |
| 1533 | c->c_arena); |
| 1534 | case TILDE: |
| 1535 | return UnaryOp(Invert, expression, LINENO(n), |
| 1536 | n->n_col_offset, c->c_arena); |
| 1537 | } |
| 1538 | PyErr_Format(PyExc_SystemError, "unhandled factor: %d", |
| 1539 | TYPE(CHILD(n, 0))); |
| 1540 | return NULL; |
| 1541 | } |
| 1542 | |
| 1543 | static expr_ty |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1544 | ast_for_power(struct compiling *c, const node *n) |
| 1545 | { |
| 1546 | /* power: atom trailer* ('**' factor)* |
| 1547 | */ |
| 1548 | int i; |
| 1549 | expr_ty e, tmp; |
| 1550 | REQ(n, power); |
| 1551 | e = ast_for_atom(c, CHILD(n, 0)); |
| 1552 | if (!e) |
| 1553 | return NULL; |
| 1554 | if (NCH(n) == 1) |
| 1555 | return e; |
| 1556 | for (i = 1; i < NCH(n); i++) { |
| 1557 | node *ch = CHILD(n, i); |
| 1558 | if (TYPE(ch) != trailer) |
| 1559 | break; |
| 1560 | tmp = ast_for_trailer(c, ch, e); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1561 | if (!tmp) |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1562 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1563 | tmp->lineno = e->lineno; |
| 1564 | tmp->col_offset = e->col_offset; |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1565 | e = tmp; |
| 1566 | } |
| 1567 | if (TYPE(CHILD(n, NCH(n) - 1)) == factor) { |
| 1568 | expr_ty f = ast_for_expr(c, CHILD(n, NCH(n) - 1)); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1569 | if (!f) |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1570 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1571 | tmp = BinOp(e, Pow, f, LINENO(n), n->n_col_offset, c->c_arena); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1572 | if (!tmp) |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1573 | return NULL; |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1574 | e = tmp; |
| 1575 | } |
| 1576 | return e; |
| 1577 | } |
| 1578 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1579 | /* Do not name a variable 'expr'! Will cause a compile error. |
| 1580 | */ |
| 1581 | |
| 1582 | static expr_ty |
| 1583 | ast_for_expr(struct compiling *c, const node *n) |
| 1584 | { |
| 1585 | /* handle the full range of simple expressions |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1586 | test: or_test ['if' or_test 'else' test] | lambdef |
| 1587 | or_test: and_test ('or' and_test)* |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1588 | and_test: not_test ('and' not_test)* |
| 1589 | not_test: 'not' not_test | comparison |
| 1590 | comparison: expr (comp_op expr)* |
| 1591 | expr: xor_expr ('|' xor_expr)* |
| 1592 | xor_expr: and_expr ('^' and_expr)* |
| 1593 | and_expr: shift_expr ('&' shift_expr)* |
| 1594 | shift_expr: arith_expr (('<<'|'>>') arith_expr)* |
| 1595 | arith_expr: term (('+'|'-') term)* |
| 1596 | term: factor (('*'|'/'|'%'|'//') factor)* |
| 1597 | factor: ('+'|'-'|'~') factor | power |
| 1598 | power: atom trailer* ('**' factor)* |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1599 | |
| 1600 | As well as modified versions that exist for backward compatibility, |
| 1601 | to explicitly allow: |
| 1602 | [ x for x in lambda: 0, lambda: 1 ] |
| 1603 | (which would be ambiguous without these extra rules) |
| 1604 | |
| 1605 | old_test: or_test | old_lambdef |
| 1606 | old_lambdef: 'lambda' [vararglist] ':' old_test |
| 1607 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1608 | */ |
| 1609 | |
| 1610 | asdl_seq *seq; |
| 1611 | int i; |
| 1612 | |
| 1613 | loop: |
| 1614 | switch (TYPE(n)) { |
| 1615 | case test: |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1616 | case old_test: |
| 1617 | if (TYPE(CHILD(n, 0)) == lambdef || |
| 1618 | TYPE(CHILD(n, 0)) == old_lambdef) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1619 | return ast_for_lambdef(c, CHILD(n, 0)); |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 1620 | else if (NCH(n) > 1) |
| 1621 | return ast_for_ifexpr(c, n); |
| 1622 | /* Fallthrough */ |
| 1623 | case or_test: |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1624 | case and_test: |
| 1625 | if (NCH(n) == 1) { |
| 1626 | n = CHILD(n, 0); |
| 1627 | goto loop; |
| 1628 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1629 | seq = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1630 | if (!seq) |
| 1631 | return NULL; |
| 1632 | for (i = 0; i < NCH(n); i += 2) { |
| 1633 | expr_ty e = ast_for_expr(c, CHILD(n, i)); |
| 1634 | if (!e) |
| 1635 | return NULL; |
| 1636 | asdl_seq_SET(seq, i / 2, e); |
| 1637 | } |
| 1638 | if (!strcmp(STR(CHILD(n, 1)), "and")) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1639 | return BoolOp(And, seq, LINENO(n), n->n_col_offset, |
| 1640 | c->c_arena); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1641 | assert(!strcmp(STR(CHILD(n, 1)), "or")); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1642 | return BoolOp(Or, seq, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1643 | case not_test: |
| 1644 | if (NCH(n) == 1) { |
| 1645 | n = CHILD(n, 0); |
| 1646 | goto loop; |
| 1647 | } |
| 1648 | else { |
| 1649 | expr_ty expression = ast_for_expr(c, CHILD(n, 1)); |
| 1650 | if (!expression) |
| 1651 | return NULL; |
| 1652 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1653 | return UnaryOp(Not, expression, LINENO(n), n->n_col_offset, |
| 1654 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1655 | } |
| 1656 | case comparison: |
| 1657 | if (NCH(n) == 1) { |
| 1658 | n = CHILD(n, 0); |
| 1659 | goto loop; |
| 1660 | } |
| 1661 | else { |
| 1662 | expr_ty expression; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1663 | asdl_int_seq *ops; |
| 1664 | asdl_seq *cmps; |
| 1665 | ops = asdl_int_seq_new(NCH(n) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1666 | if (!ops) |
| 1667 | return NULL; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1668 | cmps = asdl_seq_new(NCH(n) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1669 | if (!cmps) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1670 | return NULL; |
| 1671 | } |
| 1672 | for (i = 1; i < NCH(n); i += 2) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1673 | cmpop_ty newoperator; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1674 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1675 | newoperator = ast_for_comp_op(CHILD(n, i)); |
| 1676 | if (!newoperator) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1677 | return NULL; |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 1678 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1679 | |
| 1680 | expression = ast_for_expr(c, CHILD(n, i + 1)); |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 1681 | if (!expression) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1682 | return NULL; |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 1683 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1684 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1685 | asdl_seq_SET(ops, i / 2, newoperator); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1686 | asdl_seq_SET(cmps, i / 2, expression); |
| 1687 | } |
| 1688 | expression = ast_for_expr(c, CHILD(n, 0)); |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 1689 | if (!expression) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1690 | return NULL; |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 1691 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1692 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1693 | return Compare(expression, ops, cmps, LINENO(n), |
| 1694 | n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1695 | } |
| 1696 | break; |
| 1697 | |
| 1698 | /* The next five cases all handle BinOps. The main body of code |
| 1699 | is the same in each case, but the switch turned inside out to |
| 1700 | reuse the code for each type of operator. |
| 1701 | */ |
| 1702 | case expr: |
| 1703 | case xor_expr: |
| 1704 | case and_expr: |
| 1705 | case shift_expr: |
| 1706 | case arith_expr: |
| 1707 | case term: |
| 1708 | if (NCH(n) == 1) { |
| 1709 | n = CHILD(n, 0); |
| 1710 | goto loop; |
| 1711 | } |
| 1712 | return ast_for_binop(c, n); |
| 1713 | case yield_expr: { |
| 1714 | expr_ty exp = NULL; |
| 1715 | if (NCH(n) == 2) { |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1716 | exp = ast_for_testlist(c, CHILD(n, 1)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1717 | if (!exp) |
| 1718 | return NULL; |
| 1719 | } |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1720 | return Yield(exp, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1721 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1722 | case factor: |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1723 | if (NCH(n) == 1) { |
| 1724 | n = CHILD(n, 0); |
| 1725 | goto loop; |
| 1726 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1727 | return ast_for_factor(c, n); |
Neil Schemenauer | 982e8d6 | 2005-10-25 09:16:05 +0000 | [diff] [blame] | 1728 | case power: |
| 1729 | return ast_for_power(c, n); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1730 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 1731 | PyErr_Format(PyExc_SystemError, "unhandled expr: %d", TYPE(n)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1732 | return NULL; |
| 1733 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1734 | /* should never get here unless if error is set */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1735 | return NULL; |
| 1736 | } |
| 1737 | |
| 1738 | static expr_ty |
| 1739 | ast_for_call(struct compiling *c, const node *n, expr_ty func) |
| 1740 | { |
| 1741 | /* |
| 1742 | arglist: (argument ',')* (argument [',']| '*' test [',' '**' test] |
| 1743 | | '**' test) |
| 1744 | argument: [test '='] test [gen_for] # Really [keyword '='] test |
| 1745 | */ |
| 1746 | |
| 1747 | int i, nargs, nkeywords, ngens; |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1748 | asdl_seq *args; |
| 1749 | asdl_seq *keywords; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1750 | expr_ty vararg = NULL, kwarg = NULL; |
| 1751 | |
| 1752 | REQ(n, arglist); |
| 1753 | |
| 1754 | nargs = 0; |
| 1755 | nkeywords = 0; |
| 1756 | ngens = 0; |
| 1757 | for (i = 0; i < NCH(n); i++) { |
| 1758 | node *ch = CHILD(n, i); |
| 1759 | if (TYPE(ch) == argument) { |
| 1760 | if (NCH(ch) == 1) |
| 1761 | nargs++; |
| 1762 | else if (TYPE(CHILD(ch, 1)) == gen_for) |
| 1763 | ngens++; |
| 1764 | else |
| 1765 | nkeywords++; |
| 1766 | } |
| 1767 | } |
| 1768 | if (ngens > 1 || (ngens && (nargs || nkeywords))) { |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 1769 | ast_error(n, "Generator expression must be parenthesized " |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1770 | "if not sole argument"); |
| 1771 | return NULL; |
| 1772 | } |
| 1773 | |
| 1774 | if (nargs + nkeywords + ngens > 255) { |
| 1775 | ast_error(n, "more than 255 arguments"); |
| 1776 | return NULL; |
| 1777 | } |
| 1778 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1779 | args = asdl_seq_new(nargs + ngens, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1780 | if (!args) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1781 | return NULL; |
| 1782 | keywords = asdl_seq_new(nkeywords, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1783 | if (!keywords) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1784 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1785 | nargs = 0; |
| 1786 | nkeywords = 0; |
| 1787 | for (i = 0; i < NCH(n); i++) { |
| 1788 | node *ch = CHILD(n, i); |
| 1789 | if (TYPE(ch) == argument) { |
| 1790 | expr_ty e; |
| 1791 | if (NCH(ch) == 1) { |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1792 | if (nkeywords) { |
| 1793 | ast_error(CHILD(ch, 0), |
| 1794 | "non-keyword arg after keyword arg"); |
| 1795 | return NULL; |
| 1796 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1797 | e = ast_for_expr(c, CHILD(ch, 0)); |
| 1798 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1799 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1800 | asdl_seq_SET(args, nargs++, e); |
| 1801 | } |
| 1802 | else if (TYPE(CHILD(ch, 1)) == gen_for) { |
| 1803 | e = ast_for_genexp(c, ch); |
| 1804 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1805 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1806 | asdl_seq_SET(args, nargs++, e); |
| 1807 | } |
| 1808 | else { |
| 1809 | keyword_ty kw; |
| 1810 | identifier key; |
| 1811 | |
| 1812 | /* CHILD(ch, 0) is test, but must be an identifier? */ |
| 1813 | e = ast_for_expr(c, CHILD(ch, 0)); |
| 1814 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1815 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1816 | /* f(lambda x: x[0] = 3) ends up getting parsed with |
| 1817 | * LHS test = lambda x: x[0], and RHS test = 3. |
| 1818 | * SF bug 132313 points out that complaining about a keyword |
| 1819 | * then is very confusing. |
| 1820 | */ |
| 1821 | if (e->kind == Lambda_kind) { |
| 1822 | ast_error(CHILD(ch, 0), "lambda cannot contain assignment"); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1823 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1824 | } else if (e->kind != Name_kind) { |
| 1825 | ast_error(CHILD(ch, 0), "keyword can't be an expression"); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1826 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1827 | } |
| 1828 | key = e->v.Name.id; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1829 | e = ast_for_expr(c, CHILD(ch, 2)); |
| 1830 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1831 | return NULL; |
| 1832 | kw = keyword(key, e, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1833 | if (!kw) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1834 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1835 | asdl_seq_SET(keywords, nkeywords++, kw); |
| 1836 | } |
| 1837 | } |
| 1838 | else if (TYPE(ch) == STAR) { |
| 1839 | vararg = ast_for_expr(c, CHILD(n, i+1)); |
| 1840 | i++; |
| 1841 | } |
| 1842 | else if (TYPE(ch) == DOUBLESTAR) { |
| 1843 | kwarg = ast_for_expr(c, CHILD(n, i+1)); |
| 1844 | i++; |
| 1845 | } |
| 1846 | } |
| 1847 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1848 | return Call(func, args, keywords, vararg, kwarg, func->lineno, func->col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1849 | } |
| 1850 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1851 | static expr_ty |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1852 | ast_for_testlist(struct compiling *c, const node* n) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1853 | { |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1854 | /* testlist_gexp: test (',' test)* [','] */ |
| 1855 | /* testlist: test (',' test)* [','] */ |
| 1856 | /* testlist_safe: test (',' test)+ [','] */ |
| 1857 | /* testlist1: test (',' test)* */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1858 | assert(NCH(n) > 0); |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1859 | if (TYPE(n) == testlist_gexp) { |
| 1860 | if (NCH(n) > 1) |
| 1861 | assert(TYPE(CHILD(n, 1)) != gen_for); |
| 1862 | } |
| 1863 | else { |
| 1864 | assert(TYPE(n) == testlist || |
| 1865 | TYPE(n) == testlist_safe || |
| 1866 | TYPE(n) == testlist1); |
| 1867 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1868 | if (NCH(n) == 1) |
| 1869 | return ast_for_expr(c, CHILD(n, 0)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1870 | else { |
| 1871 | asdl_seq *tmp = seq_for_testlist(c, n); |
| 1872 | if (!tmp) |
| 1873 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1874 | return Tuple(tmp, Load, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1875 | } |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | static expr_ty |
| 1879 | ast_for_testlist_gexp(struct compiling *c, const node* n) |
| 1880 | { |
| 1881 | /* testlist_gexp: test ( gen_for | (',' test)* [','] ) */ |
| 1882 | /* argument: test [ gen_for ] */ |
| 1883 | assert(TYPE(n) == testlist_gexp || TYPE(n) == argument); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1884 | if (NCH(n) > 1 && TYPE(CHILD(n, 1)) == gen_for) |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1885 | return ast_for_genexp(c, n); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1886 | return ast_for_testlist(c, n); |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1887 | } |
| 1888 | |
| 1889 | /* like ast_for_testlist() but returns a sequence */ |
| 1890 | static asdl_seq* |
| 1891 | ast_for_class_bases(struct compiling *c, const node* n) |
| 1892 | { |
| 1893 | /* testlist: test (',' test)* [','] */ |
| 1894 | assert(NCH(n) > 0); |
| 1895 | REQ(n, testlist); |
| 1896 | if (NCH(n) == 1) { |
| 1897 | expr_ty base; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1898 | asdl_seq *bases = asdl_seq_new(1, c->c_arena); |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1899 | if (!bases) |
| 1900 | return NULL; |
| 1901 | base = ast_for_expr(c, CHILD(n, 0)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1902 | if (!base) |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1903 | return NULL; |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1904 | asdl_seq_SET(bases, 0, base); |
| 1905 | return bases; |
| 1906 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1907 | |
| 1908 | return seq_for_testlist(c, n); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1909 | } |
| 1910 | |
| 1911 | static stmt_ty |
| 1912 | ast_for_expr_stmt(struct compiling *c, const node *n) |
| 1913 | { |
| 1914 | REQ(n, expr_stmt); |
| 1915 | /* expr_stmt: testlist (augassign (yield_expr|testlist) |
| 1916 | | ('=' (yield_expr|testlist))*) |
| 1917 | testlist: test (',' test)* [','] |
| 1918 | augassign: '+=' | '-=' | '*=' | '/=' | '%=' | '&=' | '|=' | '^=' |
| 1919 | | '<<=' | '>>=' | '**=' | '//=' |
| 1920 | test: ... here starts the operator precendence dance |
| 1921 | */ |
| 1922 | |
| 1923 | if (NCH(n) == 1) { |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1924 | expr_ty e = ast_for_testlist(c, CHILD(n, 0)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1925 | if (!e) |
| 1926 | return NULL; |
| 1927 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 1928 | return Expr(e, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1929 | } |
| 1930 | else if (TYPE(CHILD(n, 1)) == augassign) { |
| 1931 | expr_ty expr1, expr2; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1932 | operator_ty newoperator; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1933 | node *ch = CHILD(n, 0); |
| 1934 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1935 | expr1 = ast_for_testlist(c, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1936 | if (!expr1) |
| 1937 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1938 | /* TODO(nas): Remove duplicated error checks (set_context does it) */ |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 1939 | switch (expr1->kind) { |
| 1940 | case GeneratorExp_kind: |
| 1941 | ast_error(ch, "augmented assignment to generator " |
| 1942 | "expression not possible"); |
| 1943 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1944 | case Yield_kind: |
| 1945 | ast_error(ch, "augmented assignment to yield " |
| 1946 | "expression not possible"); |
| 1947 | return NULL; |
Jeremy Hylton | c960f26 | 2006-01-27 15:18:39 +0000 | [diff] [blame] | 1948 | case Name_kind: { |
| 1949 | const char *var_name = PyString_AS_STRING(expr1->v.Name.id); |
| 1950 | if (var_name[0] == 'N' && !strcmp(var_name, "None")) { |
| 1951 | ast_error(ch, "assignment to None"); |
| 1952 | return NULL; |
| 1953 | } |
| 1954 | break; |
| 1955 | } |
| 1956 | case Attribute_kind: |
| 1957 | case Subscript_kind: |
| 1958 | break; |
| 1959 | default: |
| 1960 | ast_error(ch, "illegal expression for augmented " |
| 1961 | "assignment"); |
| 1962 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1963 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1964 | set_context(expr1, Store, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1965 | |
| 1966 | ch = CHILD(n, 2); |
| 1967 | if (TYPE(ch) == testlist) |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1968 | expr2 = ast_for_testlist(c, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1969 | else |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1970 | expr2 = ast_for_expr(c, ch); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 1971 | if (!expr2) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1972 | return NULL; |
| 1973 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1974 | newoperator = ast_for_augassign(CHILD(n, 1)); |
| 1975 | if (!newoperator) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1976 | return NULL; |
| 1977 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1978 | return AugAssign(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1979 | } |
| 1980 | else { |
| 1981 | int i; |
| 1982 | asdl_seq *targets; |
| 1983 | node *value; |
| 1984 | expr_ty expression; |
| 1985 | |
| 1986 | /* a normal assignment */ |
| 1987 | REQ(CHILD(n, 1), EQUAL); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1988 | targets = asdl_seq_new(NCH(n) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1989 | if (!targets) |
| 1990 | return NULL; |
| 1991 | for (i = 0; i < NCH(n) - 2; i += 2) { |
Armin Rigo | 3144130 | 2005-10-21 12:57:31 +0000 | [diff] [blame] | 1992 | expr_ty e; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1993 | node *ch = CHILD(n, i); |
| 1994 | if (TYPE(ch) == yield_expr) { |
| 1995 | ast_error(ch, "assignment to yield expression not possible"); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 1996 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1997 | } |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 1998 | e = ast_for_testlist(c, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1999 | |
| 2000 | /* set context to assign */ |
| 2001 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2002 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2003 | |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2004 | if (!set_context(e, Store, CHILD(n, i))) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2005 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2006 | |
| 2007 | asdl_seq_SET(targets, i / 2, e); |
| 2008 | } |
| 2009 | value = CHILD(n, NCH(n) - 1); |
| 2010 | if (TYPE(value) == testlist) |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 2011 | expression = ast_for_testlist(c, value); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2012 | else |
| 2013 | expression = ast_for_expr(c, value); |
| 2014 | if (!expression) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2015 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2016 | return Assign(targets, expression, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2017 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2018 | } |
| 2019 | |
| 2020 | static stmt_ty |
| 2021 | ast_for_print_stmt(struct compiling *c, const node *n) |
| 2022 | { |
| 2023 | /* print_stmt: 'print' ( [ test (',' test)* [','] ] |
| 2024 | | '>>' test [ (',' test)+ [','] ] ) |
| 2025 | */ |
| 2026 | expr_ty dest = NULL, expression; |
| 2027 | asdl_seq *seq; |
| 2028 | bool nl; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 2029 | int i, j, start = 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2030 | |
| 2031 | REQ(n, print_stmt); |
| 2032 | if (NCH(n) >= 2 && TYPE(CHILD(n, 1)) == RIGHTSHIFT) { |
| 2033 | dest = ast_for_expr(c, CHILD(n, 2)); |
| 2034 | if (!dest) |
| 2035 | return NULL; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 2036 | start = 4; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2037 | } |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2038 | seq = asdl_seq_new((NCH(n) + 1 - start) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2039 | if (!seq) |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 2040 | return NULL; |
| 2041 | for (i = start, j = 0; i < NCH(n); i += 2, ++j) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2042 | expression = ast_for_expr(c, CHILD(n, i)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2043 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2044 | return NULL; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 2045 | asdl_seq_SET(seq, j, expression); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2046 | } |
| 2047 | nl = (TYPE(CHILD(n, NCH(n) - 1)) == COMMA) ? false : true; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2048 | return Print(dest, seq, nl, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
| 2051 | static asdl_seq * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2052 | ast_for_exprlist(struct compiling *c, const node *n, expr_context_ty context) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2053 | { |
| 2054 | asdl_seq *seq; |
| 2055 | int i; |
| 2056 | expr_ty e; |
| 2057 | |
| 2058 | REQ(n, exprlist); |
| 2059 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2060 | seq = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2061 | if (!seq) |
| 2062 | return NULL; |
| 2063 | for (i = 0; i < NCH(n); i += 2) { |
| 2064 | e = ast_for_expr(c, CHILD(n, i)); |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 2065 | if (!e) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2066 | return NULL; |
Neal Norwitz | 6b34789 | 2005-11-15 07:17:53 +0000 | [diff] [blame] | 2067 | asdl_seq_SET(seq, i / 2, e); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2068 | if (context && !set_context(e, context, CHILD(n, i))) |
| 2069 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2070 | } |
| 2071 | return seq; |
| 2072 | } |
| 2073 | |
| 2074 | static stmt_ty |
| 2075 | ast_for_del_stmt(struct compiling *c, const node *n) |
| 2076 | { |
| 2077 | asdl_seq *expr_list; |
| 2078 | |
| 2079 | /* del_stmt: 'del' exprlist */ |
| 2080 | REQ(n, del_stmt); |
| 2081 | |
| 2082 | expr_list = ast_for_exprlist(c, CHILD(n, 1), Del); |
| 2083 | if (!expr_list) |
| 2084 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2085 | return Delete(expr_list, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2086 | } |
| 2087 | |
| 2088 | static stmt_ty |
| 2089 | ast_for_flow_stmt(struct compiling *c, const node *n) |
| 2090 | { |
| 2091 | /* |
| 2092 | flow_stmt: break_stmt | continue_stmt | return_stmt | raise_stmt |
| 2093 | | yield_stmt |
| 2094 | break_stmt: 'break' |
| 2095 | continue_stmt: 'continue' |
| 2096 | return_stmt: 'return' [testlist] |
| 2097 | yield_stmt: yield_expr |
| 2098 | yield_expr: 'yield' testlist |
| 2099 | raise_stmt: 'raise' [test [',' test [',' test]]] |
| 2100 | */ |
| 2101 | node *ch; |
| 2102 | |
| 2103 | REQ(n, flow_stmt); |
| 2104 | ch = CHILD(n, 0); |
| 2105 | switch (TYPE(ch)) { |
| 2106 | case break_stmt: |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2107 | return Break(LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2108 | case continue_stmt: |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2109 | return Continue(LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2110 | case yield_stmt: { /* will reduce to yield_expr */ |
| 2111 | expr_ty exp = ast_for_expr(c, CHILD(ch, 0)); |
| 2112 | if (!exp) |
| 2113 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2114 | return Expr(exp, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2115 | } |
| 2116 | case return_stmt: |
| 2117 | if (NCH(ch) == 1) |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2118 | return Return(NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2119 | else { |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 2120 | expr_ty expression = ast_for_testlist(c, CHILD(ch, 1)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2121 | if (!expression) |
| 2122 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2123 | return Return(expression, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2124 | } |
| 2125 | case raise_stmt: |
| 2126 | if (NCH(ch) == 1) |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2127 | return Raise(NULL, NULL, NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2128 | else if (NCH(ch) == 2) { |
| 2129 | expr_ty expression = ast_for_expr(c, CHILD(ch, 1)); |
| 2130 | if (!expression) |
| 2131 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2132 | return Raise(expression, NULL, NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2133 | } |
| 2134 | else if (NCH(ch) == 4) { |
| 2135 | expr_ty expr1, expr2; |
| 2136 | |
| 2137 | expr1 = ast_for_expr(c, CHILD(ch, 1)); |
| 2138 | if (!expr1) |
| 2139 | return NULL; |
| 2140 | expr2 = ast_for_expr(c, CHILD(ch, 3)); |
| 2141 | if (!expr2) |
| 2142 | return NULL; |
| 2143 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2144 | return Raise(expr1, expr2, NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2145 | } |
| 2146 | else if (NCH(ch) == 6) { |
| 2147 | expr_ty expr1, expr2, expr3; |
| 2148 | |
| 2149 | expr1 = ast_for_expr(c, CHILD(ch, 1)); |
| 2150 | if (!expr1) |
| 2151 | return NULL; |
| 2152 | expr2 = ast_for_expr(c, CHILD(ch, 3)); |
| 2153 | if (!expr2) |
| 2154 | return NULL; |
| 2155 | expr3 = ast_for_expr(c, CHILD(ch, 5)); |
| 2156 | if (!expr3) |
| 2157 | return NULL; |
| 2158 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2159 | return Raise(expr1, expr2, expr3, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2160 | } |
| 2161 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2162 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2163 | "unexpected flow_stmt: %d", TYPE(ch)); |
| 2164 | return NULL; |
| 2165 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2166 | |
| 2167 | PyErr_SetString(PyExc_SystemError, "unhandled flow statement"); |
| 2168 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2169 | } |
| 2170 | |
| 2171 | static alias_ty |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2172 | alias_for_import_name(struct compiling *c, const node *n) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2173 | { |
| 2174 | /* |
Thomas Wouters | 8ae1295 | 2006-02-28 22:42:15 +0000 | [diff] [blame] | 2175 | import_as_name: NAME ['as' NAME] |
| 2176 | dotted_as_name: dotted_name ['as' NAME] |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2177 | dotted_name: NAME ('.' NAME)* |
| 2178 | */ |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2179 | PyObject *str; |
| 2180 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2181 | loop: |
| 2182 | switch (TYPE(n)) { |
| 2183 | case import_as_name: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2184 | str = NULL; |
| 2185 | if (NCH(n) == 3) { |
| 2186 | if (strcmp(STR(CHILD(n, 1)), "as") != 0) { |
| 2187 | ast_error(n, "must use 'as' in import"); |
| 2188 | return NULL; |
| 2189 | } |
| 2190 | str = NEW_IDENTIFIER(CHILD(n, 2)); |
| 2191 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2192 | return alias(NEW_IDENTIFIER(CHILD(n, 0)), str, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2193 | case dotted_as_name: |
| 2194 | if (NCH(n) == 1) { |
| 2195 | n = CHILD(n, 0); |
| 2196 | goto loop; |
| 2197 | } |
| 2198 | else { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2199 | alias_ty a = alias_for_import_name(c, CHILD(n, 0)); |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 2200 | if (!a) |
| 2201 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2202 | if (strcmp(STR(CHILD(n, 1)), "as") != 0) { |
| 2203 | ast_error(n, "must use 'as' in import"); |
| 2204 | return NULL; |
| 2205 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2206 | assert(!a->asname); |
| 2207 | a->asname = NEW_IDENTIFIER(CHILD(n, 2)); |
| 2208 | return a; |
| 2209 | } |
| 2210 | break; |
| 2211 | case dotted_name: |
| 2212 | if (NCH(n) == 1) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2213 | return alias(NEW_IDENTIFIER(CHILD(n, 0)), NULL, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2214 | else { |
| 2215 | /* Create a string of the form "a.b.c" */ |
Tim Peters | e93e64f | 2006-01-08 02:28:41 +0000 | [diff] [blame] | 2216 | int i; |
Tim Peters | 5db42c4 | 2006-01-08 02:25:34 +0000 | [diff] [blame] | 2217 | size_t len; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2218 | char *s; |
| 2219 | |
| 2220 | len = 0; |
| 2221 | for (i = 0; i < NCH(n); i += 2) |
| 2222 | /* length of string plus one for the dot */ |
| 2223 | len += strlen(STR(CHILD(n, i))) + 1; |
| 2224 | len--; /* the last name doesn't have a dot */ |
| 2225 | str = PyString_FromStringAndSize(NULL, len); |
| 2226 | if (!str) |
| 2227 | return NULL; |
| 2228 | s = PyString_AS_STRING(str); |
| 2229 | if (!s) |
| 2230 | return NULL; |
| 2231 | for (i = 0; i < NCH(n); i += 2) { |
| 2232 | char *sch = STR(CHILD(n, i)); |
| 2233 | strcpy(s, STR(CHILD(n, i))); |
| 2234 | s += strlen(sch); |
| 2235 | *s++ = '.'; |
| 2236 | } |
| 2237 | --s; |
| 2238 | *s = '\0'; |
| 2239 | PyString_InternInPlace(&str); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2240 | PyArena_AddPyObject(c->c_arena, str); |
| 2241 | return alias(str, NULL, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2242 | } |
| 2243 | break; |
| 2244 | case STAR: |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2245 | str = PyString_InternFromString("*"); |
| 2246 | PyArena_AddPyObject(c->c_arena, str); |
| 2247 | return alias(str, NULL, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2248 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2249 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2250 | "unexpected import name: %d", TYPE(n)); |
| 2251 | return NULL; |
| 2252 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2253 | |
| 2254 | PyErr_SetString(PyExc_SystemError, "unhandled import name condition"); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2255 | return NULL; |
| 2256 | } |
| 2257 | |
| 2258 | static stmt_ty |
| 2259 | ast_for_import_stmt(struct compiling *c, const node *n) |
| 2260 | { |
| 2261 | /* |
| 2262 | import_stmt: import_name | import_from |
| 2263 | import_name: 'import' dotted_as_names |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2264 | import_from: 'from' ('.'* dotted_name | '.') 'import' |
| 2265 | ('*' | '(' import_as_names ')' | import_as_names) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2266 | */ |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2267 | int lineno; |
| 2268 | int col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2269 | int i; |
| 2270 | asdl_seq *aliases; |
| 2271 | |
| 2272 | REQ(n, import_stmt); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2273 | lineno = LINENO(n); |
| 2274 | col_offset = n->n_col_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2275 | n = CHILD(n, 0); |
Thomas Wouters | 8622e93 | 2006-02-27 17:14:45 +0000 | [diff] [blame] | 2276 | if (TYPE(n) == import_name) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2277 | n = CHILD(n, 1); |
Neil Schemenauer | 147b759 | 2005-10-23 03:38:19 +0000 | [diff] [blame] | 2278 | REQ(n, dotted_as_names); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2279 | aliases = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2280 | if (!aliases) |
| 2281 | return NULL; |
| 2282 | for (i = 0; i < NCH(n); i += 2) { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2283 | alias_ty import_alias = alias_for_import_name(c, CHILD(n, i)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2284 | if (!import_alias) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2285 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2286 | asdl_seq_SET(aliases, i / 2, import_alias); |
| 2287 | } |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2288 | return Import(aliases, lineno, col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2289 | } |
Thomas Wouters | 8622e93 | 2006-02-27 17:14:45 +0000 | [diff] [blame] | 2290 | else if (TYPE(n) == import_from) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2291 | int n_children; |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2292 | int idx, ndots = 0; |
| 2293 | alias_ty mod = NULL; |
| 2294 | identifier modname; |
| 2295 | |
| 2296 | /* Count the number of dots (for relative imports) and check for the |
| 2297 | optional module name */ |
| 2298 | for (idx = 1; idx < NCH(n); idx++) { |
| 2299 | if (TYPE(CHILD(n, idx)) == dotted_name) { |
| 2300 | mod = alias_for_import_name(c, CHILD(n, idx)); |
| 2301 | idx++; |
| 2302 | break; |
| 2303 | } else if (TYPE(CHILD(n, idx)) != DOT) { |
| 2304 | break; |
| 2305 | } |
| 2306 | ndots++; |
| 2307 | } |
| 2308 | idx++; /* skip over the 'import' keyword */ |
| 2309 | switch (TYPE(CHILD(n, idx))) { |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2310 | case STAR: |
| 2311 | /* from ... import * */ |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2312 | n = CHILD(n, idx); |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2313 | n_children = 1; |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2314 | if (ndots) { |
| 2315 | ast_error(n, "'import *' not allowed with 'from .'"); |
| 2316 | return NULL; |
| 2317 | } |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2318 | break; |
| 2319 | case LPAR: |
| 2320 | /* from ... import (x, y, z) */ |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2321 | n = CHILD(n, idx + 1); |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2322 | n_children = NCH(n); |
| 2323 | break; |
| 2324 | case import_as_names: |
| 2325 | /* from ... import x, y, z */ |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2326 | n = CHILD(n, idx); |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2327 | n_children = NCH(n); |
| 2328 | if (n_children % 2 == 0) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2329 | ast_error(n, "trailing comma not allowed without" |
| 2330 | " surrounding parentheses"); |
| 2331 | return NULL; |
| 2332 | } |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2333 | break; |
| 2334 | default: |
| 2335 | ast_error(n, "Unexpected node-type in from-import"); |
| 2336 | return NULL; |
Neal Norwitz | e76adcd | 2005-11-15 05:04:31 +0000 | [diff] [blame] | 2337 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2338 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2339 | aliases = asdl_seq_new((n_children + 1) / 2, c->c_arena); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2340 | if (!aliases) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2341 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2342 | |
| 2343 | /* handle "from ... import *" special b/c there's no children */ |
Thomas Wouters | 106203c | 2006-02-27 17:05:19 +0000 | [diff] [blame] | 2344 | if (TYPE(n) == STAR) { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2345 | alias_ty import_alias = alias_for_import_name(c, n); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2346 | if (!import_alias) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2347 | return NULL; |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 2348 | asdl_seq_SET(aliases, 0, import_alias); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2349 | } |
Jeremy Hylton | a829313 | 2006-02-28 17:58:27 +0000 | [diff] [blame] | 2350 | else { |
| 2351 | for (i = 0; i < NCH(n); i += 2) { |
| 2352 | alias_ty import_alias = alias_for_import_name(c, CHILD(n, i)); |
| 2353 | if (!import_alias) |
| 2354 | return NULL; |
| 2355 | asdl_seq_SET(aliases, i / 2, import_alias); |
| 2356 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2357 | } |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2358 | if (mod != NULL) |
| 2359 | modname = mod->name; |
| 2360 | else |
| 2361 | modname = new_identifier("", c->c_arena); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2362 | return ImportFrom(modname, aliases, ndots, lineno, col_offset, |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 2363 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2364 | } |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2365 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2366 | "unknown import statement: starts with command '%s'", |
| 2367 | STR(CHILD(n, 0))); |
| 2368 | return NULL; |
| 2369 | } |
| 2370 | |
| 2371 | static stmt_ty |
| 2372 | ast_for_global_stmt(struct compiling *c, const node *n) |
| 2373 | { |
| 2374 | /* global_stmt: 'global' NAME (',' NAME)* */ |
| 2375 | identifier name; |
| 2376 | asdl_seq *s; |
| 2377 | int i; |
| 2378 | |
| 2379 | REQ(n, global_stmt); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2380 | s = asdl_seq_new(NCH(n) / 2, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2381 | if (!s) |
| 2382 | return NULL; |
| 2383 | for (i = 1; i < NCH(n); i += 2) { |
| 2384 | name = NEW_IDENTIFIER(CHILD(n, i)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2385 | if (!name) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2386 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2387 | asdl_seq_SET(s, i / 2, name); |
| 2388 | } |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2389 | return Global(s, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2390 | } |
| 2391 | |
| 2392 | static stmt_ty |
| 2393 | ast_for_exec_stmt(struct compiling *c, const node *n) |
| 2394 | { |
| 2395 | expr_ty expr1, globals = NULL, locals = NULL; |
| 2396 | int n_children = NCH(n); |
| 2397 | if (n_children != 2 && n_children != 4 && n_children != 6) { |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2398 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2399 | "poorly formed 'exec' statement: %d parts to statement", |
| 2400 | n_children); |
| 2401 | return NULL; |
| 2402 | } |
| 2403 | |
| 2404 | /* exec_stmt: 'exec' expr ['in' test [',' test]] */ |
| 2405 | REQ(n, exec_stmt); |
| 2406 | expr1 = ast_for_expr(c, CHILD(n, 1)); |
| 2407 | if (!expr1) |
| 2408 | return NULL; |
| 2409 | if (n_children >= 4) { |
| 2410 | globals = ast_for_expr(c, CHILD(n, 3)); |
| 2411 | if (!globals) |
| 2412 | return NULL; |
| 2413 | } |
| 2414 | if (n_children == 6) { |
| 2415 | locals = ast_for_expr(c, CHILD(n, 5)); |
| 2416 | if (!locals) |
| 2417 | return NULL; |
| 2418 | } |
| 2419 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2420 | return Exec(expr1, globals, locals, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2421 | } |
| 2422 | |
| 2423 | static stmt_ty |
| 2424 | ast_for_assert_stmt(struct compiling *c, const node *n) |
| 2425 | { |
| 2426 | /* assert_stmt: 'assert' test [',' test] */ |
| 2427 | REQ(n, assert_stmt); |
| 2428 | if (NCH(n) == 2) { |
| 2429 | expr_ty expression = ast_for_expr(c, CHILD(n, 1)); |
| 2430 | if (!expression) |
| 2431 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2432 | return Assert(expression, NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2433 | } |
| 2434 | else if (NCH(n) == 4) { |
| 2435 | expr_ty expr1, expr2; |
| 2436 | |
| 2437 | expr1 = ast_for_expr(c, CHILD(n, 1)); |
| 2438 | if (!expr1) |
| 2439 | return NULL; |
| 2440 | expr2 = ast_for_expr(c, CHILD(n, 3)); |
| 2441 | if (!expr2) |
| 2442 | return NULL; |
| 2443 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2444 | return Assert(expr1, expr2, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2445 | } |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2446 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2447 | "improper number of parts to 'assert' statement: %d", |
| 2448 | NCH(n)); |
| 2449 | return NULL; |
| 2450 | } |
| 2451 | |
| 2452 | static asdl_seq * |
| 2453 | ast_for_suite(struct compiling *c, const node *n) |
| 2454 | { |
| 2455 | /* suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT */ |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2456 | asdl_seq *seq; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2457 | stmt_ty s; |
| 2458 | int i, total, num, end, pos = 0; |
| 2459 | node *ch; |
| 2460 | |
| 2461 | REQ(n, suite); |
| 2462 | |
| 2463 | total = num_stmts(n); |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2464 | seq = asdl_seq_new(total, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2465 | if (!seq) |
| 2466 | return NULL; |
| 2467 | if (TYPE(CHILD(n, 0)) == simple_stmt) { |
| 2468 | n = CHILD(n, 0); |
| 2469 | /* simple_stmt always ends with a NEWLINE, |
| 2470 | and may have a trailing SEMI |
| 2471 | */ |
| 2472 | end = NCH(n) - 1; |
| 2473 | if (TYPE(CHILD(n, end - 1)) == SEMI) |
| 2474 | end--; |
| 2475 | /* loop by 2 to skip semi-colons */ |
| 2476 | for (i = 0; i < end; i += 2) { |
| 2477 | ch = CHILD(n, i); |
| 2478 | s = ast_for_stmt(c, ch); |
| 2479 | if (!s) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2480 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2481 | asdl_seq_SET(seq, pos++, s); |
| 2482 | } |
| 2483 | } |
| 2484 | else { |
| 2485 | for (i = 2; i < (NCH(n) - 1); i++) { |
| 2486 | ch = CHILD(n, i); |
| 2487 | REQ(ch, stmt); |
| 2488 | num = num_stmts(ch); |
| 2489 | if (num == 1) { |
| 2490 | /* small_stmt or compound_stmt with only one child */ |
| 2491 | s = ast_for_stmt(c, ch); |
| 2492 | if (!s) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2493 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2494 | asdl_seq_SET(seq, pos++, s); |
| 2495 | } |
| 2496 | else { |
| 2497 | int j; |
| 2498 | ch = CHILD(ch, 0); |
| 2499 | REQ(ch, simple_stmt); |
| 2500 | for (j = 0; j < NCH(ch); j += 2) { |
Neal Norwitz | f8d403d | 2005-12-11 20:12:40 +0000 | [diff] [blame] | 2501 | /* statement terminates with a semi-colon ';' */ |
| 2502 | if (NCH(CHILD(ch, j)) == 0) { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2503 | assert((j + 1) == NCH(ch)); |
| 2504 | break; |
Neal Norwitz | f8d403d | 2005-12-11 20:12:40 +0000 | [diff] [blame] | 2505 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2506 | s = ast_for_stmt(c, CHILD(ch, j)); |
| 2507 | if (!s) |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2508 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2509 | asdl_seq_SET(seq, pos++, s); |
| 2510 | } |
| 2511 | } |
| 2512 | } |
| 2513 | } |
| 2514 | assert(pos == seq->size); |
| 2515 | return seq; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2516 | } |
| 2517 | |
| 2518 | static stmt_ty |
| 2519 | ast_for_if_stmt(struct compiling *c, const node *n) |
| 2520 | { |
| 2521 | /* if_stmt: 'if' test ':' suite ('elif' test ':' suite)* |
| 2522 | ['else' ':' suite] |
| 2523 | */ |
| 2524 | char *s; |
| 2525 | |
| 2526 | REQ(n, if_stmt); |
| 2527 | |
| 2528 | if (NCH(n) == 4) { |
| 2529 | expr_ty expression; |
| 2530 | asdl_seq *suite_seq; |
| 2531 | |
| 2532 | expression = ast_for_expr(c, CHILD(n, 1)); |
| 2533 | if (!expression) |
| 2534 | return NULL; |
| 2535 | suite_seq = ast_for_suite(c, CHILD(n, 3)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2536 | if (!suite_seq) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2537 | return NULL; |
| 2538 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2539 | return If(expression, suite_seq, NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2540 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2541 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2542 | s = STR(CHILD(n, 4)); |
| 2543 | /* s[2], the third character in the string, will be |
| 2544 | 's' for el_s_e, or |
| 2545 | 'i' for el_i_f |
| 2546 | */ |
| 2547 | if (s[2] == 's') { |
| 2548 | expr_ty expression; |
| 2549 | asdl_seq *seq1, *seq2; |
| 2550 | |
| 2551 | expression = ast_for_expr(c, CHILD(n, 1)); |
| 2552 | if (!expression) |
| 2553 | return NULL; |
| 2554 | seq1 = ast_for_suite(c, CHILD(n, 3)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2555 | if (!seq1) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2556 | return NULL; |
| 2557 | seq2 = ast_for_suite(c, CHILD(n, 6)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2558 | if (!seq2) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2559 | return NULL; |
| 2560 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2561 | return If(expression, seq1, seq2, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2562 | } |
| 2563 | else if (s[2] == 'i') { |
| 2564 | int i, n_elif, has_else = 0; |
| 2565 | asdl_seq *orelse = NULL; |
| 2566 | n_elif = NCH(n) - 4; |
| 2567 | /* must reference the child n_elif+1 since 'else' token is third, |
| 2568 | not fourth, child from the end. */ |
| 2569 | if (TYPE(CHILD(n, (n_elif + 1))) == NAME |
| 2570 | && STR(CHILD(n, (n_elif + 1)))[2] == 's') { |
| 2571 | has_else = 1; |
| 2572 | n_elif -= 3; |
| 2573 | } |
| 2574 | n_elif /= 4; |
| 2575 | |
| 2576 | if (has_else) { |
| 2577 | expr_ty expression; |
| 2578 | asdl_seq *seq1, *seq2; |
| 2579 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2580 | orelse = asdl_seq_new(1, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2581 | if (!orelse) |
| 2582 | return NULL; |
| 2583 | expression = ast_for_expr(c, CHILD(n, NCH(n) - 6)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2584 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2585 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2586 | seq1 = ast_for_suite(c, CHILD(n, NCH(n) - 4)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2587 | if (!seq1) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2588 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2589 | seq2 = ast_for_suite(c, CHILD(n, NCH(n) - 1)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2590 | if (!seq2) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2591 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2592 | |
| 2593 | asdl_seq_SET(orelse, 0, If(expression, seq1, seq2, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2594 | LINENO(CHILD(n, NCH(n) - 6)), CHILD(n, NCH(n) - 6)->n_col_offset, |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 2595 | c->c_arena)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2596 | /* the just-created orelse handled the last elif */ |
| 2597 | n_elif--; |
| 2598 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2599 | |
| 2600 | for (i = 0; i < n_elif; i++) { |
| 2601 | int off = 5 + (n_elif - i - 1) * 4; |
| 2602 | expr_ty expression; |
| 2603 | asdl_seq *suite_seq; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2604 | asdl_seq *newobj = asdl_seq_new(1, c->c_arena); |
| 2605 | if (!newobj) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2606 | return NULL; |
| 2607 | expression = ast_for_expr(c, CHILD(n, off)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2608 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2609 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2610 | suite_seq = ast_for_suite(c, CHILD(n, off + 2)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2611 | if (!suite_seq) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2612 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2613 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2614 | asdl_seq_SET(newobj, 0, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2615 | If(expression, suite_seq, orelse, |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2616 | LINENO(CHILD(n, off)), CHILD(n, off)->n_col_offset, c->c_arena)); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2617 | orelse = newobj; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2618 | } |
| 2619 | return If(ast_for_expr(c, CHILD(n, 1)), |
| 2620 | ast_for_suite(c, CHILD(n, 3)), |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2621 | orelse, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2622 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2623 | |
| 2624 | PyErr_Format(PyExc_SystemError, |
| 2625 | "unexpected token in 'if' statement: %s", s); |
| 2626 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2627 | } |
| 2628 | |
| 2629 | static stmt_ty |
| 2630 | ast_for_while_stmt(struct compiling *c, const node *n) |
| 2631 | { |
| 2632 | /* while_stmt: 'while' test ':' suite ['else' ':' suite] */ |
| 2633 | REQ(n, while_stmt); |
| 2634 | |
| 2635 | if (NCH(n) == 4) { |
| 2636 | expr_ty expression; |
| 2637 | asdl_seq *suite_seq; |
| 2638 | |
| 2639 | expression = ast_for_expr(c, CHILD(n, 1)); |
| 2640 | if (!expression) |
| 2641 | return NULL; |
| 2642 | suite_seq = ast_for_suite(c, CHILD(n, 3)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2643 | if (!suite_seq) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2644 | return NULL; |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2645 | return While(expression, suite_seq, NULL, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2646 | } |
| 2647 | else if (NCH(n) == 7) { |
| 2648 | expr_ty expression; |
| 2649 | asdl_seq *seq1, *seq2; |
| 2650 | |
| 2651 | expression = ast_for_expr(c, CHILD(n, 1)); |
| 2652 | if (!expression) |
| 2653 | return NULL; |
| 2654 | seq1 = ast_for_suite(c, CHILD(n, 3)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2655 | if (!seq1) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2656 | return NULL; |
| 2657 | seq2 = ast_for_suite(c, CHILD(n, 6)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2658 | if (!seq2) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2659 | return NULL; |
| 2660 | |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2661 | return While(expression, seq1, seq2, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2662 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2663 | |
| 2664 | PyErr_Format(PyExc_SystemError, |
| 2665 | "wrong number of tokens for 'while' statement: %d", |
| 2666 | NCH(n)); |
| 2667 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2668 | } |
| 2669 | |
| 2670 | static stmt_ty |
| 2671 | ast_for_for_stmt(struct compiling *c, const node *n) |
| 2672 | { |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2673 | asdl_seq *_target, *seq = NULL, *suite_seq; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2674 | expr_ty expression; |
| 2675 | expr_ty target; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2676 | const node *node_target; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2677 | /* for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] */ |
| 2678 | REQ(n, for_stmt); |
| 2679 | |
| 2680 | if (NCH(n) == 9) { |
| 2681 | seq = ast_for_suite(c, CHILD(n, 8)); |
| 2682 | if (!seq) |
| 2683 | return NULL; |
| 2684 | } |
| 2685 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2686 | node_target = CHILD(n, 1); |
| 2687 | _target = ast_for_exprlist(c, node_target, Store); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2688 | if (!_target) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2689 | return NULL; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2690 | /* Check the # of children rather than the length of _target, since |
| 2691 | for x, in ... has 1 element in _target, but still requires a Tuple. */ |
| 2692 | if (NCH(node_target) == 1) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2693 | target = (expr_ty)asdl_seq_GET(_target, 0); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2694 | else |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2695 | target = Tuple(_target, Store, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2696 | |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 2697 | expression = ast_for_testlist(c, CHILD(n, 3)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2698 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2699 | return NULL; |
| 2700 | suite_seq = ast_for_suite(c, CHILD(n, 5)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2701 | if (!suite_seq) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2702 | return NULL; |
| 2703 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2704 | return For(target, expression, suite_seq, seq, LINENO(n), n->n_col_offset, |
| 2705 | c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2706 | } |
| 2707 | |
| 2708 | static excepthandler_ty |
| 2709 | ast_for_except_clause(struct compiling *c, const node *exc, node *body) |
| 2710 | { |
| 2711 | /* except_clause: 'except' [test [',' test]] */ |
| 2712 | REQ(exc, except_clause); |
| 2713 | REQ(body, suite); |
| 2714 | |
| 2715 | if (NCH(exc) == 1) { |
| 2716 | asdl_seq *suite_seq = ast_for_suite(c, body); |
| 2717 | if (!suite_seq) |
| 2718 | return NULL; |
| 2719 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2720 | return excepthandler(NULL, NULL, suite_seq, LINENO(exc), |
| 2721 | exc->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2722 | } |
| 2723 | else if (NCH(exc) == 2) { |
| 2724 | expr_ty expression; |
| 2725 | asdl_seq *suite_seq; |
| 2726 | |
| 2727 | expression = ast_for_expr(c, CHILD(exc, 1)); |
| 2728 | if (!expression) |
| 2729 | return NULL; |
| 2730 | suite_seq = ast_for_suite(c, body); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2731 | if (!suite_seq) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2732 | return NULL; |
| 2733 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2734 | return excepthandler(expression, NULL, suite_seq, LINENO(exc), |
| 2735 | exc->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2736 | } |
| 2737 | else if (NCH(exc) == 4) { |
| 2738 | asdl_seq *suite_seq; |
| 2739 | expr_ty expression; |
| 2740 | expr_ty e = ast_for_expr(c, CHILD(exc, 3)); |
| 2741 | if (!e) |
| 2742 | return NULL; |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2743 | if (!set_context(e, Store, CHILD(exc, 3))) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2744 | return NULL; |
| 2745 | expression = ast_for_expr(c, CHILD(exc, 1)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2746 | if (!expression) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2747 | return NULL; |
| 2748 | suite_seq = ast_for_suite(c, body); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2749 | if (!suite_seq) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2750 | return NULL; |
| 2751 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2752 | return excepthandler(expression, e, suite_seq, LINENO(exc), |
| 2753 | exc->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2754 | } |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2755 | |
| 2756 | PyErr_Format(PyExc_SystemError, |
| 2757 | "wrong number of children for 'except' clause: %d", |
| 2758 | NCH(exc)); |
| 2759 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2760 | } |
| 2761 | |
| 2762 | static stmt_ty |
| 2763 | ast_for_try_stmt(struct compiling *c, const node *n) |
| 2764 | { |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2765 | const int nch = NCH(n); |
| 2766 | int n_except = (nch - 3)/3; |
| 2767 | asdl_seq *body, *orelse = NULL, *finally = NULL; |
| 2768 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2769 | REQ(n, try_stmt); |
| 2770 | |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2771 | body = ast_for_suite(c, CHILD(n, 2)); |
| 2772 | if (body == NULL) |
| 2773 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2774 | |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2775 | if (TYPE(CHILD(n, nch - 3)) == NAME) { |
| 2776 | if (strcmp(STR(CHILD(n, nch - 3)), "finally") == 0) { |
| 2777 | if (nch >= 9 && TYPE(CHILD(n, nch - 6)) == NAME) { |
| 2778 | /* we can assume it's an "else", |
| 2779 | because nch >= 9 for try-else-finally and |
| 2780 | it would otherwise have a type of except_clause */ |
| 2781 | orelse = ast_for_suite(c, CHILD(n, nch - 4)); |
| 2782 | if (orelse == NULL) |
| 2783 | return NULL; |
| 2784 | n_except--; |
| 2785 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2786 | |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2787 | finally = ast_for_suite(c, CHILD(n, nch - 1)); |
| 2788 | if (finally == NULL) |
| 2789 | return NULL; |
| 2790 | n_except--; |
| 2791 | } |
| 2792 | else { |
| 2793 | /* we can assume it's an "else", |
| 2794 | otherwise it would have a type of except_clause */ |
| 2795 | orelse = ast_for_suite(c, CHILD(n, nch - 1)); |
| 2796 | if (orelse == NULL) |
| 2797 | return NULL; |
| 2798 | n_except--; |
| 2799 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2800 | } |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2801 | else if (TYPE(CHILD(n, nch - 3)) != except_clause) { |
Neal Norwitz | 7b3d5e1 | 2005-11-13 21:17:28 +0000 | [diff] [blame] | 2802 | ast_error(n, "malformed 'try' statement"); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2803 | return NULL; |
| 2804 | } |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2805 | |
| 2806 | if (n_except > 0) { |
| 2807 | int i; |
| 2808 | stmt_ty except_st; |
| 2809 | /* process except statements to create a try ... except */ |
| 2810 | asdl_seq *handlers = asdl_seq_new(n_except, c->c_arena); |
| 2811 | if (handlers == NULL) |
| 2812 | return NULL; |
| 2813 | |
| 2814 | for (i = 0; i < n_except; i++) { |
| 2815 | excepthandler_ty e = ast_for_except_clause(c, CHILD(n, 3 + i * 3), |
| 2816 | CHILD(n, 5 + i * 3)); |
| 2817 | if (!e) |
| 2818 | return NULL; |
| 2819 | asdl_seq_SET(handlers, i, e); |
| 2820 | } |
| 2821 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2822 | except_st = TryExcept(body, handlers, orelse, LINENO(n), |
| 2823 | n->n_col_offset, c->c_arena); |
Neal Norwitz | f599f42 | 2005-12-17 21:33:47 +0000 | [diff] [blame] | 2824 | if (!finally) |
| 2825 | return except_st; |
| 2826 | |
| 2827 | /* if a 'finally' is present too, we nest the TryExcept within a |
| 2828 | TryFinally to emulate try ... except ... finally */ |
| 2829 | body = asdl_seq_new(1, c->c_arena); |
| 2830 | if (body == NULL) |
| 2831 | return NULL; |
| 2832 | asdl_seq_SET(body, 0, except_st); |
| 2833 | } |
| 2834 | |
| 2835 | /* must be a try ... finally (except clauses are in body, if any exist) */ |
| 2836 | assert(finally != NULL); |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2837 | return TryFinally(body, finally, LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2838 | } |
| 2839 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 2840 | static expr_ty |
| 2841 | ast_for_with_var(struct compiling *c, const node *n) |
| 2842 | { |
| 2843 | REQ(n, with_var); |
| 2844 | if (strcmp(STR(CHILD(n, 0)), "as") != 0) { |
| 2845 | ast_error(n, "expected \"with [expr] as [var]\""); |
| 2846 | return NULL; |
| 2847 | } |
| 2848 | return ast_for_expr(c, CHILD(n, 1)); |
| 2849 | } |
| 2850 | |
| 2851 | /* with_stmt: 'with' test [ with_var ] ':' suite */ |
| 2852 | static stmt_ty |
| 2853 | ast_for_with_stmt(struct compiling *c, const node *n) |
| 2854 | { |
| 2855 | expr_ty context_expr, optional_vars = NULL; |
| 2856 | int suite_index = 3; /* skip 'with', test, and ':' */ |
| 2857 | asdl_seq *suite_seq; |
| 2858 | |
| 2859 | assert(TYPE(n) == with_stmt); |
| 2860 | context_expr = ast_for_expr(c, CHILD(n, 1)); |
| 2861 | if (TYPE(CHILD(n, 2)) == with_var) { |
| 2862 | optional_vars = ast_for_with_var(c, CHILD(n, 2)); |
| 2863 | |
| 2864 | if (!optional_vars) { |
| 2865 | return NULL; |
| 2866 | } |
| 2867 | if (!set_context(optional_vars, Store, n)) { |
| 2868 | return NULL; |
| 2869 | } |
| 2870 | suite_index = 4; |
| 2871 | } |
| 2872 | |
| 2873 | suite_seq = ast_for_suite(c, CHILD(n, suite_index)); |
| 2874 | if (!suite_seq) { |
| 2875 | return NULL; |
| 2876 | } |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2877 | return With(context_expr, optional_vars, suite_seq, LINENO(n), |
| 2878 | n->n_col_offset, c->c_arena); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 2879 | } |
| 2880 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2881 | static stmt_ty |
| 2882 | ast_for_classdef(struct compiling *c, const node *n) |
| 2883 | { |
| 2884 | /* classdef: 'class' NAME ['(' testlist ')'] ':' suite */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2885 | asdl_seq *bases, *s; |
| 2886 | |
| 2887 | REQ(n, classdef); |
| 2888 | |
| 2889 | if (!strcmp(STR(CHILD(n, 1)), "None")) { |
| 2890 | ast_error(n, "assignment to None"); |
| 2891 | return NULL; |
| 2892 | } |
| 2893 | |
| 2894 | if (NCH(n) == 4) { |
| 2895 | s = ast_for_suite(c, CHILD(n, 3)); |
| 2896 | if (!s) |
| 2897 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2898 | return ClassDef(NEW_IDENTIFIER(CHILD(n, 1)), NULL, s, LINENO(n), |
| 2899 | n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2900 | } |
| 2901 | /* check for empty base list */ |
| 2902 | if (TYPE(CHILD(n,3)) == RPAR) { |
| 2903 | s = ast_for_suite(c, CHILD(n,5)); |
| 2904 | if (!s) |
| 2905 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2906 | return ClassDef(NEW_IDENTIFIER(CHILD(n, 1)), NULL, s, LINENO(n), |
| 2907 | n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2908 | } |
| 2909 | |
| 2910 | /* else handle the base class list */ |
Neil Schemenauer | c5dd10a | 2005-10-25 07:54:54 +0000 | [diff] [blame] | 2911 | bases = ast_for_class_bases(c, CHILD(n, 3)); |
| 2912 | if (!bases) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2913 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2914 | |
| 2915 | s = ast_for_suite(c, CHILD(n, 6)); |
Neal Norwitz | 84456bd | 2005-12-18 03:16:20 +0000 | [diff] [blame] | 2916 | if (!s) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2917 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2918 | return ClassDef(NEW_IDENTIFIER(CHILD(n, 1)), bases, s, LINENO(n), |
| 2919 | n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2920 | } |
| 2921 | |
| 2922 | static stmt_ty |
| 2923 | ast_for_stmt(struct compiling *c, const node *n) |
| 2924 | { |
| 2925 | if (TYPE(n) == stmt) { |
| 2926 | assert(NCH(n) == 1); |
| 2927 | n = CHILD(n, 0); |
| 2928 | } |
| 2929 | if (TYPE(n) == simple_stmt) { |
| 2930 | assert(num_stmts(n) == 1); |
| 2931 | n = CHILD(n, 0); |
| 2932 | } |
| 2933 | if (TYPE(n) == small_stmt) { |
| 2934 | REQ(n, small_stmt); |
| 2935 | n = CHILD(n, 0); |
| 2936 | /* small_stmt: expr_stmt | print_stmt | del_stmt | pass_stmt |
| 2937 | | flow_stmt | import_stmt | global_stmt | exec_stmt |
| 2938 | | assert_stmt |
| 2939 | */ |
| 2940 | switch (TYPE(n)) { |
| 2941 | case expr_stmt: |
| 2942 | return ast_for_expr_stmt(c, n); |
| 2943 | case print_stmt: |
| 2944 | return ast_for_print_stmt(c, n); |
| 2945 | case del_stmt: |
| 2946 | return ast_for_del_stmt(c, n); |
| 2947 | case pass_stmt: |
Martin v. Löwis | 49c5da1 | 2006-03-01 22:49:05 +0000 | [diff] [blame] | 2948 | return Pass(LINENO(n), n->n_col_offset, c->c_arena); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2949 | case flow_stmt: |
| 2950 | return ast_for_flow_stmt(c, n); |
| 2951 | case import_stmt: |
| 2952 | return ast_for_import_stmt(c, n); |
| 2953 | case global_stmt: |
| 2954 | return ast_for_global_stmt(c, n); |
| 2955 | case exec_stmt: |
| 2956 | return ast_for_exec_stmt(c, n); |
| 2957 | case assert_stmt: |
| 2958 | return ast_for_assert_stmt(c, n); |
| 2959 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2960 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2961 | "unhandled small_stmt: TYPE=%d NCH=%d\n", |
| 2962 | TYPE(n), NCH(n)); |
| 2963 | return NULL; |
| 2964 | } |
| 2965 | } |
| 2966 | else { |
| 2967 | /* compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt |
| 2968 | | funcdef | classdef |
| 2969 | */ |
| 2970 | node *ch = CHILD(n, 0); |
| 2971 | REQ(n, compound_stmt); |
| 2972 | switch (TYPE(ch)) { |
| 2973 | case if_stmt: |
| 2974 | return ast_for_if_stmt(c, ch); |
| 2975 | case while_stmt: |
| 2976 | return ast_for_while_stmt(c, ch); |
| 2977 | case for_stmt: |
| 2978 | return ast_for_for_stmt(c, ch); |
| 2979 | case try_stmt: |
| 2980 | return ast_for_try_stmt(c, ch); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 2981 | case with_stmt: |
| 2982 | return ast_for_with_stmt(c, ch); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2983 | case funcdef: |
| 2984 | return ast_for_funcdef(c, ch); |
| 2985 | case classdef: |
| 2986 | return ast_for_classdef(c, ch); |
| 2987 | default: |
Neal Norwitz | 7979265 | 2005-11-14 04:25:03 +0000 | [diff] [blame] | 2988 | PyErr_Format(PyExc_SystemError, |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2989 | "unhandled small_stmt: TYPE=%d NCH=%d\n", |
| 2990 | TYPE(n), NCH(n)); |
| 2991 | return NULL; |
| 2992 | } |
| 2993 | } |
| 2994 | } |
| 2995 | |
| 2996 | static PyObject * |
| 2997 | parsenumber(const char *s) |
| 2998 | { |
| 2999 | const char *end; |
| 3000 | long x; |
| 3001 | double dx; |
| 3002 | #ifndef WITHOUT_COMPLEX |
| 3003 | Py_complex c; |
| 3004 | int imflag; |
| 3005 | #endif |
| 3006 | |
| 3007 | errno = 0; |
| 3008 | end = s + strlen(s) - 1; |
| 3009 | #ifndef WITHOUT_COMPLEX |
| 3010 | imflag = *end == 'j' || *end == 'J'; |
| 3011 | #endif |
| 3012 | if (*end == 'l' || *end == 'L') |
| 3013 | return PyLong_FromString((char *)s, (char **)0, 0); |
| 3014 | if (s[0] == '0') { |
| 3015 | x = (long) PyOS_strtoul((char *)s, (char **)&end, 0); |
| 3016 | if (x < 0 && errno == 0) { |
| 3017 | return PyLong_FromString((char *)s, |
| 3018 | (char **)0, |
| 3019 | 0); |
| 3020 | } |
| 3021 | } |
| 3022 | else |
| 3023 | x = PyOS_strtol((char *)s, (char **)&end, 0); |
| 3024 | if (*end == '\0') { |
| 3025 | if (errno != 0) |
| 3026 | return PyLong_FromString((char *)s, (char **)0, 0); |
| 3027 | return PyInt_FromLong(x); |
| 3028 | } |
| 3029 | /* XXX Huge floats may silently fail */ |
| 3030 | #ifndef WITHOUT_COMPLEX |
| 3031 | if (imflag) { |
| 3032 | c.real = 0.; |
| 3033 | PyFPE_START_PROTECT("atof", return 0) |
Fredrik Lundh | 24f0fa9 | 2005-12-29 20:35:52 +0000 | [diff] [blame] | 3034 | c.imag = PyOS_ascii_atof(s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3035 | PyFPE_END_PROTECT(c) |
| 3036 | return PyComplex_FromCComplex(c); |
| 3037 | } |
| 3038 | else |
| 3039 | #endif |
| 3040 | { |
| 3041 | PyFPE_START_PROTECT("atof", return 0) |
Fredrik Lundh | 24f0fa9 | 2005-12-29 20:35:52 +0000 | [diff] [blame] | 3042 | dx = PyOS_ascii_atof(s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3043 | PyFPE_END_PROTECT(dx) |
| 3044 | return PyFloat_FromDouble(dx); |
| 3045 | } |
| 3046 | } |
| 3047 | |
| 3048 | static PyObject * |
| 3049 | decode_utf8(const char **sPtr, const char *end, char* encoding) |
| 3050 | { |
| 3051 | #ifndef Py_USING_UNICODE |
| 3052 | Py_FatalError("decode_utf8 should not be called in this build."); |
| 3053 | return NULL; |
| 3054 | #else |
| 3055 | PyObject *u, *v; |
| 3056 | char *s, *t; |
| 3057 | t = s = (char *)*sPtr; |
| 3058 | /* while (s < end && *s != '\\') s++; */ /* inefficient for u".." */ |
| 3059 | while (s < end && (*s & 0x80)) s++; |
| 3060 | *sPtr = s; |
| 3061 | u = PyUnicode_DecodeUTF8(t, s - t, NULL); |
| 3062 | if (u == NULL) |
| 3063 | return NULL; |
| 3064 | v = PyUnicode_AsEncodedString(u, encoding, NULL); |
| 3065 | Py_DECREF(u); |
| 3066 | return v; |
| 3067 | #endif |
| 3068 | } |
| 3069 | |
| 3070 | static PyObject * |
| 3071 | decode_unicode(const char *s, size_t len, int rawmode, const char *encoding) |
| 3072 | { |
| 3073 | PyObject *v, *u; |
| 3074 | char *buf; |
| 3075 | char *p; |
| 3076 | const char *end; |
| 3077 | if (encoding == NULL) { |
| 3078 | buf = (char *)s; |
| 3079 | u = NULL; |
| 3080 | } else if (strcmp(encoding, "iso-8859-1") == 0) { |
| 3081 | buf = (char *)s; |
| 3082 | u = NULL; |
| 3083 | } else { |
| 3084 | /* "\XX" may become "\u005c\uHHLL" (12 bytes) */ |
| 3085 | u = PyString_FromStringAndSize((char *)NULL, len * 4); |
| 3086 | if (u == NULL) |
| 3087 | return NULL; |
| 3088 | p = buf = PyString_AsString(u); |
| 3089 | end = s + len; |
| 3090 | while (s < end) { |
| 3091 | if (*s == '\\') { |
| 3092 | *p++ = *s++; |
| 3093 | if (*s & 0x80) { |
| 3094 | strcpy(p, "u005c"); |
| 3095 | p += 5; |
| 3096 | } |
| 3097 | } |
| 3098 | if (*s & 0x80) { /* XXX inefficient */ |
| 3099 | PyObject *w; |
| 3100 | char *r; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 3101 | Py_ssize_t rn, i; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3102 | w = decode_utf8(&s, end, "utf-16-be"); |
| 3103 | if (w == NULL) { |
| 3104 | Py_DECREF(u); |
| 3105 | return NULL; |
| 3106 | } |
| 3107 | r = PyString_AsString(w); |
| 3108 | rn = PyString_Size(w); |
| 3109 | assert(rn % 2 == 0); |
| 3110 | for (i = 0; i < rn; i += 2) { |
| 3111 | sprintf(p, "\\u%02x%02x", |
| 3112 | r[i + 0] & 0xFF, |
| 3113 | r[i + 1] & 0xFF); |
| 3114 | p += 6; |
| 3115 | } |
| 3116 | Py_DECREF(w); |
| 3117 | } else { |
| 3118 | *p++ = *s++; |
| 3119 | } |
| 3120 | } |
| 3121 | len = p - buf; |
| 3122 | s = buf; |
| 3123 | } |
| 3124 | if (rawmode) |
| 3125 | v = PyUnicode_DecodeRawUnicodeEscape(s, len, NULL); |
| 3126 | else |
| 3127 | v = PyUnicode_DecodeUnicodeEscape(s, len, NULL); |
| 3128 | Py_XDECREF(u); |
| 3129 | return v; |
| 3130 | } |
| 3131 | |
| 3132 | /* s is a Python string literal, including the bracketing quote characters, |
| 3133 | * and r &/or u prefixes (if any), and embedded escape sequences (if any). |
| 3134 | * parsestr parses it, and returns the decoded Python string object. |
| 3135 | */ |
| 3136 | static PyObject * |
| 3137 | parsestr(const char *s, const char *encoding) |
| 3138 | { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3139 | size_t len; |
Neal Norwitz | 30b5c5d | 2005-12-19 06:05:18 +0000 | [diff] [blame] | 3140 | int quote = Py_CHARMASK(*s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3141 | int rawmode = 0; |
| 3142 | int need_encoding; |
| 3143 | int unicode = 0; |
| 3144 | |
| 3145 | if (isalpha(quote) || quote == '_') { |
| 3146 | if (quote == 'u' || quote == 'U') { |
| 3147 | quote = *++s; |
| 3148 | unicode = 1; |
| 3149 | } |
| 3150 | if (quote == 'r' || quote == 'R') { |
| 3151 | quote = *++s; |
| 3152 | rawmode = 1; |
| 3153 | } |
| 3154 | } |
| 3155 | if (quote != '\'' && quote != '\"') { |
| 3156 | PyErr_BadInternalCall(); |
| 3157 | return NULL; |
| 3158 | } |
| 3159 | s++; |
| 3160 | len = strlen(s); |
| 3161 | if (len > INT_MAX) { |
| 3162 | PyErr_SetString(PyExc_OverflowError, |
| 3163 | "string to parse is too long"); |
| 3164 | return NULL; |
| 3165 | } |
| 3166 | if (s[--len] != quote) { |
| 3167 | PyErr_BadInternalCall(); |
| 3168 | return NULL; |
| 3169 | } |
| 3170 | if (len >= 4 && s[0] == quote && s[1] == quote) { |
| 3171 | s += 2; |
| 3172 | len -= 2; |
| 3173 | if (s[--len] != quote || s[--len] != quote) { |
| 3174 | PyErr_BadInternalCall(); |
| 3175 | return NULL; |
| 3176 | } |
| 3177 | } |
| 3178 | #ifdef Py_USING_UNICODE |
| 3179 | if (unicode || Py_UnicodeFlag) { |
| 3180 | return decode_unicode(s, len, rawmode, encoding); |
| 3181 | } |
| 3182 | #endif |
| 3183 | need_encoding = (encoding != NULL && |
| 3184 | strcmp(encoding, "utf-8") != 0 && |
| 3185 | strcmp(encoding, "iso-8859-1") != 0); |
| 3186 | if (rawmode || strchr(s, '\\') == NULL) { |
| 3187 | if (need_encoding) { |
| 3188 | #ifndef Py_USING_UNICODE |
| 3189 | /* This should not happen - we never see any other |
| 3190 | encoding. */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3191 | Py_FatalError( |
| 3192 | "cannot deal with encodings in this build."); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3193 | #else |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 3194 | PyObject *v, *u = PyUnicode_DecodeUTF8(s, len, NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3195 | if (u == NULL) |
| 3196 | return NULL; |
| 3197 | v = PyUnicode_AsEncodedString(u, encoding, NULL); |
| 3198 | Py_DECREF(u); |
| 3199 | return v; |
| 3200 | #endif |
| 3201 | } else { |
| 3202 | return PyString_FromStringAndSize(s, len); |
| 3203 | } |
| 3204 | } |
| 3205 | |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 3206 | return PyString_DecodeEscape(s, len, NULL, unicode, |
| 3207 | need_encoding ? encoding : NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3208 | } |
| 3209 | |
| 3210 | /* Build a Python string object out of a STRING atom. This takes care of |
| 3211 | * compile-time literal catenation, calling parsestr() on each piece, and |
| 3212 | * pasting the intermediate results together. |
| 3213 | */ |
| 3214 | static PyObject * |
| 3215 | parsestrplus(struct compiling *c, const node *n) |
| 3216 | { |
| 3217 | PyObject *v; |
| 3218 | int i; |
| 3219 | REQ(CHILD(n, 0), STRING); |
| 3220 | if ((v = parsestr(STR(CHILD(n, 0)), c->c_encoding)) != NULL) { |
| 3221 | /* String literal concatenation */ |
| 3222 | for (i = 1; i < NCH(n); i++) { |
| 3223 | PyObject *s; |
| 3224 | s = parsestr(STR(CHILD(n, i)), c->c_encoding); |
| 3225 | if (s == NULL) |
| 3226 | goto onError; |
| 3227 | if (PyString_Check(v) && PyString_Check(s)) { |
| 3228 | PyString_ConcatAndDel(&v, s); |
| 3229 | if (v == NULL) |
| 3230 | goto onError; |
| 3231 | } |
| 3232 | #ifdef Py_USING_UNICODE |
| 3233 | else { |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 3234 | PyObject *temp = PyUnicode_Concat(v, s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3235 | Py_DECREF(s); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3236 | Py_DECREF(v); |
| 3237 | v = temp; |
Neal Norwitz | adb69fc | 2005-12-17 20:54:49 +0000 | [diff] [blame] | 3238 | if (v == NULL) |
| 3239 | goto onError; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3240 | } |
| 3241 | #endif |
| 3242 | } |
| 3243 | } |
| 3244 | return v; |
| 3245 | |
| 3246 | onError: |
| 3247 | Py_XDECREF(v); |
| 3248 | return NULL; |
| 3249 | } |