Coverage Report

Created: 2026-05-30 06:18

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython/Python/ast_preprocess.c
Line
Count
Source
1
/* AST pre-processing */
2
#include "Python.h"
3
#include "pycore_ast.h"           // _PyAST_GetDocString()
4
#include "pycore_c_array.h"       // _Py_CArray_EnsureCapacity()
5
#include "pycore_format.h"        // F_LJUST
6
#include "pycore_runtime.h"       // _Py_STR()
7
#include "pycore_unicodeobject.h" // _PyUnicode_EqualToASCIIString()
8
9
10
/* See PEP 765 */
11
typedef struct {
12
    bool in_finally;
13
    bool in_funcdef;
14
    bool in_loop;
15
} ControlFlowInFinallyContext;
16
17
typedef struct {
18
    PyObject *filename;
19
    PyObject *module;
20
    int optimize;
21
    int ff_features;
22
    int syntax_check_only;
23
    int enable_warnings;
24
25
    _Py_c_array_t cf_finally;       /* context for PEP 765 check */
26
    int cf_finally_used;
27
} _PyASTPreprocessState;
28
29
543k
#define ENTER_RECURSIVE() \
30
543k
if (Py_EnterRecursiveCall(" during compilation")) { \
31
0
    return 0; \
32
0
}
33
34
543k
#define LEAVE_RECURSIVE() Py_LeaveRecursiveCall();
35
36
static ControlFlowInFinallyContext*
37
get_cf_finally_top(_PyASTPreprocessState *state)
38
10.2k
{
39
10.2k
    int idx = state->cf_finally_used;
40
10.2k
    return ((ControlFlowInFinallyContext*)state->cf_finally.array) + idx;
41
10.2k
}
42
43
static int
44
push_cf_context(_PyASTPreprocessState *state, stmt_ty node, bool finally, bool funcdef, bool loop)
45
7.27k
{
46
7.27k
    if (_Py_CArray_EnsureCapacity(&state->cf_finally, state->cf_finally_used+1) < 0) {
47
0
        return 0;
48
0
    }
49
50
7.27k
    state->cf_finally_used++;
51
7.27k
    ControlFlowInFinallyContext *ctx = get_cf_finally_top(state);
52
53
7.27k
    ctx->in_finally = finally;
54
7.27k
    ctx->in_funcdef = funcdef;
55
7.27k
    ctx->in_loop = loop;
56
7.27k
    return 1;
57
7.27k
}
58
59
static void
60
pop_cf_context(_PyASTPreprocessState *state)
61
7.27k
{
62
7.27k
    assert(state->cf_finally_used > 0);
63
7.27k
    state->cf_finally_used--;
64
7.27k
}
65
66
static int
67
control_flow_in_finally_warning(const char *kw, stmt_ty n, _PyASTPreprocessState *state)
68
0
{
69
0
    PyObject *msg = PyUnicode_FromFormat("'%s' in a 'finally' block", kw);
70
0
    if (msg == NULL) {
71
0
        return 0;
72
0
    }
73
0
    int ret = _PyErr_EmitSyntaxWarning(msg, state->filename, n->lineno,
74
0
                                       n->col_offset + 1, n->end_lineno,
75
0
                                       n->end_col_offset + 1,
76
0
                                       state->module);
77
0
    Py_DECREF(msg);
78
0
    return ret < 0 ? 0 : 1;
79
0
}
80
81
static int
82
before_return(_PyASTPreprocessState *state, stmt_ty node_)
83
3.16k
{
84
3.16k
    if (state->enable_warnings && state->cf_finally_used > 0) {
85
2.85k
        ControlFlowInFinallyContext *ctx = get_cf_finally_top(state);
86
2.85k
        if (ctx->in_finally && ! ctx->in_funcdef) {
87
0
            if (!control_flow_in_finally_warning("return", node_, state)) {
88
0
                return 0;
89
0
            }
90
0
        }
91
2.85k
    }
92
3.16k
    return 1;
93
3.16k
}
94
95
static int
96
before_loop_exit(_PyASTPreprocessState *state, stmt_ty node_, const char *kw)
97
571
{
98
571
    if (state->enable_warnings && state->cf_finally_used > 0) {
99
100
        ControlFlowInFinallyContext *ctx = get_cf_finally_top(state);
100
100
        if (ctx->in_finally && ! ctx->in_loop) {
101
0
            if (!control_flow_in_finally_warning(kw, node_, state)) {
102
0
                return 0;
103
0
            }
104
0
        }
105
100
    }
106
571
    return 1;
107
571
}
108
109
#define PUSH_CONTEXT(S, N, FINALLY, FUNCDEF, LOOP) \
110
7.27k
    if (!push_cf_context((S), (N), (FINALLY), (FUNCDEF), (LOOP))) { \
111
0
        return 0; \
112
0
    }
113
114
7.27k
#define POP_CONTEXT(S) pop_cf_context(S)
115
116
1.07k
#define BEFORE_FINALLY(S, N)    PUSH_CONTEXT((S), (N), true, false, false)
117
1.07k
#define AFTER_FINALLY(S)        POP_CONTEXT(S)
118
5.12k
#define BEFORE_FUNC_BODY(S, N)  PUSH_CONTEXT((S), (N), false, true, false)
119
5.12k
#define AFTER_FUNC_BODY(S)      POP_CONTEXT(S)
120
1.07k
#define BEFORE_LOOP_BODY(S, N)  PUSH_CONTEXT((S), (N), false, false, true)
121
1.07k
#define AFTER_LOOP_BODY(S)      POP_CONTEXT(S)
122
123
#define BEFORE_RETURN(S, N) \
124
3.16k
    if (!before_return((S), (N))) { \
125
0
        return 0; \
126
0
    }
