Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1 | #include <Python.h> |
Victor Stinner | eec8e61 | 2021-03-18 14:57:49 +0100 | [diff] [blame] | 2 | #include "pycore_ast.h" // _PyAST_Validate() |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 3 | #include <errcode.h> |
Pablo Galindo | 1ed83ad | 2020-06-11 17:30:46 +0100 | [diff] [blame] | 4 | #include "tokenizer.h" |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 5 | |
| 6 | #include "pegen.h" |
Pablo Galindo | 1ed83ad | 2020-06-11 17:30:46 +0100 | [diff] [blame] | 7 | #include "string_parser.h" |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 8 | |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 9 | PyObject * |
| 10 | _PyPegen_new_type_comment(Parser *p, char *s) |
| 11 | { |
| 12 | PyObject *res = PyUnicode_DecodeUTF8(s, strlen(s), NULL); |
| 13 | if (res == NULL) { |
| 14 | return NULL; |
| 15 | } |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 16 | if (_PyArena_AddPyObject(p->arena, res) < 0) { |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 17 | Py_DECREF(res); |
| 18 | return NULL; |
| 19 | } |
| 20 | return res; |
| 21 | } |
| 22 | |
| 23 | arg_ty |
| 24 | _PyPegen_add_type_comment_to_arg(Parser *p, arg_ty a, Token *tc) |
| 25 | { |
| 26 | if (tc == NULL) { |
| 27 | return a; |
| 28 | } |
| 29 | char *bytes = PyBytes_AsString(tc->bytes); |
| 30 | if (bytes == NULL) { |
| 31 | return NULL; |
| 32 | } |
| 33 | PyObject *tco = _PyPegen_new_type_comment(p, bytes); |
| 34 | if (tco == NULL) { |
| 35 | return NULL; |
| 36 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 37 | 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 Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 40 | } |
| 41 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 42 | static int |
| 43 | init_normalization(Parser *p) |
| 44 | { |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 45 | if (p->normalize) { |
| 46 | return 1; |
| 47 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 48 | 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 Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 62 | /* Checks if the NOTEQUAL token is valid given the current parser flags |
| 63 | 0 indicates success and nonzero indicates failure (an exception may be set) */ |
| 64 | int |
Pablo Galindo | 06f8c33 | 2020-10-30 23:48:42 +0000 | [diff] [blame] | 65 | _PyPegen_check_barry_as_flufl(Parser *p, Token* t) { |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 66 | assert(t->bytes != NULL); |
| 67 | assert(t->type == NOTEQUAL); |
| 68 | |
| 69 | char* tok_str = PyBytes_AS_STRING(t->bytes); |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 70 | if (p->flags & PyPARSE_BARRY_AS_BDFL && strcmp(tok_str, "<>") != 0) { |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 71 | RAISE_SYNTAX_ERROR("with Barry as BDFL, use '<>' instead of '!='"); |
| 72 | return -1; |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 73 | } |
| 74 | if (!(p->flags & PyPARSE_BARRY_AS_BDFL)) { |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 75 | return strcmp(tok_str, "!="); |
| 76 | } |
| 77 | return 0; |
| 78 | } |
| 79 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 80 | PyObject * |
| 81 | _PyPegen_new_identifier(Parser *p, char *n) |
| 82 | { |
| 83 | PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL); |
| 84 | if (!id) { |
| 85 | goto error; |
| 86 | } |
| 87 | /* PyUnicode_DecodeUTF8 should always return a ready string. */ |
| 88 | assert(PyUnicode_IS_READY(id)); |
| 89 | /* Check whether there are non-ASCII characters in the |
| 90 | identifier; if so, normalize to NFKC. */ |
| 91 | if (!PyUnicode_IS_ASCII(id)) |
| 92 | { |
| 93 | PyObject *id2; |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 94 | if (!init_normalization(p)) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 95 | { |
| 96 | Py_DECREF(id); |
| 97 | goto error; |
| 98 | } |
| 99 | PyObject *form = PyUnicode_InternFromString("NFKC"); |
| 100 | if (form == NULL) |
| 101 | { |
| 102 | Py_DECREF(id); |
| 103 | goto error; |
| 104 | } |
| 105 | PyObject *args[2] = {form, id}; |
| 106 | id2 = _PyObject_FastCall(p->normalize, args, 2); |
| 107 | Py_DECREF(id); |
| 108 | Py_DECREF(form); |
| 109 | if (!id2) { |
| 110 | goto error; |
| 111 | } |
| 112 | if (!PyUnicode_Check(id2)) |
| 113 | { |
| 114 | PyErr_Format(PyExc_TypeError, |
| 115 | "unicodedata.normalize() must return a string, not " |
| 116 | "%.200s", |
| 117 | _PyType_Name(Py_TYPE(id2))); |
| 118 | Py_DECREF(id2); |
| 119 | goto error; |
| 120 | } |
| 121 | id = id2; |
| 122 | } |
| 123 | PyUnicode_InternInPlace(&id); |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 124 | if (_PyArena_AddPyObject(p->arena, id) < 0) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 125 | { |
| 126 | Py_DECREF(id); |
| 127 | goto error; |
| 128 | } |
| 129 | return id; |
| 130 | |
| 131 | error: |
| 132 | p->error_indicator = 1; |
| 133 | return NULL; |
| 134 | } |
| 135 | |
| 136 | static PyObject * |
| 137 | _create_dummy_identifier(Parser *p) |
| 138 | { |
| 139 | return _PyPegen_new_identifier(p, ""); |
| 140 | } |
| 141 | |
| 142 | static inline Py_ssize_t |
Pablo Galindo | 51c5896 | 2020-06-16 16:49:43 +0100 | [diff] [blame] | 143 | byte_offset_to_character_offset(PyObject *line, Py_ssize_t col_offset) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 144 | { |
| 145 | const char *str = PyUnicode_AsUTF8(line); |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 146 | if (!str) { |
| 147 | return 0; |
| 148 | } |
Pablo Galindo | 123ff26 | 2021-03-22 16:24:39 +0000 | [diff] [blame] | 149 | Py_ssize_t len = strlen(str); |
| 150 | if (col_offset > len) { |
| 151 | col_offset = len; |
| 152 | } |
| 153 | assert(col_offset >= 0); |
Batuhan Taskaya | 76c1b4d | 2020-05-01 16:13:43 +0300 | [diff] [blame] | 154 | PyObject *text = PyUnicode_DecodeUTF8(str, col_offset, "replace"); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 155 | if (!text) { |
| 156 | return 0; |
| 157 | } |
| 158 | Py_ssize_t size = PyUnicode_GET_LENGTH(text); |
| 159 | Py_DECREF(text); |
| 160 | return size; |
| 161 | } |
| 162 | |
| 163 | const char * |
| 164 | _PyPegen_get_expr_name(expr_ty e) |
| 165 | { |
Pablo Galindo | 9f49590 | 2020-06-08 02:57:00 +0100 | [diff] [blame] | 166 | assert(e != NULL); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 167 | switch (e->kind) { |
| 168 | case Attribute_kind: |
| 169 | return "attribute"; |
| 170 | case Subscript_kind: |
| 171 | return "subscript"; |
| 172 | case Starred_kind: |
| 173 | return "starred"; |
| 174 | case Name_kind: |
| 175 | return "name"; |
| 176 | case List_kind: |
| 177 | return "list"; |
| 178 | case Tuple_kind: |
| 179 | return "tuple"; |
| 180 | case Lambda_kind: |
| 181 | return "lambda"; |
| 182 | case Call_kind: |
| 183 | return "function call"; |
| 184 | case BoolOp_kind: |
| 185 | case BinOp_kind: |
| 186 | case UnaryOp_kind: |
| 187 | return "operator"; |
| 188 | case GeneratorExp_kind: |
| 189 | return "generator expression"; |
| 190 | case Yield_kind: |
| 191 | case YieldFrom_kind: |
| 192 | return "yield expression"; |
| 193 | case Await_kind: |
| 194 | return "await expression"; |
| 195 | case ListComp_kind: |
| 196 | return "list comprehension"; |
| 197 | case SetComp_kind: |
| 198 | return "set comprehension"; |
| 199 | case DictComp_kind: |
| 200 | return "dict comprehension"; |
| 201 | case Dict_kind: |
| 202 | return "dict display"; |
| 203 | case Set_kind: |
| 204 | return "set display"; |
| 205 | case JoinedStr_kind: |
| 206 | case FormattedValue_kind: |
| 207 | return "f-string expression"; |
| 208 | case Constant_kind: { |
| 209 | PyObject *value = e->v.Constant.value; |
| 210 | if (value == Py_None) { |
| 211 | return "None"; |
| 212 | } |
| 213 | if (value == Py_False) { |
| 214 | return "False"; |
| 215 | } |
| 216 | if (value == Py_True) { |
| 217 | return "True"; |
| 218 | } |
| 219 | if (value == Py_Ellipsis) { |
| 220 | return "Ellipsis"; |
| 221 | } |
| 222 | return "literal"; |
| 223 | } |
| 224 | case Compare_kind: |
| 225 | return "comparison"; |
| 226 | case IfExp_kind: |
| 227 | return "conditional expression"; |
| 228 | case NamedExpr_kind: |
| 229 | return "named expression"; |
| 230 | default: |
| 231 | PyErr_Format(PyExc_SystemError, |
| 232 | "unexpected expression in assignment %d (line %d)", |
| 233 | e->kind, e->lineno); |
| 234 | return NULL; |
| 235 | } |
| 236 | } |
| 237 | |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 238 | static int |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 239 | raise_decode_error(Parser *p) |
| 240 | { |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 241 | assert(PyErr_Occurred()); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 242 | const char *errtype = NULL; |
| 243 | if (PyErr_ExceptionMatches(PyExc_UnicodeError)) { |
| 244 | errtype = "unicode error"; |
| 245 | } |
| 246 | else if (PyErr_ExceptionMatches(PyExc_ValueError)) { |
| 247 | errtype = "value error"; |
| 248 | } |
| 249 | if (errtype) { |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 250 | PyObject *type; |
| 251 | PyObject *value; |
| 252 | PyObject *tback; |
| 253 | PyObject *errstr; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 254 | PyErr_Fetch(&type, &value, &tback); |
| 255 | errstr = PyObject_Str(value); |
| 256 | if (errstr) { |
| 257 | RAISE_SYNTAX_ERROR("(%s) %U", errtype, errstr); |
| 258 | Py_DECREF(errstr); |
| 259 | } |
| 260 | else { |
| 261 | PyErr_Clear(); |
| 262 | RAISE_SYNTAX_ERROR("(%s) unknown error", errtype); |
| 263 | } |
| 264 | Py_XDECREF(type); |
| 265 | Py_XDECREF(value); |
| 266 | Py_XDECREF(tback); |
| 267 | } |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 268 | |
| 269 | return -1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 270 | } |
| 271 | |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 272 | static inline void |
| 273 | raise_unclosed_parentheses_error(Parser *p) { |
| 274 | int error_lineno = p->tok->parenlinenostack[p->tok->level-1]; |
| 275 | int error_col = p->tok->parencolstack[p->tok->level-1]; |
| 276 | RAISE_ERROR_KNOWN_LOCATION(p, PyExc_SyntaxError, |
| 277 | error_lineno, error_col, |
| 278 | "'%c' was never closed", |
| 279 | p->tok->parenstack[p->tok->level-1]); |
| 280 | } |
| 281 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 282 | static void |
| 283 | raise_tokenizer_init_error(PyObject *filename) |
| 284 | { |
| 285 | if (!(PyErr_ExceptionMatches(PyExc_LookupError) |
| 286 | || PyErr_ExceptionMatches(PyExc_ValueError) |
| 287 | || PyErr_ExceptionMatches(PyExc_UnicodeDecodeError))) { |
| 288 | return; |
| 289 | } |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 290 | PyObject *errstr = NULL; |
| 291 | PyObject *tuple = NULL; |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 292 | PyObject *type; |
| 293 | PyObject *value; |
| 294 | PyObject *tback; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 295 | PyErr_Fetch(&type, &value, &tback); |
| 296 | errstr = PyObject_Str(value); |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 297 | if (!errstr) { |
| 298 | goto error; |
| 299 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 300 | |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 301 | PyObject *tmp = Py_BuildValue("(OiiO)", filename, 0, -1, Py_None); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 302 | if (!tmp) { |
| 303 | goto error; |
| 304 | } |
| 305 | |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 306 | tuple = PyTuple_Pack(2, errstr, tmp); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 307 | Py_DECREF(tmp); |
| 308 | if (!value) { |
| 309 | goto error; |
| 310 | } |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 311 | PyErr_SetObject(PyExc_SyntaxError, tuple); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 312 | |
| 313 | error: |
| 314 | Py_XDECREF(type); |
| 315 | Py_XDECREF(value); |
| 316 | Py_XDECREF(tback); |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 317 | Py_XDECREF(errstr); |
| 318 | Py_XDECREF(tuple); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 319 | } |
| 320 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 321 | static int |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 322 | tokenizer_error(Parser *p) |
| 323 | { |
| 324 | if (PyErr_Occurred()) { |
| 325 | return -1; |
| 326 | } |
| 327 | |
| 328 | const char *msg = NULL; |
| 329 | PyObject* errtype = PyExc_SyntaxError; |
Pablo Galindo | 96eeff5 | 2021-03-22 17:28:11 +0000 | [diff] [blame] | 330 | Py_ssize_t col_offset = -1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 331 | switch (p->tok->done) { |
| 332 | case E_TOKEN: |
| 333 | msg = "invalid token"; |
| 334 | break; |
Lysandros Nikolaou | d55133f | 2020-04-28 03:23:35 +0300 | [diff] [blame] | 335 | case E_EOF: |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 336 | if (p->tok->level) { |
| 337 | raise_unclosed_parentheses_error(p); |
| 338 | } else { |
| 339 | RAISE_SYNTAX_ERROR("unexpected EOF while parsing"); |
| 340 | } |
Batuhan Taskaya | 76c1b4d | 2020-05-01 16:13:43 +0300 | [diff] [blame] | 341 | return -1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 342 | case E_DEDENT: |
Batuhan Taskaya | 76c1b4d | 2020-05-01 16:13:43 +0300 | [diff] [blame] | 343 | RAISE_INDENTATION_ERROR("unindent does not match any outer indentation level"); |
| 344 | return -1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 345 | case E_INTR: |
| 346 | if (!PyErr_Occurred()) { |
| 347 | PyErr_SetNone(PyExc_KeyboardInterrupt); |
| 348 | } |
| 349 | return -1; |
| 350 | case E_NOMEM: |
| 351 | PyErr_NoMemory(); |
| 352 | return -1; |
| 353 | case E_TABSPACE: |
| 354 | errtype = PyExc_TabError; |
| 355 | msg = "inconsistent use of tabs and spaces in indentation"; |
| 356 | break; |
| 357 | case E_TOODEEP: |
| 358 | errtype = PyExc_IndentationError; |
| 359 | msg = "too many levels of indentation"; |
| 360 | break; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 361 | case E_LINECONT: |
Pablo Galindo | 96eeff5 | 2021-03-22 17:28:11 +0000 | [diff] [blame] | 362 | col_offset = strlen(strtok(p->tok->buf, "\n")) - 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 363 | msg = "unexpected character after line continuation character"; |
| 364 | break; |
| 365 | default: |
| 366 | msg = "unknown parsing error"; |
| 367 | } |
| 368 | |
Pablo Galindo | 96eeff5 | 2021-03-22 17:28:11 +0000 | [diff] [blame] | 369 | RAISE_ERROR_KNOWN_LOCATION(p, errtype, p->tok->lineno, col_offset, msg); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 370 | return -1; |
| 371 | } |
| 372 | |
| 373 | void * |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 374 | _PyPegen_raise_error(Parser *p, PyObject *errtype, const char *errmsg, ...) |
| 375 | { |
| 376 | Token *t = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1]; |
Pablo Galindo | 51c5896 | 2020-06-16 16:49:43 +0100 | [diff] [blame] | 377 | Py_ssize_t col_offset; |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 378 | if (t->col_offset == -1) { |
| 379 | col_offset = Py_SAFE_DOWNCAST(p->tok->cur - p->tok->buf, |
| 380 | intptr_t, int); |
| 381 | } else { |
| 382 | col_offset = t->col_offset + 1; |
| 383 | } |
| 384 | |
| 385 | va_list va; |
| 386 | va_start(va, errmsg); |
| 387 | _PyPegen_raise_error_known_location(p, errtype, t->lineno, |
| 388 | col_offset, errmsg, va); |
| 389 | va_end(va); |
| 390 | |
| 391 | return NULL; |
| 392 | } |
| 393 | |
Lysandros Nikolaou | e5fe509 | 2021-01-14 23:36:30 +0200 | [diff] [blame] | 394 | static PyObject * |
| 395 | get_error_line(Parser *p, Py_ssize_t lineno) |
| 396 | { |
Pablo Galindo | 123ff26 | 2021-03-22 16:24:39 +0000 | [diff] [blame] | 397 | /* If the file descriptor is interactive, the source lines of the current |
| 398 | * (multi-line) statement are stored in p->tok->interactive_src_start. |
| 399 | * If not, we're parsing from a string, which means that the whole source |
| 400 | * is stored in p->tok->str. */ |
Lysandros Nikolaou | e5fe509 | 2021-01-14 23:36:30 +0200 | [diff] [blame] | 401 | assert(p->tok->fp == NULL || p->tok->fp == stdin); |
| 402 | |
Pablo Galindo | cd8dcbc | 2021-03-14 04:38:40 +0100 | [diff] [blame] | 403 | char *cur_line = p->tok->fp_interactive ? p->tok->interactive_src_start : p->tok->str; |
| 404 | |
Lysandros Nikolaou | e5fe509 | 2021-01-14 23:36:30 +0200 | [diff] [blame] | 405 | for (int i = 0; i < lineno - 1; i++) { |
| 406 | cur_line = strchr(cur_line, '\n') + 1; |
| 407 | } |
| 408 | |
| 409 | char *next_newline; |
| 410 | if ((next_newline = strchr(cur_line, '\n')) == NULL) { // This is the last line |
| 411 | next_newline = cur_line + strlen(cur_line); |
| 412 | } |
| 413 | return PyUnicode_DecodeUTF8(cur_line, next_newline - cur_line, "replace"); |
| 414 | } |
| 415 | |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 416 | void * |
| 417 | _PyPegen_raise_error_known_location(Parser *p, PyObject *errtype, |
Pablo Galindo | 51c5896 | 2020-06-16 16:49:43 +0100 | [diff] [blame] | 418 | Py_ssize_t lineno, Py_ssize_t col_offset, |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 419 | const char *errmsg, va_list va) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 420 | { |
| 421 | PyObject *value = NULL; |
| 422 | PyObject *errstr = NULL; |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 423 | PyObject *error_line = NULL; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 424 | PyObject *tmp = NULL; |
Lysandros Nikolaou | 7f06af6 | 2020-05-04 03:20:09 +0300 | [diff] [blame] | 425 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 426 | |
Lysandros Nikolaou | 2e0a920 | 2020-06-26 14:24:05 +0300 | [diff] [blame] | 427 | if (p->start_rule == Py_fstring_input) { |
| 428 | const char *fstring_msg = "f-string: "; |
| 429 | Py_ssize_t len = strlen(fstring_msg) + strlen(errmsg); |
| 430 | |
Lysandros Nikolaou | 6dcbc24 | 2020-06-27 20:47:00 +0300 | [diff] [blame] | 431 | char *new_errmsg = PyMem_Malloc(len + 1); // Lengths of both strings plus NULL character |
Lysandros Nikolaou | 2e0a920 | 2020-06-26 14:24:05 +0300 | [diff] [blame] | 432 | if (!new_errmsg) { |
| 433 | return (void *) PyErr_NoMemory(); |
| 434 | } |
| 435 | |
| 436 | // Copy both strings into new buffer |
| 437 | memcpy(new_errmsg, fstring_msg, strlen(fstring_msg)); |
| 438 | memcpy(new_errmsg + strlen(fstring_msg), errmsg, strlen(errmsg)); |
| 439 | new_errmsg[len] = 0; |
| 440 | errmsg = new_errmsg; |
| 441 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 442 | errstr = PyUnicode_FromFormatV(errmsg, va); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 443 | if (!errstr) { |
| 444 | goto error; |
| 445 | } |
| 446 | |
Pablo Galindo | cd8dcbc | 2021-03-14 04:38:40 +0100 | [diff] [blame] | 447 | if (p->tok->fp_interactive) { |
| 448 | error_line = get_error_line(p, lineno); |
| 449 | } |
| 450 | else if (p->start_rule == Py_file_input) { |
Lysandros Nikolaou | 861efc6 | 2020-06-20 15:57:27 +0300 | [diff] [blame] | 451 | error_line = PyErr_ProgramTextObject(p->tok->filename, (int) lineno); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 452 | } |
| 453 | |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 454 | if (!error_line) { |
Lysandros Nikolaou | e5fe509 | 2021-01-14 23:36:30 +0200 | [diff] [blame] | 455 | /* PyErr_ProgramTextObject was not called or returned NULL. If it was not called, |
| 456 | then we need to find the error line from some other source, because |
| 457 | p->start_rule != Py_file_input. If it returned NULL, then it either unexpectedly |
| 458 | failed or we're parsing from a string or the REPL. There's a third edge case where |
| 459 | we're actually parsing from a file, which has an E_EOF SyntaxError and in that case |
| 460 | `PyErr_ProgramTextObject` fails because lineno points to last_file_line + 1, which |
| 461 | does not physically exist */ |
| 462 | assert(p->tok->fp == NULL || p->tok->fp == stdin || p->tok->done == E_EOF); |
| 463 | |
Pablo Galindo | 4090151 | 2021-01-31 22:48:23 +0000 | [diff] [blame] | 464 | if (p->tok->lineno <= lineno) { |
Lysandros Nikolaou | e5fe509 | 2021-01-14 23:36:30 +0200 | [diff] [blame] | 465 | Py_ssize_t size = p->tok->inp - p->tok->buf; |
| 466 | error_line = PyUnicode_DecodeUTF8(p->tok->buf, size, "replace"); |
| 467 | } |
| 468 | else { |
| 469 | error_line = get_error_line(p, lineno); |
| 470 | } |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 471 | if (!error_line) { |
| 472 | goto error; |
Batuhan Taskaya | 76c1b4d | 2020-05-01 16:13:43 +0300 | [diff] [blame] | 473 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 474 | } |
| 475 | |
Lysandros Nikolaou | 1f0f4ab | 2020-06-28 02:41:48 +0300 | [diff] [blame] | 476 | if (p->start_rule == Py_fstring_input) { |
| 477 | col_offset -= p->starting_col_offset; |
| 478 | } |
Pablo Galindo | 51c5896 | 2020-06-16 16:49:43 +0100 | [diff] [blame] | 479 | Py_ssize_t col_number = col_offset; |
| 480 | |
| 481 | if (p->tok->encoding != NULL) { |
| 482 | col_number = byte_offset_to_character_offset(error_line, col_offset); |
| 483 | } |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 484 | |
| 485 | tmp = Py_BuildValue("(OiiN)", p->tok->filename, lineno, col_number, error_line); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 486 | if (!tmp) { |
| 487 | goto error; |
| 488 | } |
| 489 | value = PyTuple_Pack(2, errstr, tmp); |
| 490 | Py_DECREF(tmp); |
| 491 | if (!value) { |
| 492 | goto error; |
| 493 | } |
| 494 | PyErr_SetObject(errtype, value); |
| 495 | |
| 496 | Py_DECREF(errstr); |
| 497 | Py_DECREF(value); |
Lysandros Nikolaou | 2e0a920 | 2020-06-26 14:24:05 +0300 | [diff] [blame] | 498 | if (p->start_rule == Py_fstring_input) { |
Lysandros Nikolaou | 6dcbc24 | 2020-06-27 20:47:00 +0300 | [diff] [blame] | 499 | PyMem_Free((void *)errmsg); |
Lysandros Nikolaou | 2e0a920 | 2020-06-26 14:24:05 +0300 | [diff] [blame] | 500 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 501 | return NULL; |
| 502 | |
| 503 | error: |
| 504 | Py_XDECREF(errstr); |
Lysandros Nikolaou | a15c9b3 | 2020-05-13 22:36:27 +0300 | [diff] [blame] | 505 | Py_XDECREF(error_line); |
Lysandros Nikolaou | 2e0a920 | 2020-06-26 14:24:05 +0300 | [diff] [blame] | 506 | if (p->start_rule == Py_fstring_input) { |
Lysandros Nikolaou | 6dcbc24 | 2020-06-27 20:47:00 +0300 | [diff] [blame] | 507 | PyMem_Free((void *)errmsg); |
Lysandros Nikolaou | 2e0a920 | 2020-06-26 14:24:05 +0300 | [diff] [blame] | 508 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 509 | return NULL; |
| 510 | } |
| 511 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 512 | #if 0 |
| 513 | static const char * |
| 514 | token_name(int type) |
| 515 | { |
| 516 | if (0 <= type && type <= N_TOKENS) { |
| 517 | return _PyParser_TokenNames[type]; |
| 518 | } |
| 519 | return "<Huh?>"; |
| 520 | } |
| 521 | #endif |
| 522 | |
| 523 | // Here, mark is the start of the node, while p->mark is the end. |
| 524 | // If node==NULL, they should be the same. |
| 525 | int |
| 526 | _PyPegen_insert_memo(Parser *p, int mark, int type, void *node) |
| 527 | { |
| 528 | // Insert in front |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 529 | Memo *m = _PyArena_Malloc(p->arena, sizeof(Memo)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 530 | if (m == NULL) { |
| 531 | return -1; |
| 532 | } |
| 533 | m->type = type; |
| 534 | m->node = node; |
| 535 | m->mark = p->mark; |
| 536 | m->next = p->tokens[mark]->memo; |
| 537 | p->tokens[mark]->memo = m; |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | // Like _PyPegen_insert_memo(), but updates an existing node if found. |
| 542 | int |
| 543 | _PyPegen_update_memo(Parser *p, int mark, int type, void *node) |
| 544 | { |
| 545 | for (Memo *m = p->tokens[mark]->memo; m != NULL; m = m->next) { |
| 546 | if (m->type == type) { |
| 547 | // Update existing node. |
| 548 | m->node = node; |
| 549 | m->mark = p->mark; |
| 550 | return 0; |
| 551 | } |
| 552 | } |
| 553 | // Insert new node. |
| 554 | return _PyPegen_insert_memo(p, mark, type, node); |
| 555 | } |
| 556 | |
| 557 | // Return dummy NAME. |
| 558 | void * |
| 559 | _PyPegen_dummy_name(Parser *p, ...) |
| 560 | { |
| 561 | static void *cache = NULL; |
| 562 | |
| 563 | if (cache != NULL) { |
| 564 | return cache; |
| 565 | } |
| 566 | |
| 567 | PyObject *id = _create_dummy_identifier(p); |
| 568 | if (!id) { |
| 569 | return NULL; |
| 570 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 571 | cache = _PyAST_Name(id, Load, 1, 0, 1, 0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 572 | return cache; |
| 573 | } |
| 574 | |
| 575 | static int |
| 576 | _get_keyword_or_name_type(Parser *p, const char *name, int name_len) |
| 577 | { |
Lysandros Nikolaou | 782f44b | 2020-07-07 01:42:21 +0300 | [diff] [blame] | 578 | assert(name_len > 0); |
Pablo Galindo | 1ac0cbc | 2020-07-06 20:31:16 +0100 | [diff] [blame] | 579 | if (name_len >= p->n_keyword_lists || |
| 580 | p->keywords[name_len] == NULL || |
| 581 | p->keywords[name_len]->type == -1) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 582 | return NAME; |
| 583 | } |
Pablo Galindo | 1ac0cbc | 2020-07-06 20:31:16 +0100 | [diff] [blame] | 584 | for (KeywordToken *k = p->keywords[name_len]; k != NULL && k->type != -1; k++) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 585 | if (strncmp(k->str, name, name_len) == 0) { |
| 586 | return k->type; |
| 587 | } |
| 588 | } |
| 589 | return NAME; |
| 590 | } |
| 591 | |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 592 | static int |
| 593 | growable_comment_array_init(growable_comment_array *arr, size_t initial_size) { |
| 594 | assert(initial_size > 0); |
| 595 | arr->items = PyMem_Malloc(initial_size * sizeof(*arr->items)); |
| 596 | arr->size = initial_size; |
| 597 | arr->num_items = 0; |
| 598 | |
| 599 | return arr->items != NULL; |
| 600 | } |
| 601 | |
| 602 | static int |
| 603 | growable_comment_array_add(growable_comment_array *arr, int lineno, char *comment) { |
| 604 | if (arr->num_items >= arr->size) { |
| 605 | size_t new_size = arr->size * 2; |
| 606 | void *new_items_array = PyMem_Realloc(arr->items, new_size * sizeof(*arr->items)); |
| 607 | if (!new_items_array) { |
| 608 | return 0; |
| 609 | } |
| 610 | arr->items = new_items_array; |
| 611 | arr->size = new_size; |
| 612 | } |
| 613 | |
| 614 | arr->items[arr->num_items].lineno = lineno; |
| 615 | arr->items[arr->num_items].comment = comment; // Take ownership |
| 616 | arr->num_items++; |
| 617 | return 1; |
| 618 | } |
| 619 | |
| 620 | static void |
| 621 | growable_comment_array_deallocate(growable_comment_array *arr) { |
| 622 | for (unsigned i = 0; i < arr->num_items; i++) { |
| 623 | PyMem_Free(arr->items[i].comment); |
| 624 | } |
| 625 | PyMem_Free(arr->items); |
| 626 | } |
| 627 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 628 | int |
| 629 | _PyPegen_fill_token(Parser *p) |
| 630 | { |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 631 | const char *start; |
| 632 | const char *end; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 633 | int type = PyTokenizer_Get(p->tok, &start, &end); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 634 | |
| 635 | // Record and skip '# type: ignore' comments |
| 636 | while (type == TYPE_IGNORE) { |
| 637 | Py_ssize_t len = end - start; |
| 638 | char *tag = PyMem_Malloc(len + 1); |
| 639 | if (tag == NULL) { |
| 640 | PyErr_NoMemory(); |
| 641 | return -1; |
| 642 | } |
| 643 | strncpy(tag, start, len); |
| 644 | tag[len] = '\0'; |
| 645 | // Ownership of tag passes to the growable array |
| 646 | if (!growable_comment_array_add(&p->type_ignore_comments, p->tok->lineno, tag)) { |
| 647 | PyErr_NoMemory(); |
| 648 | return -1; |
| 649 | } |
| 650 | type = PyTokenizer_Get(p->tok, &start, &end); |
| 651 | } |
| 652 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 653 | if (type == ENDMARKER && p->start_rule == Py_single_input && p->parsing_started) { |
| 654 | type = NEWLINE; /* Add an extra newline */ |
| 655 | p->parsing_started = 0; |
| 656 | |
Pablo Galindo | b94dbd7 | 2020-04-27 18:35:58 +0100 | [diff] [blame] | 657 | if (p->tok->indent && !(p->flags & PyPARSE_DONT_IMPLY_DEDENT)) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 658 | p->tok->pendin = -p->tok->indent; |
| 659 | p->tok->indent = 0; |
| 660 | } |
| 661 | } |
| 662 | else { |
| 663 | p->parsing_started = 1; |
| 664 | } |
| 665 | |
| 666 | if (p->fill == p->size) { |
| 667 | int newsize = p->size * 2; |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 668 | Token **new_tokens = PyMem_Realloc(p->tokens, newsize * sizeof(Token *)); |
| 669 | if (new_tokens == NULL) { |
| 670 | PyErr_NoMemory(); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 671 | return -1; |
| 672 | } |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 673 | p->tokens = new_tokens; |
| 674 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 675 | for (int i = p->size; i < newsize; i++) { |
| 676 | p->tokens[i] = PyMem_Malloc(sizeof(Token)); |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 677 | if (p->tokens[i] == NULL) { |
| 678 | p->size = i; // Needed, in order to cleanup correctly after parser fails |
| 679 | PyErr_NoMemory(); |
| 680 | return -1; |
| 681 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 682 | memset(p->tokens[i], '\0', sizeof(Token)); |
| 683 | } |
| 684 | p->size = newsize; |
| 685 | } |
| 686 | |
| 687 | Token *t = p->tokens[p->fill]; |
| 688 | t->type = (type == NAME) ? _get_keyword_or_name_type(p, start, (int)(end - start)) : type; |
| 689 | t->bytes = PyBytes_FromStringAndSize(start, end - start); |
| 690 | if (t->bytes == NULL) { |
| 691 | return -1; |
| 692 | } |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 693 | _PyArena_AddPyObject(p->arena, t->bytes); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 694 | |
| 695 | int lineno = type == STRING ? p->tok->first_lineno : p->tok->lineno; |
| 696 | const char *line_start = type == STRING ? p->tok->multi_line_start : p->tok->line_start; |
Pablo Galindo | 2208134 | 2020-04-29 02:04:06 +0100 | [diff] [blame] | 697 | int end_lineno = p->tok->lineno; |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 698 | int col_offset = -1; |
| 699 | int end_col_offset = -1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 700 | if (start != NULL && start >= line_start) { |
Pablo Galindo | 2208134 | 2020-04-29 02:04:06 +0100 | [diff] [blame] | 701 | col_offset = (int)(start - line_start); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 702 | } |
| 703 | if (end != NULL && end >= p->tok->line_start) { |
Pablo Galindo | 2208134 | 2020-04-29 02:04:06 +0100 | [diff] [blame] | 704 | end_col_offset = (int)(end - p->tok->line_start); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | t->lineno = p->starting_lineno + lineno; |
| 708 | t->col_offset = p->tok->lineno == 1 ? p->starting_col_offset + col_offset : col_offset; |
| 709 | t->end_lineno = p->starting_lineno + end_lineno; |
| 710 | t->end_col_offset = p->tok->lineno == 1 ? p->starting_col_offset + end_col_offset : end_col_offset; |
| 711 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 712 | p->fill += 1; |
Batuhan Taskaya | 76c1b4d | 2020-05-01 16:13:43 +0300 | [diff] [blame] | 713 | |
| 714 | if (type == ERRORTOKEN) { |
| 715 | if (p->tok->done == E_DECODE) { |
| 716 | return raise_decode_error(p); |
| 717 | } |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 718 | return tokenizer_error(p); |
| 719 | |
Batuhan Taskaya | 76c1b4d | 2020-05-01 16:13:43 +0300 | [diff] [blame] | 720 | } |
| 721 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 722 | return 0; |
| 723 | } |
| 724 | |
| 725 | // Instrumentation to count the effectiveness of memoization. |
| 726 | // The array counts the number of tokens skipped by memoization, |
| 727 | // indexed by type. |
| 728 | |
| 729 | #define NSTATISTICS 2000 |
| 730 | static long memo_statistics[NSTATISTICS]; |
| 731 | |
| 732 | void |
| 733 | _PyPegen_clear_memo_statistics() |
| 734 | { |
| 735 | for (int i = 0; i < NSTATISTICS; i++) { |
| 736 | memo_statistics[i] = 0; |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | PyObject * |
| 741 | _PyPegen_get_memo_statistics() |
| 742 | { |
| 743 | PyObject *ret = PyList_New(NSTATISTICS); |
| 744 | if (ret == NULL) { |
| 745 | return NULL; |
| 746 | } |
| 747 | for (int i = 0; i < NSTATISTICS; i++) { |
| 748 | PyObject *value = PyLong_FromLong(memo_statistics[i]); |
| 749 | if (value == NULL) { |
| 750 | Py_DECREF(ret); |
| 751 | return NULL; |
| 752 | } |
| 753 | // PyList_SetItem borrows a reference to value. |
| 754 | if (PyList_SetItem(ret, i, value) < 0) { |
| 755 | Py_DECREF(ret); |
| 756 | return NULL; |
| 757 | } |
| 758 | } |
| 759 | return ret; |
| 760 | } |
| 761 | |
| 762 | int // bool |
| 763 | _PyPegen_is_memoized(Parser *p, int type, void *pres) |
| 764 | { |
| 765 | if (p->mark == p->fill) { |
| 766 | if (_PyPegen_fill_token(p) < 0) { |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 767 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 768 | return -1; |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | Token *t = p->tokens[p->mark]; |
| 773 | |
| 774 | for (Memo *m = t->memo; m != NULL; m = m->next) { |
| 775 | if (m->type == type) { |
| 776 | if (0 <= type && type < NSTATISTICS) { |
| 777 | long count = m->mark - p->mark; |
| 778 | // A memoized negative result counts for one. |
| 779 | if (count <= 0) { |
| 780 | count = 1; |
| 781 | } |
| 782 | memo_statistics[type] += count; |
| 783 | } |
| 784 | p->mark = m->mark; |
| 785 | *(void **)(pres) = m->node; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 786 | return 1; |
| 787 | } |
| 788 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 789 | return 0; |
| 790 | } |
| 791 | |
Pablo Galindo | 1df5a9e | 2020-04-23 12:42:13 +0100 | [diff] [blame] | 792 | int |
| 793 | _PyPegen_lookahead_with_name(int positive, expr_ty (func)(Parser *), Parser *p) |
| 794 | { |
| 795 | int mark = p->mark; |
| 796 | void *res = func(p); |
| 797 | p->mark = mark; |
| 798 | return (res != NULL) == positive; |
| 799 | } |
| 800 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 801 | int |
Pablo Galindo | 404b23b | 2020-05-27 00:15:52 +0100 | [diff] [blame] | 802 | _PyPegen_lookahead_with_string(int positive, expr_ty (func)(Parser *, const char*), Parser *p, const char* arg) |
| 803 | { |
| 804 | int mark = p->mark; |
| 805 | void *res = func(p, arg); |
| 806 | p->mark = mark; |
| 807 | return (res != NULL) == positive; |
| 808 | } |
| 809 | |
| 810 | int |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 811 | _PyPegen_lookahead_with_int(int positive, Token *(func)(Parser *, int), Parser *p, int arg) |
| 812 | { |
| 813 | int mark = p->mark; |
| 814 | void *res = func(p, arg); |
| 815 | p->mark = mark; |
| 816 | return (res != NULL) == positive; |
| 817 | } |
| 818 | |
| 819 | int |
| 820 | _PyPegen_lookahead(int positive, void *(func)(Parser *), Parser *p) |
| 821 | { |
| 822 | int mark = p->mark; |
Pablo Galindo | 1df5a9e | 2020-04-23 12:42:13 +0100 | [diff] [blame] | 823 | void *res = (void*)func(p); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 824 | p->mark = mark; |
| 825 | return (res != NULL) == positive; |
| 826 | } |
| 827 | |
| 828 | Token * |
| 829 | _PyPegen_expect_token(Parser *p, int type) |
| 830 | { |
| 831 | if (p->mark == p->fill) { |
| 832 | if (_PyPegen_fill_token(p) < 0) { |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 833 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 834 | return NULL; |
| 835 | } |
| 836 | } |
| 837 | Token *t = p->tokens[p->mark]; |
| 838 | if (t->type != type) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 839 | return NULL; |
| 840 | } |
| 841 | p->mark += 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 842 | return t; |
| 843 | } |
| 844 | |
Pablo Galindo | 58fb156 | 2021-02-02 19:54:22 +0000 | [diff] [blame] | 845 | Token * |
| 846 | _PyPegen_expect_forced_token(Parser *p, int type, const char* expected) { |
| 847 | |
| 848 | if (p->error_indicator == 1) { |
| 849 | return NULL; |
| 850 | } |
| 851 | |
| 852 | if (p->mark == p->fill) { |
| 853 | if (_PyPegen_fill_token(p) < 0) { |
| 854 | p->error_indicator = 1; |
| 855 | return NULL; |
| 856 | } |
| 857 | } |
| 858 | Token *t = p->tokens[p->mark]; |
| 859 | if (t->type != type) { |
| 860 | RAISE_SYNTAX_ERROR_KNOWN_LOCATION(t, "expected '%s'", expected); |
| 861 | return NULL; |
| 862 | } |
| 863 | p->mark += 1; |
| 864 | return t; |
| 865 | } |
| 866 | |
Guido van Rossum | b45af1a | 2020-05-26 10:58:44 -0700 | [diff] [blame] | 867 | expr_ty |
| 868 | _PyPegen_expect_soft_keyword(Parser *p, const char *keyword) |
| 869 | { |
| 870 | if (p->mark == p->fill) { |
| 871 | if (_PyPegen_fill_token(p) < 0) { |
| 872 | p->error_indicator = 1; |
| 873 | return NULL; |
| 874 | } |
| 875 | } |
| 876 | Token *t = p->tokens[p->mark]; |
| 877 | if (t->type != NAME) { |
| 878 | return NULL; |
| 879 | } |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 880 | char *s = PyBytes_AsString(t->bytes); |
Guido van Rossum | b45af1a | 2020-05-26 10:58:44 -0700 | [diff] [blame] | 881 | if (!s) { |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 882 | p->error_indicator = 1; |
Guido van Rossum | b45af1a | 2020-05-26 10:58:44 -0700 | [diff] [blame] | 883 | return NULL; |
| 884 | } |
| 885 | if (strcmp(s, keyword) != 0) { |
| 886 | return NULL; |
| 887 | } |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 888 | return _PyPegen_name_token(p); |
Guido van Rossum | b45af1a | 2020-05-26 10:58:44 -0700 | [diff] [blame] | 889 | } |
| 890 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 891 | Token * |
| 892 | _PyPegen_get_last_nonnwhitespace_token(Parser *p) |
| 893 | { |
| 894 | assert(p->mark >= 0); |
| 895 | Token *token = NULL; |
| 896 | for (int m = p->mark - 1; m >= 0; m--) { |
| 897 | token = p->tokens[m]; |
| 898 | if (token->type != ENDMARKER && (token->type < NEWLINE || token->type > DEDENT)) { |
| 899 | break; |
| 900 | } |
| 901 | } |
| 902 | return token; |
| 903 | } |
| 904 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 905 | expr_ty |
| 906 | _PyPegen_name_token(Parser *p) |
| 907 | { |
| 908 | Token *t = _PyPegen_expect_token(p, NAME); |
| 909 | if (t == NULL) { |
| 910 | return NULL; |
| 911 | } |
| 912 | char* s = PyBytes_AsString(t->bytes); |
| 913 | if (!s) { |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 914 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 915 | return NULL; |
| 916 | } |
| 917 | PyObject *id = _PyPegen_new_identifier(p, s); |
| 918 | if (id == NULL) { |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 919 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 920 | return NULL; |
| 921 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 922 | return _PyAST_Name(id, Load, t->lineno, t->col_offset, t->end_lineno, |
| 923 | t->end_col_offset, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 924 | } |
| 925 | |
| 926 | void * |
| 927 | _PyPegen_string_token(Parser *p) |
| 928 | { |
| 929 | return _PyPegen_expect_token(p, STRING); |
| 930 | } |
| 931 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 932 | static PyObject * |
| 933 | parsenumber_raw(const char *s) |
| 934 | { |
| 935 | const char *end; |
| 936 | long x; |
| 937 | double dx; |
| 938 | Py_complex compl; |
| 939 | int imflag; |
| 940 | |
| 941 | assert(s != NULL); |
| 942 | errno = 0; |
| 943 | end = s + strlen(s) - 1; |
| 944 | imflag = *end == 'j' || *end == 'J'; |
| 945 | if (s[0] == '0') { |
| 946 | x = (long)PyOS_strtoul(s, (char **)&end, 0); |
| 947 | if (x < 0 && errno == 0) { |
| 948 | return PyLong_FromString(s, (char **)0, 0); |
| 949 | } |
| 950 | } |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 951 | else { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 952 | x = PyOS_strtol(s, (char **)&end, 0); |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 953 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 954 | if (*end == '\0') { |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 955 | if (errno != 0) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 956 | return PyLong_FromString(s, (char **)0, 0); |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 957 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 958 | return PyLong_FromLong(x); |
| 959 | } |
| 960 | /* XXX Huge floats may silently fail */ |
| 961 | if (imflag) { |
| 962 | compl.real = 0.; |
| 963 | compl.imag = PyOS_string_to_double(s, (char **)&end, NULL); |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 964 | if (compl.imag == -1.0 && PyErr_Occurred()) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 965 | return NULL; |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 966 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 967 | return PyComplex_FromCComplex(compl); |
| 968 | } |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 969 | dx = PyOS_string_to_double(s, NULL, NULL); |
| 970 | if (dx == -1.0 && PyErr_Occurred()) { |
| 971 | return NULL; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 972 | } |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 973 | return PyFloat_FromDouble(dx); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 974 | } |
| 975 | |
| 976 | static PyObject * |
| 977 | parsenumber(const char *s) |
| 978 | { |
Pablo Galindo | fb61c42 | 2020-06-15 14:23:43 +0100 | [diff] [blame] | 979 | char *dup; |
| 980 | char *end; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 981 | PyObject *res = NULL; |
| 982 | |
| 983 | assert(s != NULL); |
| 984 | |
| 985 | if (strchr(s, '_') == NULL) { |
| 986 | return parsenumber_raw(s); |
| 987 | } |
| 988 | /* Create a duplicate without underscores. */ |
| 989 | dup = PyMem_Malloc(strlen(s) + 1); |
| 990 | if (dup == NULL) { |
| 991 | return PyErr_NoMemory(); |
| 992 | } |
| 993 | end = dup; |
| 994 | for (; *s; s++) { |
| 995 | if (*s != '_') { |
| 996 | *end++ = *s; |
| 997 | } |
| 998 | } |
| 999 | *end = '\0'; |
| 1000 | res = parsenumber_raw(dup); |
| 1001 | PyMem_Free(dup); |
| 1002 | return res; |
| 1003 | } |
| 1004 | |
| 1005 | expr_ty |
| 1006 | _PyPegen_number_token(Parser *p) |
| 1007 | { |
| 1008 | Token *t = _PyPegen_expect_token(p, NUMBER); |
| 1009 | if (t == NULL) { |
| 1010 | return NULL; |
| 1011 | } |
| 1012 | |
| 1013 | char *num_raw = PyBytes_AsString(t->bytes); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1014 | if (num_raw == NULL) { |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 1015 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1016 | return NULL; |
| 1017 | } |
| 1018 | |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1019 | if (p->feature_version < 6 && strchr(num_raw, '_') != NULL) { |
| 1020 | p->error_indicator = 1; |
Shantanu | c3f0014 | 2020-05-04 01:13:30 -0700 | [diff] [blame] | 1021 | return RAISE_SYNTAX_ERROR("Underscores in numeric literals are only supported " |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1022 | "in Python 3.6 and greater"); |
| 1023 | } |
| 1024 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1025 | PyObject *c = parsenumber(num_raw); |
| 1026 | |
| 1027 | if (c == NULL) { |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 1028 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1029 | return NULL; |
| 1030 | } |
| 1031 | |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1032 | if (_PyArena_AddPyObject(p->arena, c) < 0) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1033 | Py_DECREF(c); |
Lysandros Nikolaou | 526e23f | 2020-05-27 19:04:11 +0300 | [diff] [blame] | 1034 | p->error_indicator = 1; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1035 | return NULL; |
| 1036 | } |
| 1037 | |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1038 | return _PyAST_Constant(c, NULL, t->lineno, t->col_offset, t->end_lineno, |
| 1039 | t->end_col_offset, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1040 | } |
| 1041 | |
Lysandros Nikolaou | 6d65087 | 2020-04-29 04:42:27 +0300 | [diff] [blame] | 1042 | static int // bool |
| 1043 | newline_in_string(Parser *p, const char *cur) |
| 1044 | { |
Pablo Galindo | 2e6593d | 2020-06-06 00:52:27 +0100 | [diff] [blame] | 1045 | for (const char *c = cur; c >= p->tok->buf; c--) { |
| 1046 | if (*c == '\'' || *c == '"') { |
Lysandros Nikolaou | 6d65087 | 2020-04-29 04:42:27 +0300 | [diff] [blame] | 1047 | return 1; |
| 1048 | } |
| 1049 | } |
| 1050 | return 0; |
| 1051 | } |
| 1052 | |
| 1053 | /* Check that the source for a single input statement really is a single |
| 1054 | statement by looking at what is left in the buffer after parsing. |
| 1055 | Trailing whitespace and comments are OK. */ |
| 1056 | static int // bool |
| 1057 | bad_single_statement(Parser *p) |
| 1058 | { |
| 1059 | const char *cur = strchr(p->tok->buf, '\n'); |
| 1060 | |
| 1061 | /* Newlines are allowed if preceded by a line continuation character |
| 1062 | or if they appear inside a string. */ |
Pablo Galindo | e68c678 | 2020-10-25 23:03:41 +0000 | [diff] [blame] | 1063 | if (!cur || (cur != p->tok->buf && *(cur - 1) == '\\') |
| 1064 | || newline_in_string(p, cur)) { |
Lysandros Nikolaou | 6d65087 | 2020-04-29 04:42:27 +0300 | [diff] [blame] | 1065 | return 0; |
| 1066 | } |
| 1067 | char c = *cur; |
| 1068 | |
| 1069 | for (;;) { |
| 1070 | while (c == ' ' || c == '\t' || c == '\n' || c == '\014') { |
| 1071 | c = *++cur; |
| 1072 | } |
| 1073 | |
| 1074 | if (!c) { |
| 1075 | return 0; |
| 1076 | } |
| 1077 | |
| 1078 | if (c != '#') { |
| 1079 | return 1; |
| 1080 | } |
| 1081 | |
| 1082 | /* Suck up comment. */ |
| 1083 | while (c && c != '\n') { |
| 1084 | c = *++cur; |
| 1085 | } |
| 1086 | } |
| 1087 | } |
| 1088 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1089 | void |
| 1090 | _PyPegen_Parser_Free(Parser *p) |
| 1091 | { |
| 1092 | Py_XDECREF(p->normalize); |
| 1093 | for (int i = 0; i < p->size; i++) { |
| 1094 | PyMem_Free(p->tokens[i]); |
| 1095 | } |
| 1096 | PyMem_Free(p->tokens); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1097 | growable_comment_array_deallocate(&p->type_ignore_comments); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1098 | PyMem_Free(p); |
| 1099 | } |
| 1100 | |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1101 | static int |
| 1102 | compute_parser_flags(PyCompilerFlags *flags) |
| 1103 | { |
| 1104 | int parser_flags = 0; |
| 1105 | if (!flags) { |
| 1106 | return 0; |
| 1107 | } |
| 1108 | if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) { |
| 1109 | parser_flags |= PyPARSE_DONT_IMPLY_DEDENT; |
| 1110 | } |
| 1111 | if (flags->cf_flags & PyCF_IGNORE_COOKIE) { |
| 1112 | parser_flags |= PyPARSE_IGNORE_COOKIE; |
| 1113 | } |
| 1114 | if (flags->cf_flags & CO_FUTURE_BARRY_AS_BDFL) { |
| 1115 | parser_flags |= PyPARSE_BARRY_AS_BDFL; |
| 1116 | } |
| 1117 | if (flags->cf_flags & PyCF_TYPE_COMMENTS) { |
| 1118 | parser_flags |= PyPARSE_TYPE_COMMENTS; |
| 1119 | } |
Guido van Rossum | 9d197c7 | 2020-06-27 17:33:49 -0700 | [diff] [blame] | 1120 | if ((flags->cf_flags & PyCF_ONLY_AST) && flags->cf_feature_version < 7) { |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1121 | parser_flags |= PyPARSE_ASYNC_HACKS; |
| 1122 | } |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1123 | return parser_flags; |
| 1124 | } |
| 1125 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1126 | Parser * |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1127 | _PyPegen_Parser_New(struct tok_state *tok, int start_rule, int flags, |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1128 | int feature_version, int *errcode, PyArena *arena) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1129 | { |
| 1130 | Parser *p = PyMem_Malloc(sizeof(Parser)); |
| 1131 | if (p == NULL) { |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 1132 | return (Parser *) PyErr_NoMemory(); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1133 | } |
| 1134 | assert(tok != NULL); |
Guido van Rossum | d9d6ead | 2020-05-01 09:42:32 -0700 | [diff] [blame] | 1135 | tok->type_comments = (flags & PyPARSE_TYPE_COMMENTS) > 0; |
| 1136 | tok->async_hacks = (flags & PyPARSE_ASYNC_HACKS) > 0; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1137 | p->tok = tok; |
| 1138 | p->keywords = NULL; |
| 1139 | p->n_keyword_lists = -1; |
| 1140 | p->tokens = PyMem_Malloc(sizeof(Token *)); |
| 1141 | if (!p->tokens) { |
| 1142 | PyMem_Free(p); |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 1143 | return (Parser *) PyErr_NoMemory(); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1144 | } |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1145 | p->tokens[0] = PyMem_Calloc(1, sizeof(Token)); |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 1146 | if (!p->tokens) { |
| 1147 | PyMem_Free(p->tokens); |
| 1148 | PyMem_Free(p); |
| 1149 | return (Parser *) PyErr_NoMemory(); |
| 1150 | } |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1151 | if (!growable_comment_array_init(&p->type_ignore_comments, 10)) { |
| 1152 | PyMem_Free(p->tokens[0]); |
| 1153 | PyMem_Free(p->tokens); |
| 1154 | PyMem_Free(p); |
| 1155 | return (Parser *) PyErr_NoMemory(); |
| 1156 | } |
| 1157 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1158 | p->mark = 0; |
| 1159 | p->fill = 0; |
| 1160 | p->size = 1; |
| 1161 | |
| 1162 | p->errcode = errcode; |
| 1163 | p->arena = arena; |
| 1164 | p->start_rule = start_rule; |
| 1165 | p->parsing_started = 0; |
| 1166 | p->normalize = NULL; |
| 1167 | p->error_indicator = 0; |
| 1168 | |
| 1169 | p->starting_lineno = 0; |
| 1170 | p->starting_col_offset = 0; |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1171 | p->flags = flags; |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1172 | p->feature_version = feature_version; |
Lysandros Nikolaou | 2f37c35 | 2020-05-07 13:37:51 +0300 | [diff] [blame] | 1173 | p->known_err_token = NULL; |
Pablo Galindo | 800a35c6 | 2020-05-25 18:38:45 +0100 | [diff] [blame] | 1174 | p->level = 0; |
Lysandros Nikolaou | bca7014 | 2020-10-27 00:42:04 +0200 | [diff] [blame] | 1175 | p->call_invalid_rules = 0; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1176 | |
| 1177 | return p; |
| 1178 | } |
| 1179 | |
Lysandros Nikolaou | bca7014 | 2020-10-27 00:42:04 +0200 | [diff] [blame] | 1180 | static void |
| 1181 | reset_parser_state(Parser *p) |
| 1182 | { |
| 1183 | for (int i = 0; i < p->fill; i++) { |
| 1184 | p->tokens[i]->memo = NULL; |
| 1185 | } |
| 1186 | p->mark = 0; |
| 1187 | p->call_invalid_rules = 1; |
| 1188 | } |
| 1189 | |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 1190 | static int |
| 1191 | _PyPegen_check_tokenizer_errors(Parser *p) { |
| 1192 | // Tokenize the whole input to see if there are any tokenization |
| 1193 | // errors such as mistmatching parentheses. These will get priority |
| 1194 | // over generic syntax errors only if the line number of the error is |
| 1195 | // before the one that we had for the generic error. |
| 1196 | |
| 1197 | // We don't want to tokenize to the end for interactive input |
| 1198 | if (p->tok->prompt != NULL) { |
| 1199 | return 0; |
| 1200 | } |
| 1201 | |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 1202 | Token *current_token = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1]; |
| 1203 | Py_ssize_t current_err_line = current_token->lineno; |
| 1204 | |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 1205 | for (;;) { |
| 1206 | const char *start; |
| 1207 | const char *end; |
| 1208 | switch (PyTokenizer_Get(p->tok, &start, &end)) { |
| 1209 | case ERRORTOKEN: |
| 1210 | if (p->tok->level != 0) { |
| 1211 | int error_lineno = p->tok->parenlinenostack[p->tok->level-1]; |
| 1212 | if (current_err_line > error_lineno) { |
| 1213 | raise_unclosed_parentheses_error(p); |
| 1214 | return -1; |
| 1215 | } |
| 1216 | } |
| 1217 | break; |
| 1218 | case ENDMARKER: |
| 1219 | break; |
| 1220 | default: |
| 1221 | continue; |
| 1222 | } |
| 1223 | break; |
| 1224 | } |
| 1225 | |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 1226 | return 0; |
| 1227 | } |
| 1228 | |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1229 | void * |
| 1230 | _PyPegen_run_parser(Parser *p) |
| 1231 | { |
| 1232 | void *res = _PyPegen_parse(p); |
| 1233 | if (res == NULL) { |
Lysandros Nikolaou | bca7014 | 2020-10-27 00:42:04 +0200 | [diff] [blame] | 1234 | reset_parser_state(p); |
| 1235 | _PyPegen_parse(p); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1236 | if (PyErr_Occurred()) { |
| 1237 | return NULL; |
| 1238 | } |
| 1239 | if (p->fill == 0) { |
| 1240 | RAISE_SYNTAX_ERROR("error at start before reading any input"); |
| 1241 | } |
Pablo Galindo | cd8dcbc | 2021-03-14 04:38:40 +0100 | [diff] [blame] | 1242 | else if (p->tok->done == E_EOF) { |
Pablo Galindo | d6d6371 | 2021-01-19 23:59:33 +0000 | [diff] [blame] | 1243 | if (p->tok->level) { |
| 1244 | raise_unclosed_parentheses_error(p); |
| 1245 | } else { |
| 1246 | RAISE_SYNTAX_ERROR("unexpected EOF while parsing"); |
| 1247 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1248 | } |
| 1249 | else { |
| 1250 | if (p->tokens[p->fill-1]->type == INDENT) { |
| 1251 | RAISE_INDENTATION_ERROR("unexpected indent"); |
| 1252 | } |
| 1253 | else if (p->tokens[p->fill-1]->type == DEDENT) { |
| 1254 | RAISE_INDENTATION_ERROR("unexpected unindent"); |
| 1255 | } |
| 1256 | else { |
| 1257 | RAISE_SYNTAX_ERROR("invalid syntax"); |
Pablo Galindo | c3f167d | 2021-01-20 19:11:56 +0000 | [diff] [blame] | 1258 | // _PyPegen_check_tokenizer_errors will override the existing |
| 1259 | // generic SyntaxError we just raised if errors are found. |
| 1260 | _PyPegen_check_tokenizer_errors(p); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1261 | } |
| 1262 | } |
| 1263 | return NULL; |
| 1264 | } |
| 1265 | |
Lysandros Nikolaou | 6d65087 | 2020-04-29 04:42:27 +0300 | [diff] [blame] | 1266 | if (p->start_rule == Py_single_input && bad_single_statement(p)) { |
| 1267 | p->tok->done = E_BADSINGLE; // This is not necessary for now, but might be in the future |
| 1268 | return RAISE_SYNTAX_ERROR("multiple statements found while compiling a single statement"); |
| 1269 | } |
| 1270 | |
Victor Stinner | e0bf70d | 2021-03-18 02:46:06 +0100 | [diff] [blame] | 1271 | // test_peg_generator defines _Py_TEST_PEGEN to not call PyAST_Validate() |
| 1272 | #if defined(Py_DEBUG) && !defined(_Py_TEST_PEGEN) |
Pablo Galindo | 1332226 | 2020-07-27 23:46:59 +0100 | [diff] [blame] | 1273 | if (p->start_rule == Py_single_input || |
| 1274 | p->start_rule == Py_file_input || |
| 1275 | p->start_rule == Py_eval_input) |
| 1276 | { |
Victor Stinner | eec8e61 | 2021-03-18 14:57:49 +0100 | [diff] [blame] | 1277 | if (!_PyAST_Validate(res)) { |
Batuhan Taskaya | 3af4b58 | 2020-10-30 14:48:41 +0300 | [diff] [blame] | 1278 | return NULL; |
| 1279 | } |
Pablo Galindo | 1332226 | 2020-07-27 23:46:59 +0100 | [diff] [blame] | 1280 | } |
| 1281 | #endif |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1282 | return res; |
| 1283 | } |
| 1284 | |
| 1285 | mod_ty |
| 1286 | _PyPegen_run_parser_from_file_pointer(FILE *fp, int start_rule, PyObject *filename_ob, |
| 1287 | const char *enc, const char *ps1, const char *ps2, |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1288 | PyCompilerFlags *flags, int *errcode, PyArena *arena) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1289 | { |
| 1290 | struct tok_state *tok = PyTokenizer_FromFile(fp, enc, ps1, ps2); |
| 1291 | if (tok == NULL) { |
| 1292 | if (PyErr_Occurred()) { |
| 1293 | raise_tokenizer_init_error(filename_ob); |
| 1294 | return NULL; |
| 1295 | } |
| 1296 | return NULL; |
| 1297 | } |
Pablo Galindo | cd8dcbc | 2021-03-14 04:38:40 +0100 | [diff] [blame] | 1298 | if (!tok->fp || ps1 != NULL || ps2 != NULL || |
| 1299 | PyUnicode_CompareWithASCIIString(filename_ob, "<stdin>") == 0) { |
| 1300 | tok->fp_interactive = 1; |
| 1301 | } |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1302 | // This transfers the ownership to the tokenizer |
| 1303 | tok->filename = filename_ob; |
| 1304 | Py_INCREF(filename_ob); |
| 1305 | |
| 1306 | // From here on we need to clean up even if there's an error |
| 1307 | mod_ty result = NULL; |
| 1308 | |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1309 | int parser_flags = compute_parser_flags(flags); |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1310 | Parser *p = _PyPegen_Parser_New(tok, start_rule, parser_flags, PY_MINOR_VERSION, |
| 1311 | errcode, arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1312 | if (p == NULL) { |
| 1313 | goto error; |
| 1314 | } |
| 1315 | |
| 1316 | result = _PyPegen_run_parser(p); |
| 1317 | _PyPegen_Parser_Free(p); |
| 1318 | |
| 1319 | error: |
| 1320 | PyTokenizer_Free(tok); |
| 1321 | return result; |
| 1322 | } |
| 1323 | |
| 1324 | mod_ty |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1325 | _PyPegen_run_parser_from_string(const char *str, int start_rule, PyObject *filename_ob, |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1326 | PyCompilerFlags *flags, PyArena *arena) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1327 | { |
| 1328 | int exec_input = start_rule == Py_file_input; |
| 1329 | |
| 1330 | struct tok_state *tok; |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1331 | if (flags == NULL || flags->cf_flags & PyCF_IGNORE_COOKIE) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1332 | tok = PyTokenizer_FromUTF8(str, exec_input); |
| 1333 | } else { |
| 1334 | tok = PyTokenizer_FromString(str, exec_input); |
| 1335 | } |
| 1336 | if (tok == NULL) { |
| 1337 | if (PyErr_Occurred()) { |
| 1338 | raise_tokenizer_init_error(filename_ob); |
| 1339 | } |
| 1340 | return NULL; |
| 1341 | } |
| 1342 | // This transfers the ownership to the tokenizer |
| 1343 | tok->filename = filename_ob; |
| 1344 | Py_INCREF(filename_ob); |
| 1345 | |
| 1346 | // We need to clear up from here on |
| 1347 | mod_ty result = NULL; |
| 1348 | |
Pablo Galindo | 2b74c83 | 2020-04-27 18:02:07 +0100 | [diff] [blame] | 1349 | int parser_flags = compute_parser_flags(flags); |
Guido van Rossum | 9d197c7 | 2020-06-27 17:33:49 -0700 | [diff] [blame] | 1350 | int feature_version = flags && (flags->cf_flags & PyCF_ONLY_AST) ? |
| 1351 | flags->cf_feature_version : PY_MINOR_VERSION; |
Lysandros Nikolaou | 3e0a6f3 | 2020-05-01 06:27:52 +0300 | [diff] [blame] | 1352 | Parser *p = _PyPegen_Parser_New(tok, start_rule, parser_flags, feature_version, |
| 1353 | NULL, arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1354 | if (p == NULL) { |
| 1355 | goto error; |
| 1356 | } |
| 1357 | |
| 1358 | result = _PyPegen_run_parser(p); |
| 1359 | _PyPegen_Parser_Free(p); |
| 1360 | |
| 1361 | error: |
| 1362 | PyTokenizer_Free(tok); |
| 1363 | return result; |
| 1364 | } |
| 1365 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1366 | asdl_stmt_seq* |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1367 | _PyPegen_interactive_exit(Parser *p) |
| 1368 | { |
| 1369 | if (p->errcode) { |
| 1370 | *(p->errcode) = E_EOF; |
| 1371 | } |
| 1372 | return NULL; |
| 1373 | } |
| 1374 | |
| 1375 | /* Creates a single-element asdl_seq* that contains a */ |
| 1376 | asdl_seq * |
| 1377 | _PyPegen_singleton_seq(Parser *p, void *a) |
| 1378 | { |
| 1379 | assert(a != NULL); |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1380 | asdl_seq *seq = (asdl_seq*)_Py_asdl_generic_seq_new(1, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1381 | if (!seq) { |
| 1382 | return NULL; |
| 1383 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1384 | asdl_seq_SET_UNTYPED(seq, 0, a); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1385 | return seq; |
| 1386 | } |
| 1387 | |
| 1388 | /* Creates a copy of seq and prepends a to it */ |
| 1389 | asdl_seq * |
| 1390 | _PyPegen_seq_insert_in_front(Parser *p, void *a, asdl_seq *seq) |
| 1391 | { |
| 1392 | assert(a != NULL); |
| 1393 | if (!seq) { |
| 1394 | return _PyPegen_singleton_seq(p, a); |
| 1395 | } |
| 1396 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1397 | asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1398 | if (!new_seq) { |
| 1399 | return NULL; |
| 1400 | } |
| 1401 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1402 | asdl_seq_SET_UNTYPED(new_seq, 0, a); |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1403 | for (Py_ssize_t i = 1, l = asdl_seq_LEN(new_seq); i < l; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1404 | asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i - 1)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1405 | } |
| 1406 | return new_seq; |
| 1407 | } |
| 1408 | |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1409 | /* Creates a copy of seq and appends a to it */ |
| 1410 | asdl_seq * |
| 1411 | _PyPegen_seq_append_to_end(Parser *p, asdl_seq *seq, void *a) |
| 1412 | { |
| 1413 | assert(a != NULL); |
| 1414 | if (!seq) { |
| 1415 | return _PyPegen_singleton_seq(p, a); |
| 1416 | } |
| 1417 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1418 | asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(asdl_seq_LEN(seq) + 1, p->arena); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1419 | if (!new_seq) { |
| 1420 | return NULL; |
| 1421 | } |
| 1422 | |
| 1423 | for (Py_ssize_t i = 0, l = asdl_seq_LEN(new_seq); i + 1 < l; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1424 | asdl_seq_SET_UNTYPED(new_seq, i, asdl_seq_GET_UNTYPED(seq, i)); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1425 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1426 | asdl_seq_SET_UNTYPED(new_seq, asdl_seq_LEN(new_seq) - 1, a); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1427 | return new_seq; |
| 1428 | } |
| 1429 | |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1430 | static Py_ssize_t |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1431 | _get_flattened_seq_size(asdl_seq *seqs) |
| 1432 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1433 | Py_ssize_t size = 0; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1434 | for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1435 | asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1436 | size += asdl_seq_LEN(inner_seq); |
| 1437 | } |
| 1438 | return size; |
| 1439 | } |
| 1440 | |
| 1441 | /* Flattens an asdl_seq* of asdl_seq*s */ |
| 1442 | asdl_seq * |
| 1443 | _PyPegen_seq_flatten(Parser *p, asdl_seq *seqs) |
| 1444 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1445 | Py_ssize_t flattened_seq_size = _get_flattened_seq_size(seqs); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1446 | assert(flattened_seq_size > 0); |
| 1447 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1448 | asdl_seq *flattened_seq = (asdl_seq*)_Py_asdl_generic_seq_new(flattened_seq_size, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1449 | if (!flattened_seq) { |
| 1450 | return NULL; |
| 1451 | } |
| 1452 | |
| 1453 | int flattened_seq_idx = 0; |
| 1454 | for (Py_ssize_t i = 0, l = asdl_seq_LEN(seqs); i < l; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1455 | asdl_seq *inner_seq = asdl_seq_GET_UNTYPED(seqs, i); |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1456 | for (Py_ssize_t j = 0, li = asdl_seq_LEN(inner_seq); j < li; j++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1457 | asdl_seq_SET_UNTYPED(flattened_seq, flattened_seq_idx++, asdl_seq_GET_UNTYPED(inner_seq, j)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1458 | } |
| 1459 | } |
| 1460 | assert(flattened_seq_idx == flattened_seq_size); |
| 1461 | |
| 1462 | return flattened_seq; |
| 1463 | } |
| 1464 | |
| 1465 | /* Creates a new name of the form <first_name>.<second_name> */ |
| 1466 | expr_ty |
| 1467 | _PyPegen_join_names_with_dot(Parser *p, expr_ty first_name, expr_ty second_name) |
| 1468 | { |
| 1469 | assert(first_name != NULL && second_name != NULL); |
| 1470 | PyObject *first_identifier = first_name->v.Name.id; |
| 1471 | PyObject *second_identifier = second_name->v.Name.id; |
| 1472 | |
| 1473 | if (PyUnicode_READY(first_identifier) == -1) { |
| 1474 | return NULL; |
| 1475 | } |
| 1476 | if (PyUnicode_READY(second_identifier) == -1) { |
| 1477 | return NULL; |
| 1478 | } |
| 1479 | const char *first_str = PyUnicode_AsUTF8(first_identifier); |
| 1480 | if (!first_str) { |
| 1481 | return NULL; |
| 1482 | } |
| 1483 | const char *second_str = PyUnicode_AsUTF8(second_identifier); |
| 1484 | if (!second_str) { |
| 1485 | return NULL; |
| 1486 | } |
Pablo Galindo | 9f27dd3 | 2020-04-24 01:13:33 +0100 | [diff] [blame] | 1487 | Py_ssize_t len = strlen(first_str) + strlen(second_str) + 1; // +1 for the dot |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1488 | |
| 1489 | PyObject *str = PyBytes_FromStringAndSize(NULL, len); |
| 1490 | if (!str) { |
| 1491 | return NULL; |
| 1492 | } |
| 1493 | |
| 1494 | char *s = PyBytes_AS_STRING(str); |
| 1495 | if (!s) { |
| 1496 | return NULL; |
| 1497 | } |
| 1498 | |
| 1499 | strcpy(s, first_str); |
| 1500 | s += strlen(first_str); |
| 1501 | *s++ = '.'; |
| 1502 | strcpy(s, second_str); |
| 1503 | s += strlen(second_str); |
| 1504 | *s = '\0'; |
| 1505 | |
| 1506 | PyObject *uni = PyUnicode_DecodeUTF8(PyBytes_AS_STRING(str), PyBytes_GET_SIZE(str), NULL); |
| 1507 | Py_DECREF(str); |
| 1508 | if (!uni) { |
| 1509 | return NULL; |
| 1510 | } |
| 1511 | PyUnicode_InternInPlace(&uni); |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1512 | if (_PyArena_AddPyObject(p->arena, uni) < 0) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1513 | Py_DECREF(uni); |
| 1514 | return NULL; |
| 1515 | } |
| 1516 | |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1517 | return _PyAST_Name(uni, Load, EXTRA_EXPR(first_name, second_name)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1518 | } |
| 1519 | |
| 1520 | /* Counts the total number of dots in seq's tokens */ |
| 1521 | int |
| 1522 | _PyPegen_seq_count_dots(asdl_seq *seq) |
| 1523 | { |
| 1524 | int number_of_dots = 0; |
| 1525 | for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1526 | Token *current_expr = asdl_seq_GET_UNTYPED(seq, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1527 | switch (current_expr->type) { |
| 1528 | case ELLIPSIS: |
| 1529 | number_of_dots += 3; |
| 1530 | break; |
| 1531 | case DOT: |
| 1532 | number_of_dots += 1; |
| 1533 | break; |
| 1534 | default: |
Lysandros Nikolaou | ebebb64 | 2020-04-23 18:36:06 +0300 | [diff] [blame] | 1535 | Py_UNREACHABLE(); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1536 | } |
| 1537 | } |
| 1538 | |
| 1539 | return number_of_dots; |
| 1540 | } |
| 1541 | |
| 1542 | /* Creates an alias with '*' as the identifier name */ |
| 1543 | alias_ty |
| 1544 | _PyPegen_alias_for_star(Parser *p) |
| 1545 | { |
| 1546 | PyObject *str = PyUnicode_InternFromString("*"); |
| 1547 | if (!str) { |
| 1548 | return NULL; |
| 1549 | } |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1550 | if (_PyArena_AddPyObject(p->arena, str) < 0) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1551 | Py_DECREF(str); |
| 1552 | return NULL; |
| 1553 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1554 | return _PyAST_alias(str, NULL, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1555 | } |
| 1556 | |
| 1557 | /* Creates a new asdl_seq* with the identifiers of all the names in seq */ |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1558 | asdl_identifier_seq * |
| 1559 | _PyPegen_map_names_to_ids(Parser *p, asdl_expr_seq *seq) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1560 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1561 | Py_ssize_t len = asdl_seq_LEN(seq); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1562 | assert(len > 0); |
| 1563 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1564 | asdl_identifier_seq *new_seq = _Py_asdl_identifier_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1565 | if (!new_seq) { |
| 1566 | return NULL; |
| 1567 | } |
| 1568 | for (Py_ssize_t i = 0; i < len; i++) { |
| 1569 | expr_ty e = asdl_seq_GET(seq, i); |
| 1570 | asdl_seq_SET(new_seq, i, e->v.Name.id); |
| 1571 | } |
| 1572 | return new_seq; |
| 1573 | } |
| 1574 | |
| 1575 | /* Constructs a CmpopExprPair */ |
| 1576 | CmpopExprPair * |
| 1577 | _PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr) |
| 1578 | { |
| 1579 | assert(expr != NULL); |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1580 | CmpopExprPair *a = _PyArena_Malloc(p->arena, sizeof(CmpopExprPair)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1581 | if (!a) { |
| 1582 | return NULL; |
| 1583 | } |
| 1584 | a->cmpop = cmpop; |
| 1585 | a->expr = expr; |
| 1586 | return a; |
| 1587 | } |
| 1588 | |
| 1589 | asdl_int_seq * |
| 1590 | _PyPegen_get_cmpops(Parser *p, asdl_seq *seq) |
| 1591 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1592 | Py_ssize_t len = asdl_seq_LEN(seq); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1593 | assert(len > 0); |
| 1594 | |
| 1595 | asdl_int_seq *new_seq = _Py_asdl_int_seq_new(len, p->arena); |
| 1596 | if (!new_seq) { |
| 1597 | return NULL; |
| 1598 | } |
| 1599 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1600 | CmpopExprPair *pair = asdl_seq_GET_UNTYPED(seq, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1601 | asdl_seq_SET(new_seq, i, pair->cmpop); |
| 1602 | } |
| 1603 | return new_seq; |
| 1604 | } |
| 1605 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1606 | asdl_expr_seq * |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1607 | _PyPegen_get_exprs(Parser *p, asdl_seq *seq) |
| 1608 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1609 | Py_ssize_t len = asdl_seq_LEN(seq); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1610 | assert(len > 0); |
| 1611 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1612 | asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1613 | if (!new_seq) { |
| 1614 | return NULL; |
| 1615 | } |
| 1616 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1617 | CmpopExprPair *pair = asdl_seq_GET_UNTYPED(seq, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1618 | asdl_seq_SET(new_seq, i, pair->expr); |
| 1619 | } |
| 1620 | return new_seq; |
| 1621 | } |
| 1622 | |
| 1623 | /* Creates an asdl_seq* where all the elements have been changed to have ctx as context */ |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1624 | static asdl_expr_seq * |
| 1625 | _set_seq_context(Parser *p, asdl_expr_seq *seq, expr_context_ty ctx) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1626 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1627 | Py_ssize_t len = asdl_seq_LEN(seq); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1628 | if (len == 0) { |
| 1629 | return NULL; |
| 1630 | } |
| 1631 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1632 | asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1633 | if (!new_seq) { |
| 1634 | return NULL; |
| 1635 | } |
| 1636 | for (Py_ssize_t i = 0; i < len; i++) { |
| 1637 | expr_ty e = asdl_seq_GET(seq, i); |
| 1638 | asdl_seq_SET(new_seq, i, _PyPegen_set_expr_context(p, e, ctx)); |
| 1639 | } |
| 1640 | return new_seq; |
| 1641 | } |
| 1642 | |
| 1643 | static expr_ty |
| 1644 | _set_name_context(Parser *p, expr_ty e, expr_context_ty ctx) |
| 1645 | { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1646 | return _PyAST_Name(e->v.Name.id, ctx, EXTRA_EXPR(e, e)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | static expr_ty |
| 1650 | _set_tuple_context(Parser *p, expr_ty e, expr_context_ty ctx) |
| 1651 | { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1652 | return _PyAST_Tuple( |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1653 | _set_seq_context(p, e->v.Tuple.elts, ctx), |
| 1654 | ctx, |
| 1655 | EXTRA_EXPR(e, e)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1656 | } |
| 1657 | |
| 1658 | static expr_ty |
| 1659 | _set_list_context(Parser *p, expr_ty e, expr_context_ty ctx) |
| 1660 | { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1661 | return _PyAST_List( |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1662 | _set_seq_context(p, e->v.List.elts, ctx), |
| 1663 | ctx, |
| 1664 | EXTRA_EXPR(e, e)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1665 | } |
| 1666 | |
| 1667 | static expr_ty |
| 1668 | _set_subscript_context(Parser *p, expr_ty e, expr_context_ty ctx) |
| 1669 | { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1670 | return _PyAST_Subscript(e->v.Subscript.value, e->v.Subscript.slice, |
| 1671 | ctx, EXTRA_EXPR(e, e)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1672 | } |
| 1673 | |
| 1674 | static expr_ty |
| 1675 | _set_attribute_context(Parser *p, expr_ty e, expr_context_ty ctx) |
| 1676 | { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1677 | return _PyAST_Attribute(e->v.Attribute.value, e->v.Attribute.attr, |
| 1678 | ctx, EXTRA_EXPR(e, e)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1679 | } |
| 1680 | |
| 1681 | static expr_ty |
| 1682 | _set_starred_context(Parser *p, expr_ty e, expr_context_ty ctx) |
| 1683 | { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1684 | return _PyAST_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx), |
| 1685 | ctx, EXTRA_EXPR(e, e)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1686 | } |
| 1687 | |
| 1688 | /* Creates an `expr_ty` equivalent to `expr` but with `ctx` as context */ |
| 1689 | expr_ty |
| 1690 | _PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx) |
| 1691 | { |
| 1692 | assert(expr != NULL); |
| 1693 | |
| 1694 | expr_ty new = NULL; |
| 1695 | switch (expr->kind) { |
| 1696 | case Name_kind: |
| 1697 | new = _set_name_context(p, expr, ctx); |
| 1698 | break; |
| 1699 | case Tuple_kind: |
| 1700 | new = _set_tuple_context(p, expr, ctx); |
| 1701 | break; |
| 1702 | case List_kind: |
| 1703 | new = _set_list_context(p, expr, ctx); |
| 1704 | break; |
| 1705 | case Subscript_kind: |
| 1706 | new = _set_subscript_context(p, expr, ctx); |
| 1707 | break; |
| 1708 | case Attribute_kind: |
| 1709 | new = _set_attribute_context(p, expr, ctx); |
| 1710 | break; |
| 1711 | case Starred_kind: |
| 1712 | new = _set_starred_context(p, expr, ctx); |
| 1713 | break; |
| 1714 | default: |
| 1715 | new = expr; |
| 1716 | } |
| 1717 | return new; |
| 1718 | } |
| 1719 | |
| 1720 | /* Constructs a KeyValuePair that is used when parsing a dict's key value pairs */ |
| 1721 | KeyValuePair * |
| 1722 | _PyPegen_key_value_pair(Parser *p, expr_ty key, expr_ty value) |
| 1723 | { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1724 | KeyValuePair *a = _PyArena_Malloc(p->arena, sizeof(KeyValuePair)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1725 | if (!a) { |
| 1726 | return NULL; |
| 1727 | } |
| 1728 | a->key = key; |
| 1729 | a->value = value; |
| 1730 | return a; |
| 1731 | } |
| 1732 | |
| 1733 | /* Extracts all keys from an asdl_seq* of KeyValuePair*'s */ |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1734 | asdl_expr_seq * |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1735 | _PyPegen_get_keys(Parser *p, asdl_seq *seq) |
| 1736 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1737 | Py_ssize_t len = asdl_seq_LEN(seq); |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1738 | asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1739 | if (!new_seq) { |
| 1740 | return NULL; |
| 1741 | } |
| 1742 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1743 | KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1744 | asdl_seq_SET(new_seq, i, pair->key); |
| 1745 | } |
| 1746 | return new_seq; |
| 1747 | } |
| 1748 | |
| 1749 | /* Extracts all values from an asdl_seq* of KeyValuePair*'s */ |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1750 | asdl_expr_seq * |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1751 | _PyPegen_get_values(Parser *p, asdl_seq *seq) |
| 1752 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1753 | Py_ssize_t len = asdl_seq_LEN(seq); |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1754 | asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1755 | if (!new_seq) { |
| 1756 | return NULL; |
| 1757 | } |
| 1758 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1759 | KeyValuePair *pair = asdl_seq_GET_UNTYPED(seq, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1760 | asdl_seq_SET(new_seq, i, pair->value); |
| 1761 | } |
| 1762 | return new_seq; |
| 1763 | } |
| 1764 | |
| 1765 | /* Constructs a NameDefaultPair */ |
| 1766 | NameDefaultPair * |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1767 | _PyPegen_name_default_pair(Parser *p, arg_ty arg, expr_ty value, Token *tc) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1768 | { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1769 | NameDefaultPair *a = _PyArena_Malloc(p->arena, sizeof(NameDefaultPair)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1770 | if (!a) { |
| 1771 | return NULL; |
| 1772 | } |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 1773 | a->arg = _PyPegen_add_type_comment_to_arg(p, arg, tc); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1774 | a->value = value; |
| 1775 | return a; |
| 1776 | } |
| 1777 | |
| 1778 | /* Constructs a SlashWithDefault */ |
| 1779 | SlashWithDefault * |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1780 | _PyPegen_slash_with_default(Parser *p, asdl_arg_seq *plain_names, asdl_seq *names_with_defaults) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1781 | { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1782 | SlashWithDefault *a = _PyArena_Malloc(p->arena, sizeof(SlashWithDefault)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1783 | if (!a) { |
| 1784 | return NULL; |
| 1785 | } |
| 1786 | a->plain_names = plain_names; |
| 1787 | a->names_with_defaults = names_with_defaults; |
| 1788 | return a; |
| 1789 | } |
| 1790 | |
| 1791 | /* Constructs a StarEtc */ |
| 1792 | StarEtc * |
| 1793 | _PyPegen_star_etc(Parser *p, arg_ty vararg, asdl_seq *kwonlyargs, arg_ty kwarg) |
| 1794 | { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 1795 | StarEtc *a = _PyArena_Malloc(p->arena, sizeof(StarEtc)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1796 | if (!a) { |
| 1797 | return NULL; |
| 1798 | } |
| 1799 | a->vararg = vararg; |
| 1800 | a->kwonlyargs = kwonlyargs; |
| 1801 | a->kwarg = kwarg; |
| 1802 | return a; |
| 1803 | } |
| 1804 | |
| 1805 | asdl_seq * |
| 1806 | _PyPegen_join_sequences(Parser *p, asdl_seq *a, asdl_seq *b) |
| 1807 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1808 | Py_ssize_t first_len = asdl_seq_LEN(a); |
| 1809 | Py_ssize_t second_len = asdl_seq_LEN(b); |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1810 | asdl_seq *new_seq = (asdl_seq*)_Py_asdl_generic_seq_new(first_len + second_len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1811 | if (!new_seq) { |
| 1812 | return NULL; |
| 1813 | } |
| 1814 | |
| 1815 | int k = 0; |
| 1816 | for (Py_ssize_t i = 0; i < first_len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1817 | asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(a, i)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1818 | } |
| 1819 | for (Py_ssize_t i = 0; i < second_len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1820 | asdl_seq_SET_UNTYPED(new_seq, k++, asdl_seq_GET_UNTYPED(b, i)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | return new_seq; |
| 1824 | } |
| 1825 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1826 | static asdl_arg_seq* |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1827 | _get_names(Parser *p, asdl_seq *names_with_defaults) |
| 1828 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1829 | Py_ssize_t len = asdl_seq_LEN(names_with_defaults); |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1830 | asdl_arg_seq *seq = _Py_asdl_arg_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1831 | if (!seq) { |
| 1832 | return NULL; |
| 1833 | } |
| 1834 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1835 | NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1836 | asdl_seq_SET(seq, i, pair->arg); |
| 1837 | } |
| 1838 | return seq; |
| 1839 | } |
| 1840 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1841 | static asdl_expr_seq * |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1842 | _get_defaults(Parser *p, asdl_seq *names_with_defaults) |
| 1843 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 1844 | Py_ssize_t len = asdl_seq_LEN(names_with_defaults); |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1845 | asdl_expr_seq *seq = _Py_asdl_expr_seq_new(len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1846 | if (!seq) { |
| 1847 | return NULL; |
| 1848 | } |
| 1849 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1850 | NameDefaultPair *pair = asdl_seq_GET_UNTYPED(names_with_defaults, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1851 | asdl_seq_SET(seq, i, pair->value); |
| 1852 | } |
| 1853 | return seq; |
| 1854 | } |
| 1855 | |
| 1856 | /* Constructs an arguments_ty object out of all the parsed constructs in the parameters rule */ |
| 1857 | arguments_ty |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1858 | _PyPegen_make_arguments(Parser *p, asdl_arg_seq *slash_without_default, |
| 1859 | SlashWithDefault *slash_with_default, asdl_arg_seq *plain_names, |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1860 | asdl_seq *names_with_default, StarEtc *star_etc) |
| 1861 | { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1862 | asdl_arg_seq *posonlyargs; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1863 | if (slash_without_default != NULL) { |
| 1864 | posonlyargs = slash_without_default; |
| 1865 | } |
| 1866 | else if (slash_with_default != NULL) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1867 | asdl_arg_seq *slash_with_default_names = |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1868 | _get_names(p, slash_with_default->names_with_defaults); |
| 1869 | if (!slash_with_default_names) { |
| 1870 | return NULL; |
| 1871 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1872 | posonlyargs = (asdl_arg_seq*)_PyPegen_join_sequences( |
| 1873 | p, |
| 1874 | (asdl_seq*)slash_with_default->plain_names, |
| 1875 | (asdl_seq*)slash_with_default_names); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1876 | if (!posonlyargs) { |
| 1877 | return NULL; |
| 1878 | } |
| 1879 | } |
| 1880 | else { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1881 | posonlyargs = _Py_asdl_arg_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1882 | if (!posonlyargs) { |
| 1883 | return NULL; |
| 1884 | } |
| 1885 | } |
| 1886 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1887 | asdl_arg_seq *posargs; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1888 | if (plain_names != NULL && names_with_default != NULL) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1889 | asdl_arg_seq *names_with_default_names = _get_names(p, names_with_default); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1890 | if (!names_with_default_names) { |
| 1891 | return NULL; |
| 1892 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1893 | posargs = (asdl_arg_seq*)_PyPegen_join_sequences( |
| 1894 | p, |
| 1895 | (asdl_seq*)plain_names, |
| 1896 | (asdl_seq*)names_with_default_names); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1897 | if (!posargs) { |
| 1898 | return NULL; |
| 1899 | } |
| 1900 | } |
| 1901 | else if (plain_names == NULL && names_with_default != NULL) { |
| 1902 | posargs = _get_names(p, names_with_default); |
| 1903 | if (!posargs) { |
| 1904 | return NULL; |
| 1905 | } |
| 1906 | } |
| 1907 | else if (plain_names != NULL && names_with_default == NULL) { |
| 1908 | posargs = plain_names; |
| 1909 | } |
| 1910 | else { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1911 | posargs = _Py_asdl_arg_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1912 | if (!posargs) { |
| 1913 | return NULL; |
| 1914 | } |
| 1915 | } |
| 1916 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1917 | asdl_expr_seq *posdefaults; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1918 | if (slash_with_default != NULL && names_with_default != NULL) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1919 | asdl_expr_seq *slash_with_default_values = |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1920 | _get_defaults(p, slash_with_default->names_with_defaults); |
| 1921 | if (!slash_with_default_values) { |
| 1922 | return NULL; |
| 1923 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1924 | asdl_expr_seq *names_with_default_values = _get_defaults(p, names_with_default); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1925 | if (!names_with_default_values) { |
| 1926 | return NULL; |
| 1927 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1928 | posdefaults = (asdl_expr_seq*)_PyPegen_join_sequences( |
| 1929 | p, |
| 1930 | (asdl_seq*)slash_with_default_values, |
| 1931 | (asdl_seq*)names_with_default_values); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1932 | if (!posdefaults) { |
| 1933 | return NULL; |
| 1934 | } |
| 1935 | } |
| 1936 | else if (slash_with_default == NULL && names_with_default != NULL) { |
| 1937 | posdefaults = _get_defaults(p, names_with_default); |
| 1938 | if (!posdefaults) { |
| 1939 | return NULL; |
| 1940 | } |
| 1941 | } |
| 1942 | else if (slash_with_default != NULL && names_with_default == NULL) { |
| 1943 | posdefaults = _get_defaults(p, slash_with_default->names_with_defaults); |
| 1944 | if (!posdefaults) { |
| 1945 | return NULL; |
| 1946 | } |
| 1947 | } |
| 1948 | else { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1949 | posdefaults = _Py_asdl_expr_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1950 | if (!posdefaults) { |
| 1951 | return NULL; |
| 1952 | } |
| 1953 | } |
| 1954 | |
| 1955 | arg_ty vararg = NULL; |
| 1956 | if (star_etc != NULL && star_etc->vararg != NULL) { |
| 1957 | vararg = star_etc->vararg; |
| 1958 | } |
| 1959 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1960 | asdl_arg_seq *kwonlyargs; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1961 | if (star_etc != NULL && star_etc->kwonlyargs != NULL) { |
| 1962 | kwonlyargs = _get_names(p, star_etc->kwonlyargs); |
| 1963 | if (!kwonlyargs) { |
| 1964 | return NULL; |
| 1965 | } |
| 1966 | } |
| 1967 | else { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1968 | kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1969 | if (!kwonlyargs) { |
| 1970 | return NULL; |
| 1971 | } |
| 1972 | } |
| 1973 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1974 | asdl_expr_seq *kwdefaults; |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1975 | if (star_etc != NULL && star_etc->kwonlyargs != NULL) { |
| 1976 | kwdefaults = _get_defaults(p, star_etc->kwonlyargs); |
| 1977 | if (!kwdefaults) { |
| 1978 | return NULL; |
| 1979 | } |
| 1980 | } |
| 1981 | else { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 1982 | kwdefaults = _Py_asdl_expr_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1983 | if (!kwdefaults) { |
| 1984 | return NULL; |
| 1985 | } |
| 1986 | } |
| 1987 | |
| 1988 | arg_ty kwarg = NULL; |
| 1989 | if (star_etc != NULL && star_etc->kwarg != NULL) { |
| 1990 | kwarg = star_etc->kwarg; |
| 1991 | } |
| 1992 | |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 1993 | return _PyAST_arguments(posonlyargs, posargs, vararg, kwonlyargs, |
| 1994 | kwdefaults, kwarg, posdefaults, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 1995 | } |
| 1996 | |
| 1997 | /* Constructs an empty arguments_ty object, that gets used when a function accepts no |
| 1998 | * arguments. */ |
| 1999 | arguments_ty |
| 2000 | _PyPegen_empty_arguments(Parser *p) |
| 2001 | { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2002 | asdl_arg_seq *posonlyargs = _Py_asdl_arg_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2003 | if (!posonlyargs) { |
| 2004 | return NULL; |
| 2005 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2006 | asdl_arg_seq *posargs = _Py_asdl_arg_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2007 | if (!posargs) { |
| 2008 | return NULL; |
| 2009 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2010 | asdl_expr_seq *posdefaults = _Py_asdl_expr_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2011 | if (!posdefaults) { |
| 2012 | return NULL; |
| 2013 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2014 | asdl_arg_seq *kwonlyargs = _Py_asdl_arg_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2015 | if (!kwonlyargs) { |
| 2016 | return NULL; |
| 2017 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2018 | asdl_expr_seq *kwdefaults = _Py_asdl_expr_seq_new(0, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2019 | if (!kwdefaults) { |
| 2020 | return NULL; |
| 2021 | } |
| 2022 | |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2023 | return _PyAST_arguments(posonlyargs, posargs, NULL, kwonlyargs, |
| 2024 | kwdefaults, NULL, posdefaults, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2025 | } |
| 2026 | |
| 2027 | /* Encapsulates the value of an operator_ty into an AugOperator struct */ |
| 2028 | AugOperator * |
| 2029 | _PyPegen_augoperator(Parser *p, operator_ty kind) |
| 2030 | { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 2031 | AugOperator *a = _PyArena_Malloc(p->arena, sizeof(AugOperator)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2032 | if (!a) { |
| 2033 | return NULL; |
| 2034 | } |
| 2035 | a->kind = kind; |
| 2036 | return a; |
| 2037 | } |
| 2038 | |
| 2039 | /* Construct a FunctionDef equivalent to function_def, but with decorators */ |
| 2040 | stmt_ty |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2041 | _PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2042 | { |
| 2043 | assert(function_def != NULL); |
| 2044 | if (function_def->kind == AsyncFunctionDef_kind) { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2045 | return _PyAST_AsyncFunctionDef( |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2046 | function_def->v.FunctionDef.name, function_def->v.FunctionDef.args, |
| 2047 | function_def->v.FunctionDef.body, decorators, function_def->v.FunctionDef.returns, |
| 2048 | function_def->v.FunctionDef.type_comment, function_def->lineno, |
| 2049 | function_def->col_offset, function_def->end_lineno, function_def->end_col_offset, |
| 2050 | p->arena); |
| 2051 | } |
| 2052 | |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2053 | return _PyAST_FunctionDef( |
| 2054 | function_def->v.FunctionDef.name, function_def->v.FunctionDef.args, |
| 2055 | function_def->v.FunctionDef.body, decorators, |
| 2056 | function_def->v.FunctionDef.returns, |
| 2057 | function_def->v.FunctionDef.type_comment, function_def->lineno, |
| 2058 | function_def->col_offset, function_def->end_lineno, |
| 2059 | function_def->end_col_offset, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2060 | } |
| 2061 | |
| 2062 | /* Construct a ClassDef equivalent to class_def, but with decorators */ |
| 2063 | stmt_ty |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2064 | _PyPegen_class_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty class_def) |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2065 | { |
| 2066 | assert(class_def != NULL); |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2067 | return _PyAST_ClassDef( |
| 2068 | class_def->v.ClassDef.name, class_def->v.ClassDef.bases, |
| 2069 | class_def->v.ClassDef.keywords, class_def->v.ClassDef.body, decorators, |
| 2070 | class_def->lineno, class_def->col_offset, class_def->end_lineno, |
| 2071 | class_def->end_col_offset, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2072 | } |
| 2073 | |
| 2074 | /* Construct a KeywordOrStarred */ |
| 2075 | KeywordOrStarred * |
| 2076 | _PyPegen_keyword_or_starred(Parser *p, void *element, int is_keyword) |
| 2077 | { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 2078 | KeywordOrStarred *a = _PyArena_Malloc(p->arena, sizeof(KeywordOrStarred)); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2079 | if (!a) { |
| 2080 | return NULL; |
| 2081 | } |
| 2082 | a->element = element; |
| 2083 | a->is_keyword = is_keyword; |
| 2084 | return a; |
| 2085 | } |
| 2086 | |
| 2087 | /* Get the number of starred expressions in an asdl_seq* of KeywordOrStarred*s */ |
| 2088 | static int |
| 2089 | _seq_number_of_starred_exprs(asdl_seq *seq) |
| 2090 | { |
| 2091 | int n = 0; |
| 2092 | for (Py_ssize_t i = 0, l = asdl_seq_LEN(seq); i < l; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2093 | KeywordOrStarred *k = asdl_seq_GET_UNTYPED(seq, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2094 | if (!k->is_keyword) { |
| 2095 | n++; |
| 2096 | } |
| 2097 | } |
| 2098 | return n; |
| 2099 | } |
| 2100 | |
| 2101 | /* Extract the starred expressions of an asdl_seq* of KeywordOrStarred*s */ |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2102 | asdl_expr_seq * |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2103 | _PyPegen_seq_extract_starred_exprs(Parser *p, asdl_seq *kwargs) |
| 2104 | { |
| 2105 | int new_len = _seq_number_of_starred_exprs(kwargs); |
| 2106 | if (new_len == 0) { |
| 2107 | return NULL; |
| 2108 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2109 | asdl_expr_seq *new_seq = _Py_asdl_expr_seq_new(new_len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2110 | if (!new_seq) { |
| 2111 | return NULL; |
| 2112 | } |
| 2113 | |
| 2114 | int idx = 0; |
| 2115 | for (Py_ssize_t i = 0, len = asdl_seq_LEN(kwargs); i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2116 | KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2117 | if (!k->is_keyword) { |
| 2118 | asdl_seq_SET(new_seq, idx++, k->element); |
| 2119 | } |
| 2120 | } |
| 2121 | return new_seq; |
| 2122 | } |
| 2123 | |
| 2124 | /* Return a new asdl_seq* with only the keywords in kwargs */ |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2125 | asdl_keyword_seq* |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2126 | _PyPegen_seq_delete_starred_exprs(Parser *p, asdl_seq *kwargs) |
| 2127 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 2128 | Py_ssize_t len = asdl_seq_LEN(kwargs); |
| 2129 | Py_ssize_t new_len = len - _seq_number_of_starred_exprs(kwargs); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2130 | if (new_len == 0) { |
| 2131 | return NULL; |
| 2132 | } |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2133 | asdl_keyword_seq *new_seq = _Py_asdl_keyword_seq_new(new_len, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2134 | if (!new_seq) { |
| 2135 | return NULL; |
| 2136 | } |
| 2137 | |
| 2138 | int idx = 0; |
| 2139 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2140 | KeywordOrStarred *k = asdl_seq_GET_UNTYPED(kwargs, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2141 | if (k->is_keyword) { |
| 2142 | asdl_seq_SET(new_seq, idx++, k->element); |
| 2143 | } |
| 2144 | } |
| 2145 | return new_seq; |
| 2146 | } |
| 2147 | |
| 2148 | expr_ty |
| 2149 | _PyPegen_concatenate_strings(Parser *p, asdl_seq *strings) |
| 2150 | { |
Pablo Galindo | ee40e4b | 2020-04-23 03:43:08 +0100 | [diff] [blame] | 2151 | Py_ssize_t len = asdl_seq_LEN(strings); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2152 | assert(len > 0); |
| 2153 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2154 | Token *first = asdl_seq_GET_UNTYPED(strings, 0); |
| 2155 | Token *last = asdl_seq_GET_UNTYPED(strings, len - 1); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2156 | |
| 2157 | int bytesmode = 0; |
| 2158 | PyObject *bytes_str = NULL; |
| 2159 | |
| 2160 | FstringParser state; |
| 2161 | _PyPegen_FstringParser_Init(&state); |
| 2162 | |
| 2163 | for (Py_ssize_t i = 0; i < len; i++) { |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2164 | Token *t = asdl_seq_GET_UNTYPED(strings, i); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2165 | |
| 2166 | int this_bytesmode; |
| 2167 | int this_rawmode; |
| 2168 | PyObject *s; |
| 2169 | const char *fstr; |
| 2170 | Py_ssize_t fstrlen = -1; |
| 2171 | |
Lysandros Nikolaou | 2f37c35 | 2020-05-07 13:37:51 +0300 | [diff] [blame] | 2172 | if (_PyPegen_parsestr(p, &this_bytesmode, &this_rawmode, &s, &fstr, &fstrlen, t) != 0) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2173 | goto error; |
| 2174 | } |
| 2175 | |
| 2176 | /* Check that we are not mixing bytes with unicode. */ |
| 2177 | if (i != 0 && bytesmode != this_bytesmode) { |
| 2178 | RAISE_SYNTAX_ERROR("cannot mix bytes and nonbytes literals"); |
| 2179 | Py_XDECREF(s); |
| 2180 | goto error; |
| 2181 | } |
| 2182 | bytesmode = this_bytesmode; |
| 2183 | |
| 2184 | if (fstr != NULL) { |
| 2185 | assert(s == NULL && !bytesmode); |
| 2186 | |
| 2187 | int result = _PyPegen_FstringParser_ConcatFstring(p, &state, &fstr, fstr + fstrlen, |
| 2188 | this_rawmode, 0, first, t, last); |
| 2189 | if (result < 0) { |
| 2190 | goto error; |
| 2191 | } |
| 2192 | } |
| 2193 | else { |
| 2194 | /* String or byte string. */ |
| 2195 | assert(s != NULL && fstr == NULL); |
| 2196 | assert(bytesmode ? PyBytes_CheckExact(s) : PyUnicode_CheckExact(s)); |
| 2197 | |
| 2198 | if (bytesmode) { |
| 2199 | if (i == 0) { |
| 2200 | bytes_str = s; |
| 2201 | } |
| 2202 | else { |
| 2203 | PyBytes_ConcatAndDel(&bytes_str, s); |
| 2204 | if (!bytes_str) { |
| 2205 | goto error; |
| 2206 | } |
| 2207 | } |
| 2208 | } |
| 2209 | else { |
| 2210 | /* This is a regular string. Concatenate it. */ |
| 2211 | if (_PyPegen_FstringParser_ConcatAndDel(&state, s) < 0) { |
| 2212 | goto error; |
| 2213 | } |
| 2214 | } |
| 2215 | } |
| 2216 | } |
| 2217 | |
| 2218 | if (bytesmode) { |
Victor Stinner | 8370e07 | 2021-03-24 02:23:01 +0100 | [diff] [blame] | 2219 | if (_PyArena_AddPyObject(p->arena, bytes_str) < 0) { |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2220 | goto error; |
| 2221 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2222 | return _PyAST_Constant(bytes_str, NULL, first->lineno, |
| 2223 | first->col_offset, last->end_lineno, |
| 2224 | last->end_col_offset, p->arena); |
Pablo Galindo | c5fc156 | 2020-04-22 23:29:27 +0100 | [diff] [blame] | 2225 | } |
| 2226 | |
| 2227 | return _PyPegen_FstringParser_Finish(p, &state, first, last); |
| 2228 | |
| 2229 | error: |
| 2230 | Py_XDECREF(bytes_str); |
| 2231 | _PyPegen_FstringParser_Dealloc(&state); |
| 2232 | if (PyErr_Occurred()) { |
| 2233 | raise_decode_error(p); |
| 2234 | } |
| 2235 | return NULL; |
| 2236 | } |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 2237 | |
| 2238 | mod_ty |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2239 | _PyPegen_make_module(Parser *p, asdl_stmt_seq *a) { |
| 2240 | asdl_type_ignore_seq *type_ignores = NULL; |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 2241 | Py_ssize_t num = p->type_ignore_comments.num_items; |
| 2242 | if (num > 0) { |
| 2243 | // Turn the raw (comment, lineno) pairs into TypeIgnore objects in the arena |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2244 | type_ignores = _Py_asdl_type_ignore_seq_new(num, p->arena); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 2245 | if (type_ignores == NULL) { |
| 2246 | return NULL; |
| 2247 | } |
| 2248 | for (int i = 0; i < num; i++) { |
| 2249 | PyObject *tag = _PyPegen_new_type_comment(p, p->type_ignore_comments.items[i].comment); |
| 2250 | if (tag == NULL) { |
| 2251 | return NULL; |
| 2252 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2253 | type_ignore_ty ti = _PyAST_TypeIgnore(p->type_ignore_comments.items[i].lineno, |
| 2254 | tag, p->arena); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 2255 | if (ti == NULL) { |
| 2256 | return NULL; |
| 2257 | } |
| 2258 | asdl_seq_SET(type_ignores, i, ti); |
| 2259 | } |
| 2260 | } |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2261 | return _PyAST_Module(a, type_ignores, p->arena); |
Guido van Rossum | c001c09 | 2020-04-30 12:12:19 -0700 | [diff] [blame] | 2262 | } |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2263 | |
| 2264 | // Error reporting helpers |
| 2265 | |
| 2266 | expr_ty |
Lysandros Nikolaou | 01ece63 | 2020-06-19 02:10:43 +0300 | [diff] [blame] | 2267 | _PyPegen_get_invalid_target(expr_ty e, TARGETS_TYPE targets_type) |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2268 | { |
| 2269 | if (e == NULL) { |
| 2270 | return NULL; |
| 2271 | } |
| 2272 | |
| 2273 | #define VISIT_CONTAINER(CONTAINER, TYPE) do { \ |
| 2274 | Py_ssize_t len = asdl_seq_LEN(CONTAINER->v.TYPE.elts);\ |
| 2275 | for (Py_ssize_t i = 0; i < len; i++) {\ |
| 2276 | expr_ty other = asdl_seq_GET(CONTAINER->v.TYPE.elts, i);\ |
Lysandros Nikolaou | 01ece63 | 2020-06-19 02:10:43 +0300 | [diff] [blame] | 2277 | expr_ty child = _PyPegen_get_invalid_target(other, targets_type);\ |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2278 | if (child != NULL) {\ |
| 2279 | return child;\ |
| 2280 | }\ |
| 2281 | }\ |
| 2282 | } while (0) |
| 2283 | |
| 2284 | // We only need to visit List and Tuple nodes recursively as those |
| 2285 | // are the only ones that can contain valid names in targets when |
| 2286 | // they are parsed as expressions. Any other kind of expression |
| 2287 | // that is a container (like Sets or Dicts) is directly invalid and |
| 2288 | // we don't need to visit it recursively. |
| 2289 | |
| 2290 | switch (e->kind) { |
Lysandros Nikolaou | 01ece63 | 2020-06-19 02:10:43 +0300 | [diff] [blame] | 2291 | case List_kind: |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2292 | VISIT_CONTAINER(e, List); |
| 2293 | return NULL; |
Lysandros Nikolaou | 01ece63 | 2020-06-19 02:10:43 +0300 | [diff] [blame] | 2294 | case Tuple_kind: |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2295 | VISIT_CONTAINER(e, Tuple); |
| 2296 | return NULL; |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2297 | case Starred_kind: |
Lysandros Nikolaou | 01ece63 | 2020-06-19 02:10:43 +0300 | [diff] [blame] | 2298 | if (targets_type == DEL_TARGETS) { |
| 2299 | return e; |
| 2300 | } |
| 2301 | return _PyPegen_get_invalid_target(e->v.Starred.value, targets_type); |
| 2302 | case Compare_kind: |
| 2303 | // This is needed, because the `a in b` in `for a in b` gets parsed |
| 2304 | // as a comparison, and so we need to search the left side of the comparison |
| 2305 | // for invalid targets. |
| 2306 | if (targets_type == FOR_TARGETS) { |
| 2307 | cmpop_ty cmpop = (cmpop_ty) asdl_seq_GET(e->v.Compare.ops, 0); |
| 2308 | if (cmpop == In) { |
| 2309 | return _PyPegen_get_invalid_target(e->v.Compare.left, targets_type); |
| 2310 | } |
| 2311 | return NULL; |
| 2312 | } |
| 2313 | return e; |
Pablo Galindo | 16ab070 | 2020-05-15 02:04:52 +0100 | [diff] [blame] | 2314 | case Name_kind: |
| 2315 | case Subscript_kind: |
| 2316 | case Attribute_kind: |
| 2317 | return NULL; |
| 2318 | default: |
| 2319 | return e; |
| 2320 | } |
Lysandros Nikolaou | 75b863a | 2020-05-18 22:14:47 +0300 | [diff] [blame] | 2321 | } |
| 2322 | |
| 2323 | void *_PyPegen_arguments_parsing_error(Parser *p, expr_ty e) { |
| 2324 | int kwarg_unpacking = 0; |
| 2325 | for (Py_ssize_t i = 0, l = asdl_seq_LEN(e->v.Call.keywords); i < l; i++) { |
| 2326 | keyword_ty keyword = asdl_seq_GET(e->v.Call.keywords, i); |
| 2327 | if (!keyword->arg) { |
| 2328 | kwarg_unpacking = 1; |
| 2329 | } |
| 2330 | } |
| 2331 | |
| 2332 | const char *msg = NULL; |
| 2333 | if (kwarg_unpacking) { |
| 2334 | msg = "positional argument follows keyword argument unpacking"; |
| 2335 | } else { |
| 2336 | msg = "positional argument follows keyword argument"; |
| 2337 | } |
| 2338 | |
| 2339 | return RAISE_SYNTAX_ERROR(msg); |
| 2340 | } |
Lysandros Nikolaou | ae14583 | 2020-05-22 03:56:52 +0300 | [diff] [blame] | 2341 | |
| 2342 | void * |
| 2343 | _PyPegen_nonparen_genexp_in_call(Parser *p, expr_ty args) |
| 2344 | { |
| 2345 | /* The rule that calls this function is 'args for_if_clauses'. |
| 2346 | For the input f(L, x for x in y), L and x are in args and |
| 2347 | the for is parsed as a for_if_clause. We have to check if |
| 2348 | len <= 1, so that input like dict((a, b) for a, b in x) |
| 2349 | gets successfully parsed and then we pass the last |
| 2350 | argument (x in the above example) as the location of the |
| 2351 | error */ |
| 2352 | Py_ssize_t len = asdl_seq_LEN(args->v.Call.args); |
| 2353 | if (len <= 1) { |
| 2354 | return NULL; |
| 2355 | } |
| 2356 | |
| 2357 | return RAISE_SYNTAX_ERROR_KNOWN_LOCATION( |
| 2358 | (expr_ty) asdl_seq_GET(args->v.Call.args, len - 1), |
| 2359 | "Generator expression must be parenthesized" |
| 2360 | ); |
| 2361 | } |
Pablo Galindo | 4a97b15 | 2020-09-02 17:44:19 +0100 | [diff] [blame] | 2362 | |
| 2363 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2364 | expr_ty _PyPegen_collect_call_seqs(Parser *p, asdl_expr_seq *a, asdl_seq *b, |
Pablo Galindo | 315a61f | 2020-09-03 15:29:32 +0100 | [diff] [blame] | 2365 | int lineno, int col_offset, int end_lineno, |
| 2366 | int end_col_offset, PyArena *arena) { |
Pablo Galindo | 4a97b15 | 2020-09-02 17:44:19 +0100 | [diff] [blame] | 2367 | Py_ssize_t args_len = asdl_seq_LEN(a); |
| 2368 | Py_ssize_t total_len = args_len; |
| 2369 | |
| 2370 | if (b == NULL) { |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2371 | return _PyAST_Call(_PyPegen_dummy_name(p), a, NULL, lineno, col_offset, |
Pablo Galindo | 315a61f | 2020-09-03 15:29:32 +0100 | [diff] [blame] | 2372 | end_lineno, end_col_offset, arena); |
Pablo Galindo | 4a97b15 | 2020-09-02 17:44:19 +0100 | [diff] [blame] | 2373 | |
| 2374 | } |
| 2375 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2376 | asdl_expr_seq *starreds = _PyPegen_seq_extract_starred_exprs(p, b); |
| 2377 | asdl_keyword_seq *keywords = _PyPegen_seq_delete_starred_exprs(p, b); |
Pablo Galindo | 4a97b15 | 2020-09-02 17:44:19 +0100 | [diff] [blame] | 2378 | |
| 2379 | if (starreds) { |
| 2380 | total_len += asdl_seq_LEN(starreds); |
| 2381 | } |
| 2382 | |
Pablo Galindo | a5634c4 | 2020-09-16 19:42:00 +0100 | [diff] [blame] | 2383 | asdl_expr_seq *args = _Py_asdl_expr_seq_new(total_len, arena); |
Pablo Galindo | 4a97b15 | 2020-09-02 17:44:19 +0100 | [diff] [blame] | 2384 | |
| 2385 | Py_ssize_t i = 0; |
| 2386 | for (i = 0; i < args_len; i++) { |
| 2387 | asdl_seq_SET(args, i, asdl_seq_GET(a, i)); |
| 2388 | } |
| 2389 | for (; i < total_len; i++) { |
| 2390 | asdl_seq_SET(args, i, asdl_seq_GET(starreds, i - args_len)); |
| 2391 | } |
| 2392 | |
Victor Stinner | d27f8d2 | 2021-04-07 21:34:22 +0200 | [diff] [blame^] | 2393 | return _PyAST_Call(_PyPegen_dummy_name(p), args, keywords, lineno, |
| 2394 | col_offset, end_lineno, end_col_offset, arena); |
Pablo Galindo | 4a97b15 | 2020-09-02 17:44:19 +0100 | [diff] [blame] | 2395 | } |