blob: 66e4b1929711f58e1fb04384a18f85a874192943 [file] [log] [blame]
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001#include <Python.h>
Nick Coghlan1e7b8582021-04-29 15:58:44 +10002#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 *
Serhiy Storchakac43317d2021-06-12 20:44:32 +030010_PyPegen_new_type_comment(Parser *p, const char *s)
Guido van Rossumc001c092020-04-30 12:12:19 -070011{
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 }
Serhiy Storchakac43317d2021-06-12 20:44:32 +030029 const char *bytes = PyBytes_AsString(tc->bytes);
Guido van Rossumc001c092020-04-30 12:12:19 -070030 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
Serhiy Storchakac43317d2021-06-12 20:44:32 +030069 const 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 Galindo Salgadob977f852021-07-27 18:52:32 +010080int
81_PyPegen_check_legacy_stmt(Parser *p, expr_ty name) {
82 assert(name->kind == Name_kind);
83 const char* candidates[2] = {"print", "exec"};
84 for (int i=0; i<2; i++) {
85 if (PyUnicode_CompareWithASCIIString(name->v.Name.id, candidates[i]) == 0) {
86 return 1;
87 }
88 }
89 return 0;
90}
91
Pablo Galindoc5fc1562020-04-22 23:29:27 +010092PyObject *
Serhiy Storchakac43317d2021-06-12 20:44:32 +030093_PyPegen_new_identifier(Parser *p, const char *n)
Pablo Galindoc5fc1562020-04-22 23:29:27 +010094{
95 PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
96 if (!id) {
97 goto error;
98 }
99 /* PyUnicode_DecodeUTF8 should always return a ready string. */
100 assert(PyUnicode_IS_READY(id));
101 /* Check whether there are non-ASCII characters in the
102 identifier; if so, normalize to NFKC. */
103 if (!PyUnicode_IS_ASCII(id))
104 {
105 PyObject *id2;
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300106 if (!init_normalization(p))
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100107 {
108 Py_DECREF(id);
109 goto error;
110 }
111 PyObject *form = PyUnicode_InternFromString("NFKC");
112 if (form == NULL)
113 {
114 Py_DECREF(id);
115 goto error;
116 }
117 PyObject *args[2] = {form, id};
118 id2 = _PyObject_FastCall(p->normalize, args, 2);
119 Py_DECREF(id);
120 Py_DECREF(form);
121 if (!id2) {
122 goto error;
123 }
124 if (!PyUnicode_Check(id2))
125 {
126 PyErr_Format(PyExc_TypeError,
127 "unicodedata.normalize() must return a string, not "
128 "%.200s",
129 _PyType_Name(Py_TYPE(id2)));
130 Py_DECREF(id2);
131 goto error;
132 }
133 id = id2;
134 }
135 PyUnicode_InternInPlace(&id);
Victor Stinner8370e072021-03-24 02:23:01 +0100136 if (_PyArena_AddPyObject(p->arena, id) < 0)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100137 {
138 Py_DECREF(id);
139 goto error;
140 }
141 return id;
142
143error:
144 p->error_indicator = 1;
145 return NULL;
146}
147
148static PyObject *
149_create_dummy_identifier(Parser *p)
150{
151 return _PyPegen_new_identifier(p, "");
152}
153
154static inline Py_ssize_t
Pablo Galindo51c58962020-06-16 16:49:43 +0100155byte_offset_to_character_offset(PyObject *line, Py_ssize_t col_offset)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100156{
157 const char *str = PyUnicode_AsUTF8(line);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300158 if (!str) {
159 return 0;
160 }
Pablo Galindo123ff262021-03-22 16:24:39 +0000161 Py_ssize_t len = strlen(str);
Pablo Galindob86ed8e2021-04-12 16:59:30 +0100162 if (col_offset > len + 1) {
163 col_offset = len + 1;
Pablo Galindo123ff262021-03-22 16:24:39 +0000164 }
165 assert(col_offset >= 0);
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300166 PyObject *text = PyUnicode_DecodeUTF8(str, col_offset, "replace");
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100167 if (!text) {
168 return 0;
169 }
170 Py_ssize_t size = PyUnicode_GET_LENGTH(text);
171 Py_DECREF(text);
172 return size;
173}
174
175const char *
176_PyPegen_get_expr_name(expr_ty e)
177{
Pablo Galindo9f495902020-06-08 02:57:00 +0100178 assert(e != NULL);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100179 switch (e->kind) {
180 case Attribute_kind:
181 return "attribute";
182 case Subscript_kind:
183 return "subscript";
184 case Starred_kind:
185 return "starred";
186 case Name_kind:
187 return "name";
188 case List_kind:
189 return "list";
190 case Tuple_kind:
191 return "tuple";
192 case Lambda_kind:
193 return "lambda";
194 case Call_kind:
195 return "function call";
196 case BoolOp_kind:
197 case BinOp_kind:
198 case UnaryOp_kind:
Pablo Galindob86ed8e2021-04-12 16:59:30 +0100199 return "expression";
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100200 case GeneratorExp_kind:
201 return "generator expression";
202 case Yield_kind:
203 case YieldFrom_kind:
204 return "yield expression";
205 case Await_kind:
206 return "await expression";
207 case ListComp_kind:
208 return "list comprehension";
209 case SetComp_kind:
210 return "set comprehension";
211 case DictComp_kind:
212 return "dict comprehension";
213 case Dict_kind:
Pablo Galindob86ed8e2021-04-12 16:59:30 +0100214 return "dict literal";
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100215 case Set_kind:
216 return "set display";
217 case JoinedStr_kind:
218 case FormattedValue_kind:
219 return "f-string expression";
220 case Constant_kind: {
221 PyObject *value = e->v.Constant.value;
222 if (value == Py_None) {
223 return "None";
224 }
225 if (value == Py_False) {
226 return "False";
227 }
228 if (value == Py_True) {
229 return "True";
230 }
231 if (value == Py_Ellipsis) {
Pablo Galindo3283bf42021-06-03 22:22:28 +0100232 return "ellipsis";
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100233 }
234 return "literal";
235 }
236 case Compare_kind:
237 return "comparison";
238 case IfExp_kind:
239 return "conditional expression";
240 case NamedExpr_kind:
241 return "named expression";
242 default:
243 PyErr_Format(PyExc_SystemError,
244 "unexpected expression in assignment %d (line %d)",
245 e->kind, e->lineno);
246 return NULL;
247 }
248}
249
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300250static int
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100251raise_decode_error(Parser *p)
252{
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300253 assert(PyErr_Occurred());
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100254 const char *errtype = NULL;
255 if (PyErr_ExceptionMatches(PyExc_UnicodeError)) {
256 errtype = "unicode error";
257 }
258 else if (PyErr_ExceptionMatches(PyExc_ValueError)) {
259 errtype = "value error";
260 }
261 if (errtype) {
Pablo Galindofb61c422020-06-15 14:23:43 +0100262 PyObject *type;
263 PyObject *value;
264 PyObject *tback;
265 PyObject *errstr;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100266 PyErr_Fetch(&type, &value, &tback);
267 errstr = PyObject_Str(value);
268 if (errstr) {
269 RAISE_SYNTAX_ERROR("(%s) %U", errtype, errstr);
270 Py_DECREF(errstr);
271 }
272 else {
273 PyErr_Clear();
274 RAISE_SYNTAX_ERROR("(%s) unknown error", errtype);
275 }
276 Py_XDECREF(type);
277 Py_XDECREF(value);
278 Py_XDECREF(tback);
279 }
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300280
281 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100282}
283
Pablo Galindod6d63712021-01-19 23:59:33 +0000284static inline void
285raise_unclosed_parentheses_error(Parser *p) {
286 int error_lineno = p->tok->parenlinenostack[p->tok->level-1];
287 int error_col = p->tok->parencolstack[p->tok->level-1];
288 RAISE_ERROR_KNOWN_LOCATION(p, PyExc_SyntaxError,
Pablo Galindoa77aac42021-04-23 14:27:05 +0100289 error_lineno, error_col, error_lineno, -1,
Pablo Galindod6d63712021-01-19 23:59:33 +0000290 "'%c' was never closed",
291 p->tok->parenstack[p->tok->level-1]);
292}
293
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100294static void
295raise_tokenizer_init_error(PyObject *filename)
296{
297 if (!(PyErr_ExceptionMatches(PyExc_LookupError)
Miss Islington (bot)133cddf2021-06-14 10:07:52 -0700298 || PyErr_ExceptionMatches(PyExc_SyntaxError)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100299 || PyErr_ExceptionMatches(PyExc_ValueError)
300 || PyErr_ExceptionMatches(PyExc_UnicodeDecodeError))) {
301 return;
302 }
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300303 PyObject *errstr = NULL;
304 PyObject *tuple = NULL;
Pablo Galindofb61c422020-06-15 14:23:43 +0100305 PyObject *type;
306 PyObject *value;
307 PyObject *tback;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100308 PyErr_Fetch(&type, &value, &tback);
309 errstr = PyObject_Str(value);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300310 if (!errstr) {
311 goto error;
312 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100313
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300314 PyObject *tmp = Py_BuildValue("(OiiO)", filename, 0, -1, Py_None);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100315 if (!tmp) {
316 goto error;
317 }
318
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300319 tuple = PyTuple_Pack(2, errstr, tmp);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100320 Py_DECREF(tmp);
321 if (!value) {
322 goto error;
323 }
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300324 PyErr_SetObject(PyExc_SyntaxError, tuple);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100325
326error:
327 Py_XDECREF(type);
328 Py_XDECREF(value);
329 Py_XDECREF(tback);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300330 Py_XDECREF(errstr);
331 Py_XDECREF(tuple);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100332}
333
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100334static int
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100335tokenizer_error(Parser *p)
336{
337 if (PyErr_Occurred()) {
338 return -1;
339 }
340
341 const char *msg = NULL;
342 PyObject* errtype = PyExc_SyntaxError;
Pablo Galindo96eeff52021-03-22 17:28:11 +0000343 Py_ssize_t col_offset = -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100344 switch (p->tok->done) {
345 case E_TOKEN:
346 msg = "invalid token";
347 break;
Lysandros Nikolaoud55133f2020-04-28 03:23:35 +0300348 case E_EOF:
Pablo Galindod6d63712021-01-19 23:59:33 +0000349 if (p->tok->level) {
350 raise_unclosed_parentheses_error(p);
351 } else {
352 RAISE_SYNTAX_ERROR("unexpected EOF while parsing");
353 }
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300354 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100355 case E_DEDENT:
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300356 RAISE_INDENTATION_ERROR("unindent does not match any outer indentation level");
357 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100358 case E_INTR:
359 if (!PyErr_Occurred()) {
360 PyErr_SetNone(PyExc_KeyboardInterrupt);
361 }
362 return -1;
363 case E_NOMEM:
364 PyErr_NoMemory();
365 return -1;
366 case E_TABSPACE:
367 errtype = PyExc_TabError;
368 msg = "inconsistent use of tabs and spaces in indentation";
369 break;
370 case E_TOODEEP:
371 errtype = PyExc_IndentationError;
372 msg = "too many levels of indentation";
373 break;
Łukasz Langa5c9cab52021-10-19 22:31:18 +0200374 case E_LINECONT: {
375 char* loc = strrchr(p->tok->buf, '\n');
376 const char* last_char = p->tok->cur - 1;
377 if (loc != NULL && loc != last_char) {
378 col_offset = p->tok->cur - loc - 1;
379 p->tok->buf = loc;
380 } else {
381 col_offset = last_char - p->tok->buf - 1;
382 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100383 msg = "unexpected character after line continuation character";
384 break;
Łukasz Langa5c9cab52021-10-19 22:31:18 +0200385 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100386 default:
387 msg = "unknown parsing error";
388 }
389
Pablo Galindoa77aac42021-04-23 14:27:05 +0100390 RAISE_ERROR_KNOWN_LOCATION(p, errtype, p->tok->lineno, col_offset, p->tok->lineno, -1, msg);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100391 return -1;
392}
393
394void *
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300395_PyPegen_raise_error(Parser *p, PyObject *errtype, const char *errmsg, ...)
396{
397 Token *t = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1];
Pablo Galindo51c58962020-06-16 16:49:43 +0100398 Py_ssize_t col_offset;
Pablo Galindoa77aac42021-04-23 14:27:05 +0100399 Py_ssize_t end_col_offset = -1;
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300400 if (t->col_offset == -1) {
401 col_offset = Py_SAFE_DOWNCAST(p->tok->cur - p->tok->buf,
402 intptr_t, int);
403 } else {
404 col_offset = t->col_offset + 1;
405 }
406
Pablo Galindoa77aac42021-04-23 14:27:05 +0100407 if (t->end_col_offset != -1) {
408 end_col_offset = t->end_col_offset + 1;
409 }
410
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300411 va_list va;
412 va_start(va, errmsg);
Pablo Galindoa77aac42021-04-23 14:27:05 +0100413 _PyPegen_raise_error_known_location(p, errtype, t->lineno, col_offset, t->end_lineno, end_col_offset, errmsg, va);
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300414 va_end(va);
415
416 return NULL;
417}
418
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200419static PyObject *
420get_error_line(Parser *p, Py_ssize_t lineno)
421{
Pablo Galindo123ff262021-03-22 16:24:39 +0000422 /* If the file descriptor is interactive, the source lines of the current
423 * (multi-line) statement are stored in p->tok->interactive_src_start.
424 * If not, we're parsing from a string, which means that the whole source
425 * is stored in p->tok->str. */
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200426 assert(p->tok->fp == NULL || p->tok->fp == stdin);
427
Pablo Galindocd8dcbc2021-03-14 04:38:40 +0100428 char *cur_line = p->tok->fp_interactive ? p->tok->interactive_src_start : p->tok->str;
429
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200430 for (int i = 0; i < lineno - 1; i++) {
431 cur_line = strchr(cur_line, '\n') + 1;
432 }
433
434 char *next_newline;
435 if ((next_newline = strchr(cur_line, '\n')) == NULL) { // This is the last line
436 next_newline = cur_line + strlen(cur_line);
437 }
438 return PyUnicode_DecodeUTF8(cur_line, next_newline - cur_line, "replace");
439}
440
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300441void *
442_PyPegen_raise_error_known_location(Parser *p, PyObject *errtype,
Pablo Galindo51c58962020-06-16 16:49:43 +0100443 Py_ssize_t lineno, Py_ssize_t col_offset,
Pablo Galindoa77aac42021-04-23 14:27:05 +0100444 Py_ssize_t end_lineno, Py_ssize_t end_col_offset,
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300445 const char *errmsg, va_list va)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100446{
447 PyObject *value = NULL;
448 PyObject *errstr = NULL;
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300449 PyObject *error_line = NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100450 PyObject *tmp = NULL;
Lysandros Nikolaou7f06af62020-05-04 03:20:09 +0300451 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100452
Pablo Galindoa77aac42021-04-23 14:27:05 +0100453 if (end_lineno == CURRENT_POS) {
454 end_lineno = p->tok->lineno;
455 }
456 if (end_col_offset == CURRENT_POS) {
457 end_col_offset = p->tok->cur - p->tok->line_start;
458 }
459
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300460 if (p->start_rule == Py_fstring_input) {
461 const char *fstring_msg = "f-string: ";
462 Py_ssize_t len = strlen(fstring_msg) + strlen(errmsg);
463
Lysandros Nikolaou6dcbc242020-06-27 20:47:00 +0300464 char *new_errmsg = PyMem_Malloc(len + 1); // Lengths of both strings plus NULL character
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300465 if (!new_errmsg) {
466 return (void *) PyErr_NoMemory();
467 }
468
469 // Copy both strings into new buffer
470 memcpy(new_errmsg, fstring_msg, strlen(fstring_msg));
471 memcpy(new_errmsg + strlen(fstring_msg), errmsg, strlen(errmsg));
472 new_errmsg[len] = 0;
473 errmsg = new_errmsg;
474 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100475 errstr = PyUnicode_FromFormatV(errmsg, va);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100476 if (!errstr) {
477 goto error;
478 }
479
Miss Islington (bot)c0496092021-06-08 17:29:21 -0700480 // PyErr_ProgramTextObject assumes that the text is utf-8 so we cannot call it with a file
481 // with an arbitrary encoding or otherwise we could get some badly decoded text.
482 int uses_utf8_codec = (!p->tok->encoding || strcmp(p->tok->encoding, "utf-8") == 0);
Pablo Galindocd8dcbc2021-03-14 04:38:40 +0100483 if (p->tok->fp_interactive) {
484 error_line = get_error_line(p, lineno);
485 }
Miss Islington (bot)c0496092021-06-08 17:29:21 -0700486 else if (uses_utf8_codec && p->start_rule == Py_file_input) {
Lysandros Nikolaou861efc62020-06-20 15:57:27 +0300487 error_line = PyErr_ProgramTextObject(p->tok->filename, (int) lineno);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100488 }
489
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300490 if (!error_line) {
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200491 /* PyErr_ProgramTextObject was not called or returned NULL. If it was not called,
492 then we need to find the error line from some other source, because
493 p->start_rule != Py_file_input. If it returned NULL, then it either unexpectedly
494 failed or we're parsing from a string or the REPL. There's a third edge case where
495 we're actually parsing from a file, which has an E_EOF SyntaxError and in that case
496 `PyErr_ProgramTextObject` fails because lineno points to last_file_line + 1, which
497 does not physically exist */
Miss Islington (bot)c0496092021-06-08 17:29:21 -0700498 assert(p->tok->fp == NULL || p->tok->fp == stdin || p->tok->done == E_EOF || !uses_utf8_codec);
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200499
Pablo Galindo40901512021-01-31 22:48:23 +0000500 if (p->tok->lineno <= lineno) {
Lysandros Nikolaoue5fe5092021-01-14 23:36:30 +0200501 Py_ssize_t size = p->tok->inp - p->tok->buf;
502 error_line = PyUnicode_DecodeUTF8(p->tok->buf, size, "replace");
503 }
504 else {
505 error_line = get_error_line(p, lineno);
506 }
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300507 if (!error_line) {
508 goto error;
Batuhan Taskaya76c1b4d2020-05-01 16:13:43 +0300509 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100510 }
511
Lysandros Nikolaou1f0f4ab2020-06-28 02:41:48 +0300512 if (p->start_rule == Py_fstring_input) {
513 col_offset -= p->starting_col_offset;
Pablo Galindoa77aac42021-04-23 14:27:05 +0100514 end_col_offset -= p->starting_col_offset;
Lysandros Nikolaou1f0f4ab2020-06-28 02:41:48 +0300515 }
Pablo Galindoa77aac42021-04-23 14:27:05 +0100516
Pablo Galindo51c58962020-06-16 16:49:43 +0100517 Py_ssize_t col_number = col_offset;
Pablo Galindoa77aac42021-04-23 14:27:05 +0100518 Py_ssize_t end_col_number = end_col_offset;
Pablo Galindo51c58962020-06-16 16:49:43 +0100519
520 if (p->tok->encoding != NULL) {
521 col_number = byte_offset_to_character_offset(error_line, col_offset);
Pablo Galindoa77aac42021-04-23 14:27:05 +0100522 end_col_number = end_col_number > 0 ?
523 byte_offset_to_character_offset(error_line, end_col_offset) :
524 end_col_number;
Pablo Galindo51c58962020-06-16 16:49:43 +0100525 }
Pablo Galindoa77aac42021-04-23 14:27:05 +0100526 tmp = Py_BuildValue("(OiiNii)", p->tok->filename, lineno, col_number, error_line, end_lineno, end_col_number);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100527 if (!tmp) {
528 goto error;
529 }
530 value = PyTuple_Pack(2, errstr, tmp);
531 Py_DECREF(tmp);
532 if (!value) {
533 goto error;
534 }
535 PyErr_SetObject(errtype, value);
536
537 Py_DECREF(errstr);
538 Py_DECREF(value);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300539 if (p->start_rule == Py_fstring_input) {
Lysandros Nikolaou6dcbc242020-06-27 20:47:00 +0300540 PyMem_Free((void *)errmsg);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300541 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100542 return NULL;
543
544error:
545 Py_XDECREF(errstr);
Lysandros Nikolaoua15c9b32020-05-13 22:36:27 +0300546 Py_XDECREF(error_line);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300547 if (p->start_rule == Py_fstring_input) {
Lysandros Nikolaou6dcbc242020-06-27 20:47:00 +0300548 PyMem_Free((void *)errmsg);
Lysandros Nikolaou2e0a9202020-06-26 14:24:05 +0300549 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100550 return NULL;
551}
552
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100553#if 0
554static const char *
555token_name(int type)
556{
557 if (0 <= type && type <= N_TOKENS) {
558 return _PyParser_TokenNames[type];
559 }
560 return "<Huh?>";
561}
562#endif
563
564// Here, mark is the start of the node, while p->mark is the end.
565// If node==NULL, they should be the same.
566int
567_PyPegen_insert_memo(Parser *p, int mark, int type, void *node)
568{
569 // Insert in front
Victor Stinner8370e072021-03-24 02:23:01 +0100570 Memo *m = _PyArena_Malloc(p->arena, sizeof(Memo));
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100571 if (m == NULL) {
572 return -1;
573 }
574 m->type = type;
575 m->node = node;
576 m->mark = p->mark;
577 m->next = p->tokens[mark]->memo;
578 p->tokens[mark]->memo = m;
579 return 0;
580}
581
582// Like _PyPegen_insert_memo(), but updates an existing node if found.
583int
584_PyPegen_update_memo(Parser *p, int mark, int type, void *node)
585{
586 for (Memo *m = p->tokens[mark]->memo; m != NULL; m = m->next) {
587 if (m->type == type) {
588 // Update existing node.
589 m->node = node;
590 m->mark = p->mark;
591 return 0;
592 }
593 }
594 // Insert new node.
595 return _PyPegen_insert_memo(p, mark, type, node);
596}
597
598// Return dummy NAME.
599void *
600_PyPegen_dummy_name(Parser *p, ...)
601{
602 static void *cache = NULL;
603
604 if (cache != NULL) {
605 return cache;
606 }
607
608 PyObject *id = _create_dummy_identifier(p);
609 if (!id) {
610 return NULL;
611 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +0200612 cache = _PyAST_Name(id, Load, 1, 0, 1, 0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100613 return cache;
614}
615
616static int
617_get_keyword_or_name_type(Parser *p, const char *name, int name_len)
618{
Lysandros Nikolaou782f44b2020-07-07 01:42:21 +0300619 assert(name_len > 0);
Pablo Galindo1ac0cbc2020-07-06 20:31:16 +0100620 if (name_len >= p->n_keyword_lists ||
621 p->keywords[name_len] == NULL ||
622 p->keywords[name_len]->type == -1) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100623 return NAME;
624 }
Pablo Galindo1ac0cbc2020-07-06 20:31:16 +0100625 for (KeywordToken *k = p->keywords[name_len]; k != NULL && k->type != -1; k++) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100626 if (strncmp(k->str, name, name_len) == 0) {
627 return k->type;
628 }
629 }
630 return NAME;
631}
632
Guido van Rossumc001c092020-04-30 12:12:19 -0700633static int
634growable_comment_array_init(growable_comment_array *arr, size_t initial_size) {
635 assert(initial_size > 0);
636 arr->items = PyMem_Malloc(initial_size * sizeof(*arr->items));
637 arr->size = initial_size;
638 arr->num_items = 0;
639
640 return arr->items != NULL;
641}
642
643static int
644growable_comment_array_add(growable_comment_array *arr, int lineno, char *comment) {
645 if (arr->num_items >= arr->size) {
646 size_t new_size = arr->size * 2;
647 void *new_items_array = PyMem_Realloc(arr->items, new_size * sizeof(*arr->items));
648 if (!new_items_array) {
649 return 0;
650 }
651 arr->items = new_items_array;
652 arr->size = new_size;
653 }
654
655 arr->items[arr->num_items].lineno = lineno;
656 arr->items[arr->num_items].comment = comment; // Take ownership
657 arr->num_items++;
658 return 1;
659}
660
661static void
662growable_comment_array_deallocate(growable_comment_array *arr) {
663 for (unsigned i = 0; i < arr->num_items; i++) {
664 PyMem_Free(arr->items[i].comment);
665 }
666 PyMem_Free(arr->items);
667}
668
Pablo Galindod00a4492021-04-09 01:32:25 +0100669static int
670initialize_token(Parser *p, Token *token, const char *start, const char *end, int token_type) {
671 assert(token != NULL);
672
673 token->type = (token_type == NAME) ? _get_keyword_or_name_type(p, start, (int)(end - start)) : token_type;
674 token->bytes = PyBytes_FromStringAndSize(start, end - start);
675 if (token->bytes == NULL) {
676 return -1;
677 }
678
679 if (_PyArena_AddPyObject(p->arena, token->bytes) < 0) {
680 Py_DECREF(token->bytes);
681 return -1;
682 }
683
684 const char *line_start = token_type == STRING ? p->tok->multi_line_start : p->tok->line_start;
685 int lineno = token_type == STRING ? p->tok->first_lineno : p->tok->lineno;
686 int end_lineno = p->tok->lineno;
687
688 int col_offset = (start != NULL && start >= line_start) ? (int)(start - line_start) : -1;
689 int end_col_offset = (end != NULL && end >= p->tok->line_start) ? (int)(end - p->tok->line_start) : -1;
690
691 token->lineno = p->starting_lineno + lineno;
692 token->col_offset = p->tok->lineno == 1 ? p->starting_col_offset + col_offset : col_offset;
693 token->end_lineno = p->starting_lineno + end_lineno;
694 token->end_col_offset = p->tok->lineno == 1 ? p->starting_col_offset + end_col_offset : end_col_offset;
695
696 p->fill += 1;
697
698 if (token_type == ERRORTOKEN && p->tok->done == E_DECODE) {
699 return raise_decode_error(p);
700 }
701
702 return (token_type == ERRORTOKEN ? tokenizer_error(p) : 0);
703}
704
705static int
706_resize_tokens_array(Parser *p) {
707 int newsize = p->size * 2;
708 Token **new_tokens = PyMem_Realloc(p->tokens, newsize * sizeof(Token *));
709 if (new_tokens == NULL) {
710 PyErr_NoMemory();
711 return -1;
712 }
713 p->tokens = new_tokens;
714
715 for (int i = p->size; i < newsize; i++) {
716 p->tokens[i] = PyMem_Calloc(1, sizeof(Token));
717 if (p->tokens[i] == NULL) {
718 p->size = i; // Needed, in order to cleanup correctly after parser fails
719 PyErr_NoMemory();
720 return -1;
721 }
722 }
723 p->size = newsize;
724 return 0;
725}
726
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100727int
728_PyPegen_fill_token(Parser *p)
729{
Pablo Galindofb61c422020-06-15 14:23:43 +0100730 const char *start;
731 const char *end;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100732 int type = PyTokenizer_Get(p->tok, &start, &end);
Guido van Rossumc001c092020-04-30 12:12:19 -0700733
734 // Record and skip '# type: ignore' comments
735 while (type == TYPE_IGNORE) {
736 Py_ssize_t len = end - start;
737 char *tag = PyMem_Malloc(len + 1);
738 if (tag == NULL) {
739 PyErr_NoMemory();
740 return -1;
741 }
742 strncpy(tag, start, len);
743 tag[len] = '\0';
744 // Ownership of tag passes to the growable array
745 if (!growable_comment_array_add(&p->type_ignore_comments, p->tok->lineno, tag)) {
746 PyErr_NoMemory();
747 return -1;
748 }
749 type = PyTokenizer_Get(p->tok, &start, &end);
750 }
751
Pablo Galindod00a4492021-04-09 01:32:25 +0100752 // If we have reached the end and we are in single input mode we need to insert a newline and reset the parsing
753 if (p->start_rule == Py_single_input && type == ENDMARKER && p->parsing_started) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100754 type = NEWLINE; /* Add an extra newline */
755 p->parsing_started = 0;
756
Pablo Galindob94dbd72020-04-27 18:35:58 +0100757 if (p->tok->indent && !(p->flags & PyPARSE_DONT_IMPLY_DEDENT)) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100758 p->tok->pendin = -p->tok->indent;
759 p->tok->indent = 0;
760 }
761 }
762 else {
763 p->parsing_started = 1;
764 }
765
Pablo Galindod00a4492021-04-09 01:32:25 +0100766 // Check if we are at the limit of the token array capacity and resize if needed
767 if ((p->fill == p->size) && (_resize_tokens_array(p) != 0)) {
768 return -1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100769 }
770
771 Token *t = p->tokens[p->fill];
Pablo Galindod00a4492021-04-09 01:32:25 +0100772 return initialize_token(p, t, start, end, type);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100773}
774
Pablo Galindo58bafe42021-04-09 01:17:31 +0100775
776#if defined(Py_DEBUG)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100777// Instrumentation to count the effectiveness of memoization.
778// The array counts the number of tokens skipped by memoization,
779// indexed by type.
780
781#define NSTATISTICS 2000
782static long memo_statistics[NSTATISTICS];
783
784void
785_PyPegen_clear_memo_statistics()
786{
787 for (int i = 0; i < NSTATISTICS; i++) {
788 memo_statistics[i] = 0;
789 }
790}
791
792PyObject *
793_PyPegen_get_memo_statistics()
794{
795 PyObject *ret = PyList_New(NSTATISTICS);
796 if (ret == NULL) {
797 return NULL;
798 }
799 for (int i = 0; i < NSTATISTICS; i++) {
800 PyObject *value = PyLong_FromLong(memo_statistics[i]);
801 if (value == NULL) {
802 Py_DECREF(ret);
803 return NULL;
804 }
805 // PyList_SetItem borrows a reference to value.
806 if (PyList_SetItem(ret, i, value) < 0) {
807 Py_DECREF(ret);
808 return NULL;
809 }
810 }
811 return ret;
812}
Pablo Galindo58bafe42021-04-09 01:17:31 +0100813#endif
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100814
815int // bool
816_PyPegen_is_memoized(Parser *p, int type, void *pres)
817{
818 if (p->mark == p->fill) {
819 if (_PyPegen_fill_token(p) < 0) {
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300820 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100821 return -1;
822 }
823 }
824
825 Token *t = p->tokens[p->mark];
826
827 for (Memo *m = t->memo; m != NULL; m = m->next) {
828 if (m->type == type) {
Pablo Galindo58bafe42021-04-09 01:17:31 +0100829#if defined(PY_DEBUG)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100830 if (0 <= type && type < NSTATISTICS) {
831 long count = m->mark - p->mark;
832 // A memoized negative result counts for one.
833 if (count <= 0) {
834 count = 1;
835 }
836 memo_statistics[type] += count;
837 }
Pablo Galindo58bafe42021-04-09 01:17:31 +0100838#endif
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100839 p->mark = m->mark;
840 *(void **)(pres) = m->node;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100841 return 1;
842 }
843 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100844 return 0;
845}
846
Pablo Galindo1df5a9e2020-04-23 12:42:13 +0100847int
848_PyPegen_lookahead_with_name(int positive, expr_ty (func)(Parser *), Parser *p)
849{
850 int mark = p->mark;
851 void *res = func(p);
852 p->mark = mark;
853 return (res != NULL) == positive;
854}
855
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100856int
Pablo Galindo404b23b2020-05-27 00:15:52 +0100857_PyPegen_lookahead_with_string(int positive, expr_ty (func)(Parser *, const char*), Parser *p, const char* arg)
858{
859 int mark = p->mark;
860 void *res = func(p, arg);
861 p->mark = mark;
862 return (res != NULL) == positive;
863}
864
865int
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100866_PyPegen_lookahead_with_int(int positive, Token *(func)(Parser *, int), Parser *p, int arg)
867{
868 int mark = p->mark;
869 void *res = func(p, arg);
870 p->mark = mark;
871 return (res != NULL) == positive;
872}
873
874int
875_PyPegen_lookahead(int positive, void *(func)(Parser *), Parser *p)
876{
877 int mark = p->mark;
Pablo Galindo1df5a9e2020-04-23 12:42:13 +0100878 void *res = (void*)func(p);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100879 p->mark = mark;
880 return (res != NULL) == positive;
881}
882
883Token *
884_PyPegen_expect_token(Parser *p, int type)
885{
886 if (p->mark == p->fill) {
887 if (_PyPegen_fill_token(p) < 0) {
Lysandros Nikolaouebebb642020-04-23 18:36:06 +0300888 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100889 return NULL;
890 }
891 }
892 Token *t = p->tokens[p->mark];
893 if (t->type != type) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100894 return NULL;
895 }
896 p->mark += 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100897 return t;
898}
899
Pablo Galindo58fb1562021-02-02 19:54:22 +0000900Token *
901_PyPegen_expect_forced_token(Parser *p, int type, const char* expected) {
902
903 if (p->error_indicator == 1) {
904 return NULL;
905 }
906
907 if (p->mark == p->fill) {
908 if (_PyPegen_fill_token(p) < 0) {
909 p->error_indicator = 1;
910 return NULL;
911 }
912 }
913 Token *t = p->tokens[p->mark];
914 if (t->type != type) {
915 RAISE_SYNTAX_ERROR_KNOWN_LOCATION(t, "expected '%s'", expected);
916 return NULL;
917 }
918 p->mark += 1;
919 return t;
920}
921
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700922expr_ty
923_PyPegen_expect_soft_keyword(Parser *p, const char *keyword)
924{
925 if (p->mark == p->fill) {
926 if (_PyPegen_fill_token(p) < 0) {
927 p->error_indicator = 1;
928 return NULL;
929 }
930 }
931 Token *t = p->tokens[p->mark];
932 if (t->type != NAME) {
933 return NULL;
934 }
Serhiy Storchakac43317d2021-06-12 20:44:32 +0300935 const char *s = PyBytes_AsString(t->bytes);
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700936 if (!s) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300937 p->error_indicator = 1;
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700938 return NULL;
939 }
940 if (strcmp(s, keyword) != 0) {
941 return NULL;
942 }
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300943 return _PyPegen_name_token(p);
Guido van Rossumb45af1a2020-05-26 10:58:44 -0700944}
945
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100946Token *
947_PyPegen_get_last_nonnwhitespace_token(Parser *p)
948{
949 assert(p->mark >= 0);
950 Token *token = NULL;
951 for (int m = p->mark - 1; m >= 0; m--) {
952 token = p->tokens[m];
953 if (token->type != ENDMARKER && (token->type < NEWLINE || token->type > DEDENT)) {
954 break;
955 }
956 }
957 return token;
958}
959
Miss Islington (bot)f807a4f2021-06-09 14:45:43 -0700960static expr_ty
961_PyPegen_name_from_token(Parser *p, Token* t)
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100962{
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100963 if (t == NULL) {
964 return NULL;
965 }
Serhiy Storchakac43317d2021-06-12 20:44:32 +0300966 const char *s = PyBytes_AsString(t->bytes);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100967 if (!s) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300968 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100969 return NULL;
970 }
971 PyObject *id = _PyPegen_new_identifier(p, s);
972 if (id == NULL) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +0300973 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100974 return NULL;
975 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +0200976 return _PyAST_Name(id, Load, t->lineno, t->col_offset, t->end_lineno,
977 t->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100978}
979
Miss Islington (bot)f807a4f2021-06-09 14:45:43 -0700980
981expr_ty
982_PyPegen_name_token(Parser *p)
983{
984 Token *t = _PyPegen_expect_token(p, NAME);
985 return _PyPegen_name_from_token(p, t);
986}
987
Pablo Galindoc5fc1562020-04-22 23:29:27 +0100988void *
989_PyPegen_string_token(Parser *p)
990{
991 return _PyPegen_expect_token(p, STRING);
992}
993
Pablo Galindob2802482021-04-15 21:38:45 +0100994
995expr_ty _PyPegen_soft_keyword_token(Parser *p) {
996 Token *t = _PyPegen_expect_token(p, NAME);
997 if (t == NULL) {
998 return NULL;
999 }
1000 char *the_token;
1001 Py_ssize_t size;
1002 PyBytes_AsStringAndSize(t->bytes, &the_token, &size);
1003 for (char **keyword = p->soft_keywords; *keyword != NULL; keyword++) {
1004 if (strncmp(*keyword, the_token, size) == 0) {
Miss Islington (bot)f807a4f2021-06-09 14:45:43 -07001005 return _PyPegen_name_from_token(p, t);
Pablo Galindob2802482021-04-15 21:38:45 +01001006 }
1007 }
1008 return NULL;
1009}
1010
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001011static PyObject *
1012parsenumber_raw(const char *s)
1013{
1014 const char *end;
1015 long x;
1016 double dx;
1017 Py_complex compl;
1018 int imflag;
1019
1020 assert(s != NULL);
1021 errno = 0;
1022 end = s + strlen(s) - 1;
1023 imflag = *end == 'j' || *end == 'J';
1024 if (s[0] == '0') {
1025 x = (long)PyOS_strtoul(s, (char **)&end, 0);
1026 if (x < 0 && errno == 0) {
1027 return PyLong_FromString(s, (char **)0, 0);
1028 }
1029 }
Pablo Galindofb61c422020-06-15 14:23:43 +01001030 else {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001031 x = PyOS_strtol(s, (char **)&end, 0);
Pablo Galindofb61c422020-06-15 14:23:43 +01001032 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001033 if (*end == '\0') {
Pablo Galindofb61c422020-06-15 14:23:43 +01001034 if (errno != 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001035 return PyLong_FromString(s, (char **)0, 0);
Pablo Galindofb61c422020-06-15 14:23:43 +01001036 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001037 return PyLong_FromLong(x);
1038 }
1039 /* XXX Huge floats may silently fail */
1040 if (imflag) {
1041 compl.real = 0.;
1042 compl.imag = PyOS_string_to_double(s, (char **)&end, NULL);
Pablo Galindofb61c422020-06-15 14:23:43 +01001043 if (compl.imag == -1.0 && PyErr_Occurred()) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001044 return NULL;
Pablo Galindofb61c422020-06-15 14:23:43 +01001045 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001046 return PyComplex_FromCComplex(compl);
1047 }
Pablo Galindofb61c422020-06-15 14:23:43 +01001048 dx = PyOS_string_to_double(s, NULL, NULL);
1049 if (dx == -1.0 && PyErr_Occurred()) {
1050 return NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001051 }
Pablo Galindofb61c422020-06-15 14:23:43 +01001052 return PyFloat_FromDouble(dx);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001053}
1054
1055static PyObject *
1056parsenumber(const char *s)
1057{
Pablo Galindofb61c422020-06-15 14:23:43 +01001058 char *dup;
1059 char *end;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001060 PyObject *res = NULL;
1061
1062 assert(s != NULL);
1063
1064 if (strchr(s, '_') == NULL) {
1065 return parsenumber_raw(s);
1066 }
1067 /* Create a duplicate without underscores. */
1068 dup = PyMem_Malloc(strlen(s) + 1);
1069 if (dup == NULL) {
1070 return PyErr_NoMemory();
1071 }
1072 end = dup;
1073 for (; *s; s++) {
1074 if (*s != '_') {
1075 *end++ = *s;
1076 }
1077 }
1078 *end = '\0';
1079 res = parsenumber_raw(dup);
1080 PyMem_Free(dup);
1081 return res;
1082}
1083
1084expr_ty
1085_PyPegen_number_token(Parser *p)
1086{
1087 Token *t = _PyPegen_expect_token(p, NUMBER);
1088 if (t == NULL) {
1089 return NULL;
1090 }
1091
Serhiy Storchakac43317d2021-06-12 20:44:32 +03001092 const char *num_raw = PyBytes_AsString(t->bytes);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001093 if (num_raw == NULL) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +03001094 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001095 return NULL;
1096 }
1097
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001098 if (p->feature_version < 6 && strchr(num_raw, '_') != NULL) {
1099 p->error_indicator = 1;
Shantanuc3f00142020-05-04 01:13:30 -07001100 return RAISE_SYNTAX_ERROR("Underscores in numeric literals are only supported "
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001101 "in Python 3.6 and greater");
1102 }
1103
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001104 PyObject *c = parsenumber(num_raw);
1105
1106 if (c == NULL) {
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +03001107 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001108 return NULL;
1109 }
1110
Victor Stinner8370e072021-03-24 02:23:01 +01001111 if (_PyArena_AddPyObject(p->arena, c) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001112 Py_DECREF(c);
Lysandros Nikolaou526e23f2020-05-27 19:04:11 +03001113 p->error_indicator = 1;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001114 return NULL;
1115 }
1116
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001117 return _PyAST_Constant(c, NULL, t->lineno, t->col_offset, t->end_lineno,
1118 t->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001119}
1120
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001121static int // bool
1122newline_in_string(Parser *p, const char *cur)
1123{
Pablo Galindo2e6593d2020-06-06 00:52:27 +01001124 for (const char *c = cur; c >= p->tok->buf; c--) {
1125 if (*c == '\'' || *c == '"') {
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001126 return 1;
1127 }
1128 }
1129 return 0;
1130}
1131
1132/* Check that the source for a single input statement really is a single
1133 statement by looking at what is left in the buffer after parsing.
1134 Trailing whitespace and comments are OK. */
1135static int // bool
1136bad_single_statement(Parser *p)
1137{
1138 const char *cur = strchr(p->tok->buf, '\n');
1139
1140 /* Newlines are allowed if preceded by a line continuation character
1141 or if they appear inside a string. */
Pablo Galindoe68c6782020-10-25 23:03:41 +00001142 if (!cur || (cur != p->tok->buf && *(cur - 1) == '\\')
1143 || newline_in_string(p, cur)) {
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001144 return 0;
1145 }
1146 char c = *cur;
1147
1148 for (;;) {
1149 while (c == ' ' || c == '\t' || c == '\n' || c == '\014') {
1150 c = *++cur;
1151 }
1152
1153 if (!c) {
1154 return 0;
1155 }
1156
1157 if (c != '#') {
1158 return 1;
1159 }
1160
1161 /* Suck up comment. */
1162 while (c && c != '\n') {
1163 c = *++cur;
1164 }
1165 }
1166}
1167
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001168void
1169_PyPegen_Parser_Free(Parser *p)
1170{
1171 Py_XDECREF(p->normalize);
1172 for (int i = 0; i < p->size; i++) {
1173 PyMem_Free(p->tokens[i]);
1174 }
1175 PyMem_Free(p->tokens);
Guido van Rossumc001c092020-04-30 12:12:19 -07001176 growable_comment_array_deallocate(&p->type_ignore_comments);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001177 PyMem_Free(p);
1178}
1179
Pablo Galindo2b74c832020-04-27 18:02:07 +01001180static int
1181compute_parser_flags(PyCompilerFlags *flags)
1182{
1183 int parser_flags = 0;
1184 if (!flags) {
1185 return 0;
1186 }
1187 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) {
1188 parser_flags |= PyPARSE_DONT_IMPLY_DEDENT;
1189 }
1190 if (flags->cf_flags & PyCF_IGNORE_COOKIE) {
1191 parser_flags |= PyPARSE_IGNORE_COOKIE;
1192 }
1193 if (flags->cf_flags & CO_FUTURE_BARRY_AS_BDFL) {
1194 parser_flags |= PyPARSE_BARRY_AS_BDFL;
1195 }
1196 if (flags->cf_flags & PyCF_TYPE_COMMENTS) {
1197 parser_flags |= PyPARSE_TYPE_COMMENTS;
1198 }
Guido van Rossum9d197c72020-06-27 17:33:49 -07001199 if ((flags->cf_flags & PyCF_ONLY_AST) && flags->cf_feature_version < 7) {
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001200 parser_flags |= PyPARSE_ASYNC_HACKS;
1201 }
Pablo Galindo2b74c832020-04-27 18:02:07 +01001202 return parser_flags;
1203}
1204
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001205Parser *
Pablo Galindo2b74c832020-04-27 18:02:07 +01001206_PyPegen_Parser_New(struct tok_state *tok, int start_rule, int flags,
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001207 int feature_version, int *errcode, PyArena *arena)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001208{
1209 Parser *p = PyMem_Malloc(sizeof(Parser));
1210 if (p == NULL) {
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001211 return (Parser *) PyErr_NoMemory();
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001212 }
1213 assert(tok != NULL);
Guido van Rossumd9d6ead2020-05-01 09:42:32 -07001214 tok->type_comments = (flags & PyPARSE_TYPE_COMMENTS) > 0;
1215 tok->async_hacks = (flags & PyPARSE_ASYNC_HACKS) > 0;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001216 p->tok = tok;
1217 p->keywords = NULL;
1218 p->n_keyword_lists = -1;
Pablo Galindob2802482021-04-15 21:38:45 +01001219 p->soft_keywords = NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001220 p->tokens = PyMem_Malloc(sizeof(Token *));
1221 if (!p->tokens) {
1222 PyMem_Free(p);
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001223 return (Parser *) PyErr_NoMemory();
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001224 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001225 p->tokens[0] = PyMem_Calloc(1, sizeof(Token));
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001226 if (!p->tokens) {
1227 PyMem_Free(p->tokens);
1228 PyMem_Free(p);
1229 return (Parser *) PyErr_NoMemory();
1230 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001231 if (!growable_comment_array_init(&p->type_ignore_comments, 10)) {
1232 PyMem_Free(p->tokens[0]);
1233 PyMem_Free(p->tokens);
1234 PyMem_Free(p);
1235 return (Parser *) PyErr_NoMemory();
1236 }
1237
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001238 p->mark = 0;
1239 p->fill = 0;
1240 p->size = 1;
1241
1242 p->errcode = errcode;
1243 p->arena = arena;
1244 p->start_rule = start_rule;
1245 p->parsing_started = 0;
1246 p->normalize = NULL;
1247 p->error_indicator = 0;
1248
1249 p->starting_lineno = 0;
1250 p->starting_col_offset = 0;
Pablo Galindo2b74c832020-04-27 18:02:07 +01001251 p->flags = flags;
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001252 p->feature_version = feature_version;
Lysandros Nikolaou2f37c352020-05-07 13:37:51 +03001253 p->known_err_token = NULL;
Pablo Galindo800a35c62020-05-25 18:38:45 +01001254 p->level = 0;
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001255 p->call_invalid_rules = 0;
Miss Islington (bot)ae1732d2021-05-21 11:20:43 -07001256 p->in_raw_rule = 0;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001257 return p;
1258}
1259
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001260static void
1261reset_parser_state(Parser *p)
1262{
1263 for (int i = 0; i < p->fill; i++) {
1264 p->tokens[i]->memo = NULL;
1265 }
1266 p->mark = 0;
1267 p->call_invalid_rules = 1;
Miss Islington (bot)1fb6b9e2021-05-22 15:23:26 -07001268 // Don't try to get extra tokens in interactive mode when trying to
1269 // raise specialized errors in the second pass.
1270 p->tok->interactive_underflow = IUNDERFLOW_STOP;
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001271}
1272
Pablo Galindod6d63712021-01-19 23:59:33 +00001273static int
1274_PyPegen_check_tokenizer_errors(Parser *p) {
1275 // Tokenize the whole input to see if there are any tokenization
1276 // errors such as mistmatching parentheses. These will get priority
1277 // over generic syntax errors only if the line number of the error is
1278 // before the one that we had for the generic error.
1279
1280 // We don't want to tokenize to the end for interactive input
1281 if (p->tok->prompt != NULL) {
1282 return 0;
1283 }
1284
Miss Islington (bot)2a8d7122021-06-08 12:25:17 -07001285 PyObject *type, *value, *traceback;
1286 PyErr_Fetch(&type, &value, &traceback);
1287
Pablo Galindod6d63712021-01-19 23:59:33 +00001288 Token *current_token = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1];
1289 Py_ssize_t current_err_line = current_token->lineno;
1290
Miss Islington (bot)2a8d7122021-06-08 12:25:17 -07001291 int ret = 0;
1292
Pablo Galindod6d63712021-01-19 23:59:33 +00001293 for (;;) {
1294 const char *start;
1295 const char *end;
1296 switch (PyTokenizer_Get(p->tok, &start, &end)) {
1297 case ERRORTOKEN:
1298 if (p->tok->level != 0) {
1299 int error_lineno = p->tok->parenlinenostack[p->tok->level-1];
1300 if (current_err_line > error_lineno) {
1301 raise_unclosed_parentheses_error(p);
Miss Islington (bot)2a8d7122021-06-08 12:25:17 -07001302 ret = -1;
1303 goto exit;
Pablo Galindod6d63712021-01-19 23:59:33 +00001304 }
1305 }
1306 break;
1307 case ENDMARKER:
1308 break;
1309 default:
1310 continue;
1311 }
1312 break;
1313 }
1314
Miss Islington (bot)2a8d7122021-06-08 12:25:17 -07001315
1316exit:
1317 if (PyErr_Occurred()) {
1318 Py_XDECREF(value);
1319 Py_XDECREF(type);
1320 Py_XDECREF(traceback);
1321 } else {
1322 PyErr_Restore(type, value, traceback);
1323 }
1324 return ret;
Pablo Galindod6d63712021-01-19 23:59:33 +00001325}
1326
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001327void *
1328_PyPegen_run_parser(Parser *p)
1329{
1330 void *res = _PyPegen_parse(p);
1331 if (res == NULL) {
Pablo Galindo Salgado4ce55a22021-10-08 00:50:10 +01001332 if (PyErr_Occurred() && !PyErr_ExceptionMatches(PyExc_SyntaxError)) {
1333 return NULL;
1334 }
Miss Islington (bot)07dba472021-05-21 08:29:58 -07001335 Token *last_token = p->tokens[p->fill - 1];
Lysandros Nikolaoubca70142020-10-27 00:42:04 +02001336 reset_parser_state(p);
1337 _PyPegen_parse(p);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001338 if (PyErr_Occurred()) {
Miss Islington (bot)933b5b62021-06-08 04:46:56 -07001339 // Prioritize tokenizer errors to custom syntax errors raised
1340 // on the second phase only if the errors come from the parser.
Pablo Galindo Salgado4ce55a22021-10-08 00:50:10 +01001341 if (p->tok->done == E_DONE && PyErr_ExceptionMatches(PyExc_SyntaxError)) {
Miss Islington (bot)756b7b92021-05-03 18:06:45 -07001342 _PyPegen_check_tokenizer_errors(p);
1343 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001344 return NULL;
1345 }
1346 if (p->fill == 0) {
1347 RAISE_SYNTAX_ERROR("error at start before reading any input");
1348 }
Pablo Galindocd8dcbc2021-03-14 04:38:40 +01001349 else if (p->tok->done == E_EOF) {
Pablo Galindod6d63712021-01-19 23:59:33 +00001350 if (p->tok->level) {
1351 raise_unclosed_parentheses_error(p);
1352 } else {
1353 RAISE_SYNTAX_ERROR("unexpected EOF while parsing");
1354 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001355 }
1356 else {
1357 if (p->tokens[p->fill-1]->type == INDENT) {
1358 RAISE_INDENTATION_ERROR("unexpected indent");
1359 }
1360 else if (p->tokens[p->fill-1]->type == DEDENT) {
1361 RAISE_INDENTATION_ERROR("unexpected unindent");
1362 }
1363 else {
Miss Islington (bot)07dba472021-05-21 08:29:58 -07001364 // Use the last token we found on the first pass to avoid reporting
1365 // incorrect locations for generic syntax errors just because we reached
1366 // further away when trying to find specific syntax errors in the second
1367 // pass.
1368 RAISE_SYNTAX_ERROR_KNOWN_LOCATION(last_token, "invalid syntax");
Pablo Galindoc3f167d2021-01-20 19:11:56 +00001369 // _PyPegen_check_tokenizer_errors will override the existing
1370 // generic SyntaxError we just raised if errors are found.
1371 _PyPegen_check_tokenizer_errors(p);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001372 }
1373 }
1374 return NULL;
1375 }
1376
Lysandros Nikolaou6d650872020-04-29 04:42:27 +03001377 if (p->start_rule == Py_single_input && bad_single_statement(p)) {
1378 p->tok->done = E_BADSINGLE; // This is not necessary for now, but might be in the future
1379 return RAISE_SYNTAX_ERROR("multiple statements found while compiling a single statement");
1380 }
1381
Victor Stinnere0bf70d2021-03-18 02:46:06 +01001382 // test_peg_generator defines _Py_TEST_PEGEN to not call PyAST_Validate()
1383#if defined(Py_DEBUG) && !defined(_Py_TEST_PEGEN)
Pablo Galindo13322262020-07-27 23:46:59 +01001384 if (p->start_rule == Py_single_input ||
1385 p->start_rule == Py_file_input ||
1386 p->start_rule == Py_eval_input)
1387 {
Victor Stinnereec8e612021-03-18 14:57:49 +01001388 if (!_PyAST_Validate(res)) {
Batuhan Taskaya3af4b582020-10-30 14:48:41 +03001389 return NULL;
1390 }
Pablo Galindo13322262020-07-27 23:46:59 +01001391 }
1392#endif
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001393 return res;
1394}
1395
1396mod_ty
1397_PyPegen_run_parser_from_file_pointer(FILE *fp, int start_rule, PyObject *filename_ob,
1398 const char *enc, const char *ps1, const char *ps2,
Pablo Galindo2b74c832020-04-27 18:02:07 +01001399 PyCompilerFlags *flags, int *errcode, PyArena *arena)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001400{
1401 struct tok_state *tok = PyTokenizer_FromFile(fp, enc, ps1, ps2);
1402 if (tok == NULL) {
1403 if (PyErr_Occurred()) {
1404 raise_tokenizer_init_error(filename_ob);
1405 return NULL;
1406 }
1407 return NULL;
1408 }
Pablo Galindocd8dcbc2021-03-14 04:38:40 +01001409 if (!tok->fp || ps1 != NULL || ps2 != NULL ||
1410 PyUnicode_CompareWithASCIIString(filename_ob, "<stdin>") == 0) {
1411 tok->fp_interactive = 1;
1412 }
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001413 // This transfers the ownership to the tokenizer
1414 tok->filename = filename_ob;
1415 Py_INCREF(filename_ob);
1416
1417 // From here on we need to clean up even if there's an error
1418 mod_ty result = NULL;
1419
Pablo Galindo2b74c832020-04-27 18:02:07 +01001420 int parser_flags = compute_parser_flags(flags);
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001421 Parser *p = _PyPegen_Parser_New(tok, start_rule, parser_flags, PY_MINOR_VERSION,
1422 errcode, arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001423 if (p == NULL) {
1424 goto error;
1425 }
1426
1427 result = _PyPegen_run_parser(p);
1428 _PyPegen_Parser_Free(p);
1429
1430error:
1431 PyTokenizer_Free(tok);
1432 return result;
1433}
1434
1435mod_ty
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001436_PyPegen_run_parser_from_string(const char *str, int start_rule, PyObject *filename_ob,
Pablo Galindo2b74c832020-04-27 18:02:07 +01001437 PyCompilerFlags *flags, PyArena *arena)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001438{
1439 int exec_input = start_rule == Py_file_input;
1440
1441 struct tok_state *tok;
Pablo Galindo2b74c832020-04-27 18:02:07 +01001442 if (flags == NULL || flags->cf_flags & PyCF_IGNORE_COOKIE) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001443 tok = PyTokenizer_FromUTF8(str, exec_input);
1444 } else {
1445 tok = PyTokenizer_FromString(str, exec_input);
1446 }
1447 if (tok == NULL) {
1448 if (PyErr_Occurred()) {
1449 raise_tokenizer_init_error(filename_ob);
1450 }
1451 return NULL;
1452 }
1453 // This transfers the ownership to the tokenizer
1454 tok->filename = filename_ob;
1455 Py_INCREF(filename_ob);
1456
1457 // We need to clear up from here on
1458 mod_ty result = NULL;
1459
Pablo Galindo2b74c832020-04-27 18:02:07 +01001460 int parser_flags = compute_parser_flags(flags);
Guido van Rossum9d197c72020-06-27 17:33:49 -07001461 int feature_version = flags && (flags->cf_flags & PyCF_ONLY_AST) ?
1462 flags->cf_feature_version : PY_MINOR_VERSION;
Lysandros Nikolaou3e0a6f32020-05-01 06:27:52 +03001463 Parser *p = _PyPegen_Parser_New(tok, start_rule, parser_flags, feature_version,
1464 NULL, arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001465 if (p == NULL) {
1466 goto error;
1467 }
1468
1469 result = _PyPegen_run_parser(p);
1470 _PyPegen_Parser_Free(p);
1471
1472error:
1473 PyTokenizer_Free(tok);
1474 return result;
1475}
1476
Pablo Galindoa5634c42020-09-16 19:42:00 +01001477asdl_stmt_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001478_PyPegen_interactive_exit(Parser *p)
1479{
1480 if (p->errcode) {
1481 *(p->errcode) = E_EOF;
1482 }
1483 return NULL;
1484}
1485
1486/* Creates a single-element asdl_seq* that contains a */
1487asdl_seq *
1488_PyPegen_singleton_seq(Parser *p, void *a)
1489{
1490 assert(a != NULL);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001491 asdl_seq *seq = (asdl_seq*)_Py_asdl_generic_seq_new(1, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001492 if (!seq) {
1493 return NULL;
1494 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001495 asdl_seq_SET_UNTYPED(seq, 0, a);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001496 return seq;
1497}
1498
1499/* Creates a copy of seq and prepends a to it */
1500asdl_seq *
1501_PyPegen_seq_insert_in_front(Parser *p, void *a, asdl_seq *seq)
1502{
1503 assert(a != NULL);
1504 if (!seq) {
1505 return _PyPegen_singleton_seq(p, a);
1506 }
1507
Pablo Galindoa5634c42020-09-16 19:42:00 +01001508 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 +01001509 if (!new_seq) {
1510 return NULL;
1511 }
1512
Pablo Galindoa5634c42020-09-16 19:42:00 +01001513 asdl_seq_SET_UNTYPED(new_seq, 0, a);
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001514 for (Py_ssize_t i = 1, l = asdl_seq_LEN(new_seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001515 asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i - 1));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001516 }
1517 return new_seq;
1518}
1519
Guido van Rossumc001c092020-04-30 12:12:19 -07001520/* Creates a copy of seq and appends a to it */
1521asdl_seq *
1522_PyPegen_seq_append_to_end(Parser *p, asdl_seq *seq, void *a)
1523{
1524 assert(a != NULL);
1525 if (!seq) {
1526 return _PyPegen_singleton_seq(p, a);
1527 }
1528
Pablo Galindoa5634c42020-09-16 19:42:00 +01001529 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 -07001530 if (!new_seq) {
1531 return NULL;
1532 }
1533
1534 for (Py_ssize_t i = 0, l = asdl_seq_LEN(new_seq); i + 1 < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001535 asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i));
Guido van Rossumc001c092020-04-30 12:12:19 -07001536 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01001537 asdl_seq_SET_UNTYPED(new_seq, asdl_seq_LEN(new_seq) - 1, a);
Guido van Rossumc001c092020-04-30 12:12:19 -07001538 return new_seq;
1539}
1540
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001541static Py_ssize_t
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001542_get_flattened_seq_size(asdl_seq *seqs)
1543{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001544 Py_ssize_t size = 0;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001545 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001546 asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001547 size += asdl_seq_LEN(inner_seq);
1548 }
1549 return size;
1550}
1551
1552/* Flattens an asdl_seq* of asdl_seq*s */
1553asdl_seq *
1554_PyPegen_seq_flatten(Parser *p, asdl_seq *seqs)
1555{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001556 Py_ssize_t flattened_seq_size = _get_flattened_seq_size(seqs);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001557 assert(flattened_seq_size > 0);
1558
Pablo Galindoa5634c42020-09-16 19:42:00 +01001559 asdl_seq *flattened_seq = (asdl_seq*)_Py_asdl_generic_seq_new(flattened_seq_size, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001560 if (!flattened_seq) {
1561 return NULL;
1562 }
1563
1564 int flattened_seq_idx = 0;
1565 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001566 asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i);
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001567 for (Py_ssize_t j = 0, li = asdl_seq_LEN(inner_seq); j < li; j++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001568 asdl_seq_SET_UNTYPED(flattened_seq, flattened_seq_idx++, asdl_seq_GET_UNTYPED(inner_seq, j));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001569 }
1570 }
1571 assert(flattened_seq_idx == flattened_seq_size);
1572
1573 return flattened_seq;
1574}
1575
Pablo Galindoa77aac42021-04-23 14:27:05 +01001576void *
1577_PyPegen_seq_last_item(asdl_seq *seq)
1578{
1579 Py_ssize_t len = asdl_seq_LEN(seq);
1580 return asdl_seq_GET_UNTYPED(seq, len - 1);
1581}
1582
Miss Islington (bot)11f1a302021-06-24 08:34:28 -07001583void *
1584_PyPegen_seq_first_item(asdl_seq *seq)
1585{
1586 return asdl_seq_GET_UNTYPED(seq, 0);
1587}
1588
1589
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001590/* Creates a new name of the form <first_name>.<second_name> */
1591expr_ty
1592_PyPegen_join_names_with_dot(Parser *p, expr_ty first_name, expr_ty second_name)
1593{
1594 assert(first_name != NULL && second_name != NULL);
1595 PyObject *first_identifier = first_name->v.Name.id;
1596 PyObject *second_identifier = second_name->v.Name.id;
1597
1598 if (PyUnicode_READY(first_identifier) == -1) {
1599 return NULL;
1600 }
1601 if (PyUnicode_READY(second_identifier) == -1) {
1602 return NULL;
1603 }
1604 const char *first_str = PyUnicode_AsUTF8(first_identifier);
1605 if (!first_str) {
1606 return NULL;
1607 }
1608 const char *second_str = PyUnicode_AsUTF8(second_identifier);
1609 if (!second_str) {
1610 return NULL;
1611 }
Pablo Galindo9f27dd32020-04-24 01:13:33 +01001612 Py_ssize_t len = strlen(first_str) + strlen(second_str) + 1; // +1 for the dot
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001613
1614 PyObject *str = PyBytes_FromStringAndSize(NULL, len);
1615 if (!str) {
1616 return NULL;
1617 }
1618
1619 char *s = PyBytes_AS_STRING(str);
1620 if (!s) {
1621 return NULL;
1622 }
1623
1624 strcpy(s, first_str);
1625 s += strlen(first_str);
1626 *s++ = '.';
1627 strcpy(s, second_str);
1628 s += strlen(second_str);
1629 *s = '\0';
1630
1631 PyObject *uni = PyUnicode_DecodeUTF8(PyBytes_AS_STRING(str), PyBytes_GET_SIZE(str), NULL);
1632 Py_DECREF(str);
1633 if (!uni) {
1634 return NULL;
1635 }
1636 PyUnicode_InternInPlace(&uni);
Victor Stinner8370e072021-03-24 02:23:01 +01001637 if (_PyArena_AddPyObject(p->arena, uni) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001638 Py_DECREF(uni);
1639 return NULL;
1640 }
1641
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001642 return _PyAST_Name(uni, Load, EXTRA_EXPR(first_name, second_name));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001643}
1644
1645/* Counts the total number of dots in seq's tokens */
1646int
1647_PyPegen_seq_count_dots(asdl_seq *seq)
1648{
1649 int number_of_dots = 0;
1650 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001651 Token *current_expr = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001652 switch (current_expr->type) {
1653 case ELLIPSIS:
1654 number_of_dots += 3;
1655 break;
1656 case DOT:
1657 number_of_dots += 1;
1658 break;
1659 default:
Lysandros Nikolaouebebb642020-04-23 18:36:06 +03001660 Py_UNREACHABLE();
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001661 }
1662 }
1663
1664 return number_of_dots;
1665}
1666
1667/* Creates an alias with '*' as the identifier name */
1668alias_ty
Matthew Suozzo75a06f02021-04-10 16:56:28 -04001669_PyPegen_alias_for_star(Parser *p, int lineno, int col_offset, int end_lineno,
1670 int end_col_offset, PyArena *arena) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001671 PyObject *str = PyUnicode_InternFromString("*");
1672 if (!str) {
1673 return NULL;
1674 }
Victor Stinner8370e072021-03-24 02:23:01 +01001675 if (_PyArena_AddPyObject(p->arena, str) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001676 Py_DECREF(str);
1677 return NULL;
1678 }
Matthew Suozzo75a06f02021-04-10 16:56:28 -04001679 return _PyAST_alias(str, NULL, lineno, col_offset, end_lineno, end_col_offset, arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001680}
1681
1682/* Creates a new asdl_seq* with the identifiers of all the names in seq */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001683asdl_identifier_seq *
1684_PyPegen_map_names_to_ids(Parser *p, asdl_expr_seq *seq)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001685{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001686 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001687 assert(len > 0);
1688
Pablo Galindoa5634c42020-09-16 19:42:00 +01001689 asdl_identifier_seq *new_seq = _Py_asdl_identifier_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001690 if (!new_seq) {
1691 return NULL;
1692 }
1693 for (Py_ssize_t i = 0; i < len; i++) {
1694 expr_ty e = asdl_seq_GET(seq, i);
1695 asdl_seq_SET(new_seq, i, e->v.Name.id);
1696 }
1697 return new_seq;
1698}
1699
1700/* Constructs a CmpopExprPair */
1701CmpopExprPair *
1702_PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr)
1703{
1704 assert(expr != NULL);
Victor Stinner8370e072021-03-24 02:23:01 +01001705 CmpopExprPair *a = _PyArena_Malloc(p->arena, sizeof(CmpopExprPair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001706 if (!a) {
1707 return NULL;
1708 }
1709 a->cmpop = cmpop;
1710 a->expr = expr;
1711 return a;
1712}
1713
1714asdl_int_seq *
1715_PyPegen_get_cmpops(Parser *p, asdl_seq *seq)
1716{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001717 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001718 assert(len > 0);
1719
1720 asdl_int_seq *new_seq = _Py_asdl_int_seq_new(len, p->arena);
1721 if (!new_seq) {
1722 return NULL;
1723 }
1724 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001725 CmpopExprPair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001726 asdl_seq_SET(new_seq, i, pair->cmpop);
1727 }
1728 return new_seq;
1729}
1730
Pablo Galindoa5634c42020-09-16 19:42:00 +01001731asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001732_PyPegen_get_exprs(Parser *p, asdl_seq *seq)
1733{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001734 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001735 assert(len > 0);
1736
Pablo Galindoa5634c42020-09-16 19:42:00 +01001737 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001738 if (!new_seq) {
1739 return NULL;
1740 }
1741 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001742 CmpopExprPair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001743 asdl_seq_SET(new_seq, i, pair->expr);
1744 }
1745 return new_seq;
1746}
1747
1748/* Creates an asdl_seq* where all the elements have been changed to have ctx as context */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001749static asdl_expr_seq *
1750_set_seq_context(Parser *p, asdl_expr_seq *seq, expr_context_ty ctx)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001751{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001752 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001753 if (len == 0) {
1754 return NULL;
1755 }
1756
Pablo Galindoa5634c42020-09-16 19:42:00 +01001757 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001758 if (!new_seq) {
1759 return NULL;
1760 }
1761 for (Py_ssize_t i = 0; i < len; i++) {
1762 expr_ty e = asdl_seq_GET(seq, i);
1763 asdl_seq_SET(new_seq, i, _PyPegen_set_expr_context(p, e, ctx));
1764 }
1765 return new_seq;
1766}
1767
1768static expr_ty
1769_set_name_context(Parser *p, expr_ty e, expr_context_ty ctx)
1770{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001771 return _PyAST_Name(e->v.Name.id, ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001772}
1773
1774static expr_ty
1775_set_tuple_context(Parser *p, expr_ty e, expr_context_ty ctx)
1776{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001777 return _PyAST_Tuple(
Pablo Galindoa5634c42020-09-16 19:42:00 +01001778 _set_seq_context(p, e->v.Tuple.elts, ctx),
1779 ctx,
1780 EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001781}
1782
1783static expr_ty
1784_set_list_context(Parser *p, expr_ty e, expr_context_ty ctx)
1785{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001786 return _PyAST_List(
Pablo Galindoa5634c42020-09-16 19:42:00 +01001787 _set_seq_context(p, e->v.List.elts, ctx),
1788 ctx,
1789 EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001790}
1791
1792static expr_ty
1793_set_subscript_context(Parser *p, expr_ty e, expr_context_ty ctx)
1794{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001795 return _PyAST_Subscript(e->v.Subscript.value, e->v.Subscript.slice,
1796 ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001797}
1798
1799static expr_ty
1800_set_attribute_context(Parser *p, expr_ty e, expr_context_ty ctx)
1801{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001802 return _PyAST_Attribute(e->v.Attribute.value, e->v.Attribute.attr,
1803 ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001804}
1805
1806static expr_ty
1807_set_starred_context(Parser *p, expr_ty e, expr_context_ty ctx)
1808{
Victor Stinnerd27f8d22021-04-07 21:34:22 +02001809 return _PyAST_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx),
1810 ctx, EXTRA_EXPR(e, e));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001811}
1812
1813/* Creates an `expr_ty` equivalent to `expr` but with `ctx` as context */
1814expr_ty
1815_PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx)
1816{
1817 assert(expr != NULL);
1818
1819 expr_ty new = NULL;
1820 switch (expr->kind) {
1821 case Name_kind:
1822 new = _set_name_context(p, expr, ctx);
1823 break;
1824 case Tuple_kind:
1825 new = _set_tuple_context(p, expr, ctx);
1826 break;
1827 case List_kind:
1828 new = _set_list_context(p, expr, ctx);
1829 break;
1830 case Subscript_kind:
1831 new = _set_subscript_context(p, expr, ctx);
1832 break;
1833 case Attribute_kind:
1834 new = _set_attribute_context(p, expr, ctx);
1835 break;
1836 case Starred_kind:
1837 new = _set_starred_context(p, expr, ctx);
1838 break;
1839 default:
1840 new = expr;
1841 }
1842 return new;
1843}
1844
1845/* Constructs a KeyValuePair that is used when parsing a dict's key value pairs */
1846KeyValuePair *
1847_PyPegen_key_value_pair(Parser *p, expr_ty key, expr_ty value)
1848{
Victor Stinner8370e072021-03-24 02:23:01 +01001849 KeyValuePair *a = _PyArena_Malloc(p->arena, sizeof(KeyValuePair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001850 if (!a) {
1851 return NULL;
1852 }
1853 a->key = key;
1854 a->value = value;
1855 return a;
1856}
1857
1858/* Extracts all keys from an asdl_seq* of KeyValuePair*'s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001859asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001860_PyPegen_get_keys(Parser *p, asdl_seq *seq)
1861{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001862 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001863 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001864 if (!new_seq) {
1865 return NULL;
1866 }
1867 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001868 KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001869 asdl_seq_SET(new_seq, i, pair->key);
1870 }
1871 return new_seq;
1872}
1873
1874/* Extracts all values from an asdl_seq* of KeyValuePair*'s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01001875asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001876_PyPegen_get_values(Parser *p, asdl_seq *seq)
1877{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001878 Py_ssize_t len = asdl_seq_LEN(seq);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001879 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001880 if (!new_seq) {
1881 return NULL;
1882 }
1883 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001884 KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001885 asdl_seq_SET(new_seq, i, pair->value);
1886 }
1887 return new_seq;
1888}
1889
Nick Coghlan1e7b8582021-04-29 15:58:44 +10001890/* Constructs a KeyPatternPair that is used when parsing mapping & class patterns */
1891KeyPatternPair *
1892_PyPegen_key_pattern_pair(Parser *p, expr_ty key, pattern_ty pattern)
1893{
1894 KeyPatternPair *a = _PyArena_Malloc(p->arena, sizeof(KeyPatternPair));
1895 if (!a) {
1896 return NULL;
1897 }
1898 a->key = key;
1899 a->pattern = pattern;
1900 return a;
1901}
1902
1903/* Extracts all keys from an asdl_seq* of KeyPatternPair*'s */
1904asdl_expr_seq *
1905_PyPegen_get_pattern_keys(Parser *p, asdl_seq *seq)
1906{
1907 Py_ssize_t len = asdl_seq_LEN(seq);
1908 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena);
1909 if (!new_seq) {
1910 return NULL;
1911 }
1912 for (Py_ssize_t i = 0; i < len; i++) {
1913 KeyPatternPair *pair = asdl_seq_GET_UNTYPED(seq, i);
1914 asdl_seq_SET(new_seq, i, pair->key);
1915 }
1916 return new_seq;
1917}
1918
1919/* Extracts all patterns from an asdl_seq* of KeyPatternPair*'s */
1920asdl_pattern_seq *
1921_PyPegen_get_patterns(Parser *p, asdl_seq *seq)
1922{
1923 Py_ssize_t len = asdl_seq_LEN(seq);
1924 asdl_pattern_seq *new_seq = _Py_asdl_pattern_seq_new(len, p->arena);
1925 if (!new_seq) {
1926 return NULL;
1927 }
1928 for (Py_ssize_t i = 0; i < len; i++) {
1929 KeyPatternPair *pair = asdl_seq_GET_UNTYPED(seq, i);
1930 asdl_seq_SET(new_seq, i, pair->pattern);
1931 }
1932 return new_seq;
1933}
1934
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001935/* Constructs a NameDefaultPair */
1936NameDefaultPair *
Guido van Rossumc001c092020-04-30 12:12:19 -07001937_PyPegen_name_default_pair(Parser *p, arg_ty arg, expr_ty value, Token *tc)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001938{
Victor Stinner8370e072021-03-24 02:23:01 +01001939 NameDefaultPair *a = _PyArena_Malloc(p->arena, sizeof(NameDefaultPair));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001940 if (!a) {
1941 return NULL;
1942 }
Guido van Rossumc001c092020-04-30 12:12:19 -07001943 a->arg = _PyPegen_add_type_comment_to_arg(p, arg, tc);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001944 a->value = value;
1945 return a;
1946}
1947
1948/* Constructs a SlashWithDefault */
1949SlashWithDefault *
Pablo Galindoa5634c42020-09-16 19:42:00 +01001950_PyPegen_slash_with_default(Parser *p, asdl_arg_seq *plain_names, asdl_seq *names_with_defaults)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001951{
Victor Stinner8370e072021-03-24 02:23:01 +01001952 SlashWithDefault *a = _PyArena_Malloc(p->arena, sizeof(SlashWithDefault));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001953 if (!a) {
1954 return NULL;
1955 }
1956 a->plain_names = plain_names;
1957 a->names_with_defaults = names_with_defaults;
1958 return a;
1959}
1960
1961/* Constructs a StarEtc */
1962StarEtc *
1963_PyPegen_star_etc(Parser *p, arg_ty vararg, asdl_seq *kwonlyargs, arg_ty kwarg)
1964{
Victor Stinner8370e072021-03-24 02:23:01 +01001965 StarEtc *a = _PyArena_Malloc(p->arena, sizeof(StarEtc));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001966 if (!a) {
1967 return NULL;
1968 }
1969 a->vararg = vararg;
1970 a->kwonlyargs = kwonlyargs;
1971 a->kwarg = kwarg;
1972 return a;
1973}
1974
1975asdl_seq *
1976_PyPegen_join_sequences(Parser *p, asdl_seq *a, asdl_seq *b)
1977{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001978 Py_ssize_t first_len = asdl_seq_LEN(a);
1979 Py_ssize_t second_len = asdl_seq_LEN(b);
Pablo Galindoa5634c42020-09-16 19:42:00 +01001980 asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(first_len + second_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001981 if (!new_seq) {
1982 return NULL;
1983 }
1984
1985 int k = 0;
1986 for (Py_ssize_t i = 0; i < first_len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001987 asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(a, i));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001988 }
1989 for (Py_ssize_t i = 0; i < second_len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01001990 asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(b, i));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001991 }
1992
1993 return new_seq;
1994}
1995
Pablo Galindoa5634c42020-09-16 19:42:00 +01001996static asdl_arg_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01001997_get_names(Parser *p, asdl_seq *names_with_defaults)
1998{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01001999 Py_ssize_t len = asdl_seq_LEN(names_with_defaults);
Pablo Galindoa5634c42020-09-16 19:42:00 +01002000 asdl_arg_seq *seq = _Py_asdl_arg_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002001 if (!seq) {
2002 return NULL;
2003 }
2004 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002005 NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002006 asdl_seq_SET(seq, i, pair->arg);
2007 }
2008 return seq;
2009}
2010
Pablo Galindoa5634c42020-09-16 19:42:00 +01002011static asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002012_get_defaults(Parser *p, asdl_seq *names_with_defaults)
2013{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002014 Py_ssize_t len = asdl_seq_LEN(names_with_defaults);
Pablo Galindoa5634c42020-09-16 19:42:00 +01002015 asdl_expr_seq *seq = _Py_asdl_expr_seq_new(len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002016 if (!seq) {
2017 return NULL;
2018 }
2019 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002020 NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002021 asdl_seq_SET(seq, i, pair->value);
2022 }
2023 return seq;
2024}
2025
Pablo Galindo4f642da2021-04-09 00:48:53 +01002026static int
2027_make_posonlyargs(Parser *p,
2028 asdl_arg_seq *slash_without_default,
2029 SlashWithDefault *slash_with_default,
2030 asdl_arg_seq **posonlyargs) {
2031 if (slash_without_default != NULL) {
2032 *posonlyargs = slash_without_default;
2033 }
2034 else if (slash_with_default != NULL) {
2035 asdl_arg_seq *slash_with_default_names =
2036 _get_names(p, slash_with_default->names_with_defaults);
2037 if (!slash_with_default_names) {
2038 return -1;
2039 }
2040 *posonlyargs = (asdl_arg_seq*)_PyPegen_join_sequences(
2041 p,
2042 (asdl_seq*)slash_with_default->plain_names,
2043 (asdl_seq*)slash_with_default_names);
2044 }
2045 else {
2046 *posonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
2047 }
2048 return *posonlyargs == NULL ? -1 : 0;
2049}
2050
2051static int
2052_make_posargs(Parser *p,
2053 asdl_arg_seq *plain_names,
2054 asdl_seq *names_with_default,
2055 asdl_arg_seq **posargs) {
2056 if (plain_names != NULL && names_with_default != NULL) {
2057 asdl_arg_seq *names_with_default_names = _get_names(p, names_with_default);
2058 if (!names_with_default_names) {
2059 return -1;
2060 }
2061 *posargs = (asdl_arg_seq*)_PyPegen_join_sequences(
2062 p,(asdl_seq*)plain_names, (asdl_seq*)names_with_default_names);
2063 }
2064 else if (plain_names == NULL && names_with_default != NULL) {
2065 *posargs = _get_names(p, names_with_default);
2066 }
2067 else if (plain_names != NULL && names_with_default == NULL) {
2068 *posargs = plain_names;
2069 }
2070 else {
2071 *posargs = _Py_asdl_arg_seq_new(0, p->arena);
2072 }
2073 return *posargs == NULL ? -1 : 0;
2074}
2075
2076static int
2077_make_posdefaults(Parser *p,
2078 SlashWithDefault *slash_with_default,
2079 asdl_seq *names_with_default,
2080 asdl_expr_seq **posdefaults) {
2081 if (slash_with_default != NULL && names_with_default != NULL) {
2082 asdl_expr_seq *slash_with_default_values =
2083 _get_defaults(p, slash_with_default->names_with_defaults);
2084 if (!slash_with_default_values) {
2085 return -1;
2086 }
2087 asdl_expr_seq *names_with_default_values = _get_defaults(p, names_with_default);
2088 if (!names_with_default_values) {
2089 return -1;
2090 }
2091 *posdefaults = (asdl_expr_seq*)_PyPegen_join_sequences(
2092 p,
2093 (asdl_seq*)slash_with_default_values,
2094 (asdl_seq*)names_with_default_values);
2095 }
2096 else if (slash_with_default == NULL && names_with_default != NULL) {
2097 *posdefaults = _get_defaults(p, names_with_default);
2098 }
2099 else if (slash_with_default != NULL && names_with_default == NULL) {
2100 *posdefaults = _get_defaults(p, slash_with_default->names_with_defaults);
2101 }
2102 else {
2103 *posdefaults = _Py_asdl_expr_seq_new(0, p->arena);
2104 }
2105 return *posdefaults == NULL ? -1 : 0;
2106}
2107
2108static int
2109_make_kwargs(Parser *p, StarEtc *star_etc,
2110 asdl_arg_seq **kwonlyargs,
2111 asdl_expr_seq **kwdefaults) {
2112 if (star_etc != NULL && star_etc->kwonlyargs != NULL) {
2113 *kwonlyargs = _get_names(p, star_etc->kwonlyargs);
2114 }
2115 else {
2116 *kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
2117 }
2118
2119 if (*kwonlyargs == NULL) {
2120 return -1;
2121 }
2122
2123 if (star_etc != NULL && star_etc->kwonlyargs != NULL) {
2124 *kwdefaults = _get_defaults(p, star_etc->kwonlyargs);
2125 }
2126 else {
2127 *kwdefaults = _Py_asdl_expr_seq_new(0, p->arena);
2128 }
2129
2130 if (*kwdefaults == NULL) {
2131 return -1;
2132 }
2133
2134 return 0;
2135}
2136
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002137/* Constructs an arguments_ty object out of all the parsed constructs in the parameters rule */
2138arguments_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002139_PyPegen_make_arguments(Parser *p, asdl_arg_seq *slash_without_default,
2140 SlashWithDefault *slash_with_default, asdl_arg_seq *plain_names,
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002141 asdl_seq *names_with_default, StarEtc *star_etc)
2142{
Pablo Galindoa5634c42020-09-16 19:42:00 +01002143 asdl_arg_seq *posonlyargs;
Pablo Galindo4f642da2021-04-09 00:48:53 +01002144 if (_make_posonlyargs(p, slash_without_default, slash_with_default, &posonlyargs) == -1) {
2145 return NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002146 }
2147
Pablo Galindoa5634c42020-09-16 19:42:00 +01002148 asdl_arg_seq *posargs;
Pablo Galindo4f642da2021-04-09 00:48:53 +01002149 if (_make_posargs(p, plain_names, names_with_default, &posargs) == -1) {
2150 return NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002151 }
2152
Pablo Galindoa5634c42020-09-16 19:42:00 +01002153 asdl_expr_seq *posdefaults;
Pablo Galindo4f642da2021-04-09 00:48:53 +01002154 if (_make_posdefaults(p,slash_with_default, names_with_default, &posdefaults) == -1) {
2155 return NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002156 }
2157
2158 arg_ty vararg = NULL;
2159 if (star_etc != NULL && star_etc->vararg != NULL) {
2160 vararg = star_etc->vararg;
2161 }
2162
Pablo Galindoa5634c42020-09-16 19:42:00 +01002163 asdl_arg_seq *kwonlyargs;
Pablo Galindoa5634c42020-09-16 19:42:00 +01002164 asdl_expr_seq *kwdefaults;
Pablo Galindo4f642da2021-04-09 00:48:53 +01002165 if (_make_kwargs(p, star_etc, &kwonlyargs, &kwdefaults) == -1) {
2166 return NULL;
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002167 }
2168
2169 arg_ty kwarg = NULL;
2170 if (star_etc != NULL && star_etc->kwarg != NULL) {
2171 kwarg = star_etc->kwarg;
2172 }
2173
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002174 return _PyAST_arguments(posonlyargs, posargs, vararg, kwonlyargs,
2175 kwdefaults, kwarg, posdefaults, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002176}
2177
Pablo Galindo4f642da2021-04-09 00:48:53 +01002178
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002179/* Constructs an empty arguments_ty object, that gets used when a function accepts no
2180 * arguments. */
2181arguments_ty
2182_PyPegen_empty_arguments(Parser *p)
2183{
Pablo Galindoa5634c42020-09-16 19:42:00 +01002184 asdl_arg_seq *posonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002185 if (!posonlyargs) {
2186 return NULL;
2187 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002188 asdl_arg_seq *posargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002189 if (!posargs) {
2190 return NULL;
2191 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002192 asdl_expr_seq *posdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002193 if (!posdefaults) {
2194 return NULL;
2195 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002196 asdl_arg_seq *kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002197 if (!kwonlyargs) {
2198 return NULL;
2199 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002200 asdl_expr_seq *kwdefaults = _Py_asdl_expr_seq_new(0, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002201 if (!kwdefaults) {
2202 return NULL;
2203 }
2204
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002205 return _PyAST_arguments(posonlyargs, posargs, NULL, kwonlyargs,
2206 kwdefaults, NULL, posdefaults, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002207}
2208
2209/* Encapsulates the value of an operator_ty into an AugOperator struct */
2210AugOperator *
2211_PyPegen_augoperator(Parser *p, operator_ty kind)
2212{
Victor Stinner8370e072021-03-24 02:23:01 +01002213 AugOperator *a = _PyArena_Malloc(p->arena, sizeof(AugOperator));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002214 if (!a) {
2215 return NULL;
2216 }
2217 a->kind = kind;
2218 return a;
2219}
2220
2221/* Construct a FunctionDef equivalent to function_def, but with decorators */
2222stmt_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002223_PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002224{
2225 assert(function_def != NULL);
2226 if (function_def->kind == AsyncFunctionDef_kind) {
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002227 return _PyAST_AsyncFunctionDef(
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002228 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args,
2229 function_def->v.FunctionDef.body, decorators, function_def->v.FunctionDef.returns,
2230 function_def->v.FunctionDef.type_comment, function_def->lineno,
2231 function_def->col_offset, function_def->end_lineno, function_def->end_col_offset,
2232 p->arena);
2233 }
2234
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002235 return _PyAST_FunctionDef(
2236 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args,
2237 function_def->v.FunctionDef.body, decorators,
2238 function_def->v.FunctionDef.returns,
2239 function_def->v.FunctionDef.type_comment, function_def->lineno,
2240 function_def->col_offset, function_def->end_lineno,
2241 function_def->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002242}
2243
2244/* Construct a ClassDef equivalent to class_def, but with decorators */
2245stmt_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002246_PyPegen_class_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty class_def)
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002247{
2248 assert(class_def != NULL);
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002249 return _PyAST_ClassDef(
2250 class_def->v.ClassDef.name, class_def->v.ClassDef.bases,
2251 class_def->v.ClassDef.keywords, class_def->v.ClassDef.body, decorators,
2252 class_def->lineno, class_def->col_offset, class_def->end_lineno,
2253 class_def->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002254}
2255
2256/* Construct a KeywordOrStarred */
2257KeywordOrStarred *
2258_PyPegen_keyword_or_starred(Parser *p, void *element, int is_keyword)
2259{
Victor Stinner8370e072021-03-24 02:23:01 +01002260 KeywordOrStarred *a = _PyArena_Malloc(p->arena, sizeof(KeywordOrStarred));
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002261 if (!a) {
2262 return NULL;
2263 }
2264 a->element = element;
2265 a->is_keyword = is_keyword;
2266 return a;
2267}
2268
2269/* Get the number of starred expressions in an asdl_seq* of KeywordOrStarred*s */
2270static int
2271_seq_number_of_starred_exprs(asdl_seq *seq)
2272{
2273 int n = 0;
2274 for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002275 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(seq, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002276 if (!k->is_keyword) {
2277 n++;
2278 }
2279 }
2280 return n;
2281}
2282
2283/* Extract the starred expressions of an asdl_seq* of KeywordOrStarred*s */
Pablo Galindoa5634c42020-09-16 19:42:00 +01002284asdl_expr_seq *
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002285_PyPegen_seq_extract_starred_exprs(Parser *p, asdl_seq *kwargs)
2286{
2287 int new_len = _seq_number_of_starred_exprs(kwargs);
2288 if (new_len == 0) {
2289 return NULL;
2290 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002291 asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(new_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002292 if (!new_seq) {
2293 return NULL;
2294 }
2295
2296 int idx = 0;
2297 for (Py_ssize_t i = 0, len = asdl_seq_LEN(kwargs); i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002298 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002299 if (!k->is_keyword) {
2300 asdl_seq_SET(new_seq, idx++, k->element);
2301 }
2302 }
2303 return new_seq;
2304}
2305
2306/* Return a new asdl_seq* with only the keywords in kwargs */
Pablo Galindoa5634c42020-09-16 19:42:00 +01002307asdl_keyword_seq*
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002308_PyPegen_seq_delete_starred_exprs(Parser *p, asdl_seq *kwargs)
2309{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002310 Py_ssize_t len = asdl_seq_LEN(kwargs);
2311 Py_ssize_t new_len = len - _seq_number_of_starred_exprs(kwargs);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002312 if (new_len == 0) {
2313 return NULL;
2314 }
Pablo Galindoa5634c42020-09-16 19:42:00 +01002315 asdl_keyword_seq *new_seq = _Py_asdl_keyword_seq_new(new_len, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002316 if (!new_seq) {
2317 return NULL;
2318 }
2319
2320 int idx = 0;
2321 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002322 KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002323 if (k->is_keyword) {
2324 asdl_seq_SET(new_seq, idx++, k->element);
2325 }
2326 }
2327 return new_seq;
2328}
2329
2330expr_ty
2331_PyPegen_concatenate_strings(Parser *p, asdl_seq *strings)
2332{
Pablo Galindoee40e4b2020-04-23 03:43:08 +01002333 Py_ssize_t len = asdl_seq_LEN(strings);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002334 assert(len > 0);
2335
Pablo Galindoa5634c42020-09-16 19:42:00 +01002336 Token *first = asdl_seq_GET_UNTYPED(strings, 0);
2337 Token *last = asdl_seq_GET_UNTYPED(strings, len - 1);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002338
2339 int bytesmode = 0;
2340 PyObject *bytes_str = NULL;
2341
2342 FstringParser state;
2343 _PyPegen_FstringParser_Init(&state);
2344
2345 for (Py_ssize_t i = 0; i < len; i++) {
Pablo Galindoa5634c42020-09-16 19:42:00 +01002346 Token *t = asdl_seq_GET_UNTYPED(strings, i);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002347
2348 int this_bytesmode;
2349 int this_rawmode;
2350 PyObject *s;
2351 const char *fstr;
2352 Py_ssize_t fstrlen = -1;
2353
Lysandros Nikolaou2f37c352020-05-07 13:37:51 +03002354 if (_PyPegen_parsestr(p, &this_bytesmode, &this_rawmode, &s, &fstr, &fstrlen, t) != 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002355 goto error;
2356 }
2357
2358 /* Check that we are not mixing bytes with unicode. */
2359 if (i != 0 && bytesmode != this_bytesmode) {
2360 RAISE_SYNTAX_ERROR("cannot mix bytes and nonbytes literals");
2361 Py_XDECREF(s);
2362 goto error;
2363 }
2364 bytesmode = this_bytesmode;
2365
2366 if (fstr != NULL) {
2367 assert(s == NULL && !bytesmode);
2368
2369 int result = _PyPegen_FstringParser_ConcatFstring(p, &state, &fstr, fstr + fstrlen,
2370 this_rawmode, 0, first, t, last);
2371 if (result < 0) {
2372 goto error;
2373 }
2374 }
2375 else {
2376 /* String or byte string. */
2377 assert(s != NULL && fstr == NULL);
2378 assert(bytesmode ? PyBytes_CheckExact(s) : PyUnicode_CheckExact(s));
2379
2380 if (bytesmode) {
2381 if (i == 0) {
2382 bytes_str = s;
2383 }
2384 else {
2385 PyBytes_ConcatAndDel(&bytes_str, s);
2386 if (!bytes_str) {
2387 goto error;
2388 }
2389 }
2390 }
2391 else {
2392 /* This is a regular string. Concatenate it. */
2393 if (_PyPegen_FstringParser_ConcatAndDel(&state, s) < 0) {
2394 goto error;
2395 }
2396 }
2397 }
2398 }
2399
2400 if (bytesmode) {
Victor Stinner8370e072021-03-24 02:23:01 +01002401 if (_PyArena_AddPyObject(p->arena, bytes_str) < 0) {
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002402 goto error;
2403 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002404 return _PyAST_Constant(bytes_str, NULL, first->lineno,
2405 first->col_offset, last->end_lineno,
2406 last->end_col_offset, p->arena);
Pablo Galindoc5fc1562020-04-22 23:29:27 +01002407 }
2408
2409 return _PyPegen_FstringParser_Finish(p, &state, first, last);
2410
2411error:
2412 Py_XDECREF(bytes_str);
2413 _PyPegen_FstringParser_Dealloc(&state);
2414 if (PyErr_Occurred()) {
2415 raise_decode_error(p);
2416 }
2417 return NULL;
2418}
Guido van Rossumc001c092020-04-30 12:12:19 -07002419
Nick Coghlan1e7b8582021-04-29 15:58:44 +10002420expr_ty
2421_PyPegen_ensure_imaginary(Parser *p, expr_ty exp)
2422{
2423 if (exp->kind != Constant_kind || !PyComplex_CheckExact(exp->v.Constant.value)) {
Brandt Bucherdbe60ee2021-04-29 17:19:28 -07002424 RAISE_SYNTAX_ERROR_KNOWN_LOCATION(exp, "imaginary number required in complex literal");
2425 return NULL;
2426 }
2427 return exp;
2428}
2429
2430expr_ty
2431_PyPegen_ensure_real(Parser *p, expr_ty exp)
2432{
2433 if (exp->kind != Constant_kind || PyComplex_CheckExact(exp->v.Constant.value)) {
2434 RAISE_SYNTAX_ERROR_KNOWN_LOCATION(exp, "real number required in complex literal");
Nick Coghlan1e7b8582021-04-29 15:58:44 +10002435 return NULL;
2436 }
2437 return exp;
2438}
2439
Guido van Rossumc001c092020-04-30 12:12:19 -07002440mod_ty
Pablo Galindoa5634c42020-09-16 19:42:00 +01002441_PyPegen_make_module(Parser *p, asdl_stmt_seq *a) {
2442 asdl_type_ignore_seq *type_ignores = NULL;
Guido van Rossumc001c092020-04-30 12:12:19 -07002443 Py_ssize_t num = p->type_ignore_comments.num_items;
2444 if (num > 0) {
2445 // Turn the raw (comment, lineno) pairs into TypeIgnore objects in the arena
Pablo Galindoa5634c42020-09-16 19:42:00 +01002446 type_ignores = _Py_asdl_type_ignore_seq_new(num, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002447 if (type_ignores == NULL) {
2448 return NULL;
2449 }
2450 for (int i = 0; i < num; i++) {
2451 PyObject *tag = _PyPegen_new_type_comment(p, p->type_ignore_comments.items[i].comment);
2452 if (tag == NULL) {
2453 return NULL;
2454 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002455 type_ignore_ty ti = _PyAST_TypeIgnore(p->type_ignore_comments.items[i].lineno,
2456 tag, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002457 if (ti == NULL) {
2458 return NULL;
2459 }
2460 asdl_seq_SET(type_ignores, i, ti);
2461 }
2462 }
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002463 return _PyAST_Module(a, type_ignores, p->arena);
Guido van Rossumc001c092020-04-30 12:12:19 -07002464}
Pablo Galindo16ab0702020-05-15 02:04:52 +01002465
2466// Error reporting helpers
2467
2468expr_ty
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002469_PyPegen_get_invalid_target(expr_ty e, TARGETS_TYPE targets_type)
Pablo Galindo16ab0702020-05-15 02:04:52 +01002470{
2471 if (e == NULL) {
2472 return NULL;
2473 }
2474
2475#define VISIT_CONTAINER(CONTAINER, TYPE) do { \
Pablo Galindo58bafe42021-04-09 01:17:31 +01002476 Py_ssize_t len = asdl_seq_LEN((CONTAINER)->v.TYPE.elts);\
Pablo Galindo16ab0702020-05-15 02:04:52 +01002477 for (Py_ssize_t i = 0; i < len; i++) {\
Pablo Galindo58bafe42021-04-09 01:17:31 +01002478 expr_ty other = asdl_seq_GET((CONTAINER)->v.TYPE.elts, i);\
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002479 expr_ty child = _PyPegen_get_invalid_target(other, targets_type);\
Pablo Galindo16ab0702020-05-15 02:04:52 +01002480 if (child != NULL) {\
2481 return child;\
2482 }\
2483 }\
2484 } while (0)
2485
2486 // We only need to visit List and Tuple nodes recursively as those
2487 // are the only ones that can contain valid names in targets when
2488 // they are parsed as expressions. Any other kind of expression
2489 // that is a container (like Sets or Dicts) is directly invalid and
2490 // we don't need to visit it recursively.
2491
2492 switch (e->kind) {
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002493 case List_kind:
Pablo Galindo16ab0702020-05-15 02:04:52 +01002494 VISIT_CONTAINER(e, List);
2495 return NULL;
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002496 case Tuple_kind:
Pablo Galindo16ab0702020-05-15 02:04:52 +01002497 VISIT_CONTAINER(e, Tuple);
2498 return NULL;
Pablo Galindo16ab0702020-05-15 02:04:52 +01002499 case Starred_kind:
Lysandros Nikolaou01ece632020-06-19 02:10:43 +03002500 if (targets_type == DEL_TARGETS) {
2501 return e;
2502 }
2503 return _PyPegen_get_invalid_target(e->v.Starred.value, targets_type);
2504 case Compare_kind:
2505 // This is needed, because the `a in b` in `for a in b` gets parsed
2506 // as a comparison, and so we need to search the left side of the comparison
2507 // for invalid targets.
2508 if (targets_type == FOR_TARGETS) {
2509 cmpop_ty cmpop = (cmpop_ty) asdl_seq_GET(e->v.Compare.ops, 0);
2510 if (cmpop == In) {
2511 return _PyPegen_get_invalid_target(e->v.Compare.left, targets_type);
2512 }
2513 return NULL;
2514 }
2515 return e;
Pablo Galindo16ab0702020-05-15 02:04:52 +01002516 case Name_kind:
2517 case Subscript_kind:
2518 case Attribute_kind:
2519 return NULL;
2520 default:
2521 return e;
2522 }
Lysandros Nikolaou75b863a2020-05-18 22:14:47 +03002523}
2524
2525void *_PyPegen_arguments_parsing_error(Parser *p, expr_ty e) {
2526 int kwarg_unpacking = 0;
2527 for (Py_ssize_t i = 0, l = asdl_seq_LEN(e->v.Call.keywords); i < l; i++) {
2528 keyword_ty keyword = asdl_seq_GET(e->v.Call.keywords, i);
2529 if (!keyword->arg) {
2530 kwarg_unpacking = 1;
2531 }
2532 }
2533
2534 const char *msg = NULL;
2535 if (kwarg_unpacking) {
2536 msg = "positional argument follows keyword argument unpacking";
2537 } else {
2538 msg = "positional argument follows keyword argument";
2539 }
2540
2541 return RAISE_SYNTAX_ERROR(msg);
2542}
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002543
Miss Islington (bot)9e209d42021-09-27 07:05:20 -07002544
2545static inline expr_ty
2546_PyPegen_get_last_comprehension_item(comprehension_ty comprehension) {
2547 if (comprehension->ifs == NULL || asdl_seq_LEN(comprehension->ifs) == 0) {
2548 return comprehension->iter;
2549 }
2550 return PyPegen_last_item(comprehension->ifs, expr_ty);
2551}
2552
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002553void *
Miss Islington (bot)9e209d42021-09-27 07:05:20 -07002554_PyPegen_nonparen_genexp_in_call(Parser *p, expr_ty args, asdl_comprehension_seq *comprehensions)
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002555{
2556 /* The rule that calls this function is 'args for_if_clauses'.
2557 For the input f(L, x for x in y), L and x are in args and
2558 the for is parsed as a for_if_clause. We have to check if
2559 len <= 1, so that input like dict((a, b) for a, b in x)
2560 gets successfully parsed and then we pass the last
2561 argument (x in the above example) as the location of the
2562 error */
2563 Py_ssize_t len = asdl_seq_LEN(args->v.Call.args);
2564 if (len <= 1) {
2565 return NULL;
2566 }
2567
Miss Islington (bot)9e209d42021-09-27 07:05:20 -07002568 comprehension_ty last_comprehension = PyPegen_last_item(comprehensions, comprehension_ty);
2569
2570 return RAISE_SYNTAX_ERROR_KNOWN_RANGE(
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002571 (expr_ty) asdl_seq_GET(args->v.Call.args, len - 1),
Miss Islington (bot)9e209d42021-09-27 07:05:20 -07002572 _PyPegen_get_last_comprehension_item(last_comprehension),
Lysandros Nikolaouae145832020-05-22 03:56:52 +03002573 "Generator expression must be parenthesized"
2574 );
2575}
Pablo Galindo4a97b152020-09-02 17:44:19 +01002576
2577
Pablo Galindoa5634c42020-09-16 19:42:00 +01002578expr_ty _PyPegen_collect_call_seqs(Parser *p, asdl_expr_seq *a, asdl_seq *b,
Pablo Galindo315a61f2020-09-03 15:29:32 +01002579 int lineno, int col_offset, int end_lineno,
2580 int end_col_offset, PyArena *arena) {
Pablo Galindo4a97b152020-09-02 17:44:19 +01002581 Py_ssize_t args_len = asdl_seq_LEN(a);
2582 Py_ssize_t total_len = args_len;
2583
2584 if (b == NULL) {
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002585 return _PyAST_Call(_PyPegen_dummy_name(p), a, NULL, lineno, col_offset,
Pablo Galindo315a61f2020-09-03 15:29:32 +01002586 end_lineno, end_col_offset, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002587
2588 }
2589
Pablo Galindoa5634c42020-09-16 19:42:00 +01002590 asdl_expr_seq *starreds = _PyPegen_seq_extract_starred_exprs(p, b);
2591 asdl_keyword_seq *keywords = _PyPegen_seq_delete_starred_exprs(p, b);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002592
2593 if (starreds) {
2594 total_len += asdl_seq_LEN(starreds);
2595 }
2596
Pablo Galindoa5634c42020-09-16 19:42:00 +01002597 asdl_expr_seq *args = _Py_asdl_expr_seq_new(total_len, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002598
2599 Py_ssize_t i = 0;
2600 for (i = 0; i < args_len; i++) {
2601 asdl_seq_SET(args, i, asdl_seq_GET(a, i));
2602 }
2603 for (; i < total_len; i++) {
2604 asdl_seq_SET(args, i, asdl_seq_GET(starreds, i - args_len));
2605 }
2606
Victor Stinnerd27f8d22021-04-07 21:34:22 +02002607 return _PyAST_Call(_PyPegen_dummy_name(p), args, keywords, lineno,
2608 col_offset, end_lineno, end_col_offset, arena);
Pablo Galindo4a97b152020-09-02 17:44:19 +01002609}