127
128
#define BEFORE_LOOP_EXIT(S, N, KW) \
129
571
    if (!before_loop_exit((S), (N), (KW))) { \
130
0
        return 0; \
131
0
    }
132
133
static int
134
make_const(expr_ty node, PyObject *val, PyArena *arena)
135
1
{
136
    // Even if no new value was calculated, make_const may still
137
    // need to clear an error (e.g. for division by zero)
138
1
    if (val == NULL) {
139
0
        if (PyErr_ExceptionMatches(PyExc_KeyboardInterrupt)) {
140
0
            return 0;
141
0
        }
142
0
        PyErr_Clear();
143
0
        return 1;
144
0
    }
145
1
    if (_PyArena_AddPyObject(arena, val) < 0) {
146
0
        Py_DECREF(val);
147
0
        return 0;
148
0
    }
149
1
    node->kind = Constant_kind;
150
1
    node->v.Constant.kind = NULL;
151
1
    node->v.Constant.value = val;
152
1
    return 1;
153
1
}
154
155
83
#define COPY_NODE(TO, FROM) (memcpy((TO), (FROM), sizeof(struct _expr)))
156
157
static int
158
has_starred(asdl_expr_seq *elts)
159
106
{
160
106
    Py_ssize_t n = asdl_seq_LEN(elts);
161
335
    for (Py_ssize_t i = 0; i < n; i++) {
162
229
        expr_ty e = (expr_ty)asdl_seq_GET(elts, i);
163
229
        if (e->kind == Starred_kind) {
164
0
            return 1;
165
0
        }
166
229
    }
167
106
    return 0;
168
106
}
169
170
static expr_ty
171
parse_literal(PyObject *fmt, Py_ssize_t *ppos, PyArena *arena)
172
287
{
173
287
    const void *data = PyUnicode_DATA(fmt);
174
287
    int kind = PyUnicode_KIND(fmt);
175
287
    Py_ssize_t size = PyUnicode_GET_LENGTH(fmt);
176
287
    Py_ssize_t start, pos;
177
287
    int has_percents = 0;
178
287
    start = pos = *ppos;
179
2.21k
    while (pos < size) {
180
2.13k
        if (PyUnicode_READ(kind, data, pos) != '%') {
181
1.93k
            pos++;
182
1.93k
        }
183
204
        else if (pos+1 < size && PyUnicode_READ(kind, data, pos+1) == '%') {
184
0
            has_percents = 1;
185
0
            pos += 2;
186
0
        }
187
204
        else {
188
204
            break;
189
204
        }
190
2.13k
    }
191
287
    *ppos = pos;
192
287
    if (pos == start) {
193
89
        return NULL;
194
89
    }
195
198
    PyObject *str = PyUnicode_Substring(fmt, start, pos);
196
    /* str = str.replace('%%', '%') */
197
198
    if (str && has_percents) {
198
0
        _Py_DECLARE_STR(dbl_percent, "%%");
199
0
        Py_SETREF(str, PyUnicode_Replace(str, &_Py_STR(dbl_percent),
200
0
                                         _Py_LATIN1_CHR('%'), -1));
201
0
    }
202
198
    if (!str) {
203
0
        return NULL;
204
0
    }
205
206
198
    if (_PyArena_AddPyObject(arena, str) < 0) {
207
0
        Py_DECREF(str);
208
0
        return NULL;
209
0
    }
210
198
    return _PyAST_Constant(str, NULL, -1, -1, -1, -1, arena);
211
198
}
212
213
4
#define MAXDIGITS 3
214
215
static int
216
simple_format_arg_parse(PyObject *fmt, Py_ssize_t *ppos,
217
                        int *spec, int *flags, int *width, int *prec)
218
204
{
219
204
    Py_ssize_t pos = *ppos, len = PyUnicode_GET_LENGTH(fmt);
220
204
    Py_UCS4 ch;
221
222
213
#define NEXTC do {                      \
223
213
    if (pos >= len) {                   \
224
0
        return 0;                       \
225
0
    }                                   \
226
213
    ch = PyUnicode_READ_CHAR(fmt, pos); \
227
213
    pos++;                              \
228
213
} while (0)
229
230
204
    *flags = 0;
231
210
    while (1) {
232
210
        NEXTC;
233
210
        switch (ch) {
234
1
            case '-': *flags |= F_LJUST; continue;
235
0
            case '+': *flags |= F_SIGN; continue;
236
0
            case ' ': *flags |= F_BLANK; continue;
237
4
            case '#': *flags |= F_ALT; continue;
238
1
            case '0': *flags |= F_ZERO; continue;
239
210
        }
240
204
        break;
241
210
    }
242
204
    if ('0' <= ch && ch <= '9') {
243
2
        *width = 0;
244
2
        int digits = 0;
245
5
        while ('0' <= ch && ch <= '9') {
246
3
            *width = *width * 10 + (ch - '0');
247
3
            NEXTC;
248
3
            if (++digits >= MAXDIGITS) {
249
0
                return 0;
250
0
            }
251
3
        }
252
2
    }
253
254
204
    if (ch == '.') {
255
0
        NEXTC;
256
0
        *prec = 0;
257
0
        if ('0' <= ch && ch <= '9') {
258
0
            int digits = 0;
259
0
            while ('0' <= ch && ch <= '9') {
260
0
                *prec = *prec * 10 + (ch - '0');
261
0
                NEXTC;
262
0
                if (++digits >= MAXDIGITS) {
263
0
                    return 0;
264
0
                }
265
0
            }
266
0
        }
267
0
    }
268
204
    *spec = ch;
269
204
    *ppos = pos;
270
204
    return 1;
