blob: b20548c777246c16fc827556540f5ebff8d3f8ca [file] [log] [blame]
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001/*
2 * This file compiles an abstract syntax tree (AST) into Python bytecode.
3 *
4 * The primary entry point is PyAST_Compile(), which returns a
5 * PyCodeObject. The compiler makes several passes to build the code
6 * object:
7 * 1. Checks for future statements. See future.c
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00008 * 2. Builds a symbol table. See symtable.c.
Thomas Wouters89f507f2006-12-13 04:49:30 +00009 * 3. Generate code for basic blocks. See compiler_mod() in this file.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000010 * 4. Assemble the basic blocks into final code. See assemble() in
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000011 * this file.
Thomas Wouters89f507f2006-12-13 04:49:30 +000012 * 5. Optimize the byte code (peephole optimizations). See peephole.c
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000013 *
14 * Note that compiler_mod() suggests module, but the module ast type
15 * (mod_ty) has cases for expressions and interactive statements.
Nick Coghlan944d3eb2005-11-16 12:46:55 +000016 *
Jeremy Hyltone9357b22006-03-01 15:47:05 +000017 * CAUTION: The VISIT_* macros abort the current function when they
18 * encounter a problem. So don't invoke them when there is memory
19 * which needs to be released. Code blocks are OK, as the compiler
Thomas Wouters89f507f2006-12-13 04:49:30 +000020 * structure takes care of releasing those. Use the arena to manage
21 * objects.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000022 */
Guido van Rossum10dc2e81990-11-18 17:27:39 +000023
Guido van Rossum79f25d91997-04-29 20:08:16 +000024#include "Python.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +000025
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000026#include "Python-ast.h"
Victor Stinnerc96be812019-05-14 17:34:56 +020027#include "pycore_pystate.h" /* _PyInterpreterState_GET_UNSAFE() */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000028#include "ast.h"
29#include "code.h"
Jeremy Hylton4b38da62001-02-02 18:19:15 +000030#include "symtable.h"
Guido van Rossum10dc2e81990-11-18 17:27:39 +000031#include "opcode.h"
Serhiy Storchakab0f80b02016-05-24 09:15:14 +030032#include "wordcode_helpers.h"
Guido van Rossumb05a5c71997-05-07 17:46:13 +000033
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000034#define DEFAULT_BLOCK_SIZE 16
35#define DEFAULT_BLOCKS 8
36#define DEFAULT_CODE_SIZE 128
37#define DEFAULT_LNOTAB_SIZE 16
Jeremy Hylton29906ee2001-02-27 04:23:34 +000038
Nick Coghlan650f0d02007-04-15 12:05:43 +000039#define COMP_GENEXP 0
40#define COMP_LISTCOMP 1
41#define COMP_SETCOMP 2
Guido van Rossum992d4a32007-07-11 13:09:30 +000042#define COMP_DICTCOMP 3
Nick Coghlan650f0d02007-04-15 12:05:43 +000043
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000044struct instr {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000045 unsigned i_jabs : 1;
46 unsigned i_jrel : 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000047 unsigned char i_opcode;
48 int i_oparg;
49 struct basicblock_ *i_target; /* target block (if jump instruction) */
50 int i_lineno;
Guido van Rossum3f5da241990-12-20 15:06:42 +000051};
52
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000053typedef struct basicblock_ {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000054 /* Each basicblock in a compilation unit is linked via b_list in the
55 reverse order that the block are allocated. b_list points to the next
56 block, not to be confused with b_next, which is next by control flow. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000057 struct basicblock_ *b_list;
58 /* number of instructions used */
59 int b_iused;
60 /* length of instruction array (b_instr) */
61 int b_ialloc;
62 /* pointer to an array of instructions, initially NULL */
63 struct instr *b_instr;
64 /* If b_next is non-NULL, it is a pointer to the next
65 block reached by normal control flow. */
66 struct basicblock_ *b_next;
67 /* b_seen is used to perform a DFS of basicblocks. */
68 unsigned b_seen : 1;
69 /* b_return is true if a RETURN_VALUE opcode is inserted. */
70 unsigned b_return : 1;
71 /* depth of stack upon entry of block, computed by stackdepth() */
72 int b_startdepth;
73 /* instruction offset for block, computed by assemble_jump_offsets() */
74 int b_offset;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000075} basicblock;
76
77/* fblockinfo tracks the current frame block.
78
Jeremy Hyltone9357b22006-03-01 15:47:05 +000079A frame block is used to handle loops, try/except, and try/finally.
80It's called a frame block to distinguish it from a basic block in the
81compiler IR.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000082*/
83
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +020084enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_END,
85 WITH, ASYNC_WITH, HANDLER_CLEANUP };
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000086
87struct fblockinfo {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000088 enum fblocktype fb_type;
89 basicblock *fb_block;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +020090 /* (optional) type-specific exit or cleanup block */
91 basicblock *fb_exit;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000092};
93
Antoine Pitrou86a36b52011-11-25 18:56:07 +010094enum {
95 COMPILER_SCOPE_MODULE,
96 COMPILER_SCOPE_CLASS,
97 COMPILER_SCOPE_FUNCTION,
Yury Selivanov75445082015-05-11 22:57:16 -040098 COMPILER_SCOPE_ASYNC_FUNCTION,
Benjamin Peterson6b4f7802013-10-20 17:50:28 -040099 COMPILER_SCOPE_LAMBDA,
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100100 COMPILER_SCOPE_COMPREHENSION,
101};
102
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000103/* The following items change on entry and exit of code blocks.
104 They must be saved and restored when returning to a block.
105*/
106struct compiler_unit {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000107 PySTEntryObject *u_ste;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000108
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000109 PyObject *u_name;
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400110 PyObject *u_qualname; /* dot-separated qualified name (lazy) */
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100111 int u_scope_type;
112
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000113 /* The following fields are dicts that map objects to
114 the index of them in co_XXX. The index is used as
115 the argument for opcodes that refer to those collections.
116 */
117 PyObject *u_consts; /* all constants */
118 PyObject *u_names; /* all names */
119 PyObject *u_varnames; /* local variables */
120 PyObject *u_cellvars; /* cell variables */
121 PyObject *u_freevars; /* free variables */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000122
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000123 PyObject *u_private; /* for private name mangling */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000124
Victor Stinnerf8e32212013-11-19 23:56:34 +0100125 Py_ssize_t u_argcount; /* number of arguments for block */
Pablo Galindo8c77b8c2019-04-29 13:36:57 +0100126 Py_ssize_t u_posonlyargcount; /* number of positional only arguments for block */
Victor Stinnerf8e32212013-11-19 23:56:34 +0100127 Py_ssize_t u_kwonlyargcount; /* number of keyword only arguments for block */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 /* Pointer to the most recently allocated block. By following b_list
129 members, you can reach all early allocated blocks. */
130 basicblock *u_blocks;
131 basicblock *u_curblock; /* pointer to current block */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000132
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000133 int u_nfblocks;
134 struct fblockinfo u_fblock[CO_MAXBLOCKS];
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000135
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000136 int u_firstlineno; /* the first lineno of the block */
137 int u_lineno; /* the lineno for the current stmt */
Benjamin Petersond4efd9e2010-09-20 23:02:10 +0000138 int u_col_offset; /* the offset of the current stmt */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000139 int u_lineno_set; /* boolean to indicate whether instr
140 has been generated with current lineno */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000141};
142
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000143/* This struct captures the global state of a compilation.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000144
Jeremy Hyltone9357b22006-03-01 15:47:05 +0000145The u pointer points to the current compilation unit, while units
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000146for enclosing blocks are stored in c_stack. The u and c_stack are
Jeremy Hyltone9357b22006-03-01 15:47:05 +0000147managed by compiler_enter_scope() and compiler_exit_scope().
Nick Coghlanaab9c2b2012-11-04 23:14:34 +1000148
149Note that we don't track recursion levels during compilation - the
150task of detecting and rejecting excessive levels of nesting is
151handled by the symbol analysis pass.
152
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000153*/
154
155struct compiler {
Victor Stinner14e461d2013-08-26 22:28:21 +0200156 PyObject *c_filename;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000157 struct symtable *c_st;
158 PyFutureFeatures *c_future; /* pointer to module's __future__ */
159 PyCompilerFlags *c_flags;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000160
Georg Brandl8334fd92010-12-04 10:26:46 +0000161 int c_optimize; /* optimization level */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 int c_interactive; /* true if in interactive mode */
163 int c_nestlevel;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000164
INADA Naokic2e16072018-11-26 21:23:22 +0900165 PyObject *c_const_cache; /* Python dict holding all constants,
166 including names tuple */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000167 struct compiler_unit *u; /* compiler state for current block */
168 PyObject *c_stack; /* Python list holding compiler_unit ptrs */
169 PyArena *c_arena; /* pointer to memory allocation arena */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000170};
171
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100172static int compiler_enter_scope(struct compiler *, identifier, int, void *, int);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000173static void compiler_free(struct compiler *);
174static basicblock *compiler_new_block(struct compiler *);
175static int compiler_next_instr(struct compiler *, basicblock *);
176static int compiler_addop(struct compiler *, int);
Victor Stinnerf8e32212013-11-19 23:56:34 +0100177static int compiler_addop_i(struct compiler *, int, Py_ssize_t);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000178static int compiler_addop_j(struct compiler *, int, basicblock *, int);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000179static int compiler_error(struct compiler *, const char *);
Serhiy Storchaka62e44812019-02-16 08:12:19 +0200180static int compiler_warn(struct compiler *, const char *, ...);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000181static int compiler_nameop(struct compiler *, identifier, expr_context_ty);
182
183static PyCodeObject *compiler_mod(struct compiler *, mod_ty);
184static int compiler_visit_stmt(struct compiler *, stmt_ty);
185static int compiler_visit_keyword(struct compiler *, keyword_ty);
186static int compiler_visit_expr(struct compiler *, expr_ty);
187static int compiler_augassign(struct compiler *, stmt_ty);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700188static int compiler_annassign(struct compiler *, stmt_ty);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000189static int compiler_visit_slice(struct compiler *, slice_ty,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000190 expr_context_ty);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000191
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000192static int inplace_binop(struct compiler *, operator_ty);
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +0200193static int expr_constant(expr_ty);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000194
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -0500195static int compiler_with(struct compiler *, stmt_ty, int);
Yury Selivanov75445082015-05-11 22:57:16 -0400196static int compiler_async_with(struct compiler *, stmt_ty, int);
197static int compiler_async_for(struct compiler *, stmt_ty);
Victor Stinner976bb402016-03-23 11:36:19 +0100198static int compiler_call_helper(struct compiler *c, int n,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000199 asdl_seq *args,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -0400200 asdl_seq *keywords);
Benjamin Peterson43af12b2011-05-29 11:43:10 -0500201static int compiler_try_except(struct compiler *, stmt_ty);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400202static int compiler_set_qualname(struct compiler *);
Guido van Rossumc2e20742006-02-27 22:32:47 +0000203
Yury Selivanov52c4e7c2016-09-09 10:36:01 -0700204static int compiler_sync_comprehension_generator(
205 struct compiler *c,
206 asdl_seq *generators, int gen_index,
207 expr_ty elt, expr_ty val, int type);
208
209static int compiler_async_comprehension_generator(
210 struct compiler *c,
211 asdl_seq *generators, int gen_index,
212 expr_ty elt, expr_ty val, int type);
213
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000214static PyCodeObject *assemble(struct compiler *, int addNone);
Mark Shannon332cd5e2018-01-30 00:41:04 +0000215static PyObject *__doc__, *__annotations__;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000216
Benjamin Peterson9e77f722015-05-07 18:41:47 -0400217#define CAPSULE_NAME "compile.c compiler unit"
Benjamin Petersonb173f782009-05-05 22:31:58 +0000218
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000219PyObject *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000220_Py_Mangle(PyObject *privateobj, PyObject *ident)
Michael W. Hudson60934622004-08-12 17:56:29 +0000221{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000222 /* Name mangling: __private becomes _classname__private.
223 This is independent from how the name is used. */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200224 PyObject *result;
225 size_t nlen, plen, ipriv;
226 Py_UCS4 maxchar;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000227 if (privateobj == NULL || !PyUnicode_Check(privateobj) ||
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200228 PyUnicode_READ_CHAR(ident, 0) != '_' ||
229 PyUnicode_READ_CHAR(ident, 1) != '_') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000230 Py_INCREF(ident);
231 return ident;
232 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200233 nlen = PyUnicode_GET_LENGTH(ident);
234 plen = PyUnicode_GET_LENGTH(privateobj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000235 /* Don't mangle __id__ or names with dots.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000236
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000237 The only time a name with a dot can occur is when
238 we are compiling an import statement that has a
239 package name.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000240
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000241 TODO(jhylton): Decide whether we want to support
242 mangling of the module name, e.g. __M.X.
243 */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200244 if ((PyUnicode_READ_CHAR(ident, nlen-1) == '_' &&
245 PyUnicode_READ_CHAR(ident, nlen-2) == '_') ||
246 PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000247 Py_INCREF(ident);
248 return ident; /* Don't mangle __whatever__ */
249 }
250 /* Strip leading underscores from class name */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200251 ipriv = 0;
252 while (PyUnicode_READ_CHAR(privateobj, ipriv) == '_')
253 ipriv++;
254 if (ipriv == plen) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000255 Py_INCREF(ident);
256 return ident; /* Don't mangle if class is just underscores */
257 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200258 plen -= ipriv;
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000259
Antoine Pitrou55bff892013-04-06 21:21:04 +0200260 if (plen + nlen >= PY_SSIZE_T_MAX - 1) {
261 PyErr_SetString(PyExc_OverflowError,
262 "private identifier too large to be mangled");
263 return NULL;
264 }
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000265
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200266 maxchar = PyUnicode_MAX_CHAR_VALUE(ident);
267 if (PyUnicode_MAX_CHAR_VALUE(privateobj) > maxchar)
268 maxchar = PyUnicode_MAX_CHAR_VALUE(privateobj);
269
270 result = PyUnicode_New(1 + nlen + plen, maxchar);
271 if (!result)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 return 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200273 /* ident = "_" + priv[ipriv:] + ident # i.e. 1+plen+nlen bytes */
274 PyUnicode_WRITE(PyUnicode_KIND(result), PyUnicode_DATA(result), 0, '_');
Victor Stinner6c7a52a2011-09-28 21:39:17 +0200275 if (PyUnicode_CopyCharacters(result, 1, privateobj, ipriv, plen) < 0) {
276 Py_DECREF(result);
277 return NULL;
278 }
279 if (PyUnicode_CopyCharacters(result, plen+1, ident, 0, nlen) < 0) {
280 Py_DECREF(result);
281 return NULL;
282 }
Victor Stinner8f825062012-04-27 13:55:39 +0200283 assert(_PyUnicode_CheckConsistency(result, 1));
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200284 return result;
Michael W. Hudson60934622004-08-12 17:56:29 +0000285}
286
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000287static int
288compiler_init(struct compiler *c)
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000289{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000290 memset(c, 0, sizeof(struct compiler));
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000291
INADA Naokic2e16072018-11-26 21:23:22 +0900292 c->c_const_cache = PyDict_New();
293 if (!c->c_const_cache) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000294 return 0;
INADA Naokic2e16072018-11-26 21:23:22 +0900295 }
296
297 c->c_stack = PyList_New(0);
298 if (!c->c_stack) {
299 Py_CLEAR(c->c_const_cache);
300 return 0;
301 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000302
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000303 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000304}
305
306PyCodeObject *
Victor Stinner14e461d2013-08-26 22:28:21 +0200307PyAST_CompileObject(mod_ty mod, PyObject *filename, PyCompilerFlags *flags,
308 int optimize, PyArena *arena)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000309{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000310 struct compiler c;
311 PyCodeObject *co = NULL;
312 PyCompilerFlags local_flags;
313 int merged;
Victor Stinnerc96be812019-05-14 17:34:56 +0200314 _PyCoreConfig *config = &_PyInterpreterState_GET_UNSAFE()->core_config;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000315
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000316 if (!__doc__) {
317 __doc__ = PyUnicode_InternFromString("__doc__");
318 if (!__doc__)
319 return NULL;
320 }
Mark Shannon332cd5e2018-01-30 00:41:04 +0000321 if (!__annotations__) {
322 __annotations__ = PyUnicode_InternFromString("__annotations__");
323 if (!__annotations__)
324 return NULL;
325 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000326 if (!compiler_init(&c))
327 return NULL;
Victor Stinner14e461d2013-08-26 22:28:21 +0200328 Py_INCREF(filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000329 c.c_filename = filename;
330 c.c_arena = arena;
Victor Stinner14e461d2013-08-26 22:28:21 +0200331 c.c_future = PyFuture_FromASTObject(mod, filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000332 if (c.c_future == NULL)
333 goto finally;
334 if (!flags) {
335 local_flags.cf_flags = 0;
Guido van Rossum495da292019-03-07 12:38:08 -0800336 local_flags.cf_feature_version = PY_MINOR_VERSION;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000337 flags = &local_flags;
338 }
339 merged = c.c_future->ff_features | flags->cf_flags;
340 c.c_future->ff_features = merged;
341 flags->cf_flags = merged;
342 c.c_flags = flags;
Victor Stinnerc96be812019-05-14 17:34:56 +0200343 c.c_optimize = (optimize == -1) ? config->optimization_level : optimize;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000344 c.c_nestlevel = 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000345
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +0200346 if (!_PyAST_Optimize(mod, arena, c.c_optimize)) {
INADA Naoki7ea143a2017-12-14 16:47:20 +0900347 goto finally;
348 }
349
Victor Stinner14e461d2013-08-26 22:28:21 +0200350 c.c_st = PySymtable_BuildObject(mod, filename, c.c_future);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 if (c.c_st == NULL) {
352 if (!PyErr_Occurred())
353 PyErr_SetString(PyExc_SystemError, "no symtable");
354 goto finally;
355 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000356
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 co = compiler_mod(&c, mod);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000358
Thomas Wouters1175c432006-02-27 22:49:54 +0000359 finally:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 compiler_free(&c);
361 assert(co || PyErr_Occurred());
362 return co;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000363}
364
365PyCodeObject *
Victor Stinner14e461d2013-08-26 22:28:21 +0200366PyAST_CompileEx(mod_ty mod, const char *filename_str, PyCompilerFlags *flags,
367 int optimize, PyArena *arena)
368{
369 PyObject *filename;
370 PyCodeObject *co;
371 filename = PyUnicode_DecodeFSDefault(filename_str);
372 if (filename == NULL)
373 return NULL;
374 co = PyAST_CompileObject(mod, filename, flags, optimize, arena);
375 Py_DECREF(filename);
376 return co;
377
378}
379
380PyCodeObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000381PyNode_Compile(struct _node *n, const char *filename)
382{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 PyCodeObject *co = NULL;
384 mod_ty mod;
385 PyArena *arena = PyArena_New();
386 if (!arena)
387 return NULL;
388 mod = PyAST_FromNode(n, NULL, filename, arena);
389 if (mod)
390 co = PyAST_Compile(mod, filename, NULL, arena);
391 PyArena_Free(arena);
392 return co;
Guido van Rossumbea18cc2002-06-14 20:41:17 +0000393}
394
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000395static void
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000396compiler_free(struct compiler *c)
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000397{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000398 if (c->c_st)
399 PySymtable_Free(c->c_st);
400 if (c->c_future)
401 PyObject_Free(c->c_future);
Victor Stinner14e461d2013-08-26 22:28:21 +0200402 Py_XDECREF(c->c_filename);
INADA Naokic2e16072018-11-26 21:23:22 +0900403 Py_DECREF(c->c_const_cache);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 Py_DECREF(c->c_stack);
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000405}
406
Guido van Rossum79f25d91997-04-29 20:08:16 +0000407static PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000408list2dict(PyObject *list)
Guido van Rossum2dff9911992-09-03 20:50:59 +0000409{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410 Py_ssize_t i, n;
411 PyObject *v, *k;
412 PyObject *dict = PyDict_New();
413 if (!dict) return NULL;
Guido van Rossumd076c731998-10-07 19:42:25 +0000414
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 n = PyList_Size(list);
416 for (i = 0; i < n; i++) {
Victor Stinnerad9a0662013-11-19 22:23:20 +0100417 v = PyLong_FromSsize_t(i);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000418 if (!v) {
419 Py_DECREF(dict);
420 return NULL;
421 }
422 k = PyList_GET_ITEM(list, i);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +0300423 if (PyDict_SetItem(dict, k, v) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 Py_DECREF(v);
425 Py_DECREF(dict);
426 return NULL;
427 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000428 Py_DECREF(v);
429 }
430 return dict;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000431}
432
433/* Return new dict containing names from src that match scope(s).
434
Jeremy Hyltone9357b22006-03-01 15:47:05 +0000435src is a symbol table dictionary. If the scope of a name matches
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436either scope_type or flag is set, insert it into the new dict. The
Jeremy Hyltone9357b22006-03-01 15:47:05 +0000437values are integers, starting at offset and increasing by one for
438each key.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000439*/
440
441static PyObject *
Victor Stinnerad9a0662013-11-19 22:23:20 +0100442dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000443{
Benjamin Peterson51ab2832012-07-18 15:12:47 -0700444 Py_ssize_t i = offset, scope, num_keys, key_i;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000445 PyObject *k, *v, *dest = PyDict_New();
Meador Inge2ca63152012-07-18 14:20:11 -0500446 PyObject *sorted_keys;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000447
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 assert(offset >= 0);
449 if (dest == NULL)
450 return NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000451
Meador Inge2ca63152012-07-18 14:20:11 -0500452 /* Sort the keys so that we have a deterministic order on the indexes
453 saved in the returned dictionary. These indexes are used as indexes
454 into the free and cell var storage. Therefore if they aren't
455 deterministic, then the generated bytecode is not deterministic.
456 */
457 sorted_keys = PyDict_Keys(src);
458 if (sorted_keys == NULL)
459 return NULL;
460 if (PyList_Sort(sorted_keys) != 0) {
461 Py_DECREF(sorted_keys);
462 return NULL;
463 }
Meador Ingef69e24e2012-07-18 16:41:03 -0500464 num_keys = PyList_GET_SIZE(sorted_keys);
Meador Inge2ca63152012-07-18 14:20:11 -0500465
466 for (key_i = 0; key_i < num_keys; key_i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000467 /* XXX this should probably be a macro in symtable.h */
468 long vi;
Meador Inge2ca63152012-07-18 14:20:11 -0500469 k = PyList_GET_ITEM(sorted_keys, key_i);
470 v = PyDict_GetItem(src, k);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000471 assert(PyLong_Check(v));
472 vi = PyLong_AS_LONG(v);
473 scope = (vi >> SCOPE_OFFSET) & SCOPE_MASK;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000474
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000475 if (scope == scope_type || vi & flag) {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +0300476 PyObject *item = PyLong_FromSsize_t(i);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000477 if (item == NULL) {
Meador Inge2ca63152012-07-18 14:20:11 -0500478 Py_DECREF(sorted_keys);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 Py_DECREF(dest);
480 return NULL;
481 }
482 i++;
Serhiy Storchakad70c2a62018-04-20 16:01:25 +0300483 if (PyDict_SetItem(dest, k, item) < 0) {
Meador Inge2ca63152012-07-18 14:20:11 -0500484 Py_DECREF(sorted_keys);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 Py_DECREF(item);
486 Py_DECREF(dest);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000487 return NULL;
488 }
489 Py_DECREF(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000490 }
491 }
Meador Inge2ca63152012-07-18 14:20:11 -0500492 Py_DECREF(sorted_keys);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000493 return dest;
Jeremy Hylton64949cb2001-01-25 20:06:59 +0000494}
495
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000496static void
497compiler_unit_check(struct compiler_unit *u)
498{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000499 basicblock *block;
500 for (block = u->u_blocks; block != NULL; block = block->b_list) {
Benjamin Petersonca470632016-09-06 13:47:26 -0700501 assert((uintptr_t)block != 0xcbcbcbcbU);
502 assert((uintptr_t)block != 0xfbfbfbfbU);
503 assert((uintptr_t)block != 0xdbdbdbdbU);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000504 if (block->b_instr != NULL) {
505 assert(block->b_ialloc > 0);
506 assert(block->b_iused > 0);
507 assert(block->b_ialloc >= block->b_iused);
508 }
509 else {
510 assert (block->b_iused == 0);
511 assert (block->b_ialloc == 0);
512 }
513 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000514}
515
516static void
517compiler_unit_free(struct compiler_unit *u)
518{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000519 basicblock *b, *next;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000520
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000521 compiler_unit_check(u);
522 b = u->u_blocks;
523 while (b != NULL) {
524 if (b->b_instr)
525 PyObject_Free((void *)b->b_instr);
526 next = b->b_list;
527 PyObject_Free((void *)b);
528 b = next;
529 }
530 Py_CLEAR(u->u_ste);
531 Py_CLEAR(u->u_name);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400532 Py_CLEAR(u->u_qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000533 Py_CLEAR(u->u_consts);
534 Py_CLEAR(u->u_names);
535 Py_CLEAR(u->u_varnames);
536 Py_CLEAR(u->u_freevars);
537 Py_CLEAR(u->u_cellvars);
538 Py_CLEAR(u->u_private);
539 PyObject_Free(u);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000540}
541
542static int
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100543compiler_enter_scope(struct compiler *c, identifier name,
544 int scope_type, void *key, int lineno)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000545{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000546 struct compiler_unit *u;
Victor Stinnerfc6f2ef2016-02-27 02:19:22 +0100547 basicblock *block;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000548
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000549 u = (struct compiler_unit *)PyObject_Malloc(sizeof(
550 struct compiler_unit));
551 if (!u) {
552 PyErr_NoMemory();
553 return 0;
554 }
555 memset(u, 0, sizeof(struct compiler_unit));
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100556 u->u_scope_type = scope_type;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000557 u->u_argcount = 0;
Pablo Galindo8c77b8c2019-04-29 13:36:57 +0100558 u->u_posonlyargcount = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000559 u->u_kwonlyargcount = 0;
560 u->u_ste = PySymtable_Lookup(c->c_st, key);
561 if (!u->u_ste) {
562 compiler_unit_free(u);
563 return 0;
564 }
565 Py_INCREF(name);
566 u->u_name = name;
567 u->u_varnames = list2dict(u->u_ste->ste_varnames);
568 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0);
569 if (!u->u_varnames || !u->u_cellvars) {
570 compiler_unit_free(u);
571 return 0;
572 }
Benjamin Peterson312595c2013-05-15 15:26:42 -0500573 if (u->u_ste->ste_needs_class_closure) {
Martin Panter7462b6492015-11-02 03:37:02 +0000574 /* Cook up an implicit __class__ cell. */
Benjamin Peterson312595c2013-05-15 15:26:42 -0500575 _Py_IDENTIFIER(__class__);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +0300576 PyObject *name;
Benjamin Peterson312595c2013-05-15 15:26:42 -0500577 int res;
578 assert(u->u_scope_type == COMPILER_SCOPE_CLASS);
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +0200579 assert(PyDict_GET_SIZE(u->u_cellvars) == 0);
Benjamin Peterson312595c2013-05-15 15:26:42 -0500580 name = _PyUnicode_FromId(&PyId___class__);
581 if (!name) {
582 compiler_unit_free(u);
583 return 0;
584 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +0300585 res = PyDict_SetItem(u->u_cellvars, name, _PyLong_Zero);
Benjamin Peterson312595c2013-05-15 15:26:42 -0500586 if (res < 0) {
587 compiler_unit_free(u);
588 return 0;
589 }
590 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000591
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000592 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS,
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +0200593 PyDict_GET_SIZE(u->u_cellvars));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000594 if (!u->u_freevars) {
595 compiler_unit_free(u);
596 return 0;
597 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000598
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000599 u->u_blocks = NULL;
600 u->u_nfblocks = 0;
601 u->u_firstlineno = lineno;
602 u->u_lineno = 0;
Benjamin Petersond4efd9e2010-09-20 23:02:10 +0000603 u->u_col_offset = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000604 u->u_lineno_set = 0;
605 u->u_consts = PyDict_New();
606 if (!u->u_consts) {
607 compiler_unit_free(u);
608 return 0;
609 }
610 u->u_names = PyDict_New();
611 if (!u->u_names) {
612 compiler_unit_free(u);
613 return 0;
614 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000615
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000616 u->u_private = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000617
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000618 /* Push the old compiler_unit on the stack. */
619 if (c->u) {
Benjamin Peterson9e77f722015-05-07 18:41:47 -0400620 PyObject *capsule = PyCapsule_New(c->u, CAPSULE_NAME, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000621 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) {
622 Py_XDECREF(capsule);
623 compiler_unit_free(u);
624 return 0;
625 }
626 Py_DECREF(capsule);
627 u->u_private = c->u->u_private;
628 Py_XINCREF(u->u_private);
629 }
630 c->u = u;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000631
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000632 c->c_nestlevel++;
Victor Stinnerfc6f2ef2016-02-27 02:19:22 +0100633
634 block = compiler_new_block(c);
635 if (block == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000636 return 0;
Victor Stinnerfc6f2ef2016-02-27 02:19:22 +0100637 c->u->u_curblock = block;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000638
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400639 if (u->u_scope_type != COMPILER_SCOPE_MODULE) {
640 if (!compiler_set_qualname(c))
641 return 0;
642 }
643
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000644 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000645}
646
Neil Schemenauerc396d9e2005-10-25 06:30:14 +0000647static void
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000648compiler_exit_scope(struct compiler *c)
649{
Victor Stinnerad9a0662013-11-19 22:23:20 +0100650 Py_ssize_t n;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000651 PyObject *capsule;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000652
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000653 c->c_nestlevel--;
654 compiler_unit_free(c->u);
655 /* Restore c->u to the parent unit. */
656 n = PyList_GET_SIZE(c->c_stack) - 1;
657 if (n >= 0) {
658 capsule = PyList_GET_ITEM(c->c_stack, n);
Benjamin Peterson9e77f722015-05-07 18:41:47 -0400659 c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000660 assert(c->u);
661 /* we are deleting from a list so this really shouldn't fail */
662 if (PySequence_DelItem(c->c_stack, n) < 0)
663 Py_FatalError("compiler_exit_scope()");
664 compiler_unit_check(c->u);
665 }
666 else
667 c->u = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000668
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000669}
670
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400671static int
672compiler_set_qualname(struct compiler *c)
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100673{
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100674 _Py_static_string(dot, ".");
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400675 _Py_static_string(dot_locals, ".<locals>");
676 Py_ssize_t stack_size;
677 struct compiler_unit *u = c->u;
678 PyObject *name, *base, *dot_str, *dot_locals_str;
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100679
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400680 base = NULL;
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100681 stack_size = PyList_GET_SIZE(c->c_stack);
Benjamin Petersona8a38b82013-10-19 16:14:39 -0400682 assert(stack_size >= 1);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400683 if (stack_size > 1) {
684 int scope, force_global = 0;
685 struct compiler_unit *parent;
686 PyObject *mangled, *capsule;
687
Benjamin Peterson3d9e4812013-10-19 16:01:13 -0400688 capsule = PyList_GET_ITEM(c->c_stack, stack_size - 1);
Benjamin Peterson9e77f722015-05-07 18:41:47 -0400689 parent = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400690 assert(parent);
691
Yury Selivanov75445082015-05-11 22:57:16 -0400692 if (u->u_scope_type == COMPILER_SCOPE_FUNCTION
693 || u->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION
694 || u->u_scope_type == COMPILER_SCOPE_CLASS) {
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400695 assert(u->u_name);
696 mangled = _Py_Mangle(parent->u_private, u->u_name);
697 if (!mangled)
698 return 0;
699 scope = PyST_GetScope(parent->u_ste, mangled);
700 Py_DECREF(mangled);
701 assert(scope != GLOBAL_IMPLICIT);
702 if (scope == GLOBAL_EXPLICIT)
703 force_global = 1;
704 }
705
706 if (!force_global) {
707 if (parent->u_scope_type == COMPILER_SCOPE_FUNCTION
Yury Selivanov75445082015-05-11 22:57:16 -0400708 || parent->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400709 || parent->u_scope_type == COMPILER_SCOPE_LAMBDA) {
710 dot_locals_str = _PyUnicode_FromId(&dot_locals);
711 if (dot_locals_str == NULL)
712 return 0;
713 base = PyUnicode_Concat(parent->u_qualname, dot_locals_str);
714 if (base == NULL)
715 return 0;
716 }
717 else {
718 Py_INCREF(parent->u_qualname);
719 base = parent->u_qualname;
Benjamin Peterson3d9e4812013-10-19 16:01:13 -0400720 }
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100721 }
722 }
Benjamin Peterson3d9e4812013-10-19 16:01:13 -0400723
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400724 if (base != NULL) {
725 dot_str = _PyUnicode_FromId(&dot);
726 if (dot_str == NULL) {
727 Py_DECREF(base);
728 return 0;
729 }
730 name = PyUnicode_Concat(base, dot_str);
731 Py_DECREF(base);
732 if (name == NULL)
733 return 0;
734 PyUnicode_Append(&name, u->u_name);
735 if (name == NULL)
736 return 0;
737 }
738 else {
739 Py_INCREF(u->u_name);
740 name = u->u_name;
741 }
742 u->u_qualname = name;
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100743
Benjamin Peterson6b4f7802013-10-20 17:50:28 -0400744 return 1;
Antoine Pitrou86a36b52011-11-25 18:56:07 +0100745}
746
Eric V. Smith235a6f02015-09-19 14:51:32 -0400747
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000748/* Allocate a new block and return a pointer to it.
749 Returns NULL on error.
750*/
751
752static basicblock *
753compiler_new_block(struct compiler *c)
754{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000755 basicblock *b;
756 struct compiler_unit *u;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000757
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000758 u = c->u;
759 b = (basicblock *)PyObject_Malloc(sizeof(basicblock));
760 if (b == NULL) {
761 PyErr_NoMemory();
762 return NULL;
763 }
764 memset((void *)b, 0, sizeof(basicblock));
765 /* Extend the singly linked list of blocks with new block. */
766 b->b_list = u->u_blocks;
767 u->u_blocks = b;
768 return b;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000769}
770
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000771static basicblock *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000772compiler_next_block(struct compiler *c)
773{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000774 basicblock *block = compiler_new_block(c);
775 if (block == NULL)
776 return NULL;
777 c->u->u_curblock->b_next = block;
778 c->u->u_curblock = block;
779 return block;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000780}
781
782static basicblock *
783compiler_use_next_block(struct compiler *c, basicblock *block)
784{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000785 assert(block != NULL);
786 c->u->u_curblock->b_next = block;
787 c->u->u_curblock = block;
788 return block;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000789}
790
791/* Returns the offset of the next instruction in the current block's
792 b_instr array. Resizes the b_instr as necessary.
793 Returns -1 on failure.
Thomas Wouters89f507f2006-12-13 04:49:30 +0000794*/
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000795
796static int
797compiler_next_instr(struct compiler *c, basicblock *b)
798{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000799 assert(b != NULL);
800 if (b->b_instr == NULL) {
801 b->b_instr = (struct instr *)PyObject_Malloc(
802 sizeof(struct instr) * DEFAULT_BLOCK_SIZE);
803 if (b->b_instr == NULL) {
804 PyErr_NoMemory();
805 return -1;
806 }
807 b->b_ialloc = DEFAULT_BLOCK_SIZE;
808 memset((char *)b->b_instr, 0,
809 sizeof(struct instr) * DEFAULT_BLOCK_SIZE);
810 }
811 else if (b->b_iused == b->b_ialloc) {
812 struct instr *tmp;
813 size_t oldsize, newsize;
814 oldsize = b->b_ialloc * sizeof(struct instr);
815 newsize = oldsize << 1;
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000816
Benjamin Peterson2f8bfef2016-09-07 09:26:18 -0700817 if (oldsize > (SIZE_MAX >> 1)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000818 PyErr_NoMemory();
819 return -1;
820 }
Amaury Forgeot d'Arc9c74b142008-06-18 00:47:36 +0000821
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000822 if (newsize == 0) {
823 PyErr_NoMemory();
824 return -1;
825 }
826 b->b_ialloc <<= 1;
827 tmp = (struct instr *)PyObject_Realloc(
828 (void *)b->b_instr, newsize);
829 if (tmp == NULL) {
830 PyErr_NoMemory();
831 return -1;
832 }
833 b->b_instr = tmp;
834 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize);
835 }
836 return b->b_iused++;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000837}
838
Christian Heimes2202f872008-02-06 14:31:34 +0000839/* Set the i_lineno member of the instruction at offset off if the
840 line number for the current expression/statement has not
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000841 already been set. If it has been set, the call has no effect.
842
Christian Heimes2202f872008-02-06 14:31:34 +0000843 The line number is reset in the following cases:
844 - when entering a new scope
845 - on each statement
846 - on each expression that start a new line
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +0200847 - before the "except" and "finally" clauses
Christian Heimes2202f872008-02-06 14:31:34 +0000848 - before the "for" and "while" expressions
Thomas Wouters89f507f2006-12-13 04:49:30 +0000849*/
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000850
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000851static void
852compiler_set_lineno(struct compiler *c, int off)
853{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000854 basicblock *b;
855 if (c->u->u_lineno_set)
856 return;
857 c->u->u_lineno_set = 1;
858 b = c->u->u_curblock;
859 b->b_instr[off].i_lineno = c->u->u_lineno;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000860}
861
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200862/* Return the stack effect of opcode with argument oparg.
863
864 Some opcodes have different stack effect when jump to the target and
865 when not jump. The 'jump' parameter specifies the case:
866
867 * 0 -- when not jump
868 * 1 -- when jump
869 * -1 -- maximal
870 */
871/* XXX Make the stack effect of WITH_CLEANUP_START and
872 WITH_CLEANUP_FINISH deterministic. */
873static int
874stack_effect(int opcode, int oparg, int jump)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000875{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000876 switch (opcode) {
Serhiy Storchaka57faf342018-04-25 22:04:06 +0300877 case NOP:
878 case EXTENDED_ARG:
879 return 0;
880
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200881 /* Stack manipulation */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000882 case POP_TOP:
883 return -1;
884 case ROT_TWO:
885 case ROT_THREE:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +0200886 case ROT_FOUR:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000887 return 0;
888 case DUP_TOP:
889 return 1;
Antoine Pitrou74a69fa2010-09-04 18:43:52 +0000890 case DUP_TOP_TWO:
891 return 2;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000892
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200893 /* Unary operators */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000894 case UNARY_POSITIVE:
895 case UNARY_NEGATIVE:
896 case UNARY_NOT:
897 case UNARY_INVERT:
898 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000899
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000900 case SET_ADD:
901 case LIST_APPEND:
902 return -1;
903 case MAP_ADD:
904 return -2;
Neal Norwitz10be2ea2006-03-03 20:29:11 +0000905
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200906 /* Binary operators */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000907 case BINARY_POWER:
908 case BINARY_MULTIPLY:
Benjamin Petersond51374e2014-04-09 23:55:56 -0400909 case BINARY_MATRIX_MULTIPLY:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000910 case BINARY_MODULO:
911 case BINARY_ADD:
912 case BINARY_SUBTRACT:
913 case BINARY_SUBSCR:
914 case BINARY_FLOOR_DIVIDE:
915 case BINARY_TRUE_DIVIDE:
916 return -1;
917 case INPLACE_FLOOR_DIVIDE:
918 case INPLACE_TRUE_DIVIDE:
919 return -1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000920
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000921 case INPLACE_ADD:
922 case INPLACE_SUBTRACT:
923 case INPLACE_MULTIPLY:
Benjamin Petersond51374e2014-04-09 23:55:56 -0400924 case INPLACE_MATRIX_MULTIPLY:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000925 case INPLACE_MODULO:
926 return -1;
927 case STORE_SUBSCR:
928 return -3;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000929 case DELETE_SUBSCR:
930 return -2;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000931
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000932 case BINARY_LSHIFT:
933 case BINARY_RSHIFT:
934 case BINARY_AND:
935 case BINARY_XOR:
936 case BINARY_OR:
937 return -1;
938 case INPLACE_POWER:
939 return -1;
940 case GET_ITER:
941 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000942
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 case PRINT_EXPR:
944 return -1;
945 case LOAD_BUILD_CLASS:
946 return 1;
947 case INPLACE_LSHIFT:
948 case INPLACE_RSHIFT:
949 case INPLACE_AND:
950 case INPLACE_XOR:
951 case INPLACE_OR:
952 return -1;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +0200953
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000954 case SETUP_WITH:
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200955 /* 1 in the normal flow.
956 * Restore the stack position and push 6 values before jumping to
957 * the handler if an exception be raised. */
958 return jump ? 6 : 1;
Yury Selivanov75445082015-05-11 22:57:16 -0400959 case WITH_CLEANUP_START:
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200960 return 2; /* or 1, depending on TOS */
Yury Selivanov75445082015-05-11 22:57:16 -0400961 case WITH_CLEANUP_FINISH:
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200962 /* Pop a variable number of values pushed by WITH_CLEANUP_START
963 * + __exit__ or __aexit__. */
964 return -3;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000965 case RETURN_VALUE:
966 return -1;
967 case IMPORT_STAR:
968 return -1;
Yury Selivanovf8cb8a12016-09-08 20:50:03 -0700969 case SETUP_ANNOTATIONS:
970 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000971 case YIELD_VALUE:
972 return 0;
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -0500973 case YIELD_FROM:
974 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000975 case POP_BLOCK:
976 return 0;
977 case POP_EXCEPT:
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200978 return -3;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000979 case END_FINALLY:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +0200980 case POP_FINALLY:
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200981 /* Pop 6 values when an exception was raised. */
982 return -6;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000983
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000984 case STORE_NAME:
985 return -1;
986 case DELETE_NAME:
987 return 0;
988 case UNPACK_SEQUENCE:
989 return oparg-1;
990 case UNPACK_EX:
991 return (oparg&0xFF) + (oparg>>8);
992 case FOR_ITER:
Serhiy Storchakad4864c62018-01-09 21:54:52 +0200993 /* -1 at end of iterator, 1 if continue iterating. */
994 return jump > 0 ? -1 : 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000995
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000996 case STORE_ATTR:
997 return -2;
998 case DELETE_ATTR:
999 return -1;
1000 case STORE_GLOBAL:
1001 return -1;
1002 case DELETE_GLOBAL:
1003 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001004 case LOAD_CONST:
1005 return 1;
1006 case LOAD_NAME:
1007 return 1;
1008 case BUILD_TUPLE:
1009 case BUILD_LIST:
1010 case BUILD_SET:
Serhiy Storchakaea525a22016-09-06 22:07:53 +03001011 case BUILD_STRING:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001012 return 1-oparg;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001013 case BUILD_LIST_UNPACK:
1014 case BUILD_TUPLE_UNPACK:
Serhiy Storchaka73442852016-10-02 10:33:46 +03001015 case BUILD_TUPLE_UNPACK_WITH_CALL:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001016 case BUILD_SET_UNPACK:
1017 case BUILD_MAP_UNPACK:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04001018 case BUILD_MAP_UNPACK_WITH_CALL:
Victor Stinnerf9b760f2016-09-09 10:17:08 -07001019 return 1 - oparg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001020 case BUILD_MAP:
Benjamin Petersonb6855152015-09-10 21:02:39 -07001021 return 1 - 2*oparg;
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03001022 case BUILD_CONST_KEY_MAP:
1023 return -oparg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001024 case LOAD_ATTR:
1025 return 0;
1026 case COMPARE_OP:
1027 return -1;
1028 case IMPORT_NAME:
1029 return -1;
1030 case IMPORT_FROM:
1031 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001032
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001033 /* Jumps */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001034 case JUMP_FORWARD:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001035 case JUMP_ABSOLUTE:
1036 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001037
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001038 case JUMP_IF_TRUE_OR_POP:
1039 case JUMP_IF_FALSE_OR_POP:
1040 return jump ? 0 : -1;
1041
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001042 case POP_JUMP_IF_FALSE:
1043 case POP_JUMP_IF_TRUE:
1044 return -1;
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00001045
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001046 case LOAD_GLOBAL:
1047 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001048
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02001049 /* Exception handling */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001050 case SETUP_FINALLY:
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001051 /* 0 in the normal flow.
1052 * Restore the stack position and push 6 values before jumping to
1053 * the handler if an exception be raised. */
1054 return jump ? 6 : 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02001055 case BEGIN_FINALLY:
1056 /* Actually pushes 1 value, but count 6 for balancing with
1057 * END_FINALLY and POP_FINALLY.
1058 * This is the main reason of using this opcode instead of
1059 * "LOAD_CONST None". */
1060 return 6;
1061 case CALL_FINALLY:
1062 return jump ? 1 : 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001063
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001064 case LOAD_FAST:
1065 return 1;
1066 case STORE_FAST:
1067 return -1;
1068 case DELETE_FAST:
1069 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001070
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001071 case RAISE_VARARGS:
1072 return -oparg;
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001073
1074 /* Functions and calls */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001075 case CALL_FUNCTION:
Victor Stinnerf9b760f2016-09-09 10:17:08 -07001076 return -oparg;
Yury Selivanovf2392132016-12-13 19:03:51 -05001077 case CALL_METHOD:
1078 return -oparg-1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001079 case CALL_FUNCTION_KW:
Victor Stinnerf9b760f2016-09-09 10:17:08 -07001080 return -oparg-1;
1081 case CALL_FUNCTION_EX:
Matthieu Dartiailh3a9ac822017-02-21 14:25:22 +01001082 return -1 - ((oparg & 0x01) != 0);
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001083 case MAKE_FUNCTION:
1084 return -1 - ((oparg & 0x01) != 0) - ((oparg & 0x02) != 0) -
1085 ((oparg & 0x04) != 0) - ((oparg & 0x08) != 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001086 case BUILD_SLICE:
1087 if (oparg == 3)
1088 return -2;
1089 else
1090 return -1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001091
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001092 /* Closures */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001093 case LOAD_CLOSURE:
1094 return 1;
1095 case LOAD_DEREF:
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04001096 case LOAD_CLASSDEREF:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001097 return 1;
1098 case STORE_DEREF:
1099 return -1;
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00001100 case DELETE_DEREF:
1101 return 0;
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001102
1103 /* Iterators and generators */
Yury Selivanov75445082015-05-11 22:57:16 -04001104 case GET_AWAITABLE:
1105 return 0;
1106 case SETUP_ASYNC_WITH:
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001107 /* 0 in the normal flow.
1108 * Restore the stack position to the position before the result
1109 * of __aenter__ and push 6 values before jumping to the handler
1110 * if an exception be raised. */
1111 return jump ? -1 + 6 : 0;
Yury Selivanov75445082015-05-11 22:57:16 -04001112 case BEFORE_ASYNC_WITH:
1113 return 1;
1114 case GET_AITER:
1115 return 0;
1116 case GET_ANEXT:
1117 return 1;
Yury Selivanov5376ba92015-06-22 12:19:30 -04001118 case GET_YIELD_FROM_ITER:
1119 return 0;
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02001120 case END_ASYNC_FOR:
1121 return -7;
Eric V. Smitha78c7952015-11-03 12:45:05 -05001122 case FORMAT_VALUE:
1123 /* If there's a fmt_spec on the stack, we go from 2->1,
1124 else 1->1. */
1125 return (oparg & FVS_MASK) == FVS_HAVE_SPEC ? -1 : 0;
Yury Selivanovf2392132016-12-13 19:03:51 -05001126 case LOAD_METHOD:
1127 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001128 default:
Larry Hastings3a907972013-11-23 14:49:22 -08001129 return PY_INVALID_STACK_EFFECT;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001130 }
Larry Hastings3a907972013-11-23 14:49:22 -08001131 return PY_INVALID_STACK_EFFECT; /* not reachable */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001132}
1133
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001134int
Serhiy Storchaka7bdf2822018-09-18 09:54:26 +03001135PyCompile_OpcodeStackEffectWithJump(int opcode, int oparg, int jump)
1136{
1137 return stack_effect(opcode, oparg, jump);
1138}
1139
1140int
Serhiy Storchakad4864c62018-01-09 21:54:52 +02001141PyCompile_OpcodeStackEffect(int opcode, int oparg)
1142{
1143 return stack_effect(opcode, oparg, -1);
1144}
1145
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001146/* Add an opcode with no argument.
1147 Returns 0 on failure, 1 on success.
1148*/
1149
1150static int
1151compiler_addop(struct compiler *c, int opcode)
1152{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001153 basicblock *b;
1154 struct instr *i;
1155 int off;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03001156 assert(!HAS_ARG(opcode));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001157 off = compiler_next_instr(c, c->u->u_curblock);
1158 if (off < 0)
1159 return 0;
1160 b = c->u->u_curblock;
1161 i = &b->b_instr[off];
1162 i->i_opcode = opcode;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03001163 i->i_oparg = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001164 if (opcode == RETURN_VALUE)
1165 b->b_return = 1;
1166 compiler_set_lineno(c, off);
1167 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001168}
1169
Victor Stinnerf8e32212013-11-19 23:56:34 +01001170static Py_ssize_t
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001171compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o)
1172{
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001173 PyObject *v;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001174 Py_ssize_t arg;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001175
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001176 v = PyDict_GetItemWithError(dict, o);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001177 if (!v) {
Stefan Krahc0cbed12015-07-27 12:56:49 +02001178 if (PyErr_Occurred()) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001179 return -1;
Stefan Krahc0cbed12015-07-27 12:56:49 +02001180 }
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +02001181 arg = PyDict_GET_SIZE(dict);
Victor Stinnerad9a0662013-11-19 22:23:20 +01001182 v = PyLong_FromSsize_t(arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001183 if (!v) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001184 return -1;
1185 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001186 if (PyDict_SetItem(dict, o, v) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001187 Py_DECREF(v);
1188 return -1;
1189 }
1190 Py_DECREF(v);
1191 }
1192 else
1193 arg = PyLong_AsLong(v);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001194 return arg;
1195}
1196
INADA Naokic2e16072018-11-26 21:23:22 +09001197// Merge const *o* recursively and return constant key object.
1198static PyObject*
1199merge_consts_recursive(struct compiler *c, PyObject *o)
1200{
1201 // None and Ellipsis are singleton, and key is the singleton.
1202 // No need to merge object and key.
1203 if (o == Py_None || o == Py_Ellipsis) {
1204 Py_INCREF(o);
1205 return o;
1206 }
1207
1208 PyObject *key = _PyCode_ConstantKey(o);
1209 if (key == NULL) {
1210 return NULL;
1211 }
1212
1213 // t is borrowed reference
1214 PyObject *t = PyDict_SetDefault(c->c_const_cache, key, key);
1215 if (t != key) {
INADA Naokif7e4d362018-11-29 00:58:46 +09001216 // o is registered in c_const_cache. Just use it.
Zackery Spytz9b4a1b12019-03-20 03:16:25 -06001217 Py_XINCREF(t);
INADA Naokic2e16072018-11-26 21:23:22 +09001218 Py_DECREF(key);
1219 return t;
1220 }
1221
INADA Naokif7e4d362018-11-29 00:58:46 +09001222 // We registered o in c_const_cache.
Simeon63b5fc52019-04-09 19:36:57 -04001223 // When o is a tuple or frozenset, we want to merge its
INADA Naokif7e4d362018-11-29 00:58:46 +09001224 // items too.
INADA Naokic2e16072018-11-26 21:23:22 +09001225 if (PyTuple_CheckExact(o)) {
INADA Naokif7e4d362018-11-29 00:58:46 +09001226 Py_ssize_t len = PyTuple_GET_SIZE(o);
1227 for (Py_ssize_t i = 0; i < len; i++) {
INADA Naokic2e16072018-11-26 21:23:22 +09001228 PyObject *item = PyTuple_GET_ITEM(o, i);
1229 PyObject *u = merge_consts_recursive(c, item);
1230 if (u == NULL) {
1231 Py_DECREF(key);
1232 return NULL;
1233 }
1234
1235 // See _PyCode_ConstantKey()
1236 PyObject *v; // borrowed
1237 if (PyTuple_CheckExact(u)) {
1238 v = PyTuple_GET_ITEM(u, 1);
1239 }
1240 else {
1241 v = u;
1242 }
1243 if (v != item) {
1244 Py_INCREF(v);
1245 PyTuple_SET_ITEM(o, i, v);
1246 Py_DECREF(item);
1247 }
1248
1249 Py_DECREF(u);
1250 }
1251 }
INADA Naokif7e4d362018-11-29 00:58:46 +09001252 else if (PyFrozenSet_CheckExact(o)) {
Simeon63b5fc52019-04-09 19:36:57 -04001253 // *key* is tuple. And its first item is frozenset of
INADA Naokif7e4d362018-11-29 00:58:46 +09001254 // constant keys.
1255 // See _PyCode_ConstantKey() for detail.
1256 assert(PyTuple_CheckExact(key));
1257 assert(PyTuple_GET_SIZE(key) == 2);
1258
1259 Py_ssize_t len = PySet_GET_SIZE(o);
1260 if (len == 0) { // empty frozenset should not be re-created.
1261 return key;
1262 }
1263 PyObject *tuple = PyTuple_New(len);
1264 if (tuple == NULL) {
1265 Py_DECREF(key);
1266 return NULL;
1267 }
1268 Py_ssize_t i = 0, pos = 0;
1269 PyObject *item;
1270 Py_hash_t hash;
1271 while (_PySet_NextEntry(o, &pos, &item, &hash)) {
1272 PyObject *k = merge_consts_recursive(c, item);
1273 if (k == NULL) {
1274 Py_DECREF(tuple);
1275 Py_DECREF(key);
1276 return NULL;
1277 }
1278 PyObject *u;
1279 if (PyTuple_CheckExact(k)) {
1280 u = PyTuple_GET_ITEM(k, 1);
1281 Py_INCREF(u);
1282 Py_DECREF(k);
1283 }
1284 else {
1285 u = k;
1286 }
1287 PyTuple_SET_ITEM(tuple, i, u); // Steals reference of u.
1288 i++;
1289 }
1290
1291 // Instead of rewriting o, we create new frozenset and embed in the
1292 // key tuple. Caller should get merged frozenset from the key tuple.
1293 PyObject *new = PyFrozenSet_New(tuple);
1294 Py_DECREF(tuple);
1295 if (new == NULL) {
1296 Py_DECREF(key);
1297 return NULL;
1298 }
1299 assert(PyTuple_GET_ITEM(key, 1) == o);
1300 Py_DECREF(o);
1301 PyTuple_SET_ITEM(key, 1, new);
1302 }
INADA Naokic2e16072018-11-26 21:23:22 +09001303
1304 return key;
1305}
1306
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001307static Py_ssize_t
1308compiler_add_const(struct compiler *c, PyObject *o)
1309{
INADA Naokic2e16072018-11-26 21:23:22 +09001310 PyObject *key = merge_consts_recursive(c, o);
1311 if (key == NULL) {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001312 return -1;
INADA Naokic2e16072018-11-26 21:23:22 +09001313 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001314
INADA Naokic2e16072018-11-26 21:23:22 +09001315 Py_ssize_t arg = compiler_add_o(c, c->u->u_consts, key);
1316 Py_DECREF(key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001317 return arg;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001318}
1319
1320static int
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001321compiler_addop_load_const(struct compiler *c, PyObject *o)
1322{
1323 Py_ssize_t arg = compiler_add_const(c, o);
1324 if (arg < 0)
1325 return 0;
1326 return compiler_addop_i(c, LOAD_CONST, arg);
1327}
1328
1329static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001330compiler_addop_o(struct compiler *c, int opcode, PyObject *dict,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001331 PyObject *o)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001332{
Victor Stinnerad9a0662013-11-19 22:23:20 +01001333 Py_ssize_t arg = compiler_add_o(c, dict, o);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001334 if (arg < 0)
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00001335 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001336 return compiler_addop_i(c, opcode, arg);
1337}
1338
1339static int
1340compiler_addop_name(struct compiler *c, int opcode, PyObject *dict,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001341 PyObject *o)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001342{
Victor Stinnerad9a0662013-11-19 22:23:20 +01001343 Py_ssize_t arg;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001344 PyObject *mangled = _Py_Mangle(c->u->u_private, o);
1345 if (!mangled)
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00001346 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001347 arg = compiler_add_o(c, dict, mangled);
1348 Py_DECREF(mangled);
1349 if (arg < 0)
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00001350 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001351 return compiler_addop_i(c, opcode, arg);
1352}
1353
1354/* Add an opcode with an integer argument.
1355 Returns 0 on failure, 1 on success.
1356*/
1357
1358static int
Victor Stinnerf8e32212013-11-19 23:56:34 +01001359compiler_addop_i(struct compiler *c, int opcode, Py_ssize_t oparg)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001360{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001361 struct instr *i;
1362 int off;
Victor Stinnerad9a0662013-11-19 22:23:20 +01001363
Victor Stinner2ad474b2016-03-01 23:34:47 +01001364 /* oparg value is unsigned, but a signed C int is usually used to store
1365 it in the C code (like Python/ceval.c).
1366
1367 Limit to 32-bit signed C int (rather than INT_MAX) for portability.
1368
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03001369 The argument of a concrete bytecode instruction is limited to 8-bit.
1370 EXTENDED_ARG is used for 16, 24, and 32-bit arguments. */
1371 assert(HAS_ARG(opcode));
Victor Stinner2ad474b2016-03-01 23:34:47 +01001372 assert(0 <= oparg && oparg <= 2147483647);
Victor Stinnerad9a0662013-11-19 22:23:20 +01001373
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001374 off = compiler_next_instr(c, c->u->u_curblock);
1375 if (off < 0)
1376 return 0;
1377 i = &c->u->u_curblock->b_instr[off];
Victor Stinnerf8e32212013-11-19 23:56:34 +01001378 i->i_opcode = opcode;
1379 i->i_oparg = Py_SAFE_DOWNCAST(oparg, Py_ssize_t, int);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001380 compiler_set_lineno(c, off);
1381 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001382}
1383
1384static int
1385compiler_addop_j(struct compiler *c, int opcode, basicblock *b, int absolute)
1386{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001387 struct instr *i;
1388 int off;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001389
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03001390 assert(HAS_ARG(opcode));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001391 assert(b != NULL);
1392 off = compiler_next_instr(c, c->u->u_curblock);
1393 if (off < 0)
1394 return 0;
1395 i = &c->u->u_curblock->b_instr[off];
1396 i->i_opcode = opcode;
1397 i->i_target = b;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001398 if (absolute)
1399 i->i_jabs = 1;
1400 else
1401 i->i_jrel = 1;
1402 compiler_set_lineno(c, off);
1403 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001404}
1405
Victor Stinnerfc6f2ef2016-02-27 02:19:22 +01001406/* NEXT_BLOCK() creates an implicit jump from the current block
1407 to the new block.
1408
1409 The returns inside this macro make it impossible to decref objects
1410 created in the local function. Local objects should use the arena.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001411*/
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001412#define NEXT_BLOCK(C) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001413 if (compiler_next_block((C)) == NULL) \
1414 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001415}
1416
1417#define ADDOP(C, OP) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001418 if (!compiler_addop((C), (OP))) \
1419 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001420}
1421
Neal Norwitzb6fc9df2005-11-13 18:50:34 +00001422#define ADDOP_IN_SCOPE(C, OP) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001423 if (!compiler_addop((C), (OP))) { \
1424 compiler_exit_scope(c); \
1425 return 0; \
1426 } \
Neal Norwitzb6fc9df2005-11-13 18:50:34 +00001427}
1428
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001429#define ADDOP_LOAD_CONST(C, O) { \
1430 if (!compiler_addop_load_const((C), (O))) \
1431 return 0; \
1432}
1433
1434/* Same as ADDOP_LOAD_CONST, but steals a reference. */
1435#define ADDOP_LOAD_CONST_NEW(C, O) { \
1436 PyObject *__new_const = (O); \
1437 if (__new_const == NULL) { \
1438 return 0; \
1439 } \
1440 if (!compiler_addop_load_const((C), __new_const)) { \
1441 Py_DECREF(__new_const); \
1442 return 0; \
1443 } \
1444 Py_DECREF(__new_const); \
1445}
1446
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001447#define ADDOP_O(C, OP, O, TYPE) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001448 if (!compiler_addop_o((C), (OP), (C)->u->u_ ## TYPE, (O))) \
1449 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001450}
1451
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03001452/* Same as ADDOP_O, but steals a reference. */
1453#define ADDOP_N(C, OP, O, TYPE) { \
1454 if (!compiler_addop_o((C), (OP), (C)->u->u_ ## TYPE, (O))) { \
1455 Py_DECREF((O)); \
1456 return 0; \
1457 } \
1458 Py_DECREF((O)); \
1459}
1460
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001461#define ADDOP_NAME(C, OP, O, TYPE) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001462 if (!compiler_addop_name((C), (OP), (C)->u->u_ ## TYPE, (O))) \
1463 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001464}
1465
1466#define ADDOP_I(C, OP, O) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001467 if (!compiler_addop_i((C), (OP), (O))) \
1468 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001469}
1470
1471#define ADDOP_JABS(C, OP, O) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001472 if (!compiler_addop_j((C), (OP), (O), 1)) \
1473 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001474}
1475
1476#define ADDOP_JREL(C, OP, O) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001477 if (!compiler_addop_j((C), (OP), (O), 0)) \
1478 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001479}
1480
1481/* VISIT and VISIT_SEQ takes an ASDL type as their second argument. They use
1482 the ASDL name to synthesize the name of the C type and the visit function.
1483*/
1484
1485#define VISIT(C, TYPE, V) {\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001486 if (!compiler_visit_ ## TYPE((C), (V))) \
1487 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001488}
1489
Neal Norwitzb6fc9df2005-11-13 18:50:34 +00001490#define VISIT_IN_SCOPE(C, TYPE, V) {\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001491 if (!compiler_visit_ ## TYPE((C), (V))) { \
1492 compiler_exit_scope(c); \
1493 return 0; \
1494 } \
Neal Norwitzb6fc9df2005-11-13 18:50:34 +00001495}
1496
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001497#define VISIT_SLICE(C, V, CTX) {\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001498 if (!compiler_visit_slice((C), (V), (CTX))) \
1499 return 0; \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001500}
1501
1502#define VISIT_SEQ(C, TYPE, SEQ) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001503 int _i; \
1504 asdl_seq *seq = (SEQ); /* avoid variable capture */ \
1505 for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1506 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1507 if (!compiler_visit_ ## TYPE((C), elt)) \
1508 return 0; \
1509 } \
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001510}
1511
Neal Norwitzb6fc9df2005-11-13 18:50:34 +00001512#define VISIT_SEQ_IN_SCOPE(C, TYPE, SEQ) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001513 int _i; \
1514 asdl_seq *seq = (SEQ); /* avoid variable capture */ \
1515 for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \
1516 TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \
1517 if (!compiler_visit_ ## TYPE((C), elt)) { \
1518 compiler_exit_scope(c); \
1519 return 0; \
1520 } \
1521 } \
Neal Norwitzb6fc9df2005-11-13 18:50:34 +00001522}
1523
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001524/* Search if variable annotations are present statically in a block. */
1525
1526static int
1527find_ann(asdl_seq *stmts)
1528{
1529 int i, j, res = 0;
1530 stmt_ty st;
1531
1532 for (i = 0; i < asdl_seq_LEN(stmts); i++) {
1533 st = (stmt_ty)asdl_seq_GET(stmts, i);
1534 switch (st->kind) {
1535 case AnnAssign_kind:
1536 return 1;
1537 case For_kind:
1538 res = find_ann(st->v.For.body) ||
1539 find_ann(st->v.For.orelse);
1540 break;
1541 case AsyncFor_kind:
1542 res = find_ann(st->v.AsyncFor.body) ||
1543 find_ann(st->v.AsyncFor.orelse);
1544 break;
1545 case While_kind:
1546 res = find_ann(st->v.While.body) ||
1547 find_ann(st->v.While.orelse);
1548 break;
1549 case If_kind:
1550 res = find_ann(st->v.If.body) ||
1551 find_ann(st->v.If.orelse);
1552 break;
1553 case With_kind:
1554 res = find_ann(st->v.With.body);
1555 break;
1556 case AsyncWith_kind:
1557 res = find_ann(st->v.AsyncWith.body);
1558 break;
1559 case Try_kind:
1560 for (j = 0; j < asdl_seq_LEN(st->v.Try.handlers); j++) {
1561 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET(
1562 st->v.Try.handlers, j);
1563 if (find_ann(handler->v.ExceptHandler.body)) {
1564 return 1;
1565 }
1566 }
1567 res = find_ann(st->v.Try.body) ||
1568 find_ann(st->v.Try.finalbody) ||
1569 find_ann(st->v.Try.orelse);
1570 break;
1571 default:
1572 res = 0;
1573 }
1574 if (res) {
1575 break;
1576 }
1577 }
1578 return res;
1579}
1580
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02001581/*
1582 * Frame block handling functions
1583 */
1584
1585static int
1586compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b,
1587 basicblock *exit)
1588{
1589 struct fblockinfo *f;
1590 if (c->u->u_nfblocks >= CO_MAXBLOCKS) {
1591 PyErr_SetString(PyExc_SyntaxError,
1592 "too many statically nested blocks");
1593 return 0;
1594 }
1595 f = &c->u->u_fblock[c->u->u_nfblocks++];
1596 f->fb_type = t;
1597 f->fb_block = b;
1598 f->fb_exit = exit;
1599 return 1;
1600}
1601
1602static void
1603compiler_pop_fblock(struct compiler *c, enum fblocktype t, basicblock *b)
1604{
1605 struct compiler_unit *u = c->u;
1606 assert(u->u_nfblocks > 0);
1607 u->u_nfblocks--;
1608 assert(u->u_fblock[u->u_nfblocks].fb_type == t);
1609 assert(u->u_fblock[u->u_nfblocks].fb_block == b);
1610}
1611
1612/* Unwind a frame block. If preserve_tos is true, the TOS before
1613 * popping the blocks will be restored afterwards.
1614 */
1615static int
1616compiler_unwind_fblock(struct compiler *c, struct fblockinfo *info,
1617 int preserve_tos)
1618{
1619 switch (info->fb_type) {
1620 case WHILE_LOOP:
1621 return 1;
1622
1623 case FINALLY_END:
1624 ADDOP_I(c, POP_FINALLY, preserve_tos);
1625 return 1;
1626
1627 case FOR_LOOP:
1628 /* Pop the iterator */
1629 if (preserve_tos) {
1630 ADDOP(c, ROT_TWO);
1631 }
1632 ADDOP(c, POP_TOP);
1633 return 1;
1634
1635 case EXCEPT:
1636 ADDOP(c, POP_BLOCK);
1637 return 1;
1638
1639 case FINALLY_TRY:
1640 ADDOP(c, POP_BLOCK);
1641 ADDOP_JREL(c, CALL_FINALLY, info->fb_exit);
1642 return 1;
1643
1644 case WITH:
1645 case ASYNC_WITH:
1646 ADDOP(c, POP_BLOCK);
1647 if (preserve_tos) {
1648 ADDOP(c, ROT_TWO);
1649 }
1650 ADDOP(c, BEGIN_FINALLY);
1651 ADDOP(c, WITH_CLEANUP_START);
1652 if (info->fb_type == ASYNC_WITH) {
1653 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001654 ADDOP_LOAD_CONST(c, Py_None);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02001655 ADDOP(c, YIELD_FROM);
1656 }
1657 ADDOP(c, WITH_CLEANUP_FINISH);
1658 ADDOP_I(c, POP_FINALLY, 0);
1659 return 1;
1660
1661 case HANDLER_CLEANUP:
1662 if (preserve_tos) {
1663 ADDOP(c, ROT_FOUR);
1664 }
1665 if (info->fb_exit) {
1666 ADDOP(c, POP_BLOCK);
1667 ADDOP(c, POP_EXCEPT);
1668 ADDOP_JREL(c, CALL_FINALLY, info->fb_exit);
1669 }
1670 else {
1671 ADDOP(c, POP_EXCEPT);
1672 }
1673 return 1;
1674 }
1675 Py_UNREACHABLE();
1676}
1677
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001678/* Compile a sequence of statements, checking for a docstring
1679 and for annotations. */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001680
1681static int
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001682compiler_body(struct compiler *c, asdl_seq *stmts)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001683{
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001684 int i = 0;
1685 stmt_ty st;
Serhiy Storchaka143ce5c2018-05-30 10:56:16 +03001686 PyObject *docstring;
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001687
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001688 /* Set current line number to the line number of first statement.
1689 This way line number for SETUP_ANNOTATIONS will always
1690 coincide with the line number of first "real" statement in module.
1691 If body is empy, then lineno will be set later in assemble. */
1692 if (c->u->u_scope_type == COMPILER_SCOPE_MODULE &&
1693 !c->u->u_lineno && asdl_seq_LEN(stmts)) {
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001694 st = (stmt_ty)asdl_seq_GET(stmts, 0);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001695 c->u->u_lineno = st->lineno;
1696 }
1697 /* Every annotated class and module should have __annotations__. */
1698 if (find_ann(stmts)) {
1699 ADDOP(c, SETUP_ANNOTATIONS);
1700 }
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001701 if (!asdl_seq_LEN(stmts))
1702 return 1;
INADA Naokicb41b272017-02-23 00:31:59 +09001703 /* if not -OO mode, set docstring */
Serhiy Storchaka143ce5c2018-05-30 10:56:16 +03001704 if (c->c_optimize < 2) {
1705 docstring = _PyAST_GetDocString(stmts);
1706 if (docstring) {
1707 i = 1;
1708 st = (stmt_ty)asdl_seq_GET(stmts, 0);
1709 assert(st->kind == Expr_kind);
1710 VISIT(c, expr, st->v.Expr.value);
1711 if (!compiler_nameop(c, __doc__, Store))
1712 return 0;
1713 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001714 }
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001715 for (; i < asdl_seq_LEN(stmts); i++)
1716 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001717 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001718}
1719
1720static PyCodeObject *
1721compiler_mod(struct compiler *c, mod_ty mod)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00001722{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001723 PyCodeObject *co;
1724 int addNone = 1;
1725 static PyObject *module;
1726 if (!module) {
1727 module = PyUnicode_InternFromString("<module>");
1728 if (!module)
1729 return NULL;
1730 }
1731 /* Use 0 for firstlineno initially, will fixup in assemble(). */
Antoine Pitrou86a36b52011-11-25 18:56:07 +01001732 if (!compiler_enter_scope(c, module, COMPILER_SCOPE_MODULE, mod, 0))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001733 return NULL;
1734 switch (mod->kind) {
1735 case Module_kind:
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03001736 if (!compiler_body(c, mod->v.Module.body)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001737 compiler_exit_scope(c);
1738 return 0;
1739 }
1740 break;
1741 case Interactive_kind:
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001742 if (find_ann(mod->v.Interactive.body)) {
1743 ADDOP(c, SETUP_ANNOTATIONS);
1744 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001745 c->c_interactive = 1;
1746 VISIT_SEQ_IN_SCOPE(c, stmt,
1747 mod->v.Interactive.body);
1748 break;
1749 case Expression_kind:
1750 VISIT_IN_SCOPE(c, expr, mod->v.Expression.body);
1751 addNone = 0;
1752 break;
1753 case Suite_kind:
1754 PyErr_SetString(PyExc_SystemError,
1755 "suite should not be possible");
1756 return 0;
1757 default:
1758 PyErr_Format(PyExc_SystemError,
1759 "module kind %d should not be possible",
1760 mod->kind);
1761 return 0;
1762 }
1763 co = assemble(c, addNone);
1764 compiler_exit_scope(c);
1765 return co;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00001766}
1767
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001768/* The test for LOCAL must come before the test for FREE in order to
1769 handle classes where name is both local and free. The local var is
1770 a method and the free var is a free var referenced within a method.
Jeremy Hyltone36f7782001-01-19 03:21:30 +00001771*/
1772
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001773static int
1774get_ref_type(struct compiler *c, PyObject *name)
1775{
Victor Stinner0b1bc562013-05-16 22:17:17 +02001776 int scope;
Benjamin Peterson312595c2013-05-15 15:26:42 -05001777 if (c->u->u_scope_type == COMPILER_SCOPE_CLASS &&
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02001778 _PyUnicode_EqualToASCIIString(name, "__class__"))
Benjamin Peterson312595c2013-05-15 15:26:42 -05001779 return CELL;
Victor Stinner0b1bc562013-05-16 22:17:17 +02001780 scope = PyST_GetScope(c->u->u_ste, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001781 if (scope == 0) {
1782 char buf[350];
1783 PyOS_snprintf(buf, sizeof(buf),
Victor Stinner14e461d2013-08-26 22:28:21 +02001784 "unknown scope for %.100s in %.100s(%s)\n"
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001785 "symbols: %s\nlocals: %s\nglobals: %s",
Serhiy Storchakadf4518c2014-11-18 23:34:33 +02001786 PyUnicode_AsUTF8(name),
1787 PyUnicode_AsUTF8(c->u->u_name),
1788 PyUnicode_AsUTF8(PyObject_Repr(c->u->u_ste->ste_id)),
1789 PyUnicode_AsUTF8(PyObject_Repr(c->u->u_ste->ste_symbols)),
1790 PyUnicode_AsUTF8(PyObject_Repr(c->u->u_varnames)),
1791 PyUnicode_AsUTF8(PyObject_Repr(c->u->u_names))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001792 );
1793 Py_FatalError(buf);
1794 }
Tim Peters2a7f3842001-06-09 09:26:21 +00001795
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001796 return scope;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001797}
1798
1799static int
1800compiler_lookup_arg(PyObject *dict, PyObject *name)
1801{
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001802 PyObject *v;
1803 v = PyDict_GetItem(dict, name);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001804 if (v == NULL)
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00001805 return -1;
Christian Heimes217cfd12007-12-02 14:31:20 +00001806 return PyLong_AS_LONG(v);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001807}
1808
1809static int
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001810compiler_make_closure(struct compiler *c, PyCodeObject *co, Py_ssize_t flags, PyObject *qualname)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001811{
Victor Stinnerad9a0662013-11-19 22:23:20 +01001812 Py_ssize_t i, free = PyCode_GetNumFree(co);
Antoine Pitrou86a36b52011-11-25 18:56:07 +01001813 if (qualname == NULL)
1814 qualname = co->co_name;
1815
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001816 if (free) {
1817 for (i = 0; i < free; ++i) {
1818 /* Bypass com_addop_varname because it will generate
1819 LOAD_DEREF but LOAD_CLOSURE is needed.
1820 */
1821 PyObject *name = PyTuple_GET_ITEM(co->co_freevars, i);
1822 int arg, reftype;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001823
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001824 /* Special case: If a class contains a method with a
1825 free variable that has the same name as a method,
1826 the name will be considered free *and* local in the
1827 class. It should be handled by the closure, as
1828 well as by the normal name loookup logic.
1829 */
1830 reftype = get_ref_type(c, name);
1831 if (reftype == CELL)
1832 arg = compiler_lookup_arg(c->u->u_cellvars, name);
1833 else /* (reftype == FREE) */
1834 arg = compiler_lookup_arg(c->u->u_freevars, name);
1835 if (arg == -1) {
1836 fprintf(stderr,
1837 "lookup %s in %s %d %d\n"
1838 "freevars of %s: %s\n",
1839 PyUnicode_AsUTF8(PyObject_Repr(name)),
1840 PyUnicode_AsUTF8(c->u->u_name),
1841 reftype, arg,
1842 PyUnicode_AsUTF8(co->co_name),
1843 PyUnicode_AsUTF8(PyObject_Repr(co->co_freevars)));
1844 Py_FatalError("compiler_make_closure()");
1845 }
1846 ADDOP_I(c, LOAD_CLOSURE, arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001847 }
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001848 flags |= 0x08;
1849 ADDOP_I(c, BUILD_TUPLE, free);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001850 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001851 ADDOP_LOAD_CONST(c, (PyObject*)co);
1852 ADDOP_LOAD_CONST(c, qualname);
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001853 ADDOP_I(c, MAKE_FUNCTION, flags);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001854 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001855}
1856
1857static int
1858compiler_decorators(struct compiler *c, asdl_seq* decos)
1859{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001860 int i;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001861
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001862 if (!decos)
1863 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001864
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001865 for (i = 0; i < asdl_seq_LEN(decos); i++) {
1866 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i));
1867 }
1868 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001869}
1870
1871static int
Guido van Rossum4f72a782006-10-27 23:31:49 +00001872compiler_visit_kwonlydefaults(struct compiler *c, asdl_seq *kwonlyargs,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001873 asdl_seq *kw_defaults)
Guido van Rossum4f72a782006-10-27 23:31:49 +00001874{
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001875 /* Push a dict of keyword-only default values.
1876
1877 Return 0 on error, -1 if no dict pushed, 1 if a dict is pushed.
1878 */
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001879 int i;
1880 PyObject *keys = NULL;
1881
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001882 for (i = 0; i < asdl_seq_LEN(kwonlyargs); i++) {
1883 arg_ty arg = asdl_seq_GET(kwonlyargs, i);
1884 expr_ty default_ = asdl_seq_GET(kw_defaults, i);
1885 if (default_) {
Benjamin Peterson32c59b62012-04-17 19:53:21 -04001886 PyObject *mangled = _Py_Mangle(c->u->u_private, arg->arg);
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001887 if (!mangled) {
1888 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001889 }
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001890 if (keys == NULL) {
1891 keys = PyList_New(1);
1892 if (keys == NULL) {
1893 Py_DECREF(mangled);
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001894 return 0;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001895 }
1896 PyList_SET_ITEM(keys, 0, mangled);
1897 }
1898 else {
1899 int res = PyList_Append(keys, mangled);
1900 Py_DECREF(mangled);
1901 if (res == -1) {
1902 goto error;
1903 }
1904 }
1905 if (!compiler_visit_expr(c, default_)) {
1906 goto error;
1907 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001908 }
1909 }
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001910 if (keys != NULL) {
1911 Py_ssize_t default_count = PyList_GET_SIZE(keys);
1912 PyObject *keys_tuple = PyList_AsTuple(keys);
1913 Py_DECREF(keys);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03001914 ADDOP_LOAD_CONST_NEW(c, keys_tuple);
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001915 ADDOP_I(c, BUILD_CONST_KEY_MAP, default_count);
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001916 assert(default_count > 0);
1917 return 1;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001918 }
1919 else {
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001920 return -1;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001921 }
1922
1923error:
1924 Py_XDECREF(keys);
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001925 return 0;
Guido van Rossum4f72a782006-10-27 23:31:49 +00001926}
1927
1928static int
Guido van Rossum95e4d582018-01-26 08:20:18 -08001929compiler_visit_annexpr(struct compiler *c, expr_ty annotation)
1930{
Serhiy Storchaka64fddc42018-05-17 06:17:48 +03001931 ADDOP_LOAD_CONST_NEW(c, _PyAST_ExprAsUnicode(annotation));
Guido van Rossum95e4d582018-01-26 08:20:18 -08001932 return 1;
1933}
1934
1935static int
Neal Norwitzc1505362006-12-28 06:47:50 +00001936compiler_visit_argannotation(struct compiler *c, identifier id,
1937 expr_ty annotation, PyObject *names)
1938{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001939 if (annotation) {
Victor Stinner065efc32014-02-18 22:07:56 +01001940 PyObject *mangled;
Guido van Rossum95e4d582018-01-26 08:20:18 -08001941 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) {
1942 VISIT(c, annexpr, annotation)
1943 }
1944 else {
1945 VISIT(c, expr, annotation);
1946 }
Victor Stinner065efc32014-02-18 22:07:56 +01001947 mangled = _Py_Mangle(c->u->u_private, id);
Yury Selivanov34ce99f2014-02-18 12:49:41 -05001948 if (!mangled)
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001949 return 0;
Yury Selivanov34ce99f2014-02-18 12:49:41 -05001950 if (PyList_Append(names, mangled) < 0) {
1951 Py_DECREF(mangled);
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001952 return 0;
Yury Selivanov34ce99f2014-02-18 12:49:41 -05001953 }
1954 Py_DECREF(mangled);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001955 }
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001956 return 1;
Neal Norwitzc1505362006-12-28 06:47:50 +00001957}
1958
1959static int
1960compiler_visit_argannotations(struct compiler *c, asdl_seq* args,
1961 PyObject *names)
1962{
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001963 int i;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001964 for (i = 0; i < asdl_seq_LEN(args); i++) {
1965 arg_ty arg = (arg_ty)asdl_seq_GET(args, i);
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001966 if (!compiler_visit_argannotation(
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001967 c,
1968 arg->arg,
1969 arg->annotation,
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001970 names))
1971 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001972 }
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001973 return 1;
Neal Norwitzc1505362006-12-28 06:47:50 +00001974}
1975
1976static int
1977compiler_visit_annotations(struct compiler *c, arguments_ty args,
1978 expr_ty returns)
1979{
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001980 /* Push arg annotation dict.
Serhiy Storchaka64204de2016-06-12 17:36:24 +03001981 The expressions are evaluated out-of-order wrt the source code.
Neal Norwitzc1505362006-12-28 06:47:50 +00001982
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03001983 Return 0 on error, -1 if no dict pushed, 1 if a dict is pushed.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001984 */
1985 static identifier return_str;
1986 PyObject *names;
Victor Stinnerad9a0662013-11-19 22:23:20 +01001987 Py_ssize_t len;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001988 names = PyList_New(0);
1989 if (!names)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03001990 return 0;
Neal Norwitzc1505362006-12-28 06:47:50 +00001991
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001992 if (!compiler_visit_argannotations(c, args->args, names))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001993 goto error;
Benjamin Petersoncda75be2013-03-18 10:48:58 -07001994 if (args->vararg && args->vararg->annotation &&
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001995 !compiler_visit_argannotation(c, args->vararg->arg,
Benjamin Petersoncda75be2013-03-18 10:48:58 -07001996 args->vararg->annotation, names))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001997 goto error;
Yury Selivanovf315c1c2015-07-23 09:10:44 +03001998 if (!compiler_visit_argannotations(c, args->kwonlyargs, names))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001999 goto error;
Benjamin Petersoncda75be2013-03-18 10:48:58 -07002000 if (args->kwarg && args->kwarg->annotation &&
Yury Selivanovf315c1c2015-07-23 09:10:44 +03002001 !compiler_visit_argannotation(c, args->kwarg->arg,
Benjamin Petersoncda75be2013-03-18 10:48:58 -07002002 args->kwarg->annotation, names))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002003 goto error;
Neal Norwitzc1505362006-12-28 06:47:50 +00002004
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002005 if (!return_str) {
2006 return_str = PyUnicode_InternFromString("return");
2007 if (!return_str)
2008 goto error;
2009 }
Yury Selivanovf315c1c2015-07-23 09:10:44 +03002010 if (!compiler_visit_argannotation(c, return_str, returns, names)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002011 goto error;
2012 }
2013
2014 len = PyList_GET_SIZE(names);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002015 if (len) {
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002016 PyObject *keytuple = PyList_AsTuple(names);
2017 Py_DECREF(names);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002018 ADDOP_LOAD_CONST_NEW(c, keytuple);
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002019 ADDOP_I(c, BUILD_CONST_KEY_MAP, len);
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002020 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002021 }
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002022 else {
2023 Py_DECREF(names);
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002024 return -1;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002025 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002026
2027error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002028 Py_DECREF(names);
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03002029 return 0;
Neal Norwitzc1505362006-12-28 06:47:50 +00002030}
2031
2032static int
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002033compiler_visit_defaults(struct compiler *c, arguments_ty args)
2034{
2035 VISIT_SEQ(c, expr, args->defaults);
2036 ADDOP_I(c, BUILD_TUPLE, asdl_seq_LEN(args->defaults));
2037 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002038}
2039
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002040static Py_ssize_t
2041compiler_default_arguments(struct compiler *c, arguments_ty args)
2042{
2043 Py_ssize_t funcflags = 0;
2044 if (args->defaults && asdl_seq_LEN(args->defaults) > 0) {
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002045 if (!compiler_visit_defaults(c, args))
2046 return -1;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002047 funcflags |= 0x01;
2048 }
2049 if (args->kwonlyargs) {
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002050 int res = compiler_visit_kwonlydefaults(c, args->kwonlyargs,
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002051 args->kw_defaults);
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002052 if (res == 0) {
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002053 return -1;
2054 }
2055 else if (res > 0) {
2056 funcflags |= 0x02;
2057 }
2058 }
2059 return funcflags;
2060}
2061
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002062static int
Yury Selivanov75445082015-05-11 22:57:16 -04002063compiler_function(struct compiler *c, stmt_ty s, int is_async)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002064{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002065 PyCodeObject *co;
Serhiy Storchaka143ce5c2018-05-30 10:56:16 +03002066 PyObject *qualname, *docstring = NULL;
Yury Selivanov75445082015-05-11 22:57:16 -04002067 arguments_ty args;
2068 expr_ty returns;
2069 identifier name;
2070 asdl_seq* decos;
2071 asdl_seq *body;
INADA Naokicb41b272017-02-23 00:31:59 +09002072 Py_ssize_t i, funcflags;
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002073 int annotations;
Yury Selivanov75445082015-05-11 22:57:16 -04002074 int scope_type;
Serhiy Storchaka95b6acf2018-10-30 13:16:02 +02002075 int firstlineno;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002076
Yury Selivanov75445082015-05-11 22:57:16 -04002077 if (is_async) {
2078 assert(s->kind == AsyncFunctionDef_kind);
2079
2080 args = s->v.AsyncFunctionDef.args;
2081 returns = s->v.AsyncFunctionDef.returns;
2082 decos = s->v.AsyncFunctionDef.decorator_list;
2083 name = s->v.AsyncFunctionDef.name;
2084 body = s->v.AsyncFunctionDef.body;
2085
2086 scope_type = COMPILER_SCOPE_ASYNC_FUNCTION;
2087 } else {
2088 assert(s->kind == FunctionDef_kind);
2089
2090 args = s->v.FunctionDef.args;
2091 returns = s->v.FunctionDef.returns;
2092 decos = s->v.FunctionDef.decorator_list;
2093 name = s->v.FunctionDef.name;
2094 body = s->v.FunctionDef.body;
2095
2096 scope_type = COMPILER_SCOPE_FUNCTION;
2097 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002098
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002099 if (!compiler_decorators(c, decos))
2100 return 0;
Guido van Rossum4f72a782006-10-27 23:31:49 +00002101
Serhiy Storchaka95b6acf2018-10-30 13:16:02 +02002102 firstlineno = s->lineno;
2103 if (asdl_seq_LEN(decos)) {
2104 firstlineno = ((expr_ty)asdl_seq_GET(decos, 0))->lineno;
2105 }
2106
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002107 funcflags = compiler_default_arguments(c, args);
2108 if (funcflags == -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002109 return 0;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002110 }
2111
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002112 annotations = compiler_visit_annotations(c, args, returns);
2113 if (annotations == 0) {
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002114 return 0;
2115 }
Serhiy Storchaka607f8a52016-06-15 20:07:53 +03002116 else if (annotations > 0) {
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002117 funcflags |= 0x04;
2118 }
2119
Serhiy Storchaka95b6acf2018-10-30 13:16:02 +02002120 if (!compiler_enter_scope(c, name, scope_type, (void *)s, firstlineno)) {
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002121 return 0;
2122 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002123
INADA Naokicb41b272017-02-23 00:31:59 +09002124 /* if not -OO mode, add docstring */
Serhiy Storchaka143ce5c2018-05-30 10:56:16 +03002125 if (c->c_optimize < 2) {
2126 docstring = _PyAST_GetDocString(body);
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03002127 }
Serhiy Storchaka143ce5c2018-05-30 10:56:16 +03002128 if (compiler_add_const(c, docstring ? docstring : Py_None) < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002129 compiler_exit_scope(c);
2130 return 0;
2131 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002132
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002133 c->u->u_argcount = asdl_seq_LEN(args->args);
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01002134 c->u->u_posonlyargcount = asdl_seq_LEN(args->posonlyargs);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002135 c->u->u_kwonlyargcount = asdl_seq_LEN(args->kwonlyargs);
INADA Naokicb41b272017-02-23 00:31:59 +09002136 VISIT_SEQ_IN_SCOPE(c, stmt, body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002137 co = assemble(c, 1);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04002138 qualname = c->u->u_qualname;
2139 Py_INCREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002140 compiler_exit_scope(c);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04002141 if (co == NULL) {
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002142 Py_XDECREF(qualname);
2143 Py_XDECREF(co);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002144 return 0;
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002145 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002146
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002147 compiler_make_closure(c, co, funcflags, qualname);
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002148 Py_DECREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002149 Py_DECREF(co);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002150
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002151 /* decorators */
2152 for (i = 0; i < asdl_seq_LEN(decos); i++) {
2153 ADDOP_I(c, CALL_FUNCTION, 1);
2154 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002155
Yury Selivanov75445082015-05-11 22:57:16 -04002156 return compiler_nameop(c, name, Store);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002157}
2158
2159static int
2160compiler_class(struct compiler *c, stmt_ty s)
2161{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002162 PyCodeObject *co;
2163 PyObject *str;
Serhiy Storchaka95b6acf2018-10-30 13:16:02 +02002164 int i, firstlineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002165 asdl_seq* decos = s->v.ClassDef.decorator_list;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002166
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002167 if (!compiler_decorators(c, decos))
2168 return 0;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002169
Serhiy Storchaka95b6acf2018-10-30 13:16:02 +02002170 firstlineno = s->lineno;
2171 if (asdl_seq_LEN(decos)) {
2172 firstlineno = ((expr_ty)asdl_seq_GET(decos, 0))->lineno;
2173 }
2174
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002175 /* ultimately generate code for:
2176 <name> = __build_class__(<func>, <name>, *<bases>, **<keywords>)
2177 where:
2178 <func> is a function/closure created from the class body;
2179 it has a single argument (__locals__) where the dict
2180 (or MutableSequence) representing the locals is passed
2181 <name> is the class name
2182 <bases> is the positional arguments and *varargs argument
2183 <keywords> is the keyword arguments and **kwds argument
2184 This borrows from compiler_call.
2185 */
Guido van Rossum52cc1d82007-03-18 15:41:51 +00002186
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002187 /* 1. compile the class body into a code object */
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002188 if (!compiler_enter_scope(c, s->v.ClassDef.name,
Serhiy Storchaka95b6acf2018-10-30 13:16:02 +02002189 COMPILER_SCOPE_CLASS, (void *)s, firstlineno))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002190 return 0;
2191 /* this block represents what we do in the new scope */
2192 {
2193 /* use the class name for name mangling */
2194 Py_INCREF(s->v.ClassDef.name);
Serhiy Storchaka48842712016-04-06 09:45:48 +03002195 Py_XSETREF(c->u->u_private, s->v.ClassDef.name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002196 /* load (global) __name__ ... */
2197 str = PyUnicode_InternFromString("__name__");
2198 if (!str || !compiler_nameop(c, str, Load)) {
2199 Py_XDECREF(str);
2200 compiler_exit_scope(c);
2201 return 0;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002202 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002203 Py_DECREF(str);
2204 /* ... and store it as __module__ */
2205 str = PyUnicode_InternFromString("__module__");
2206 if (!str || !compiler_nameop(c, str, Store)) {
2207 Py_XDECREF(str);
2208 compiler_exit_scope(c);
2209 return 0;
2210 }
2211 Py_DECREF(str);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04002212 assert(c->u->u_qualname);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002213 ADDOP_LOAD_CONST(c, c->u->u_qualname);
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002214 str = PyUnicode_InternFromString("__qualname__");
2215 if (!str || !compiler_nameop(c, str, Store)) {
2216 Py_XDECREF(str);
2217 compiler_exit_scope(c);
2218 return 0;
2219 }
2220 Py_DECREF(str);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002221 /* compile the body proper */
Serhiy Storchaka73cbe7a2018-05-29 12:04:55 +03002222 if (!compiler_body(c, s->v.ClassDef.body)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002223 compiler_exit_scope(c);
2224 return 0;
2225 }
Nick Coghlan19d24672016-12-05 16:47:55 +10002226 /* Return __classcell__ if it is referenced, otherwise return None */
Benjamin Peterson312595c2013-05-15 15:26:42 -05002227 if (c->u->u_ste->ste_needs_class_closure) {
Nick Coghlan19d24672016-12-05 16:47:55 +10002228 /* Store __classcell__ into class namespace & return it */
Benjamin Peterson312595c2013-05-15 15:26:42 -05002229 str = PyUnicode_InternFromString("__class__");
2230 if (str == NULL) {
2231 compiler_exit_scope(c);
2232 return 0;
2233 }
2234 i = compiler_lookup_arg(c->u->u_cellvars, str);
2235 Py_DECREF(str);
Victor Stinner98e818b2013-11-05 18:07:34 +01002236 if (i < 0) {
2237 compiler_exit_scope(c);
2238 return 0;
2239 }
Benjamin Peterson312595c2013-05-15 15:26:42 -05002240 assert(i == 0);
Nick Coghlan944368e2016-09-11 14:45:49 +10002241
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002242 ADDOP_I(c, LOAD_CLOSURE, i);
Nick Coghlan19d24672016-12-05 16:47:55 +10002243 ADDOP(c, DUP_TOP);
Nick Coghlan944368e2016-09-11 14:45:49 +10002244 str = PyUnicode_InternFromString("__classcell__");
2245 if (!str || !compiler_nameop(c, str, Store)) {
2246 Py_XDECREF(str);
2247 compiler_exit_scope(c);
2248 return 0;
2249 }
2250 Py_DECREF(str);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002251 }
Benjamin Peterson312595c2013-05-15 15:26:42 -05002252 else {
Nick Coghlan19d24672016-12-05 16:47:55 +10002253 /* No methods referenced __class__, so just return None */
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +02002254 assert(PyDict_GET_SIZE(c->u->u_cellvars) == 0);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002255 ADDOP_LOAD_CONST(c, Py_None);
Benjamin Peterson312595c2013-05-15 15:26:42 -05002256 }
Nick Coghlan19d24672016-12-05 16:47:55 +10002257 ADDOP_IN_SCOPE(c, RETURN_VALUE);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002258 /* create the code object */
2259 co = assemble(c, 1);
2260 }
2261 /* leave the new scope */
2262 compiler_exit_scope(c);
2263 if (co == NULL)
2264 return 0;
Guido van Rossumd59da4b2007-05-22 18:11:13 +00002265
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002266 /* 2. load the 'build_class' function */
2267 ADDOP(c, LOAD_BUILD_CLASS);
2268
2269 /* 3. load a function (or closure) made from the code object */
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002270 compiler_make_closure(c, co, 0, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002271 Py_DECREF(co);
2272
2273 /* 4. load class name */
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002274 ADDOP_LOAD_CONST(c, s->v.ClassDef.name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002275
2276 /* 5. generate the rest of the code for the call */
2277 if (!compiler_call_helper(c, 2,
2278 s->v.ClassDef.bases,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002279 s->v.ClassDef.keywords))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002280 return 0;
2281
2282 /* 6. apply decorators */
2283 for (i = 0; i < asdl_seq_LEN(decos); i++) {
2284 ADDOP_I(c, CALL_FUNCTION, 1);
2285 }
2286
2287 /* 7. store into <name> */
2288 if (!compiler_nameop(c, s->v.ClassDef.name, Store))
2289 return 0;
2290 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002291}
2292
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02002293/* Return 0 if the expression is a constant value except named singletons.
2294 Return 1 otherwise. */
2295static int
2296check_is_arg(expr_ty e)
2297{
2298 if (e->kind != Constant_kind) {
2299 return 1;
2300 }
2301 PyObject *value = e->v.Constant.value;
2302 return (value == Py_None
2303 || value == Py_False
2304 || value == Py_True
2305 || value == Py_Ellipsis);
2306}
2307
2308/* Check operands of identity chacks ("is" and "is not").
2309 Emit a warning if any operand is a constant except named singletons.
2310 Return 0 on error.
2311 */
2312static int
2313check_compare(struct compiler *c, expr_ty e)
2314{
2315 Py_ssize_t i, n;
2316 int left = check_is_arg(e->v.Compare.left);
2317 n = asdl_seq_LEN(e->v.Compare.ops);
2318 for (i = 0; i < n; i++) {
2319 cmpop_ty op = (cmpop_ty)asdl_seq_GET(e->v.Compare.ops, i);
2320 int right = check_is_arg((expr_ty)asdl_seq_GET(e->v.Compare.comparators, i));
2321 if (op == Is || op == IsNot) {
2322 if (!right || !left) {
2323 const char *msg = (op == Is)
2324 ? "\"is\" with a literal. Did you mean \"==\"?"
2325 : "\"is not\" with a literal. Did you mean \"!=\"?";
2326 return compiler_warn(c, msg);
2327 }
2328 }
2329 left = right;
2330 }
2331 return 1;
2332}
2333
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002334static int
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002335cmpop(cmpop_ty op)
2336{
2337 switch (op) {
2338 case Eq:
2339 return PyCmp_EQ;
2340 case NotEq:
2341 return PyCmp_NE;
2342 case Lt:
2343 return PyCmp_LT;
2344 case LtE:
2345 return PyCmp_LE;
2346 case Gt:
2347 return PyCmp_GT;
2348 case GtE:
2349 return PyCmp_GE;
2350 case Is:
2351 return PyCmp_IS;
2352 case IsNot:
2353 return PyCmp_IS_NOT;
2354 case In:
2355 return PyCmp_IN;
2356 case NotIn:
2357 return PyCmp_NOT_IN;
2358 default:
2359 return PyCmp_BAD;
2360 }
2361}
2362
2363static int
2364compiler_jump_if(struct compiler *c, expr_ty e, basicblock *next, int cond)
2365{
2366 switch (e->kind) {
2367 case UnaryOp_kind:
2368 if (e->v.UnaryOp.op == Not)
2369 return compiler_jump_if(c, e->v.UnaryOp.operand, next, !cond);
2370 /* fallback to general implementation */
2371 break;
2372 case BoolOp_kind: {
2373 asdl_seq *s = e->v.BoolOp.values;
2374 Py_ssize_t i, n = asdl_seq_LEN(s) - 1;
2375 assert(n >= 0);
2376 int cond2 = e->v.BoolOp.op == Or;
2377 basicblock *next2 = next;
2378 if (!cond2 != !cond) {
2379 next2 = compiler_new_block(c);
2380 if (next2 == NULL)
2381 return 0;
2382 }
2383 for (i = 0; i < n; ++i) {
2384 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, i), next2, cond2))
2385 return 0;
2386 }
2387 if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, n), next, cond))
2388 return 0;
2389 if (next2 != next)
2390 compiler_use_next_block(c, next2);
2391 return 1;
2392 }
2393 case IfExp_kind: {
2394 basicblock *end, *next2;
2395 end = compiler_new_block(c);
2396 if (end == NULL)
2397 return 0;
2398 next2 = compiler_new_block(c);
2399 if (next2 == NULL)
2400 return 0;
2401 if (!compiler_jump_if(c, e->v.IfExp.test, next2, 0))
2402 return 0;
2403 if (!compiler_jump_if(c, e->v.IfExp.body, next, cond))
2404 return 0;
2405 ADDOP_JREL(c, JUMP_FORWARD, end);
2406 compiler_use_next_block(c, next2);
2407 if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond))
2408 return 0;
2409 compiler_use_next_block(c, end);
2410 return 1;
2411 }
2412 case Compare_kind: {
2413 Py_ssize_t i, n = asdl_seq_LEN(e->v.Compare.ops) - 1;
2414 if (n > 0) {
Serhiy Storchaka45835252019-02-16 08:29:46 +02002415 if (!check_compare(c, e)) {
2416 return 0;
2417 }
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002418 basicblock *cleanup = compiler_new_block(c);
2419 if (cleanup == NULL)
2420 return 0;
2421 VISIT(c, expr, e->v.Compare.left);
2422 for (i = 0; i < n; i++) {
2423 VISIT(c, expr,
2424 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i));
2425 ADDOP(c, DUP_TOP);
2426 ADDOP(c, ROT_THREE);
2427 ADDOP_I(c, COMPARE_OP,
2428 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, i))));
2429 ADDOP_JABS(c, POP_JUMP_IF_FALSE, cleanup);
2430 NEXT_BLOCK(c);
2431 }
2432 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n));
2433 ADDOP_I(c, COMPARE_OP,
2434 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, n))));
2435 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next);
2436 basicblock *end = compiler_new_block(c);
2437 if (end == NULL)
2438 return 0;
2439 ADDOP_JREL(c, JUMP_FORWARD, end);
2440 compiler_use_next_block(c, cleanup);
2441 ADDOP(c, POP_TOP);
2442 if (!cond) {
2443 ADDOP_JREL(c, JUMP_FORWARD, next);
2444 }
2445 compiler_use_next_block(c, end);
2446 return 1;
2447 }
2448 /* fallback to general implementation */
2449 break;
2450 }
2451 default:
2452 /* fallback to general implementation */
2453 break;
2454 }
2455
2456 /* general implementation */
2457 VISIT(c, expr, e);
2458 ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next);
2459 return 1;
2460}
2461
2462static int
Thomas Woutersdca3b9c2006-02-27 00:24:13 +00002463compiler_ifexp(struct compiler *c, expr_ty e)
2464{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002465 basicblock *end, *next;
2466
2467 assert(e->kind == IfExp_kind);
2468 end = compiler_new_block(c);
2469 if (end == NULL)
2470 return 0;
2471 next = compiler_new_block(c);
2472 if (next == NULL)
2473 return 0;
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002474 if (!compiler_jump_if(c, e->v.IfExp.test, next, 0))
2475 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002476 VISIT(c, expr, e->v.IfExp.body);
2477 ADDOP_JREL(c, JUMP_FORWARD, end);
2478 compiler_use_next_block(c, next);
2479 VISIT(c, expr, e->v.IfExp.orelse);
2480 compiler_use_next_block(c, end);
2481 return 1;
Thomas Woutersdca3b9c2006-02-27 00:24:13 +00002482}
2483
2484static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002485compiler_lambda(struct compiler *c, expr_ty e)
2486{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002487 PyCodeObject *co;
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002488 PyObject *qualname;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002489 static identifier name;
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002490 Py_ssize_t funcflags;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002491 arguments_ty args = e->v.Lambda.args;
2492 assert(e->kind == Lambda_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002493
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002494 if (!name) {
2495 name = PyUnicode_InternFromString("<lambda>");
2496 if (!name)
2497 return 0;
2498 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002499
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002500 funcflags = compiler_default_arguments(c, args);
2501 if (funcflags == -1) {
2502 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002503 }
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002504
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04002505 if (!compiler_enter_scope(c, name, COMPILER_SCOPE_LAMBDA,
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002506 (void *)e, e->lineno))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002507 return 0;
Neal Norwitz4737b232005-11-19 23:58:29 +00002508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002509 /* Make None the first constant, so the lambda can't have a
2510 docstring. */
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002511 if (compiler_add_const(c, Py_None) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002512 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002513
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002514 c->u->u_argcount = asdl_seq_LEN(args->args);
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01002515 c->u->u_posonlyargcount = asdl_seq_LEN(args->posonlyargs);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002516 c->u->u_kwonlyargcount = asdl_seq_LEN(args->kwonlyargs);
2517 VISIT_IN_SCOPE(c, expr, e->v.Lambda.body);
2518 if (c->u->u_ste->ste_generator) {
Serhiy Storchakac775ad62015-03-11 18:20:35 +02002519 co = assemble(c, 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002520 }
2521 else {
2522 ADDOP_IN_SCOPE(c, RETURN_VALUE);
Serhiy Storchakac775ad62015-03-11 18:20:35 +02002523 co = assemble(c, 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002524 }
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04002525 qualname = c->u->u_qualname;
2526 Py_INCREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002527 compiler_exit_scope(c);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04002528 if (co == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002529 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002530
Serhiy Storchaka64204de2016-06-12 17:36:24 +03002531 compiler_make_closure(c, co, funcflags, qualname);
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002532 Py_DECREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002533 Py_DECREF(co);
2534
2535 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002536}
2537
2538static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002539compiler_if(struct compiler *c, stmt_ty s)
2540{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002541 basicblock *end, *next;
2542 int constant;
2543 assert(s->kind == If_kind);
2544 end = compiler_new_block(c);
2545 if (end == NULL)
2546 return 0;
2547
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +02002548 constant = expr_constant(s->v.If.test);
Pablo Galindoaf8646c2019-05-17 11:37:08 +01002549 /* constant = 0: "if 0" Leave the optimizations to
2550 * the pephole optimizer to check for syntax errors
2551 * in the block.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002552 * constant = 1: "if 1", "if 2", ...
2553 * constant = -1: rest */
Pablo Galindoaf8646c2019-05-17 11:37:08 +01002554 if (constant == 1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002555 VISIT_SEQ(c, stmt, s->v.If.body);
2556 } else {
Antoine Pitroue7811fc2014-09-18 03:06:50 +02002557 if (asdl_seq_LEN(s->v.If.orelse)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002558 next = compiler_new_block(c);
2559 if (next == NULL)
2560 return 0;
2561 }
2562 else
2563 next = end;
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002564 if (!compiler_jump_if(c, s->v.If.test, next, 0))
2565 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002566 VISIT_SEQ(c, stmt, s->v.If.body);
Antoine Pitroue7811fc2014-09-18 03:06:50 +02002567 if (asdl_seq_LEN(s->v.If.orelse)) {
2568 ADDOP_JREL(c, JUMP_FORWARD, end);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002569 compiler_use_next_block(c, next);
2570 VISIT_SEQ(c, stmt, s->v.If.orelse);
2571 }
2572 }
2573 compiler_use_next_block(c, end);
2574 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002575}
2576
2577static int
2578compiler_for(struct compiler *c, stmt_ty s)
2579{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002580 basicblock *start, *cleanup, *end;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002581
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002582 start = compiler_new_block(c);
2583 cleanup = compiler_new_block(c);
2584 end = compiler_new_block(c);
2585 if (start == NULL || end == NULL || cleanup == NULL)
2586 return 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002587
2588 if (!compiler_push_fblock(c, FOR_LOOP, start, end))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002589 return 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002590
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002591 VISIT(c, expr, s->v.For.iter);
2592 ADDOP(c, GET_ITER);
2593 compiler_use_next_block(c, start);
2594 ADDOP_JREL(c, FOR_ITER, cleanup);
2595 VISIT(c, expr, s->v.For.target);
2596 VISIT_SEQ(c, stmt, s->v.For.body);
2597 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
2598 compiler_use_next_block(c, cleanup);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002599
2600 compiler_pop_fblock(c, FOR_LOOP, start);
2601
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002602 VISIT_SEQ(c, stmt, s->v.For.orelse);
2603 compiler_use_next_block(c, end);
2604 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002605}
2606
Yury Selivanov75445082015-05-11 22:57:16 -04002607
2608static int
2609compiler_async_for(struct compiler *c, stmt_ty s)
2610{
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002611 basicblock *start, *except, *end;
Zsolt Dollensteine2396502018-04-27 08:58:56 -07002612 if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION) {
2613 return compiler_error(c, "'async for' outside async function");
2614 }
2615
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002616 start = compiler_new_block(c);
Yury Selivanov75445082015-05-11 22:57:16 -04002617 except = compiler_new_block(c);
2618 end = compiler_new_block(c);
Yury Selivanov75445082015-05-11 22:57:16 -04002619
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002620 if (start == NULL || except == NULL || end == NULL)
Yury Selivanov75445082015-05-11 22:57:16 -04002621 return 0;
2622
2623 VISIT(c, expr, s->v.AsyncFor.iter);
2624 ADDOP(c, GET_AITER);
Yury Selivanov75445082015-05-11 22:57:16 -04002625
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002626 compiler_use_next_block(c, start);
2627 if (!compiler_push_fblock(c, FOR_LOOP, start, end))
2628 return 0;
Yury Selivanov75445082015-05-11 22:57:16 -04002629
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002630 /* SETUP_FINALLY to guard the __anext__ call */
2631 ADDOP_JREL(c, SETUP_FINALLY, except);
Yury Selivanov75445082015-05-11 22:57:16 -04002632 ADDOP(c, GET_ANEXT);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002633 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04002634 ADDOP(c, YIELD_FROM);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002635 ADDOP(c, POP_BLOCK); /* for SETUP_FINALLY */
Yury Selivanov75445082015-05-11 22:57:16 -04002636
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002637 /* Success block for __anext__ */
2638 VISIT(c, expr, s->v.AsyncFor.target);
2639 VISIT_SEQ(c, stmt, s->v.AsyncFor.body);
2640 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
2641
2642 compiler_pop_fblock(c, FOR_LOOP, start);
Yury Selivanov75445082015-05-11 22:57:16 -04002643
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002644 /* Except block for __anext__ */
Yury Selivanov75445082015-05-11 22:57:16 -04002645 compiler_use_next_block(c, except);
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002646 ADDOP(c, END_ASYNC_FOR);
Yury Selivanov75445082015-05-11 22:57:16 -04002647
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002648 /* `else` block */
Yury Selivanov75445082015-05-11 22:57:16 -04002649 VISIT_SEQ(c, stmt, s->v.For.orelse);
2650
2651 compiler_use_next_block(c, end);
2652
2653 return 1;
2654}
2655
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002656static int
2657compiler_while(struct compiler *c, stmt_ty s)
2658{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002659 basicblock *loop, *orelse, *end, *anchor = NULL;
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +02002660 int constant = expr_constant(s->v.While.test);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002661
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002662 if (constant == 0) {
2663 if (s->v.While.orelse)
2664 VISIT_SEQ(c, stmt, s->v.While.orelse);
2665 return 1;
2666 }
2667 loop = compiler_new_block(c);
2668 end = compiler_new_block(c);
2669 if (constant == -1) {
2670 anchor = compiler_new_block(c);
2671 if (anchor == NULL)
2672 return 0;
2673 }
2674 if (loop == NULL || end == NULL)
2675 return 0;
2676 if (s->v.While.orelse) {
2677 orelse = compiler_new_block(c);
2678 if (orelse == NULL)
2679 return 0;
2680 }
2681 else
2682 orelse = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002683
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002684 compiler_use_next_block(c, loop);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002685 if (!compiler_push_fblock(c, WHILE_LOOP, loop, end))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002686 return 0;
2687 if (constant == -1) {
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002688 if (!compiler_jump_if(c, s->v.While.test, anchor, 0))
2689 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002690 }
2691 VISIT_SEQ(c, stmt, s->v.While.body);
2692 ADDOP_JABS(c, JUMP_ABSOLUTE, loop);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002693
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002694 /* XXX should the two POP instructions be in a separate block
2695 if there is no else clause ?
2696 */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002697
Benjamin Peterson3cda0ed2014-12-13 16:06:19 -05002698 if (constant == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002699 compiler_use_next_block(c, anchor);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002700 compiler_pop_fblock(c, WHILE_LOOP, loop);
2701
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002702 if (orelse != NULL) /* what if orelse is just pass? */
2703 VISIT_SEQ(c, stmt, s->v.While.orelse);
2704 compiler_use_next_block(c, end);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002705
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002706 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002707}
2708
2709static int
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002710compiler_return(struct compiler *c, stmt_ty s)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002711{
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002712 int preserve_tos = ((s->v.Return.value != NULL) &&
Serhiy Storchaka3f228112018-09-27 17:42:37 +03002713 (s->v.Return.value->kind != Constant_kind));
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002714 if (c->u->u_ste->ste_type != FunctionBlock)
2715 return compiler_error(c, "'return' outside function");
2716 if (s->v.Return.value != NULL &&
2717 c->u->u_ste->ste_coroutine && c->u->u_ste->ste_generator)
2718 {
2719 return compiler_error(
2720 c, "'return' with value in async generator");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002721 }
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002722 if (preserve_tos) {
2723 VISIT(c, expr, s->v.Return.value);
2724 }
2725 for (int depth = c->u->u_nfblocks; depth--;) {
2726 struct fblockinfo *info = &c->u->u_fblock[depth];
2727
2728 if (!compiler_unwind_fblock(c, info, preserve_tos))
2729 return 0;
2730 }
2731 if (s->v.Return.value == NULL) {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002732 ADDOP_LOAD_CONST(c, Py_None);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002733 }
2734 else if (!preserve_tos) {
2735 VISIT(c, expr, s->v.Return.value);
2736 }
2737 ADDOP(c, RETURN_VALUE);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002738
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002739 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002740}
2741
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002742static int
2743compiler_break(struct compiler *c)
2744{
2745 for (int depth = c->u->u_nfblocks; depth--;) {
2746 struct fblockinfo *info = &c->u->u_fblock[depth];
2747
2748 if (!compiler_unwind_fblock(c, info, 0))
2749 return 0;
2750 if (info->fb_type == WHILE_LOOP || info->fb_type == FOR_LOOP) {
2751 ADDOP_JABS(c, JUMP_ABSOLUTE, info->fb_exit);
2752 return 1;
2753 }
2754 }
2755 return compiler_error(c, "'break' outside loop");
2756}
2757
2758static int
2759compiler_continue(struct compiler *c)
2760{
2761 for (int depth = c->u->u_nfblocks; depth--;) {
2762 struct fblockinfo *info = &c->u->u_fblock[depth];
2763
2764 if (info->fb_type == WHILE_LOOP || info->fb_type == FOR_LOOP) {
2765 ADDOP_JABS(c, JUMP_ABSOLUTE, info->fb_block);
2766 return 1;
2767 }
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002768 if (!compiler_unwind_fblock(c, info, 0))
2769 return 0;
2770 }
2771 return compiler_error(c, "'continue' not properly in loop");
2772}
2773
2774
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002775/* Code generated for "try: <body> finally: <finalbody>" is as follows:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002776
2777 SETUP_FINALLY L
2778 <code for body>
2779 POP_BLOCK
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002780 BEGIN_FINALLY
2781 L:
2782 <code for finalbody>
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002783 END_FINALLY
2784
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002785 The special instructions use the block stack. Each block
2786 stack entry contains the instruction that created it (here
2787 SETUP_FINALLY), the level of the value stack at the time the
2788 block stack entry was created, and a label (here L).
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002789
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002790 SETUP_FINALLY:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002791 Pushes the current value stack level and the label
2792 onto the block stack.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002793 POP_BLOCK:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002794 Pops en entry from the block stack.
2795 BEGIN_FINALLY
2796 Pushes NULL onto the value stack.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002797 END_FINALLY:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002798 Pops 1 (NULL or int) or 6 entries from the *value* stack and restore
2799 the raised and the caught exceptions they specify.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002800
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002801 The block stack is unwound when an exception is raised:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002802 when a SETUP_FINALLY entry is found, the raised and the caught
2803 exceptions are pushed onto the value stack (and the exception
2804 condition is cleared), and the interpreter jumps to the label
2805 gotten from the block stack.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002806*/
2807
2808static int
2809compiler_try_finally(struct compiler *c, stmt_ty s)
2810{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002811 basicblock *body, *end;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002812
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002813 body = compiler_new_block(c);
2814 end = compiler_new_block(c);
2815 if (body == NULL || end == NULL)
2816 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002817
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002818 /* `try` block */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002819 ADDOP_JREL(c, SETUP_FINALLY, end);
2820 compiler_use_next_block(c, body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002821 if (!compiler_push_fblock(c, FINALLY_TRY, body, end))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002822 return 0;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002823 if (s->v.Try.handlers && asdl_seq_LEN(s->v.Try.handlers)) {
2824 if (!compiler_try_except(c, s))
2825 return 0;
2826 }
2827 else {
2828 VISIT_SEQ(c, stmt, s->v.Try.body);
2829 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002830 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002831 ADDOP(c, BEGIN_FINALLY);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002832 compiler_pop_fblock(c, FINALLY_TRY, body);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002833
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002834 /* `finally` block */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002835 compiler_use_next_block(c, end);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002836 if (!compiler_push_fblock(c, FINALLY_END, end, NULL))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002837 return 0;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002838 VISIT_SEQ(c, stmt, s->v.Try.finalbody);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002839 ADDOP(c, END_FINALLY);
2840 compiler_pop_fblock(c, FINALLY_END, end);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002841 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002842}
2843
2844/*
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002845 Code generated for "try: S except E1 as V1: S1 except E2 as V2: S2 ...":
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002846 (The contents of the value stack is shown in [], with the top
2847 at the right; 'tb' is trace-back info, 'val' the exception's
2848 associated value, and 'exc' the exception.)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002849
2850 Value stack Label Instruction Argument
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002851 [] SETUP_FINALLY L1
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002852 [] <code for S>
2853 [] POP_BLOCK
2854 [] JUMP_FORWARD L0
2855
2856 [tb, val, exc] L1: DUP )
2857 [tb, val, exc, exc] <evaluate E1> )
2858 [tb, val, exc, exc, E1] COMPARE_OP EXC_MATCH ) only if E1
2859 [tb, val, exc, 1-or-0] POP_JUMP_IF_FALSE L2 )
2860 [tb, val, exc] POP
2861 [tb, val] <assign to V1> (or POP if no V1)
2862 [tb] POP
2863 [] <code for S1>
2864 JUMP_FORWARD L0
2865
2866 [tb, val, exc] L2: DUP
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002867 .............................etc.......................
2868
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002869 [tb, val, exc] Ln+1: END_FINALLY # re-raise exception
2870
2871 [] L0: <next statement>
2872
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002873 Of course, parts are not generated if Vi or Ei is not present.
2874*/
2875static int
2876compiler_try_except(struct compiler *c, stmt_ty s)
2877{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002878 basicblock *body, *orelse, *except, *end;
Victor Stinnerad9a0662013-11-19 22:23:20 +01002879 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002880
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002881 body = compiler_new_block(c);
2882 except = compiler_new_block(c);
2883 orelse = compiler_new_block(c);
2884 end = compiler_new_block(c);
2885 if (body == NULL || except == NULL || orelse == NULL || end == NULL)
2886 return 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002887 ADDOP_JREL(c, SETUP_FINALLY, except);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002888 compiler_use_next_block(c, body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002889 if (!compiler_push_fblock(c, EXCEPT, body, NULL))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002890 return 0;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002891 VISIT_SEQ(c, stmt, s->v.Try.body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002892 ADDOP(c, POP_BLOCK);
2893 compiler_pop_fblock(c, EXCEPT, body);
2894 ADDOP_JREL(c, JUMP_FORWARD, orelse);
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002895 n = asdl_seq_LEN(s->v.Try.handlers);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002896 compiler_use_next_block(c, except);
2897 for (i = 0; i < n; i++) {
2898 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET(
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002899 s->v.Try.handlers, i);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002900 if (!handler->v.ExceptHandler.type && i < n-1)
2901 return compiler_error(c, "default 'except:' must be last");
2902 c->u->u_lineno_set = 0;
2903 c->u->u_lineno = handler->lineno;
Benjamin Petersond4efd9e2010-09-20 23:02:10 +00002904 c->u->u_col_offset = handler->col_offset;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002905 except = compiler_new_block(c);
2906 if (except == NULL)
2907 return 0;
2908 if (handler->v.ExceptHandler.type) {
2909 ADDOP(c, DUP_TOP);
2910 VISIT(c, expr, handler->v.ExceptHandler.type);
2911 ADDOP_I(c, COMPARE_OP, PyCmp_EXC_MATCH);
2912 ADDOP_JABS(c, POP_JUMP_IF_FALSE, except);
2913 }
2914 ADDOP(c, POP_TOP);
2915 if (handler->v.ExceptHandler.name) {
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002916 basicblock *cleanup_end, *cleanup_body;
Guido van Rossumb940e112007-01-10 16:19:56 +00002917
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002918 cleanup_end = compiler_new_block(c);
2919 cleanup_body = compiler_new_block(c);
Zackery Spytz53ebf4b2018-10-11 23:54:03 -06002920 if (cleanup_end == NULL || cleanup_body == NULL) {
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002921 return 0;
Zackery Spytz53ebf4b2018-10-11 23:54:03 -06002922 }
Guido van Rossumb940e112007-01-10 16:19:56 +00002923
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002924 compiler_nameop(c, handler->v.ExceptHandler.name, Store);
2925 ADDOP(c, POP_TOP);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002926
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002927 /*
2928 try:
Ezio Melotti1b6424f2013-04-19 07:10:09 +03002929 # body
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002930 except type as name:
Ezio Melotti1b6424f2013-04-19 07:10:09 +03002931 try:
2932 # body
2933 finally:
2934 name = None
2935 del name
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002936 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002937
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002938 /* second try: */
2939 ADDOP_JREL(c, SETUP_FINALLY, cleanup_end);
2940 compiler_use_next_block(c, cleanup_body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002941 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, cleanup_end))
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002942 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002943
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002944 /* second # body */
2945 VISIT_SEQ(c, stmt, handler->v.ExceptHandler.body);
2946 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002947 ADDOP(c, BEGIN_FINALLY);
2948 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002949
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002950 /* finally: */
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002951 compiler_use_next_block(c, cleanup_end);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002952 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL))
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002953 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002954
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002955 /* name = None; del name */
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002956 ADDOP_LOAD_CONST(c, Py_None);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002957 compiler_nameop(c, handler->v.ExceptHandler.name, Store);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002958 compiler_nameop(c, handler->v.ExceptHandler.name, Del);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002959
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002960 ADDOP(c, END_FINALLY);
Serhiy Storchakad4864c62018-01-09 21:54:52 +02002961 ADDOP(c, POP_EXCEPT);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002962 compiler_pop_fblock(c, FINALLY_END, cleanup_end);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002963 }
2964 else {
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002965 basicblock *cleanup_body;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002966
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002967 cleanup_body = compiler_new_block(c);
Benjamin Peterson0a5dad92011-05-27 14:17:04 -05002968 if (!cleanup_body)
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002969 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002970
Guido van Rossumb940e112007-01-10 16:19:56 +00002971 ADDOP(c, POP_TOP);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002972 ADDOP(c, POP_TOP);
2973 compiler_use_next_block(c, cleanup_body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002974 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL))
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002975 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002976 VISIT_SEQ(c, stmt, handler->v.ExceptHandler.body);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002977 ADDOP(c, POP_EXCEPT);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002978 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002979 }
2980 ADDOP_JREL(c, JUMP_FORWARD, end);
2981 compiler_use_next_block(c, except);
2982 }
2983 ADDOP(c, END_FINALLY);
2984 compiler_use_next_block(c, orelse);
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002985 VISIT_SEQ(c, stmt, s->v.Try.orelse);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002986 compiler_use_next_block(c, end);
2987 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002988}
2989
2990static int
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002991compiler_try(struct compiler *c, stmt_ty s) {
2992 if (s->v.Try.finalbody && asdl_seq_LEN(s->v.Try.finalbody))
2993 return compiler_try_finally(c, s);
2994 else
2995 return compiler_try_except(c, s);
2996}
2997
2998
2999static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003000compiler_import_as(struct compiler *c, identifier name, identifier asname)
3001{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003002 /* The IMPORT_NAME opcode was already generated. This function
3003 merely needs to bind the result to a name.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003004
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003005 If there is a dot in name, we need to split it and emit a
Serhiy Storchakaf93234b2017-05-09 22:31:05 +03003006 IMPORT_FROM for each name.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003007 */
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003008 Py_ssize_t len = PyUnicode_GET_LENGTH(name);
3009 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003010 if (dot == -2)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03003011 return 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003012 if (dot != -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003013 /* Consume the base module name to get the first attribute */
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003014 while (1) {
3015 Py_ssize_t pos = dot + 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003016 PyObject *attr;
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003017 dot = PyUnicode_FindChar(name, '.', pos, len, 1);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003018 if (dot == -2)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03003019 return 0;
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003020 attr = PyUnicode_Substring(name, pos, (dot != -1) ? dot : len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003021 if (!attr)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03003022 return 0;
Serhiy Storchakaaa8e51f2018-04-01 00:29:37 +03003023 ADDOP_N(c, IMPORT_FROM, attr, names);
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003024 if (dot == -1) {
3025 break;
3026 }
3027 ADDOP(c, ROT_TWO);
3028 ADDOP(c, POP_TOP);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003029 }
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003030 if (!compiler_nameop(c, asname, Store)) {
3031 return 0;
3032 }
3033 ADDOP(c, POP_TOP);
3034 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003035 }
3036 return compiler_nameop(c, asname, Store);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003037}
3038
3039static int
3040compiler_import(struct compiler *c, stmt_ty s)
3041{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003042 /* The Import node stores a module name like a.b.c as a single
3043 string. This is convenient for all cases except
3044 import a.b.c as d
3045 where we need to parse that string to extract the individual
3046 module names.
3047 XXX Perhaps change the representation to make this case simpler?
3048 */
Victor Stinnerad9a0662013-11-19 22:23:20 +01003049 Py_ssize_t i, n = asdl_seq_LEN(s->v.Import.names);
Thomas Woutersf7f438b2006-02-28 16:09:29 +00003050
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003051 for (i = 0; i < n; i++) {
3052 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.Import.names, i);
3053 int r;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003054
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003055 ADDOP_LOAD_CONST(c, _PyLong_Zero);
3056 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003057 ADDOP_NAME(c, IMPORT_NAME, alias->name, names);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003058
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003059 if (alias->asname) {
3060 r = compiler_import_as(c, alias->name, alias->asname);
3061 if (!r)
3062 return r;
3063 }
3064 else {
3065 identifier tmp = alias->name;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003066 Py_ssize_t dot = PyUnicode_FindChar(
3067 alias->name, '.', 0, PyUnicode_GET_LENGTH(alias->name), 1);
Victor Stinner6b64a682013-07-11 22:50:45 +02003068 if (dot != -1) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003069 tmp = PyUnicode_Substring(alias->name, 0, dot);
Victor Stinner6b64a682013-07-11 22:50:45 +02003070 if (tmp == NULL)
3071 return 0;
3072 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003073 r = compiler_nameop(c, tmp, Store);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003074 if (dot != -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003075 Py_DECREF(tmp);
3076 }
3077 if (!r)
3078 return r;
3079 }
3080 }
3081 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003082}
3083
3084static int
3085compiler_from_import(struct compiler *c, stmt_ty s)
3086{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003087 Py_ssize_t i, n = asdl_seq_LEN(s->v.ImportFrom.names);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003088 PyObject *names;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003089 static PyObject *empty_string;
Benjamin Peterson78565b22009-06-28 19:19:51 +00003090
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003091 if (!empty_string) {
3092 empty_string = PyUnicode_FromString("");
3093 if (!empty_string)
3094 return 0;
3095 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003096
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003097 ADDOP_LOAD_CONST_NEW(c, PyLong_FromLong(s->v.ImportFrom.level));
Serhiy Storchakaa95d9862018-03-24 22:42:35 +02003098
3099 names = PyTuple_New(n);
3100 if (!names)
3101 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003102
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003103 /* build up the names */
3104 for (i = 0; i < n; i++) {
3105 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i);
3106 Py_INCREF(alias->name);
3107 PyTuple_SET_ITEM(names, i, alias->name);
3108 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003109
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003110 if (s->lineno > c->c_future->ff_lineno && s->v.ImportFrom.module &&
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02003111 _PyUnicode_EqualToASCIIString(s->v.ImportFrom.module, "__future__")) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003112 Py_DECREF(names);
3113 return compiler_error(c, "from __future__ imports must occur "
3114 "at the beginning of the file");
3115 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003116 ADDOP_LOAD_CONST_NEW(c, names);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003117
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003118 if (s->v.ImportFrom.module) {
3119 ADDOP_NAME(c, IMPORT_NAME, s->v.ImportFrom.module, names);
3120 }
3121 else {
3122 ADDOP_NAME(c, IMPORT_NAME, empty_string, names);
3123 }
3124 for (i = 0; i < n; i++) {
3125 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i);
3126 identifier store_name;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003127
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003128 if (i == 0 && PyUnicode_READ_CHAR(alias->name, 0) == '*') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003129 assert(n == 1);
3130 ADDOP(c, IMPORT_STAR);
3131 return 1;
3132 }
3133
3134 ADDOP_NAME(c, IMPORT_FROM, alias->name, names);
3135 store_name = alias->name;
3136 if (alias->asname)
3137 store_name = alias->asname;
3138
3139 if (!compiler_nameop(c, store_name, Store)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003140 return 0;
3141 }
3142 }
3143 /* remove imported module */
3144 ADDOP(c, POP_TOP);
3145 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003146}
3147
3148static int
3149compiler_assert(struct compiler *c, stmt_ty s)
3150{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003151 static PyObject *assertion_error = NULL;
3152 basicblock *end;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003153
Georg Brandl8334fd92010-12-04 10:26:46 +00003154 if (c->c_optimize)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003155 return 1;
3156 if (assertion_error == NULL) {
3157 assertion_error = PyUnicode_InternFromString("AssertionError");
3158 if (assertion_error == NULL)
3159 return 0;
3160 }
3161 if (s->v.Assert.test->kind == Tuple_kind &&
Serhiy Storchakad31e7732018-10-21 10:09:39 +03003162 asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0)
3163 {
3164 if (!compiler_warn(c, "assertion is always true, "
3165 "perhaps remove parentheses?"))
3166 {
Victor Stinner14e461d2013-08-26 22:28:21 +02003167 return 0;
3168 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003169 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003170 end = compiler_new_block(c);
3171 if (end == NULL)
3172 return 0;
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03003173 if (!compiler_jump_if(c, s->v.Assert.test, end, 1))
3174 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003175 ADDOP_O(c, LOAD_GLOBAL, assertion_error, names);
3176 if (s->v.Assert.msg) {
3177 VISIT(c, expr, s->v.Assert.msg);
3178 ADDOP_I(c, CALL_FUNCTION, 1);
3179 }
3180 ADDOP_I(c, RAISE_VARARGS, 1);
3181 compiler_use_next_block(c, end);
3182 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003183}
3184
3185static int
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003186compiler_visit_stmt_expr(struct compiler *c, expr_ty value)
3187{
3188 if (c->c_interactive && c->c_nestlevel <= 1) {
3189 VISIT(c, expr, value);
3190 ADDOP(c, PRINT_EXPR);
3191 return 1;
3192 }
3193
Serhiy Storchaka3f228112018-09-27 17:42:37 +03003194 if (value->kind == Constant_kind) {
Victor Stinner15a30952016-02-08 22:45:06 +01003195 /* ignore constant statement */
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003196 return 1;
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003197 }
3198
3199 VISIT(c, expr, value);
3200 ADDOP(c, POP_TOP);
3201 return 1;
3202}
3203
3204static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003205compiler_visit_stmt(struct compiler *c, stmt_ty s)
3206{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003207 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003208
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003209 /* Always assign a lineno to the next instruction for a stmt. */
3210 c->u->u_lineno = s->lineno;
Benjamin Petersond4efd9e2010-09-20 23:02:10 +00003211 c->u->u_col_offset = s->col_offset;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003212 c->u->u_lineno_set = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003213
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003214 switch (s->kind) {
3215 case FunctionDef_kind:
Yury Selivanov75445082015-05-11 22:57:16 -04003216 return compiler_function(c, s, 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003217 case ClassDef_kind:
3218 return compiler_class(c, s);
3219 case Return_kind:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02003220 return compiler_return(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003221 case Delete_kind:
3222 VISIT_SEQ(c, expr, s->v.Delete.targets)
3223 break;
3224 case Assign_kind:
3225 n = asdl_seq_LEN(s->v.Assign.targets);
3226 VISIT(c, expr, s->v.Assign.value);
3227 for (i = 0; i < n; i++) {
3228 if (i < n - 1)
3229 ADDOP(c, DUP_TOP);
3230 VISIT(c, expr,
3231 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i));
3232 }
3233 break;
3234 case AugAssign_kind:
3235 return compiler_augassign(c, s);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07003236 case AnnAssign_kind:
3237 return compiler_annassign(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003238 case For_kind:
3239 return compiler_for(c, s);
3240 case While_kind:
3241 return compiler_while(c, s);
3242 case If_kind:
3243 return compiler_if(c, s);
3244 case Raise_kind:
3245 n = 0;
3246 if (s->v.Raise.exc) {
3247 VISIT(c, expr, s->v.Raise.exc);
3248 n++;
Victor Stinnerad9a0662013-11-19 22:23:20 +01003249 if (s->v.Raise.cause) {
3250 VISIT(c, expr, s->v.Raise.cause);
3251 n++;
3252 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003253 }
Victor Stinnerad9a0662013-11-19 22:23:20 +01003254 ADDOP_I(c, RAISE_VARARGS, (int)n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003255 break;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05003256 case Try_kind:
3257 return compiler_try(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003258 case Assert_kind:
3259 return compiler_assert(c, s);
3260 case Import_kind:
3261 return compiler_import(c, s);
3262 case ImportFrom_kind:
3263 return compiler_from_import(c, s);
3264 case Global_kind:
3265 case Nonlocal_kind:
3266 break;
3267 case Expr_kind:
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003268 return compiler_visit_stmt_expr(c, s->v.Expr.value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003269 case Pass_kind:
3270 break;
3271 case Break_kind:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02003272 return compiler_break(c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003273 case Continue_kind:
3274 return compiler_continue(c);
3275 case With_kind:
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05003276 return compiler_with(c, s, 0);
Yury Selivanov75445082015-05-11 22:57:16 -04003277 case AsyncFunctionDef_kind:
3278 return compiler_function(c, s, 1);
3279 case AsyncWith_kind:
3280 return compiler_async_with(c, s, 0);
3281 case AsyncFor_kind:
3282 return compiler_async_for(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003283 }
Yury Selivanov75445082015-05-11 22:57:16 -04003284
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003285 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003286}
3287
3288static int
3289unaryop(unaryop_ty op)
3290{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003291 switch (op) {
3292 case Invert:
3293 return UNARY_INVERT;
3294 case Not:
3295 return UNARY_NOT;
3296 case UAdd:
3297 return UNARY_POSITIVE;
3298 case USub:
3299 return UNARY_NEGATIVE;
3300 default:
3301 PyErr_Format(PyExc_SystemError,
3302 "unary op %d should not be possible", op);
3303 return 0;
3304 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003305}
3306
3307static int
3308binop(struct compiler *c, operator_ty op)
3309{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003310 switch (op) {
3311 case Add:
3312 return BINARY_ADD;
3313 case Sub:
3314 return BINARY_SUBTRACT;
3315 case Mult:
3316 return BINARY_MULTIPLY;
Benjamin Petersond51374e2014-04-09 23:55:56 -04003317 case MatMult:
3318 return BINARY_MATRIX_MULTIPLY;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003319 case Div:
3320 return BINARY_TRUE_DIVIDE;
3321 case Mod:
3322 return BINARY_MODULO;
3323 case Pow:
3324 return BINARY_POWER;
3325 case LShift:
3326 return BINARY_LSHIFT;
3327 case RShift:
3328 return BINARY_RSHIFT;
3329 case BitOr:
3330 return BINARY_OR;
3331 case BitXor:
3332 return BINARY_XOR;
3333 case BitAnd:
3334 return BINARY_AND;
3335 case FloorDiv:
3336 return BINARY_FLOOR_DIVIDE;
3337 default:
3338 PyErr_Format(PyExc_SystemError,
3339 "binary op %d should not be possible", op);
3340 return 0;
3341 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003342}
3343
3344static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003345inplace_binop(struct compiler *c, operator_ty op)
3346{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003347 switch (op) {
3348 case Add:
3349 return INPLACE_ADD;
3350 case Sub:
3351 return INPLACE_SUBTRACT;
3352 case Mult:
3353 return INPLACE_MULTIPLY;
Benjamin Petersond51374e2014-04-09 23:55:56 -04003354 case MatMult:
3355 return INPLACE_MATRIX_MULTIPLY;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003356 case Div:
3357 return INPLACE_TRUE_DIVIDE;
3358 case Mod:
3359 return INPLACE_MODULO;
3360 case Pow:
3361 return INPLACE_POWER;
3362 case LShift:
3363 return INPLACE_LSHIFT;
3364 case RShift:
3365 return INPLACE_RSHIFT;
3366 case BitOr:
3367 return INPLACE_OR;
3368 case BitXor:
3369 return INPLACE_XOR;
3370 case BitAnd:
3371 return INPLACE_AND;
3372 case FloorDiv:
3373 return INPLACE_FLOOR_DIVIDE;
3374 default:
3375 PyErr_Format(PyExc_SystemError,
3376 "inplace binary op %d should not be possible", op);
3377 return 0;
3378 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003379}
3380
3381static int
3382compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx)
3383{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003384 int op, scope;
3385 Py_ssize_t arg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003386 enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003387
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003388 PyObject *dict = c->u->u_names;
3389 PyObject *mangled;
3390 /* XXX AugStore isn't used anywhere! */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003391
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02003392 assert(!_PyUnicode_EqualToASCIIString(name, "None") &&
3393 !_PyUnicode_EqualToASCIIString(name, "True") &&
3394 !_PyUnicode_EqualToASCIIString(name, "False"));
Benjamin Peterson70b224d2012-12-06 17:49:58 -05003395
Serhiy Storchakabd6ec4d2017-12-18 14:29:12 +02003396 mangled = _Py_Mangle(c->u->u_private, name);
3397 if (!mangled)
3398 return 0;
3399
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003400 op = 0;
3401 optype = OP_NAME;
3402 scope = PyST_GetScope(c->u->u_ste, mangled);
3403 switch (scope) {
3404 case FREE:
3405 dict = c->u->u_freevars;
3406 optype = OP_DEREF;
3407 break;
3408 case CELL:
3409 dict = c->u->u_cellvars;
3410 optype = OP_DEREF;
3411 break;
3412 case LOCAL:
3413 if (c->u->u_ste->ste_type == FunctionBlock)
3414 optype = OP_FAST;
3415 break;
3416 case GLOBAL_IMPLICIT:
Benjamin Peterson1dfd2472015-04-27 21:44:22 -04003417 if (c->u->u_ste->ste_type == FunctionBlock)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003418 optype = OP_GLOBAL;
3419 break;
3420 case GLOBAL_EXPLICIT:
3421 optype = OP_GLOBAL;
3422 break;
3423 default:
3424 /* scope can be 0 */
3425 break;
3426 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003427
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003428 /* XXX Leave assert here, but handle __doc__ and the like better */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003429 assert(scope || PyUnicode_READ_CHAR(name, 0) == '_');
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003430
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003431 switch (optype) {
3432 case OP_DEREF:
3433 switch (ctx) {
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04003434 case Load:
3435 op = (c->u->u_ste->ste_type == ClassBlock) ? LOAD_CLASSDEREF : LOAD_DEREF;
3436 break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003437 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003438 op = STORE_DEREF;
3439 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003440 case AugLoad:
3441 case AugStore:
3442 break;
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00003443 case Del: op = DELETE_DEREF; break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003444 case Param:
3445 default:
3446 PyErr_SetString(PyExc_SystemError,
3447 "param invalid for deref variable");
3448 return 0;
3449 }
3450 break;
3451 case OP_FAST:
3452 switch (ctx) {
3453 case Load: op = LOAD_FAST; break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003454 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003455 op = STORE_FAST;
3456 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003457 case Del: op = DELETE_FAST; break;
3458 case AugLoad:
3459 case AugStore:
3460 break;
3461 case Param:
3462 default:
3463 PyErr_SetString(PyExc_SystemError,
3464 "param invalid for local variable");
3465 return 0;
3466 }
Serhiy Storchakaaa8e51f2018-04-01 00:29:37 +03003467 ADDOP_N(c, op, mangled, varnames);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003468 return 1;
3469 case OP_GLOBAL:
3470 switch (ctx) {
3471 case Load: op = LOAD_GLOBAL; break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003472 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003473 op = STORE_GLOBAL;
3474 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003475 case Del: op = DELETE_GLOBAL; break;
3476 case AugLoad:
3477 case AugStore:
3478 break;
3479 case Param:
3480 default:
3481 PyErr_SetString(PyExc_SystemError,
3482 "param invalid for global variable");
3483 return 0;
3484 }
3485 break;
3486 case OP_NAME:
3487 switch (ctx) {
Benjamin Peterson20f9c3c2010-07-20 22:39:34 +00003488 case Load: op = LOAD_NAME; break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003489 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003490 op = STORE_NAME;
3491 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003492 case Del: op = DELETE_NAME; break;
3493 case AugLoad:
3494 case AugStore:
3495 break;
3496 case Param:
3497 default:
3498 PyErr_SetString(PyExc_SystemError,
3499 "param invalid for name variable");
3500 return 0;
3501 }
3502 break;
3503 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003504
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003505 assert(op);
3506 arg = compiler_add_o(c, dict, mangled);
3507 Py_DECREF(mangled);
3508 if (arg < 0)
3509 return 0;
3510 return compiler_addop_i(c, op, arg);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003511}
3512
3513static int
3514compiler_boolop(struct compiler *c, expr_ty e)
3515{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003516 basicblock *end;
Victor Stinnerad9a0662013-11-19 22:23:20 +01003517 int jumpi;
3518 Py_ssize_t i, n;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003519 asdl_seq *s;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003520
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003521 assert(e->kind == BoolOp_kind);
3522 if (e->v.BoolOp.op == And)
3523 jumpi = JUMP_IF_FALSE_OR_POP;
3524 else
3525 jumpi = JUMP_IF_TRUE_OR_POP;
3526 end = compiler_new_block(c);
3527 if (end == NULL)
3528 return 0;
3529 s = e->v.BoolOp.values;
3530 n = asdl_seq_LEN(s) - 1;
3531 assert(n >= 0);
3532 for (i = 0; i < n; ++i) {
3533 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i));
3534 ADDOP_JABS(c, jumpi, end);
3535 }
3536 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n));
3537 compiler_use_next_block(c, end);
3538 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003539}
3540
3541static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003542starunpack_helper(struct compiler *c, asdl_seq *elts,
3543 int single_op, int inner_op, int outer_op)
3544{
3545 Py_ssize_t n = asdl_seq_LEN(elts);
3546 Py_ssize_t i, nsubitems = 0, nseen = 0;
3547 for (i = 0; i < n; i++) {
3548 expr_ty elt = asdl_seq_GET(elts, i);
3549 if (elt->kind == Starred_kind) {
3550 if (nseen) {
3551 ADDOP_I(c, inner_op, nseen);
3552 nseen = 0;
3553 nsubitems++;
3554 }
3555 VISIT(c, expr, elt->v.Starred.value);
3556 nsubitems++;
3557 }
3558 else {
3559 VISIT(c, expr, elt);
3560 nseen++;
3561 }
3562 }
3563 if (nsubitems) {
3564 if (nseen) {
3565 ADDOP_I(c, inner_op, nseen);
3566 nsubitems++;
3567 }
3568 ADDOP_I(c, outer_op, nsubitems);
3569 }
3570 else
3571 ADDOP_I(c, single_op, nseen);
3572 return 1;
3573}
3574
3575static int
3576assignment_helper(struct compiler *c, asdl_seq *elts)
3577{
3578 Py_ssize_t n = asdl_seq_LEN(elts);
3579 Py_ssize_t i;
3580 int seen_star = 0;
3581 for (i = 0; i < n; i++) {
3582 expr_ty elt = asdl_seq_GET(elts, i);
3583 if (elt->kind == Starred_kind && !seen_star) {
3584 if ((i >= (1 << 8)) ||
3585 (n-i-1 >= (INT_MAX >> 8)))
3586 return compiler_error(c,
3587 "too many expressions in "
3588 "star-unpacking assignment");
3589 ADDOP_I(c, UNPACK_EX, (i + ((n-i-1) << 8)));
3590 seen_star = 1;
3591 asdl_seq_SET(elts, i, elt->v.Starred.value);
3592 }
3593 else if (elt->kind == Starred_kind) {
3594 return compiler_error(c,
3595 "two starred expressions in assignment");
3596 }
3597 }
3598 if (!seen_star) {
3599 ADDOP_I(c, UNPACK_SEQUENCE, n);
3600 }
3601 VISIT_SEQ(c, expr, elts);
3602 return 1;
3603}
3604
3605static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003606compiler_list(struct compiler *c, expr_ty e)
3607{
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003608 asdl_seq *elts = e->v.List.elts;
Serhiy Storchakad8b3a982019-03-05 20:42:06 +02003609 if (e->v.List.ctx == Store) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003610 return assignment_helper(c, elts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003611 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003612 else if (e->v.List.ctx == Load) {
3613 return starunpack_helper(c, elts,
3614 BUILD_LIST, BUILD_TUPLE, BUILD_LIST_UNPACK);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003615 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003616 else
3617 VISIT_SEQ(c, expr, elts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003618 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003619}
3620
3621static int
3622compiler_tuple(struct compiler *c, expr_ty e)
3623{
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003624 asdl_seq *elts = e->v.Tuple.elts;
Serhiy Storchakad8b3a982019-03-05 20:42:06 +02003625 if (e->v.Tuple.ctx == Store) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003626 return assignment_helper(c, elts);
3627 }
3628 else if (e->v.Tuple.ctx == Load) {
3629 return starunpack_helper(c, elts,
3630 BUILD_TUPLE, BUILD_TUPLE, BUILD_TUPLE_UNPACK);
3631 }
3632 else
3633 VISIT_SEQ(c, expr, elts);
3634 return 1;
3635}
3636
3637static int
3638compiler_set(struct compiler *c, expr_ty e)
3639{
3640 return starunpack_helper(c, e->v.Set.elts, BUILD_SET,
3641 BUILD_SET, BUILD_SET_UNPACK);
3642}
3643
3644static int
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003645are_all_items_const(asdl_seq *seq, Py_ssize_t begin, Py_ssize_t end)
3646{
3647 Py_ssize_t i;
3648 for (i = begin; i < end; i++) {
3649 expr_ty key = (expr_ty)asdl_seq_GET(seq, i);
Serhiy Storchaka3f228112018-09-27 17:42:37 +03003650 if (key == NULL || key->kind != Constant_kind)
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003651 return 0;
3652 }
3653 return 1;
3654}
3655
3656static int
3657compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end)
3658{
3659 Py_ssize_t i, n = end - begin;
3660 PyObject *keys, *key;
3661 if (n > 1 && are_all_items_const(e->v.Dict.keys, begin, end)) {
3662 for (i = begin; i < end; i++) {
3663 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));
3664 }
3665 keys = PyTuple_New(n);
3666 if (keys == NULL) {
3667 return 0;
3668 }
3669 for (i = begin; i < end; i++) {
Serhiy Storchaka3f228112018-09-27 17:42:37 +03003670 key = ((expr_ty)asdl_seq_GET(e->v.Dict.keys, i))->v.Constant.value;
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003671 Py_INCREF(key);
3672 PyTuple_SET_ITEM(keys, i - begin, key);
3673 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003674 ADDOP_LOAD_CONST_NEW(c, keys);
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003675 ADDOP_I(c, BUILD_CONST_KEY_MAP, n);
3676 }
3677 else {
3678 for (i = begin; i < end; i++) {
3679 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i));
3680 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));
3681 }
3682 ADDOP_I(c, BUILD_MAP, n);
3683 }
3684 return 1;
3685}
3686
3687static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003688compiler_dict(struct compiler *c, expr_ty e)
3689{
Victor Stinner976bb402016-03-23 11:36:19 +01003690 Py_ssize_t i, n, elements;
3691 int containers;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003692 int is_unpacking = 0;
3693 n = asdl_seq_LEN(e->v.Dict.values);
3694 containers = 0;
3695 elements = 0;
3696 for (i = 0; i < n; i++) {
3697 is_unpacking = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i) == NULL;
3698 if (elements == 0xFFFF || (elements && is_unpacking)) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003699 if (!compiler_subdict(c, e, i - elements, i))
3700 return 0;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003701 containers++;
3702 elements = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003703 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003704 if (is_unpacking) {
3705 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));
3706 containers++;
3707 }
3708 else {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003709 elements++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003710 }
3711 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003712 if (elements || containers == 0) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003713 if (!compiler_subdict(c, e, n - elements, n))
3714 return 0;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003715 containers++;
3716 }
3717 /* If there is more than one dict, they need to be merged into a new
3718 * dict. If there is one dict and it's an unpacking, then it needs
3719 * to be copied into a new dict." */
Serhiy Storchaka3d85fae2016-11-28 20:56:37 +02003720 if (containers > 1 || is_unpacking) {
3721 ADDOP_I(c, BUILD_MAP_UNPACK, containers);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003722 }
3723 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003724}
3725
3726static int
3727compiler_compare(struct compiler *c, expr_ty e)
3728{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003729 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003730
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02003731 if (!check_compare(c, e)) {
3732 return 0;
3733 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003734 VISIT(c, expr, e->v.Compare.left);
Serhiy Storchaka02b9ef22017-12-30 09:47:42 +02003735 assert(asdl_seq_LEN(e->v.Compare.ops) > 0);
3736 n = asdl_seq_LEN(e->v.Compare.ops) - 1;
3737 if (n == 0) {
3738 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, 0));
3739 ADDOP_I(c, COMPARE_OP,
3740 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, 0))));
3741 }
3742 else {
3743 basicblock *cleanup = compiler_new_block(c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003744 if (cleanup == NULL)
3745 return 0;
Serhiy Storchaka02b9ef22017-12-30 09:47:42 +02003746 for (i = 0; i < n; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003747 VISIT(c, expr,
3748 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i));
Serhiy Storchaka02b9ef22017-12-30 09:47:42 +02003749 ADDOP(c, DUP_TOP);
3750 ADDOP(c, ROT_THREE);
3751 ADDOP_I(c, COMPARE_OP,
3752 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, i))));
3753 ADDOP_JABS(c, JUMP_IF_FALSE_OR_POP, cleanup);
3754 NEXT_BLOCK(c);
3755 }
3756 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n));
3757 ADDOP_I(c, COMPARE_OP,
3758 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, n))));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003759 basicblock *end = compiler_new_block(c);
3760 if (end == NULL)
3761 return 0;
3762 ADDOP_JREL(c, JUMP_FORWARD, end);
3763 compiler_use_next_block(c, cleanup);
3764 ADDOP(c, ROT_TWO);
3765 ADDOP(c, POP_TOP);
3766 compiler_use_next_block(c, end);
3767 }
3768 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003769}
3770
Serhiy Storchaka62e44812019-02-16 08:12:19 +02003771static PyTypeObject *
3772infer_type(expr_ty e)
3773{
3774 switch (e->kind) {
3775 case Tuple_kind:
3776 return &PyTuple_Type;
3777 case List_kind:
3778 case ListComp_kind:
3779 return &PyList_Type;
3780 case Dict_kind:
3781 case DictComp_kind:
3782 return &PyDict_Type;
3783 case Set_kind:
3784 case SetComp_kind:
3785 return &PySet_Type;
3786 case GeneratorExp_kind:
3787 return &PyGen_Type;
3788 case Lambda_kind:
3789 return &PyFunction_Type;
3790 case JoinedStr_kind:
3791 case FormattedValue_kind:
3792 return &PyUnicode_Type;
3793 case Constant_kind:
3794 return e->v.Constant.value->ob_type;
3795 default:
3796 return NULL;
3797 }
3798}
3799
3800static int
3801check_caller(struct compiler *c, expr_ty e)
3802{
3803 switch (e->kind) {
3804 case Constant_kind:
3805 case Tuple_kind:
3806 case List_kind:
3807 case ListComp_kind:
3808 case Dict_kind:
3809 case DictComp_kind:
3810 case Set_kind:
3811 case SetComp_kind:
3812 case GeneratorExp_kind:
3813 case JoinedStr_kind:
3814 case FormattedValue_kind:
3815 return compiler_warn(c, "'%.200s' object is not callable; "
3816 "perhaps you missed a comma?",
3817 infer_type(e)->tp_name);
3818 default:
3819 return 1;
3820 }
3821}
3822
3823static int
3824check_subscripter(struct compiler *c, expr_ty e)
3825{
3826 PyObject *v;
3827
3828 switch (e->kind) {
3829 case Constant_kind:
3830 v = e->v.Constant.value;
3831 if (!(v == Py_None || v == Py_Ellipsis ||
3832 PyLong_Check(v) || PyFloat_Check(v) || PyComplex_Check(v) ||
3833 PyAnySet_Check(v)))
3834 {
3835 return 1;
3836 }
3837 /* fall through */
3838 case Set_kind:
3839 case SetComp_kind:
3840 case GeneratorExp_kind:
3841 case Lambda_kind:
3842 return compiler_warn(c, "'%.200s' object is not subscriptable; "
3843 "perhaps you missed a comma?",
3844 infer_type(e)->tp_name);
3845 default:
3846 return 1;
3847 }
3848}
3849
3850static int
3851check_index(struct compiler *c, expr_ty e, slice_ty s)
3852{
3853 PyObject *v;
3854
3855 if (s->kind != Index_kind) {
3856 return 1;
3857 }
3858 PyTypeObject *index_type = infer_type(s->v.Index.value);
3859 if (index_type == NULL
3860 || PyType_FastSubclass(index_type, Py_TPFLAGS_LONG_SUBCLASS)
3861 || index_type == &PySlice_Type) {
3862 return 1;
3863 }
3864
3865 switch (e->kind) {
3866 case Constant_kind:
3867 v = e->v.Constant.value;
3868 if (!(PyUnicode_Check(v) || PyBytes_Check(v) || PyTuple_Check(v))) {
3869 return 1;
3870 }
3871 /* fall through */
3872 case Tuple_kind:
3873 case List_kind:
3874 case ListComp_kind:
3875 case JoinedStr_kind:
3876 case FormattedValue_kind:
3877 return compiler_warn(c, "%.200s indices must be integers or slices, "
3878 "not %.200s; "
3879 "perhaps you missed a comma?",
3880 infer_type(e)->tp_name,
3881 index_type->tp_name);
3882 default:
3883 return 1;
3884 }
3885}
3886
Zackery Spytz97f5de02019-03-22 01:30:32 -06003887// Return 1 if the method call was optimized, -1 if not, and 0 on error.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003888static int
Yury Selivanovf2392132016-12-13 19:03:51 -05003889maybe_optimize_method_call(struct compiler *c, expr_ty e)
3890{
3891 Py_ssize_t argsl, i;
3892 expr_ty meth = e->v.Call.func;
3893 asdl_seq *args = e->v.Call.args;
3894
3895 /* Check that the call node is an attribute access, and that
3896 the call doesn't have keyword parameters. */
3897 if (meth->kind != Attribute_kind || meth->v.Attribute.ctx != Load ||
3898 asdl_seq_LEN(e->v.Call.keywords))
3899 return -1;
3900
3901 /* Check that there are no *varargs types of arguments. */
3902 argsl = asdl_seq_LEN(args);
3903 for (i = 0; i < argsl; i++) {
3904 expr_ty elt = asdl_seq_GET(args, i);
3905 if (elt->kind == Starred_kind) {
3906 return -1;
3907 }
3908 }
3909
3910 /* Alright, we can optimize the code. */
3911 VISIT(c, expr, meth->v.Attribute.value);
3912 ADDOP_NAME(c, LOAD_METHOD, meth->v.Attribute.attr, names);
3913 VISIT_SEQ(c, expr, e->v.Call.args);
3914 ADDOP_I(c, CALL_METHOD, asdl_seq_LEN(e->v.Call.args));
3915 return 1;
3916}
3917
3918static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003919compiler_call(struct compiler *c, expr_ty e)
3920{
Zackery Spytz97f5de02019-03-22 01:30:32 -06003921 int ret = maybe_optimize_method_call(c, e);
3922 if (ret >= 0) {
3923 return ret;
3924 }
Serhiy Storchaka62e44812019-02-16 08:12:19 +02003925 if (!check_caller(c, e->v.Call.func)) {
3926 return 0;
3927 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003928 VISIT(c, expr, e->v.Call.func);
3929 return compiler_call_helper(c, 0,
3930 e->v.Call.args,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003931 e->v.Call.keywords);
Guido van Rossum52cc1d82007-03-18 15:41:51 +00003932}
3933
Eric V. Smith235a6f02015-09-19 14:51:32 -04003934static int
3935compiler_joined_str(struct compiler *c, expr_ty e)
3936{
Eric V. Smith235a6f02015-09-19 14:51:32 -04003937 VISIT_SEQ(c, expr, e->v.JoinedStr.values);
Serhiy Storchaka4cc30ae2016-12-11 19:37:19 +02003938 if (asdl_seq_LEN(e->v.JoinedStr.values) != 1)
3939 ADDOP_I(c, BUILD_STRING, asdl_seq_LEN(e->v.JoinedStr.values));
Eric V. Smith235a6f02015-09-19 14:51:32 -04003940 return 1;
3941}
3942
Eric V. Smitha78c7952015-11-03 12:45:05 -05003943/* Used to implement f-strings. Format a single value. */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003944static int
3945compiler_formatted_value(struct compiler *c, expr_ty e)
3946{
Eric V. Smitha78c7952015-11-03 12:45:05 -05003947 /* Our oparg encodes 2 pieces of information: the conversion
3948 character, and whether or not a format_spec was provided.
Eric V. Smith235a6f02015-09-19 14:51:32 -04003949
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003950 Convert the conversion char to 3 bits:
3951 : 000 0x0 FVC_NONE The default if nothing specified.
Eric V. Smitha78c7952015-11-03 12:45:05 -05003952 !s : 001 0x1 FVC_STR
3953 !r : 010 0x2 FVC_REPR
3954 !a : 011 0x3 FVC_ASCII
Eric V. Smith235a6f02015-09-19 14:51:32 -04003955
Eric V. Smitha78c7952015-11-03 12:45:05 -05003956 next bit is whether or not we have a format spec:
3957 yes : 100 0x4
3958 no : 000 0x0
3959 */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003960
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003961 int conversion = e->v.FormattedValue.conversion;
Eric V. Smitha78c7952015-11-03 12:45:05 -05003962 int oparg;
Eric V. Smith235a6f02015-09-19 14:51:32 -04003963
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003964 if (e->v.FormattedValue.expr_text) {
3965 /* Push the text of the expression (which already has the '=' in
3966 it. */
3967 ADDOP_LOAD_CONST(c, e->v.FormattedValue.expr_text);
3968 }
3969
3970 /* The expression to be formatted. */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003971 VISIT(c, expr, e->v.FormattedValue.value);
3972
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003973 switch (conversion) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003974 case 's': oparg = FVC_STR; break;
3975 case 'r': oparg = FVC_REPR; break;
3976 case 'a': oparg = FVC_ASCII; break;
3977 case -1: oparg = FVC_NONE; break;
3978 default:
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003979 PyErr_Format(PyExc_SystemError,
3980 "Unrecognized conversion character %d", conversion);
Eric V. Smitha78c7952015-11-03 12:45:05 -05003981 return 0;
Eric V. Smith235a6f02015-09-19 14:51:32 -04003982 }
Eric V. Smith235a6f02015-09-19 14:51:32 -04003983 if (e->v.FormattedValue.format_spec) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003984 /* Evaluate the format spec, and update our opcode arg. */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003985 VISIT(c, expr, e->v.FormattedValue.format_spec);
Eric V. Smitha78c7952015-11-03 12:45:05 -05003986 oparg |= FVS_HAVE_SPEC;
Eric V. Smith235a6f02015-09-19 14:51:32 -04003987 }
3988
Eric V. Smitha78c7952015-11-03 12:45:05 -05003989 /* And push our opcode and oparg */
3990 ADDOP_I(c, FORMAT_VALUE, oparg);
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003991
3992 /* If we have expr_text, join the 2 strings on the stack. */
3993 if (e->v.FormattedValue.expr_text) {
3994 ADDOP_I(c, BUILD_STRING, 2);
3995 }
3996
Eric V. Smith235a6f02015-09-19 14:51:32 -04003997 return 1;
3998}
3999
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004000static int
4001compiler_subkwargs(struct compiler *c, asdl_seq *keywords, Py_ssize_t begin, Py_ssize_t end)
4002{
4003 Py_ssize_t i, n = end - begin;
4004 keyword_ty kw;
4005 PyObject *keys, *key;
4006 assert(n > 0);
4007 if (n > 1) {
4008 for (i = begin; i < end; i++) {
4009 kw = asdl_seq_GET(keywords, i);
4010 VISIT(c, expr, kw->value);
4011 }
4012 keys = PyTuple_New(n);
4013 if (keys == NULL) {
4014 return 0;
4015 }
4016 for (i = begin; i < end; i++) {
4017 key = ((keyword_ty) asdl_seq_GET(keywords, i))->arg;
4018 Py_INCREF(key);
4019 PyTuple_SET_ITEM(keys, i - begin, key);
4020 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004021 ADDOP_LOAD_CONST_NEW(c, keys);
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004022 ADDOP_I(c, BUILD_CONST_KEY_MAP, n);
4023 }
4024 else {
4025 /* a for loop only executes once */
4026 for (i = begin; i < end; i++) {
4027 kw = asdl_seq_GET(keywords, i);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004028 ADDOP_LOAD_CONST(c, kw->arg);
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004029 VISIT(c, expr, kw->value);
4030 }
4031 ADDOP_I(c, BUILD_MAP, n);
4032 }
4033 return 1;
4034}
4035
Guido van Rossum52cc1d82007-03-18 15:41:51 +00004036/* shared code between compiler_call and compiler_class */
4037static int
4038compiler_call_helper(struct compiler *c,
Victor Stinner976bb402016-03-23 11:36:19 +01004039 int n, /* Args already pushed */
Victor Stinnerad9a0662013-11-19 22:23:20 +01004040 asdl_seq *args,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004041 asdl_seq *keywords)
Guido van Rossum52cc1d82007-03-18 15:41:51 +00004042{
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004043 Py_ssize_t i, nseen, nelts, nkwelts;
Serhiy Storchakab7281052016-09-12 00:52:40 +03004044 int mustdictunpack = 0;
Guido van Rossum52cc1d82007-03-18 15:41:51 +00004045
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004046 /* the number of tuples and dictionaries on the stack */
4047 Py_ssize_t nsubargs = 0, nsubkwargs = 0;
4048
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004049 nelts = asdl_seq_LEN(args);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004050 nkwelts = asdl_seq_LEN(keywords);
4051
4052 for (i = 0; i < nkwelts; i++) {
4053 keyword_ty kw = asdl_seq_GET(keywords, i);
4054 if (kw->arg == NULL) {
4055 mustdictunpack = 1;
4056 break;
4057 }
4058 }
4059
4060 nseen = n; /* the number of positional arguments on the stack */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004061 for (i = 0; i < nelts; i++) {
4062 expr_ty elt = asdl_seq_GET(args, i);
4063 if (elt->kind == Starred_kind) {
4064 /* A star-arg. If we've seen positional arguments,
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004065 pack the positional arguments into a tuple. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004066 if (nseen) {
4067 ADDOP_I(c, BUILD_TUPLE, nseen);
4068 nseen = 0;
4069 nsubargs++;
4070 }
4071 VISIT(c, expr, elt->v.Starred.value);
4072 nsubargs++;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004073 }
4074 else {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004075 VISIT(c, expr, elt);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004076 nseen++;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004077 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004078 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004079
4080 /* Same dance again for keyword arguments */
Serhiy Storchakab7281052016-09-12 00:52:40 +03004081 if (nsubargs || mustdictunpack) {
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004082 if (nseen) {
4083 /* Pack up any trailing positional arguments. */
4084 ADDOP_I(c, BUILD_TUPLE, nseen);
4085 nsubargs++;
4086 }
Serhiy Storchakab7281052016-09-12 00:52:40 +03004087 if (nsubargs > 1) {
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004088 /* If we ended up with more than one stararg, we need
4089 to concatenate them into a single sequence. */
Serhiy Storchaka73442852016-10-02 10:33:46 +03004090 ADDOP_I(c, BUILD_TUPLE_UNPACK_WITH_CALL, nsubargs);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004091 }
4092 else if (nsubargs == 0) {
4093 ADDOP_I(c, BUILD_TUPLE, 0);
4094 }
4095 nseen = 0; /* the number of keyword arguments on the stack following */
4096 for (i = 0; i < nkwelts; i++) {
4097 keyword_ty kw = asdl_seq_GET(keywords, i);
4098 if (kw->arg == NULL) {
4099 /* A keyword argument unpacking. */
4100 if (nseen) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004101 if (!compiler_subkwargs(c, keywords, i - nseen, i))
4102 return 0;
4103 nsubkwargs++;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004104 nseen = 0;
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004105 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004106 VISIT(c, expr, kw->value);
4107 nsubkwargs++;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004108 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004109 else {
4110 nseen++;
4111 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004112 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004113 if (nseen) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004114 /* Pack up any trailing keyword arguments. */
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004115 if (!compiler_subkwargs(c, keywords, nkwelts - nseen, nkwelts))
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004116 return 0;
4117 nsubkwargs++;
4118 }
Serhiy Storchakab7281052016-09-12 00:52:40 +03004119 if (nsubkwargs > 1) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004120 /* Pack it all up */
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004121 ADDOP_I(c, BUILD_MAP_UNPACK_WITH_CALL, nsubkwargs);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004122 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004123 ADDOP_I(c, CALL_FUNCTION_EX, nsubkwargs > 0);
4124 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004125 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004126 else if (nkwelts) {
4127 PyObject *names;
4128 VISIT_SEQ(c, keyword, keywords);
4129 names = PyTuple_New(nkwelts);
4130 if (names == NULL) {
4131 return 0;
4132 }
4133 for (i = 0; i < nkwelts; i++) {
4134 keyword_ty kw = asdl_seq_GET(keywords, i);
4135 Py_INCREF(kw->arg);
4136 PyTuple_SET_ITEM(names, i, kw->arg);
4137 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004138 ADDOP_LOAD_CONST_NEW(c, names);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004139 ADDOP_I(c, CALL_FUNCTION_KW, n + nelts + nkwelts);
4140 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004141 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004142 else {
4143 ADDOP_I(c, CALL_FUNCTION, n + nelts);
4144 return 1;
4145 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004146}
4147
Nick Coghlan650f0d02007-04-15 12:05:43 +00004148
4149/* List and set comprehensions and generator expressions work by creating a
4150 nested function to perform the actual iteration. This means that the
4151 iteration variables don't leak into the current scope.
4152 The defined function is called immediately following its definition, with the
4153 result of that call being the result of the expression.
4154 The LC/SC version returns the populated container, while the GE version is
4155 flagged in symtable.c as a generator, so it returns the generator object
4156 when the function is called.
Nick Coghlan650f0d02007-04-15 12:05:43 +00004157
4158 Possible cleanups:
4159 - iterate over the generator sequence instead of using recursion
4160*/
4161
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004162
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004163static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004164compiler_comprehension_generator(struct compiler *c,
4165 asdl_seq *generators, int gen_index,
4166 expr_ty elt, expr_ty val, int type)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004167{
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004168 comprehension_ty gen;
4169 gen = (comprehension_ty)asdl_seq_GET(generators, gen_index);
4170 if (gen->is_async) {
4171 return compiler_async_comprehension_generator(
4172 c, generators, gen_index, elt, val, type);
4173 } else {
4174 return compiler_sync_comprehension_generator(
4175 c, generators, gen_index, elt, val, type);
4176 }
4177}
4178
4179static int
4180compiler_sync_comprehension_generator(struct compiler *c,
4181 asdl_seq *generators, int gen_index,
4182 expr_ty elt, expr_ty val, int type)
4183{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004184 /* generate code for the iterator, then each of the ifs,
4185 and then write to the element */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004186
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004187 comprehension_ty gen;
4188 basicblock *start, *anchor, *skip, *if_cleanup;
Victor Stinnerad9a0662013-11-19 22:23:20 +01004189 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004190
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004191 start = compiler_new_block(c);
4192 skip = compiler_new_block(c);
4193 if_cleanup = compiler_new_block(c);
4194 anchor = compiler_new_block(c);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004195
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004196 if (start == NULL || skip == NULL || if_cleanup == NULL ||
4197 anchor == NULL)
4198 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004199
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004200 gen = (comprehension_ty)asdl_seq_GET(generators, gen_index);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004201
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004202 if (gen_index == 0) {
4203 /* Receive outermost iter as an implicit argument */
4204 c->u->u_argcount = 1;
4205 ADDOP_I(c, LOAD_FAST, 0);
4206 }
4207 else {
4208 /* Sub-iter - calculate on the fly */
4209 VISIT(c, expr, gen->iter);
4210 ADDOP(c, GET_ITER);
4211 }
4212 compiler_use_next_block(c, start);
4213 ADDOP_JREL(c, FOR_ITER, anchor);
4214 NEXT_BLOCK(c);
4215 VISIT(c, expr, gen->target);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004216
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004217 /* XXX this needs to be cleaned up...a lot! */
4218 n = asdl_seq_LEN(gen->ifs);
4219 for (i = 0; i < n; i++) {
4220 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i);
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03004221 if (!compiler_jump_if(c, e, if_cleanup, 0))
4222 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004223 NEXT_BLOCK(c);
4224 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004225
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004226 if (++gen_index < asdl_seq_LEN(generators))
4227 if (!compiler_comprehension_generator(c,
4228 generators, gen_index,
4229 elt, val, type))
4230 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004231
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004232 /* only append after the last for generator */
4233 if (gen_index >= asdl_seq_LEN(generators)) {
4234 /* comprehension specific code */
4235 switch (type) {
4236 case COMP_GENEXP:
4237 VISIT(c, expr, elt);
4238 ADDOP(c, YIELD_VALUE);
4239 ADDOP(c, POP_TOP);
4240 break;
4241 case COMP_LISTCOMP:
4242 VISIT(c, expr, elt);
4243 ADDOP_I(c, LIST_APPEND, gen_index + 1);
4244 break;
4245 case COMP_SETCOMP:
4246 VISIT(c, expr, elt);
4247 ADDOP_I(c, SET_ADD, gen_index + 1);
4248 break;
4249 case COMP_DICTCOMP:
4250 /* With 'd[k] = v', v is evaluated before k, so we do
4251 the same. */
4252 VISIT(c, expr, val);
4253 VISIT(c, expr, elt);
4254 ADDOP_I(c, MAP_ADD, gen_index + 1);
4255 break;
4256 default:
4257 return 0;
4258 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004259
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004260 compiler_use_next_block(c, skip);
4261 }
4262 compiler_use_next_block(c, if_cleanup);
4263 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
4264 compiler_use_next_block(c, anchor);
4265
4266 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004267}
4268
4269static int
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004270compiler_async_comprehension_generator(struct compiler *c,
4271 asdl_seq *generators, int gen_index,
4272 expr_ty elt, expr_ty val, int type)
4273{
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004274 comprehension_ty gen;
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004275 basicblock *start, *if_cleanup, *except;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004276 Py_ssize_t i, n;
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004277 start = compiler_new_block(c);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004278 except = compiler_new_block(c);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004279 if_cleanup = compiler_new_block(c);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004280
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004281 if (start == NULL || if_cleanup == NULL || except == NULL) {
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004282 return 0;
4283 }
4284
4285 gen = (comprehension_ty)asdl_seq_GET(generators, gen_index);
4286
4287 if (gen_index == 0) {
4288 /* Receive outermost iter as an implicit argument */
4289 c->u->u_argcount = 1;
4290 ADDOP_I(c, LOAD_FAST, 0);
4291 }
4292 else {
4293 /* Sub-iter - calculate on the fly */
4294 VISIT(c, expr, gen->iter);
4295 ADDOP(c, GET_AITER);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004296 }
4297
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004298 compiler_use_next_block(c, start);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004299
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004300 ADDOP_JREL(c, SETUP_FINALLY, except);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004301 ADDOP(c, GET_ANEXT);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004302 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004303 ADDOP(c, YIELD_FROM);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004304 ADDOP(c, POP_BLOCK);
Serhiy Storchaka24d32012018-03-10 18:22:34 +02004305 VISIT(c, expr, gen->target);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004306
4307 n = asdl_seq_LEN(gen->ifs);
4308 for (i = 0; i < n; i++) {
4309 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i);
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03004310 if (!compiler_jump_if(c, e, if_cleanup, 0))
4311 return 0;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004312 NEXT_BLOCK(c);
4313 }
4314
4315 if (++gen_index < asdl_seq_LEN(generators))
4316 if (!compiler_comprehension_generator(c,
4317 generators, gen_index,
4318 elt, val, type))
4319 return 0;
4320
4321 /* only append after the last for generator */
4322 if (gen_index >= asdl_seq_LEN(generators)) {
4323 /* comprehension specific code */
4324 switch (type) {
4325 case COMP_GENEXP:
4326 VISIT(c, expr, elt);
4327 ADDOP(c, YIELD_VALUE);
4328 ADDOP(c, POP_TOP);
4329 break;
4330 case COMP_LISTCOMP:
4331 VISIT(c, expr, elt);
4332 ADDOP_I(c, LIST_APPEND, gen_index + 1);
4333 break;
4334 case COMP_SETCOMP:
4335 VISIT(c, expr, elt);
4336 ADDOP_I(c, SET_ADD, gen_index + 1);
4337 break;
4338 case COMP_DICTCOMP:
4339 /* With 'd[k] = v', v is evaluated before k, so we do
4340 the same. */
4341 VISIT(c, expr, val);
4342 VISIT(c, expr, elt);
4343 ADDOP_I(c, MAP_ADD, gen_index + 1);
4344 break;
4345 default:
4346 return 0;
4347 }
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004348 }
4349 compiler_use_next_block(c, if_cleanup);
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004350 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
4351
4352 compiler_use_next_block(c, except);
4353 ADDOP(c, END_ASYNC_FOR);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004354
4355 return 1;
4356}
4357
4358static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004359compiler_comprehension(struct compiler *c, expr_ty e, int type,
4360 identifier name, asdl_seq *generators, expr_ty elt,
4361 expr_ty val)
Nick Coghlan650f0d02007-04-15 12:05:43 +00004362{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004363 PyCodeObject *co = NULL;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004364 comprehension_ty outermost;
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004365 PyObject *qualname = NULL;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004366 int is_async_function = c->u->u_ste->ste_coroutine;
4367 int is_async_generator = 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004368
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004369 outermost = (comprehension_ty) asdl_seq_GET(generators, 0);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004370
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004371 if (!compiler_enter_scope(c, name, COMPILER_SCOPE_COMPREHENSION,
4372 (void *)e, e->lineno))
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004373 {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004374 goto error;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004375 }
4376
4377 is_async_generator = c->u->u_ste->ste_coroutine;
4378
Yury Selivanovb8ab9d32017-10-06 02:58:28 -04004379 if (is_async_generator && !is_async_function && type != COMP_GENEXP) {
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004380 compiler_error(c, "asynchronous comprehension outside of "
4381 "an asynchronous function");
4382 goto error_in_scope;
4383 }
Nick Coghlan650f0d02007-04-15 12:05:43 +00004384
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004385 if (type != COMP_GENEXP) {
4386 int op;
4387 switch (type) {
4388 case COMP_LISTCOMP:
4389 op = BUILD_LIST;
4390 break;
4391 case COMP_SETCOMP:
4392 op = BUILD_SET;
4393 break;
4394 case COMP_DICTCOMP:
4395 op = BUILD_MAP;
4396 break;
4397 default:
4398 PyErr_Format(PyExc_SystemError,
4399 "unknown comprehension type %d", type);
4400 goto error_in_scope;
4401 }
Nick Coghlan650f0d02007-04-15 12:05:43 +00004402
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004403 ADDOP_I(c, op, 0);
4404 }
Nick Coghlan650f0d02007-04-15 12:05:43 +00004405
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004406 if (!compiler_comprehension_generator(c, generators, 0, elt,
4407 val, type))
4408 goto error_in_scope;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004410 if (type != COMP_GENEXP) {
4411 ADDOP(c, RETURN_VALUE);
4412 }
4413
4414 co = assemble(c, 1);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04004415 qualname = c->u->u_qualname;
4416 Py_INCREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004417 compiler_exit_scope(c);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04004418 if (co == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004419 goto error;
4420
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004421 if (!compiler_make_closure(c, co, 0, qualname))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004422 goto error;
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004423 Py_DECREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004424 Py_DECREF(co);
4425
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004426 VISIT(c, expr, outermost->iter);
4427
4428 if (outermost->is_async) {
4429 ADDOP(c, GET_AITER);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004430 } else {
4431 ADDOP(c, GET_ITER);
4432 }
4433
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004434 ADDOP_I(c, CALL_FUNCTION, 1);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004435
4436 if (is_async_generator && type != COMP_GENEXP) {
4437 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004438 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004439 ADDOP(c, YIELD_FROM);
4440 }
4441
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004442 return 1;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004443error_in_scope:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004444 compiler_exit_scope(c);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004445error:
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004446 Py_XDECREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004447 Py_XDECREF(co);
4448 return 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004449}
4450
4451static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004452compiler_genexp(struct compiler *c, expr_ty e)
4453{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004454 static identifier name;
4455 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004456 name = PyUnicode_InternFromString("<genexpr>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004457 if (!name)
4458 return 0;
4459 }
4460 assert(e->kind == GeneratorExp_kind);
4461 return compiler_comprehension(c, e, COMP_GENEXP, name,
4462 e->v.GeneratorExp.generators,
4463 e->v.GeneratorExp.elt, NULL);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004464}
4465
4466static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00004467compiler_listcomp(struct compiler *c, expr_ty e)
4468{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004469 static identifier name;
4470 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004471 name = PyUnicode_InternFromString("<listcomp>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004472 if (!name)
4473 return 0;
4474 }
4475 assert(e->kind == ListComp_kind);
4476 return compiler_comprehension(c, e, COMP_LISTCOMP, name,
4477 e->v.ListComp.generators,
4478 e->v.ListComp.elt, NULL);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004479}
4480
4481static int
4482compiler_setcomp(struct compiler *c, expr_ty e)
4483{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004484 static identifier name;
4485 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004486 name = PyUnicode_InternFromString("<setcomp>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004487 if (!name)
4488 return 0;
4489 }
4490 assert(e->kind == SetComp_kind);
4491 return compiler_comprehension(c, e, COMP_SETCOMP, name,
4492 e->v.SetComp.generators,
4493 e->v.SetComp.elt, NULL);
Guido van Rossum992d4a32007-07-11 13:09:30 +00004494}
4495
4496
4497static int
4498compiler_dictcomp(struct compiler *c, expr_ty e)
4499{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004500 static identifier name;
4501 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004502 name = PyUnicode_InternFromString("<dictcomp>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004503 if (!name)
4504 return 0;
4505 }
4506 assert(e->kind == DictComp_kind);
4507 return compiler_comprehension(c, e, COMP_DICTCOMP, name,
4508 e->v.DictComp.generators,
4509 e->v.DictComp.key, e->v.DictComp.value);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004510}
4511
4512
4513static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004514compiler_visit_keyword(struct compiler *c, keyword_ty k)
4515{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004516 VISIT(c, expr, k->value);
4517 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004518}
4519
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004520/* Test whether expression is constant. For constants, report
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004521 whether they are true or false.
4522
4523 Return values: 1 for true, 0 for false, -1 for non-constant.
4524 */
4525
4526static int
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +02004527expr_constant(expr_ty e)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004528{
Serhiy Storchaka3f228112018-09-27 17:42:37 +03004529 if (e->kind == Constant_kind) {
4530 return PyObject_IsTrue(e->v.Constant.value);
Benjamin Peterson442f2092012-12-06 17:41:04 -05004531 }
Serhiy Storchaka3325a672017-12-15 12:35:48 +02004532 return -1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004533}
4534
Yury Selivanov75445082015-05-11 22:57:16 -04004535
4536/*
4537 Implements the async with statement.
4538
4539 The semantics outlined in that PEP are as follows:
4540
4541 async with EXPR as VAR:
4542 BLOCK
4543
4544 It is implemented roughly as:
4545
4546 context = EXPR
4547 exit = context.__aexit__ # not calling it
4548 value = await context.__aenter__()
4549 try:
4550 VAR = value # if VAR present in the syntax
4551 BLOCK
4552 finally:
4553 if an exception was raised:
Serhiy Storchakaec466a12015-06-11 00:09:32 +03004554 exc = copy of (exception, instance, traceback)
Yury Selivanov75445082015-05-11 22:57:16 -04004555 else:
Serhiy Storchakaec466a12015-06-11 00:09:32 +03004556 exc = (None, None, None)
Yury Selivanov75445082015-05-11 22:57:16 -04004557 if not (await exit(*exc)):
4558 raise
4559 */
4560static int
4561compiler_async_with(struct compiler *c, stmt_ty s, int pos)
4562{
4563 basicblock *block, *finally;
4564 withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos);
4565
4566 assert(s->kind == AsyncWith_kind);
Zsolt Dollensteine2396502018-04-27 08:58:56 -07004567 if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION) {
4568 return compiler_error(c, "'async with' outside async function");
4569 }
Yury Selivanov75445082015-05-11 22:57:16 -04004570
4571 block = compiler_new_block(c);
4572 finally = compiler_new_block(c);
4573 if (!block || !finally)
4574 return 0;
4575
4576 /* Evaluate EXPR */
4577 VISIT(c, expr, item->context_expr);
4578
4579 ADDOP(c, BEFORE_ASYNC_WITH);
4580 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004581 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04004582 ADDOP(c, YIELD_FROM);
4583
4584 ADDOP_JREL(c, SETUP_ASYNC_WITH, finally);
4585
4586 /* SETUP_ASYNC_WITH pushes a finally block. */
4587 compiler_use_next_block(c, block);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004588 if (!compiler_push_fblock(c, ASYNC_WITH, block, finally)) {
Yury Selivanov75445082015-05-11 22:57:16 -04004589 return 0;
4590 }
4591
4592 if (item->optional_vars) {
4593 VISIT(c, expr, item->optional_vars);
4594 }
4595 else {
4596 /* Discard result from context.__aenter__() */
4597 ADDOP(c, POP_TOP);
4598 }
4599
4600 pos++;
4601 if (pos == asdl_seq_LEN(s->v.AsyncWith.items))
4602 /* BLOCK code */
4603 VISIT_SEQ(c, stmt, s->v.AsyncWith.body)
4604 else if (!compiler_async_with(c, s, pos))
4605 return 0;
4606
4607 /* End of try block; start the finally block */
4608 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004609 ADDOP(c, BEGIN_FINALLY);
4610 compiler_pop_fblock(c, ASYNC_WITH, block);
Yury Selivanov75445082015-05-11 22:57:16 -04004611
Yury Selivanov75445082015-05-11 22:57:16 -04004612 compiler_use_next_block(c, finally);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004613 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL))
Yury Selivanov75445082015-05-11 22:57:16 -04004614 return 0;
4615
4616 /* Finally block starts; context.__exit__ is on the stack under
4617 the exception or return information. Just issue our magic
4618 opcode. */
4619 ADDOP(c, WITH_CLEANUP_START);
4620
4621 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004622 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04004623 ADDOP(c, YIELD_FROM);
4624
4625 ADDOP(c, WITH_CLEANUP_FINISH);
4626
4627 /* Finally block ends. */
4628 ADDOP(c, END_FINALLY);
4629 compiler_pop_fblock(c, FINALLY_END, finally);
4630 return 1;
4631}
4632
4633
Guido van Rossumc2e20742006-02-27 22:32:47 +00004634/*
4635 Implements the with statement from PEP 343.
4636
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004637 The semantics outlined in that PEP are as follows:
Guido van Rossumc2e20742006-02-27 22:32:47 +00004638
4639 with EXPR as VAR:
4640 BLOCK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004641
Guido van Rossumc2e20742006-02-27 22:32:47 +00004642 It is implemented roughly as:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004643
Thomas Wouters477c8d52006-05-27 19:21:47 +00004644 context = EXPR
Guido van Rossumc2e20742006-02-27 22:32:47 +00004645 exit = context.__exit__ # not calling it
4646 value = context.__enter__()
4647 try:
4648 VAR = value # if VAR present in the syntax
4649 BLOCK
4650 finally:
4651 if an exception was raised:
Serhiy Storchakad741a882015-06-11 00:06:39 +03004652 exc = copy of (exception, instance, traceback)
Guido van Rossumc2e20742006-02-27 22:32:47 +00004653 else:
Serhiy Storchakad741a882015-06-11 00:06:39 +03004654 exc = (None, None, None)
Guido van Rossumc2e20742006-02-27 22:32:47 +00004655 exit(*exc)
4656 */
4657static int
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004658compiler_with(struct compiler *c, stmt_ty s, int pos)
Guido van Rossumc2e20742006-02-27 22:32:47 +00004659{
Guido van Rossumc2e20742006-02-27 22:32:47 +00004660 basicblock *block, *finally;
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004661 withitem_ty item = asdl_seq_GET(s->v.With.items, pos);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004662
4663 assert(s->kind == With_kind);
4664
Guido van Rossumc2e20742006-02-27 22:32:47 +00004665 block = compiler_new_block(c);
4666 finally = compiler_new_block(c);
4667 if (!block || !finally)
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004668 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004669
Thomas Wouters477c8d52006-05-27 19:21:47 +00004670 /* Evaluate EXPR */
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004671 VISIT(c, expr, item->context_expr);
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004672 ADDOP_JREL(c, SETUP_WITH, finally);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004673
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004674 /* SETUP_WITH pushes a finally block. */
Guido van Rossumc2e20742006-02-27 22:32:47 +00004675 compiler_use_next_block(c, block);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004676 if (!compiler_push_fblock(c, WITH, block, finally)) {
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004677 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004678 }
4679
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004680 if (item->optional_vars) {
4681 VISIT(c, expr, item->optional_vars);
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004682 }
4683 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004684 /* Discard result from context.__enter__() */
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004685 ADDOP(c, POP_TOP);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004686 }
4687
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004688 pos++;
4689 if (pos == asdl_seq_LEN(s->v.With.items))
4690 /* BLOCK code */
4691 VISIT_SEQ(c, stmt, s->v.With.body)
4692 else if (!compiler_with(c, s, pos))
4693 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004694
4695 /* End of try block; start the finally block */
4696 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004697 ADDOP(c, BEGIN_FINALLY);
4698 compiler_pop_fblock(c, WITH, block);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004699
Guido van Rossumc2e20742006-02-27 22:32:47 +00004700 compiler_use_next_block(c, finally);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004701 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL))
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004702 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004703
Christian Heimesdd15f6c2008-03-16 00:07:10 +00004704 /* Finally block starts; context.__exit__ is on the stack under
4705 the exception or return information. Just issue our magic
4706 opcode. */
Yury Selivanov75445082015-05-11 22:57:16 -04004707 ADDOP(c, WITH_CLEANUP_START);
4708 ADDOP(c, WITH_CLEANUP_FINISH);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004709
4710 /* Finally block ends. */
4711 ADDOP(c, END_FINALLY);
4712 compiler_pop_fblock(c, FINALLY_END, finally);
4713 return 1;
4714}
4715
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004716static int
Serhiy Storchakada8d72c2018-09-17 15:17:29 +03004717compiler_visit_expr1(struct compiler *c, expr_ty e)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004718{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004719 switch (e->kind) {
Emily Morehouse8f59ee02019-01-24 16:49:56 -07004720 case NamedExpr_kind:
4721 VISIT(c, expr, e->v.NamedExpr.value);
4722 ADDOP(c, DUP_TOP);
4723 VISIT(c, expr, e->v.NamedExpr.target);
4724 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004725 case BoolOp_kind:
4726 return compiler_boolop(c, e);
4727 case BinOp_kind:
4728 VISIT(c, expr, e->v.BinOp.left);
4729 VISIT(c, expr, e->v.BinOp.right);
4730 ADDOP(c, binop(c, e->v.BinOp.op));
4731 break;
4732 case UnaryOp_kind:
4733 VISIT(c, expr, e->v.UnaryOp.operand);
4734 ADDOP(c, unaryop(e->v.UnaryOp.op));
4735 break;
4736 case Lambda_kind:
4737 return compiler_lambda(c, e);
4738 case IfExp_kind:
4739 return compiler_ifexp(c, e);
4740 case Dict_kind:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004741 return compiler_dict(c, e);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004742 case Set_kind:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004743 return compiler_set(c, e);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004744 case GeneratorExp_kind:
4745 return compiler_genexp(c, e);
4746 case ListComp_kind:
4747 return compiler_listcomp(c, e);
4748 case SetComp_kind:
4749 return compiler_setcomp(c, e);
4750 case DictComp_kind:
4751 return compiler_dictcomp(c, e);
4752 case Yield_kind:
4753 if (c->u->u_ste->ste_type != FunctionBlock)
4754 return compiler_error(c, "'yield' outside function");
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004755 if (e->v.Yield.value) {
4756 VISIT(c, expr, e->v.Yield.value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004757 }
4758 else {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004759 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004760 }
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004761 ADDOP(c, YIELD_VALUE);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004762 break;
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004763 case YieldFrom_kind:
4764 if (c->u->u_ste->ste_type != FunctionBlock)
4765 return compiler_error(c, "'yield' outside function");
Yury Selivanov75445082015-05-11 22:57:16 -04004766
4767 if (c->u->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION)
4768 return compiler_error(c, "'yield from' inside async function");
4769
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004770 VISIT(c, expr, e->v.YieldFrom.value);
Yury Selivanov5376ba92015-06-22 12:19:30 -04004771 ADDOP(c, GET_YIELD_FROM_ITER);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004772 ADDOP_LOAD_CONST(c, Py_None);
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004773 ADDOP(c, YIELD_FROM);
4774 break;
Yury Selivanov75445082015-05-11 22:57:16 -04004775 case Await_kind:
4776 if (c->u->u_ste->ste_type != FunctionBlock)
4777 return compiler_error(c, "'await' outside function");
4778
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004779 if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION &&
4780 c->u->u_scope_type != COMPILER_SCOPE_COMPREHENSION)
Yury Selivanov75445082015-05-11 22:57:16 -04004781 return compiler_error(c, "'await' outside async function");
4782
4783 VISIT(c, expr, e->v.Await.value);
4784 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004785 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04004786 ADDOP(c, YIELD_FROM);
4787 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004788 case Compare_kind:
4789 return compiler_compare(c, e);
4790 case Call_kind:
4791 return compiler_call(c, e);
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01004792 case Constant_kind:
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004793 ADDOP_LOAD_CONST(c, e->v.Constant.value);
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01004794 break;
Eric V. Smith235a6f02015-09-19 14:51:32 -04004795 case JoinedStr_kind:
4796 return compiler_joined_str(c, e);
4797 case FormattedValue_kind:
4798 return compiler_formatted_value(c, e);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004799 /* The following exprs can be assignment targets. */
4800 case Attribute_kind:
4801 if (e->v.Attribute.ctx != AugStore)
4802 VISIT(c, expr, e->v.Attribute.value);
4803 switch (e->v.Attribute.ctx) {
4804 case AugLoad:
4805 ADDOP(c, DUP_TOP);
Stefan Krahf432a322017-08-21 13:09:59 +02004806 /* Fall through */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004807 case Load:
4808 ADDOP_NAME(c, LOAD_ATTR, e->v.Attribute.attr, names);
4809 break;
4810 case AugStore:
4811 ADDOP(c, ROT_TWO);
Stefan Krahf432a322017-08-21 13:09:59 +02004812 /* Fall through */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004813 case Store:
4814 ADDOP_NAME(c, STORE_ATTR, e->v.Attribute.attr, names);
4815 break;
4816 case Del:
4817 ADDOP_NAME(c, DELETE_ATTR, e->v.Attribute.attr, names);
4818 break;
4819 case Param:
4820 default:
4821 PyErr_SetString(PyExc_SystemError,
4822 "param invalid in attribute expression");
4823 return 0;
4824 }
4825 break;
4826 case Subscript_kind:
4827 switch (e->v.Subscript.ctx) {
4828 case AugLoad:
4829 VISIT(c, expr, e->v.Subscript.value);
4830 VISIT_SLICE(c, e->v.Subscript.slice, AugLoad);
4831 break;
4832 case Load:
Serhiy Storchaka62e44812019-02-16 08:12:19 +02004833 if (!check_subscripter(c, e->v.Subscript.value)) {
4834 return 0;
4835 }
4836 if (!check_index(c, e->v.Subscript.value, e->v.Subscript.slice)) {
4837 return 0;
4838 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004839 VISIT(c, expr, e->v.Subscript.value);
4840 VISIT_SLICE(c, e->v.Subscript.slice, Load);
4841 break;
4842 case AugStore:
4843 VISIT_SLICE(c, e->v.Subscript.slice, AugStore);
4844 break;
4845 case Store:
4846 VISIT(c, expr, e->v.Subscript.value);
4847 VISIT_SLICE(c, e->v.Subscript.slice, Store);
4848 break;
4849 case Del:
4850 VISIT(c, expr, e->v.Subscript.value);
4851 VISIT_SLICE(c, e->v.Subscript.slice, Del);
4852 break;
4853 case Param:
4854 default:
4855 PyErr_SetString(PyExc_SystemError,
4856 "param invalid in subscript expression");
4857 return 0;
4858 }
4859 break;
4860 case Starred_kind:
4861 switch (e->v.Starred.ctx) {
4862 case Store:
4863 /* In all legitimate cases, the Starred node was already replaced
4864 * by compiler_list/compiler_tuple. XXX: is that okay? */
4865 return compiler_error(c,
4866 "starred assignment target must be in a list or tuple");
4867 default:
4868 return compiler_error(c,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004869 "can't use starred expression here");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004870 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004871 case Name_kind:
4872 return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx);
4873 /* child nodes of List and Tuple will have expr_context set */
4874 case List_kind:
4875 return compiler_list(c, e);
4876 case Tuple_kind:
4877 return compiler_tuple(c, e);
4878 }
4879 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004880}
4881
4882static int
Serhiy Storchakada8d72c2018-09-17 15:17:29 +03004883compiler_visit_expr(struct compiler *c, expr_ty e)
4884{
4885 /* If expr e has a different line number than the last expr/stmt,
4886 set a new line number for the next instruction.
4887 */
4888 int old_lineno = c->u->u_lineno;
4889 int old_col_offset = c->u->u_col_offset;
4890 if (e->lineno != c->u->u_lineno) {
4891 c->u->u_lineno = e->lineno;
4892 c->u->u_lineno_set = 0;
4893 }
4894 /* Updating the column offset is always harmless. */
4895 c->u->u_col_offset = e->col_offset;
4896
4897 int res = compiler_visit_expr1(c, e);
4898
4899 if (old_lineno != c->u->u_lineno) {
4900 c->u->u_lineno = old_lineno;
4901 c->u->u_lineno_set = 0;
4902 }
4903 c->u->u_col_offset = old_col_offset;
4904 return res;
4905}
4906
4907static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004908compiler_augassign(struct compiler *c, stmt_ty s)
4909{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004910 expr_ty e = s->v.AugAssign.target;
4911 expr_ty auge;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004912
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004913 assert(s->kind == AugAssign_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004914
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004915 switch (e->kind) {
4916 case Attribute_kind:
4917 auge = Attribute(e->v.Attribute.value, e->v.Attribute.attr,
Ivan Levkivskyi9932a222019-01-22 11:18:22 +00004918 AugLoad, e->lineno, e->col_offset,
4919 e->end_lineno, e->end_col_offset, c->c_arena);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004920 if (auge == NULL)
4921 return 0;
4922 VISIT(c, expr, auge);
4923 VISIT(c, expr, s->v.AugAssign.value);
4924 ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
4925 auge->v.Attribute.ctx = AugStore;
4926 VISIT(c, expr, auge);
4927 break;
4928 case Subscript_kind:
4929 auge = Subscript(e->v.Subscript.value, e->v.Subscript.slice,
Ivan Levkivskyi9932a222019-01-22 11:18:22 +00004930 AugLoad, e->lineno, e->col_offset,
4931 e->end_lineno, e->end_col_offset, c->c_arena);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004932 if (auge == NULL)
4933 return 0;
4934 VISIT(c, expr, auge);
4935 VISIT(c, expr, s->v.AugAssign.value);
4936 ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
4937 auge->v.Subscript.ctx = AugStore;
4938 VISIT(c, expr, auge);
4939 break;
4940 case Name_kind:
4941 if (!compiler_nameop(c, e->v.Name.id, Load))
4942 return 0;
4943 VISIT(c, expr, s->v.AugAssign.value);
4944 ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
4945 return compiler_nameop(c, e->v.Name.id, Store);
4946 default:
4947 PyErr_Format(PyExc_SystemError,
4948 "invalid node type (%d) for augmented assignment",
4949 e->kind);
4950 return 0;
4951 }
4952 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004953}
4954
4955static int
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07004956check_ann_expr(struct compiler *c, expr_ty e)
4957{
4958 VISIT(c, expr, e);
4959 ADDOP(c, POP_TOP);
4960 return 1;
4961}
4962
4963static int
4964check_annotation(struct compiler *c, stmt_ty s)
4965{
4966 /* Annotations are only evaluated in a module or class. */
4967 if (c->u->u_scope_type == COMPILER_SCOPE_MODULE ||
4968 c->u->u_scope_type == COMPILER_SCOPE_CLASS) {
4969 return check_ann_expr(c, s->v.AnnAssign.annotation);
4970 }
4971 return 1;
4972}
4973
4974static int
4975check_ann_slice(struct compiler *c, slice_ty sl)
4976{
4977 switch(sl->kind) {
4978 case Index_kind:
4979 return check_ann_expr(c, sl->v.Index.value);
4980 case Slice_kind:
4981 if (sl->v.Slice.lower && !check_ann_expr(c, sl->v.Slice.lower)) {
4982 return 0;
4983 }
4984 if (sl->v.Slice.upper && !check_ann_expr(c, sl->v.Slice.upper)) {
4985 return 0;
4986 }
4987 if (sl->v.Slice.step && !check_ann_expr(c, sl->v.Slice.step)) {
4988 return 0;
4989 }
4990 break;
4991 default:
4992 PyErr_SetString(PyExc_SystemError,
4993 "unexpected slice kind");
4994 return 0;
4995 }
4996 return 1;
4997}
4998
4999static int
5000check_ann_subscr(struct compiler *c, slice_ty sl)
5001{
5002 /* We check that everything in a subscript is defined at runtime. */
5003 Py_ssize_t i, n;
5004
5005 switch (sl->kind) {
5006 case Index_kind:
5007 case Slice_kind:
5008 if (!check_ann_slice(c, sl)) {
5009 return 0;
5010 }
5011 break;
5012 case ExtSlice_kind:
5013 n = asdl_seq_LEN(sl->v.ExtSlice.dims);
5014 for (i = 0; i < n; i++) {
5015 slice_ty subsl = (slice_ty)asdl_seq_GET(sl->v.ExtSlice.dims, i);
5016 switch (subsl->kind) {
5017 case Index_kind:
5018 case Slice_kind:
5019 if (!check_ann_slice(c, subsl)) {
5020 return 0;
5021 }
5022 break;
5023 case ExtSlice_kind:
5024 default:
5025 PyErr_SetString(PyExc_SystemError,
5026 "extended slice invalid in nested slice");
5027 return 0;
5028 }
5029 }
5030 break;
5031 default:
5032 PyErr_Format(PyExc_SystemError,
5033 "invalid subscript kind %d", sl->kind);
5034 return 0;
5035 }
5036 return 1;
5037}
5038
5039static int
5040compiler_annassign(struct compiler *c, stmt_ty s)
5041{
5042 expr_ty targ = s->v.AnnAssign.target;
Guido van Rossum015d8742016-09-11 09:45:24 -07005043 PyObject* mangled;
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07005044
5045 assert(s->kind == AnnAssign_kind);
5046
5047 /* We perform the actual assignment first. */
5048 if (s->v.AnnAssign.value) {
5049 VISIT(c, expr, s->v.AnnAssign.value);
5050 VISIT(c, expr, targ);
5051 }
5052 switch (targ->kind) {
5053 case Name_kind:
5054 /* If we have a simple name in a module or class, store annotation. */
5055 if (s->v.AnnAssign.simple &&
5056 (c->u->u_scope_type == COMPILER_SCOPE_MODULE ||
5057 c->u->u_scope_type == COMPILER_SCOPE_CLASS)) {
Guido van Rossum95e4d582018-01-26 08:20:18 -08005058 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) {
5059 VISIT(c, annexpr, s->v.AnnAssign.annotation)
5060 }
5061 else {
5062 VISIT(c, expr, s->v.AnnAssign.annotation);
5063 }
Mark Shannon332cd5e2018-01-30 00:41:04 +00005064 ADDOP_NAME(c, LOAD_NAME, __annotations__, names);
Serhiy Storchakaa95d9862018-03-24 22:42:35 +02005065 mangled = _Py_Mangle(c->u->u_private, targ->v.Name.id);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005066 ADDOP_LOAD_CONST_NEW(c, mangled);
Mark Shannon332cd5e2018-01-30 00:41:04 +00005067 ADDOP(c, STORE_SUBSCR);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07005068 }
5069 break;
5070 case Attribute_kind:
5071 if (!s->v.AnnAssign.value &&
5072 !check_ann_expr(c, targ->v.Attribute.value)) {
5073 return 0;
5074 }
5075 break;
5076 case Subscript_kind:
5077 if (!s->v.AnnAssign.value &&
5078 (!check_ann_expr(c, targ->v.Subscript.value) ||
5079 !check_ann_subscr(c, targ->v.Subscript.slice))) {
5080 return 0;
5081 }
5082 break;
5083 default:
5084 PyErr_Format(PyExc_SystemError,
5085 "invalid node type (%d) for annotated assignment",
5086 targ->kind);
5087 return 0;
5088 }
5089 /* Annotation is evaluated last. */
5090 if (!s->v.AnnAssign.simple && !check_annotation(c, s)) {
5091 return 0;
5092 }
5093 return 1;
5094}
5095
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005096/* Raises a SyntaxError and returns 0.
5097 If something goes wrong, a different exception may be raised.
5098*/
5099
5100static int
5101compiler_error(struct compiler *c, const char *errstr)
5102{
Benjamin Peterson43b06862011-05-27 09:08:01 -05005103 PyObject *loc;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005104 PyObject *u = NULL, *v = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005105
Victor Stinner14e461d2013-08-26 22:28:21 +02005106 loc = PyErr_ProgramTextObject(c->c_filename, c->u->u_lineno);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005107 if (!loc) {
5108 Py_INCREF(Py_None);
5109 loc = Py_None;
5110 }
Victor Stinner14e461d2013-08-26 22:28:21 +02005111 u = Py_BuildValue("(OiiO)", c->c_filename, c->u->u_lineno,
Ammar Askar025eb982018-09-24 17:12:49 -04005112 c->u->u_col_offset + 1, loc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005113 if (!u)
5114 goto exit;
5115 v = Py_BuildValue("(zO)", errstr, u);
5116 if (!v)
5117 goto exit;
5118 PyErr_SetObject(PyExc_SyntaxError, v);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005119 exit:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005120 Py_DECREF(loc);
5121 Py_XDECREF(u);
5122 Py_XDECREF(v);
5123 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005124}
5125
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005126/* Emits a SyntaxWarning and returns 1 on success.
5127 If a SyntaxWarning raised as error, replaces it with a SyntaxError
5128 and returns 0.
5129*/
5130static int
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005131compiler_warn(struct compiler *c, const char *format, ...)
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005132{
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005133 va_list vargs;
5134#ifdef HAVE_STDARG_PROTOTYPES
5135 va_start(vargs, format);
5136#else
5137 va_start(vargs);
5138#endif
5139 PyObject *msg = PyUnicode_FromFormatV(format, vargs);
5140 va_end(vargs);
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005141 if (msg == NULL) {
5142 return 0;
5143 }
5144 if (PyErr_WarnExplicitObject(PyExc_SyntaxWarning, msg, c->c_filename,
5145 c->u->u_lineno, NULL, NULL) < 0)
5146 {
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005147 if (PyErr_ExceptionMatches(PyExc_SyntaxWarning)) {
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005148 /* Replace the SyntaxWarning exception with a SyntaxError
5149 to get a more accurate error report */
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005150 PyErr_Clear();
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005151 assert(PyUnicode_AsUTF8(msg) != NULL);
5152 compiler_error(c, PyUnicode_AsUTF8(msg));
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005153 }
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005154 Py_DECREF(msg);
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005155 return 0;
5156 }
5157 Py_DECREF(msg);
5158 return 1;
5159}
5160
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005161static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005162compiler_handle_subscr(struct compiler *c, const char *kind,
5163 expr_context_ty ctx)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005164{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005165 int op = 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005166
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005167 /* XXX this code is duplicated */
5168 switch (ctx) {
5169 case AugLoad: /* fall through to Load */
5170 case Load: op = BINARY_SUBSCR; break;
5171 case AugStore:/* fall through to Store */
5172 case Store: op = STORE_SUBSCR; break;
5173 case Del: op = DELETE_SUBSCR; break;
5174 case Param:
5175 PyErr_Format(PyExc_SystemError,
5176 "invalid %s kind %d in subscript\n",
5177 kind, ctx);
5178 return 0;
5179 }
5180 if (ctx == AugLoad) {
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00005181 ADDOP(c, DUP_TOP_TWO);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005182 }
5183 else if (ctx == AugStore) {
5184 ADDOP(c, ROT_THREE);
5185 }
5186 ADDOP(c, op);
5187 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005188}
5189
5190static int
5191compiler_slice(struct compiler *c, slice_ty s, expr_context_ty ctx)
5192{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005193 int n = 2;
5194 assert(s->kind == Slice_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005195
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005196 /* only handles the cases where BUILD_SLICE is emitted */
5197 if (s->v.Slice.lower) {
5198 VISIT(c, expr, s->v.Slice.lower);
5199 }
5200 else {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005201 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005202 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005203
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005204 if (s->v.Slice.upper) {
5205 VISIT(c, expr, s->v.Slice.upper);
5206 }
5207 else {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005208 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005209 }
5210
5211 if (s->v.Slice.step) {
5212 n++;
5213 VISIT(c, expr, s->v.Slice.step);
5214 }
5215 ADDOP_I(c, BUILD_SLICE, n);
5216 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005217}
5218
5219static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005220compiler_visit_nested_slice(struct compiler *c, slice_ty s,
5221 expr_context_ty ctx)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005222{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005223 switch (s->kind) {
5224 case Slice_kind:
5225 return compiler_slice(c, s, ctx);
5226 case Index_kind:
5227 VISIT(c, expr, s->v.Index.value);
5228 break;
5229 case ExtSlice_kind:
5230 default:
5231 PyErr_SetString(PyExc_SystemError,
5232 "extended slice invalid in nested slice");
5233 return 0;
5234 }
5235 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005236}
5237
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005238static int
5239compiler_visit_slice(struct compiler *c, slice_ty s, expr_context_ty ctx)
5240{
Serhiy Storchakae2f92de2017-11-11 13:06:26 +02005241 const char * kindname = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005242 switch (s->kind) {
5243 case Index_kind:
5244 kindname = "index";
5245 if (ctx != AugStore) {
5246 VISIT(c, expr, s->v.Index.value);
5247 }
5248 break;
5249 case Slice_kind:
5250 kindname = "slice";
5251 if (ctx != AugStore) {
5252 if (!compiler_slice(c, s, ctx))
5253 return 0;
5254 }
5255 break;
5256 case ExtSlice_kind:
5257 kindname = "extended slice";
5258 if (ctx != AugStore) {
Victor Stinnerad9a0662013-11-19 22:23:20 +01005259 Py_ssize_t i, n = asdl_seq_LEN(s->v.ExtSlice.dims);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005260 for (i = 0; i < n; i++) {
5261 slice_ty sub = (slice_ty)asdl_seq_GET(
5262 s->v.ExtSlice.dims, i);
5263 if (!compiler_visit_nested_slice(c, sub, ctx))
5264 return 0;
5265 }
5266 ADDOP_I(c, BUILD_TUPLE, n);
5267 }
5268 break;
5269 default:
5270 PyErr_Format(PyExc_SystemError,
5271 "invalid subscript kind %d", s->kind);
5272 return 0;
5273 }
5274 return compiler_handle_subscr(c, kindname, ctx);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005275}
5276
Thomas Wouters89f507f2006-12-13 04:49:30 +00005277/* End of the compiler section, beginning of the assembler section */
5278
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005279/* do depth-first search of basic block graph, starting with block.
5280 post records the block indices in post-order.
5281
5282 XXX must handle implicit jumps from one block to next
5283*/
5284
Thomas Wouters89f507f2006-12-13 04:49:30 +00005285struct assembler {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005286 PyObject *a_bytecode; /* string containing bytecode */
5287 int a_offset; /* offset into bytecode */
5288 int a_nblocks; /* number of reachable blocks */
5289 basicblock **a_postorder; /* list of blocks in dfs postorder */
5290 PyObject *a_lnotab; /* string containing lnotab */
5291 int a_lnotab_off; /* offset into lnotab */
5292 int a_lineno; /* last lineno of emitted instruction */
5293 int a_lineno_off; /* bytecode offset of last lineno */
Thomas Wouters89f507f2006-12-13 04:49:30 +00005294};
5295
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005296static void
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005297dfs(struct compiler *c, basicblock *b, struct assembler *a, int end)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005298{
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005299 int i, j;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005300
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005301 /* Get rid of recursion for normal control flow.
5302 Since the number of blocks is limited, unused space in a_postorder
5303 (from a_nblocks to end) can be used as a stack for still not ordered
5304 blocks. */
5305 for (j = end; b && !b->b_seen; b = b->b_next) {
5306 b->b_seen = 1;
5307 assert(a->a_nblocks < j);
5308 a->a_postorder[--j] = b;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005309 }
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005310 while (j < end) {
5311 b = a->a_postorder[j++];
5312 for (i = 0; i < b->b_iused; i++) {
5313 struct instr *instr = &b->b_instr[i];
5314 if (instr->i_jrel || instr->i_jabs)
5315 dfs(c, instr->i_target, a, j);
5316 }
5317 assert(a->a_nblocks < j);
5318 a->a_postorder[a->a_nblocks++] = b;
5319 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005320}
5321
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005322Py_LOCAL_INLINE(void)
5323stackdepth_push(basicblock ***sp, basicblock *b, int depth)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005324{
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005325 assert(b->b_startdepth < 0 || b->b_startdepth == depth);
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005326 if (b->b_startdepth < depth) {
5327 assert(b->b_startdepth < 0);
5328 b->b_startdepth = depth;
5329 *(*sp)++ = b;
Serhiy Storchakad4864c62018-01-09 21:54:52 +02005330 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005331}
5332
5333/* Find the flow path that needs the largest stack. We assume that
5334 * cycles in the flow graph have no net effect on the stack depth.
5335 */
5336static int
5337stackdepth(struct compiler *c)
5338{
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005339 basicblock *b, *entryblock = NULL;
5340 basicblock **stack, **sp;
5341 int nblocks = 0, maxdepth = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005342 for (b = c->u->u_blocks; b != NULL; b = b->b_list) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005343 b->b_startdepth = INT_MIN;
5344 entryblock = b;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005345 nblocks++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005346 }
5347 if (!entryblock)
5348 return 0;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005349 stack = (basicblock **)PyObject_Malloc(sizeof(basicblock *) * nblocks);
5350 if (!stack) {
5351 PyErr_NoMemory();
5352 return -1;
5353 }
5354
5355 sp = stack;
5356 stackdepth_push(&sp, entryblock, 0);
5357 while (sp != stack) {
5358 b = *--sp;
5359 int depth = b->b_startdepth;
5360 assert(depth >= 0);
5361 basicblock *next = b->b_next;
5362 for (int i = 0; i < b->b_iused; i++) {
5363 struct instr *instr = &b->b_instr[i];
5364 int effect = stack_effect(instr->i_opcode, instr->i_oparg, 0);
5365 if (effect == PY_INVALID_STACK_EFFECT) {
5366 fprintf(stderr, "opcode = %d\n", instr->i_opcode);
5367 Py_FatalError("PyCompile_OpcodeStackEffect()");
5368 }
5369 int new_depth = depth + effect;
5370 if (new_depth > maxdepth) {
5371 maxdepth = new_depth;
5372 }
5373 assert(depth >= 0); /* invalid code or bug in stackdepth() */
5374 if (instr->i_jrel || instr->i_jabs) {
5375 effect = stack_effect(instr->i_opcode, instr->i_oparg, 1);
5376 assert(effect != PY_INVALID_STACK_EFFECT);
5377 int target_depth = depth + effect;
5378 if (target_depth > maxdepth) {
5379 maxdepth = target_depth;
5380 }
5381 assert(target_depth >= 0); /* invalid code or bug in stackdepth() */
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005382 if (instr->i_opcode == CALL_FINALLY) {
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005383 assert(instr->i_target->b_startdepth >= 0);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005384 assert(instr->i_target->b_startdepth >= target_depth);
5385 depth = new_depth;
5386 continue;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005387 }
5388 stackdepth_push(&sp, instr->i_target, target_depth);
5389 }
5390 depth = new_depth;
5391 if (instr->i_opcode == JUMP_ABSOLUTE ||
5392 instr->i_opcode == JUMP_FORWARD ||
5393 instr->i_opcode == RETURN_VALUE ||
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005394 instr->i_opcode == RAISE_VARARGS)
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005395 {
5396 /* remaining code is dead */
5397 next = NULL;
5398 break;
5399 }
5400 }
5401 if (next != NULL) {
5402 stackdepth_push(&sp, next, depth);
5403 }
5404 }
5405 PyObject_Free(stack);
5406 return maxdepth;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005407}
5408
5409static int
5410assemble_init(struct assembler *a, int nblocks, int firstlineno)
5411{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005412 memset(a, 0, sizeof(struct assembler));
5413 a->a_lineno = firstlineno;
5414 a->a_bytecode = PyBytes_FromStringAndSize(NULL, DEFAULT_CODE_SIZE);
5415 if (!a->a_bytecode)
5416 return 0;
5417 a->a_lnotab = PyBytes_FromStringAndSize(NULL, DEFAULT_LNOTAB_SIZE);
5418 if (!a->a_lnotab)
5419 return 0;
Benjamin Peterson2f8bfef2016-09-07 09:26:18 -07005420 if ((size_t)nblocks > SIZE_MAX / sizeof(basicblock *)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005421 PyErr_NoMemory();
5422 return 0;
5423 }
5424 a->a_postorder = (basicblock **)PyObject_Malloc(
5425 sizeof(basicblock *) * nblocks);
5426 if (!a->a_postorder) {
5427 PyErr_NoMemory();
5428 return 0;
5429 }
5430 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005431}
5432
5433static void
5434assemble_free(struct assembler *a)
5435{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005436 Py_XDECREF(a->a_bytecode);
5437 Py_XDECREF(a->a_lnotab);
5438 if (a->a_postorder)
5439 PyObject_Free(a->a_postorder);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005440}
5441
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005442static int
5443blocksize(basicblock *b)
5444{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005445 int i;
5446 int size = 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005447
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005448 for (i = 0; i < b->b_iused; i++)
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005449 size += instrsize(b->b_instr[i].i_oparg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005450 return size;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005451}
5452
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +00005453/* Appends a pair to the end of the line number table, a_lnotab, representing
5454 the instruction's bytecode offset and line number. See
5455 Objects/lnotab_notes.txt for the description of the line number table. */
Tim Peters2a7f3842001-06-09 09:26:21 +00005456
Guido van Rossumf68d8e52001-04-14 17:55:09 +00005457static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005458assemble_lnotab(struct assembler *a, struct instr *i)
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005459{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005460 int d_bytecode, d_lineno;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005461 Py_ssize_t len;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005462 unsigned char *lnotab;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005463
Serhiy Storchakaab874002016-09-11 13:48:15 +03005464 d_bytecode = (a->a_offset - a->a_lineno_off) * sizeof(_Py_CODEUNIT);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005465 d_lineno = i->i_lineno - a->a_lineno;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005466
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005467 assert(d_bytecode >= 0);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005469 if(d_bytecode == 0 && d_lineno == 0)
5470 return 1;
Guido van Rossum4bad92c1991-07-27 21:34:52 +00005471
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005472 if (d_bytecode > 255) {
5473 int j, nbytes, ncodes = d_bytecode / 255;
5474 nbytes = a->a_lnotab_off + 2 * ncodes;
5475 len = PyBytes_GET_SIZE(a->a_lnotab);
5476 if (nbytes >= len) {
5477 if ((len <= INT_MAX / 2) && (len * 2 < nbytes))
5478 len = nbytes;
5479 else if (len <= INT_MAX / 2)
5480 len *= 2;
5481 else {
5482 PyErr_NoMemory();
5483 return 0;
5484 }
5485 if (_PyBytes_Resize(&a->a_lnotab, len) < 0)
5486 return 0;
5487 }
5488 lnotab = (unsigned char *)
5489 PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off;
5490 for (j = 0; j < ncodes; j++) {
5491 *lnotab++ = 255;
5492 *lnotab++ = 0;
5493 }
5494 d_bytecode -= ncodes * 255;
5495 a->a_lnotab_off += ncodes * 2;
5496 }
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005497 assert(0 <= d_bytecode && d_bytecode <= 255);
5498
5499 if (d_lineno < -128 || 127 < d_lineno) {
5500 int j, nbytes, ncodes, k;
5501 if (d_lineno < 0) {
5502 k = -128;
5503 /* use division on positive numbers */
5504 ncodes = (-d_lineno) / 128;
5505 }
5506 else {
5507 k = 127;
5508 ncodes = d_lineno / 127;
5509 }
5510 d_lineno -= ncodes * k;
5511 assert(ncodes >= 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005512 nbytes = a->a_lnotab_off + 2 * ncodes;
5513 len = PyBytes_GET_SIZE(a->a_lnotab);
5514 if (nbytes >= len) {
5515 if ((len <= INT_MAX / 2) && len * 2 < nbytes)
5516 len = nbytes;
5517 else if (len <= INT_MAX / 2)
5518 len *= 2;
5519 else {
5520 PyErr_NoMemory();
5521 return 0;
5522 }
5523 if (_PyBytes_Resize(&a->a_lnotab, len) < 0)
5524 return 0;
5525 }
5526 lnotab = (unsigned char *)
5527 PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off;
5528 *lnotab++ = d_bytecode;
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005529 *lnotab++ = k;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005530 d_bytecode = 0;
5531 for (j = 1; j < ncodes; j++) {
5532 *lnotab++ = 0;
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005533 *lnotab++ = k;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005534 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005535 a->a_lnotab_off += ncodes * 2;
5536 }
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005537 assert(-128 <= d_lineno && d_lineno <= 127);
Guido van Rossum10dc2e81990-11-18 17:27:39 +00005538
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005539 len = PyBytes_GET_SIZE(a->a_lnotab);
5540 if (a->a_lnotab_off + 2 >= len) {
5541 if (_PyBytes_Resize(&a->a_lnotab, len * 2) < 0)
5542 return 0;
5543 }
5544 lnotab = (unsigned char *)
5545 PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off;
Tim Peters51e26512001-09-07 08:45:55 +00005546
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005547 a->a_lnotab_off += 2;
5548 if (d_bytecode) {
5549 *lnotab++ = d_bytecode;
Victor Stinner4f2dab52011-05-27 16:46:51 +02005550 *lnotab++ = d_lineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005551 }
5552 else { /* First line of a block; def stmt, etc. */
5553 *lnotab++ = 0;
Victor Stinner4f2dab52011-05-27 16:46:51 +02005554 *lnotab++ = d_lineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005555 }
5556 a->a_lineno = i->i_lineno;
5557 a->a_lineno_off = a->a_offset;
5558 return 1;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005559}
5560
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005561/* assemble_emit()
5562 Extend the bytecode with a new instruction.
5563 Update lnotab if necessary.
Jeremy Hylton376e63d2003-08-28 14:42:14 +00005564*/
5565
Guido van Rossum4ca6c9d1994-08-29 12:16:12 +00005566static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005567assemble_emit(struct assembler *a, struct instr *i)
Guido van Rossum4ca6c9d1994-08-29 12:16:12 +00005568{
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005569 int size, arg = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005570 Py_ssize_t len = PyBytes_GET_SIZE(a->a_bytecode);
Serhiy Storchakaab874002016-09-11 13:48:15 +03005571 _Py_CODEUNIT *code;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005572
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005573 arg = i->i_oparg;
5574 size = instrsize(arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005575 if (i->i_lineno && !assemble_lnotab(a, i))
5576 return 0;
Serhiy Storchakaab874002016-09-11 13:48:15 +03005577 if (a->a_offset + size >= len / (int)sizeof(_Py_CODEUNIT)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005578 if (len > PY_SSIZE_T_MAX / 2)
5579 return 0;
5580 if (_PyBytes_Resize(&a->a_bytecode, len * 2) < 0)
5581 return 0;
5582 }
Serhiy Storchakaab874002016-09-11 13:48:15 +03005583 code = (_Py_CODEUNIT *)PyBytes_AS_STRING(a->a_bytecode) + a->a_offset;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005584 a->a_offset += size;
Serhiy Storchakaab874002016-09-11 13:48:15 +03005585 write_op_arg(code, i->i_opcode, arg, size);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005586 return 1;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00005587}
5588
Neal Norwitz7d37f2f2005-10-23 22:40:47 +00005589static void
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005590assemble_jump_offsets(struct assembler *a, struct compiler *c)
Anthony Baxterc2a5a632004-08-02 06:10:11 +00005591{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005592 basicblock *b;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005593 int bsize, totsize, extended_arg_recompile;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005594 int i;
Guido van Rossumc5e96291991-12-10 13:53:51 +00005595
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005596 /* Compute the size of each block and fixup jump args.
5597 Replace block pointer with position in bytecode. */
5598 do {
5599 totsize = 0;
5600 for (i = a->a_nblocks - 1; i >= 0; i--) {
5601 b = a->a_postorder[i];
5602 bsize = blocksize(b);
5603 b->b_offset = totsize;
5604 totsize += bsize;
5605 }
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005606 extended_arg_recompile = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005607 for (b = c->u->u_blocks; b != NULL; b = b->b_list) {
5608 bsize = b->b_offset;
5609 for (i = 0; i < b->b_iused; i++) {
5610 struct instr *instr = &b->b_instr[i];
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005611 int isize = instrsize(instr->i_oparg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005612 /* Relative jumps are computed relative to
5613 the instruction pointer after fetching
5614 the jump instruction.
5615 */
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005616 bsize += isize;
5617 if (instr->i_jabs || instr->i_jrel) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005618 instr->i_oparg = instr->i_target->b_offset;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005619 if (instr->i_jrel) {
5620 instr->i_oparg -= bsize;
5621 }
Serhiy Storchakaab874002016-09-11 13:48:15 +03005622 instr->i_oparg *= sizeof(_Py_CODEUNIT);
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005623 if (instrsize(instr->i_oparg) != isize) {
5624 extended_arg_recompile = 1;
5625 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005626 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005627 }
5628 }
Neal Norwitzf1d50682005-10-23 23:00:41 +00005629
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005630 /* XXX: This is an awful hack that could hurt performance, but
5631 on the bright side it should work until we come up
5632 with a better solution.
Neal Norwitzf1d50682005-10-23 23:00:41 +00005633
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005634 The issue is that in the first loop blocksize() is called
5635 which calls instrsize() which requires i_oparg be set
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005636 appropriately. There is a bootstrap problem because
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005637 i_oparg is calculated in the second loop above.
Neal Norwitzf1d50682005-10-23 23:00:41 +00005638
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005639 So we loop until we stop seeing new EXTENDED_ARGs.
5640 The only EXTENDED_ARGs that could be popping up are
5641 ones in jump instructions. So this should converge
5642 fairly quickly.
5643 */
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005644 } while (extended_arg_recompile);
Guido van Rossum10dc2e81990-11-18 17:27:39 +00005645}
5646
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005647static PyObject *
Victor Stinnerad9a0662013-11-19 22:23:20 +01005648dict_keys_inorder(PyObject *dict, Py_ssize_t offset)
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005649{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005650 PyObject *tuple, *k, *v;
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +02005651 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict);
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005652
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005653 tuple = PyTuple_New(size);
5654 if (tuple == NULL)
5655 return NULL;
5656 while (PyDict_Next(dict, &pos, &k, &v)) {
5657 i = PyLong_AS_LONG(v);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005658 Py_INCREF(k);
5659 assert((i - offset) < size);
5660 assert((i - offset) >= 0);
5661 PyTuple_SET_ITEM(tuple, i - offset, k);
5662 }
5663 return tuple;
5664}
5665
5666static PyObject *
5667consts_dict_keys_inorder(PyObject *dict)
5668{
5669 PyObject *consts, *k, *v;
5670 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict);
5671
5672 consts = PyList_New(size); /* PyCode_Optimize() requires a list */
5673 if (consts == NULL)
5674 return NULL;
5675 while (PyDict_Next(dict, &pos, &k, &v)) {
5676 i = PyLong_AS_LONG(v);
Serhiy Storchakab7e1eff2018-04-19 08:28:04 +03005677 /* The keys of the dictionary can be tuples wrapping a contant.
5678 * (see compiler_add_o and _PyCode_ConstantKey). In that case
5679 * the object we want is always second. */
5680 if (PyTuple_CheckExact(k)) {
5681 k = PyTuple_GET_ITEM(k, 1);
5682 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005683 Py_INCREF(k);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005684 assert(i < size);
5685 assert(i >= 0);
5686 PyList_SET_ITEM(consts, i, k);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005687 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005688 return consts;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005689}
5690
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005691static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005692compute_code_flags(struct compiler *c)
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005693{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005694 PySTEntryObject *ste = c->u->u_ste;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005695 int flags = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005696 if (ste->ste_type == FunctionBlock) {
Benjamin Peterson1dfd2472015-04-27 21:44:22 -04005697 flags |= CO_NEWLOCALS | CO_OPTIMIZED;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005698 if (ste->ste_nested)
5699 flags |= CO_NESTED;
Yury Selivanoveb636452016-09-08 22:01:51 -07005700 if (ste->ste_generator && !ste->ste_coroutine)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005701 flags |= CO_GENERATOR;
Yury Selivanoveb636452016-09-08 22:01:51 -07005702 if (!ste->ste_generator && ste->ste_coroutine)
5703 flags |= CO_COROUTINE;
5704 if (ste->ste_generator && ste->ste_coroutine)
5705 flags |= CO_ASYNC_GENERATOR;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005706 if (ste->ste_varargs)
5707 flags |= CO_VARARGS;
5708 if (ste->ste_varkeywords)
5709 flags |= CO_VARKEYWORDS;
5710 }
Thomas Wouters5e9f1fa2006-02-28 20:02:27 +00005711
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005712 /* (Only) inherit compilerflags in PyCF_MASK */
5713 flags |= (c->c_flags->cf_flags & PyCF_MASK);
Thomas Wouters5e9f1fa2006-02-28 20:02:27 +00005714
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005715 return flags;
Jeremy Hylton29906ee2001-02-27 04:23:34 +00005716}
5717
INADA Naokic2e16072018-11-26 21:23:22 +09005718// Merge *tuple* with constant cache.
5719// Unlike merge_consts_recursive(), this function doesn't work recursively.
5720static int
5721merge_const_tuple(struct compiler *c, PyObject **tuple)
5722{
5723 assert(PyTuple_CheckExact(*tuple));
5724
5725 PyObject *key = _PyCode_ConstantKey(*tuple);
5726 if (key == NULL) {
5727 return 0;
5728 }
5729
5730 // t is borrowed reference
5731 PyObject *t = PyDict_SetDefault(c->c_const_cache, key, key);
5732 Py_DECREF(key);
5733 if (t == NULL) {
5734 return 0;
5735 }
5736 if (t == key) { // tuple is new constant.
5737 return 1;
5738 }
5739
5740 PyObject *u = PyTuple_GET_ITEM(t, 1);
5741 Py_INCREF(u);
5742 Py_DECREF(*tuple);
5743 *tuple = u;
5744 return 1;
5745}
5746
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005747static PyCodeObject *
5748makecode(struct compiler *c, struct assembler *a)
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005749{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005750 PyObject *tmp;
5751 PyCodeObject *co = NULL;
5752 PyObject *consts = NULL;
5753 PyObject *names = NULL;
5754 PyObject *varnames = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005755 PyObject *name = NULL;
5756 PyObject *freevars = NULL;
5757 PyObject *cellvars = NULL;
5758 PyObject *bytecode = NULL;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005759 Py_ssize_t nlocals;
5760 int nlocals_int;
5761 int flags;
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01005762 int argcount, posonlyargcount, kwonlyargcount, maxdepth;
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005763
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005764 consts = consts_dict_keys_inorder(c->u->u_consts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005765 names = dict_keys_inorder(c->u->u_names, 0);
5766 varnames = dict_keys_inorder(c->u->u_varnames, 0);
5767 if (!consts || !names || !varnames)
5768 goto error;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005769
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005770 cellvars = dict_keys_inorder(c->u->u_cellvars, 0);
5771 if (!cellvars)
5772 goto error;
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005773 freevars = dict_keys_inorder(c->u->u_freevars, PyTuple_GET_SIZE(cellvars));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005774 if (!freevars)
5775 goto error;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005776
INADA Naokic2e16072018-11-26 21:23:22 +09005777 if (!merge_const_tuple(c, &names) ||
5778 !merge_const_tuple(c, &varnames) ||
5779 !merge_const_tuple(c, &cellvars) ||
5780 !merge_const_tuple(c, &freevars))
5781 {
5782 goto error;
5783 }
5784
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +02005785 nlocals = PyDict_GET_SIZE(c->u->u_varnames);
Victor Stinnerad9a0662013-11-19 22:23:20 +01005786 assert(nlocals < INT_MAX);
5787 nlocals_int = Py_SAFE_DOWNCAST(nlocals, Py_ssize_t, int);
5788
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005789 flags = compute_code_flags(c);
5790 if (flags < 0)
5791 goto error;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005792
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005793 bytecode = PyCode_Optimize(a->a_bytecode, consts, names, a->a_lnotab);
5794 if (!bytecode)
5795 goto error;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005796
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005797 tmp = PyList_AsTuple(consts); /* PyCode_New requires a tuple */
5798 if (!tmp)
5799 goto error;
5800 Py_DECREF(consts);
5801 consts = tmp;
INADA Naokic2e16072018-11-26 21:23:22 +09005802 if (!merge_const_tuple(c, &consts)) {
5803 goto error;
5804 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005805
Victor Stinnerf8e32212013-11-19 23:56:34 +01005806 argcount = Py_SAFE_DOWNCAST(c->u->u_argcount, Py_ssize_t, int);
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01005807 posonlyargcount = Py_SAFE_DOWNCAST(c->u->u_posonlyargcount, Py_ssize_t, int);
Victor Stinnerf8e32212013-11-19 23:56:34 +01005808 kwonlyargcount = Py_SAFE_DOWNCAST(c->u->u_kwonlyargcount, Py_ssize_t, int);
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005809 maxdepth = stackdepth(c);
5810 if (maxdepth < 0) {
5811 goto error;
5812 }
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01005813 co = PyCode_New(argcount, posonlyargcount, kwonlyargcount,
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005814 nlocals_int, maxdepth, flags,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005815 bytecode, consts, names, varnames,
5816 freevars, cellvars,
Victor Stinner14e461d2013-08-26 22:28:21 +02005817 c->c_filename, c->u->u_name,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005818 c->u->u_firstlineno,
5819 a->a_lnotab);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005820 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005821 Py_XDECREF(consts);
5822 Py_XDECREF(names);
5823 Py_XDECREF(varnames);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005824 Py_XDECREF(name);
5825 Py_XDECREF(freevars);
5826 Py_XDECREF(cellvars);
5827 Py_XDECREF(bytecode);
5828 return co;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005829}
5830
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005831
5832/* For debugging purposes only */
5833#if 0
5834static void
5835dump_instr(const struct instr *i)
5836{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005837 const char *jrel = i->i_jrel ? "jrel " : "";
5838 const char *jabs = i->i_jabs ? "jabs " : "";
5839 char arg[128];
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005840
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005841 *arg = '\0';
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005842 if (HAS_ARG(i->i_opcode)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005843 sprintf(arg, "arg: %d ", i->i_oparg);
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005844 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005845 fprintf(stderr, "line: %d, opcode: %d %s%s%s\n",
5846 i->i_lineno, i->i_opcode, arg, jabs, jrel);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005847}
5848
5849static void
5850dump_basicblock(const basicblock *b)
5851{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005852 const char *seen = b->b_seen ? "seen " : "";
5853 const char *b_return = b->b_return ? "return " : "";
5854 fprintf(stderr, "used: %d, depth: %d, offset: %d %s%s\n",
5855 b->b_iused, b->b_startdepth, b->b_offset, seen, b_return);
5856 if (b->b_instr) {
5857 int i;
5858 for (i = 0; i < b->b_iused; i++) {
5859 fprintf(stderr, " [%02d] ", i);
5860 dump_instr(b->b_instr + i);
5861 }
5862 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005863}
5864#endif
5865
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005866static PyCodeObject *
5867assemble(struct compiler *c, int addNone)
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005868{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005869 basicblock *b, *entryblock;
5870 struct assembler a;
5871 int i, j, nblocks;
5872 PyCodeObject *co = NULL;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005873
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005874 /* Make sure every block that falls off the end returns None.
5875 XXX NEXT_BLOCK() isn't quite right, because if the last
5876 block ends with a jump or return b_next shouldn't set.
5877 */
5878 if (!c->u->u_curblock->b_return) {
5879 NEXT_BLOCK(c);
5880 if (addNone)
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005881 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005882 ADDOP(c, RETURN_VALUE);
5883 }
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005884
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005885 nblocks = 0;
5886 entryblock = NULL;
5887 for (b = c->u->u_blocks; b != NULL; b = b->b_list) {
5888 nblocks++;
5889 entryblock = b;
5890 }
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005891
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005892 /* Set firstlineno if it wasn't explicitly set. */
5893 if (!c->u->u_firstlineno) {
Ned Deilydc35cda2016-08-17 17:18:33 -04005894 if (entryblock && entryblock->b_instr && entryblock->b_instr->i_lineno)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005895 c->u->u_firstlineno = entryblock->b_instr->i_lineno;
5896 else
5897 c->u->u_firstlineno = 1;
5898 }
5899 if (!assemble_init(&a, nblocks, c->u->u_firstlineno))
5900 goto error;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005901 dfs(c, entryblock, &a, nblocks);
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005902
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005903 /* Can't modify the bytecode after computing jump offsets. */
5904 assemble_jump_offsets(&a, c);
Tim Petersb6c3cea2001-06-26 03:36:28 +00005905
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005906 /* Emit code in reverse postorder from dfs. */
5907 for (i = a.a_nblocks - 1; i >= 0; i--) {
5908 b = a.a_postorder[i];
5909 for (j = 0; j < b->b_iused; j++)
5910 if (!assemble_emit(&a, &b->b_instr[j]))
5911 goto error;
5912 }
Tim Petersb6c3cea2001-06-26 03:36:28 +00005913
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005914 if (_PyBytes_Resize(&a.a_lnotab, a.a_lnotab_off) < 0)
5915 goto error;
Serhiy Storchakaab874002016-09-11 13:48:15 +03005916 if (_PyBytes_Resize(&a.a_bytecode, a.a_offset * sizeof(_Py_CODEUNIT)) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005917 goto error;
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005918
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005919 co = makecode(c, &a);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005920 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005921 assemble_free(&a);
5922 return co;
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005923}
Georg Brandl8334fd92010-12-04 10:26:46 +00005924
5925#undef PyAST_Compile
Benjamin Petersone5024512018-09-12 12:06:42 -07005926PyCodeObject *
Georg Brandl8334fd92010-12-04 10:26:46 +00005927PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags,
5928 PyArena *arena)
5929{
5930 return PyAST_CompileEx(mod, filename, flags, -1, arena);
5931}