blob: 91ce04b02e53c95c7af2046a61d9829b1d89eb6f [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);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002549 /* constant = 0: "if 0"
2550 * constant = 1: "if 1", "if 2", ...
2551 * constant = -1: rest */
2552 if (constant == 0) {
2553 if (s->v.If.orelse)
2554 VISIT_SEQ(c, stmt, s->v.If.orelse);
2555 } else if (constant == 1) {
2556 VISIT_SEQ(c, stmt, s->v.If.body);
2557 } else {
Antoine Pitroue7811fc2014-09-18 03:06:50 +02002558 if (asdl_seq_LEN(s->v.If.orelse)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002559 next = compiler_new_block(c);
2560 if (next == NULL)
2561 return 0;
2562 }
2563 else
2564 next = end;
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002565 if (!compiler_jump_if(c, s->v.If.test, next, 0))
2566 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002567 VISIT_SEQ(c, stmt, s->v.If.body);
Antoine Pitroue7811fc2014-09-18 03:06:50 +02002568 if (asdl_seq_LEN(s->v.If.orelse)) {
2569 ADDOP_JREL(c, JUMP_FORWARD, end);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002570 compiler_use_next_block(c, next);
2571 VISIT_SEQ(c, stmt, s->v.If.orelse);
2572 }
2573 }
2574 compiler_use_next_block(c, end);
2575 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002576}
2577
2578static int
2579compiler_for(struct compiler *c, stmt_ty s)
2580{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002581 basicblock *start, *cleanup, *end;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002582
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002583 start = compiler_new_block(c);
2584 cleanup = compiler_new_block(c);
2585 end = compiler_new_block(c);
2586 if (start == NULL || end == NULL || cleanup == NULL)
2587 return 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002588
2589 if (!compiler_push_fblock(c, FOR_LOOP, start, end))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002590 return 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002591
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002592 VISIT(c, expr, s->v.For.iter);
2593 ADDOP(c, GET_ITER);
2594 compiler_use_next_block(c, start);
2595 ADDOP_JREL(c, FOR_ITER, cleanup);
2596 VISIT(c, expr, s->v.For.target);
2597 VISIT_SEQ(c, stmt, s->v.For.body);
2598 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
2599 compiler_use_next_block(c, cleanup);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002600
2601 compiler_pop_fblock(c, FOR_LOOP, start);
2602
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002603 VISIT_SEQ(c, stmt, s->v.For.orelse);
2604 compiler_use_next_block(c, end);
2605 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002606}
2607
Yury Selivanov75445082015-05-11 22:57:16 -04002608
2609static int
2610compiler_async_for(struct compiler *c, stmt_ty s)
2611{
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002612 basicblock *start, *except, *end;
Zsolt Dollensteine2396502018-04-27 08:58:56 -07002613 if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION) {
2614 return compiler_error(c, "'async for' outside async function");
2615 }
2616
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002617 start = compiler_new_block(c);
Yury Selivanov75445082015-05-11 22:57:16 -04002618 except = compiler_new_block(c);
2619 end = compiler_new_block(c);
Yury Selivanov75445082015-05-11 22:57:16 -04002620
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002621 if (start == NULL || except == NULL || end == NULL)
Yury Selivanov75445082015-05-11 22:57:16 -04002622 return 0;
2623
2624 VISIT(c, expr, s->v.AsyncFor.iter);
2625 ADDOP(c, GET_AITER);
Yury Selivanov75445082015-05-11 22:57:16 -04002626
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002627 compiler_use_next_block(c, start);
2628 if (!compiler_push_fblock(c, FOR_LOOP, start, end))
2629 return 0;
Yury Selivanov75445082015-05-11 22:57:16 -04002630
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002631 /* SETUP_FINALLY to guard the __anext__ call */
2632 ADDOP_JREL(c, SETUP_FINALLY, except);
Yury Selivanov75445082015-05-11 22:57:16 -04002633 ADDOP(c, GET_ANEXT);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002634 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04002635 ADDOP(c, YIELD_FROM);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002636 ADDOP(c, POP_BLOCK); /* for SETUP_FINALLY */
Yury Selivanov75445082015-05-11 22:57:16 -04002637
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002638 /* Success block for __anext__ */
2639 VISIT(c, expr, s->v.AsyncFor.target);
2640 VISIT_SEQ(c, stmt, s->v.AsyncFor.body);
2641 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
2642
2643 compiler_pop_fblock(c, FOR_LOOP, start);
Yury Selivanov75445082015-05-11 22:57:16 -04002644
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002645 /* Except block for __anext__ */
Yury Selivanov75445082015-05-11 22:57:16 -04002646 compiler_use_next_block(c, except);
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02002647 ADDOP(c, END_ASYNC_FOR);
Yury Selivanov75445082015-05-11 22:57:16 -04002648
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002649 /* `else` block */
Yury Selivanov75445082015-05-11 22:57:16 -04002650 VISIT_SEQ(c, stmt, s->v.For.orelse);
2651
2652 compiler_use_next_block(c, end);
2653
2654 return 1;
2655}
2656
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002657static int
2658compiler_while(struct compiler *c, stmt_ty s)
2659{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002660 basicblock *loop, *orelse, *end, *anchor = NULL;
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +02002661 int constant = expr_constant(s->v.While.test);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002662
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002663 if (constant == 0) {
2664 if (s->v.While.orelse)
2665 VISIT_SEQ(c, stmt, s->v.While.orelse);
2666 return 1;
2667 }
2668 loop = compiler_new_block(c);
2669 end = compiler_new_block(c);
2670 if (constant == -1) {
2671 anchor = compiler_new_block(c);
2672 if (anchor == NULL)
2673 return 0;
2674 }
2675 if (loop == NULL || end == NULL)
2676 return 0;
2677 if (s->v.While.orelse) {
2678 orelse = compiler_new_block(c);
2679 if (orelse == NULL)
2680 return 0;
2681 }
2682 else
2683 orelse = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002684
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002685 compiler_use_next_block(c, loop);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002686 if (!compiler_push_fblock(c, WHILE_LOOP, loop, end))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002687 return 0;
2688 if (constant == -1) {
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03002689 if (!compiler_jump_if(c, s->v.While.test, anchor, 0))
2690 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002691 }
2692 VISIT_SEQ(c, stmt, s->v.While.body);
2693 ADDOP_JABS(c, JUMP_ABSOLUTE, loop);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002694
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002695 /* XXX should the two POP instructions be in a separate block
2696 if there is no else clause ?
2697 */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002698
Benjamin Peterson3cda0ed2014-12-13 16:06:19 -05002699 if (constant == -1)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002700 compiler_use_next_block(c, anchor);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002701 compiler_pop_fblock(c, WHILE_LOOP, loop);
2702
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002703 if (orelse != NULL) /* what if orelse is just pass? */
2704 VISIT_SEQ(c, stmt, s->v.While.orelse);
2705 compiler_use_next_block(c, end);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002706
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002707 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002708}
2709
2710static int
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002711compiler_return(struct compiler *c, stmt_ty s)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002712{
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002713 int preserve_tos = ((s->v.Return.value != NULL) &&
Serhiy Storchaka3f228112018-09-27 17:42:37 +03002714 (s->v.Return.value->kind != Constant_kind));
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002715 if (c->u->u_ste->ste_type != FunctionBlock)
2716 return compiler_error(c, "'return' outside function");
2717 if (s->v.Return.value != NULL &&
2718 c->u->u_ste->ste_coroutine && c->u->u_ste->ste_generator)
2719 {
2720 return compiler_error(
2721 c, "'return' with value in async generator");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002722 }
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002723 if (preserve_tos) {
2724 VISIT(c, expr, s->v.Return.value);
2725 }
2726 for (int depth = c->u->u_nfblocks; depth--;) {
2727 struct fblockinfo *info = &c->u->u_fblock[depth];
2728
2729 if (!compiler_unwind_fblock(c, info, preserve_tos))
2730 return 0;
2731 }
2732 if (s->v.Return.value == NULL) {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002733 ADDOP_LOAD_CONST(c, Py_None);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002734 }
2735 else if (!preserve_tos) {
2736 VISIT(c, expr, s->v.Return.value);
2737 }
2738 ADDOP(c, RETURN_VALUE);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002739
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002740 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002741}
2742
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002743static int
2744compiler_break(struct compiler *c)
2745{
2746 for (int depth = c->u->u_nfblocks; depth--;) {
2747 struct fblockinfo *info = &c->u->u_fblock[depth];
2748
2749 if (!compiler_unwind_fblock(c, info, 0))
2750 return 0;
2751 if (info->fb_type == WHILE_LOOP || info->fb_type == FOR_LOOP) {
2752 ADDOP_JABS(c, JUMP_ABSOLUTE, info->fb_exit);
2753 return 1;
2754 }
2755 }
2756 return compiler_error(c, "'break' outside loop");
2757}
2758
2759static int
2760compiler_continue(struct compiler *c)
2761{
2762 for (int depth = c->u->u_nfblocks; depth--;) {
2763 struct fblockinfo *info = &c->u->u_fblock[depth];
2764
2765 if (info->fb_type == WHILE_LOOP || info->fb_type == FOR_LOOP) {
2766 ADDOP_JABS(c, JUMP_ABSOLUTE, info->fb_block);
2767 return 1;
2768 }
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002769 if (!compiler_unwind_fblock(c, info, 0))
2770 return 0;
2771 }
2772 return compiler_error(c, "'continue' not properly in loop");
2773}
2774
2775
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002776/* Code generated for "try: <body> finally: <finalbody>" is as follows:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002777
2778 SETUP_FINALLY L
2779 <code for body>
2780 POP_BLOCK
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002781 BEGIN_FINALLY
2782 L:
2783 <code for finalbody>
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002784 END_FINALLY
2785
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002786 The special instructions use the block stack. Each block
2787 stack entry contains the instruction that created it (here
2788 SETUP_FINALLY), the level of the value stack at the time the
2789 block stack entry was created, and a label (here L).
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002790
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002791 SETUP_FINALLY:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002792 Pushes the current value stack level and the label
2793 onto the block stack.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002794 POP_BLOCK:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002795 Pops en entry from the block stack.
2796 BEGIN_FINALLY
2797 Pushes NULL onto the value stack.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002798 END_FINALLY:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002799 Pops 1 (NULL or int) or 6 entries from the *value* stack and restore
2800 the raised and the caught exceptions they specify.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002801
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002802 The block stack is unwound when an exception is raised:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002803 when a SETUP_FINALLY entry is found, the raised and the caught
2804 exceptions are pushed onto the value stack (and the exception
2805 condition is cleared), and the interpreter jumps to the label
2806 gotten from the block stack.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002807*/
2808
2809static int
2810compiler_try_finally(struct compiler *c, stmt_ty s)
2811{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002812 basicblock *body, *end;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002813
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002814 body = compiler_new_block(c);
2815 end = compiler_new_block(c);
2816 if (body == NULL || end == NULL)
2817 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002818
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002819 /* `try` block */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002820 ADDOP_JREL(c, SETUP_FINALLY, end);
2821 compiler_use_next_block(c, body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002822 if (!compiler_push_fblock(c, FINALLY_TRY, body, end))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002823 return 0;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002824 if (s->v.Try.handlers && asdl_seq_LEN(s->v.Try.handlers)) {
2825 if (!compiler_try_except(c, s))
2826 return 0;
2827 }
2828 else {
2829 VISIT_SEQ(c, stmt, s->v.Try.body);
2830 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002831 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002832 ADDOP(c, BEGIN_FINALLY);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002833 compiler_pop_fblock(c, FINALLY_TRY, body);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002834
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002835 /* `finally` block */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002836 compiler_use_next_block(c, end);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002837 if (!compiler_push_fblock(c, FINALLY_END, end, NULL))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002838 return 0;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002839 VISIT_SEQ(c, stmt, s->v.Try.finalbody);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002840 ADDOP(c, END_FINALLY);
2841 compiler_pop_fblock(c, FINALLY_END, end);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002842 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002843}
2844
2845/*
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002846 Code generated for "try: S except E1 as V1: S1 except E2 as V2: S2 ...":
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002847 (The contents of the value stack is shown in [], with the top
2848 at the right; 'tb' is trace-back info, 'val' the exception's
2849 associated value, and 'exc' the exception.)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002850
2851 Value stack Label Instruction Argument
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002852 [] SETUP_FINALLY L1
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002853 [] <code for S>
2854 [] POP_BLOCK
2855 [] JUMP_FORWARD L0
2856
2857 [tb, val, exc] L1: DUP )
2858 [tb, val, exc, exc] <evaluate E1> )
2859 [tb, val, exc, exc, E1] COMPARE_OP EXC_MATCH ) only if E1
2860 [tb, val, exc, 1-or-0] POP_JUMP_IF_FALSE L2 )
2861 [tb, val, exc] POP
2862 [tb, val] <assign to V1> (or POP if no V1)
2863 [tb] POP
2864 [] <code for S1>
2865 JUMP_FORWARD L0
2866
2867 [tb, val, exc] L2: DUP
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002868 .............................etc.......................
2869
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002870 [tb, val, exc] Ln+1: END_FINALLY # re-raise exception
2871
2872 [] L0: <next statement>
2873
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002874 Of course, parts are not generated if Vi or Ei is not present.
2875*/
2876static int
2877compiler_try_except(struct compiler *c, stmt_ty s)
2878{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002879 basicblock *body, *orelse, *except, *end;
Victor Stinnerad9a0662013-11-19 22:23:20 +01002880 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002881
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002882 body = compiler_new_block(c);
2883 except = compiler_new_block(c);
2884 orelse = compiler_new_block(c);
2885 end = compiler_new_block(c);
2886 if (body == NULL || except == NULL || orelse == NULL || end == NULL)
2887 return 0;
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002888 ADDOP_JREL(c, SETUP_FINALLY, except);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002889 compiler_use_next_block(c, body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002890 if (!compiler_push_fblock(c, EXCEPT, body, NULL))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002891 return 0;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002892 VISIT_SEQ(c, stmt, s->v.Try.body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002893 ADDOP(c, POP_BLOCK);
2894 compiler_pop_fblock(c, EXCEPT, body);
2895 ADDOP_JREL(c, JUMP_FORWARD, orelse);
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002896 n = asdl_seq_LEN(s->v.Try.handlers);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002897 compiler_use_next_block(c, except);
2898 for (i = 0; i < n; i++) {
2899 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET(
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002900 s->v.Try.handlers, i);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002901 if (!handler->v.ExceptHandler.type && i < n-1)
2902 return compiler_error(c, "default 'except:' must be last");
2903 c->u->u_lineno_set = 0;
2904 c->u->u_lineno = handler->lineno;
Benjamin Petersond4efd9e2010-09-20 23:02:10 +00002905 c->u->u_col_offset = handler->col_offset;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002906 except = compiler_new_block(c);
2907 if (except == NULL)
2908 return 0;
2909 if (handler->v.ExceptHandler.type) {
2910 ADDOP(c, DUP_TOP);
2911 VISIT(c, expr, handler->v.ExceptHandler.type);
2912 ADDOP_I(c, COMPARE_OP, PyCmp_EXC_MATCH);
2913 ADDOP_JABS(c, POP_JUMP_IF_FALSE, except);
2914 }
2915 ADDOP(c, POP_TOP);
2916 if (handler->v.ExceptHandler.name) {
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002917 basicblock *cleanup_end, *cleanup_body;
Guido van Rossumb940e112007-01-10 16:19:56 +00002918
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002919 cleanup_end = compiler_new_block(c);
2920 cleanup_body = compiler_new_block(c);
Zackery Spytz53ebf4b2018-10-11 23:54:03 -06002921 if (cleanup_end == NULL || cleanup_body == NULL) {
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002922 return 0;
Zackery Spytz53ebf4b2018-10-11 23:54:03 -06002923 }
Guido van Rossumb940e112007-01-10 16:19:56 +00002924
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002925 compiler_nameop(c, handler->v.ExceptHandler.name, Store);
2926 ADDOP(c, POP_TOP);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002927
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002928 /*
2929 try:
Ezio Melotti1b6424f2013-04-19 07:10:09 +03002930 # body
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002931 except type as name:
Ezio Melotti1b6424f2013-04-19 07:10:09 +03002932 try:
2933 # body
2934 finally:
2935 name = None
2936 del name
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002937 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002938
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002939 /* second try: */
2940 ADDOP_JREL(c, SETUP_FINALLY, cleanup_end);
2941 compiler_use_next_block(c, cleanup_body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002942 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, cleanup_end))
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002943 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002944
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002945 /* second # body */
2946 VISIT_SEQ(c, stmt, handler->v.ExceptHandler.body);
2947 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002948 ADDOP(c, BEGIN_FINALLY);
2949 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002950
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002951 /* finally: */
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002952 compiler_use_next_block(c, cleanup_end);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002953 if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL))
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002954 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002955
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002956 /* name = None; del name */
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03002957 ADDOP_LOAD_CONST(c, Py_None);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002958 compiler_nameop(c, handler->v.ExceptHandler.name, Store);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002959 compiler_nameop(c, handler->v.ExceptHandler.name, Del);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002960
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002961 ADDOP(c, END_FINALLY);
Serhiy Storchakad4864c62018-01-09 21:54:52 +02002962 ADDOP(c, POP_EXCEPT);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002963 compiler_pop_fblock(c, FINALLY_END, cleanup_end);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002964 }
2965 else {
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002966 basicblock *cleanup_body;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002967
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002968 cleanup_body = compiler_new_block(c);
Benjamin Peterson0a5dad92011-05-27 14:17:04 -05002969 if (!cleanup_body)
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002970 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002971
Guido van Rossumb940e112007-01-10 16:19:56 +00002972 ADDOP(c, POP_TOP);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002973 ADDOP(c, POP_TOP);
2974 compiler_use_next_block(c, cleanup_body);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002975 if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL))
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002976 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002977 VISIT_SEQ(c, stmt, handler->v.ExceptHandler.body);
Benjamin Peterson74897ba2011-05-27 14:10:24 -05002978 ADDOP(c, POP_EXCEPT);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02002979 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002980 }
2981 ADDOP_JREL(c, JUMP_FORWARD, end);
2982 compiler_use_next_block(c, except);
2983 }
2984 ADDOP(c, END_FINALLY);
2985 compiler_use_next_block(c, orelse);
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002986 VISIT_SEQ(c, stmt, s->v.Try.orelse);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002987 compiler_use_next_block(c, end);
2988 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00002989}
2990
2991static int
Benjamin Peterson43af12b2011-05-29 11:43:10 -05002992compiler_try(struct compiler *c, stmt_ty s) {
2993 if (s->v.Try.finalbody && asdl_seq_LEN(s->v.Try.finalbody))
2994 return compiler_try_finally(c, s);
2995 else
2996 return compiler_try_except(c, s);
2997}
2998
2999
3000static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003001compiler_import_as(struct compiler *c, identifier name, identifier asname)
3002{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003003 /* The IMPORT_NAME opcode was already generated. This function
3004 merely needs to bind the result to a name.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003005
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003006 If there is a dot in name, we need to split it and emit a
Serhiy Storchakaf93234b2017-05-09 22:31:05 +03003007 IMPORT_FROM for each name.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003008 */
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003009 Py_ssize_t len = PyUnicode_GET_LENGTH(name);
3010 Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003011 if (dot == -2)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03003012 return 0;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003013 if (dot != -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003014 /* Consume the base module name to get the first attribute */
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003015 while (1) {
3016 Py_ssize_t pos = dot + 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003017 PyObject *attr;
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003018 dot = PyUnicode_FindChar(name, '.', pos, len, 1);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003019 if (dot == -2)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03003020 return 0;
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003021 attr = PyUnicode_Substring(name, pos, (dot != -1) ? dot : len);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003022 if (!attr)
Serhiy Storchaka694de3b2016-06-15 20:06:07 +03003023 return 0;
Serhiy Storchakaaa8e51f2018-04-01 00:29:37 +03003024 ADDOP_N(c, IMPORT_FROM, attr, names);
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003025 if (dot == -1) {
3026 break;
3027 }
3028 ADDOP(c, ROT_TWO);
3029 ADDOP(c, POP_TOP);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003030 }
Serhiy Storchaka265fcc52017-08-29 15:47:44 +03003031 if (!compiler_nameop(c, asname, Store)) {
3032 return 0;
3033 }
3034 ADDOP(c, POP_TOP);
3035 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003036 }
3037 return compiler_nameop(c, asname, Store);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003038}
3039
3040static int
3041compiler_import(struct compiler *c, stmt_ty s)
3042{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003043 /* The Import node stores a module name like a.b.c as a single
3044 string. This is convenient for all cases except
3045 import a.b.c as d
3046 where we need to parse that string to extract the individual
3047 module names.
3048 XXX Perhaps change the representation to make this case simpler?
3049 */
Victor Stinnerad9a0662013-11-19 22:23:20 +01003050 Py_ssize_t i, n = asdl_seq_LEN(s->v.Import.names);
Thomas Woutersf7f438b2006-02-28 16:09:29 +00003051
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003052 for (i = 0; i < n; i++) {
3053 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.Import.names, i);
3054 int r;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003055
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003056 ADDOP_LOAD_CONST(c, _PyLong_Zero);
3057 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003058 ADDOP_NAME(c, IMPORT_NAME, alias->name, names);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003059
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003060 if (alias->asname) {
3061 r = compiler_import_as(c, alias->name, alias->asname);
3062 if (!r)
3063 return r;
3064 }
3065 else {
3066 identifier tmp = alias->name;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003067 Py_ssize_t dot = PyUnicode_FindChar(
3068 alias->name, '.', 0, PyUnicode_GET_LENGTH(alias->name), 1);
Victor Stinner6b64a682013-07-11 22:50:45 +02003069 if (dot != -1) {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003070 tmp = PyUnicode_Substring(alias->name, 0, dot);
Victor Stinner6b64a682013-07-11 22:50:45 +02003071 if (tmp == NULL)
3072 return 0;
3073 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003074 r = compiler_nameop(c, tmp, Store);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003075 if (dot != -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003076 Py_DECREF(tmp);
3077 }
3078 if (!r)
3079 return r;
3080 }
3081 }
3082 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003083}
3084
3085static int
3086compiler_from_import(struct compiler *c, stmt_ty s)
3087{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003088 Py_ssize_t i, n = asdl_seq_LEN(s->v.ImportFrom.names);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003089 PyObject *names;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003090 static PyObject *empty_string;
Benjamin Peterson78565b22009-06-28 19:19:51 +00003091
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003092 if (!empty_string) {
3093 empty_string = PyUnicode_FromString("");
3094 if (!empty_string)
3095 return 0;
3096 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003097
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003098 ADDOP_LOAD_CONST_NEW(c, PyLong_FromLong(s->v.ImportFrom.level));
Serhiy Storchakaa95d9862018-03-24 22:42:35 +02003099
3100 names = PyTuple_New(n);
3101 if (!names)
3102 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003103
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003104 /* build up the names */
3105 for (i = 0; i < n; i++) {
3106 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i);
3107 Py_INCREF(alias->name);
3108 PyTuple_SET_ITEM(names, i, alias->name);
3109 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003110
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003111 if (s->lineno > c->c_future->ff_lineno && s->v.ImportFrom.module &&
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02003112 _PyUnicode_EqualToASCIIString(s->v.ImportFrom.module, "__future__")) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003113 Py_DECREF(names);
3114 return compiler_error(c, "from __future__ imports must occur "
3115 "at the beginning of the file");
3116 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003117 ADDOP_LOAD_CONST_NEW(c, names);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003118
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003119 if (s->v.ImportFrom.module) {
3120 ADDOP_NAME(c, IMPORT_NAME, s->v.ImportFrom.module, names);
3121 }
3122 else {
3123 ADDOP_NAME(c, IMPORT_NAME, empty_string, names);
3124 }
3125 for (i = 0; i < n; i++) {
3126 alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i);
3127 identifier store_name;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003128
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003129 if (i == 0 && PyUnicode_READ_CHAR(alias->name, 0) == '*') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003130 assert(n == 1);
3131 ADDOP(c, IMPORT_STAR);
3132 return 1;
3133 }
3134
3135 ADDOP_NAME(c, IMPORT_FROM, alias->name, names);
3136 store_name = alias->name;
3137 if (alias->asname)
3138 store_name = alias->asname;
3139
3140 if (!compiler_nameop(c, store_name, Store)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003141 return 0;
3142 }
3143 }
3144 /* remove imported module */
3145 ADDOP(c, POP_TOP);
3146 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003147}
3148
3149static int
3150compiler_assert(struct compiler *c, stmt_ty s)
3151{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003152 static PyObject *assertion_error = NULL;
3153 basicblock *end;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003154
Georg Brandl8334fd92010-12-04 10:26:46 +00003155 if (c->c_optimize)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003156 return 1;
3157 if (assertion_error == NULL) {
3158 assertion_error = PyUnicode_InternFromString("AssertionError");
3159 if (assertion_error == NULL)
3160 return 0;
3161 }
3162 if (s->v.Assert.test->kind == Tuple_kind &&
Serhiy Storchakad31e7732018-10-21 10:09:39 +03003163 asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0)
3164 {
3165 if (!compiler_warn(c, "assertion is always true, "
3166 "perhaps remove parentheses?"))
3167 {
Victor Stinner14e461d2013-08-26 22:28:21 +02003168 return 0;
3169 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003170 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003171 end = compiler_new_block(c);
3172 if (end == NULL)
3173 return 0;
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03003174 if (!compiler_jump_if(c, s->v.Assert.test, end, 1))
3175 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003176 ADDOP_O(c, LOAD_GLOBAL, assertion_error, names);
3177 if (s->v.Assert.msg) {
3178 VISIT(c, expr, s->v.Assert.msg);
3179 ADDOP_I(c, CALL_FUNCTION, 1);
3180 }
3181 ADDOP_I(c, RAISE_VARARGS, 1);
3182 compiler_use_next_block(c, end);
3183 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003184}
3185
3186static int
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003187compiler_visit_stmt_expr(struct compiler *c, expr_ty value)
3188{
3189 if (c->c_interactive && c->c_nestlevel <= 1) {
3190 VISIT(c, expr, value);
3191 ADDOP(c, PRINT_EXPR);
3192 return 1;
3193 }
3194
Serhiy Storchaka3f228112018-09-27 17:42:37 +03003195 if (value->kind == Constant_kind) {
Victor Stinner15a30952016-02-08 22:45:06 +01003196 /* ignore constant statement */
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003197 return 1;
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003198 }
3199
3200 VISIT(c, expr, value);
3201 ADDOP(c, POP_TOP);
3202 return 1;
3203}
3204
3205static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003206compiler_visit_stmt(struct compiler *c, stmt_ty s)
3207{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003208 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003209
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003210 /* Always assign a lineno to the next instruction for a stmt. */
3211 c->u->u_lineno = s->lineno;
Benjamin Petersond4efd9e2010-09-20 23:02:10 +00003212 c->u->u_col_offset = s->col_offset;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003213 c->u->u_lineno_set = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003214
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003215 switch (s->kind) {
3216 case FunctionDef_kind:
Yury Selivanov75445082015-05-11 22:57:16 -04003217 return compiler_function(c, s, 0);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003218 case ClassDef_kind:
3219 return compiler_class(c, s);
3220 case Return_kind:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02003221 return compiler_return(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003222 case Delete_kind:
3223 VISIT_SEQ(c, expr, s->v.Delete.targets)
3224 break;
3225 case Assign_kind:
3226 n = asdl_seq_LEN(s->v.Assign.targets);
3227 VISIT(c, expr, s->v.Assign.value);
3228 for (i = 0; i < n; i++) {
3229 if (i < n - 1)
3230 ADDOP(c, DUP_TOP);
3231 VISIT(c, expr,
3232 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i));
3233 }
3234 break;
3235 case AugAssign_kind:
3236 return compiler_augassign(c, s);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07003237 case AnnAssign_kind:
3238 return compiler_annassign(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003239 case For_kind:
3240 return compiler_for(c, s);
3241 case While_kind:
3242 return compiler_while(c, s);
3243 case If_kind:
3244 return compiler_if(c, s);
3245 case Raise_kind:
3246 n = 0;
3247 if (s->v.Raise.exc) {
3248 VISIT(c, expr, s->v.Raise.exc);
3249 n++;
Victor Stinnerad9a0662013-11-19 22:23:20 +01003250 if (s->v.Raise.cause) {
3251 VISIT(c, expr, s->v.Raise.cause);
3252 n++;
3253 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003254 }
Victor Stinnerad9a0662013-11-19 22:23:20 +01003255 ADDOP_I(c, RAISE_VARARGS, (int)n);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003256 break;
Benjamin Peterson43af12b2011-05-29 11:43:10 -05003257 case Try_kind:
3258 return compiler_try(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003259 case Assert_kind:
3260 return compiler_assert(c, s);
3261 case Import_kind:
3262 return compiler_import(c, s);
3263 case ImportFrom_kind:
3264 return compiler_from_import(c, s);
3265 case Global_kind:
3266 case Nonlocal_kind:
3267 break;
3268 case Expr_kind:
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01003269 return compiler_visit_stmt_expr(c, s->v.Expr.value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003270 case Pass_kind:
3271 break;
3272 case Break_kind:
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02003273 return compiler_break(c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003274 case Continue_kind:
3275 return compiler_continue(c);
3276 case With_kind:
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05003277 return compiler_with(c, s, 0);
Yury Selivanov75445082015-05-11 22:57:16 -04003278 case AsyncFunctionDef_kind:
3279 return compiler_function(c, s, 1);
3280 case AsyncWith_kind:
3281 return compiler_async_with(c, s, 0);
3282 case AsyncFor_kind:
3283 return compiler_async_for(c, s);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003284 }
Yury Selivanov75445082015-05-11 22:57:16 -04003285
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003286 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003287}
3288
3289static int
3290unaryop(unaryop_ty op)
3291{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003292 switch (op) {
3293 case Invert:
3294 return UNARY_INVERT;
3295 case Not:
3296 return UNARY_NOT;
3297 case UAdd:
3298 return UNARY_POSITIVE;
3299 case USub:
3300 return UNARY_NEGATIVE;
3301 default:
3302 PyErr_Format(PyExc_SystemError,
3303 "unary op %d should not be possible", op);
3304 return 0;
3305 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003306}
3307
3308static int
3309binop(struct compiler *c, operator_ty op)
3310{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003311 switch (op) {
3312 case Add:
3313 return BINARY_ADD;
3314 case Sub:
3315 return BINARY_SUBTRACT;
3316 case Mult:
3317 return BINARY_MULTIPLY;
Benjamin Petersond51374e2014-04-09 23:55:56 -04003318 case MatMult:
3319 return BINARY_MATRIX_MULTIPLY;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003320 case Div:
3321 return BINARY_TRUE_DIVIDE;
3322 case Mod:
3323 return BINARY_MODULO;
3324 case Pow:
3325 return BINARY_POWER;
3326 case LShift:
3327 return BINARY_LSHIFT;
3328 case RShift:
3329 return BINARY_RSHIFT;
3330 case BitOr:
3331 return BINARY_OR;
3332 case BitXor:
3333 return BINARY_XOR;
3334 case BitAnd:
3335 return BINARY_AND;
3336 case FloorDiv:
3337 return BINARY_FLOOR_DIVIDE;
3338 default:
3339 PyErr_Format(PyExc_SystemError,
3340 "binary op %d should not be possible", op);
3341 return 0;
3342 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003343}
3344
3345static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003346inplace_binop(struct compiler *c, operator_ty op)
3347{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003348 switch (op) {
3349 case Add:
3350 return INPLACE_ADD;
3351 case Sub:
3352 return INPLACE_SUBTRACT;
3353 case Mult:
3354 return INPLACE_MULTIPLY;
Benjamin Petersond51374e2014-04-09 23:55:56 -04003355 case MatMult:
3356 return INPLACE_MATRIX_MULTIPLY;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003357 case Div:
3358 return INPLACE_TRUE_DIVIDE;
3359 case Mod:
3360 return INPLACE_MODULO;
3361 case Pow:
3362 return INPLACE_POWER;
3363 case LShift:
3364 return INPLACE_LSHIFT;
3365 case RShift:
3366 return INPLACE_RSHIFT;
3367 case BitOr:
3368 return INPLACE_OR;
3369 case BitXor:
3370 return INPLACE_XOR;
3371 case BitAnd:
3372 return INPLACE_AND;
3373 case FloorDiv:
3374 return INPLACE_FLOOR_DIVIDE;
3375 default:
3376 PyErr_Format(PyExc_SystemError,
3377 "inplace binary op %d should not be possible", op);
3378 return 0;
3379 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003380}
3381
3382static int
3383compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx)
3384{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003385 int op, scope;
3386 Py_ssize_t arg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003387 enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003389 PyObject *dict = c->u->u_names;
3390 PyObject *mangled;
3391 /* XXX AugStore isn't used anywhere! */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003392
Serhiy Storchakaf4934ea2016-11-16 10:17:58 +02003393 assert(!_PyUnicode_EqualToASCIIString(name, "None") &&
3394 !_PyUnicode_EqualToASCIIString(name, "True") &&
3395 !_PyUnicode_EqualToASCIIString(name, "False"));
Benjamin Peterson70b224d2012-12-06 17:49:58 -05003396
Serhiy Storchakabd6ec4d2017-12-18 14:29:12 +02003397 mangled = _Py_Mangle(c->u->u_private, name);
3398 if (!mangled)
3399 return 0;
3400
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003401 op = 0;
3402 optype = OP_NAME;
3403 scope = PyST_GetScope(c->u->u_ste, mangled);
3404 switch (scope) {
3405 case FREE:
3406 dict = c->u->u_freevars;
3407 optype = OP_DEREF;
3408 break;
3409 case CELL:
3410 dict = c->u->u_cellvars;
3411 optype = OP_DEREF;
3412 break;
3413 case LOCAL:
3414 if (c->u->u_ste->ste_type == FunctionBlock)
3415 optype = OP_FAST;
3416 break;
3417 case GLOBAL_IMPLICIT:
Benjamin Peterson1dfd2472015-04-27 21:44:22 -04003418 if (c->u->u_ste->ste_type == FunctionBlock)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003419 optype = OP_GLOBAL;
3420 break;
3421 case GLOBAL_EXPLICIT:
3422 optype = OP_GLOBAL;
3423 break;
3424 default:
3425 /* scope can be 0 */
3426 break;
3427 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003428
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003429 /* XXX Leave assert here, but handle __doc__ and the like better */
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02003430 assert(scope || PyUnicode_READ_CHAR(name, 0) == '_');
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003432 switch (optype) {
3433 case OP_DEREF:
3434 switch (ctx) {
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04003435 case Load:
3436 op = (c->u->u_ste->ste_type == ClassBlock) ? LOAD_CLASSDEREF : LOAD_DEREF;
3437 break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003438 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003439 op = STORE_DEREF;
3440 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003441 case AugLoad:
3442 case AugStore:
3443 break;
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00003444 case Del: op = DELETE_DEREF; break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003445 case Param:
3446 default:
3447 PyErr_SetString(PyExc_SystemError,
3448 "param invalid for deref variable");
3449 return 0;
3450 }
3451 break;
3452 case OP_FAST:
3453 switch (ctx) {
3454 case Load: op = LOAD_FAST; break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003455 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003456 op = STORE_FAST;
3457 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003458 case Del: op = DELETE_FAST; break;
3459 case AugLoad:
3460 case AugStore:
3461 break;
3462 case Param:
3463 default:
3464 PyErr_SetString(PyExc_SystemError,
3465 "param invalid for local variable");
3466 return 0;
3467 }
Serhiy Storchakaaa8e51f2018-04-01 00:29:37 +03003468 ADDOP_N(c, op, mangled, varnames);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003469 return 1;
3470 case OP_GLOBAL:
3471 switch (ctx) {
3472 case Load: op = LOAD_GLOBAL; break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003473 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003474 op = STORE_GLOBAL;
3475 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003476 case Del: op = DELETE_GLOBAL; break;
3477 case AugLoad:
3478 case AugStore:
3479 break;
3480 case Param:
3481 default:
3482 PyErr_SetString(PyExc_SystemError,
3483 "param invalid for global variable");
3484 return 0;
3485 }
3486 break;
3487 case OP_NAME:
3488 switch (ctx) {
Benjamin Peterson20f9c3c2010-07-20 22:39:34 +00003489 case Load: op = LOAD_NAME; break;
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003490 case Store:
Emily Morehouse8f59ee02019-01-24 16:49:56 -07003491 op = STORE_NAME;
3492 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003493 case Del: op = DELETE_NAME; break;
3494 case AugLoad:
3495 case AugStore:
3496 break;
3497 case Param:
3498 default:
3499 PyErr_SetString(PyExc_SystemError,
3500 "param invalid for name variable");
3501 return 0;
3502 }
3503 break;
3504 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003506 assert(op);
3507 arg = compiler_add_o(c, dict, mangled);
3508 Py_DECREF(mangled);
3509 if (arg < 0)
3510 return 0;
3511 return compiler_addop_i(c, op, arg);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003512}
3513
3514static int
3515compiler_boolop(struct compiler *c, expr_ty e)
3516{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003517 basicblock *end;
Victor Stinnerad9a0662013-11-19 22:23:20 +01003518 int jumpi;
3519 Py_ssize_t i, n;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003520 asdl_seq *s;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003521
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003522 assert(e->kind == BoolOp_kind);
3523 if (e->v.BoolOp.op == And)
3524 jumpi = JUMP_IF_FALSE_OR_POP;
3525 else
3526 jumpi = JUMP_IF_TRUE_OR_POP;
3527 end = compiler_new_block(c);
3528 if (end == NULL)
3529 return 0;
3530 s = e->v.BoolOp.values;
3531 n = asdl_seq_LEN(s) - 1;
3532 assert(n >= 0);
3533 for (i = 0; i < n; ++i) {
3534 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i));
3535 ADDOP_JABS(c, jumpi, end);
3536 }
3537 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n));
3538 compiler_use_next_block(c, end);
3539 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003540}
3541
3542static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003543starunpack_helper(struct compiler *c, asdl_seq *elts,
3544 int single_op, int inner_op, int outer_op)
3545{
3546 Py_ssize_t n = asdl_seq_LEN(elts);
3547 Py_ssize_t i, nsubitems = 0, nseen = 0;
3548 for (i = 0; i < n; i++) {
3549 expr_ty elt = asdl_seq_GET(elts, i);
3550 if (elt->kind == Starred_kind) {
3551 if (nseen) {
3552 ADDOP_I(c, inner_op, nseen);
3553 nseen = 0;
3554 nsubitems++;
3555 }
3556 VISIT(c, expr, elt->v.Starred.value);
3557 nsubitems++;
3558 }
3559 else {
3560 VISIT(c, expr, elt);
3561 nseen++;
3562 }
3563 }
3564 if (nsubitems) {
3565 if (nseen) {
3566 ADDOP_I(c, inner_op, nseen);
3567 nsubitems++;
3568 }
3569 ADDOP_I(c, outer_op, nsubitems);
3570 }
3571 else
3572 ADDOP_I(c, single_op, nseen);
3573 return 1;
3574}
3575
3576static int
3577assignment_helper(struct compiler *c, asdl_seq *elts)
3578{
3579 Py_ssize_t n = asdl_seq_LEN(elts);
3580 Py_ssize_t i;
3581 int seen_star = 0;
3582 for (i = 0; i < n; i++) {
3583 expr_ty elt = asdl_seq_GET(elts, i);
3584 if (elt->kind == Starred_kind && !seen_star) {
3585 if ((i >= (1 << 8)) ||
3586 (n-i-1 >= (INT_MAX >> 8)))
3587 return compiler_error(c,
3588 "too many expressions in "
3589 "star-unpacking assignment");
3590 ADDOP_I(c, UNPACK_EX, (i + ((n-i-1) << 8)));
3591 seen_star = 1;
3592 asdl_seq_SET(elts, i, elt->v.Starred.value);
3593 }
3594 else if (elt->kind == Starred_kind) {
3595 return compiler_error(c,
3596 "two starred expressions in assignment");
3597 }
3598 }
3599 if (!seen_star) {
3600 ADDOP_I(c, UNPACK_SEQUENCE, n);
3601 }
3602 VISIT_SEQ(c, expr, elts);
3603 return 1;
3604}
3605
3606static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003607compiler_list(struct compiler *c, expr_ty e)
3608{
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003609 asdl_seq *elts = e->v.List.elts;
Serhiy Storchakad8b3a982019-03-05 20:42:06 +02003610 if (e->v.List.ctx == Store) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003611 return assignment_helper(c, elts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003612 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003613 else if (e->v.List.ctx == Load) {
3614 return starunpack_helper(c, elts,
3615 BUILD_LIST, BUILD_TUPLE, BUILD_LIST_UNPACK);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003616 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003617 else
3618 VISIT_SEQ(c, expr, elts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003619 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003620}
3621
3622static int
3623compiler_tuple(struct compiler *c, expr_ty e)
3624{
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003625 asdl_seq *elts = e->v.Tuple.elts;
Serhiy Storchakad8b3a982019-03-05 20:42:06 +02003626 if (e->v.Tuple.ctx == Store) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003627 return assignment_helper(c, elts);
3628 }
3629 else if (e->v.Tuple.ctx == Load) {
3630 return starunpack_helper(c, elts,
3631 BUILD_TUPLE, BUILD_TUPLE, BUILD_TUPLE_UNPACK);
3632 }
3633 else
3634 VISIT_SEQ(c, expr, elts);
3635 return 1;
3636}
3637
3638static int
3639compiler_set(struct compiler *c, expr_ty e)
3640{
3641 return starunpack_helper(c, e->v.Set.elts, BUILD_SET,
3642 BUILD_SET, BUILD_SET_UNPACK);
3643}
3644
3645static int
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003646are_all_items_const(asdl_seq *seq, Py_ssize_t begin, Py_ssize_t end)
3647{
3648 Py_ssize_t i;
3649 for (i = begin; i < end; i++) {
3650 expr_ty key = (expr_ty)asdl_seq_GET(seq, i);
Serhiy Storchaka3f228112018-09-27 17:42:37 +03003651 if (key == NULL || key->kind != Constant_kind)
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003652 return 0;
3653 }
3654 return 1;
3655}
3656
3657static int
3658compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end)
3659{
3660 Py_ssize_t i, n = end - begin;
3661 PyObject *keys, *key;
3662 if (n > 1 && are_all_items_const(e->v.Dict.keys, begin, end)) {
3663 for (i = begin; i < end; i++) {
3664 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));
3665 }
3666 keys = PyTuple_New(n);
3667 if (keys == NULL) {
3668 return 0;
3669 }
3670 for (i = begin; i < end; i++) {
Serhiy Storchaka3f228112018-09-27 17:42:37 +03003671 key = ((expr_ty)asdl_seq_GET(e->v.Dict.keys, i))->v.Constant.value;
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003672 Py_INCREF(key);
3673 PyTuple_SET_ITEM(keys, i - begin, key);
3674 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03003675 ADDOP_LOAD_CONST_NEW(c, keys);
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003676 ADDOP_I(c, BUILD_CONST_KEY_MAP, n);
3677 }
3678 else {
3679 for (i = begin; i < end; i++) {
3680 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i));
3681 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));
3682 }
3683 ADDOP_I(c, BUILD_MAP, n);
3684 }
3685 return 1;
3686}
3687
3688static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003689compiler_dict(struct compiler *c, expr_ty e)
3690{
Victor Stinner976bb402016-03-23 11:36:19 +01003691 Py_ssize_t i, n, elements;
3692 int containers;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003693 int is_unpacking = 0;
3694 n = asdl_seq_LEN(e->v.Dict.values);
3695 containers = 0;
3696 elements = 0;
3697 for (i = 0; i < n; i++) {
3698 is_unpacking = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i) == NULL;
3699 if (elements == 0xFFFF || (elements && is_unpacking)) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003700 if (!compiler_subdict(c, e, i - elements, i))
3701 return 0;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003702 containers++;
3703 elements = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003704 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003705 if (is_unpacking) {
3706 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i));
3707 containers++;
3708 }
3709 else {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003710 elements++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003711 }
3712 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003713 if (elements || containers == 0) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03003714 if (!compiler_subdict(c, e, n - elements, n))
3715 return 0;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003716 containers++;
3717 }
3718 /* If there is more than one dict, they need to be merged into a new
3719 * dict. If there is one dict and it's an unpacking, then it needs
3720 * to be copied into a new dict." */
Serhiy Storchaka3d85fae2016-11-28 20:56:37 +02003721 if (containers > 1 || is_unpacking) {
3722 ADDOP_I(c, BUILD_MAP_UNPACK, containers);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003723 }
3724 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003725}
3726
3727static int
3728compiler_compare(struct compiler *c, expr_ty e)
3729{
Victor Stinnerad9a0662013-11-19 22:23:20 +01003730 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003731
Serhiy Storchaka3bcbedc2019-01-18 07:47:48 +02003732 if (!check_compare(c, e)) {
3733 return 0;
3734 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003735 VISIT(c, expr, e->v.Compare.left);
Serhiy Storchaka02b9ef22017-12-30 09:47:42 +02003736 assert(asdl_seq_LEN(e->v.Compare.ops) > 0);
3737 n = asdl_seq_LEN(e->v.Compare.ops) - 1;
3738 if (n == 0) {
3739 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, 0));
3740 ADDOP_I(c, COMPARE_OP,
3741 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, 0))));
3742 }
3743 else {
3744 basicblock *cleanup = compiler_new_block(c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003745 if (cleanup == NULL)
3746 return 0;
Serhiy Storchaka02b9ef22017-12-30 09:47:42 +02003747 for (i = 0; i < n; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003748 VISIT(c, expr,
3749 (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i));
Serhiy Storchaka02b9ef22017-12-30 09:47:42 +02003750 ADDOP(c, DUP_TOP);
3751 ADDOP(c, ROT_THREE);
3752 ADDOP_I(c, COMPARE_OP,
3753 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, i))));
3754 ADDOP_JABS(c, JUMP_IF_FALSE_OR_POP, cleanup);
3755 NEXT_BLOCK(c);
3756 }
3757 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n));
3758 ADDOP_I(c, COMPARE_OP,
3759 cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, n))));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003760 basicblock *end = compiler_new_block(c);
3761 if (end == NULL)
3762 return 0;
3763 ADDOP_JREL(c, JUMP_FORWARD, end);
3764 compiler_use_next_block(c, cleanup);
3765 ADDOP(c, ROT_TWO);
3766 ADDOP(c, POP_TOP);
3767 compiler_use_next_block(c, end);
3768 }
3769 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003770}
3771
Serhiy Storchaka62e44812019-02-16 08:12:19 +02003772static PyTypeObject *
3773infer_type(expr_ty e)
3774{
3775 switch (e->kind) {
3776 case Tuple_kind:
3777 return &PyTuple_Type;
3778 case List_kind:
3779 case ListComp_kind:
3780 return &PyList_Type;
3781 case Dict_kind:
3782 case DictComp_kind:
3783 return &PyDict_Type;
3784 case Set_kind:
3785 case SetComp_kind:
3786 return &PySet_Type;
3787 case GeneratorExp_kind:
3788 return &PyGen_Type;
3789 case Lambda_kind:
3790 return &PyFunction_Type;
3791 case JoinedStr_kind:
3792 case FormattedValue_kind:
3793 return &PyUnicode_Type;
3794 case Constant_kind:
3795 return e->v.Constant.value->ob_type;
3796 default:
3797 return NULL;
3798 }
3799}
3800
3801static int
3802check_caller(struct compiler *c, expr_ty e)
3803{
3804 switch (e->kind) {
3805 case Constant_kind:
3806 case Tuple_kind:
3807 case List_kind:
3808 case ListComp_kind:
3809 case Dict_kind:
3810 case DictComp_kind:
3811 case Set_kind:
3812 case SetComp_kind:
3813 case GeneratorExp_kind:
3814 case JoinedStr_kind:
3815 case FormattedValue_kind:
3816 return compiler_warn(c, "'%.200s' object is not callable; "
3817 "perhaps you missed a comma?",
3818 infer_type(e)->tp_name);
3819 default:
3820 return 1;
3821 }
3822}
3823
3824static int
3825check_subscripter(struct compiler *c, expr_ty e)
3826{
3827 PyObject *v;
3828
3829 switch (e->kind) {
3830 case Constant_kind:
3831 v = e->v.Constant.value;
3832 if (!(v == Py_None || v == Py_Ellipsis ||
3833 PyLong_Check(v) || PyFloat_Check(v) || PyComplex_Check(v) ||
3834 PyAnySet_Check(v)))
3835 {
3836 return 1;
3837 }
3838 /* fall through */
3839 case Set_kind:
3840 case SetComp_kind:
3841 case GeneratorExp_kind:
3842 case Lambda_kind:
3843 return compiler_warn(c, "'%.200s' object is not subscriptable; "
3844 "perhaps you missed a comma?",
3845 infer_type(e)->tp_name);
3846 default:
3847 return 1;
3848 }
3849}
3850
3851static int
3852check_index(struct compiler *c, expr_ty e, slice_ty s)
3853{
3854 PyObject *v;
3855
3856 if (s->kind != Index_kind) {
3857 return 1;
3858 }
3859 PyTypeObject *index_type = infer_type(s->v.Index.value);
3860 if (index_type == NULL
3861 || PyType_FastSubclass(index_type, Py_TPFLAGS_LONG_SUBCLASS)
3862 || index_type == &PySlice_Type) {
3863 return 1;
3864 }
3865
3866 switch (e->kind) {
3867 case Constant_kind:
3868 v = e->v.Constant.value;
3869 if (!(PyUnicode_Check(v) || PyBytes_Check(v) || PyTuple_Check(v))) {
3870 return 1;
3871 }
3872 /* fall through */
3873 case Tuple_kind:
3874 case List_kind:
3875 case ListComp_kind:
3876 case JoinedStr_kind:
3877 case FormattedValue_kind:
3878 return compiler_warn(c, "%.200s indices must be integers or slices, "
3879 "not %.200s; "
3880 "perhaps you missed a comma?",
3881 infer_type(e)->tp_name,
3882 index_type->tp_name);
3883 default:
3884 return 1;
3885 }
3886}
3887
Zackery Spytz97f5de02019-03-22 01:30:32 -06003888// Return 1 if the method call was optimized, -1 if not, and 0 on error.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003889static int
Yury Selivanovf2392132016-12-13 19:03:51 -05003890maybe_optimize_method_call(struct compiler *c, expr_ty e)
3891{
3892 Py_ssize_t argsl, i;
3893 expr_ty meth = e->v.Call.func;
3894 asdl_seq *args = e->v.Call.args;
3895
3896 /* Check that the call node is an attribute access, and that
3897 the call doesn't have keyword parameters. */
3898 if (meth->kind != Attribute_kind || meth->v.Attribute.ctx != Load ||
3899 asdl_seq_LEN(e->v.Call.keywords))
3900 return -1;
3901
3902 /* Check that there are no *varargs types of arguments. */
3903 argsl = asdl_seq_LEN(args);
3904 for (i = 0; i < argsl; i++) {
3905 expr_ty elt = asdl_seq_GET(args, i);
3906 if (elt->kind == Starred_kind) {
3907 return -1;
3908 }
3909 }
3910
3911 /* Alright, we can optimize the code. */
3912 VISIT(c, expr, meth->v.Attribute.value);
3913 ADDOP_NAME(c, LOAD_METHOD, meth->v.Attribute.attr, names);
3914 VISIT_SEQ(c, expr, e->v.Call.args);
3915 ADDOP_I(c, CALL_METHOD, asdl_seq_LEN(e->v.Call.args));
3916 return 1;
3917}
3918
3919static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003920compiler_call(struct compiler *c, expr_ty e)
3921{
Zackery Spytz97f5de02019-03-22 01:30:32 -06003922 int ret = maybe_optimize_method_call(c, e);
3923 if (ret >= 0) {
3924 return ret;
3925 }
Serhiy Storchaka62e44812019-02-16 08:12:19 +02003926 if (!check_caller(c, e->v.Call.func)) {
3927 return 0;
3928 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003929 VISIT(c, expr, e->v.Call.func);
3930 return compiler_call_helper(c, 0,
3931 e->v.Call.args,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003932 e->v.Call.keywords);
Guido van Rossum52cc1d82007-03-18 15:41:51 +00003933}
3934
Eric V. Smith235a6f02015-09-19 14:51:32 -04003935static int
3936compiler_joined_str(struct compiler *c, expr_ty e)
3937{
Eric V. Smith235a6f02015-09-19 14:51:32 -04003938 VISIT_SEQ(c, expr, e->v.JoinedStr.values);
Serhiy Storchaka4cc30ae2016-12-11 19:37:19 +02003939 if (asdl_seq_LEN(e->v.JoinedStr.values) != 1)
3940 ADDOP_I(c, BUILD_STRING, asdl_seq_LEN(e->v.JoinedStr.values));
Eric V. Smith235a6f02015-09-19 14:51:32 -04003941 return 1;
3942}
3943
Eric V. Smitha78c7952015-11-03 12:45:05 -05003944/* Used to implement f-strings. Format a single value. */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003945static int
3946compiler_formatted_value(struct compiler *c, expr_ty e)
3947{
Eric V. Smitha78c7952015-11-03 12:45:05 -05003948 /* Our oparg encodes 2 pieces of information: the conversion
3949 character, and whether or not a format_spec was provided.
Eric V. Smith235a6f02015-09-19 14:51:32 -04003950
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003951 Convert the conversion char to 3 bits:
3952 : 000 0x0 FVC_NONE The default if nothing specified.
Eric V. Smitha78c7952015-11-03 12:45:05 -05003953 !s : 001 0x1 FVC_STR
3954 !r : 010 0x2 FVC_REPR
3955 !a : 011 0x3 FVC_ASCII
Eric V. Smith235a6f02015-09-19 14:51:32 -04003956
Eric V. Smitha78c7952015-11-03 12:45:05 -05003957 next bit is whether or not we have a format spec:
3958 yes : 100 0x4
3959 no : 000 0x0
3960 */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003961
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003962 int conversion = e->v.FormattedValue.conversion;
Eric V. Smitha78c7952015-11-03 12:45:05 -05003963 int oparg;
Eric V. Smith235a6f02015-09-19 14:51:32 -04003964
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003965 if (e->v.FormattedValue.expr_text) {
3966 /* Push the text of the expression (which already has the '=' in
3967 it. */
3968 ADDOP_LOAD_CONST(c, e->v.FormattedValue.expr_text);
3969 }
3970
3971 /* The expression to be formatted. */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003972 VISIT(c, expr, e->v.FormattedValue.value);
3973
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003974 switch (conversion) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003975 case 's': oparg = FVC_STR; break;
3976 case 'r': oparg = FVC_REPR; break;
3977 case 'a': oparg = FVC_ASCII; break;
3978 case -1: oparg = FVC_NONE; break;
3979 default:
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003980 PyErr_Format(PyExc_SystemError,
3981 "Unrecognized conversion character %d", conversion);
Eric V. Smitha78c7952015-11-03 12:45:05 -05003982 return 0;
Eric V. Smith235a6f02015-09-19 14:51:32 -04003983 }
Eric V. Smith235a6f02015-09-19 14:51:32 -04003984 if (e->v.FormattedValue.format_spec) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003985 /* Evaluate the format spec, and update our opcode arg. */
Eric V. Smith235a6f02015-09-19 14:51:32 -04003986 VISIT(c, expr, e->v.FormattedValue.format_spec);
Eric V. Smitha78c7952015-11-03 12:45:05 -05003987 oparg |= FVS_HAVE_SPEC;
Eric V. Smith235a6f02015-09-19 14:51:32 -04003988 }
3989
Eric V. Smitha78c7952015-11-03 12:45:05 -05003990 /* And push our opcode and oparg */
3991 ADDOP_I(c, FORMAT_VALUE, oparg);
Eric V. Smith9a4135e2019-05-08 16:28:48 -04003992
3993 /* If we have expr_text, join the 2 strings on the stack. */
3994 if (e->v.FormattedValue.expr_text) {
3995 ADDOP_I(c, BUILD_STRING, 2);
3996 }
3997
Eric V. Smith235a6f02015-09-19 14:51:32 -04003998 return 1;
3999}
4000
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004001static int
4002compiler_subkwargs(struct compiler *c, asdl_seq *keywords, Py_ssize_t begin, Py_ssize_t end)
4003{
4004 Py_ssize_t i, n = end - begin;
4005 keyword_ty kw;
4006 PyObject *keys, *key;
4007 assert(n > 0);
4008 if (n > 1) {
4009 for (i = begin; i < end; i++) {
4010 kw = asdl_seq_GET(keywords, i);
4011 VISIT(c, expr, kw->value);
4012 }
4013 keys = PyTuple_New(n);
4014 if (keys == NULL) {
4015 return 0;
4016 }
4017 for (i = begin; i < end; i++) {
4018 key = ((keyword_ty) asdl_seq_GET(keywords, i))->arg;
4019 Py_INCREF(key);
4020 PyTuple_SET_ITEM(keys, i - begin, key);
4021 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004022 ADDOP_LOAD_CONST_NEW(c, keys);
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004023 ADDOP_I(c, BUILD_CONST_KEY_MAP, n);
4024 }
4025 else {
4026 /* a for loop only executes once */
4027 for (i = begin; i < end; i++) {
4028 kw = asdl_seq_GET(keywords, i);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004029 ADDOP_LOAD_CONST(c, kw->arg);
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004030 VISIT(c, expr, kw->value);
4031 }
4032 ADDOP_I(c, BUILD_MAP, n);
4033 }
4034 return 1;
4035}
4036
Guido van Rossum52cc1d82007-03-18 15:41:51 +00004037/* shared code between compiler_call and compiler_class */
4038static int
4039compiler_call_helper(struct compiler *c,
Victor Stinner976bb402016-03-23 11:36:19 +01004040 int n, /* Args already pushed */
Victor Stinnerad9a0662013-11-19 22:23:20 +01004041 asdl_seq *args,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004042 asdl_seq *keywords)
Guido van Rossum52cc1d82007-03-18 15:41:51 +00004043{
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004044 Py_ssize_t i, nseen, nelts, nkwelts;
Serhiy Storchakab7281052016-09-12 00:52:40 +03004045 int mustdictunpack = 0;
Guido van Rossum52cc1d82007-03-18 15:41:51 +00004046
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004047 /* the number of tuples and dictionaries on the stack */
4048 Py_ssize_t nsubargs = 0, nsubkwargs = 0;
4049
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004050 nelts = asdl_seq_LEN(args);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004051 nkwelts = asdl_seq_LEN(keywords);
4052
4053 for (i = 0; i < nkwelts; i++) {
4054 keyword_ty kw = asdl_seq_GET(keywords, i);
4055 if (kw->arg == NULL) {
4056 mustdictunpack = 1;
4057 break;
4058 }
4059 }
4060
4061 nseen = n; /* the number of positional arguments on the stack */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004062 for (i = 0; i < nelts; i++) {
4063 expr_ty elt = asdl_seq_GET(args, i);
4064 if (elt->kind == Starred_kind) {
4065 /* A star-arg. If we've seen positional arguments,
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004066 pack the positional arguments into a tuple. */
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004067 if (nseen) {
4068 ADDOP_I(c, BUILD_TUPLE, nseen);
4069 nseen = 0;
4070 nsubargs++;
4071 }
4072 VISIT(c, expr, elt->v.Starred.value);
4073 nsubargs++;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004074 }
4075 else {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004076 VISIT(c, expr, elt);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004077 nseen++;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004078 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004079 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004080
4081 /* Same dance again for keyword arguments */
Serhiy Storchakab7281052016-09-12 00:52:40 +03004082 if (nsubargs || mustdictunpack) {
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004083 if (nseen) {
4084 /* Pack up any trailing positional arguments. */
4085 ADDOP_I(c, BUILD_TUPLE, nseen);
4086 nsubargs++;
4087 }
Serhiy Storchakab7281052016-09-12 00:52:40 +03004088 if (nsubargs > 1) {
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004089 /* If we ended up with more than one stararg, we need
4090 to concatenate them into a single sequence. */
Serhiy Storchaka73442852016-10-02 10:33:46 +03004091 ADDOP_I(c, BUILD_TUPLE_UNPACK_WITH_CALL, nsubargs);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004092 }
4093 else if (nsubargs == 0) {
4094 ADDOP_I(c, BUILD_TUPLE, 0);
4095 }
4096 nseen = 0; /* the number of keyword arguments on the stack following */
4097 for (i = 0; i < nkwelts; i++) {
4098 keyword_ty kw = asdl_seq_GET(keywords, i);
4099 if (kw->arg == NULL) {
4100 /* A keyword argument unpacking. */
4101 if (nseen) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004102 if (!compiler_subkwargs(c, keywords, i - nseen, i))
4103 return 0;
4104 nsubkwargs++;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004105 nseen = 0;
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004106 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004107 VISIT(c, expr, kw->value);
4108 nsubkwargs++;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004109 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004110 else {
4111 nseen++;
4112 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004113 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004114 if (nseen) {
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004115 /* Pack up any trailing keyword arguments. */
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004116 if (!compiler_subkwargs(c, keywords, nkwelts - nseen, nkwelts))
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03004117 return 0;
4118 nsubkwargs++;
4119 }
Serhiy Storchakab7281052016-09-12 00:52:40 +03004120 if (nsubkwargs > 1) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004121 /* Pack it all up */
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004122 ADDOP_I(c, BUILD_MAP_UNPACK_WITH_CALL, nsubkwargs);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004123 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004124 ADDOP_I(c, CALL_FUNCTION_EX, nsubkwargs > 0);
4125 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004126 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004127 else if (nkwelts) {
4128 PyObject *names;
4129 VISIT_SEQ(c, keyword, keywords);
4130 names = PyTuple_New(nkwelts);
4131 if (names == NULL) {
4132 return 0;
4133 }
4134 for (i = 0; i < nkwelts; i++) {
4135 keyword_ty kw = asdl_seq_GET(keywords, i);
4136 Py_INCREF(kw->arg);
4137 PyTuple_SET_ITEM(names, i, kw->arg);
4138 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004139 ADDOP_LOAD_CONST_NEW(c, names);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004140 ADDOP_I(c, CALL_FUNCTION_KW, n + nelts + nkwelts);
4141 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004142 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004143 else {
4144 ADDOP_I(c, CALL_FUNCTION, n + nelts);
4145 return 1;
4146 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004147}
4148
Nick Coghlan650f0d02007-04-15 12:05:43 +00004149
4150/* List and set comprehensions and generator expressions work by creating a
4151 nested function to perform the actual iteration. This means that the
4152 iteration variables don't leak into the current scope.
4153 The defined function is called immediately following its definition, with the
4154 result of that call being the result of the expression.
4155 The LC/SC version returns the populated container, while the GE version is
4156 flagged in symtable.c as a generator, so it returns the generator object
4157 when the function is called.
Nick Coghlan650f0d02007-04-15 12:05:43 +00004158
4159 Possible cleanups:
4160 - iterate over the generator sequence instead of using recursion
4161*/
4162
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004163
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004164static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004165compiler_comprehension_generator(struct compiler *c,
4166 asdl_seq *generators, int gen_index,
4167 expr_ty elt, expr_ty val, int type)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004168{
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004169 comprehension_ty gen;
4170 gen = (comprehension_ty)asdl_seq_GET(generators, gen_index);
4171 if (gen->is_async) {
4172 return compiler_async_comprehension_generator(
4173 c, generators, gen_index, elt, val, type);
4174 } else {
4175 return compiler_sync_comprehension_generator(
4176 c, generators, gen_index, elt, val, type);
4177 }
4178}
4179
4180static int
4181compiler_sync_comprehension_generator(struct compiler *c,
4182 asdl_seq *generators, int gen_index,
4183 expr_ty elt, expr_ty val, int type)
4184{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004185 /* generate code for the iterator, then each of the ifs,
4186 and then write to the element */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004187
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004188 comprehension_ty gen;
4189 basicblock *start, *anchor, *skip, *if_cleanup;
Victor Stinnerad9a0662013-11-19 22:23:20 +01004190 Py_ssize_t i, n;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004191
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004192 start = compiler_new_block(c);
4193 skip = compiler_new_block(c);
4194 if_cleanup = compiler_new_block(c);
4195 anchor = compiler_new_block(c);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004196
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004197 if (start == NULL || skip == NULL || if_cleanup == NULL ||
4198 anchor == NULL)
4199 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004200
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004201 gen = (comprehension_ty)asdl_seq_GET(generators, gen_index);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004202
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004203 if (gen_index == 0) {
4204 /* Receive outermost iter as an implicit argument */
4205 c->u->u_argcount = 1;
4206 ADDOP_I(c, LOAD_FAST, 0);
4207 }
4208 else {
4209 /* Sub-iter - calculate on the fly */
4210 VISIT(c, expr, gen->iter);
4211 ADDOP(c, GET_ITER);
4212 }
4213 compiler_use_next_block(c, start);
4214 ADDOP_JREL(c, FOR_ITER, anchor);
4215 NEXT_BLOCK(c);
4216 VISIT(c, expr, gen->target);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004217
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004218 /* XXX this needs to be cleaned up...a lot! */
4219 n = asdl_seq_LEN(gen->ifs);
4220 for (i = 0; i < n; i++) {
4221 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i);
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03004222 if (!compiler_jump_if(c, e, if_cleanup, 0))
4223 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004224 NEXT_BLOCK(c);
4225 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004226
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004227 if (++gen_index < asdl_seq_LEN(generators))
4228 if (!compiler_comprehension_generator(c,
4229 generators, gen_index,
4230 elt, val, type))
4231 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004232
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004233 /* only append after the last for generator */
4234 if (gen_index >= asdl_seq_LEN(generators)) {
4235 /* comprehension specific code */
4236 switch (type) {
4237 case COMP_GENEXP:
4238 VISIT(c, expr, elt);
4239 ADDOP(c, YIELD_VALUE);
4240 ADDOP(c, POP_TOP);
4241 break;
4242 case COMP_LISTCOMP:
4243 VISIT(c, expr, elt);
4244 ADDOP_I(c, LIST_APPEND, gen_index + 1);
4245 break;
4246 case COMP_SETCOMP:
4247 VISIT(c, expr, elt);
4248 ADDOP_I(c, SET_ADD, gen_index + 1);
4249 break;
4250 case COMP_DICTCOMP:
4251 /* With 'd[k] = v', v is evaluated before k, so we do
4252 the same. */
4253 VISIT(c, expr, val);
4254 VISIT(c, expr, elt);
4255 ADDOP_I(c, MAP_ADD, gen_index + 1);
4256 break;
4257 default:
4258 return 0;
4259 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004260
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004261 compiler_use_next_block(c, skip);
4262 }
4263 compiler_use_next_block(c, if_cleanup);
4264 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
4265 compiler_use_next_block(c, anchor);
4266
4267 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004268}
4269
4270static int
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004271compiler_async_comprehension_generator(struct compiler *c,
4272 asdl_seq *generators, int gen_index,
4273 expr_ty elt, expr_ty val, int type)
4274{
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004275 comprehension_ty gen;
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004276 basicblock *start, *if_cleanup, *except;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004277 Py_ssize_t i, n;
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004278 start = compiler_new_block(c);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004279 except = compiler_new_block(c);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004280 if_cleanup = compiler_new_block(c);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004281
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004282 if (start == NULL || if_cleanup == NULL || except == NULL) {
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004283 return 0;
4284 }
4285
4286 gen = (comprehension_ty)asdl_seq_GET(generators, gen_index);
4287
4288 if (gen_index == 0) {
4289 /* Receive outermost iter as an implicit argument */
4290 c->u->u_argcount = 1;
4291 ADDOP_I(c, LOAD_FAST, 0);
4292 }
4293 else {
4294 /* Sub-iter - calculate on the fly */
4295 VISIT(c, expr, gen->iter);
4296 ADDOP(c, GET_AITER);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004297 }
4298
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004299 compiler_use_next_block(c, start);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004300
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004301 ADDOP_JREL(c, SETUP_FINALLY, except);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004302 ADDOP(c, GET_ANEXT);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004303 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004304 ADDOP(c, YIELD_FROM);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004305 ADDOP(c, POP_BLOCK);
Serhiy Storchaka24d32012018-03-10 18:22:34 +02004306 VISIT(c, expr, gen->target);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004307
4308 n = asdl_seq_LEN(gen->ifs);
4309 for (i = 0; i < n; i++) {
4310 expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i);
Serhiy Storchaka36ff4512017-06-11 14:50:22 +03004311 if (!compiler_jump_if(c, e, if_cleanup, 0))
4312 return 0;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004313 NEXT_BLOCK(c);
4314 }
4315
4316 if (++gen_index < asdl_seq_LEN(generators))
4317 if (!compiler_comprehension_generator(c,
4318 generators, gen_index,
4319 elt, val, type))
4320 return 0;
4321
4322 /* only append after the last for generator */
4323 if (gen_index >= asdl_seq_LEN(generators)) {
4324 /* comprehension specific code */
4325 switch (type) {
4326 case COMP_GENEXP:
4327 VISIT(c, expr, elt);
4328 ADDOP(c, YIELD_VALUE);
4329 ADDOP(c, POP_TOP);
4330 break;
4331 case COMP_LISTCOMP:
4332 VISIT(c, expr, elt);
4333 ADDOP_I(c, LIST_APPEND, gen_index + 1);
4334 break;
4335 case COMP_SETCOMP:
4336 VISIT(c, expr, elt);
4337 ADDOP_I(c, SET_ADD, gen_index + 1);
4338 break;
4339 case COMP_DICTCOMP:
4340 /* With 'd[k] = v', v is evaluated before k, so we do
4341 the same. */
4342 VISIT(c, expr, val);
4343 VISIT(c, expr, elt);
4344 ADDOP_I(c, MAP_ADD, gen_index + 1);
4345 break;
4346 default:
4347 return 0;
4348 }
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004349 }
4350 compiler_use_next_block(c, if_cleanup);
Serhiy Storchaka702f8f32018-03-23 14:34:35 +02004351 ADDOP_JABS(c, JUMP_ABSOLUTE, start);
4352
4353 compiler_use_next_block(c, except);
4354 ADDOP(c, END_ASYNC_FOR);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004355
4356 return 1;
4357}
4358
4359static int
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004360compiler_comprehension(struct compiler *c, expr_ty e, int type,
4361 identifier name, asdl_seq *generators, expr_ty elt,
4362 expr_ty val)
Nick Coghlan650f0d02007-04-15 12:05:43 +00004363{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004364 PyCodeObject *co = NULL;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004365 comprehension_ty outermost;
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004366 PyObject *qualname = NULL;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004367 int is_async_function = c->u->u_ste->ste_coroutine;
4368 int is_async_generator = 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004369
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004370 outermost = (comprehension_ty) asdl_seq_GET(generators, 0);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004371
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004372 if (!compiler_enter_scope(c, name, COMPILER_SCOPE_COMPREHENSION,
4373 (void *)e, e->lineno))
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004374 {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004375 goto error;
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004376 }
4377
4378 is_async_generator = c->u->u_ste->ste_coroutine;
4379
Yury Selivanovb8ab9d32017-10-06 02:58:28 -04004380 if (is_async_generator && !is_async_function && type != COMP_GENEXP) {
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004381 compiler_error(c, "asynchronous comprehension outside of "
4382 "an asynchronous function");
4383 goto error_in_scope;
4384 }
Nick Coghlan650f0d02007-04-15 12:05:43 +00004385
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004386 if (type != COMP_GENEXP) {
4387 int op;
4388 switch (type) {
4389 case COMP_LISTCOMP:
4390 op = BUILD_LIST;
4391 break;
4392 case COMP_SETCOMP:
4393 op = BUILD_SET;
4394 break;
4395 case COMP_DICTCOMP:
4396 op = BUILD_MAP;
4397 break;
4398 default:
4399 PyErr_Format(PyExc_SystemError,
4400 "unknown comprehension type %d", type);
4401 goto error_in_scope;
4402 }
Nick Coghlan650f0d02007-04-15 12:05:43 +00004403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004404 ADDOP_I(c, op, 0);
4405 }
Nick Coghlan650f0d02007-04-15 12:05:43 +00004406
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004407 if (!compiler_comprehension_generator(c, generators, 0, elt,
4408 val, type))
4409 goto error_in_scope;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004410
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004411 if (type != COMP_GENEXP) {
4412 ADDOP(c, RETURN_VALUE);
4413 }
4414
4415 co = assemble(c, 1);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04004416 qualname = c->u->u_qualname;
4417 Py_INCREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004418 compiler_exit_scope(c);
Benjamin Peterson6b4f7802013-10-20 17:50:28 -04004419 if (co == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004420 goto error;
4421
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004422 if (!compiler_make_closure(c, co, 0, qualname))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004423 goto error;
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004424 Py_DECREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004425 Py_DECREF(co);
4426
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004427 VISIT(c, expr, outermost->iter);
4428
4429 if (outermost->is_async) {
4430 ADDOP(c, GET_AITER);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004431 } else {
4432 ADDOP(c, GET_ITER);
4433 }
4434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004435 ADDOP_I(c, CALL_FUNCTION, 1);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004436
4437 if (is_async_generator && type != COMP_GENEXP) {
4438 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004439 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004440 ADDOP(c, YIELD_FROM);
4441 }
4442
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004443 return 1;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004444error_in_scope:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004445 compiler_exit_scope(c);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004446error:
Antoine Pitrou86a36b52011-11-25 18:56:07 +01004447 Py_XDECREF(qualname);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004448 Py_XDECREF(co);
4449 return 0;
Nick Coghlan650f0d02007-04-15 12:05:43 +00004450}
4451
4452static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004453compiler_genexp(struct compiler *c, expr_ty e)
4454{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004455 static identifier name;
4456 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004457 name = PyUnicode_InternFromString("<genexpr>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004458 if (!name)
4459 return 0;
4460 }
4461 assert(e->kind == GeneratorExp_kind);
4462 return compiler_comprehension(c, e, COMP_GENEXP, name,
4463 e->v.GeneratorExp.generators,
4464 e->v.GeneratorExp.elt, NULL);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004465}
4466
4467static int
Nick Coghlan650f0d02007-04-15 12:05:43 +00004468compiler_listcomp(struct compiler *c, expr_ty e)
4469{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004470 static identifier name;
4471 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004472 name = PyUnicode_InternFromString("<listcomp>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004473 if (!name)
4474 return 0;
4475 }
4476 assert(e->kind == ListComp_kind);
4477 return compiler_comprehension(c, e, COMP_LISTCOMP, name,
4478 e->v.ListComp.generators,
4479 e->v.ListComp.elt, NULL);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004480}
4481
4482static int
4483compiler_setcomp(struct compiler *c, expr_ty e)
4484{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004485 static identifier name;
4486 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004487 name = PyUnicode_InternFromString("<setcomp>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004488 if (!name)
4489 return 0;
4490 }
4491 assert(e->kind == SetComp_kind);
4492 return compiler_comprehension(c, e, COMP_SETCOMP, name,
4493 e->v.SetComp.generators,
4494 e->v.SetComp.elt, NULL);
Guido van Rossum992d4a32007-07-11 13:09:30 +00004495}
4496
4497
4498static int
4499compiler_dictcomp(struct compiler *c, expr_ty e)
4500{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004501 static identifier name;
4502 if (!name) {
Zackery Spytzf3036392018-04-15 16:12:29 -06004503 name = PyUnicode_InternFromString("<dictcomp>");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004504 if (!name)
4505 return 0;
4506 }
4507 assert(e->kind == DictComp_kind);
4508 return compiler_comprehension(c, e, COMP_DICTCOMP, name,
4509 e->v.DictComp.generators,
4510 e->v.DictComp.key, e->v.DictComp.value);
Nick Coghlan650f0d02007-04-15 12:05:43 +00004511}
4512
4513
4514static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004515compiler_visit_keyword(struct compiler *c, keyword_ty k)
4516{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004517 VISIT(c, expr, k->value);
4518 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004519}
4520
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004521/* Test whether expression is constant. For constants, report
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004522 whether they are true or false.
4523
4524 Return values: 1 for true, 0 for false, -1 for non-constant.
4525 */
4526
4527static int
Serhiy Storchaka3dfbaf52017-12-25 12:47:50 +02004528expr_constant(expr_ty e)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004529{
Serhiy Storchaka3f228112018-09-27 17:42:37 +03004530 if (e->kind == Constant_kind) {
4531 return PyObject_IsTrue(e->v.Constant.value);
Benjamin Peterson442f2092012-12-06 17:41:04 -05004532 }
Serhiy Storchaka3325a672017-12-15 12:35:48 +02004533 return -1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004534}
4535
Yury Selivanov75445082015-05-11 22:57:16 -04004536
4537/*
4538 Implements the async with statement.
4539
4540 The semantics outlined in that PEP are as follows:
4541
4542 async with EXPR as VAR:
4543 BLOCK
4544
4545 It is implemented roughly as:
4546
4547 context = EXPR
4548 exit = context.__aexit__ # not calling it
4549 value = await context.__aenter__()
4550 try:
4551 VAR = value # if VAR present in the syntax
4552 BLOCK
4553 finally:
4554 if an exception was raised:
Serhiy Storchakaec466a12015-06-11 00:09:32 +03004555 exc = copy of (exception, instance, traceback)
Yury Selivanov75445082015-05-11 22:57:16 -04004556 else:
Serhiy Storchakaec466a12015-06-11 00:09:32 +03004557 exc = (None, None, None)
Yury Selivanov75445082015-05-11 22:57:16 -04004558 if not (await exit(*exc)):
4559 raise
4560 */
4561static int
4562compiler_async_with(struct compiler *c, stmt_ty s, int pos)
4563{
4564 basicblock *block, *finally;
4565 withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos);
4566
4567 assert(s->kind == AsyncWith_kind);
Zsolt Dollensteine2396502018-04-27 08:58:56 -07004568 if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION) {
4569 return compiler_error(c, "'async with' outside async function");
4570 }
Yury Selivanov75445082015-05-11 22:57:16 -04004571
4572 block = compiler_new_block(c);
4573 finally = compiler_new_block(c);
4574 if (!block || !finally)
4575 return 0;
4576
4577 /* Evaluate EXPR */
4578 VISIT(c, expr, item->context_expr);
4579
4580 ADDOP(c, BEFORE_ASYNC_WITH);
4581 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004582 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04004583 ADDOP(c, YIELD_FROM);
4584
4585 ADDOP_JREL(c, SETUP_ASYNC_WITH, finally);
4586
4587 /* SETUP_ASYNC_WITH pushes a finally block. */
4588 compiler_use_next_block(c, block);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004589 if (!compiler_push_fblock(c, ASYNC_WITH, block, finally)) {
Yury Selivanov75445082015-05-11 22:57:16 -04004590 return 0;
4591 }
4592
4593 if (item->optional_vars) {
4594 VISIT(c, expr, item->optional_vars);
4595 }
4596 else {
4597 /* Discard result from context.__aenter__() */
4598 ADDOP(c, POP_TOP);
4599 }
4600
4601 pos++;
4602 if (pos == asdl_seq_LEN(s->v.AsyncWith.items))
4603 /* BLOCK code */
4604 VISIT_SEQ(c, stmt, s->v.AsyncWith.body)
4605 else if (!compiler_async_with(c, s, pos))
4606 return 0;
4607
4608 /* End of try block; start the finally block */
4609 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004610 ADDOP(c, BEGIN_FINALLY);
4611 compiler_pop_fblock(c, ASYNC_WITH, block);
Yury Selivanov75445082015-05-11 22:57:16 -04004612
Yury Selivanov75445082015-05-11 22:57:16 -04004613 compiler_use_next_block(c, finally);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004614 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL))
Yury Selivanov75445082015-05-11 22:57:16 -04004615 return 0;
4616
4617 /* Finally block starts; context.__exit__ is on the stack under
4618 the exception or return information. Just issue our magic
4619 opcode. */
4620 ADDOP(c, WITH_CLEANUP_START);
4621
4622 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004623 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04004624 ADDOP(c, YIELD_FROM);
4625
4626 ADDOP(c, WITH_CLEANUP_FINISH);
4627
4628 /* Finally block ends. */
4629 ADDOP(c, END_FINALLY);
4630 compiler_pop_fblock(c, FINALLY_END, finally);
4631 return 1;
4632}
4633
4634
Guido van Rossumc2e20742006-02-27 22:32:47 +00004635/*
4636 Implements the with statement from PEP 343.
4637
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004638 The semantics outlined in that PEP are as follows:
Guido van Rossumc2e20742006-02-27 22:32:47 +00004639
4640 with EXPR as VAR:
4641 BLOCK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004642
Guido van Rossumc2e20742006-02-27 22:32:47 +00004643 It is implemented roughly as:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004644
Thomas Wouters477c8d52006-05-27 19:21:47 +00004645 context = EXPR
Guido van Rossumc2e20742006-02-27 22:32:47 +00004646 exit = context.__exit__ # not calling it
4647 value = context.__enter__()
4648 try:
4649 VAR = value # if VAR present in the syntax
4650 BLOCK
4651 finally:
4652 if an exception was raised:
Serhiy Storchakad741a882015-06-11 00:06:39 +03004653 exc = copy of (exception, instance, traceback)
Guido van Rossumc2e20742006-02-27 22:32:47 +00004654 else:
Serhiy Storchakad741a882015-06-11 00:06:39 +03004655 exc = (None, None, None)
Guido van Rossumc2e20742006-02-27 22:32:47 +00004656 exit(*exc)
4657 */
4658static int
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004659compiler_with(struct compiler *c, stmt_ty s, int pos)
Guido van Rossumc2e20742006-02-27 22:32:47 +00004660{
Guido van Rossumc2e20742006-02-27 22:32:47 +00004661 basicblock *block, *finally;
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004662 withitem_ty item = asdl_seq_GET(s->v.With.items, pos);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004663
4664 assert(s->kind == With_kind);
4665
Guido van Rossumc2e20742006-02-27 22:32:47 +00004666 block = compiler_new_block(c);
4667 finally = compiler_new_block(c);
4668 if (!block || !finally)
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004669 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004670
Thomas Wouters477c8d52006-05-27 19:21:47 +00004671 /* Evaluate EXPR */
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004672 VISIT(c, expr, item->context_expr);
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004673 ADDOP_JREL(c, SETUP_WITH, finally);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004674
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004675 /* SETUP_WITH pushes a finally block. */
Guido van Rossumc2e20742006-02-27 22:32:47 +00004676 compiler_use_next_block(c, block);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004677 if (!compiler_push_fblock(c, WITH, block, finally)) {
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004678 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004679 }
4680
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004681 if (item->optional_vars) {
4682 VISIT(c, expr, item->optional_vars);
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004683 }
4684 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004685 /* Discard result from context.__enter__() */
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004686 ADDOP(c, POP_TOP);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004687 }
4688
Benjamin Petersonbf1bbc12011-05-27 13:58:08 -05004689 pos++;
4690 if (pos == asdl_seq_LEN(s->v.With.items))
4691 /* BLOCK code */
4692 VISIT_SEQ(c, stmt, s->v.With.body)
4693 else if (!compiler_with(c, s, pos))
4694 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004695
4696 /* End of try block; start the finally block */
4697 ADDOP(c, POP_BLOCK);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004698 ADDOP(c, BEGIN_FINALLY);
4699 compiler_pop_fblock(c, WITH, block);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004700
Guido van Rossumc2e20742006-02-27 22:32:47 +00004701 compiler_use_next_block(c, finally);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02004702 if (!compiler_push_fblock(c, FINALLY_END, finally, NULL))
Antoine Pitrou9aee2c82010-06-22 21:49:39 +00004703 return 0;
Guido van Rossumc2e20742006-02-27 22:32:47 +00004704
Christian Heimesdd15f6c2008-03-16 00:07:10 +00004705 /* Finally block starts; context.__exit__ is on the stack under
4706 the exception or return information. Just issue our magic
4707 opcode. */
Yury Selivanov75445082015-05-11 22:57:16 -04004708 ADDOP(c, WITH_CLEANUP_START);
4709 ADDOP(c, WITH_CLEANUP_FINISH);
Guido van Rossumc2e20742006-02-27 22:32:47 +00004710
4711 /* Finally block ends. */
4712 ADDOP(c, END_FINALLY);
4713 compiler_pop_fblock(c, FINALLY_END, finally);
4714 return 1;
4715}
4716
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004717static int
Serhiy Storchakada8d72c2018-09-17 15:17:29 +03004718compiler_visit_expr1(struct compiler *c, expr_ty e)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004719{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004720 switch (e->kind) {
Emily Morehouse8f59ee02019-01-24 16:49:56 -07004721 case NamedExpr_kind:
4722 VISIT(c, expr, e->v.NamedExpr.value);
4723 ADDOP(c, DUP_TOP);
4724 VISIT(c, expr, e->v.NamedExpr.target);
4725 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004726 case BoolOp_kind:
4727 return compiler_boolop(c, e);
4728 case BinOp_kind:
4729 VISIT(c, expr, e->v.BinOp.left);
4730 VISIT(c, expr, e->v.BinOp.right);
4731 ADDOP(c, binop(c, e->v.BinOp.op));
4732 break;
4733 case UnaryOp_kind:
4734 VISIT(c, expr, e->v.UnaryOp.operand);
4735 ADDOP(c, unaryop(e->v.UnaryOp.op));
4736 break;
4737 case Lambda_kind:
4738 return compiler_lambda(c, e);
4739 case IfExp_kind:
4740 return compiler_ifexp(c, e);
4741 case Dict_kind:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004742 return compiler_dict(c, e);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004743 case Set_kind:
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004744 return compiler_set(c, e);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004745 case GeneratorExp_kind:
4746 return compiler_genexp(c, e);
4747 case ListComp_kind:
4748 return compiler_listcomp(c, e);
4749 case SetComp_kind:
4750 return compiler_setcomp(c, e);
4751 case DictComp_kind:
4752 return compiler_dictcomp(c, e);
4753 case Yield_kind:
4754 if (c->u->u_ste->ste_type != FunctionBlock)
4755 return compiler_error(c, "'yield' outside function");
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004756 if (e->v.Yield.value) {
4757 VISIT(c, expr, e->v.Yield.value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004758 }
4759 else {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004760 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004761 }
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004762 ADDOP(c, YIELD_VALUE);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004763 break;
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004764 case YieldFrom_kind:
4765 if (c->u->u_ste->ste_type != FunctionBlock)
4766 return compiler_error(c, "'yield' outside function");
Yury Selivanov75445082015-05-11 22:57:16 -04004767
4768 if (c->u->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION)
4769 return compiler_error(c, "'yield from' inside async function");
4770
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004771 VISIT(c, expr, e->v.YieldFrom.value);
Yury Selivanov5376ba92015-06-22 12:19:30 -04004772 ADDOP(c, GET_YIELD_FROM_ITER);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004773 ADDOP_LOAD_CONST(c, Py_None);
Mark Dickinsonded35ae2012-11-25 14:36:26 +00004774 ADDOP(c, YIELD_FROM);
4775 break;
Yury Selivanov75445082015-05-11 22:57:16 -04004776 case Await_kind:
4777 if (c->u->u_ste->ste_type != FunctionBlock)
4778 return compiler_error(c, "'await' outside function");
4779
Yury Selivanov52c4e7c2016-09-09 10:36:01 -07004780 if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION &&
4781 c->u->u_scope_type != COMPILER_SCOPE_COMPREHENSION)
Yury Selivanov75445082015-05-11 22:57:16 -04004782 return compiler_error(c, "'await' outside async function");
4783
4784 VISIT(c, expr, e->v.Await.value);
4785 ADDOP(c, GET_AWAITABLE);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004786 ADDOP_LOAD_CONST(c, Py_None);
Yury Selivanov75445082015-05-11 22:57:16 -04004787 ADDOP(c, YIELD_FROM);
4788 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004789 case Compare_kind:
4790 return compiler_compare(c, e);
4791 case Call_kind:
4792 return compiler_call(c, e);
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01004793 case Constant_kind:
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03004794 ADDOP_LOAD_CONST(c, e->v.Constant.value);
Victor Stinnerf2c1aa12016-01-26 00:40:57 +01004795 break;
Eric V. Smith235a6f02015-09-19 14:51:32 -04004796 case JoinedStr_kind:
4797 return compiler_joined_str(c, e);
4798 case FormattedValue_kind:
4799 return compiler_formatted_value(c, e);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004800 /* The following exprs can be assignment targets. */
4801 case Attribute_kind:
4802 if (e->v.Attribute.ctx != AugStore)
4803 VISIT(c, expr, e->v.Attribute.value);
4804 switch (e->v.Attribute.ctx) {
4805 case AugLoad:
4806 ADDOP(c, DUP_TOP);
Stefan Krahf432a322017-08-21 13:09:59 +02004807 /* Fall through */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004808 case Load:
4809 ADDOP_NAME(c, LOAD_ATTR, e->v.Attribute.attr, names);
4810 break;
4811 case AugStore:
4812 ADDOP(c, ROT_TWO);
Stefan Krahf432a322017-08-21 13:09:59 +02004813 /* Fall through */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004814 case Store:
4815 ADDOP_NAME(c, STORE_ATTR, e->v.Attribute.attr, names);
4816 break;
4817 case Del:
4818 ADDOP_NAME(c, DELETE_ATTR, e->v.Attribute.attr, names);
4819 break;
4820 case Param:
4821 default:
4822 PyErr_SetString(PyExc_SystemError,
4823 "param invalid in attribute expression");
4824 return 0;
4825 }
4826 break;
4827 case Subscript_kind:
4828 switch (e->v.Subscript.ctx) {
4829 case AugLoad:
4830 VISIT(c, expr, e->v.Subscript.value);
4831 VISIT_SLICE(c, e->v.Subscript.slice, AugLoad);
4832 break;
4833 case Load:
Serhiy Storchaka62e44812019-02-16 08:12:19 +02004834 if (!check_subscripter(c, e->v.Subscript.value)) {
4835 return 0;
4836 }
4837 if (!check_index(c, e->v.Subscript.value, e->v.Subscript.slice)) {
4838 return 0;
4839 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004840 VISIT(c, expr, e->v.Subscript.value);
4841 VISIT_SLICE(c, e->v.Subscript.slice, Load);
4842 break;
4843 case AugStore:
4844 VISIT_SLICE(c, e->v.Subscript.slice, AugStore);
4845 break;
4846 case Store:
4847 VISIT(c, expr, e->v.Subscript.value);
4848 VISIT_SLICE(c, e->v.Subscript.slice, Store);
4849 break;
4850 case Del:
4851 VISIT(c, expr, e->v.Subscript.value);
4852 VISIT_SLICE(c, e->v.Subscript.slice, Del);
4853 break;
4854 case Param:
4855 default:
4856 PyErr_SetString(PyExc_SystemError,
4857 "param invalid in subscript expression");
4858 return 0;
4859 }
4860 break;
4861 case Starred_kind:
4862 switch (e->v.Starred.ctx) {
4863 case Store:
4864 /* In all legitimate cases, the Starred node was already replaced
4865 * by compiler_list/compiler_tuple. XXX: is that okay? */
4866 return compiler_error(c,
4867 "starred assignment target must be in a list or tuple");
4868 default:
4869 return compiler_error(c,
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04004870 "can't use starred expression here");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004871 }
4872 break;
4873 case Name_kind:
4874 return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx);
4875 /* child nodes of List and Tuple will have expr_context set */
4876 case List_kind:
4877 return compiler_list(c, e);
4878 case Tuple_kind:
4879 return compiler_tuple(c, e);
4880 }
4881 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004882}
4883
4884static int
Serhiy Storchakada8d72c2018-09-17 15:17:29 +03004885compiler_visit_expr(struct compiler *c, expr_ty e)
4886{
4887 /* If expr e has a different line number than the last expr/stmt,
4888 set a new line number for the next instruction.
4889 */
4890 int old_lineno = c->u->u_lineno;
4891 int old_col_offset = c->u->u_col_offset;
4892 if (e->lineno != c->u->u_lineno) {
4893 c->u->u_lineno = e->lineno;
4894 c->u->u_lineno_set = 0;
4895 }
4896 /* Updating the column offset is always harmless. */
4897 c->u->u_col_offset = e->col_offset;
4898
4899 int res = compiler_visit_expr1(c, e);
4900
4901 if (old_lineno != c->u->u_lineno) {
4902 c->u->u_lineno = old_lineno;
4903 c->u->u_lineno_set = 0;
4904 }
4905 c->u->u_col_offset = old_col_offset;
4906 return res;
4907}
4908
4909static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004910compiler_augassign(struct compiler *c, stmt_ty s)
4911{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004912 expr_ty e = s->v.AugAssign.target;
4913 expr_ty auge;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004914
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004915 assert(s->kind == AugAssign_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004916
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004917 switch (e->kind) {
4918 case Attribute_kind:
4919 auge = Attribute(e->v.Attribute.value, e->v.Attribute.attr,
Ivan Levkivskyi9932a222019-01-22 11:18:22 +00004920 AugLoad, e->lineno, e->col_offset,
4921 e->end_lineno, e->end_col_offset, c->c_arena);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004922 if (auge == NULL)
4923 return 0;
4924 VISIT(c, expr, auge);
4925 VISIT(c, expr, s->v.AugAssign.value);
4926 ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
4927 auge->v.Attribute.ctx = AugStore;
4928 VISIT(c, expr, auge);
4929 break;
4930 case Subscript_kind:
4931 auge = Subscript(e->v.Subscript.value, e->v.Subscript.slice,
Ivan Levkivskyi9932a222019-01-22 11:18:22 +00004932 AugLoad, e->lineno, e->col_offset,
4933 e->end_lineno, e->end_col_offset, c->c_arena);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004934 if (auge == NULL)
4935 return 0;
4936 VISIT(c, expr, auge);
4937 VISIT(c, expr, s->v.AugAssign.value);
4938 ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
4939 auge->v.Subscript.ctx = AugStore;
4940 VISIT(c, expr, auge);
4941 break;
4942 case Name_kind:
4943 if (!compiler_nameop(c, e->v.Name.id, Load))
4944 return 0;
4945 VISIT(c, expr, s->v.AugAssign.value);
4946 ADDOP(c, inplace_binop(c, s->v.AugAssign.op));
4947 return compiler_nameop(c, e->v.Name.id, Store);
4948 default:
4949 PyErr_Format(PyExc_SystemError,
4950 "invalid node type (%d) for augmented assignment",
4951 e->kind);
4952 return 0;
4953 }
4954 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00004955}
4956
4957static int
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07004958check_ann_expr(struct compiler *c, expr_ty e)
4959{
4960 VISIT(c, expr, e);
4961 ADDOP(c, POP_TOP);
4962 return 1;
4963}
4964
4965static int
4966check_annotation(struct compiler *c, stmt_ty s)
4967{
4968 /* Annotations are only evaluated in a module or class. */
4969 if (c->u->u_scope_type == COMPILER_SCOPE_MODULE ||
4970 c->u->u_scope_type == COMPILER_SCOPE_CLASS) {
4971 return check_ann_expr(c, s->v.AnnAssign.annotation);
4972 }
4973 return 1;
4974}
4975
4976static int
4977check_ann_slice(struct compiler *c, slice_ty sl)
4978{
4979 switch(sl->kind) {
4980 case Index_kind:
4981 return check_ann_expr(c, sl->v.Index.value);
4982 case Slice_kind:
4983 if (sl->v.Slice.lower && !check_ann_expr(c, sl->v.Slice.lower)) {
4984 return 0;
4985 }
4986 if (sl->v.Slice.upper && !check_ann_expr(c, sl->v.Slice.upper)) {
4987 return 0;
4988 }
4989 if (sl->v.Slice.step && !check_ann_expr(c, sl->v.Slice.step)) {
4990 return 0;
4991 }
4992 break;
4993 default:
4994 PyErr_SetString(PyExc_SystemError,
4995 "unexpected slice kind");
4996 return 0;
4997 }
4998 return 1;
4999}
5000
5001static int
5002check_ann_subscr(struct compiler *c, slice_ty sl)
5003{
5004 /* We check that everything in a subscript is defined at runtime. */
5005 Py_ssize_t i, n;
5006
5007 switch (sl->kind) {
5008 case Index_kind:
5009 case Slice_kind:
5010 if (!check_ann_slice(c, sl)) {
5011 return 0;
5012 }
5013 break;
5014 case ExtSlice_kind:
5015 n = asdl_seq_LEN(sl->v.ExtSlice.dims);
5016 for (i = 0; i < n; i++) {
5017 slice_ty subsl = (slice_ty)asdl_seq_GET(sl->v.ExtSlice.dims, i);
5018 switch (subsl->kind) {
5019 case Index_kind:
5020 case Slice_kind:
5021 if (!check_ann_slice(c, subsl)) {
5022 return 0;
5023 }
5024 break;
5025 case ExtSlice_kind:
5026 default:
5027 PyErr_SetString(PyExc_SystemError,
5028 "extended slice invalid in nested slice");
5029 return 0;
5030 }
5031 }
5032 break;
5033 default:
5034 PyErr_Format(PyExc_SystemError,
5035 "invalid subscript kind %d", sl->kind);
5036 return 0;
5037 }
5038 return 1;
5039}
5040
5041static int
5042compiler_annassign(struct compiler *c, stmt_ty s)
5043{
5044 expr_ty targ = s->v.AnnAssign.target;
Guido van Rossum015d8742016-09-11 09:45:24 -07005045 PyObject* mangled;
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07005046
5047 assert(s->kind == AnnAssign_kind);
5048
5049 /* We perform the actual assignment first. */
5050 if (s->v.AnnAssign.value) {
5051 VISIT(c, expr, s->v.AnnAssign.value);
5052 VISIT(c, expr, targ);
5053 }
5054 switch (targ->kind) {
5055 case Name_kind:
5056 /* If we have a simple name in a module or class, store annotation. */
5057 if (s->v.AnnAssign.simple &&
5058 (c->u->u_scope_type == COMPILER_SCOPE_MODULE ||
5059 c->u->u_scope_type == COMPILER_SCOPE_CLASS)) {
Guido van Rossum95e4d582018-01-26 08:20:18 -08005060 if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) {
5061 VISIT(c, annexpr, s->v.AnnAssign.annotation)
5062 }
5063 else {
5064 VISIT(c, expr, s->v.AnnAssign.annotation);
5065 }
Mark Shannon332cd5e2018-01-30 00:41:04 +00005066 ADDOP_NAME(c, LOAD_NAME, __annotations__, names);
Serhiy Storchakaa95d9862018-03-24 22:42:35 +02005067 mangled = _Py_Mangle(c->u->u_private, targ->v.Name.id);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005068 ADDOP_LOAD_CONST_NEW(c, mangled);
Mark Shannon332cd5e2018-01-30 00:41:04 +00005069 ADDOP(c, STORE_SUBSCR);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07005070 }
5071 break;
5072 case Attribute_kind:
5073 if (!s->v.AnnAssign.value &&
5074 !check_ann_expr(c, targ->v.Attribute.value)) {
5075 return 0;
5076 }
5077 break;
5078 case Subscript_kind:
5079 if (!s->v.AnnAssign.value &&
5080 (!check_ann_expr(c, targ->v.Subscript.value) ||
5081 !check_ann_subscr(c, targ->v.Subscript.slice))) {
5082 return 0;
5083 }
5084 break;
5085 default:
5086 PyErr_Format(PyExc_SystemError,
5087 "invalid node type (%d) for annotated assignment",
5088 targ->kind);
5089 return 0;
5090 }
5091 /* Annotation is evaluated last. */
5092 if (!s->v.AnnAssign.simple && !check_annotation(c, s)) {
5093 return 0;
5094 }
5095 return 1;
5096}
5097
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005098/* Raises a SyntaxError and returns 0.
5099 If something goes wrong, a different exception may be raised.
5100*/
5101
5102static int
5103compiler_error(struct compiler *c, const char *errstr)
5104{
Benjamin Peterson43b06862011-05-27 09:08:01 -05005105 PyObject *loc;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005106 PyObject *u = NULL, *v = NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005107
Victor Stinner14e461d2013-08-26 22:28:21 +02005108 loc = PyErr_ProgramTextObject(c->c_filename, c->u->u_lineno);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005109 if (!loc) {
5110 Py_INCREF(Py_None);
5111 loc = Py_None;
5112 }
Victor Stinner14e461d2013-08-26 22:28:21 +02005113 u = Py_BuildValue("(OiiO)", c->c_filename, c->u->u_lineno,
Ammar Askar025eb982018-09-24 17:12:49 -04005114 c->u->u_col_offset + 1, loc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005115 if (!u)
5116 goto exit;
5117 v = Py_BuildValue("(zO)", errstr, u);
5118 if (!v)
5119 goto exit;
5120 PyErr_SetObject(PyExc_SyntaxError, v);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005121 exit:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005122 Py_DECREF(loc);
5123 Py_XDECREF(u);
5124 Py_XDECREF(v);
5125 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005126}
5127
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005128/* Emits a SyntaxWarning and returns 1 on success.
5129 If a SyntaxWarning raised as error, replaces it with a SyntaxError
5130 and returns 0.
5131*/
5132static int
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005133compiler_warn(struct compiler *c, const char *format, ...)
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005134{
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005135 va_list vargs;
5136#ifdef HAVE_STDARG_PROTOTYPES
5137 va_start(vargs, format);
5138#else
5139 va_start(vargs);
5140#endif
5141 PyObject *msg = PyUnicode_FromFormatV(format, vargs);
5142 va_end(vargs);
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005143 if (msg == NULL) {
5144 return 0;
5145 }
5146 if (PyErr_WarnExplicitObject(PyExc_SyntaxWarning, msg, c->c_filename,
5147 c->u->u_lineno, NULL, NULL) < 0)
5148 {
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005149 if (PyErr_ExceptionMatches(PyExc_SyntaxWarning)) {
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005150 /* Replace the SyntaxWarning exception with a SyntaxError
5151 to get a more accurate error report */
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005152 PyErr_Clear();
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005153 assert(PyUnicode_AsUTF8(msg) != NULL);
5154 compiler_error(c, PyUnicode_AsUTF8(msg));
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005155 }
Serhiy Storchaka62e44812019-02-16 08:12:19 +02005156 Py_DECREF(msg);
Serhiy Storchakad31e7732018-10-21 10:09:39 +03005157 return 0;
5158 }
5159 Py_DECREF(msg);
5160 return 1;
5161}
5162
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005163static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005164compiler_handle_subscr(struct compiler *c, const char *kind,
5165 expr_context_ty ctx)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005166{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005167 int op = 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005168
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005169 /* XXX this code is duplicated */
5170 switch (ctx) {
5171 case AugLoad: /* fall through to Load */
5172 case Load: op = BINARY_SUBSCR; break;
5173 case AugStore:/* fall through to Store */
5174 case Store: op = STORE_SUBSCR; break;
5175 case Del: op = DELETE_SUBSCR; break;
5176 case Param:
5177 PyErr_Format(PyExc_SystemError,
5178 "invalid %s kind %d in subscript\n",
5179 kind, ctx);
5180 return 0;
5181 }
5182 if (ctx == AugLoad) {
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00005183 ADDOP(c, DUP_TOP_TWO);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005184 }
5185 else if (ctx == AugStore) {
5186 ADDOP(c, ROT_THREE);
5187 }
5188 ADDOP(c, op);
5189 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005190}
5191
5192static int
5193compiler_slice(struct compiler *c, slice_ty s, expr_context_ty ctx)
5194{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005195 int n = 2;
5196 assert(s->kind == Slice_kind);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005197
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005198 /* only handles the cases where BUILD_SLICE is emitted */
5199 if (s->v.Slice.lower) {
5200 VISIT(c, expr, s->v.Slice.lower);
5201 }
5202 else {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005203 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005204 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005205
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005206 if (s->v.Slice.upper) {
5207 VISIT(c, expr, s->v.Slice.upper);
5208 }
5209 else {
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005210 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005211 }
5212
5213 if (s->v.Slice.step) {
5214 n++;
5215 VISIT(c, expr, s->v.Slice.step);
5216 }
5217 ADDOP_I(c, BUILD_SLICE, n);
5218 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005219}
5220
5221static int
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005222compiler_visit_nested_slice(struct compiler *c, slice_ty s,
5223 expr_context_ty ctx)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005224{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005225 switch (s->kind) {
5226 case Slice_kind:
5227 return compiler_slice(c, s, ctx);
5228 case Index_kind:
5229 VISIT(c, expr, s->v.Index.value);
5230 break;
5231 case ExtSlice_kind:
5232 default:
5233 PyErr_SetString(PyExc_SystemError,
5234 "extended slice invalid in nested slice");
5235 return 0;
5236 }
5237 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005238}
5239
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005240static int
5241compiler_visit_slice(struct compiler *c, slice_ty s, expr_context_ty ctx)
5242{
Serhiy Storchakae2f92de2017-11-11 13:06:26 +02005243 const char * kindname = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005244 switch (s->kind) {
5245 case Index_kind:
5246 kindname = "index";
5247 if (ctx != AugStore) {
5248 VISIT(c, expr, s->v.Index.value);
5249 }
5250 break;
5251 case Slice_kind:
5252 kindname = "slice";
5253 if (ctx != AugStore) {
5254 if (!compiler_slice(c, s, ctx))
5255 return 0;
5256 }
5257 break;
5258 case ExtSlice_kind:
5259 kindname = "extended slice";
5260 if (ctx != AugStore) {
Victor Stinnerad9a0662013-11-19 22:23:20 +01005261 Py_ssize_t i, n = asdl_seq_LEN(s->v.ExtSlice.dims);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005262 for (i = 0; i < n; i++) {
5263 slice_ty sub = (slice_ty)asdl_seq_GET(
5264 s->v.ExtSlice.dims, i);
5265 if (!compiler_visit_nested_slice(c, sub, ctx))
5266 return 0;
5267 }
5268 ADDOP_I(c, BUILD_TUPLE, n);
5269 }
5270 break;
5271 default:
5272 PyErr_Format(PyExc_SystemError,
5273 "invalid subscript kind %d", s->kind);
5274 return 0;
5275 }
5276 return compiler_handle_subscr(c, kindname, ctx);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005277}
5278
Thomas Wouters89f507f2006-12-13 04:49:30 +00005279/* End of the compiler section, beginning of the assembler section */
5280
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005281/* do depth-first search of basic block graph, starting with block.
5282 post records the block indices in post-order.
5283
5284 XXX must handle implicit jumps from one block to next
5285*/
5286
Thomas Wouters89f507f2006-12-13 04:49:30 +00005287struct assembler {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005288 PyObject *a_bytecode; /* string containing bytecode */
5289 int a_offset; /* offset into bytecode */
5290 int a_nblocks; /* number of reachable blocks */
5291 basicblock **a_postorder; /* list of blocks in dfs postorder */
5292 PyObject *a_lnotab; /* string containing lnotab */
5293 int a_lnotab_off; /* offset into lnotab */
5294 int a_lineno; /* last lineno of emitted instruction */
5295 int a_lineno_off; /* bytecode offset of last lineno */
Thomas Wouters89f507f2006-12-13 04:49:30 +00005296};
5297
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005298static void
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005299dfs(struct compiler *c, basicblock *b, struct assembler *a, int end)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005300{
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005301 int i, j;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005302
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005303 /* Get rid of recursion for normal control flow.
5304 Since the number of blocks is limited, unused space in a_postorder
5305 (from a_nblocks to end) can be used as a stack for still not ordered
5306 blocks. */
5307 for (j = end; b && !b->b_seen; b = b->b_next) {
5308 b->b_seen = 1;
5309 assert(a->a_nblocks < j);
5310 a->a_postorder[--j] = b;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005311 }
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005312 while (j < end) {
5313 b = a->a_postorder[j++];
5314 for (i = 0; i < b->b_iused; i++) {
5315 struct instr *instr = &b->b_instr[i];
5316 if (instr->i_jrel || instr->i_jabs)
5317 dfs(c, instr->i_target, a, j);
5318 }
5319 assert(a->a_nblocks < j);
5320 a->a_postorder[a->a_nblocks++] = b;
5321 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005322}
5323
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005324Py_LOCAL_INLINE(void)
5325stackdepth_push(basicblock ***sp, basicblock *b, int depth)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005326{
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005327 assert(b->b_startdepth < 0 || b->b_startdepth == depth);
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005328 if (b->b_startdepth < depth) {
5329 assert(b->b_startdepth < 0);
5330 b->b_startdepth = depth;
5331 *(*sp)++ = b;
Serhiy Storchakad4864c62018-01-09 21:54:52 +02005332 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005333}
5334
5335/* Find the flow path that needs the largest stack. We assume that
5336 * cycles in the flow graph have no net effect on the stack depth.
5337 */
5338static int
5339stackdepth(struct compiler *c)
5340{
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005341 basicblock *b, *entryblock = NULL;
5342 basicblock **stack, **sp;
5343 int nblocks = 0, maxdepth = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005344 for (b = c->u->u_blocks; b != NULL; b = b->b_list) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005345 b->b_startdepth = INT_MIN;
5346 entryblock = b;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005347 nblocks++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005348 }
5349 if (!entryblock)
5350 return 0;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005351 stack = (basicblock **)PyObject_Malloc(sizeof(basicblock *) * nblocks);
5352 if (!stack) {
5353 PyErr_NoMemory();
5354 return -1;
5355 }
5356
5357 sp = stack;
5358 stackdepth_push(&sp, entryblock, 0);
5359 while (sp != stack) {
5360 b = *--sp;
5361 int depth = b->b_startdepth;
5362 assert(depth >= 0);
5363 basicblock *next = b->b_next;
5364 for (int i = 0; i < b->b_iused; i++) {
5365 struct instr *instr = &b->b_instr[i];
5366 int effect = stack_effect(instr->i_opcode, instr->i_oparg, 0);
5367 if (effect == PY_INVALID_STACK_EFFECT) {
5368 fprintf(stderr, "opcode = %d\n", instr->i_opcode);
5369 Py_FatalError("PyCompile_OpcodeStackEffect()");
5370 }
5371 int new_depth = depth + effect;
5372 if (new_depth > maxdepth) {
5373 maxdepth = new_depth;
5374 }
5375 assert(depth >= 0); /* invalid code or bug in stackdepth() */
5376 if (instr->i_jrel || instr->i_jabs) {
5377 effect = stack_effect(instr->i_opcode, instr->i_oparg, 1);
5378 assert(effect != PY_INVALID_STACK_EFFECT);
5379 int target_depth = depth + effect;
5380 if (target_depth > maxdepth) {
5381 maxdepth = target_depth;
5382 }
5383 assert(target_depth >= 0); /* invalid code or bug in stackdepth() */
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005384 if (instr->i_opcode == CALL_FINALLY) {
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005385 assert(instr->i_target->b_startdepth >= 0);
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005386 assert(instr->i_target->b_startdepth >= target_depth);
5387 depth = new_depth;
5388 continue;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005389 }
5390 stackdepth_push(&sp, instr->i_target, target_depth);
5391 }
5392 depth = new_depth;
5393 if (instr->i_opcode == JUMP_ABSOLUTE ||
5394 instr->i_opcode == JUMP_FORWARD ||
5395 instr->i_opcode == RETURN_VALUE ||
Serhiy Storchaka520b7ae2018-02-22 23:33:30 +02005396 instr->i_opcode == RAISE_VARARGS)
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005397 {
5398 /* remaining code is dead */
5399 next = NULL;
5400 break;
5401 }
5402 }
5403 if (next != NULL) {
5404 stackdepth_push(&sp, next, depth);
5405 }
5406 }
5407 PyObject_Free(stack);
5408 return maxdepth;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005409}
5410
5411static int
5412assemble_init(struct assembler *a, int nblocks, int firstlineno)
5413{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005414 memset(a, 0, sizeof(struct assembler));
5415 a->a_lineno = firstlineno;
5416 a->a_bytecode = PyBytes_FromStringAndSize(NULL, DEFAULT_CODE_SIZE);
5417 if (!a->a_bytecode)
5418 return 0;
5419 a->a_lnotab = PyBytes_FromStringAndSize(NULL, DEFAULT_LNOTAB_SIZE);
5420 if (!a->a_lnotab)
5421 return 0;
Benjamin Peterson2f8bfef2016-09-07 09:26:18 -07005422 if ((size_t)nblocks > SIZE_MAX / sizeof(basicblock *)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005423 PyErr_NoMemory();
5424 return 0;
5425 }
5426 a->a_postorder = (basicblock **)PyObject_Malloc(
5427 sizeof(basicblock *) * nblocks);
5428 if (!a->a_postorder) {
5429 PyErr_NoMemory();
5430 return 0;
5431 }
5432 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005433}
5434
5435static void
5436assemble_free(struct assembler *a)
5437{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005438 Py_XDECREF(a->a_bytecode);
5439 Py_XDECREF(a->a_lnotab);
5440 if (a->a_postorder)
5441 PyObject_Free(a->a_postorder);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005442}
5443
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005444static int
5445blocksize(basicblock *b)
5446{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005447 int i;
5448 int size = 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005449
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005450 for (i = 0; i < b->b_iused; i++)
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005451 size += instrsize(b->b_instr[i].i_oparg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005452 return size;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005453}
5454
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +00005455/* Appends a pair to the end of the line number table, a_lnotab, representing
5456 the instruction's bytecode offset and line number. See
5457 Objects/lnotab_notes.txt for the description of the line number table. */
Tim Peters2a7f3842001-06-09 09:26:21 +00005458
Guido van Rossumf68d8e52001-04-14 17:55:09 +00005459static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005460assemble_lnotab(struct assembler *a, struct instr *i)
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005461{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005462 int d_bytecode, d_lineno;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005463 Py_ssize_t len;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005464 unsigned char *lnotab;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005465
Serhiy Storchakaab874002016-09-11 13:48:15 +03005466 d_bytecode = (a->a_offset - a->a_lineno_off) * sizeof(_Py_CODEUNIT);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005467 d_lineno = i->i_lineno - a->a_lineno;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005469 assert(d_bytecode >= 0);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005470
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005471 if(d_bytecode == 0 && d_lineno == 0)
5472 return 1;
Guido van Rossum4bad92c1991-07-27 21:34:52 +00005473
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005474 if (d_bytecode > 255) {
5475 int j, nbytes, ncodes = d_bytecode / 255;
5476 nbytes = a->a_lnotab_off + 2 * ncodes;
5477 len = PyBytes_GET_SIZE(a->a_lnotab);
5478 if (nbytes >= len) {
5479 if ((len <= INT_MAX / 2) && (len * 2 < nbytes))
5480 len = nbytes;
5481 else if (len <= INT_MAX / 2)
5482 len *= 2;
5483 else {
5484 PyErr_NoMemory();
5485 return 0;
5486 }
5487 if (_PyBytes_Resize(&a->a_lnotab, len) < 0)
5488 return 0;
5489 }
5490 lnotab = (unsigned char *)
5491 PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off;
5492 for (j = 0; j < ncodes; j++) {
5493 *lnotab++ = 255;
5494 *lnotab++ = 0;
5495 }
5496 d_bytecode -= ncodes * 255;
5497 a->a_lnotab_off += ncodes * 2;
5498 }
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005499 assert(0 <= d_bytecode && d_bytecode <= 255);
5500
5501 if (d_lineno < -128 || 127 < d_lineno) {
5502 int j, nbytes, ncodes, k;
5503 if (d_lineno < 0) {
5504 k = -128;
5505 /* use division on positive numbers */
5506 ncodes = (-d_lineno) / 128;
5507 }
5508 else {
5509 k = 127;
5510 ncodes = d_lineno / 127;
5511 }
5512 d_lineno -= ncodes * k;
5513 assert(ncodes >= 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005514 nbytes = a->a_lnotab_off + 2 * ncodes;
5515 len = PyBytes_GET_SIZE(a->a_lnotab);
5516 if (nbytes >= len) {
5517 if ((len <= INT_MAX / 2) && len * 2 < nbytes)
5518 len = nbytes;
5519 else if (len <= INT_MAX / 2)
5520 len *= 2;
5521 else {
5522 PyErr_NoMemory();
5523 return 0;
5524 }
5525 if (_PyBytes_Resize(&a->a_lnotab, len) < 0)
5526 return 0;
5527 }
5528 lnotab = (unsigned char *)
5529 PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off;
5530 *lnotab++ = d_bytecode;
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005531 *lnotab++ = k;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005532 d_bytecode = 0;
5533 for (j = 1; j < ncodes; j++) {
5534 *lnotab++ = 0;
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005535 *lnotab++ = k;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005536 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005537 a->a_lnotab_off += ncodes * 2;
5538 }
Victor Stinnerf3914eb2016-01-20 12:16:21 +01005539 assert(-128 <= d_lineno && d_lineno <= 127);
Guido van Rossum10dc2e81990-11-18 17:27:39 +00005540
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005541 len = PyBytes_GET_SIZE(a->a_lnotab);
5542 if (a->a_lnotab_off + 2 >= len) {
5543 if (_PyBytes_Resize(&a->a_lnotab, len * 2) < 0)
5544 return 0;
5545 }
5546 lnotab = (unsigned char *)
5547 PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off;
Tim Peters51e26512001-09-07 08:45:55 +00005548
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005549 a->a_lnotab_off += 2;
5550 if (d_bytecode) {
5551 *lnotab++ = d_bytecode;
Victor Stinner4f2dab52011-05-27 16:46:51 +02005552 *lnotab++ = d_lineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005553 }
5554 else { /* First line of a block; def stmt, etc. */
5555 *lnotab++ = 0;
Victor Stinner4f2dab52011-05-27 16:46:51 +02005556 *lnotab++ = d_lineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005557 }
5558 a->a_lineno = i->i_lineno;
5559 a->a_lineno_off = a->a_offset;
5560 return 1;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005561}
5562
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005563/* assemble_emit()
5564 Extend the bytecode with a new instruction.
5565 Update lnotab if necessary.
Jeremy Hylton376e63d2003-08-28 14:42:14 +00005566*/
5567
Guido van Rossum4ca6c9d1994-08-29 12:16:12 +00005568static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005569assemble_emit(struct assembler *a, struct instr *i)
Guido van Rossum4ca6c9d1994-08-29 12:16:12 +00005570{
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005571 int size, arg = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005572 Py_ssize_t len = PyBytes_GET_SIZE(a->a_bytecode);
Serhiy Storchakaab874002016-09-11 13:48:15 +03005573 _Py_CODEUNIT *code;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005574
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005575 arg = i->i_oparg;
5576 size = instrsize(arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005577 if (i->i_lineno && !assemble_lnotab(a, i))
5578 return 0;
Serhiy Storchakaab874002016-09-11 13:48:15 +03005579 if (a->a_offset + size >= len / (int)sizeof(_Py_CODEUNIT)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005580 if (len > PY_SSIZE_T_MAX / 2)
5581 return 0;
5582 if (_PyBytes_Resize(&a->a_bytecode, len * 2) < 0)
5583 return 0;
5584 }
Serhiy Storchakaab874002016-09-11 13:48:15 +03005585 code = (_Py_CODEUNIT *)PyBytes_AS_STRING(a->a_bytecode) + a->a_offset;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005586 a->a_offset += size;
Serhiy Storchakaab874002016-09-11 13:48:15 +03005587 write_op_arg(code, i->i_opcode, arg, size);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005588 return 1;
Anthony Baxterc2a5a632004-08-02 06:10:11 +00005589}
5590
Neal Norwitz7d37f2f2005-10-23 22:40:47 +00005591static void
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005592assemble_jump_offsets(struct assembler *a, struct compiler *c)
Anthony Baxterc2a5a632004-08-02 06:10:11 +00005593{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005594 basicblock *b;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005595 int bsize, totsize, extended_arg_recompile;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005596 int i;
Guido van Rossumc5e96291991-12-10 13:53:51 +00005597
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005598 /* Compute the size of each block and fixup jump args.
5599 Replace block pointer with position in bytecode. */
5600 do {
5601 totsize = 0;
5602 for (i = a->a_nblocks - 1; i >= 0; i--) {
5603 b = a->a_postorder[i];
5604 bsize = blocksize(b);
5605 b->b_offset = totsize;
5606 totsize += bsize;
5607 }
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005608 extended_arg_recompile = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005609 for (b = c->u->u_blocks; b != NULL; b = b->b_list) {
5610 bsize = b->b_offset;
5611 for (i = 0; i < b->b_iused; i++) {
5612 struct instr *instr = &b->b_instr[i];
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005613 int isize = instrsize(instr->i_oparg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005614 /* Relative jumps are computed relative to
5615 the instruction pointer after fetching
5616 the jump instruction.
5617 */
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005618 bsize += isize;
5619 if (instr->i_jabs || instr->i_jrel) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005620 instr->i_oparg = instr->i_target->b_offset;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005621 if (instr->i_jrel) {
5622 instr->i_oparg -= bsize;
5623 }
Serhiy Storchakaab874002016-09-11 13:48:15 +03005624 instr->i_oparg *= sizeof(_Py_CODEUNIT);
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005625 if (instrsize(instr->i_oparg) != isize) {
5626 extended_arg_recompile = 1;
5627 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005628 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005629 }
5630 }
Neal Norwitzf1d50682005-10-23 23:00:41 +00005631
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005632 /* XXX: This is an awful hack that could hurt performance, but
5633 on the bright side it should work until we come up
5634 with a better solution.
Neal Norwitzf1d50682005-10-23 23:00:41 +00005635
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005636 The issue is that in the first loop blocksize() is called
5637 which calls instrsize() which requires i_oparg be set
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005638 appropriately. There is a bootstrap problem because
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005639 i_oparg is calculated in the second loop above.
Neal Norwitzf1d50682005-10-23 23:00:41 +00005640
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005641 So we loop until we stop seeing new EXTENDED_ARGs.
5642 The only EXTENDED_ARGs that could be popping up are
5643 ones in jump instructions. So this should converge
5644 fairly quickly.
5645 */
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005646 } while (extended_arg_recompile);
Guido van Rossum10dc2e81990-11-18 17:27:39 +00005647}
5648
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005649static PyObject *
Victor Stinnerad9a0662013-11-19 22:23:20 +01005650dict_keys_inorder(PyObject *dict, Py_ssize_t offset)
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005651{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005652 PyObject *tuple, *k, *v;
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +02005653 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict);
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005654
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005655 tuple = PyTuple_New(size);
5656 if (tuple == NULL)
5657 return NULL;
5658 while (PyDict_Next(dict, &pos, &k, &v)) {
5659 i = PyLong_AS_LONG(v);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005660 Py_INCREF(k);
5661 assert((i - offset) < size);
5662 assert((i - offset) >= 0);
5663 PyTuple_SET_ITEM(tuple, i - offset, k);
5664 }
5665 return tuple;
5666}
5667
5668static PyObject *
5669consts_dict_keys_inorder(PyObject *dict)
5670{
5671 PyObject *consts, *k, *v;
5672 Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict);
5673
5674 consts = PyList_New(size); /* PyCode_Optimize() requires a list */
5675 if (consts == NULL)
5676 return NULL;
5677 while (PyDict_Next(dict, &pos, &k, &v)) {
5678 i = PyLong_AS_LONG(v);
Serhiy Storchakab7e1eff2018-04-19 08:28:04 +03005679 /* The keys of the dictionary can be tuples wrapping a contant.
5680 * (see compiler_add_o and _PyCode_ConstantKey). In that case
5681 * the object we want is always second. */
5682 if (PyTuple_CheckExact(k)) {
5683 k = PyTuple_GET_ITEM(k, 1);
5684 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005685 Py_INCREF(k);
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005686 assert(i < size);
5687 assert(i >= 0);
5688 PyList_SET_ITEM(consts, i, k);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005689 }
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005690 return consts;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005691}
5692
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005693static int
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005694compute_code_flags(struct compiler *c)
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005695{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005696 PySTEntryObject *ste = c->u->u_ste;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005697 int flags = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005698 if (ste->ste_type == FunctionBlock) {
Benjamin Peterson1dfd2472015-04-27 21:44:22 -04005699 flags |= CO_NEWLOCALS | CO_OPTIMIZED;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005700 if (ste->ste_nested)
5701 flags |= CO_NESTED;
Yury Selivanoveb636452016-09-08 22:01:51 -07005702 if (ste->ste_generator && !ste->ste_coroutine)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005703 flags |= CO_GENERATOR;
Yury Selivanoveb636452016-09-08 22:01:51 -07005704 if (!ste->ste_generator && ste->ste_coroutine)
5705 flags |= CO_COROUTINE;
5706 if (ste->ste_generator && ste->ste_coroutine)
5707 flags |= CO_ASYNC_GENERATOR;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005708 if (ste->ste_varargs)
5709 flags |= CO_VARARGS;
5710 if (ste->ste_varkeywords)
5711 flags |= CO_VARKEYWORDS;
5712 }
Thomas Wouters5e9f1fa2006-02-28 20:02:27 +00005713
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005714 /* (Only) inherit compilerflags in PyCF_MASK */
5715 flags |= (c->c_flags->cf_flags & PyCF_MASK);
Thomas Wouters5e9f1fa2006-02-28 20:02:27 +00005716
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005717 return flags;
Jeremy Hylton29906ee2001-02-27 04:23:34 +00005718}
5719
INADA Naokic2e16072018-11-26 21:23:22 +09005720// Merge *tuple* with constant cache.
5721// Unlike merge_consts_recursive(), this function doesn't work recursively.
5722static int
5723merge_const_tuple(struct compiler *c, PyObject **tuple)
5724{
5725 assert(PyTuple_CheckExact(*tuple));
5726
5727 PyObject *key = _PyCode_ConstantKey(*tuple);
5728 if (key == NULL) {
5729 return 0;
5730 }
5731
5732 // t is borrowed reference
5733 PyObject *t = PyDict_SetDefault(c->c_const_cache, key, key);
5734 Py_DECREF(key);
5735 if (t == NULL) {
5736 return 0;
5737 }
5738 if (t == key) { // tuple is new constant.
5739 return 1;
5740 }
5741
5742 PyObject *u = PyTuple_GET_ITEM(t, 1);
5743 Py_INCREF(u);
5744 Py_DECREF(*tuple);
5745 *tuple = u;
5746 return 1;
5747}
5748
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005749static PyCodeObject *
5750makecode(struct compiler *c, struct assembler *a)
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005751{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005752 PyObject *tmp;
5753 PyCodeObject *co = NULL;
5754 PyObject *consts = NULL;
5755 PyObject *names = NULL;
5756 PyObject *varnames = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005757 PyObject *name = NULL;
5758 PyObject *freevars = NULL;
5759 PyObject *cellvars = NULL;
5760 PyObject *bytecode = NULL;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005761 Py_ssize_t nlocals;
5762 int nlocals_int;
5763 int flags;
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01005764 int argcount, posonlyargcount, kwonlyargcount, maxdepth;
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005765
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005766 consts = consts_dict_keys_inorder(c->u->u_consts);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005767 names = dict_keys_inorder(c->u->u_names, 0);
5768 varnames = dict_keys_inorder(c->u->u_varnames, 0);
5769 if (!consts || !names || !varnames)
5770 goto error;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005771
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005772 cellvars = dict_keys_inorder(c->u->u_cellvars, 0);
5773 if (!cellvars)
5774 goto error;
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005775 freevars = dict_keys_inorder(c->u->u_freevars, PyTuple_GET_SIZE(cellvars));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005776 if (!freevars)
5777 goto error;
Victor Stinnerad9a0662013-11-19 22:23:20 +01005778
INADA Naokic2e16072018-11-26 21:23:22 +09005779 if (!merge_const_tuple(c, &names) ||
5780 !merge_const_tuple(c, &varnames) ||
5781 !merge_const_tuple(c, &cellvars) ||
5782 !merge_const_tuple(c, &freevars))
5783 {
5784 goto error;
5785 }
5786
Serhiy Storchaka5ab81d72016-12-16 16:18:57 +02005787 nlocals = PyDict_GET_SIZE(c->u->u_varnames);
Victor Stinnerad9a0662013-11-19 22:23:20 +01005788 assert(nlocals < INT_MAX);
5789 nlocals_int = Py_SAFE_DOWNCAST(nlocals, Py_ssize_t, int);
5790
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005791 flags = compute_code_flags(c);
5792 if (flags < 0)
5793 goto error;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005794
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005795 bytecode = PyCode_Optimize(a->a_bytecode, consts, names, a->a_lnotab);
5796 if (!bytecode)
5797 goto error;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005798
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005799 tmp = PyList_AsTuple(consts); /* PyCode_New requires a tuple */
5800 if (!tmp)
5801 goto error;
5802 Py_DECREF(consts);
5803 consts = tmp;
INADA Naokic2e16072018-11-26 21:23:22 +09005804 if (!merge_const_tuple(c, &consts)) {
5805 goto error;
5806 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005807
Victor Stinnerf8e32212013-11-19 23:56:34 +01005808 argcount = Py_SAFE_DOWNCAST(c->u->u_argcount, Py_ssize_t, int);
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01005809 posonlyargcount = Py_SAFE_DOWNCAST(c->u->u_posonlyargcount, Py_ssize_t, int);
Victor Stinnerf8e32212013-11-19 23:56:34 +01005810 kwonlyargcount = Py_SAFE_DOWNCAST(c->u->u_kwonlyargcount, Py_ssize_t, int);
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005811 maxdepth = stackdepth(c);
5812 if (maxdepth < 0) {
5813 goto error;
5814 }
Pablo Galindo8c77b8c2019-04-29 13:36:57 +01005815 co = PyCode_New(argcount, posonlyargcount, kwonlyargcount,
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005816 nlocals_int, maxdepth, flags,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005817 bytecode, consts, names, varnames,
5818 freevars, cellvars,
Victor Stinner14e461d2013-08-26 22:28:21 +02005819 c->c_filename, c->u->u_name,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005820 c->u->u_firstlineno,
5821 a->a_lnotab);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005822 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005823 Py_XDECREF(consts);
5824 Py_XDECREF(names);
5825 Py_XDECREF(varnames);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005826 Py_XDECREF(name);
5827 Py_XDECREF(freevars);
5828 Py_XDECREF(cellvars);
5829 Py_XDECREF(bytecode);
5830 return co;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005831}
5832
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005833
5834/* For debugging purposes only */
5835#if 0
5836static void
5837dump_instr(const struct instr *i)
5838{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005839 const char *jrel = i->i_jrel ? "jrel " : "";
5840 const char *jabs = i->i_jabs ? "jabs " : "";
5841 char arg[128];
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005842
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005843 *arg = '\0';
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005844 if (HAS_ARG(i->i_opcode)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005845 sprintf(arg, "arg: %d ", i->i_oparg);
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03005846 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005847 fprintf(stderr, "line: %d, opcode: %d %s%s%s\n",
5848 i->i_lineno, i->i_opcode, arg, jabs, jrel);
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005849}
5850
5851static void
5852dump_basicblock(const basicblock *b)
5853{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005854 const char *seen = b->b_seen ? "seen " : "";
5855 const char *b_return = b->b_return ? "return " : "";
5856 fprintf(stderr, "used: %d, depth: %d, offset: %d %s%s\n",
5857 b->b_iused, b->b_startdepth, b->b_offset, seen, b_return);
5858 if (b->b_instr) {
5859 int i;
5860 for (i = 0; i < b->b_iused; i++) {
5861 fprintf(stderr, " [%02d] ", i);
5862 dump_instr(b->b_instr + i);
5863 }
5864 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005865}
5866#endif
5867
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005868static PyCodeObject *
5869assemble(struct compiler *c, int addNone)
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005870{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005871 basicblock *b, *entryblock;
5872 struct assembler a;
5873 int i, j, nblocks;
5874 PyCodeObject *co = NULL;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00005875
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005876 /* Make sure every block that falls off the end returns None.
5877 XXX NEXT_BLOCK() isn't quite right, because if the last
5878 block ends with a jump or return b_next shouldn't set.
5879 */
5880 if (!c->u->u_curblock->b_return) {
5881 NEXT_BLOCK(c);
5882 if (addNone)
Serhiy Storchakad70c2a62018-04-20 16:01:25 +03005883 ADDOP_LOAD_CONST(c, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005884 ADDOP(c, RETURN_VALUE);
5885 }
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005886
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005887 nblocks = 0;
5888 entryblock = NULL;
5889 for (b = c->u->u_blocks; b != NULL; b = b->b_list) {
5890 nblocks++;
5891 entryblock = b;
5892 }
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005893
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005894 /* Set firstlineno if it wasn't explicitly set. */
5895 if (!c->u->u_firstlineno) {
Ned Deilydc35cda2016-08-17 17:18:33 -04005896 if (entryblock && entryblock->b_instr && entryblock->b_instr->i_lineno)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005897 c->u->u_firstlineno = entryblock->b_instr->i_lineno;
5898 else
5899 c->u->u_firstlineno = 1;
5900 }
5901 if (!assemble_init(&a, nblocks, c->u->u_firstlineno))
5902 goto error;
Serhiy Storchaka782d6fe2018-01-11 20:20:13 +02005903 dfs(c, entryblock, &a, nblocks);
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005904
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005905 /* Can't modify the bytecode after computing jump offsets. */
5906 assemble_jump_offsets(&a, c);
Tim Petersb6c3cea2001-06-26 03:36:28 +00005907
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005908 /* Emit code in reverse postorder from dfs. */
5909 for (i = a.a_nblocks - 1; i >= 0; i--) {
5910 b = a.a_postorder[i];
5911 for (j = 0; j < b->b_iused; j++)
5912 if (!assemble_emit(&a, &b->b_instr[j]))
5913 goto error;
5914 }
Tim Petersb6c3cea2001-06-26 03:36:28 +00005915
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005916 if (_PyBytes_Resize(&a.a_lnotab, a.a_lnotab_off) < 0)
5917 goto error;
Serhiy Storchakaab874002016-09-11 13:48:15 +03005918 if (_PyBytes_Resize(&a.a_bytecode, a.a_offset * sizeof(_Py_CODEUNIT)) < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005919 goto error;
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005920
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005921 co = makecode(c, &a);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005922 error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005923 assemble_free(&a);
5924 return co;
Jeremy Hyltone36f7782001-01-19 03:21:30 +00005925}
Georg Brandl8334fd92010-12-04 10:26:46 +00005926
5927#undef PyAST_Compile
Benjamin Petersone5024512018-09-12 12:06:42 -07005928PyCodeObject *
Georg Brandl8334fd92010-12-04 10:26:46 +00005929PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags,
5930 PyArena *arena)
5931{
5932 return PyAST_CompileEx(mod, filename, flags, -1, arena);
5933}