271
272
204
#undef NEXTC
273
204
}
274
275
static expr_ty
276
parse_format(PyObject *fmt, Py_ssize_t *ppos, expr_ty arg, PyArena *arena)
277
204
{
278
204
    int spec, flags, width = -1, prec = -1;
279
204
    if (!simple_format_arg_parse(fmt, ppos, &spec, &flags, &width, &prec)) {
280
        // Unsupported format.
281
0
        return NULL;
282
0
    }
283
204
    if (spec == 's' || spec == 'r' || spec == 'a') {
284
181
        char buf[1 + MAXDIGITS + 1 + MAXDIGITS + 1], *p = buf;
285
181
        if (!(flags & F_LJUST) && width > 0) {
286
0
            *p++ = '>';
287
0
        }
288
181
        if (width >= 0) {
289
1
            p += snprintf(p, MAXDIGITS + 1, "%d", width);
290
1
        }
291
181
        if (prec >= 0) {
292
0
            p += snprintf(p, MAXDIGITS + 2, ".%d", prec);
293
0
        }
294
181
        expr_ty format_spec = NULL;
295
181
        if (p != buf) {
296
1
            PyObject *str = PyUnicode_FromString(buf);
297
1
            if (str == NULL) {
298
0
                return NULL;
299
0
            }
300
1
            if (_PyArena_AddPyObject(arena, str) < 0) {
301
0
                Py_DECREF(str);
302
0
                return NULL;
303
0
            }
304
1
            format_spec = _PyAST_Constant(str, NULL, -1, -1, -1, -1, arena);
305
1
            if (format_spec == NULL) {
306
0
                return NULL;
307
0
            }
308
1
        }
309
181
        return _PyAST_FormattedValue(arg, spec, format_spec,
310
181
                                     arg->lineno, arg->col_offset,
311
181
                                     arg->end_lineno, arg->end_col_offset,
312
181
                                     arena);
313
181
    }
314
    // Unsupported format.
315
23
    return NULL;
316
204
}
317
318
static int
319
optimize_format(expr_ty node, PyObject *fmt, asdl_expr_seq *elts, PyArena *arena)
320
106
{
321
106
    Py_ssize_t pos = 0;
322
106
    Py_ssize_t cnt = 0;
323
106
    asdl_expr_seq *seq = _Py_asdl_expr_seq_new(asdl_seq_LEN(elts) * 2 + 1, arena);
324
106
    if (!seq) {
325
0
        return 0;
326
0
    }
327
106
    seq->size = 0;
328
329
287
    while (1) {
330
287
        expr_ty lit = parse_literal(fmt, &pos, arena);
331
287
        if (lit) {
332
198
            asdl_seq_SET(seq, seq->size++, lit);
333
198
        }
334
89
        else if (PyErr_Occurred()) {
335
0
            return 0;
336
0
        }
337
338
287
        if (pos >= PyUnicode_GET_LENGTH(fmt)) {
339
83
            break;
340
83
        }
341
204
        if (cnt >= asdl_seq_LEN(elts)) {
342
            // More format units than items.
343
0
            return 1;
344
0
        }
345
204
        assert(PyUnicode_READ_CHAR(fmt, pos) == '%');
346
204
        pos++;
347
204
        expr_ty expr = parse_format(fmt, &pos, asdl_seq_GET(elts, cnt), arena);
348
204
        cnt++;
349
204
        if (!expr) {
350
23
            return !PyErr_Occurred();
351
23
        }
352
181
        asdl_seq_SET(seq, seq->size++, expr);
353
181
    }
354
83
    if (cnt < asdl_seq_LEN(elts)) {
355
        // More items than format units.
356
0
        return 1;
357
0
    }
358
83
    expr_ty res = _PyAST_JoinedStr(seq,
359
83
                                   node->lineno, node->col_offset,
360
83
                                   node->end_lineno, node->end_col_offset,
361
83
                                   arena);
362
83
    if (!res) {
363
0
        return 0;
364
0
    }
365
83
    COPY_NODE(node, res);
366
//     PySys_FormatStderr("format = %R\n", fmt);
367
83
    return 1;
368
83
}
369
370
static int
371
fold_binop(expr_ty node, PyArena *arena, _PyASTPreprocessState *state)
372
24.4k
{
373
24.4k
    if (state->syntax_check_only) {
374
23.5k
        return 1;
375
23.5k
    }
376
861
    expr_ty lhs, rhs;
377
861
    lhs = node->v.BinOp.left;
378
861
    rhs = node->v.BinOp.right;
379
861
    if (lhs->kind != Constant_kind) {
380
547
        return 1;
381
547
    }
382
314
    PyObject *lv = lhs->v.Constant.value;
383
384
314
    if (node->v.BinOp.op == Mod &&
385
189
        rhs->kind == Tuple_kind &&
386
314
        PyUnicode_Check(lv) &&
387
106
        !has_starred(rhs->v.Tuple.elts))
388
106
    {
389
106
        return optimize_format(node, lv, rhs->v.Tuple.elts, arena);
390
106
    }
391
392
208
    return 1;
393
314
}
394
395
static int astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
396
static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
397
static int astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
398
static int astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
399
static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
400
static int astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
401
static int astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
402
static int astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
403
static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
404
static int astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
405
static int astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
406
static int astfold_type_param(type_param_ty node_, PyArena *ctx_, _PyASTPreprocessState *state);
407
408
#define CALL(FUNC, TYPE, ARG) \
409
371k
    if (!FUNC((ARG), ctx_, state)) \
410
371k
        return 0;
411
412
#define CALL_OPT(FUNC, TYPE, ARG) \
413
92.5k
    if ((ARG) != NULL && !FUNC((ARG), ctx_, state)) \
414
92.5k
        return 0;
415
416
162k
#define CALL_SEQ(FUNC, TYPE, ARG) { \
417
162k
    Py_ssize_t i; \
418
162k
    asdl_ ## TYPE ## _seq *seq = (ARG); /* avoid variable capture */ \
419
406k
    for (i = 0; i < asdl_seq_LEN(seq); i++) { \
420
244k
        TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, i); \
