blob: 82dcd3bb5a8586001baa53b7a673a6eb6e91c23b [file] [log] [blame]
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001#include <Python.h>
Victor Stinnereec8e612021-03-18 14:57:49 +01002#include "pycore_ast.h" // _PyAST_Validate()
Pablo Galindoc5fc1562020-04-22 23:29:27 +01003#include <errcode.h>
Pablo Galindo1ed83ad2020-06-11 17:30:46 +01004#include "tokenizer.h"
Pablo Galindoc5fc1562020-04-22 23:29:27 +01005
6#include "pegen.h"
Pablo Galindo1ed83ad2020-06-11 17:30:46 +01007#include "string_parser.h"
Pablo Galindoc5fc1562020-04-22 23:29:27 +01008
Guido van Rossumc001c092020-04-30 12:12:19 -07009PyObject *
10_PyPegen_new_type_comment(Parser *p, char *s)
11{
12 PyObject *res = PyUnicode_DecodeUTF8(s, strlen(s), NULL);
13 if (res == NULL) {
14 return NULL;
15 }
Victor Stinner8370e072021-03-24 02:23:01 +010016 if (_PyArena_AddPyObject(p->arena, res) < 0) {
Guido van Rossumc001c092020-04-30 12:12:19 -070017 Py_DECREF(res);
18 return NULL;
19 }
20 return res;
21}
22
23arg_ty
24_PyPegen_add_type_comment_to_arg(Parser *p, arg_ty a, Token *tc)
25{
26 if (tc == NULL) {
27 return a;
28 }
29 char *bytes = PyBytes_AsString(tc->bytes);
30 if (bytes == NULL) {
31 return NULL;
32 }
33 PyObject *tco = _PyPegen_new_type_comment(p, bytes);
34 if (tco == NULL) {
35 return NULL;
36 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +020037 return _PyAST_arg(a->arg, a->annotation, tco,
38 a->lineno, a->col_offset, a->end_lineno, a->end_col_offset,
39 p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -070040}
41
Pablo Galindoc5fc1562020-04-22 23:29:27 +010042static int
43init_normalization(Parser *p)
44{
Lysandros Nikolaouebebb642020-04-23 18:36:06 +030045 if (p->normalize) {
46 return 1;
47 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +010048 PyObject *m = PyImport_ImportModuleNoBlock("unicodedata");
49 if (!m)
50 {
51 return 0;
52 }
53 p->normalize = PyObject_GetAttrString(m, "normalize");
54 Py_DECREF(m);
55 if (!p->normalize)
56 {
57 return 0;
58 }
59 return 1;
60}
61
Pablo Galindo2b74c832020-04-27 18:02:07 +010062/* Checks if the NOTEQUAL token is valid given the current parser flags
630 indicates success and nonzero indicates failure (an exception may be set) */
64int
Pablo Galindo06f8c332020-10-30 23:48:42 +000065_PyPegen_check_barry_as_flufl(Parser *p, Token* t) {
Pablo Galindo2b74c832020-04-27 18:02:07 +010066 assert(t->bytes != NULL);
67 assert(t->type == NOTEQUAL);
68
69 char* tok_str = PyBytes_AS_STRING(t->bytes);
Pablo Galindofb61c422020-06-15 14:23:43 +010070 if (p->flags & PyPARSE_BARRY_AS_BDFL && strcmp(tok_str, "<>") != 0) {
Pablo Galindo2b74c832020-04-27 18:02:07 +010071 RAISE_SYNTAX_ERROR("with Barry as BDFL, use '<>' instead of '!='");
72 return -1;
Pablo Galindofb61c422020-06-15 14:23:43 +010073 }
74 if (!(p->flags & PyPARSE_BARRY_AS_BDFL)) {
Pablo Galindo2b74c832020-04-27 18:02:07 +010075 return strcmp(tok_str, "!=");
76 }
77 return 0;
78}
79
Pablo Galindoc5fc1562020-04-22 23:29:27 +010080PyObject *
81_PyPegen_new_identifier(Parser *p, char *n)
82{
83 PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
84 if (!id) {
85 goto error;
86 }
87 /* PyUnicode_DecodeUTF8 should always return a ready string. */
88 assert(PyUnicode_IS_READY(id));
89 /* Check whether there are non-ASCII characters in the
90 identifier; if so, normalize to NFKC. */
91 if (!PyUnicode_IS_ASCII(id))
92 {
93 PyObject *id2;
Lysandros Nikolaouebebb642020-04-23 18:36:06 +030094 if (!init_normalization(p))
Pablo Galindoc5fc1562020-04-22 23:29:27 +010095 {
96 Py_DECREF(id);
97 goto error;
98 }
99 PyObject *form = PyUnicode_InternFromString("NFKC");
100 if (form == NULL)
101 {
102 Py_DECREF(id);
103 goto error;
104 }
105 PyObject *args[2] = {form, id};
106 id2 = _PyObject_FastCall(p->normalize, args, 2);
107 Py_DECREF(id);
108 Py_DECREF(form);
109 if (!id2) {
110 goto error;
111 }
112 if (!PyUnicode_Check(id2))
113 {
114 PyErr_Format(PyExc_TypeError,
115 "unicodedata.normalize() must return a string, not "
116 "%.200s",
117 _PyType_Name(Py_TYPE(id2)));
118 Py_DECREF(id2);
119 goto error;
120 }
121 id = id2;
122 }
123 PyUnicode_InternInPlace(&id);
Victor Stinner8370e072021-03-24 02:23:01 +0100124 if (_PyArena_AddPyObject(p->arena, id) < 0)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100125 {
126 Py_DECREF(id);
127 goto error;
128 }
129 return id;
130
131error:
132 p->error_indicator = 1;
133 return NULL;
134}
135
136static PyObject *
137_create_dummy_identifier(Parser *p)
138{
139 return _PyPegen_new_identifier(p, "");
140}
141
142static inline Py_ssize_t
Pablo Galindo51c58962020-06-16 16:49:43 +0100143byte_offset_to_character_offset(PyObject *line, Py_ssize_t col_offset)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100144{
145 const char *str = PyUnicode_AsUTF8(line);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300146 if (!str) {
147 return 0;
148 }
Pablo Galindo123ff262021-03-22 16:24:39 +0000149 Py_ssize_t len = strlen(str);
150 if (col_offset > len) {
151 col_offset = len;
152 }
153 assert(col_offset >= 0);
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300154 PyObject *text = PyUnicode_DecodeUTF8(str, col_offset, "replace");
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100155 if (!text) {
156 return 0;
157 }
158 Py_ssize_t size = PyUnicode_GET_LENGTH(text);
159 Py_DECREF(text);
160 return size;
161}
162
163const char *
164_PyPegen_get_expr_name(expr_ty e)
165{
Pablo Galindo9f495902020-06-08 02:57:00 +0100166 assert(e != NULL);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100167 switch (e->kind) {
168 case Attribute_kind:
169 return "attribute";
170 case Subscript_kind:
171 return "subscript";
172 case Starred_kind:
173 return "starred";
174 case Name_kind:
175 return "name";
176 case List_kind:
177 return "list";
178 case Tuple_kind:
179 return "tuple";
180 case Lambda_kind:
181 return "lambda";
182 case Call_kind:
183 return "function call";
184 case BoolOp_kind:
185 case BinOp_kind:
186 case UnaryOp_kind:
187 return "operator";
188 case GeneratorExp_kind:
189 return "generator expression";
190 case Yield_kind:
191 case YieldFrom_kind:
192 return "yield expression";
193 case Await_kind:
194 return "await expression";
195 case ListComp_kind:
196 return "list comprehension";
197 case SetComp_kind:
198 return "set comprehension";
199 case DictComp_kind:
200 return "dict comprehension";
201 case Dict_kind:
202 return "dict display";
203 case Set_kind:
204 return "set display";
205 case JoinedStr_kind:
206 case FormattedValue_kind:
207 return "f-string expression";
208 case Constant_kind: {
209 PyObject *value = e->v.Constant.value;
210 if (value == Py_None) {
211 return "None";
212 }
213 if (value == Py_False) {
214 return "False";
215 }
216 if (value == Py_True) {
217 return "True";
218 }
219 if (value == Py_Ellipsis) {
220 return "Ellipsis";
221 }
222 return "literal";
223 }
224 case Compare_kind:
225 return "comparison";
226 case IfExp_kind:
227 return "conditional expression";
228 case NamedExpr_kind:
229 return "named expression";
230 default:
231 PyErr_Format(PyExc_SystemError,
232 "unexpected expression in assignment %d (line %d)",
233 e->kind, e->lineno);
234 return NULL;
235 }
236}
237
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300238static int
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100239raise_decode_error(Parser *p)
240{
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300241 assert(PyErr_Occurred());
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100242 const char *errtype = NULL;
243 if (PyErr_ExceptionMatches(PyExc_UnicodeError)) {
244 errtype = "unicode error";
245 }
246 else if (PyErr_ExceptionMatches(PyExc_ValueError)) {
247 errtype = "value error";
248 }
249 if (errtype) {
Pablo Galindofb61c422020-06-15 14:23:43 +0100250 PyObject *type;
251 PyObject *value;
252 PyObject *tback;
253 PyObject *errstr;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100254 PyErr_Fetch(&type, &value, &tback);
255 errstr = PyObject_Str(value);
256 if (errstr) {
257 RAISE_SYNTAX_ERROR("(%s) %U", errtype, errstr);
258 Py_DECREF(errstr);
259 }
260 else {
261 PyErr_Clear();
262 RAISE_SYNTAX_ERROR("(%s) unknown error", errtype);
263 }
264 Py_XDECREF(type);
265 Py_XDECREF(value);
266 Py_XDECREF(tback);
267 }
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300268
269 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100270}
271
Pablo Galindod6d63712021-01-19 23:59:33 +0000272static inline void
273raise_unclosed_parentheses_error(Parser *p) {
274 int error_lineno = p->tok->parenlinenostack[p->tok->level-1];
275 int error_col = p->tok->parencolstack[p->tok->level-1];
276 RAISE_ERROR_KNOWN_LOCATION(p, PyExc_SyntaxError,
277 error_lineno, error_col,
278 "'%c' was never closed",
279 p->tok->parenstack[p->tok->level-1]);
280}
281
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100282static void
283raise_tokenizer_init_error(PyObject *filename)
284{
285 if (!(PyErr_ExceptionMatches(PyExc_LookupError)
286 || PyErr_ExceptionMatches(PyExc_ValueError)
287 || PyErr_ExceptionMatches(PyExc_UnicodeDecodeError))) {
288 return;
289 }
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300290 PyObject *errstr = NULL;
291 PyObject *tuple = NULL;
Pablo Galindofb61c422020-06-15 14:23:43 +0100292 PyObject *type;
293 PyObject *value;
294 PyObject *tback;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100295 PyErr_Fetch(&type, &value, &tback);
296 errstr = PyObject_Str(value);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300297 if (!errstr) {
298 goto error;
299 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100300
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300301 PyObject *tmp = Py_BuildValue("(OiiO)", filename, 0, -1, Py_None);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100302 if (!tmp) {
303 goto error;
304 }
305
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300306 tuple = PyTuple_Pack(2, errstr, tmp);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100307 Py_DECREF(tmp);
308 if (!value) {
309 goto error;
310 }
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300311 PyErr_SetObject(PyExc_SyntaxError, tuple);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100312
313error:
314 Py_XDECREF(type);
315 Py_XDECREF(value);
316 Py_XDECREF(tback);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300317 Py_XDECREF(errstr);
318 Py_XDECREF(tuple);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100319}
320
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100321static int
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100322tokenizer_error(Parser *p)
323{
324 if (PyErr_Occurred()) {
325 return -1;
326 }
327
328 const char *msg = NULL;
329 PyObject* errtype = PyExc_SyntaxError;
Pablo Galindo96eeff52021-03-22 17:28:11 +0000330 Py_ssize_t col_offset = -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100331 switch (p->tok->done) {
332 case E_TOKEN:
333 msg = "invalid token";
334 break;
Lysandros Nikolaoud55133f2020-04-28 03:23:35 +0300335 case E_EOF:
Pablo Galindod6d63712021-01-19 23:59:33 +0000336 if (p->tok->level) {
337 raise_unclosed_parentheses_error(p);
338 } else {
339 RAISE_SYNTAX_ERROR("unexpected EOF while parsing");
340 }
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300341 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100342 case E_DEDENT:
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300343 RAISE_INDENTATION_ERROR("unindent does not match any outer indentation level");
344 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100345 case E_INTR:
346 if (!PyErr_Occurred()) {
347 PyErr_SetNone(PyExc_KeyboardInterrupt);
348 }
349 return -1;
350 case E_NOMEM:
351 PyErr_NoMemory();
352 return -1;
353 case E_TABSPACE:
354 errtype = PyExc_TabError;
355 msg = "inconsistent use of tabs and spaces in indentation";
356 break;
357 case E_TOODEEP:
358 errtype = PyExc_IndentationError;
359 msg = "too many levels of indentation";
360 break;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100361 case E_LINECONT:
Pablo Galindo96eeff52021-03-22 17:28:11 +0000362 col_offset = strlen(strtok(p->tok->buf, "\n")) - 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100363 msg = "unexpected character after line continuation character";
364 break;
365 default:
366 msg = "unknown parsing error";
367 }
368
Pablo Galindo96eeff52021-03-22 17:28:11 +0000369 RAISE_ERROR_KNOWN_LOCATION(p, errtype, p->tok->lineno, col_offset, msg);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100370 return -1;
371}
372
373void *
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300374_PyPegen_raise_error(Parser *p, PyObject *errtype, const char *errmsg, ...)
375{
376 Token *t = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1];
Pablo Galindo51c58962020-06-16 16:49:43 +0100377 Py_ssize_t col_offset;
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300378 if (t->col_offset == -1) {
379 col_offset = Py_SAFE_DOWNCAST(p->tok->cur - p->tok->buf,
380 intptr_t, int);
381 } else {
382 col_offset = t->col_offset + 1;
383 }
384
385 va_list va;
386 va_start(va, errmsg);
387 _PyPegen_raise_error_known_location(p, errtype, t->lineno,
388 col_offset, errmsg, va);
389 va_end(va);
390
391 return NULL;
392}
393
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200394static PyObject *
395get_error_line(Parser *p, Py_ssize_t lineno)
396{
Pablo Galindo123ff262021-03-22 16:24:39 +0000397 /* If the file descriptor is interactive, the source lines of the current
398 * (multi-line) statement are stored in p->tok->interactive_src_start.
399 * If not, we're parsing from a string, which means that the whole source
400 * is stored in p->tok->str. */
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200401 assert(p->tok->fp == NULL || p->tok->fp == stdin);
402
Pablo Galindocd8dcbc2021-03-14 04:38:40 +0100403 char *cur_line = p->tok->fp_interactive ? p->tok->interactive_src_start : p->tok->str;
404
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200405 for (int i = 0; i < lineno - 1; i++) {
406 cur_line = strchr(cur_line, '\n') + 1;
407 }
408
409 char *next_newline;
410 if ((next_newline = strchr(cur_line, '\n')) == NULL) { // This is the last line
411 next_newline = cur_line + strlen(cur_line);
412 }
413 return PyUnicode_DecodeUTF8(cur_line, next_newline - cur_line, "replace");
414}
415
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300416void *
417_PyPegen_raise_error_known_location(Parser *p, PyObject *errtype,
Pablo Galindo51c58962020-06-16 16:49:43 +0100418 Py_ssize_t lineno, Py_ssize_t col_offset,
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300419 const char *errmsg, va_list va)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100420{
421 PyObject *value = NULL;
422 PyObject *errstr = NULL;
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300423 PyObject *error_line = NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100424 PyObject *tmp = NULL;
Lysandros Nikolaou7f06af62020-05-04 03:20:09 +0300425 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100426
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300427 if (p->start_rule == Py_fstring_input) {
428 const char *fstring_msg = "f-string: ";
429 Py_ssize_t len = strlen(fstring_msg) + strlen(errmsg);
430
Lysandros Nikolaou6dcbc242020-06-27 20:47:00 +0300431 char *new_errmsg = PyMem_Malloc(len + 1); // Lengths of both strings plus NULL character
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300432 if (!new_errmsg) {
433 return (void *) PyErr_NoMemory();
434 }
435
436 // Copy both strings into new buffer
437 memcpy(new_errmsg, fstring_msg, strlen(fstring_msg));
438 memcpy(new_errmsg + strlen(fstring_msg), errmsg, strlen(errmsg));
439 new_errmsg[len] = 0;
440 errmsg = new_errmsg;
441 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100442 errstr = PyUnicode_FromFormatV(errmsg, va);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100443 if (!errstr) {
444 goto error;
445 }
446
Pablo Galindocd8dcbc2021-03-14 04:38:40 +0100447 if (p->tok->fp_interactive) {
448 error_line = get_error_line(p, lineno);
449 }
450 else if (p->start_rule == Py_file_input) {
Lysandros Nikolaou861efc62020-06-20 15:57:27 +0300451 error_line = PyErr_ProgramTextObject(p->tok->filename, (int) lineno);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100452 }
453
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300454 if (!error_line) {
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200455 /* PyErr_ProgramTextObject was not called or returned NULL. If it was not called,
456 then we need to find the error line from some other source, because
457 p->start_rule != Py_file_input. If it returned NULL, then it either unexpectedly
458 failed or we're parsing from a string or the REPL. There's a third edge case where
459 we're actually parsing from a file, which has an E_EOF SyntaxError and in that case
460 `PyErr_ProgramTextObject` fails because lineno points to last_file_line + 1, which
461 does not physically exist */
462 assert(p->tok->fp == NULL || p->tok->fp == stdin || p->tok->done == E_EOF);
463
Pablo Galindo40901512021-01-31 22:48:23 +0000464 if (p->tok->lineno <= lineno) {
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200465 Py_ssize_t size = p->tok->inp - p->tok->buf;
466 error_line = PyUnicode_DecodeUTF8(p->tok->buf, size, "replace");
467 }
468 else {
469 error_line = get_error_line(p, lineno);
470 }
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300471 if (!error_line) {
472 goto error;
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300473 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100474 }
475
Lysandros Nikolaou1f0f4ab2020-06-28 02:41:48 +0300476 if (p->start_rule == Py_fstring_input) {
477 col_offset -= p->starting_col_offset;
478 }
Pablo Galindo51c58962020-06-16 16:49:43 +0100479 Py_ssize_t col_number = col_offset;
480
481 if (p->tok->encoding != NULL) {
482 col_number = byte_offset_to_character_offset(error_line, col_offset);
483 }
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300484
485 tmp = Py_BuildValue("(OiiN)", p->tok->filename, lineno, col_number, error_line);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100486 if (!tmp) {
487 goto error;
488 }
489 value = PyTuple_Pack(2, errstr, tmp);
490 Py_DECREF(tmp);
491 if (!value) {
492 goto error;
493 }
494 PyErr_SetObject(errtype, value);
495
496 Py_DECREF(errstr);
497 Py_DECREF(value);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300498 if (p->start_rule == Py_fstring_input) {
Lysandros Nikolaou6dcbc242020-06-27 20:47:00 +0300499 PyMem_Free((void *)errmsg);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300500 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100501 return NULL;
502
503error:
504 Py_XDECREF(errstr);
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300505 Py_XDECREF(error_line);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300506 if (p->start_rule == Py_fstring_input) {
Lysandros Nikolaou6dcbc242020-06-27 20:47:00 +0300507 PyMem_Free((void *)errmsg);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300508 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100509 return NULL;
510}
511
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100512#if 0
513static const char *
514token_name(int type)
515{
516 if (0 <= type && type <= N_TOKENS) {
517 return _PyParser_TokenNames[type];
518 }
519 return "<Huh?>";
520}
521#endif
522
523// Here, mark is the start of the node, while p->mark is the end.
524// If node==NULL, they should be the same.
525int
526_PyPegen_insert_memo(Parser *p, int mark, int type, void *node)
527{
528 // Insert in front
Victor Stinner8370e072021-03-24 02:23:01 +0100529 Memo *m = _PyArena_Malloc(p->arena, sizeof(Memo));
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100530 if (m == NULL) {
531 return -1;
532 }
533 m->type = type;
534 m->node = node;
535 m->mark = p->mark;
536 m->next = p->tokens[mark]->memo;
537 p->tokens[mark]->memo = m;
538 return 0;
539}
540
541// Like _PyPegen_insert_memo(), but updates an existing node if found.
542int
543_PyPegen_update_memo(Parser *p, int mark, int type, void *node)
544{
545 for (Memo *m = p->tokens[mark]->memo; m != NULL; m = m->next) {
546 if (m->type == type) {
547 // Update existing node.
548 m->node = node;
549 m->mark = p->mark;
550 return 0;
551 }
552 }
553 // Insert new node.
554 return _PyPegen_insert_memo(p, mark, type, node);
555}
556
557// Return dummy NAME.
558void *
559_PyPegen_dummy_name(Parser *p, ...)
560{
561 static void *cache = NULL;
562
563 if (cache != NULL) {
564 return cache;
565 }
566
567 PyObject *id = _create_dummy_identifier(p);
568 if (!id) {
569 return NULL;
570 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +0200571 cache = _PyAST_Name(id, Load, 1, 0, 1, 0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100572 return cache;
573}
574
575static int
576_get_keyword_or_name_type(Parser *p, const char *name, int name_len)
577{
Lysandros Nikolaou782f44b2020-07-07 01:42:21 +0300578 assert(name_len > 0);
Pablo Galindo1ac0cbc2020-07-06 20:31:16 +0100579 if (name_len >= p->n_keyword_lists ||
580 p->keywords[name_len] == NULL ||
581 p->keywords[name_len]->type == -1) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100582 return NAME;
583 }
Pablo Galindo1ac0cbc2020-07-06 20:31:16 +0100584 for (KeywordToken *k = p->keywords[name_len]; k != NULL && k->type != -1; k++) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100585 if (strncmp(k->str, name, name_len) == 0) {
586 return k->type;
587 }
588 }
589 return NAME;
590}
591
Guido van Rossumc001c092020-04-30 12:12:19 -0700592static int
593growable_comment_array_init(growable_comment_array *arr, size_t initial_size) {
594 assert(initial_size > 0);
595 arr->items = PyMem_Malloc(initial_size * sizeof(*arr->items));
596 arr->size = initial_size;
597 arr->num_items = 0;
598
599 return arr->items != NULL;
600}
601
602static int
603growable_comment_array_add(growable_comment_array *arr, int lineno, char *comment) {
604 if (arr->num_items >= arr->size) {
605 size_t new_size = arr->size * 2;
606 void *new_items_array = PyMem_Realloc(arr->items, new_size * sizeof(*arr->items));
607 if (!new_items_array) {
608 return 0;
609 }
610 arr->items = new_items_array;
611 arr->size = new_size;
612 }
613
614 arr->items[arr->num_items].lineno = lineno;
615 arr->items[arr->num_items].comment = comment; // Take ownership
616 arr->num_items++;
617 return 1;
618}
619
620static void
621growable_comment_array_deallocate(growable_comment_array *arr) {
622 for (unsigned i = 0; i < arr->num_items; i++) {
623 PyMem_Free(arr->items[i].comment);
624 }
625 PyMem_Free(arr->items);
626}
627
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100628int
629_PyPegen_fill_token(Parser *p)
630{
Pablo Galindofb61c422020-06-15 14:23:43 +0100631 const char *start;
632 const char *end;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100633 int type = PyTokenizer_Get(p->tok, &start, &end);
Guido van Rossumc001c092020-04-30 12:12:19 -0700634
635 // Record and skip '# type: ignore' comments
636 while (type == TYPE_IGNORE) {
637 Py_ssize_t len = end - start;
638 char *tag = PyMem_Malloc(len + 1);
639 if (tag == NULL) {
640 PyErr_NoMemory();
641 return -1;
642 }
643 strncpy(tag, start, len);
644 tag[len] = '\0';
645 // Ownership of tag passes to the growable array
646 if (!growable_comment_array_add(&p->type_ignore_comments, p->tok->lineno, tag)) {
647 PyErr_NoMemory();
648 return -1;
649 }
650 type = PyTokenizer_Get(p->tok, &start, &end);
651 }
652
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100653 if (type == ENDMARKER && p->start_rule == Py_single_input && p->parsing_started) {
654 type = NEWLINE; /* Add an extra newline */
655 p->parsing_started = 0;
656
Pablo Galindob94dbd72020-04-27 18:35:58 +0100657 if (p->tok->indent && !(p->flags & PyPARSE_DONT_IMPLY_DEDENT)) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100658 p->tok->pendin = -p->tok->indent;
659 p->tok->indent = 0;
660 }
661 }
662 else {
663 p->parsing_started = 1;
664 }
665
666 if (p->fill == p->size) {
667 int newsize = p->size * 2;
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300668 Token **new_tokens = PyMem_Realloc(p->tokens, newsize * sizeof(Token *));
669 if (new_tokens == NULL) {
670 PyErr_NoMemory();
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100671 return -1;
672 }
Pablo Galindofb61c422020-06-15 14:23:43 +0100673 p->tokens = new_tokens;
674
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100675 for (int i = p->size; i < newsize; i++) {
676 p->tokens[i] = PyMem_Malloc(sizeof(Token));
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300677 if (p->tokens[i] == NULL) {
678 p->size = i; // Needed, in order to cleanup correctly after parser fails
679 PyErr_NoMemory();
680 return -1;
681 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100682 memset(p->tokens[i], '\0', sizeof(Token));
683 }
684 p->size = newsize;
685 }
686
687 Token *t = p->tokens[p->fill];
688 t->type = (type == NAME) ? _get_keyword_or_name_type(p, start, (int)(end - start)) : type;
689 t->bytes = PyBytes_FromStringAndSize(start, end - start);
690 if (t->bytes == NULL) {
691 return -1;
692 }
Victor Stinner8370e072021-03-24 02:23:01 +0100693 _PyArena_AddPyObject(p->arena, t->bytes);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100694
695 int lineno = type == STRING ? p->tok->first_lineno : p->tok->lineno;
696 const char *line_start = type == STRING ? p->tok->multi_line_start : p->tok->line_start;
Pablo Galindo22081342020-04-29 02:04:06 +0100697 int end_lineno = p->tok->lineno;
Pablo Galindofb61c422020-06-15 14:23:43 +0100698 int col_offset = -1;
699 int end_col_offset = -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100700 if (start != NULL && start >= line_start) {
Pablo Galindo22081342020-04-29 02:04:06 +0100701 col_offset = (int)(start - line_start);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100702 }
703 if (end != NULL && end >= p->tok->line_start) {
Pablo Galindo22081342020-04-29 02:04:06 +0100704 end_col_offset = (int)(end - p->tok->line_start);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100705 }
706
707 t->lineno = p->starting_lineno + lineno;
708 t->col_offset = p->tok->lineno == 1 ? p->starting_col_offset + col_offset : col_offset;
709 t->end_lineno = p->starting_lineno + end_lineno;
710 t->end_col_offset = p->tok->lineno == 1 ? p->starting_col_offset + end_col_offset : end_col_offset;
711
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100712 p->fill += 1;
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300713
714 if (type == ERRORTOKEN) {
715 if (p->tok->done == E_DECODE) {
716 return raise_decode_error(p);
717 }
Pablo Galindofb61c422020-06-15 14:23:43 +0100718 return tokenizer_error(p);
719
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300720 }
721
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100722 return 0;
723}
724
725// Instrumentation to count the effectiveness of memoization.
726// The array counts the number of tokens skipped by memoization,
727// indexed by type.
728
729#define NSTATISTICS 2000
730static long memo_statistics[NSTATISTICS];
731
732void
733_PyPegen_clear_memo_statistics()
734{
735 for (int i = 0; i < NSTATISTICS; i++) {
736 memo_statistics[i] = 0;
737 }
738}
739
740PyObject *
741_PyPegen_get_memo_statistics()
742{
743 PyObject *ret = PyList_New(NSTATISTICS);
744 if (ret == NULL) {
745 return NULL;
746 }
747 for (int i = 0; i < NSTATISTICS; i++) {
748 PyObject *value = PyLong_FromLong(memo_statistics[i]);
749 if (value == NULL) {
750 Py_DECREF(ret);
751 return NULL;
752 }
753 // PyList_SetItem borrows a reference to value.
754 if (PyList_SetItem(ret, i, value) < 0) {
755 Py_DECREF(ret);
756 return NULL;
757 }
758 }
759 return ret;
760}
761
762int // bool
763_PyPegen_is_memoized(Parser *p, int type, void *pres)
764{
765 if (p->mark == p->fill) {
766 if (_PyPegen_fill_token(p) < 0) {
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300767 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100768 return -1;
769 }
770 }
771
772 Token *t = p->tokens[p->mark];
773
774 for (Memo *m = t->memo; m != NULL; m = m->next) {
775 if (m->type == type) {
776 if (0 <= type && type < NSTATISTICS) {
777 long count = m->mark - p->mark;
778 // A memoized negative result counts for one.
779 if (count <= 0) {
780 count = 1;
781 }
782 memo_statistics[type] += count;
783 }
784 p->mark = m->mark;
785 *(void **)(pres) = m->node;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100786 return 1;
787 }
788 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100789 return 0;
790}
791
Pablo Galindo1df5a9e2020-04-23 12:42:13 +0100792int
793_PyPegen_lookahead_with_name(int positive, expr_ty (func)(Parser *), Parser *p)
794{
795 int mark = p->mark;
796 void *res = func(p);
797 p->mark = mark;
798 return (res != NULL) == positive;
799}
800
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100801int
Pablo Galindo404b23b2020-05-27 00:15:52 +0100802_PyPegen_lookahead_with_string(int positive, expr_ty (func)(Parser *, const char*), Parser *p, const char* arg)
803{
804 int mark = p->mark;
805 void *res = func(p, arg);
806 p->mark = mark;
807 return (res != NULL) == positive;
808}
809
810int
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100811_PyPegen_lookahead_with_int(int positive, Token *(func)(Parser *, int), Parser *p, int arg)
812{
813 int mark = p->mark;
814 void *res = func(p, arg);
815 p->mark = mark;
816 return (res != NULL) == positive;
817}
818
819int
820_PyPegen_lookahead(int positive, void *(func)(Parser *), Parser *p)
821{
822 int mark = p->mark;
Pablo Galindo1df5a9e2020-04-23 12:42:13 +0100823 void *res = (void*)func(p);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100824 p->mark = mark;
825 return (res != NULL) == positive;
826}
827
828Token *
829_PyPegen_expect_token(Parser *p, int type)
830{
831 if (p->mark == p->fill) {
832 if (_PyPegen_fill_token(p) < 0) {
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300833 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100834 return NULL;
835 }
836 }
837 Token *t = p->tokens[p->mark];
838 if (t->type != type) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100839 return NULL;
840 }
841 p->mark += 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100842 return t;
843}
844
Pablo Galindo58fb1562021-02-02 19:54:22 +0000845Token *
846_PyPegen_expect_forced_token(Parser *p, int type, const char* expected) {
847
848 if (p->error_indicator == 1) {
849 return NULL;
850 }
851
852 if (p->mark == p->fill) {
853 if (_PyPegen_fill_token(p) < 0) {
854 p->error_indicator = 1;
855 return NULL;
856 }
857 }
858 Token *t = p->tokens[p->mark];
859 if (t->type != type) {
860 RAISE_SYNTAX_ERROR_KNOWN_LOCATION(t, "expected '%s'", expected);
861 return NULL;
862 }
863 p->mark += 1;
864 return t;
865}
866
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700867expr_ty
868_PyPegen_expect_soft_keyword(Parser *p, const char *keyword)
869{
870 if (p->mark == p->fill) {
871 if (_PyPegen_fill_token(p) < 0) {
872 p->error_indicator = 1;
873 return NULL;
874 }
875 }
876 Token *t = p->tokens[p->mark];
877 if (t->type != NAME) {
878 return NULL;
879 }
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300880 char *s = PyBytes_AsString(t->bytes);
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700881 if (!s) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300882 p->error_indicator = 1;
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700883 return NULL;
884 }
885 if (strcmp(s, keyword) != 0) {
886 return NULL;
887 }
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300888 return _PyPegen_name_token(p);
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700889}
890
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100891Token *
892_PyPegen_get_last_nonnwhitespace_token(Parser *p)
893{
894 assert(p->mark >= 0);
895 Token *token = NULL;
896 for (int m = p->mark - 1; m >= 0; m--) {
897 token = p->tokens[m];
898 if (token->type != ENDMARKER && (token->type < NEWLINE || token->type > DEDENT)) {
899 break;
900 }
901 }
902 return token;
903}
904
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100905expr_ty
906_PyPegen_name_token(Parser *p)
907{
908 Token *t = _PyPegen_expect_token(p, NAME);
909 if (t == NULL) {
910 return NULL;
911 }
912 char* s = PyBytes_AsString(t->bytes);
913 if (!s) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300914 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100915 return NULL;
916 }
917 PyObject *id = _PyPegen_new_identifier(p, s);
918 if (id == NULL) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300919 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100920 return NULL;
921 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +0200922 return _PyAST_Name(id, Load, t->lineno, t->col_offset, t->end_lineno,
923 t->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100924}
925
926void *
927_PyPegen_string_token(Parser *p)
928{
929 return _PyPegen_expect_token(p, STRING);
930}
931
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100932static PyObject *
933parsenumber_raw(const char *s)
934{
935 const char *end;
936 long x;
937 double dx;
938 Py_complex compl;
939 int imflag;
940
941 assert(s != NULL);
942 errno = 0;
943 end = s + strlen(s) - 1;
944 imflag = *end == 'j' || *end == 'J';
945 if (s[0] == '0') {
946 x = (long)PyOS_strtoul(s, (char **)&end, 0);
947 if (x < 0 && errno == 0) {
948 return PyLong_FromString(s, (char **)0, 0);
949 }
950 }
Pablo Galindofb61c422020-06-15 14:23:43 +0100951 else {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100952 x = PyOS_strtol(s, (char **)&end, 0);
Pablo Galindofb61c422020-06-15 14:23:43 +0100953 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100954 if (*end == '\0') {
Pablo Galindofb61c422020-06-15 14:23:43 +0100955 if (errno != 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100956 return PyLong_FromString(s, (char **)0, 0);
Pablo Galindofb61c422020-06-15 14:23:43 +0100957 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100958 return PyLong_FromLong(x);
959 }
960 /* XXX Huge floats may silently fail */
961 if (imflag) {
962 compl.real = 0.;
963 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL);
Pablo Galindofb61c422020-06-15 14:23:43 +0100964 if (compl.imag == -1.0 && PyErr_Occurred()) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100965 return NULL;
Pablo Galindofb61c422020-06-15 14:23:43 +0100966 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100967 return PyComplex_FromCComplex(compl);
968 }
Pablo Galindofb61c422020-06-15 14:23:43 +0100969 dx = PyOS_string_to_double(s, NULL, NULL);
970 if (dx == -1.0 && PyErr_Occurred()) {
971 return NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100972 }
Pablo Galindofb61c422020-06-15 14:23:43 +0100973 return PyFloat_FromDouble(dx);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100974}
975
976static PyObject *
977parsenumber(const char *s)
978{
Pablo Galindofb61c422020-06-15 14:23:43 +0100979 char *dup;
980 char *end;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100981 PyObject *res = NULL;
982
983 assert(s != NULL);
984
985 if (strchr(s, '_') == NULL) {
986 return parsenumber_raw(s);
987 }
988 /* Create a duplicate without underscores. */
989 dup = PyMem_Malloc(strlen(s) + 1);
990 if (dup == NULL) {
991 return PyErr_NoMemory();
992 }
993 end = dup;
994 for (; *s; s++) {
995 if (*s != '_') {
996 *end++ = *s;
997 }
998 }
999 *end = '\0';
1000 res = parsenumber_raw(dup);
1001 PyMem_Free(dup);
1002 return res;
1003}
1004
1005expr_ty
1006_PyPegen_number_token(Parser *p)
1007{
1008 Token *t = _PyPegen_expect_token(p, NUMBER);
1009 if (t == NULL) {
1010 return NULL;
1011 }
1012
1013 char *num_raw = PyBytes_AsString(t->bytes);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001014 if (num_raw == NULL) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +03001015 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001016 return NULL;
1017 }
1018
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001019 if (p->feature_version < 6 && strchr(num_raw, '_') != NULL) {
1020 p->error_indicator = 1;
Shantanuc3f00142020-05-04 01:13:30 -07001021 return RAISE_SYNTAX_ERROR("Underscores in numeric literals are only supported "
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001022 "in Python 3.6 and greater");
1023 }
1024
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001025 PyObject *c = parsenumber(num_raw);
1026
1027 if (c == NULL) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +03001028 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001029 return NULL;
1030 }
1031
Victor Stinner8370e072021-03-24 02:23:01 +01001032 if (_PyArena_AddPyObject(p->arena, c) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001033 Py_DECREF(c);
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +03001034 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001035 return NULL;
1036 }
1037
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001038 return _PyAST_Constant(c, NULL, t->lineno, t->col_offset, t->end_lineno,
1039 t->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001040}
1041
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001042static int // bool
1043newline_in_string(Parser *p, const char *cur)
1044{
Pablo Galindo2e6593d2020-06-06 00:52:27 +01001045 for (const char *c = cur; c >= p->tok->buf; c--) {
1046 if (*c == '\'' || *c == '"') {
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001047 return 1;
1048 }
1049 }
1050 return 0;
1051}
1052
1053/* Check that the source for a single input statement really is a single
1054 statement by looking at what is left in the buffer after parsing.
1055 Trailing whitespace and comments are OK. */
1056static int // bool
1057bad_single_statement(Parser *p)
1058{
1059 const char *cur = strchr(p->tok->buf, '\n');
1060
1061 /* Newlines are allowed if preceded by a line continuation character
1062 or if they appear inside a string. */
Pablo Galindoe68c6782020-10-25 23:03:41 +00001063 if (!cur || (cur != p->tok->buf && *(cur - 1) == '\\')
1064 || newline_in_string(p, cur)) {
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001065 return 0;
1066 }
1067 char c = *cur;
1068
1069 for (;;) {
1070 while (c == ' ' || c == '\t' || c == '\n' || c == '\014') {
1071 c = *++cur;
1072 }
1073
1074 if (!c) {
1075 return 0;
1076 }
1077
1078 if (c != '#') {
1079 return 1;
1080 }
1081
1082 /* Suck up comment. */
1083 while (c && c != '\n') {
1084 c = *++cur;
1085 }
1086 }
1087}
1088
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001089void
1090_PyPegen_Parser_Free(Parser *p)
1091{
1092 Py_XDECREF(p->normalize);
1093 for (int i = 0; i < p->size; i++) {
1094 PyMem_Free(p->tokens[i]);
1095 }
1096 PyMem_Free(p->tokens);
Guido van Rossumc001c092020-04-30 12:12:19 -07001097 growable_comment_array_deallocate(&p->type_ignore_comments);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001098 PyMem_Free(p);
1099}
1100
Pablo Galindo2b74c832020-04-27 18:02:07 +01001101static int
1102compute_parser_flags(PyCompilerFlags *flags)
1103{
1104 int parser_flags = 0;
1105 if (!flags) {
1106 return 0;
1107 }
1108 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) {
1109 parser_flags |= PyPARSE_DONT_IMPLY_DEDENT;
1110 }
1111 if (flags->cf_flags & PyCF_IGNORE_COOKIE) {
1112 parser_flags |= PyPARSE_IGNORE_COOKIE;
1113 }
1114 if (flags->cf_flags & CO_FUTURE_BARRY_AS_BDFL) {
1115 parser_flags |= PyPARSE_BARRY_AS_BDFL;
1116 }
1117 if (flags->cf_flags & PyCF_TYPE_COMMENTS) {
1118 parser_flags |= PyPARSE_TYPE_COMMENTS;
1119 }
Guido van Rossum9d197c72020-06-27 17:33:49 -07001120 if ((flags->cf_flags & PyCF_ONLY_AST) && flags->cf_feature_version < 7) {
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001121 parser_flags |= PyPARSE_ASYNC_HACKS;
1122 }
Pablo Galindo2b74c832020-04-27 18:02:07 +01001123 return parser_flags;
1124}
1125
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001126Parser *
Pablo Galindo2b74c832020-04-27 18:02:07 +01001127_PyPegen_Parser_New(struct tok_state *tok, int start_rule, int flags,
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001128 int feature_version, int *errcode, PyArena *arena)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001129{
1130 Parser *p = PyMem_Malloc(sizeof(Parser));
1131 if (p == NULL) {
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001132 return (Parser *) PyErr_NoMemory();
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001133 }
1134 assert(tok != NULL);
Guido van Rossumd9d6ead2020-05-01 09:42:32 -07001135 tok->type_comments = (flags & PyPARSE_TYPE_COMMENTS) > 0;
1136 tok->async_hacks = (flags & PyPARSE_ASYNC_HACKS) > 0;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001137 p->tok = tok;
1138 p->keywords = NULL;
1139 p->n_keyword_lists = -1;
1140 p->tokens = PyMem_Malloc(sizeof(Token *));
1141 if (!p->tokens) {
1142 PyMem_Free(p);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001143 return (Parser *) PyErr_NoMemory();
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001144 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001145 p->tokens[0] = PyMem_Calloc(1, sizeof(Token));
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001146 if (!p->tokens) {
1147 PyMem_Free(p->tokens);
1148 PyMem_Free(p);
1149 return (Parser *) PyErr_NoMemory();
1150 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001151 if (!growable_comment_array_init(&p->type_ignore_comments, 10)) {
1152 PyMem_Free(p->tokens[0]);
1153 PyMem_Free(p->tokens);
1154 PyMem_Free(p);
1155 return (Parser *) PyErr_NoMemory();
1156 }
1157
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001158 p->mark = 0;
1159 p->fill = 0;
1160 p->size = 1;
1161
1162 p->errcode = errcode;
1163 p->arena = arena;
1164 p->start_rule = start_rule;
1165 p->parsing_started = 0;
1166 p->normalize = NULL;
1167 p->error_indicator = 0;
1168
1169 p->starting_lineno = 0;
1170 p->starting_col_offset = 0;
Pablo Galindo2b74c832020-04-27 18:02:07 +01001171 p->flags = flags;
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001172 p->feature_version = feature_version;
Lysandros Nikolaou2f37c352020-05-07 13:37:51 +03001173 p->known_err_token = NULL;
Pablo Galindo800a35c62020-05-25 18:38:45 +01001174 p->level = 0;
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001175 p->call_invalid_rules = 0;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001176
1177 return p;
1178}
1179
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001180static void
1181reset_parser_state(Parser *p)
1182{
1183 for (int i = 0; i < p->fill; i++) {
1184 p->tokens[i]->memo = NULL;
1185 }
1186 p->mark = 0;
1187 p->call_invalid_rules = 1;
1188}
1189
Pablo Galindod6d63712021-01-19 23:59:33 +00001190static int
1191_PyPegen_check_tokenizer_errors(Parser *p) {
1192 // Tokenize the whole input to see if there are any tokenization
1193 // errors such as mistmatching parentheses. These will get priority
1194 // over generic syntax errors only if the line number of the error is
1195 // before the one that we had for the generic error.
1196
1197 // We don't want to tokenize to the end for interactive input
1198 if (p->tok->prompt != NULL) {
1199 return 0;
1200 }
1201
Pablo Galindod6d63712021-01-19 23:59:33 +00001202 Token *current_token = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1];
1203 Py_ssize_t current_err_line = current_token->lineno;
1204
Pablo Galindod6d63712021-01-19 23:59:33 +00001205 for (;;) {
1206 const char *start;
1207 const char *end;
1208 switch (PyTokenizer_Get(p->tok, &start, &end)) {
1209 case ERRORTOKEN:
1210 if (p->tok->level != 0) {
1211 int error_lineno = p->tok->parenlinenostack[p->tok->level-1];
1212 if (current_err_line > error_lineno) {
1213 raise_unclosed_parentheses_error(p);
1214 return -1;
1215 }
1216 }
1217 break;
1218 case ENDMARKER:
1219 break;
1220 default:
1221 continue;
1222 }
1223 break;
1224 }
1225
Pablo Galindod6d63712021-01-19 23:59:33 +00001226 return 0;
1227}
1228
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001229void *
1230_PyPegen_run_parser(Parser *p)
1231{
1232 void *res = _PyPegen_parse(p);
1233 if (res == NULL) {
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001234 reset_parser_state(p);
1235 _PyPegen_parse(p);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001236 if (PyErr_Occurred()) {
1237 return NULL;
1238 }
1239 if (p->fill == 0) {
1240 RAISE_SYNTAX_ERROR("error at start before reading any input");
1241 }
Pablo Galindocd8dcbc2021-03-14 04:38:40 +01001242 else if (p->tok->done == E_EOF) {
Pablo Galindod6d63712021-01-19 23:59:33 +00001243 if (p->tok->level) {
1244 raise_unclosed_parentheses_error(p);
1245 } else {
1246 RAISE_SYNTAX_ERROR("unexpected EOF while parsing");
1247 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001248 }
1249 else {
1250 if (p->tokens[p->fill-1]->type == INDENT) {
1251 RAISE_INDENTATION_ERROR("unexpected indent");
1252 }
1253 else if (p->tokens[p->fill-1]->type == DEDENT) {
1254 RAISE_INDENTATION_ERROR("unexpected unindent");
1255 }
1256 else {
1257 RAISE_SYNTAX_ERROR("invalid syntax");
Pablo Galindoc3f167d2021-01-20 19:11:56 +00001258 // _PyPegen_check_tokenizer_errors will override the existing
1259 // generic SyntaxError we just raised if errors are found.
1260 _PyPegen_check_tokenizer_errors(p);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001261 }
1262 }
1263 return NULL;
1264 }
1265
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001266 if (p->start_rule == Py_single_input && bad_single_statement(p)) {
1267 p->tok->done = E_BADSINGLE; // This is not necessary for now, but might be in the future
1268 return RAISE_SYNTAX_ERROR("multiple statements found while compiling a single statement");
1269 }
1270
Victor Stinnere0bf70d2021-03-18 02:46:06 +01001271 // test_peg_generator defines _Py_TEST_PEGEN to not call PyAST_Validate()
1272#if defined(Py_DEBUG) && !defined(_Py_TEST_PEGEN)
Pablo Galindo13322262020-07-27 23:46:59 +01001273 if (p->start_rule == Py_single_input ||
1274 p->start_rule == Py_file_input ||
1275 p->start_rule == Py_eval_input)
1276 {
Victor Stinnereec8e612021-03-18 14:57:49 +01001277 if (!_PyAST_Validate(res)) {
Batuhan Taskaya3af4b582020-10-30 14:48:41 +03001278 return NULL;
1279 }
Pablo Galindo13322262020-07-27 23:46:59 +01001280 }
1281#endif
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001282 return res;
1283}
1284
1285mod_ty
1286_PyPegen_run_parser_from_file_pointer(FILE *fp, int start_rule, PyObject *filename_ob,
1287 const char *enc, const char *ps1, const char *ps2,
Pablo Galindo2b74c832020-04-27 18:02:07 +01001288 PyCompilerFlags *flags, int *errcode, PyArena *arena)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001289{
1290 struct tok_state *tok = PyTokenizer_FromFile(fp, enc, ps1, ps2);
1291 if (tok == NULL) {
1292 if (PyErr_Occurred()) {
1293 raise_tokenizer_init_error(filename_ob);
1294 return NULL;
1295 }
1296 return NULL;
1297 }
Pablo Galindocd8dcbc2021-03-14 04:38:40 +01001298 if (!tok->fp || ps1 != NULL || ps2 != NULL ||
1299 PyUnicode_CompareWithASCIIString(filename_ob, "<stdin>") == 0) {
1300 tok->fp_interactive = 1;
1301 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001302 // This transfers the ownership to the tokenizer
1303 tok->filename = filename_ob;
1304 Py_INCREF(filename_ob);
1305
1306 // From here on we need to clean up even if there's an error
1307 mod_ty result = NULL;
1308
Pablo Galindo2b74c832020-04-27 18:02:07 +01001309 int parser_flags = compute_parser_flags(flags);
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001310 Parser *p = _PyPegen_Parser_New(tok, start_rule, parser_flags, PY_MINOR_VERSION,
1311 errcode, arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001312 if (p == NULL) {
1313 goto error;
1314 }
1315
1316 result = _PyPegen_run_parser(p);
1317 _PyPegen_Parser_Free(p);
1318
1319error:
1320 PyTokenizer_Free(tok);
1321 return result;
1322}
1323
1324mod_ty
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001325_PyPegen_run_parser_from_string(const char *str, int start_rule, PyObject *filename_ob,
Pablo Galindo2b74c832020-04-27 18:02:07 +01001326 PyCompilerFlags *flags, PyArena *arena)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001327{
1328 int exec_input = start_rule == Py_file_input;
1329
1330 struct tok_state *tok;
Pablo Galindo2b74c832020-04-27 18:02:07 +01001331 if (flags == NULL || flags->cf_flags & PyCF_IGNORE_COOKIE) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001332 tok = PyTokenizer_FromUTF8(str, exec_input);
1333 } else {
1334 tok = PyTokenizer_FromString(str, exec_input);
1335 }
1336 if (tok == NULL) {
1337 if (PyErr_Occurred()) {
1338 raise_tokenizer_init_error(filename_ob);
1339 }
1340 return NULL;
1341 }
1342 // This transfers the ownership to the tokenizer
1343 tok->filename = filename_ob;
1344 Py_INCREF(filename_ob);
1345
1346 // We need to clear up from here on
1347 mod_ty result = NULL;
1348
Pablo Galindo2b74c832020-04-27 18:02:07 +01001349 int parser_flags = compute_parser_flags(flags);
Guido van Rossum9d197c72020-06-27 17:33:49 -07001350 int feature_version = flags && (flags->cf_flags & PyCF_ONLY_AST) ?
1351 flags->cf_feature_version : PY_MINOR_VERSION;
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001352 Parser *p = _PyPegen_Parser_New(tok, start_rule, parser_flags, feature_version,
1353 NULL, arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001354 if (p == NULL) {
1355 goto error;
1356 }
1357
1358 result = _PyPegen_run_parser(p);
1359 _PyPegen_Parser_Free(p);
1360
1361error:
1362 PyTokenizer_Free(tok);
1363 return result;
1364}
1365
Pablo Galindoa5634c42020-09-16 19:42:00 +01001366asdl_stmt_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001367_PyPegen_interactive_exit(Parser *p)
1368{
1369 if (p->errcode) {
1370 *(p->errcode) = E_EOF;
1371 }
1372 return NULL;
1373}
1374
1375/* Creates a single-element asdl_seq* that contains a */
1376asdl_seq *
1377_PyPegen_singleton_seq(Parser *p, void *a)
1378{
1379 assert(a != NULL);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001380 asdl_seq *seq = (asdl_seq*)_Py_asdl_generic_seq_new(1, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001381 if (!seq) {
1382 return NULL;
1383 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001384 asdl_seq_SET_UNTYPED(seq, 0, a);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001385 return seq;
1386}
1387
1388/* Creates a copy of seq and prepends a to it */
1389asdl_seq *
1390_PyPegen_seq_insert_in_front(Parser *p, void *a, asdl_seq *seq)
1391{
1392 assert(a != NULL);
1393 if (!seq) {
1394 return _PyPegen_singleton_seq(p, a);
1395 }
1396
Pablo Galindoa5634c42020-09-16 19:42:00 +01001397 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001398 if (!new_seq) {
1399 return NULL;
1400 }
1401
Pablo Galindoa5634c42020-09-16 19:42:00 +01001402 asdl_seq_SET_UNTYPED(new_seq, 0, a);
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001403 for (Py_ssize_t i = 1, l = asdl_seq_LEN(new_seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001404 asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i - 1));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001405 }
1406 return new_seq;
1407}
1408
Guido van Rossumc001c092020-04-30 12:12:19 -07001409/* Creates a copy of seq and appends a to it */
1410asdl_seq *
1411_PyPegen_seq_append_to_end(Parser *p, asdl_seq *seq, void *a)
1412{
1413 assert(a != NULL);
1414 if (!seq) {
1415 return _PyPegen_singleton_seq(p, a);
1416 }
1417
Pablo Galindoa5634c42020-09-16 19:42:00 +01001418 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07001419 if (!new_seq) {
1420 return NULL;
1421 }
1422
1423 for (Py_ssize_t i = 0, l = asdl_seq_LEN(new_seq); i + 1 < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001424 asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i));
Guido van Rossumc001c092020-04-30 12:12:19 -07001425 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001426 asdl_seq_SET_UNTYPED(new_seq, asdl_seq_LEN(new_seq) - 1, a);
Guido van Rossumc001c092020-04-30 12:12:19 -07001427 return new_seq;
1428}
1429
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001430static Py_ssize_t
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001431_get_flattened_seq_size(asdl_seq *seqs)
1432{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001433 Py_ssize_t size = 0;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001434 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001435 asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001436 size += asdl_seq_LEN(inner_seq);
1437 }
1438 return size;
1439}
1440
1441/* Flattens an asdl_seq* of asdl_seq*s */
1442asdl_seq *
1443_PyPegen_seq_flatten(Parser *p, asdl_seq *seqs)
1444{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001445 Py_ssize_t flattened_seq_size = _get_flattened_seq_size(seqs);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001446 assert(flattened_seq_size > 0);
1447
Pablo Galindoa5634c42020-09-16 19:42:00 +01001448 asdl_seq *flattened_seq = (asdl_seq*)_Py_asdl_generic_seq_new(flattened_seq_size, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001449 if (!flattened_seq) {
1450 return NULL;
1451 }
1452
1453 int flattened_seq_idx = 0;
1454 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001455 asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i);
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001456 for (Py_ssize_t j = 0, li = asdl_seq_LEN(inner_seq); j < li; j++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001457 asdl_seq_SET_UNTYPED(flattened_seq, flattened_seq_idx++, asdl_seq_GET_UNTYPED(inner_seq, j));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001458 }
1459 }
1460 assert(flattened_seq_idx == flattened_seq_size);
1461
1462 return flattened_seq;
1463}
1464
1465/* Creates a new name of the form <first_name>.<second_name> */
1466expr_ty
1467_PyPegen_join_names_with_dot(Parser *p, expr_ty first_name, expr_ty second_name)
1468{
1469 assert(first_name != NULL && second_name != NULL);
1470 PyObject *first_identifier = first_name->v.Name.id;
1471 PyObject *second_identifier = second_name->v.Name.id;
1472
1473 if (PyUnicode_READY(first_identifier) == -1) {
1474 return NULL;
1475 }
1476 if (PyUnicode_READY(second_identifier) == -1) {
1477 return NULL;
1478 }
1479 const char *first_str = PyUnicode_AsUTF8(first_identifier);
1480 if (!first_str) {
1481 return NULL;
1482 }
1483 const char *second_str = PyUnicode_AsUTF8(second_identifier);
1484 if (!second_str) {
1485 return NULL;
1486 }
Pablo Galindo9f27dd32020-04-24 01:13:33 +01001487 Py_ssize_t len = strlen(first_str) + strlen(second_str) + 1; // +1 for the dot
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001488
1489 PyObject *str = PyBytes_FromStringAndSize(NULL, len);
1490 if (!str) {
1491 return NULL;
1492 }
1493
1494 char *s = PyBytes_AS_STRING(str);
1495 if (!s) {
1496 return NULL;
1497 }
1498
1499 strcpy(s, first_str);
1500 s += strlen(first_str);
1501 *s++ = '.';
1502 strcpy(s, second_str);
1503 s += strlen(second_str);
1504 *s = '\0';
1505
1506 PyObject *uni = PyUnicode_DecodeUTF8(PyBytes_AS_STRING(str), PyBytes_GET_SIZE(str), NULL);
1507 Py_DECREF(str);
1508 if (!uni) {
1509 return NULL;
1510 }
1511 PyUnicode_InternInPlace(&uni);
Victor Stinner8370e072021-03-24 02:23:01 +01001512 if (_PyArena_AddPyObject(p->arena, uni) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001513 Py_DECREF(uni);
1514 return NULL;
1515 }
1516
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001517 return _PyAST_Name(uni, Load, EXTRA_EXPR(first_name, second_name));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001518}
1519
1520/* Counts the total number of dots in seq's tokens */
1521int
1522_PyPegen_seq_count_dots(asdl_seq *seq)
1523{
1524 int number_of_dots = 0;
1525 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001526 Token *current_expr = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001527 switch (current_expr->type) {
1528 case ELLIPSIS:
1529 number_of_dots += 3;
1530 break;
1531 case DOT:
1532 number_of_dots += 1;
1533 break;
1534 default:
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001535 Py_UNREACHABLE();
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001536 }
1537 }
1538
1539 return number_of_dots;
1540}
1541
1542/* Creates an alias with '*' as the identifier name */
1543alias_ty
1544_PyPegen_alias_for_star(Parser *p)
1545{
1546 PyObject *str = PyUnicode_InternFromString("*");
1547 if (!str) {
1548 return NULL;
1549 }
Victor Stinner8370e072021-03-24 02:23:01 +01001550 if (_PyArena_AddPyObject(p->arena, str) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001551 Py_DECREF(str);
1552 return NULL;
1553 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001554 return _PyAST_alias(str, NULL, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001555}
1556
1557/* Creates a new asdl_seq* with the identifiers of all the names in seq */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001558asdl_identifier_seq *
1559_PyPegen_map_names_to_ids(Parser *p, asdl_expr_seq *seq)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001560{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001561 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001562 assert(len > 0);
1563
Pablo Galindoa5634c42020-09-16 19:42:00 +01001564 asdl_identifier_seq *new_seq = _Py_asdl_identifier_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001565 if (!new_seq) {
1566 return NULL;
1567 }
1568 for (Py_ssize_t i = 0; i < len; i++) {
1569 expr_ty e = asdl_seq_GET(seq, i);
1570 asdl_seq_SET(new_seq, i, e->v.Name.id);
1571 }
1572 return new_seq;
1573}
1574
1575/* Constructs a CmpopExprPair */
1576CmpopExprPair *
1577_PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr)
1578{
1579 assert(expr != NULL);
Victor Stinner8370e072021-03-24 02:23:01 +01001580 CmpopExprPair *a = _PyArena_Malloc(p->arena, sizeof(CmpopExprPair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001581 if (!a) {
1582 return NULL;
1583 }
1584 a->cmpop = cmpop;
1585 a->expr = expr;
1586 return a;
1587}
1588
1589asdl_int_seq *
1590_PyPegen_get_cmpops(Parser *p, asdl_seq *seq)
1591{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001592 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001593 assert(len > 0);
1594
1595 asdl_int_seq *new_seq = _Py_asdl_int_seq_new(len, p->arena);
1596 if (!new_seq) {
1597 return NULL;
1598 }
1599 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001600 CmpopExprPair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001601 asdl_seq_SET(new_seq, i, pair->cmpop);
1602 }
1603 return new_seq;
1604}
1605
Pablo Galindoa5634c42020-09-16 19:42:00 +01001606asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001607_PyPegen_get_exprs(Parser *p, asdl_seq *seq)
1608{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001609 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001610 assert(len > 0);
1611
Pablo Galindoa5634c42020-09-16 19:42:00 +01001612 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001613 if (!new_seq) {
1614 return NULL;
1615 }
1616 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001617 CmpopExprPair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001618 asdl_seq_SET(new_seq, i, pair->expr);
1619 }
1620 return new_seq;
1621}
1622
1623/* Creates an asdl_seq* where all the elements have been changed to have ctx as context */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001624static asdl_expr_seq *
1625_set_seq_context(Parser *p, asdl_expr_seq *seq, expr_context_ty ctx)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001626{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001627 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001628 if (len == 0) {
1629 return NULL;
1630 }
1631
Pablo Galindoa5634c42020-09-16 19:42:00 +01001632 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001633 if (!new_seq) {
1634 return NULL;
1635 }
1636 for (Py_ssize_t i = 0; i < len; i++) {
1637 expr_ty e = asdl_seq_GET(seq, i);
1638 asdl_seq_SET(new_seq, i, _PyPegen_set_expr_context(p, e, ctx));
1639 }
1640 return new_seq;
1641}
1642
1643static expr_ty
1644_set_name_context(Parser *p, expr_ty e, expr_context_ty ctx)
1645{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001646 return _PyAST_Name(e->v.Name.id, ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001647}
1648
1649static expr_ty
1650_set_tuple_context(Parser *p, expr_ty e, expr_context_ty ctx)
1651{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001652 return _PyAST_Tuple(
Pablo Galindoa5634c42020-09-16 19:42:00 +01001653 _set_seq_context(p, e->v.Tuple.elts, ctx),
1654 ctx,
1655 EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001656}
1657
1658static expr_ty
1659_set_list_context(Parser *p, expr_ty e, expr_context_ty ctx)
1660{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001661 return _PyAST_List(
Pablo Galindoa5634c42020-09-16 19:42:00 +01001662 _set_seq_context(p, e->v.List.elts, ctx),
1663 ctx,
1664 EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001665}
1666
1667static expr_ty
1668_set_subscript_context(Parser *p, expr_ty e, expr_context_ty ctx)
1669{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001670 return _PyAST_Subscript(e->v.Subscript.value, e->v.Subscript.slice,
1671 ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001672}
1673
1674static expr_ty
1675_set_attribute_context(Parser *p, expr_ty e, expr_context_ty ctx)
1676{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001677 return _PyAST_Attribute(e->v.Attribute.value, e->v.Attribute.attr,
1678 ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001679}
1680
1681static expr_ty
1682_set_starred_context(Parser *p, expr_ty e, expr_context_ty ctx)
1683{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001684 return _PyAST_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx),
1685 ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001686}
1687
1688/* Creates an `expr_ty` equivalent to `expr` but with `ctx` as context */
1689expr_ty
1690_PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx)
1691{
1692 assert(expr != NULL);
1693
1694 expr_ty new = NULL;
1695 switch (expr->kind) {
1696 case Name_kind:
1697 new = _set_name_context(p, expr, ctx);
1698 break;
1699 case Tuple_kind:
1700 new = _set_tuple_context(p, expr, ctx);
1701 break;
1702 case List_kind:
1703 new = _set_list_context(p, expr, ctx);
1704 break;
1705 case Subscript_kind:
1706 new = _set_subscript_context(p, expr, ctx);
1707 break;
1708 case Attribute_kind:
1709 new = _set_attribute_context(p, expr, ctx);
1710 break;
1711 case Starred_kind:
1712 new = _set_starred_context(p, expr, ctx);
1713 break;
1714 default:
1715 new = expr;
1716 }
1717 return new;
1718}
1719
1720/* Constructs a KeyValuePair that is used when parsing a dict's key value pairs */
1721KeyValuePair *
1722_PyPegen_key_value_pair(Parser *p, expr_ty key, expr_ty value)
1723{
Victor Stinner8370e072021-03-24 02:23:01 +01001724 KeyValuePair *a = _PyArena_Malloc(p->arena, sizeof(KeyValuePair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001725 if (!a) {
1726 return NULL;
1727 }
1728 a->key = key;
1729 a->value = value;
1730 return a;
1731}
1732
1733/* Extracts all keys from an asdl_seq* of KeyValuePair*'s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001734asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001735_PyPegen_get_keys(Parser *p, asdl_seq *seq)
1736{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001737 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001738 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001739 if (!new_seq) {
1740 return NULL;
1741 }
1742 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001743 KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001744 asdl_seq_SET(new_seq, i, pair->key);
1745 }
1746 return new_seq;
1747}
1748
1749/* Extracts all values from an asdl_seq* of KeyValuePair*'s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001750asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001751_PyPegen_get_values(Parser *p, asdl_seq *seq)
1752{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001753 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001754 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001755 if (!new_seq) {
1756 return NULL;
1757 }
1758 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001759 KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001760 asdl_seq_SET(new_seq, i, pair->value);
1761 }
1762 return new_seq;
1763}
1764
1765/* Constructs a NameDefaultPair */
1766NameDefaultPair *
Guido van Rossumc001c092020-04-30 12:12:19 -07001767_PyPegen_name_default_pair(Parser *p, arg_ty arg, expr_ty value, Token *tc)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001768{
Victor Stinner8370e072021-03-24 02:23:01 +01001769 NameDefaultPair *a = _PyArena_Malloc(p->arena, sizeof(NameDefaultPair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001770 if (!a) {
1771 return NULL;
1772 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001773 a->arg = _PyPegen_add_type_comment_to_arg(p, arg, tc);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001774 a->value = value;
1775 return a;
1776}
1777
1778/* Constructs a SlashWithDefault */
1779SlashWithDefault *
Pablo Galindoa5634c42020-09-16 19:42:00 +01001780_PyPegen_slash_with_default(Parser *p, asdl_arg_seq *plain_names, asdl_seq *names_with_defaults)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001781{
Victor Stinner8370e072021-03-24 02:23:01 +01001782 SlashWithDefault *a = _PyArena_Malloc(p->arena, sizeof(SlashWithDefault));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001783 if (!a) {
1784 return NULL;
1785 }
1786 a->plain_names = plain_names;
1787 a->names_with_defaults = names_with_defaults;
1788 return a;
1789}
1790
1791/* Constructs a StarEtc */
1792StarEtc *
1793_PyPegen_star_etc(Parser *p, arg_ty vararg, asdl_seq *kwonlyargs, arg_ty kwarg)
1794{
Victor Stinner8370e072021-03-24 02:23:01 +01001795 StarEtc *a = _PyArena_Malloc(p->arena, sizeof(StarEtc));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001796 if (!a) {
1797 return NULL;
1798 }
1799 a->vararg = vararg;
1800 a->kwonlyargs = kwonlyargs;
1801 a->kwarg = kwarg;
1802 return a;
1803}
1804
1805asdl_seq *
1806_PyPegen_join_sequences(Parser *p, asdl_seq *a, asdl_seq *b)
1807{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001808 Py_ssize_t first_len = asdl_seq_LEN(a);
1809 Py_ssize_t second_len = asdl_seq_LEN(b);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001810 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(first_len + second_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001811 if (!new_seq) {
1812 return NULL;
1813 }
1814
1815 int k = 0;
1816 for (Py_ssize_t i = 0; i < first_len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001817 asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(a, i));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001818 }
1819 for (Py_ssize_t i = 0; i < second_len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001820 asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(b, i));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001821 }
1822
1823 return new_seq;
1824}
1825
Pablo Galindoa5634c42020-09-16 19:42:00 +01001826static asdl_arg_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001827_get_names(Parser *p, asdl_seq *names_with_defaults)
1828{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001829 Py_ssize_t len = asdl_seq_LEN(names_with_defaults);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001830 asdl_arg_seq *seq = _Py_asdl_arg_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001831 if (!seq) {
1832 return NULL;
1833 }
1834 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001835 NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001836 asdl_seq_SET(seq, i, pair->arg);
1837 }
1838 return seq;
1839}
1840
Pablo Galindoa5634c42020-09-16 19:42:00 +01001841static asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001842_get_defaults(Parser *p, asdl_seq *names_with_defaults)
1843{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001844 Py_ssize_t len = asdl_seq_LEN(names_with_defaults);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001845 asdl_expr_seq *seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001846 if (!seq) {
1847 return NULL;
1848 }
1849 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001850 NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001851 asdl_seq_SET(seq, i, pair->value);
1852 }
1853 return seq;
1854}
1855
1856/* Constructs an arguments_ty object out of all the parsed constructs in the parameters rule */
1857arguments_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01001858_PyPegen_make_arguments(Parser *p, asdl_arg_seq *slash_without_default,
1859 SlashWithDefault *slash_with_default, asdl_arg_seq *plain_names,
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001860 asdl_seq *names_with_default, StarEtc *star_etc)
1861{
Pablo Galindoa5634c42020-09-16 19:42:00 +01001862 asdl_arg_seq *posonlyargs;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001863 if (slash_without_default != NULL) {
1864 posonlyargs = slash_without_default;
1865 }
1866 else if (slash_with_default != NULL) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001867 asdl_arg_seq *slash_with_default_names =
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001868 _get_names(p, slash_with_default->names_with_defaults);
1869 if (!slash_with_default_names) {
1870 return NULL;
1871 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001872 posonlyargs = (asdl_arg_seq*)_PyPegen_join_sequences(
1873 p,
1874 (asdl_seq*)slash_with_default->plain_names,
1875 (asdl_seq*)slash_with_default_names);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001876 if (!posonlyargs) {
1877 return NULL;
1878 }
1879 }
1880 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001881 posonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001882 if (!posonlyargs) {
1883 return NULL;
1884 }
1885 }
1886
Pablo Galindoa5634c42020-09-16 19:42:00 +01001887 asdl_arg_seq *posargs;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001888 if (plain_names != NULL && names_with_default != NULL) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001889 asdl_arg_seq *names_with_default_names = _get_names(p, names_with_default);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001890 if (!names_with_default_names) {
1891 return NULL;
1892 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001893 posargs = (asdl_arg_seq*)_PyPegen_join_sequences(
1894 p,
1895 (asdl_seq*)plain_names,
1896 (asdl_seq*)names_with_default_names);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001897 if (!posargs) {
1898 return NULL;
1899 }
1900 }
1901 else if (plain_names == NULL && names_with_default != NULL) {
1902 posargs = _get_names(p, names_with_default);
1903 if (!posargs) {
1904 return NULL;
1905 }
1906 }
1907 else if (plain_names != NULL && names_with_default == NULL) {
1908 posargs = plain_names;
1909 }
1910 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001911 posargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001912 if (!posargs) {
1913 return NULL;
1914 }
1915 }
1916
Pablo Galindoa5634c42020-09-16 19:42:00 +01001917 asdl_expr_seq *posdefaults;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001918 if (slash_with_default != NULL && names_with_default != NULL) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001919 asdl_expr_seq *slash_with_default_values =
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001920 _get_defaults(p, slash_with_default->names_with_defaults);
1921 if (!slash_with_default_values) {
1922 return NULL;
1923 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001924 asdl_expr_seq *names_with_default_values = _get_defaults(p, names_with_default);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001925 if (!names_with_default_values) {
1926 return NULL;
1927 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001928 posdefaults = (asdl_expr_seq*)_PyPegen_join_sequences(
1929 p,
1930 (asdl_seq*)slash_with_default_values,
1931 (asdl_seq*)names_with_default_values);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001932 if (!posdefaults) {
1933 return NULL;
1934 }
1935 }
1936 else if (slash_with_default == NULL && names_with_default != NULL) {
1937 posdefaults = _get_defaults(p, names_with_default);
1938 if (!posdefaults) {
1939 return NULL;
1940 }
1941 }
1942 else if (slash_with_default != NULL && names_with_default == NULL) {
1943 posdefaults = _get_defaults(p, slash_with_default->names_with_defaults);
1944 if (!posdefaults) {
1945 return NULL;
1946 }
1947 }
1948 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001949 posdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001950 if (!posdefaults) {
1951 return NULL;
1952 }
1953 }
1954
1955 arg_ty vararg = NULL;
1956 if (star_etc != NULL && star_etc->vararg != NULL) {
1957 vararg = star_etc->vararg;
1958 }
1959
Pablo Galindoa5634c42020-09-16 19:42:00 +01001960 asdl_arg_seq *kwonlyargs;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001961 if (star_etc != NULL && star_etc->kwonlyargs != NULL) {
1962 kwonlyargs = _get_names(p, star_etc->kwonlyargs);
1963 if (!kwonlyargs) {
1964 return NULL;
1965 }
1966 }
1967 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001968 kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001969 if (!kwonlyargs) {
1970 return NULL;
1971 }
1972 }
1973
Pablo Galindoa5634c42020-09-16 19:42:00 +01001974 asdl_expr_seq *kwdefaults;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001975 if (star_etc != NULL && star_etc->kwonlyargs != NULL) {
1976 kwdefaults = _get_defaults(p, star_etc->kwonlyargs);
1977 if (!kwdefaults) {
1978 return NULL;
1979 }
1980 }
1981 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001982 kwdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001983 if (!kwdefaults) {
1984 return NULL;
1985 }
1986 }
1987
1988 arg_ty kwarg = NULL;
1989 if (star_etc != NULL && star_etc->kwarg != NULL) {
1990 kwarg = star_etc->kwarg;
1991 }
1992
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001993 return _PyAST_arguments(posonlyargs, posargs, vararg, kwonlyargs,
1994 kwdefaults, kwarg, posdefaults, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001995}
1996
1997/* Constructs an empty arguments_ty object, that gets used when a function accepts no
1998 * arguments. */
1999arguments_ty
2000_PyPegen_empty_arguments(Parser *p)
2001{
Pablo Galindoa5634c42020-09-16 19:42:00 +01002002 asdl_arg_seq *posonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002003 if (!posonlyargs) {
2004 return NULL;
2005 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002006 asdl_arg_seq *posargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002007 if (!posargs) {
2008 return NULL;
2009 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002010 asdl_expr_seq *posdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002011 if (!posdefaults) {
2012 return NULL;
2013 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002014 asdl_arg_seq *kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002015 if (!kwonlyargs) {
2016 return NULL;
2017 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002018 asdl_expr_seq *kwdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002019 if (!kwdefaults) {
2020 return NULL;
2021 }
2022
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002023 return _PyAST_arguments(posonlyargs, posargs, NULL, kwonlyargs,
2024 kwdefaults, NULL, posdefaults, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002025}
2026
2027/* Encapsulates the value of an operator_ty into an AugOperator struct */
2028AugOperator *
2029_PyPegen_augoperator(Parser *p, operator_ty kind)
2030{
Victor Stinner8370e072021-03-24 02:23:01 +01002031 AugOperator *a = _PyArena_Malloc(p->arena, sizeof(AugOperator));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002032 if (!a) {
2033 return NULL;
2034 }
2035 a->kind = kind;
2036 return a;
2037}
2038
2039/* Construct a FunctionDef equivalent to function_def, but with decorators */
2040stmt_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002041_PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002042{
2043 assert(function_def != NULL);
2044 if (function_def->kind == AsyncFunctionDef_kind) {
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002045 return _PyAST_AsyncFunctionDef(
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002046 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args,
2047 function_def->v.FunctionDef.body, decorators, function_def->v.FunctionDef.returns,
2048 function_def->v.FunctionDef.type_comment, function_def->lineno,
2049 function_def->col_offset, function_def->end_lineno, function_def->end_col_offset,
2050 p->arena);
2051 }
2052
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002053 return _PyAST_FunctionDef(
2054 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args,
2055 function_def->v.FunctionDef.body, decorators,
2056 function_def->v.FunctionDef.returns,
2057 function_def->v.FunctionDef.type_comment, function_def->lineno,
2058 function_def->col_offset, function_def->end_lineno,
2059 function_def->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002060}
2061
2062/* Construct a ClassDef equivalent to class_def, but with decorators */
2063stmt_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002064_PyPegen_class_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty class_def)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002065{
2066 assert(class_def != NULL);
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002067 return _PyAST_ClassDef(
2068 class_def->v.ClassDef.name, class_def->v.ClassDef.bases,
2069 class_def->v.ClassDef.keywords, class_def->v.ClassDef.body, decorators,
2070 class_def->lineno, class_def->col_offset, class_def->end_lineno,
2071 class_def->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002072}
2073
2074/* Construct a KeywordOrStarred */
2075KeywordOrStarred *
2076_PyPegen_keyword_or_starred(Parser *p, void *element, int is_keyword)
2077{
Victor Stinner8370e072021-03-24 02:23:01 +01002078 KeywordOrStarred *a = _PyArena_Malloc(p->arena, sizeof(KeywordOrStarred));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002079 if (!a) {
2080 return NULL;
2081 }
2082 a->element = element;
2083 a->is_keyword = is_keyword;
2084 return a;
2085}
2086
2087/* Get the number of starred expressions in an asdl_seq* of KeywordOrStarred*s */
2088static int
2089_seq_number_of_starred_exprs(asdl_seq *seq)
2090{
2091 int n = 0;
2092 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002093 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002094 if (!k->is_keyword) {
2095 n++;
2096 }
2097 }
2098 return n;
2099}
2100
2101/* Extract the starred expressions of an asdl_seq* of KeywordOrStarred*s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01002102asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002103_PyPegen_seq_extract_starred_exprs(Parser *p, asdl_seq *kwargs)
2104{
2105 int new_len = _seq_number_of_starred_exprs(kwargs);
2106 if (new_len == 0) {
2107 return NULL;
2108 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002109 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(new_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002110 if (!new_seq) {
2111 return NULL;
2112 }
2113
2114 int idx = 0;
2115 for (Py_ssize_t i = 0, len = asdl_seq_LEN(kwargs); i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002116 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002117 if (!k->is_keyword) {
2118 asdl_seq_SET(new_seq, idx++, k->element);
2119 }
2120 }
2121 return new_seq;
2122}
2123
2124/* Return a new asdl_seq* with only the keywords in kwargs */
Pablo Galindoa5634c42020-09-16 19:42:00 +01002125asdl_keyword_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002126_PyPegen_seq_delete_starred_exprs(Parser *p, asdl_seq *kwargs)
2127{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002128 Py_ssize_t len = asdl_seq_LEN(kwargs);
2129 Py_ssize_t new_len = len - _seq_number_of_starred_exprs(kwargs);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002130 if (new_len == 0) {
2131 return NULL;
2132 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002133 asdl_keyword_seq *new_seq = _Py_asdl_keyword_seq_new(new_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002134 if (!new_seq) {
2135 return NULL;
2136 }
2137
2138 int idx = 0;
2139 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002140 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002141 if (k->is_keyword) {
2142 asdl_seq_SET(new_seq, idx++, k->element);
2143 }
2144 }
2145 return new_seq;
2146}
2147
2148expr_ty
2149_PyPegen_concatenate_strings(Parser *p, asdl_seq *strings)
2150{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002151 Py_ssize_t len = asdl_seq_LEN(strings);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002152 assert(len > 0);
2153
Pablo Galindoa5634c42020-09-16 19:42:00 +01002154 Token *first = asdl_seq_GET_UNTYPED(strings, 0);
2155 Token *last = asdl_seq_GET_UNTYPED(strings, len - 1);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002156
2157 int bytesmode = 0;
2158 PyObject *bytes_str = NULL;
2159
2160 FstringParser state;
2161 _PyPegen_FstringParser_Init(&state);
2162
2163 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002164 Token *t = asdl_seq_GET_UNTYPED(strings, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002165
2166 int this_bytesmode;
2167 int this_rawmode;
2168 PyObject *s;
2169 const char *fstr;
2170 Py_ssize_t fstrlen = -1;
2171
Lysandros Nikolaou2f37c352020-05-07 13:37:51 +03002172 if (_PyPegen_parsestr(p, &this_bytesmode, &this_rawmode, &s, &fstr, &fstrlen, t) != 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002173 goto error;
2174 }
2175
2176 /* Check that we are not mixing bytes with unicode. */
2177 if (i != 0 && bytesmode != this_bytesmode) {
2178 RAISE_SYNTAX_ERROR("cannot mix bytes and nonbytes literals");
2179 Py_XDECREF(s);
2180 goto error;
2181 }
2182 bytesmode = this_bytesmode;
2183
2184 if (fstr != NULL) {
2185 assert(s == NULL && !bytesmode);
2186
2187 int result = _PyPegen_FstringParser_ConcatFstring(p, &state, &fstr, fstr + fstrlen,
2188 this_rawmode, 0, first, t, last);
2189 if (result < 0) {
2190 goto error;
2191 }
2192 }
2193 else {
2194 /* String or byte string. */
2195 assert(s != NULL && fstr == NULL);
2196 assert(bytesmode ? PyBytes_CheckExact(s) : PyUnicode_CheckExact(s));
2197
2198 if (bytesmode) {
2199 if (i == 0) {
2200 bytes_str = s;
2201 }
2202 else {
2203 PyBytes_ConcatAndDel(&bytes_str, s);
2204 if (!bytes_str) {
2205 goto error;
2206 }
2207 }
2208 }
2209 else {
2210 /* This is a regular string. Concatenate it. */
2211 if (_PyPegen_FstringParser_ConcatAndDel(&state, s) < 0) {
2212 goto error;
2213 }
2214 }
2215 }
2216 }
2217
2218 if (bytesmode) {
Victor Stinner8370e072021-03-24 02:23:01 +01002219 if (_PyArena_AddPyObject(p->arena, bytes_str) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002220 goto error;
2221 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002222 return _PyAST_Constant(bytes_str, NULL, first->lineno,
2223 first->col_offset, last->end_lineno,
2224 last->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002225 }
2226
2227 return _PyPegen_FstringParser_Finish(p, &state, first, last);
2228
2229error:
2230 Py_XDECREF(bytes_str);
2231 _PyPegen_FstringParser_Dealloc(&state);
2232 if (PyErr_Occurred()) {
2233 raise_decode_error(p);
2234 }
2235 return NULL;
2236}
Guido van Rossumc001c092020-04-30 12:12:19 -07002237
2238mod_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002239_PyPegen_make_module(Parser *p, asdl_stmt_seq *a) {
2240 asdl_type_ignore_seq *type_ignores = NULL;
Guido van Rossumc001c092020-04-30 12:12:19 -07002241 Py_ssize_t num = p->type_ignore_comments.num_items;
2242 if (num > 0) {
2243 // Turn the raw (comment, lineno) pairs into TypeIgnore objects in the arena
Pablo Galindoa5634c42020-09-16 19:42:00 +01002244 type_ignores = _Py_asdl_type_ignore_seq_new(num, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002245 if (type_ignores == NULL) {
2246 return NULL;
2247 }
2248 for (int i = 0; i < num; i++) {
2249 PyObject *tag = _PyPegen_new_type_comment(p, p->type_ignore_comments.items[i].comment);
2250 if (tag == NULL) {
2251 return NULL;
2252 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002253 type_ignore_ty ti = _PyAST_TypeIgnore(p->type_ignore_comments.items[i].lineno,
2254 tag, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002255 if (ti == NULL) {
2256 return NULL;
2257 }
2258 asdl_seq_SET(type_ignores, i, ti);
2259 }
2260 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002261 return _PyAST_Module(a, type_ignores, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002262}
Pablo Galindo16ab0702020-05-15 02:04:52 +01002263
2264// Error reporting helpers
2265
2266expr_ty
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002267_PyPegen_get_invalid_target(expr_ty e, TARGETS_TYPE targets_type)
Pablo Galindo16ab0702020-05-15 02:04:52 +01002268{
2269 if (e == NULL) {
2270 return NULL;
2271 }
2272
2273#define VISIT_CONTAINER(CONTAINER, TYPE) do { \
2274 Py_ssize_t len = asdl_seq_LEN(CONTAINER->v.TYPE.elts);\
2275 for (Py_ssize_t i = 0; i < len; i++) {\
2276 expr_ty other = asdl_seq_GET(CONTAINER->v.TYPE.elts, i);\
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002277 expr_ty child = _PyPegen_get_invalid_target(other, targets_type);\
Pablo Galindo16ab0702020-05-15 02:04:52 +01002278 if (child != NULL) {\
2279 return child;\
2280 }\
2281 }\
2282 } while (0)
2283
2284 // We only need to visit List and Tuple nodes recursively as those
2285 // are the only ones that can contain valid names in targets when
2286 // they are parsed as expressions. Any other kind of expression
2287 // that is a container (like Sets or Dicts) is directly invalid and
2288 // we don't need to visit it recursively.
2289
2290 switch (e->kind) {
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002291 case List_kind:
Pablo Galindo16ab0702020-05-15 02:04:52 +01002292 VISIT_CONTAINER(e, List);
2293 return NULL;
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002294 case Tuple_kind:
Pablo Galindo16ab0702020-05-15 02:04:52 +01002295 VISIT_CONTAINER(e, Tuple);
2296 return NULL;
Pablo Galindo16ab0702020-05-15 02:04:52 +01002297 case Starred_kind:
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002298 if (targets_type == DEL_TARGETS) {
2299 return e;
2300 }
2301 return _PyPegen_get_invalid_target(e->v.Starred.value, targets_type);
2302 case Compare_kind:
2303 // This is needed, because the `a in b` in `for a in b` gets parsed
2304 // as a comparison, and so we need to search the left side of the comparison
2305 // for invalid targets.
2306 if (targets_type == FOR_TARGETS) {
2307 cmpop_ty cmpop = (cmpop_ty) asdl_seq_GET(e->v.Compare.ops, 0);
2308 if (cmpop == In) {
2309 return _PyPegen_get_invalid_target(e->v.Compare.left, targets_type);
2310 }
2311 return NULL;
2312 }
2313 return e;
Pablo Galindo16ab0702020-05-15 02:04:52 +01002314 case Name_kind:
2315 case Subscript_kind:
2316 case Attribute_kind:
2317 return NULL;
2318 default:
2319 return e;
2320 }
Lysandros Nikolaou75b863a2020-05-18 22:14:47 +03002321}
2322
2323void *_PyPegen_arguments_parsing_error(Parser *p, expr_ty e) {
2324 int kwarg_unpacking = 0;
2325 for (Py_ssize_t i = 0, l = asdl_seq_LEN(e->v.Call.keywords); i < l; i++) {
2326 keyword_ty keyword = asdl_seq_GET(e->v.Call.keywords, i);
2327 if (!keyword->arg) {
2328 kwarg_unpacking = 1;
2329 }
2330 }
2331
2332 const char *msg = NULL;
2333 if (kwarg_unpacking) {
2334 msg = "positional argument follows keyword argument unpacking";
2335 } else {
2336 msg = "positional argument follows keyword argument";
2337 }
2338
2339 return RAISE_SYNTAX_ERROR(msg);
2340}
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002341
2342void *
2343_PyPegen_nonparen_genexp_in_call(Parser *p, expr_ty args)
2344{
2345 /* The rule that calls this function is 'args for_if_clauses'.
2346 For the input f(L, x for x in y), L and x are in args and
2347 the for is parsed as a for_if_clause. We have to check if
2348 len <= 1, so that input like dict((a, b) for a, b in x)
2349 gets successfully parsed and then we pass the last
2350 argument (x in the above example) as the location of the
2351 error */
2352 Py_ssize_t len = asdl_seq_LEN(args->v.Call.args);
2353 if (len <= 1) {
2354 return NULL;
2355 }
2356
2357 return RAISE_SYNTAX_ERROR_KNOWN_LOCATION(
2358 (expr_ty) asdl_seq_GET(args->v.Call.args, len - 1),
2359 "Generator expression must be parenthesized"
2360 );
2361}
Pablo Galindo4a97b152020-09-02 17:44:19 +01002362
2363
Pablo Galindoa5634c42020-09-16 19:42:00 +01002364expr_ty _PyPegen_collect_call_seqs(Parser *p, asdl_expr_seq *a, asdl_seq *b,
Pablo Galindo315a61f2020-09-03 15:29:32 +01002365 int lineno, int col_offset, int end_lineno,
2366 int end_col_offset, PyArena *arena) {
Pablo Galindo4a97b152020-09-02 17:44:19 +01002367 Py_ssize_t args_len = asdl_seq_LEN(a);
2368 Py_ssize_t total_len = args_len;
2369
2370 if (b == NULL) {
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002371 return _PyAST_Call(_PyPegen_dummy_name(p), a, NULL, lineno, col_offset,
Pablo Galindo315a61f2020-09-03 15:29:32 +01002372 end_lineno, end_col_offset, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002373
2374 }
2375
Pablo Galindoa5634c42020-09-16 19:42:00 +01002376 asdl_expr_seq *starreds = _PyPegen_seq_extract_starred_exprs(p, b);
2377 asdl_keyword_seq *keywords = _PyPegen_seq_delete_starred_exprs(p, b);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002378
2379 if (starreds) {
2380 total_len += asdl_seq_LEN(starreds);
2381 }
2382
Pablo Galindoa5634c42020-09-16 19:42:00 +01002383 asdl_expr_seq *args = _Py_asdl_expr_seq_new(total_len, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002384
2385 Py_ssize_t i = 0;
2386 for (i = 0; i < args_len; i++) {
2387 asdl_seq_SET(args, i, asdl_seq_GET(a, i));
2388 }
2389 for (; i < total_len; i++) {
2390 asdl_seq_SET(args, i, asdl_seq_GET(starreds, i - args_len));
2391 }
2392
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002393 return _PyAST_Call(_PyPegen_dummy_name(p), args, keywords, lineno,
2394 col_offset, end_lineno, end_col_offset, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002395}