blob: 1d23b99dd980c3e72f82c94b48286a58bf1d2904 [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 }
37 return arg(a->arg, a->annotation, tco,
38 a->lineno, a->col_offset, a->end_lineno, a->end_col_offset,
39 p->arena);
40}
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 }
571 cache = Name(id, Load, 1, 0, 1, 0, p->arena);
572 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 }
922 return Name(id, Load, t->lineno, t->col_offset, t->end_lineno, t->end_col_offset,
923 p->arena);
924}
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
1038 return Constant(c, NULL, t->lineno, t->col_offset, t->end_lineno, t->end_col_offset,
1039 p->arena);
1040}
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
1517 return _Py_Name(uni, Load, EXTRA_EXPR(first_name, second_name));
1518}
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 }
1554 return alias(str, NULL, p->arena);
1555}
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{
1646 return _Py_Name(e->v.Name.id, ctx, EXTRA_EXPR(e, e));
1647}
1648
1649static expr_ty
1650_set_tuple_context(Parser *p, expr_ty e, expr_context_ty ctx)
1651{
Pablo Galindoa5634c42020-09-16 19:42:00 +01001652 return _Py_Tuple(
1653 _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{
Pablo Galindoa5634c42020-09-16 19:42:00 +01001661 return _Py_List(
1662 _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{
1670 return _Py_Subscript(e->v.Subscript.value, e->v.Subscript.slice, ctx, EXTRA_EXPR(e, e));
1671}
1672
1673static expr_ty
1674_set_attribute_context(Parser *p, expr_ty e, expr_context_ty ctx)
1675{
1676 return _Py_Attribute(e->v.Attribute.value, e->v.Attribute.attr, ctx, EXTRA_EXPR(e, e));
1677}
1678
1679static expr_ty
1680_set_starred_context(Parser *p, expr_ty e, expr_context_ty ctx)
1681{
1682 return _Py_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx), ctx, EXTRA_EXPR(e, e));
1683}
1684
1685/* Creates an `expr_ty` equivalent to `expr` but with `ctx` as context */
1686expr_ty
1687_PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx)
1688{
1689 assert(expr != NULL);
1690
1691 expr_ty new = NULL;
1692 switch (expr->kind) {
1693 case Name_kind:
1694 new = _set_name_context(p, expr, ctx);
1695 break;
1696 case Tuple_kind:
1697 new = _set_tuple_context(p, expr, ctx);
1698 break;
1699 case List_kind:
1700 new = _set_list_context(p, expr, ctx);
1701 break;
1702 case Subscript_kind:
1703 new = _set_subscript_context(p, expr, ctx);
1704 break;
1705 case Attribute_kind:
1706 new = _set_attribute_context(p, expr, ctx);
1707 break;
1708 case Starred_kind:
1709 new = _set_starred_context(p, expr, ctx);
1710 break;
1711 default:
1712 new = expr;
1713 }
1714 return new;
1715}
1716
1717/* Constructs a KeyValuePair that is used when parsing a dict's key value pairs */
1718KeyValuePair *
1719_PyPegen_key_value_pair(Parser *p, expr_ty key, expr_ty value)
1720{
Victor Stinner8370e072021-03-24 02:23:01 +01001721 KeyValuePair *a = _PyArena_Malloc(p->arena, sizeof(KeyValuePair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001722 if (!a) {
1723 return NULL;
1724 }
1725 a->key = key;
1726 a->value = value;
1727 return a;
1728}
1729
1730/* Extracts all keys from an asdl_seq* of KeyValuePair*'s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001731asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001732_PyPegen_get_keys(Parser *p, asdl_seq *seq)
1733{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001734 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001735 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001736 if (!new_seq) {
1737 return NULL;
1738 }
1739 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001740 KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001741 asdl_seq_SET(new_seq, i, pair->key);
1742 }
1743 return new_seq;
1744}
1745
1746/* Extracts all values from an asdl_seq* of KeyValuePair*'s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001747asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001748_PyPegen_get_values(Parser *p, asdl_seq *seq)
1749{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001750 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001751 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001752 if (!new_seq) {
1753 return NULL;
1754 }
1755 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001756 KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001757 asdl_seq_SET(new_seq, i, pair->value);
1758 }
1759 return new_seq;
1760}
1761
1762/* Constructs a NameDefaultPair */
1763NameDefaultPair *
Guido van Rossumc001c092020-04-30 12:12:19 -07001764_PyPegen_name_default_pair(Parser *p, arg_ty arg, expr_ty value, Token *tc)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001765{
Victor Stinner8370e072021-03-24 02:23:01 +01001766 NameDefaultPair *a = _PyArena_Malloc(p->arena, sizeof(NameDefaultPair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001767 if (!a) {
1768 return NULL;
1769 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001770 a->arg = _PyPegen_add_type_comment_to_arg(p, arg, tc);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001771 a->value = value;
1772 return a;
1773}
1774
1775/* Constructs a SlashWithDefault */
1776SlashWithDefault *
Pablo Galindoa5634c42020-09-16 19:42:00 +01001777_PyPegen_slash_with_default(Parser *p, asdl_arg_seq *plain_names, asdl_seq *names_with_defaults)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001778{
Victor Stinner8370e072021-03-24 02:23:01 +01001779 SlashWithDefault *a = _PyArena_Malloc(p->arena, sizeof(SlashWithDefault));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001780 if (!a) {
1781 return NULL;
1782 }
1783 a->plain_names = plain_names;
1784 a->names_with_defaults = names_with_defaults;
1785 return a;
1786}
1787
1788/* Constructs a StarEtc */
1789StarEtc *
1790_PyPegen_star_etc(Parser *p, arg_ty vararg, asdl_seq *kwonlyargs, arg_ty kwarg)
1791{
Victor Stinner8370e072021-03-24 02:23:01 +01001792 StarEtc *a = _PyArena_Malloc(p->arena, sizeof(StarEtc));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001793 if (!a) {
1794 return NULL;
1795 }
1796 a->vararg = vararg;
1797 a->kwonlyargs = kwonlyargs;
1798 a->kwarg = kwarg;
1799 return a;
1800}
1801
1802asdl_seq *
1803_PyPegen_join_sequences(Parser *p, asdl_seq *a, asdl_seq *b)
1804{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001805 Py_ssize_t first_len = asdl_seq_LEN(a);
1806 Py_ssize_t second_len = asdl_seq_LEN(b);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001807 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(first_len + second_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001808 if (!new_seq) {
1809 return NULL;
1810 }
1811
1812 int k = 0;
1813 for (Py_ssize_t i = 0; i < first_len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001814 asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(a, i));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001815 }
1816 for (Py_ssize_t i = 0; i < second_len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001817 asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(b, i));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001818 }
1819
1820 return new_seq;
1821}
1822
Pablo Galindoa5634c42020-09-16 19:42:00 +01001823static asdl_arg_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001824_get_names(Parser *p, asdl_seq *names_with_defaults)
1825{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001826 Py_ssize_t len = asdl_seq_LEN(names_with_defaults);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001827 asdl_arg_seq *seq = _Py_asdl_arg_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001828 if (!seq) {
1829 return NULL;
1830 }
1831 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001832 NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001833 asdl_seq_SET(seq, i, pair->arg);
1834 }
1835 return seq;
1836}
1837
Pablo Galindoa5634c42020-09-16 19:42:00 +01001838static asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001839_get_defaults(Parser *p, asdl_seq *names_with_defaults)
1840{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001841 Py_ssize_t len = asdl_seq_LEN(names_with_defaults);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001842 asdl_expr_seq *seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001843 if (!seq) {
1844 return NULL;
1845 }
1846 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001847 NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001848 asdl_seq_SET(seq, i, pair->value);
1849 }
1850 return seq;
1851}
1852
1853/* Constructs an arguments_ty object out of all the parsed constructs in the parameters rule */
1854arguments_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01001855_PyPegen_make_arguments(Parser *p, asdl_arg_seq *slash_without_default,
1856 SlashWithDefault *slash_with_default, asdl_arg_seq *plain_names,
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001857 asdl_seq *names_with_default, StarEtc *star_etc)
1858{
Pablo Galindoa5634c42020-09-16 19:42:00 +01001859 asdl_arg_seq *posonlyargs;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001860 if (slash_without_default != NULL) {
1861 posonlyargs = slash_without_default;
1862 }
1863 else if (slash_with_default != NULL) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001864 asdl_arg_seq *slash_with_default_names =
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001865 _get_names(p, slash_with_default->names_with_defaults);
1866 if (!slash_with_default_names) {
1867 return NULL;
1868 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001869 posonlyargs = (asdl_arg_seq*)_PyPegen_join_sequences(
1870 p,
1871 (asdl_seq*)slash_with_default->plain_names,
1872 (asdl_seq*)slash_with_default_names);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001873 if (!posonlyargs) {
1874 return NULL;
1875 }
1876 }
1877 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001878 posonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001879 if (!posonlyargs) {
1880 return NULL;
1881 }
1882 }
1883
Pablo Galindoa5634c42020-09-16 19:42:00 +01001884 asdl_arg_seq *posargs;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001885 if (plain_names != NULL && names_with_default != NULL) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001886 asdl_arg_seq *names_with_default_names = _get_names(p, names_with_default);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001887 if (!names_with_default_names) {
1888 return NULL;
1889 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001890 posargs = (asdl_arg_seq*)_PyPegen_join_sequences(
1891 p,
1892 (asdl_seq*)plain_names,
1893 (asdl_seq*)names_with_default_names);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001894 if (!posargs) {
1895 return NULL;
1896 }
1897 }
1898 else if (plain_names == NULL && names_with_default != NULL) {
1899 posargs = _get_names(p, names_with_default);
1900 if (!posargs) {
1901 return NULL;
1902 }
1903 }
1904 else if (plain_names != NULL && names_with_default == NULL) {
1905 posargs = plain_names;
1906 }
1907 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001908 posargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001909 if (!posargs) {
1910 return NULL;
1911 }
1912 }
1913
Pablo Galindoa5634c42020-09-16 19:42:00 +01001914 asdl_expr_seq *posdefaults;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001915 if (slash_with_default != NULL && names_with_default != NULL) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001916 asdl_expr_seq *slash_with_default_values =
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001917 _get_defaults(p, slash_with_default->names_with_defaults);
1918 if (!slash_with_default_values) {
1919 return NULL;
1920 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001921 asdl_expr_seq *names_with_default_values = _get_defaults(p, names_with_default);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001922 if (!names_with_default_values) {
1923 return NULL;
1924 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001925 posdefaults = (asdl_expr_seq*)_PyPegen_join_sequences(
1926 p,
1927 (asdl_seq*)slash_with_default_values,
1928 (asdl_seq*)names_with_default_values);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001929 if (!posdefaults) {
1930 return NULL;
1931 }
1932 }
1933 else if (slash_with_default == NULL && names_with_default != NULL) {
1934 posdefaults = _get_defaults(p, names_with_default);
1935 if (!posdefaults) {
1936 return NULL;
1937 }
1938 }
1939 else if (slash_with_default != NULL && names_with_default == NULL) {
1940 posdefaults = _get_defaults(p, slash_with_default->names_with_defaults);
1941 if (!posdefaults) {
1942 return NULL;
1943 }
1944 }
1945 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001946 posdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001947 if (!posdefaults) {
1948 return NULL;
1949 }
1950 }
1951
1952 arg_ty vararg = NULL;
1953 if (star_etc != NULL && star_etc->vararg != NULL) {
1954 vararg = star_etc->vararg;
1955 }
1956
Pablo Galindoa5634c42020-09-16 19:42:00 +01001957 asdl_arg_seq *kwonlyargs;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001958 if (star_etc != NULL && star_etc->kwonlyargs != NULL) {
1959 kwonlyargs = _get_names(p, star_etc->kwonlyargs);
1960 if (!kwonlyargs) {
1961 return NULL;
1962 }
1963 }
1964 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001965 kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001966 if (!kwonlyargs) {
1967 return NULL;
1968 }
1969 }
1970
Pablo Galindoa5634c42020-09-16 19:42:00 +01001971 asdl_expr_seq *kwdefaults;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001972 if (star_etc != NULL && star_etc->kwonlyargs != NULL) {
1973 kwdefaults = _get_defaults(p, star_etc->kwonlyargs);
1974 if (!kwdefaults) {
1975 return NULL;
1976 }
1977 }
1978 else {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001979 kwdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001980 if (!kwdefaults) {
1981 return NULL;
1982 }
1983 }
1984
1985 arg_ty kwarg = NULL;
1986 if (star_etc != NULL && star_etc->kwarg != NULL) {
1987 kwarg = star_etc->kwarg;
1988 }
1989
1990 return _Py_arguments(posonlyargs, posargs, vararg, kwonlyargs, kwdefaults, kwarg,
1991 posdefaults, p->arena);
1992}
1993
1994/* Constructs an empty arguments_ty object, that gets used when a function accepts no
1995 * arguments. */
1996arguments_ty
1997_PyPegen_empty_arguments(Parser *p)
1998{
Pablo Galindoa5634c42020-09-16 19:42:00 +01001999 asdl_arg_seq *posonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002000 if (!posonlyargs) {
2001 return NULL;
2002 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002003 asdl_arg_seq *posargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002004 if (!posargs) {
2005 return NULL;
2006 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002007 asdl_expr_seq *posdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002008 if (!posdefaults) {
2009 return NULL;
2010 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002011 asdl_arg_seq *kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002012 if (!kwonlyargs) {
2013 return NULL;
2014 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002015 asdl_expr_seq *kwdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002016 if (!kwdefaults) {
2017 return NULL;
2018 }
2019
Batuhan Taskaya02a16032020-10-10 20:14:59 +03002020 return _Py_arguments(posonlyargs, posargs, NULL, kwonlyargs, kwdefaults, NULL, posdefaults,
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002021 p->arena);
2022}
2023
2024/* Encapsulates the value of an operator_ty into an AugOperator struct */
2025AugOperator *
2026_PyPegen_augoperator(Parser *p, operator_ty kind)
2027{
Victor Stinner8370e072021-03-24 02:23:01 +01002028 AugOperator *a = _PyArena_Malloc(p->arena, sizeof(AugOperator));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002029 if (!a) {
2030 return NULL;
2031 }
2032 a->kind = kind;
2033 return a;
2034}
2035
2036/* Construct a FunctionDef equivalent to function_def, but with decorators */
2037stmt_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002038_PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002039{
2040 assert(function_def != NULL);
2041 if (function_def->kind == AsyncFunctionDef_kind) {
2042 return _Py_AsyncFunctionDef(
2043 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args,
2044 function_def->v.FunctionDef.body, decorators, function_def->v.FunctionDef.returns,
2045 function_def->v.FunctionDef.type_comment, function_def->lineno,
2046 function_def->col_offset, function_def->end_lineno, function_def->end_col_offset,
2047 p->arena);
2048 }
2049
2050 return _Py_FunctionDef(function_def->v.FunctionDef.name, function_def->v.FunctionDef.args,
2051 function_def->v.FunctionDef.body, decorators,
2052 function_def->v.FunctionDef.returns,
2053 function_def->v.FunctionDef.type_comment, function_def->lineno,
2054 function_def->col_offset, function_def->end_lineno,
2055 function_def->end_col_offset, p->arena);
2056}
2057
2058/* Construct a ClassDef equivalent to class_def, but with decorators */
2059stmt_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002060_PyPegen_class_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty class_def)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002061{
2062 assert(class_def != NULL);
2063 return _Py_ClassDef(class_def->v.ClassDef.name, class_def->v.ClassDef.bases,
2064 class_def->v.ClassDef.keywords, class_def->v.ClassDef.body, decorators,
2065 class_def->lineno, class_def->col_offset, class_def->end_lineno,
2066 class_def->end_col_offset, p->arena);
2067}
2068
2069/* Construct a KeywordOrStarred */
2070KeywordOrStarred *
2071_PyPegen_keyword_or_starred(Parser *p, void *element, int is_keyword)
2072{
Victor Stinner8370e072021-03-24 02:23:01 +01002073 KeywordOrStarred *a = _PyArena_Malloc(p->arena, sizeof(KeywordOrStarred));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002074 if (!a) {
2075 return NULL;
2076 }
2077 a->element = element;
2078 a->is_keyword = is_keyword;
2079 return a;
2080}
2081
2082/* Get the number of starred expressions in an asdl_seq* of KeywordOrStarred*s */
2083static int
2084_seq_number_of_starred_exprs(asdl_seq *seq)
2085{
2086 int n = 0;
2087 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002088 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002089 if (!k->is_keyword) {
2090 n++;
2091 }
2092 }
2093 return n;
2094}
2095
2096/* Extract the starred expressions of an asdl_seq* of KeywordOrStarred*s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01002097asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002098_PyPegen_seq_extract_starred_exprs(Parser *p, asdl_seq *kwargs)
2099{
2100 int new_len = _seq_number_of_starred_exprs(kwargs);
2101 if (new_len == 0) {
2102 return NULL;
2103 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002104 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(new_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002105 if (!new_seq) {
2106 return NULL;
2107 }
2108
2109 int idx = 0;
2110 for (Py_ssize_t i = 0, len = asdl_seq_LEN(kwargs); i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002111 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002112 if (!k->is_keyword) {
2113 asdl_seq_SET(new_seq, idx++, k->element);
2114 }
2115 }
2116 return new_seq;
2117}
2118
2119/* Return a new asdl_seq* with only the keywords in kwargs */
Pablo Galindoa5634c42020-09-16 19:42:00 +01002120asdl_keyword_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002121_PyPegen_seq_delete_starred_exprs(Parser *p, asdl_seq *kwargs)
2122{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002123 Py_ssize_t len = asdl_seq_LEN(kwargs);
2124 Py_ssize_t new_len = len - _seq_number_of_starred_exprs(kwargs);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002125 if (new_len == 0) {
2126 return NULL;
2127 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002128 asdl_keyword_seq *new_seq = _Py_asdl_keyword_seq_new(new_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002129 if (!new_seq) {
2130 return NULL;
2131 }
2132
2133 int idx = 0;
2134 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002135 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002136 if (k->is_keyword) {
2137 asdl_seq_SET(new_seq, idx++, k->element);
2138 }
2139 }
2140 return new_seq;
2141}
2142
2143expr_ty
2144_PyPegen_concatenate_strings(Parser *p, asdl_seq *strings)
2145{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002146 Py_ssize_t len = asdl_seq_LEN(strings);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002147 assert(len > 0);
2148
Pablo Galindoa5634c42020-09-16 19:42:00 +01002149 Token *first = asdl_seq_GET_UNTYPED(strings, 0);
2150 Token *last = asdl_seq_GET_UNTYPED(strings, len - 1);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002151
2152 int bytesmode = 0;
2153 PyObject *bytes_str = NULL;
2154
2155 FstringParser state;
2156 _PyPegen_FstringParser_Init(&state);
2157
2158 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002159 Token *t = asdl_seq_GET_UNTYPED(strings, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002160
2161 int this_bytesmode;
2162 int this_rawmode;
2163 PyObject *s;
2164 const char *fstr;
2165 Py_ssize_t fstrlen = -1;
2166
Lysandros Nikolaou2f37c352020-05-07 13:37:51 +03002167 if (_PyPegen_parsestr(p, &this_bytesmode, &this_rawmode, &s, &fstr, &fstrlen, t) != 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002168 goto error;
2169 }
2170
2171 /* Check that we are not mixing bytes with unicode. */
2172 if (i != 0 && bytesmode != this_bytesmode) {
2173 RAISE_SYNTAX_ERROR("cannot mix bytes and nonbytes literals");
2174 Py_XDECREF(s);
2175 goto error;
2176 }
2177 bytesmode = this_bytesmode;
2178
2179 if (fstr != NULL) {
2180 assert(s == NULL && !bytesmode);
2181
2182 int result = _PyPegen_FstringParser_ConcatFstring(p, &state, &fstr, fstr + fstrlen,
2183 this_rawmode, 0, first, t, last);
2184 if (result < 0) {
2185 goto error;
2186 }
2187 }
2188 else {
2189 /* String or byte string. */
2190 assert(s != NULL && fstr == NULL);
2191 assert(bytesmode ? PyBytes_CheckExact(s) : PyUnicode_CheckExact(s));
2192
2193 if (bytesmode) {
2194 if (i == 0) {
2195 bytes_str = s;
2196 }
2197 else {
2198 PyBytes_ConcatAndDel(&bytes_str, s);
2199 if (!bytes_str) {
2200 goto error;
2201 }
2202 }
2203 }
2204 else {
2205 /* This is a regular string. Concatenate it. */
2206 if (_PyPegen_FstringParser_ConcatAndDel(&state, s) < 0) {
2207 goto error;
2208 }
2209 }
2210 }
2211 }
2212
2213 if (bytesmode) {
Victor Stinner8370e072021-03-24 02:23:01 +01002214 if (_PyArena_AddPyObject(p->arena, bytes_str) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002215 goto error;
2216 }
2217 return Constant(bytes_str, NULL, first->lineno, first->col_offset, last->end_lineno,
2218 last->end_col_offset, p->arena);
2219 }
2220
2221 return _PyPegen_FstringParser_Finish(p, &state, first, last);
2222
2223error:
2224 Py_XDECREF(bytes_str);
2225 _PyPegen_FstringParser_Dealloc(&state);
2226 if (PyErr_Occurred()) {
2227 raise_decode_error(p);
2228 }
2229 return NULL;
2230}
Guido van Rossumc001c092020-04-30 12:12:19 -07002231
2232mod_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002233_PyPegen_make_module(Parser *p, asdl_stmt_seq *a) {
2234 asdl_type_ignore_seq *type_ignores = NULL;
Guido van Rossumc001c092020-04-30 12:12:19 -07002235 Py_ssize_t num = p->type_ignore_comments.num_items;
2236 if (num > 0) {
2237 // Turn the raw (comment, lineno) pairs into TypeIgnore objects in the arena
Pablo Galindoa5634c42020-09-16 19:42:00 +01002238 type_ignores = _Py_asdl_type_ignore_seq_new(num, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002239 if (type_ignores == NULL) {
2240 return NULL;
2241 }
2242 for (int i = 0; i < num; i++) {
2243 PyObject *tag = _PyPegen_new_type_comment(p, p->type_ignore_comments.items[i].comment);
2244 if (tag == NULL) {
2245 return NULL;
2246 }
2247 type_ignore_ty ti = TypeIgnore(p->type_ignore_comments.items[i].lineno, tag, p->arena);
2248 if (ti == NULL) {
2249 return NULL;
2250 }
2251 asdl_seq_SET(type_ignores, i, ti);
2252 }
2253 }
2254 return Module(a, type_ignores, p->arena);
2255}
Pablo Galindo16ab0702020-05-15 02:04:52 +01002256
2257// Error reporting helpers
2258
2259expr_ty
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002260_PyPegen_get_invalid_target(expr_ty e, TARGETS_TYPE targets_type)
Pablo Galindo16ab0702020-05-15 02:04:52 +01002261{
2262 if (e == NULL) {
2263 return NULL;
2264 }
2265
2266#define VISIT_CONTAINER(CONTAINER, TYPE) do { \
2267 Py_ssize_t len = asdl_seq_LEN(CONTAINER->v.TYPE.elts);\
2268 for (Py_ssize_t i = 0; i < len; i++) {\
2269 expr_ty other = asdl_seq_GET(CONTAINER->v.TYPE.elts, i);\
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002270 expr_ty child = _PyPegen_get_invalid_target(other, targets_type);\
Pablo Galindo16ab0702020-05-15 02:04:52 +01002271 if (child != NULL) {\
2272 return child;\
2273 }\
2274 }\
2275 } while (0)
2276
2277 // We only need to visit List and Tuple nodes recursively as those
2278 // are the only ones that can contain valid names in targets when
2279 // they are parsed as expressions. Any other kind of expression
2280 // that is a container (like Sets or Dicts) is directly invalid and
2281 // we don't need to visit it recursively.
2282
2283 switch (e->kind) {
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002284 case List_kind:
Pablo Galindo16ab0702020-05-15 02:04:52 +01002285 VISIT_CONTAINER(e, List);
2286 return NULL;
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002287 case Tuple_kind:
Pablo Galindo16ab0702020-05-15 02:04:52 +01002288 VISIT_CONTAINER(e, Tuple);
2289 return NULL;
Pablo Galindo16ab0702020-05-15 02:04:52 +01002290 case Starred_kind:
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002291 if (targets_type == DEL_TARGETS) {
2292 return e;
2293 }
2294 return _PyPegen_get_invalid_target(e->v.Starred.value, targets_type);
2295 case Compare_kind:
2296 // This is needed, because the `a in b` in `for a in b` gets parsed
2297 // as a comparison, and so we need to search the left side of the comparison
2298 // for invalid targets.
2299 if (targets_type == FOR_TARGETS) {
2300 cmpop_ty cmpop = (cmpop_ty) asdl_seq_GET(e->v.Compare.ops, 0);
2301 if (cmpop == In) {
2302 return _PyPegen_get_invalid_target(e->v.Compare.left, targets_type);
2303 }
2304 return NULL;
2305 }
2306 return e;
Pablo Galindo16ab0702020-05-15 02:04:52 +01002307 case Name_kind:
2308 case Subscript_kind:
2309 case Attribute_kind:
2310 return NULL;
2311 default:
2312 return e;
2313 }
Lysandros Nikolaou75b863a2020-05-18 22:14:47 +03002314}
2315
2316void *_PyPegen_arguments_parsing_error(Parser *p, expr_ty e) {
2317 int kwarg_unpacking = 0;
2318 for (Py_ssize_t i = 0, l = asdl_seq_LEN(e->v.Call.keywords); i < l; i++) {
2319 keyword_ty keyword = asdl_seq_GET(e->v.Call.keywords, i);
2320 if (!keyword->arg) {
2321 kwarg_unpacking = 1;
2322 }
2323 }
2324
2325 const char *msg = NULL;
2326 if (kwarg_unpacking) {
2327 msg = "positional argument follows keyword argument unpacking";
2328 } else {
2329 msg = "positional argument follows keyword argument";
2330 }
2331
2332 return RAISE_SYNTAX_ERROR(msg);
2333}
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002334
2335void *
2336_PyPegen_nonparen_genexp_in_call(Parser *p, expr_ty args)
2337{
2338 /* The rule that calls this function is 'args for_if_clauses'.
2339 For the input f(L, x for x in y), L and x are in args and
2340 the for is parsed as a for_if_clause. We have to check if
2341 len <= 1, so that input like dict((a, b) for a, b in x)
2342 gets successfully parsed and then we pass the last
2343 argument (x in the above example) as the location of the
2344 error */
2345 Py_ssize_t len = asdl_seq_LEN(args->v.Call.args);
2346 if (len <= 1) {
2347 return NULL;
2348 }
2349
2350 return RAISE_SYNTAX_ERROR_KNOWN_LOCATION(
2351 (expr_ty) asdl_seq_GET(args->v.Call.args, len - 1),
2352 "Generator expression must be parenthesized"
2353 );
2354}
Pablo Galindo4a97b152020-09-02 17:44:19 +01002355
2356
Pablo Galindoa5634c42020-09-16 19:42:00 +01002357expr_ty _PyPegen_collect_call_seqs(Parser *p, asdl_expr_seq *a, asdl_seq *b,
Pablo Galindo315a61f2020-09-03 15:29:32 +01002358 int lineno, int col_offset, int end_lineno,
2359 int end_col_offset, PyArena *arena) {
Pablo Galindo4a97b152020-09-02 17:44:19 +01002360 Py_ssize_t args_len = asdl_seq_LEN(a);
2361 Py_ssize_t total_len = args_len;
2362
2363 if (b == NULL) {
Pablo Galindo315a61f2020-09-03 15:29:32 +01002364 return _Py_Call(_PyPegen_dummy_name(p), a, NULL, lineno, col_offset,
2365 end_lineno, end_col_offset, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002366
2367 }
2368
Pablo Galindoa5634c42020-09-16 19:42:00 +01002369 asdl_expr_seq *starreds = _PyPegen_seq_extract_starred_exprs(p, b);
2370 asdl_keyword_seq *keywords = _PyPegen_seq_delete_starred_exprs(p, b);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002371
2372 if (starreds) {
2373 total_len += asdl_seq_LEN(starreds);
2374 }
2375
Pablo Galindoa5634c42020-09-16 19:42:00 +01002376 asdl_expr_seq *args = _Py_asdl_expr_seq_new(total_len, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002377
2378 Py_ssize_t i = 0;
2379 for (i = 0; i < args_len; i++) {
2380 asdl_seq_SET(args, i, asdl_seq_GET(a, i));
2381 }
2382 for (; i < total_len; i++) {
2383 asdl_seq_SET(args, i, asdl_seq_GET(starreds, i - args_len));
2384 }
2385
Pablo Galindo315a61f2020-09-03 15:29:32 +01002386 return _Py_Call(_PyPegen_dummy_name(p), args, keywords, lineno,
2387 col_offset, end_lineno, end_col_offset, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002388}