421
244k
        if (elt != NULL && !FUNC(elt, ctx_, state)) \
422
244k
            return 0; \
423
244k
    } \
424
162k
}
425
426
427
static int
428
stmt_seq_remove_item(asdl_stmt_seq *stmts, Py_ssize_t idx)
429
0
{
430
0
    if (idx >= asdl_seq_LEN(stmts)) {
431
0
        return 0;
432
0
    }
433
0
    for (Py_ssize_t i = idx; i < asdl_seq_LEN(stmts) - 1; i++) {
434
0
        stmt_ty st = (stmt_ty)asdl_seq_GET(stmts, i+1);
435
0
        asdl_seq_SET(stmts, i, st);
436
0
    }
437
0
    stmts->size--;
438
0
    return 1;
439
0
}
440
441
static int
442
remove_docstring(asdl_stmt_seq *stmts, Py_ssize_t idx, PyArena *ctx_)
443
0
{
444
0
    assert(_PyAST_GetDocString(stmts) != NULL);
445
    // In case there's just the docstring in the body, replace it with `pass`
446
    // keyword, so body won't be empty.
447
0
    if (asdl_seq_LEN(stmts) == 1) {
448
0
        stmt_ty docstring = (stmt_ty)asdl_seq_GET(stmts, 0);
449
0
        stmt_ty pass = _PyAST_Pass(
450
0
            docstring->lineno, docstring->col_offset,
451
            // we know that `pass` always takes 4 chars and a single line,
452
            // while docstring can span on multiple lines
453
0
            docstring->lineno, docstring->col_offset + 4,
454
0
            ctx_
455
0
        );
456
0
        if (pass == NULL) {
457
0
            return 0;
458
0
        }
459
0
        asdl_seq_SET(stmts, 0, pass);
460
0
        return 1;
461
0
    }
462
    // In case there are more than 1 body items, just remove the docstring.
463
0
    return stmt_seq_remove_item(stmts, idx);
464
0
}
465
466
static int
467
astfold_body(asdl_stmt_seq *stmts, PyArena *ctx_, _PyASTPreprocessState *state)
468
13.4k
{
469
13.4k
    int docstring = _PyAST_GetDocString(stmts) != NULL;
470
13.4k
    if (docstring && (state->optimize >= 2)) {
471
        /* remove the docstring */
472
0
        if (!remove_docstring(stmts, 0, ctx_)) {
473
0
            return 0;
474
0
        }
475
0
        docstring = 0;
476
0
    }
477
13.4k
    CALL_SEQ(astfold_stmt, stmt, stmts);
478
13.4k
    if (!docstring && _PyAST_GetDocString(stmts) != NULL) {
479
0
        stmt_ty st = (stmt_ty)asdl_seq_GET(stmts, 0);
480
0
        asdl_expr_seq *values = _Py_asdl_expr_seq_new(1, ctx_);
481
0
        if (!values) {
482
0
            return 0;
483
0
        }
484
0
        asdl_seq_SET(values, 0, st->v.Expr.value);
485
0
        expr_ty expr = _PyAST_JoinedStr(values, st->lineno, st->col_offset,
486
0
                                        st->end_lineno, st->end_col_offset,
487
0
                                        ctx_);
488
0
        if (!expr) {
489
0
            return 0;
490
0
        }
491
0
        st->v.Expr.value = expr;
492
0
    }
493
13.4k
    return 1;
494
13.4k
}
495
496
static int
497
astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
498
7.30k
{
499
7.30k
    switch (node_->kind) {
500
7.07k
    case Module_kind:
501
7.07k
        CALL(astfold_body, asdl_seq, node_->v.Module.body);
502
7.07k
        break;
503
0
    case Interactive_kind:
504
0
        CALL_SEQ(astfold_stmt, stmt, node_->v.Interactive.body);
505
0
        break;
506
229
    case Expression_kind:
507
229
        CALL(astfold_expr, expr_ty, node_->v.Expression.body);
508
229
        break;
509
    // The following top level nodes don't participate in constant folding
510
0
    case FunctionType_kind:
511
0
        break;
512
    // No default case, so the compiler will emit a warning if new top level
513
    // compilation nodes are added without being handled here
514
7.30k
    }
515
7.30k
    return 1;
516
7.30k
}
517
518
static int
519
astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
520
459k
{
521
459k
    ENTER_RECURSIVE();
522
459k
    switch (node_->kind) {
523
1.51k
    case BoolOp_kind:
524
1.51k
        CALL_SEQ(astfold_expr, expr, node_->v.BoolOp.values);
525
1.51k
        break;
526
24.4k
    case BinOp_kind:
527
24.4k
        CALL(astfold_expr, expr_ty, node_->v.BinOp.left);
528
24.4k
        CALL(astfold_expr, expr_ty, node_->v.BinOp.right);
529
24.4k
        CALL(fold_binop, expr_ty, node_);
530
24.4k
        break;
531
146k
    case UnaryOp_kind:
532
146k
        CALL(astfold_expr, expr_ty, node_->v.UnaryOp.operand);
533
146k
        break;
534
1.20k
    case Lambda_kind:
535
1.20k
        CALL(astfold_arguments, arguments_ty, node_->v.Lambda.args);
536
1.20k
        CALL(astfold_expr, expr_ty, node_->v.Lambda.body);
537
1.20k
        break;
538
307
    case IfExp_kind:
539
307
        CALL(astfold_expr, expr_ty, node_->v.IfExp.test);
540
307
        CALL(astfold_expr, expr_ty, node_->v.IfExp.body);
541
307
        CALL(astfold_expr, expr_ty, node_->v.IfExp.orelse);
542
307
        break;
543
1.87k
    case Dict_kind:
544
1.87k
        CALL_SEQ(astfold_expr, expr, node_->v.Dict.keys);
545
1.87k
        CALL_SEQ(astfold_expr, expr, node_->v.Dict.values);
546
1.87k
        break;
547
321
    case Set_kind:
548
321
        CALL_SEQ(astfold_expr, expr, node_->v.Set.elts);
549
321
        break;
550
369
    case ListComp_kind:
551
369
        CALL(astfold_expr, expr_ty, node_->v.ListComp.elt);
552
369
        CALL_SEQ(astfold_comprehension, comprehension, node_->v.ListComp.generators);
553
369
        break;
554
335
    case SetComp_kind:
555
335
        CALL(astfold_expr, expr_ty, node_->v.SetComp.elt);
556
335
        CALL_SEQ(astfold_comprehension, comprehension, node_->v.SetComp.generators);
557
335
        break;
558
338
    case DictComp_kind:
559
338
        CALL(astfold_expr, expr_ty, node_->v.DictComp.key);
560
338
        if (node_->v.DictComp.value != NULL){
561
272
            CALL(astfold_expr, expr_ty, node_->v.DictComp.value);
562
272
        }
563
338
        CALL_SEQ(astfold_comprehension, comprehension, node_->v.DictComp.generators);
564
338
        break;
565
470
    case GeneratorExp_kind:
566
470
        CALL(astfold_expr, expr_ty, node_->v.GeneratorExp.elt);
567
470
        CALL_SEQ(astfold_comprehension, comprehension, node_->v.GeneratorExp.generators);
568
470
        break;
569
193
    case Await_kind:
570
193
        CALL(astfold_expr, expr_ty, node_->v.Await.value);
571
193
        break;
572
795
    case Yield_kind:
573
795
        CALL_OPT(astfold_expr, expr_ty, node_->v.Yield.value);
574
795
        break;
575
89
    case YieldFrom_kind:
576
89
        CALL(astfold_expr, expr_ty, node_->v.YieldFrom.value);
577
89
        break;
578
4.35k
    case Compare_kind:
579
4.35k
        CALL(astfold_expr, expr_ty, node_->v.Compare.left);
580
4.35k
        CALL_SEQ(astfold_expr, expr, node_->v.Compare.comparators);
581
4.35k
        break;
582
18.2k
    case Call_kind:
583
18.2k
        CALL(astfold_expr, expr_ty, node_->v.Call.func);
584
18.2k
        CALL_SEQ(astfold_expr, expr, node_->v.Call.args);
585
18.2k
        CALL_SEQ(astfold_keyword, keyword, node_->v.Call.keywords);
586
18.2k
        break;
587
15.1k
    case FormattedValue_kind:
588
15.1k
        CALL(astfold_expr, expr_ty, node_->v.FormattedValue.value);
589
15.1k
        CALL_OPT(astfold_expr, expr_ty, node_->v.FormattedValue.format_spec);
590
15.1k
        break;
591
2.12k
    case Interpolation_kind:
592
2.12k
        CALL(astfold_expr, expr_ty, node_->v.Interpolation.value);
593
2.12k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Interpolation.format_spec);
594
2.12k
        break;
595
8.33k
    case JoinedStr_kind:
596
8.33k
        CALL_SEQ(astfold_expr, expr, node_->v.JoinedStr.values);
597
8.33k
        break;
598
718
    case TemplateStr_kind:
599
718
        CALL_SEQ(astfold_expr, expr, node_->v.TemplateStr.values);
600
718
        break;
601
17.7k
    case Attribute_kind:
602
17.7k
        CALL(astfold_expr, expr_ty, node_->v.Attribute.value);
603
17.7k
        break;
604
1.39k
    case Subscript_kind:
605
1.39k
        CALL(astfold_expr, expr_ty, node_->v.Subscript.value);
606
1.39k
        CALL(astfold_expr, expr_ty, node_->v.Subscript.slice);
607
1.39k
        break;
608
1.02k
    case Starred_kind:
609
1.02k
        CALL(astfold_expr, expr_ty, node_->v.Starred.value);
610
1.02k
        break;
611
2.67k
    case Slice_kind:
612
2.67k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.lower);
613
2.67k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.upper);
614
2.67k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Slice.step);
615
2.67k
        break;
616
1.71k
    case List_kind:
617
1.71k
        CALL_SEQ(astfold_expr, expr, node_->v.List.elts);
618
1.71k
        break;
619
11.8k
    case Tuple_kind:
620
11.8k
        CALL_SEQ(astfold_expr, expr, node_->v.Tuple.elts);
621
11.8k
        break;
622
109k
    case Name_kind:
623
109k
        if (state->syntax_check_only) {
624
67.6k
            break;
625
67.6k
        }
626
41.9k
        if (node_->v.Name.ctx == Load &&
627
37.1k
                _PyUnicode_EqualToASCIIString(node_->v.Name.id, "__debug__")) {
628
1
            LEAVE_RECURSIVE();
629
1
            return make_const(node_, PyBool_FromLong(!state->optimize), ctx_);
630
1
        }
631
41.9k
        break;
632
41.9k
    case NamedExpr_kind:
633
78
        CALL(astfold_expr, expr_ty, node_->v.NamedExpr.value);
634
78
        break;
635
85.8k
    case Constant_kind:
636
        // Already a constant, nothing further to do
637
85.8k
        break;
638
    // No default case, so the compiler will emit a warning if new expression
639
    // kinds are added without being handled here
640
459k
    }
641
459k
    LEAVE_RECURSIVE();
642
459k
    return 1;
643
459k
}
644
645
static int
646
astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
647
3.86k
{
648
3.86k
    CALL(astfold_expr, expr_ty, node_->value);
649
3.86k
    return 1;
650
3.86k
}
651
652
static int
653
astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
654
1.53k
{
655
1.53k
    CALL(astfold_expr, expr_ty, node_->target);
656
1.53k
    CALL(astfold_expr, expr_ty, node_->iter);
657
1.53k
    CALL_SEQ(astfold_expr, expr, node_->ifs);
658
1.53k
    return 1;
659
1.53k
}
660
661
static int
662
astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
663
6.32k
{
664
6.32k
    CALL_SEQ(astfold_arg, arg, node_->posonlyargs);
665
6.32k
    CALL_SEQ(astfold_arg, arg, node_->args);
666
6.32k
    CALL_OPT(astfold_arg, arg_ty, node_->vararg);
667
6.32k
    CALL_SEQ(astfold_arg, arg, node_->kwonlyargs);
668
6.32k
    CALL_SEQ(astfold_expr, expr, node_->kw_defaults);
669
6.32k
    CALL_OPT(astfold_arg, arg_ty, node_->kwarg);
670
6.32k
    CALL_SEQ(astfold_expr, expr, node_->defaults);
671
6.32k
    return 1;
672
6.32k
}
673
674
static int
675
astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
676
23.8k
{
677
23.8k
    if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) {
678
22.9k
        CALL_OPT(astfold_expr, expr_ty, node_->annotation);
679
22.9k
    }
680
23.8k
    return 1;
681
23.8k
}
682
683
static int
684
astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
685
68.2k
{
686
68.2k
    ENTER_RECURSIVE();
687
68.2k
    switch (node_->kind) {
688
4.69k
    case FunctionDef_kind: {
689
4.69k
        CALL_SEQ(astfold_type_param, type_param, node_->v.FunctionDef.type_params);
690
4.69k
        CALL(astfold_arguments, arguments_ty, node_->v.FunctionDef.args);
691
4.69k
        BEFORE_FUNC_BODY(state, node_);
692
4.69k
        CALL(astfold_body, asdl_seq, node_->v.FunctionDef.body);
693
4.69k
        AFTER_FUNC_BODY(state);
694
4.69k
        CALL_SEQ(astfold_expr, expr, node_->v.FunctionDef.decorator_list);
695
4.69k
        if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) {
696
4.41k
            CALL_OPT(astfold_expr, expr_ty, node_->v.FunctionDef.returns);
697
4.41k
        }
698
4.69k
        break;
699
4.69k
    }
700
4.69k
    case AsyncFunctionDef_kind: {
701
436
        CALL_SEQ(astfold_type_param, type_param, node_->v.AsyncFunctionDef.type_params);
702
436
        CALL(astfold_arguments, arguments_ty, node_->v.AsyncFunctionDef.args);
703
436
        BEFORE_FUNC_BODY(state, node_);
704
436
        CALL(astfold_body, asdl_seq, node_->v.AsyncFunctionDef.body);
705
436
        AFTER_FUNC_BODY(state);
706
436
        CALL_SEQ(astfold_expr, expr, node_->v.AsyncFunctionDef.decorator_list);
707
436
        if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) {
708
368
            CALL_OPT(astfold_expr, expr_ty, node_->v.AsyncFunctionDef.returns);
709
368
        }
710
436
        break;
711
436
    }
712
1.27k
    case ClassDef_kind:
713
1.27k
        CALL_SEQ(astfold_type_param, type_param, node_->v.ClassDef.type_params);
714
1.27k
        CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.bases);
715
1.27k
        CALL_SEQ(astfold_keyword, keyword, node_->v.ClassDef.keywords);
716
1.27k
        CALL(astfold_body, asdl_seq, node_->v.ClassDef.body);
717
1.27k
        CALL_SEQ(astfold_expr, expr, node_->v.ClassDef.decorator_list);
718
1.27k
        break;
719
3.16k
    case Return_kind:
720
3.16k
        BEFORE_RETURN(state, node_);
721
3.16k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Return.value);
722
3.16k
        break;
723
280
    case Delete_kind:
724
280
        CALL_SEQ(astfold_expr, expr, node_->v.Delete.targets);
725
280
        break;
726
5.75k
    case Assign_kind:
727
5.75k
        CALL_SEQ(astfold_expr, expr, node_->v.Assign.targets);
728
5.75k
        CALL(astfold_expr, expr_ty, node_->v.Assign.value);
729
5.75k
        break;
730
521
    case AugAssign_kind:
731
521
        CALL(astfold_expr, expr_ty, node_->v.AugAssign.target);
732
521
        CALL(astfold_expr, expr_ty, node_->v.AugAssign.value);
733
521
        break;
734
1.12k
    case AnnAssign_kind:
735
1.12k
        CALL(astfold_expr, expr_ty, node_->v.AnnAssign.target);
736
1.12k
        if (!(state->ff_features & CO_FUTURE_ANNOTATIONS)) {
737
1.03k
            CALL(astfold_expr, expr_ty, node_->v.AnnAssign.annotation);
738
1.03k
        }
739
1.12k
        CALL_OPT(astfold_expr, expr_ty, node_->v.AnnAssign.value);
740
1.12k
        break;
741
79
    case TypeAlias_kind:
742
79
        CALL(astfold_expr, expr_ty, node_->v.TypeAlias.name);
743
79
        CALL_SEQ(astfold_type_param, type_param, node_->v.TypeAlias.type_params);
744
79
        CALL(astfold_expr, expr_ty, node_->v.TypeAlias.value);
745
79
        break;
746
628
    case For_kind: {
747
628
        CALL(astfold_expr, expr_ty, node_->v.For.target);
748
628
        CALL(astfold_expr, expr_ty, node_->v.For.iter);
749
628
        BEFORE_LOOP_BODY(state, node_);
750
628
        CALL_SEQ(astfold_stmt, stmt, node_->v.For.body);
751
628
        AFTER_LOOP_BODY(state);
752
628
        CALL_SEQ(astfold_stmt, stmt, node_->v.For.orelse);
753
628
        break;
754
628
    }
755
145
    case AsyncFor_kind: {
756
145
        CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target);
757
145
        CALL(astfold_expr, expr_ty, node_->v.AsyncFor.iter);
758
145
        BEFORE_LOOP_BODY(state, node_);
759
145
        CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.body);
760
145
        AFTER_LOOP_BODY(state);
761
145
        CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncFor.orelse);
762
145
        break;
763
145
    }
764
301
    case While_kind: {
765
301
        CALL(astfold_expr, expr_ty, node_->v.While.test);
766
301
        BEFORE_LOOP_BODY(state, node_);
767
301
        CALL_SEQ(astfold_stmt, stmt, node_->v.While.body);
768
301
        AFTER_LOOP_BODY(state);
769
301
        CALL_SEQ(astfold_stmt, stmt, node_->v.While.orelse);
770
301
        break;
771
301
    }
772
3.60k
    case If_kind:
773
3.60k
        CALL(astfold_expr, expr_ty, node_->v.If.test);
774
3.60k
        CALL_SEQ(astfold_stmt, stmt, node_->v.If.body);
775
3.60k
        CALL_SEQ(astfold_stmt, stmt, node_->v.If.orelse);
776
3.60k
        break;
777
498
    case With_kind:
778
498
        CALL_SEQ(astfold_withitem, withitem, node_->v.With.items);
779
498
        CALL_SEQ(astfold_stmt, stmt, node_->v.With.body);
780
498
        break;
781
161
    case AsyncWith_kind:
782
161
        CALL_SEQ(astfold_withitem, withitem, node_->v.AsyncWith.items);
783
161
        CALL_SEQ(astfold_stmt, stmt, node_->v.AsyncWith.body);
784
161
        break;
785
1.27k
    case Raise_kind:
786
1.27k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Raise.exc);
787
1.27k
        CALL_OPT(astfold_expr, expr_ty, node_->v.Raise.cause);
788
1.27k
        break;
789
536
    case Try_kind: {
790
536
        CALL_SEQ(astfold_stmt, stmt, node_->v.Try.body);
791
536
        CALL_SEQ(astfold_excepthandler, excepthandler, node_->v.Try.handlers);
792
536
        CALL_SEQ(astfold_stmt, stmt, node_->v.Try.orelse);
793
536
        BEFORE_FINALLY(state, node_);
794
536
        CALL_SEQ(astfold_stmt, stmt, node_->v.Try.finalbody);
795
536
        AFTER_FINALLY(state);
796
536
        break;
797
536
    }
798
538
    case TryStar_kind: {
799
538
        CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.body);
800
538
        CALL_SEQ(astfold_excepthandler, excepthandler, node_->v.TryStar.handlers);
801
538
        CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.orelse);
802
538
        BEFORE_FINALLY(state, node_);
803
538
        CALL_SEQ(astfold_stmt, stmt, node_->v.TryStar.finalbody);
804
538
        AFTER_FINALLY(state);
805
538
        break;
806
538
    }
807
270
    case Assert_kind:
808
270
        CALL(astfold_expr, expr_ty, node_->v.Assert.test);
809
270
        CALL_OPT(astfold_expr, expr_ty, node_->v.Assert.msg);
810
270
        break;
811
39.3k
    case Expr_kind:
812
39.3k
        CALL(astfold_expr, expr_ty, node_->v.Expr.value);
813
39.3k
        break;
814
234
    case Match_kind:
815
234
        CALL(astfold_expr, expr_ty, node_->v.Match.subject);
816
234
        CALL_SEQ(astfold_match_case, match_case, node_->v.Match.cases);
817
234
        break;
818
276
    case Break_kind:
819
276
        BEFORE_LOOP_EXIT(state, node_, "break");
820
276
        break;
821
295
    case Continue_kind:
822
295
        BEFORE_LOOP_EXIT(state, node_, "continue");
823
295
        break;
824
    // The following statements don't contain any subexpressions to be folded
825
1.05k
    case Import_kind:
826
2.16k
    case ImportFrom_kind:
827
2.29k
    case Global_kind:
828
2.37k
    case Nonlocal_kind:
829
2.86k
    case Pass_kind:
830
2.86k
        break;
831
    // No default case, so the compiler will emit a warning if new statement
832
    // kinds are added without being handled here
833
68.2k
    }
834
68.2k
    LEAVE_RECURSIVE();
835
68.2k
    return 1;
836
68.2k
}
837
838
static int
839
astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
840
1.52k
{
841
1.52k
    switch (node_->kind) {
842
1.52k
    case ExceptHandler_kind:
843
1.52k
        CALL_OPT(astfold_expr, expr_ty, node_->v.ExceptHandler.type);
844
1.52k
        CALL_SEQ(astfold_stmt, stmt, node_->v.ExceptHandler.body);
845
1.52k
        break;
846
    // No default case, so the compiler will emit a warning if new handler
847
    // kinds are added without being handled here
848
1.52k
    }
849
1.52k
    return 1;
850
1.52k
}
851
852
static int
853
astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
854
1.50k
{
855
1.50k
    CALL(astfold_expr, expr_ty, node_->context_expr);
856
1.50k
    CALL_OPT(astfold_expr, expr_ty, node_->optional_vars);
857
1.50k
    return 1;
858
1.50k
}
859
860
static int
861
fold_const_match_patterns(expr_ty node, PyArena *ctx_, _PyASTPreprocessState *state)
862
1.10k
{
863
1.10k
    if (state->syntax_check_only) {
864
1.09k
        return 1;
865
1.09k
    }
866
4
    switch (node->kind)
867
4
    {
868
0
        case UnaryOp_kind:
869
0
        {
870
0
            if (node->v.UnaryOp.op == USub &&
871
0
                node->v.UnaryOp.operand->kind == Constant_kind)
872
0
            {
873
0
                PyObject *operand = node->v.UnaryOp.operand->v.Constant.value;
874
0
                PyObject *folded = PyNumber_Negative(operand);
875
0
                return make_const(node, folded, ctx_);
876
0
            }
877
0
            break;
878
0
        }
879
0
        case BinOp_kind:
880
0
        {
881
0
            operator_ty op = node->v.BinOp.op;
882
0
            if ((op == Add || op == Sub) &&
883
0
                node->v.BinOp.right->kind == Constant_kind)
884
0
            {
885
0
                CALL(fold_const_match_patterns, expr_ty, node->v.BinOp.left);
886
0
                if (node->v.BinOp.left->kind == Constant_kind) {
887
0
                    PyObject *left = node->v.BinOp.left->v.Constant.value;
888
0
                    PyObject *right = node->v.BinOp.right->v.Constant.value;
889
0
                    PyObject *folded = op == Add ? PyNumber_Add(left, right) : PyNumber_Subtract(left, right);
890
0
                    return make_const(node, folded, ctx_);
891
0
                }
892
0
            }
893
0
            break;
894
0
        }
895
4
        default:
896
4
            break;
897
4
    }
898
4
    return 1;
899
4
}
900
901
static int
902
astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
903
15.4k
{
904
    // Currently, this is really only used to form complex/negative numeric
905
    // constants in MatchValue and MatchMapping nodes
906
    // We still recurse into all subexpressions and subpatterns anyway
907
15.4k
    ENTER_RECURSIVE();
908
15.4k
    switch (node_->kind) {
909
781
        case MatchValue_kind:
910
781
            CALL(fold_const_match_patterns, expr_ty, node_->v.MatchValue.value);
911
781
            break;
912
273
        case MatchSingleton_kind:
913
273
            break;
914
455
        case MatchSequence_kind:
915
455
            CALL_SEQ(astfold_pattern, pattern, node_->v.MatchSequence.patterns);
916
455
            break;
917
237
        case MatchMapping_kind:
918
237
            CALL_SEQ(fold_const_match_patterns, expr, node_->v.MatchMapping.keys);
919
237
            CALL_SEQ(astfold_pattern, pattern, node_->v.MatchMapping.patterns);
920
237
            break;
921
1.13k
        case MatchClass_kind:
922
1.13k
            CALL(astfold_expr, expr_ty, node_->v.MatchClass.cls);
923
1.13k
            CALL_SEQ(astfold_pattern, pattern, node_->v.MatchClass.patterns);
924
1.13k
            CALL_SEQ(astfold_pattern, pattern, node_->v.MatchClass.kwd_patterns);
925
1.13k
            break;
926
257
        case MatchStar_kind:
927
257
            break;
928
9.14k
        case MatchAs_kind:
929
9.14k
            if (node_->v.MatchAs.pattern) {
930
66
                CALL(astfold_pattern, pattern_ty, node_->v.MatchAs.pattern);
931
66
            }
932
9.14k
            break;
933
9.14k
        case MatchOr_kind:
934
3.13k
            CALL_SEQ(astfold_pattern, pattern, node_->v.MatchOr.patterns);
935
3.13k
            break;
936
    // No default case, so the compiler will emit a warning if new pattern
937
    // kinds are added without being handled here
938
15.4k
    }
939
15.4k
    LEAVE_RECURSIVE();
940
15.4k
    return 1;
941
15.4k
}
942
943
static int
944
astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
945
700
{
946
700
    CALL(astfold_pattern, expr_ty, node_->pattern);
947
700
    CALL_OPT(astfold_expr, expr_ty, node_->guard);
948
700
    CALL_SEQ(astfold_stmt, stmt, node_->body);
949
700
    return 1;
950
700
}
951
952
static int
953
astfold_type_param(type_param_ty node_, PyArena *ctx_, _PyASTPreprocessState *state)
954
8.77k
{
955
8.77k
    switch (node_->kind) {
956
6.43k
        case TypeVar_kind:
957
6.43k
            CALL_OPT(astfold_expr, expr_ty, node_->v.TypeVar.bound);
958
6.43k
            CALL_OPT(astfold_expr, expr_ty, node_->v.TypeVar.default_value);
959
6.43k
            break;
960
790
        case ParamSpec_kind:
961
790
            CALL_OPT(astfold_expr, expr_ty, node_->v.ParamSpec.default_value);
962
790
            break;
963
1.55k
        case TypeVarTuple_kind:
964
1.55k
            CALL_OPT(astfold_expr, expr_ty, node_->v.TypeVarTuple.default_value);
965
1.55k
            break;
966
8.77k
    }
967
8.77k
    return 1;
968
8.77k
}
969
970
#undef CALL
971
#undef CALL_OPT
972
#undef CALL_SEQ
973
974
int
975
_PyAST_Preprocess(mod_ty mod, PyArena *arena, PyObject *filename, int optimize,
976
                  int ff_features, int syntax_check_only, int enable_warnings,
977
                  PyObject *module)
978
7.30k
{
979
7.30k
    _PyASTPreprocessState state;
980
7.30k
    memset(&state, 0, sizeof(_PyASTPreprocessState));
981
7.30k
    state.filename = filename;
982
7.30k
    state.module = module;
983
7.30k
    state.optimize = optimize;
984
7.30k
    state.ff_features = ff_features;
985
7.30k
    state.syntax_check_only = syntax_check_only;
986
7.30k
    state.enable_warnings = enable_warnings;
987
7.30k
    if (_Py_CArray_Init(&state.cf_finally, sizeof(ControlFlowInFinallyContext), 20) < 0) {
988
0
        return -1;
989
0
    }
990
991
7.30k
    int ret = astfold_mod(mod, arena, &state);
992
7.30k
    assert(ret || PyErr_Occurred());
993
994
7.30k
    _Py_CArray_Fini(&state.cf_finally);
995
7.30k
    return ret;
996
7.30k
}