Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1 | /* |
| 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 Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 8 | * 2. Builds a symbol table. See symtable.c. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 9 | * 3. Generate code for basic blocks. See compiler_mod() in this file. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 10 | * 4. Assemble the basic blocks into final code. See assemble() in |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 11 | * this file. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 12 | * 5. Optimize the byte code (peephole optimizations). See peephole.c |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 13 | * |
| 14 | * Note that compiler_mod() suggests module, but the module ast type |
| 15 | * (mod_ty) has cases for expressions and interactive statements. |
Nick Coghlan | 944d3eb | 2005-11-16 12:46:55 +0000 | [diff] [blame] | 16 | * |
Jeremy Hylton | e9357b2 | 2006-03-01 15:47:05 +0000 | [diff] [blame] | 17 | * 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 Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 20 | * structure takes care of releasing those. Use the arena to manage |
| 21 | * objects. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 22 | */ |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 23 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 24 | #include "Python.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 25 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 26 | #include "Python-ast.h" |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 27 | #include "ast.h" |
| 28 | #include "code.h" |
Jeremy Hylton | 4b38da6 | 2001-02-02 18:19:15 +0000 | [diff] [blame] | 29 | #include "symtable.h" |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 30 | #include "opcode.h" |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 31 | #include "wordcode_helpers.h" |
Guido van Rossum | b05a5c7 | 1997-05-07 17:46:13 +0000 | [diff] [blame] | 32 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 33 | #define DEFAULT_BLOCK_SIZE 16 |
| 34 | #define DEFAULT_BLOCKS 8 |
| 35 | #define DEFAULT_CODE_SIZE 128 |
| 36 | #define DEFAULT_LNOTAB_SIZE 16 |
Jeremy Hylton | 29906ee | 2001-02-27 04:23:34 +0000 | [diff] [blame] | 37 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 38 | #define COMP_GENEXP 0 |
| 39 | #define COMP_LISTCOMP 1 |
| 40 | #define COMP_SETCOMP 2 |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 41 | #define COMP_DICTCOMP 3 |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 42 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 43 | struct instr { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 44 | unsigned i_jabs : 1; |
| 45 | unsigned i_jrel : 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 46 | unsigned char i_opcode; |
| 47 | int i_oparg; |
| 48 | struct basicblock_ *i_target; /* target block (if jump instruction) */ |
| 49 | int i_lineno; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 52 | typedef struct basicblock_ { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 53 | /* Each basicblock in a compilation unit is linked via b_list in the |
| 54 | reverse order that the block are allocated. b_list points to the next |
| 55 | block, not to be confused with b_next, which is next by control flow. */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 56 | struct basicblock_ *b_list; |
| 57 | /* number of instructions used */ |
| 58 | int b_iused; |
| 59 | /* length of instruction array (b_instr) */ |
| 60 | int b_ialloc; |
| 61 | /* pointer to an array of instructions, initially NULL */ |
| 62 | struct instr *b_instr; |
| 63 | /* If b_next is non-NULL, it is a pointer to the next |
| 64 | block reached by normal control flow. */ |
| 65 | struct basicblock_ *b_next; |
| 66 | /* b_seen is used to perform a DFS of basicblocks. */ |
| 67 | unsigned b_seen : 1; |
| 68 | /* b_return is true if a RETURN_VALUE opcode is inserted. */ |
| 69 | unsigned b_return : 1; |
| 70 | /* depth of stack upon entry of block, computed by stackdepth() */ |
| 71 | int b_startdepth; |
| 72 | /* instruction offset for block, computed by assemble_jump_offsets() */ |
| 73 | int b_offset; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 74 | } basicblock; |
| 75 | |
| 76 | /* fblockinfo tracks the current frame block. |
| 77 | |
Jeremy Hylton | e9357b2 | 2006-03-01 15:47:05 +0000 | [diff] [blame] | 78 | A frame block is used to handle loops, try/except, and try/finally. |
| 79 | It's called a frame block to distinguish it from a basic block in the |
| 80 | compiler IR. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 81 | */ |
| 82 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 83 | enum fblocktype { WHILE_LOOP, FOR_LOOP, EXCEPT, FINALLY_TRY, FINALLY_END, |
| 84 | WITH, ASYNC_WITH, HANDLER_CLEANUP }; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 85 | |
| 86 | struct fblockinfo { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 87 | enum fblocktype fb_type; |
| 88 | basicblock *fb_block; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 89 | /* (optional) type-specific exit or cleanup block */ |
| 90 | basicblock *fb_exit; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 91 | }; |
| 92 | |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 93 | enum { |
| 94 | COMPILER_SCOPE_MODULE, |
| 95 | COMPILER_SCOPE_CLASS, |
| 96 | COMPILER_SCOPE_FUNCTION, |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 97 | COMPILER_SCOPE_ASYNC_FUNCTION, |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 98 | COMPILER_SCOPE_LAMBDA, |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 99 | COMPILER_SCOPE_COMPREHENSION, |
| 100 | }; |
| 101 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 102 | /* The following items change on entry and exit of code blocks. |
| 103 | They must be saved and restored when returning to a block. |
| 104 | */ |
| 105 | struct compiler_unit { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 106 | PySTEntryObject *u_ste; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 107 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 108 | PyObject *u_name; |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 109 | PyObject *u_qualname; /* dot-separated qualified name (lazy) */ |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 110 | int u_scope_type; |
| 111 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 112 | /* The following fields are dicts that map objects to |
| 113 | the index of them in co_XXX. The index is used as |
| 114 | the argument for opcodes that refer to those collections. |
| 115 | */ |
| 116 | PyObject *u_consts; /* all constants */ |
| 117 | PyObject *u_names; /* all names */ |
| 118 | PyObject *u_varnames; /* local variables */ |
| 119 | PyObject *u_cellvars; /* cell variables */ |
| 120 | PyObject *u_freevars; /* free variables */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 121 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 122 | PyObject *u_private; /* for private name mangling */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 123 | |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 124 | Py_ssize_t u_argcount; /* number of arguments for block */ |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 125 | Py_ssize_t u_posonlyargcount; /* number of positional only arguments for block */ |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 126 | Py_ssize_t u_kwonlyargcount; /* number of keyword only arguments for block */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 127 | /* Pointer to the most recently allocated block. By following b_list |
| 128 | members, you can reach all early allocated blocks. */ |
| 129 | basicblock *u_blocks; |
| 130 | basicblock *u_curblock; /* pointer to current block */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 131 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 132 | int u_nfblocks; |
| 133 | struct fblockinfo u_fblock[CO_MAXBLOCKS]; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 134 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 135 | int u_firstlineno; /* the first lineno of the block */ |
| 136 | int u_lineno; /* the lineno for the current stmt */ |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 137 | int u_col_offset; /* the offset of the current stmt */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 138 | int u_lineno_set; /* boolean to indicate whether instr |
| 139 | has been generated with current lineno */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 140 | }; |
| 141 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 142 | /* This struct captures the global state of a compilation. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 143 | |
Jeremy Hylton | e9357b2 | 2006-03-01 15:47:05 +0000 | [diff] [blame] | 144 | The u pointer points to the current compilation unit, while units |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 145 | for enclosing blocks are stored in c_stack. The u and c_stack are |
Jeremy Hylton | e9357b2 | 2006-03-01 15:47:05 +0000 | [diff] [blame] | 146 | managed by compiler_enter_scope() and compiler_exit_scope(). |
Nick Coghlan | aab9c2b | 2012-11-04 23:14:34 +1000 | [diff] [blame] | 147 | |
| 148 | Note that we don't track recursion levels during compilation - the |
| 149 | task of detecting and rejecting excessive levels of nesting is |
| 150 | handled by the symbol analysis pass. |
| 151 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 152 | */ |
| 153 | |
| 154 | struct compiler { |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 155 | PyObject *c_filename; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 156 | struct symtable *c_st; |
| 157 | PyFutureFeatures *c_future; /* pointer to module's __future__ */ |
| 158 | PyCompilerFlags *c_flags; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 159 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 160 | int c_optimize; /* optimization level */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 161 | int c_interactive; /* true if in interactive mode */ |
| 162 | int c_nestlevel; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 163 | |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 164 | PyObject *c_const_cache; /* Python dict holding all constants, |
| 165 | including names tuple */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 166 | struct compiler_unit *u; /* compiler state for current block */ |
| 167 | PyObject *c_stack; /* Python list holding compiler_unit ptrs */ |
| 168 | PyArena *c_arena; /* pointer to memory allocation arena */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 169 | }; |
| 170 | |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 171 | static int compiler_enter_scope(struct compiler *, identifier, int, void *, int); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 172 | static void compiler_free(struct compiler *); |
| 173 | static basicblock *compiler_new_block(struct compiler *); |
| 174 | static int compiler_next_instr(struct compiler *, basicblock *); |
| 175 | static int compiler_addop(struct compiler *, int); |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 176 | static int compiler_addop_i(struct compiler *, int, Py_ssize_t); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 177 | static int compiler_addop_j(struct compiler *, int, basicblock *, int); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 178 | static int compiler_error(struct compiler *, const char *); |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 179 | static int compiler_warn(struct compiler *, const char *, ...); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 180 | static int compiler_nameop(struct compiler *, identifier, expr_context_ty); |
| 181 | |
| 182 | static PyCodeObject *compiler_mod(struct compiler *, mod_ty); |
| 183 | static int compiler_visit_stmt(struct compiler *, stmt_ty); |
| 184 | static int compiler_visit_keyword(struct compiler *, keyword_ty); |
| 185 | static int compiler_visit_expr(struct compiler *, expr_ty); |
| 186 | static int compiler_augassign(struct compiler *, stmt_ty); |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 187 | static int compiler_annassign(struct compiler *, stmt_ty); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 188 | static int compiler_visit_slice(struct compiler *, slice_ty, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 189 | expr_context_ty); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 190 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 191 | static int inplace_binop(struct compiler *, operator_ty); |
Serhiy Storchaka | 3dfbaf5 | 2017-12-25 12:47:50 +0200 | [diff] [blame] | 192 | static int expr_constant(expr_ty); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 193 | |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 194 | static int compiler_with(struct compiler *, stmt_ty, int); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 195 | static int compiler_async_with(struct compiler *, stmt_ty, int); |
| 196 | static int compiler_async_for(struct compiler *, stmt_ty); |
Victor Stinner | 976bb40 | 2016-03-23 11:36:19 +0100 | [diff] [blame] | 197 | static int compiler_call_helper(struct compiler *c, int n, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 198 | asdl_seq *args, |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 199 | asdl_seq *keywords); |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 200 | static int compiler_try_except(struct compiler *, stmt_ty); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 201 | static int compiler_set_qualname(struct compiler *); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 202 | |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 203 | static int compiler_sync_comprehension_generator( |
| 204 | struct compiler *c, |
| 205 | asdl_seq *generators, int gen_index, |
| 206 | expr_ty elt, expr_ty val, int type); |
| 207 | |
| 208 | static int compiler_async_comprehension_generator( |
| 209 | struct compiler *c, |
| 210 | asdl_seq *generators, int gen_index, |
| 211 | expr_ty elt, expr_ty val, int type); |
| 212 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 213 | static PyCodeObject *assemble(struct compiler *, int addNone); |
Mark Shannon | 332cd5e | 2018-01-30 00:41:04 +0000 | [diff] [blame] | 214 | static PyObject *__doc__, *__annotations__; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 215 | |
Benjamin Peterson | 9e77f72 | 2015-05-07 18:41:47 -0400 | [diff] [blame] | 216 | #define CAPSULE_NAME "compile.c compiler unit" |
Benjamin Peterson | b173f78 | 2009-05-05 22:31:58 +0000 | [diff] [blame] | 217 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 218 | PyObject * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 219 | _Py_Mangle(PyObject *privateobj, PyObject *ident) |
Michael W. Hudson | 6093462 | 2004-08-12 17:56:29 +0000 | [diff] [blame] | 220 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 221 | /* Name mangling: __private becomes _classname__private. |
| 222 | This is independent from how the name is used. */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 223 | PyObject *result; |
| 224 | size_t nlen, plen, ipriv; |
| 225 | Py_UCS4 maxchar; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 226 | if (privateobj == NULL || !PyUnicode_Check(privateobj) || |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 227 | PyUnicode_READ_CHAR(ident, 0) != '_' || |
| 228 | PyUnicode_READ_CHAR(ident, 1) != '_') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 229 | Py_INCREF(ident); |
| 230 | return ident; |
| 231 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 232 | nlen = PyUnicode_GET_LENGTH(ident); |
| 233 | plen = PyUnicode_GET_LENGTH(privateobj); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 234 | /* Don't mangle __id__ or names with dots. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 235 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 236 | The only time a name with a dot can occur is when |
| 237 | we are compiling an import statement that has a |
| 238 | package name. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 239 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 240 | TODO(jhylton): Decide whether we want to support |
| 241 | mangling of the module name, e.g. __M.X. |
| 242 | */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 243 | if ((PyUnicode_READ_CHAR(ident, nlen-1) == '_' && |
| 244 | PyUnicode_READ_CHAR(ident, nlen-2) == '_') || |
| 245 | PyUnicode_FindChar(ident, '.', 0, nlen, 1) != -1) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 246 | Py_INCREF(ident); |
| 247 | return ident; /* Don't mangle __whatever__ */ |
| 248 | } |
| 249 | /* Strip leading underscores from class name */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 250 | ipriv = 0; |
| 251 | while (PyUnicode_READ_CHAR(privateobj, ipriv) == '_') |
| 252 | ipriv++; |
| 253 | if (ipriv == plen) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 254 | Py_INCREF(ident); |
| 255 | return ident; /* Don't mangle if class is just underscores */ |
| 256 | } |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 257 | plen -= ipriv; |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 258 | |
Antoine Pitrou | 55bff89 | 2013-04-06 21:21:04 +0200 | [diff] [blame] | 259 | if (plen + nlen >= PY_SSIZE_T_MAX - 1) { |
| 260 | PyErr_SetString(PyExc_OverflowError, |
| 261 | "private identifier too large to be mangled"); |
| 262 | return NULL; |
| 263 | } |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 264 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 265 | maxchar = PyUnicode_MAX_CHAR_VALUE(ident); |
| 266 | if (PyUnicode_MAX_CHAR_VALUE(privateobj) > maxchar) |
| 267 | maxchar = PyUnicode_MAX_CHAR_VALUE(privateobj); |
| 268 | |
| 269 | result = PyUnicode_New(1 + nlen + plen, maxchar); |
| 270 | if (!result) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 271 | return 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 272 | /* ident = "_" + priv[ipriv:] + ident # i.e. 1+plen+nlen bytes */ |
| 273 | PyUnicode_WRITE(PyUnicode_KIND(result), PyUnicode_DATA(result), 0, '_'); |
Victor Stinner | 6c7a52a | 2011-09-28 21:39:17 +0200 | [diff] [blame] | 274 | if (PyUnicode_CopyCharacters(result, 1, privateobj, ipriv, plen) < 0) { |
| 275 | Py_DECREF(result); |
| 276 | return NULL; |
| 277 | } |
| 278 | if (PyUnicode_CopyCharacters(result, plen+1, ident, 0, nlen) < 0) { |
| 279 | Py_DECREF(result); |
| 280 | return NULL; |
| 281 | } |
Victor Stinner | 8f82506 | 2012-04-27 13:55:39 +0200 | [diff] [blame] | 282 | assert(_PyUnicode_CheckConsistency(result, 1)); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 283 | return result; |
Michael W. Hudson | 6093462 | 2004-08-12 17:56:29 +0000 | [diff] [blame] | 284 | } |
| 285 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 286 | static int |
| 287 | compiler_init(struct compiler *c) |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 288 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 289 | memset(c, 0, sizeof(struct compiler)); |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 290 | |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 291 | c->c_const_cache = PyDict_New(); |
| 292 | if (!c->c_const_cache) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 293 | return 0; |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | c->c_stack = PyList_New(0); |
| 297 | if (!c->c_stack) { |
| 298 | Py_CLEAR(c->c_const_cache); |
| 299 | return 0; |
| 300 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 301 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 302 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | PyCodeObject * |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 306 | PyAST_CompileObject(mod_ty mod, PyObject *filename, PyCompilerFlags *flags, |
| 307 | int optimize, PyArena *arena) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 308 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 309 | struct compiler c; |
| 310 | PyCodeObject *co = NULL; |
| 311 | PyCompilerFlags local_flags; |
| 312 | int merged; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 313 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 314 | if (!__doc__) { |
| 315 | __doc__ = PyUnicode_InternFromString("__doc__"); |
| 316 | if (!__doc__) |
| 317 | return NULL; |
| 318 | } |
Mark Shannon | 332cd5e | 2018-01-30 00:41:04 +0000 | [diff] [blame] | 319 | if (!__annotations__) { |
| 320 | __annotations__ = PyUnicode_InternFromString("__annotations__"); |
| 321 | if (!__annotations__) |
| 322 | return NULL; |
| 323 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 324 | if (!compiler_init(&c)) |
| 325 | return NULL; |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 326 | Py_INCREF(filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 327 | c.c_filename = filename; |
| 328 | c.c_arena = arena; |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 329 | c.c_future = PyFuture_FromASTObject(mod, filename); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 330 | if (c.c_future == NULL) |
| 331 | goto finally; |
| 332 | if (!flags) { |
| 333 | local_flags.cf_flags = 0; |
Guido van Rossum | 495da29 | 2019-03-07 12:38:08 -0800 | [diff] [blame] | 334 | local_flags.cf_feature_version = PY_MINOR_VERSION; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 335 | flags = &local_flags; |
| 336 | } |
| 337 | merged = c.c_future->ff_features | flags->cf_flags; |
| 338 | c.c_future->ff_features = merged; |
| 339 | flags->cf_flags = merged; |
| 340 | c.c_flags = flags; |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 341 | c.c_optimize = (optimize == -1) ? Py_OptimizeFlag : optimize; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 342 | c.c_nestlevel = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 343 | |
Serhiy Storchaka | 3dfbaf5 | 2017-12-25 12:47:50 +0200 | [diff] [blame] | 344 | if (!_PyAST_Optimize(mod, arena, c.c_optimize)) { |
INADA Naoki | 7ea143a | 2017-12-14 16:47:20 +0900 | [diff] [blame] | 345 | goto finally; |
| 346 | } |
| 347 | |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 348 | c.c_st = PySymtable_BuildObject(mod, filename, c.c_future); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 349 | if (c.c_st == NULL) { |
| 350 | if (!PyErr_Occurred()) |
| 351 | PyErr_SetString(PyExc_SystemError, "no symtable"); |
| 352 | goto finally; |
| 353 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 354 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 355 | co = compiler_mod(&c, mod); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 356 | |
Thomas Wouters | 1175c43 | 2006-02-27 22:49:54 +0000 | [diff] [blame] | 357 | finally: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 358 | compiler_free(&c); |
| 359 | assert(co || PyErr_Occurred()); |
| 360 | return co; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | PyCodeObject * |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 364 | PyAST_CompileEx(mod_ty mod, const char *filename_str, PyCompilerFlags *flags, |
| 365 | int optimize, PyArena *arena) |
| 366 | { |
| 367 | PyObject *filename; |
| 368 | PyCodeObject *co; |
| 369 | filename = PyUnicode_DecodeFSDefault(filename_str); |
| 370 | if (filename == NULL) |
| 371 | return NULL; |
| 372 | co = PyAST_CompileObject(mod, filename, flags, optimize, arena); |
| 373 | Py_DECREF(filename); |
| 374 | return co; |
| 375 | |
| 376 | } |
| 377 | |
| 378 | PyCodeObject * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 379 | PyNode_Compile(struct _node *n, const char *filename) |
| 380 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 381 | PyCodeObject *co = NULL; |
| 382 | mod_ty mod; |
| 383 | PyArena *arena = PyArena_New(); |
| 384 | if (!arena) |
| 385 | return NULL; |
| 386 | mod = PyAST_FromNode(n, NULL, filename, arena); |
| 387 | if (mod) |
| 388 | co = PyAST_Compile(mod, filename, NULL, arena); |
| 389 | PyArena_Free(arena); |
| 390 | return co; |
Guido van Rossum | bea18cc | 2002-06-14 20:41:17 +0000 | [diff] [blame] | 391 | } |
| 392 | |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 393 | static void |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 394 | compiler_free(struct compiler *c) |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 395 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 396 | if (c->c_st) |
| 397 | PySymtable_Free(c->c_st); |
| 398 | if (c->c_future) |
| 399 | PyObject_Free(c->c_future); |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 400 | Py_XDECREF(c->c_filename); |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 401 | Py_DECREF(c->c_const_cache); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 402 | Py_DECREF(c->c_stack); |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Guido van Rossum | 79f25d9 | 1997-04-29 20:08:16 +0000 | [diff] [blame] | 405 | static PyObject * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 406 | list2dict(PyObject *list) |
Guido van Rossum | 2dff991 | 1992-09-03 20:50:59 +0000 | [diff] [blame] | 407 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 408 | Py_ssize_t i, n; |
| 409 | PyObject *v, *k; |
| 410 | PyObject *dict = PyDict_New(); |
| 411 | if (!dict) return NULL; |
Guido van Rossum | d076c73 | 1998-10-07 19:42:25 +0000 | [diff] [blame] | 412 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 413 | n = PyList_Size(list); |
| 414 | for (i = 0; i < n; i++) { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 415 | v = PyLong_FromSsize_t(i); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 416 | if (!v) { |
| 417 | Py_DECREF(dict); |
| 418 | return NULL; |
| 419 | } |
| 420 | k = PyList_GET_ITEM(list, i); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 421 | if (PyDict_SetItem(dict, k, v) < 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 422 | Py_DECREF(v); |
| 423 | Py_DECREF(dict); |
| 424 | return NULL; |
| 425 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 426 | Py_DECREF(v); |
| 427 | } |
| 428 | return dict; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 429 | } |
| 430 | |
| 431 | /* Return new dict containing names from src that match scope(s). |
| 432 | |
Jeremy Hylton | e9357b2 | 2006-03-01 15:47:05 +0000 | [diff] [blame] | 433 | src is a symbol table dictionary. If the scope of a name matches |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 434 | either scope_type or flag is set, insert it into the new dict. The |
Jeremy Hylton | e9357b2 | 2006-03-01 15:47:05 +0000 | [diff] [blame] | 435 | values are integers, starting at offset and increasing by one for |
| 436 | each key. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 437 | */ |
| 438 | |
| 439 | static PyObject * |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 440 | dictbytype(PyObject *src, int scope_type, int flag, Py_ssize_t offset) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 441 | { |
Benjamin Peterson | 51ab283 | 2012-07-18 15:12:47 -0700 | [diff] [blame] | 442 | Py_ssize_t i = offset, scope, num_keys, key_i; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 443 | PyObject *k, *v, *dest = PyDict_New(); |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 444 | PyObject *sorted_keys; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 445 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | assert(offset >= 0); |
| 447 | if (dest == NULL) |
| 448 | return NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 449 | |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 450 | /* Sort the keys so that we have a deterministic order on the indexes |
| 451 | saved in the returned dictionary. These indexes are used as indexes |
| 452 | into the free and cell var storage. Therefore if they aren't |
| 453 | deterministic, then the generated bytecode is not deterministic. |
| 454 | */ |
| 455 | sorted_keys = PyDict_Keys(src); |
| 456 | if (sorted_keys == NULL) |
| 457 | return NULL; |
| 458 | if (PyList_Sort(sorted_keys) != 0) { |
| 459 | Py_DECREF(sorted_keys); |
| 460 | return NULL; |
| 461 | } |
Meador Inge | f69e24e | 2012-07-18 16:41:03 -0500 | [diff] [blame] | 462 | num_keys = PyList_GET_SIZE(sorted_keys); |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 463 | |
| 464 | for (key_i = 0; key_i < num_keys; key_i++) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 465 | /* XXX this should probably be a macro in symtable.h */ |
| 466 | long vi; |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 467 | k = PyList_GET_ITEM(sorted_keys, key_i); |
| 468 | v = PyDict_GetItem(src, k); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 469 | assert(PyLong_Check(v)); |
| 470 | vi = PyLong_AS_LONG(v); |
| 471 | scope = (vi >> SCOPE_OFFSET) & SCOPE_MASK; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 472 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 473 | if (scope == scope_type || vi & flag) { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 474 | PyObject *item = PyLong_FromSsize_t(i); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 475 | if (item == NULL) { |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 476 | Py_DECREF(sorted_keys); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 477 | Py_DECREF(dest); |
| 478 | return NULL; |
| 479 | } |
| 480 | i++; |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 481 | if (PyDict_SetItem(dest, k, item) < 0) { |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 482 | Py_DECREF(sorted_keys); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 483 | Py_DECREF(item); |
| 484 | Py_DECREF(dest); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 485 | return NULL; |
| 486 | } |
| 487 | Py_DECREF(item); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 488 | } |
| 489 | } |
Meador Inge | 2ca6315 | 2012-07-18 14:20:11 -0500 | [diff] [blame] | 490 | Py_DECREF(sorted_keys); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 491 | return dest; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 492 | } |
| 493 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 494 | static void |
| 495 | compiler_unit_check(struct compiler_unit *u) |
| 496 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 497 | basicblock *block; |
| 498 | for (block = u->u_blocks; block != NULL; block = block->b_list) { |
Benjamin Peterson | ca47063 | 2016-09-06 13:47:26 -0700 | [diff] [blame] | 499 | assert((uintptr_t)block != 0xcbcbcbcbU); |
| 500 | assert((uintptr_t)block != 0xfbfbfbfbU); |
| 501 | assert((uintptr_t)block != 0xdbdbdbdbU); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 502 | if (block->b_instr != NULL) { |
| 503 | assert(block->b_ialloc > 0); |
| 504 | assert(block->b_iused > 0); |
| 505 | assert(block->b_ialloc >= block->b_iused); |
| 506 | } |
| 507 | else { |
| 508 | assert (block->b_iused == 0); |
| 509 | assert (block->b_ialloc == 0); |
| 510 | } |
| 511 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | static void |
| 515 | compiler_unit_free(struct compiler_unit *u) |
| 516 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 517 | basicblock *b, *next; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 518 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 519 | compiler_unit_check(u); |
| 520 | b = u->u_blocks; |
| 521 | while (b != NULL) { |
| 522 | if (b->b_instr) |
| 523 | PyObject_Free((void *)b->b_instr); |
| 524 | next = b->b_list; |
| 525 | PyObject_Free((void *)b); |
| 526 | b = next; |
| 527 | } |
| 528 | Py_CLEAR(u->u_ste); |
| 529 | Py_CLEAR(u->u_name); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 530 | Py_CLEAR(u->u_qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 531 | Py_CLEAR(u->u_consts); |
| 532 | Py_CLEAR(u->u_names); |
| 533 | Py_CLEAR(u->u_varnames); |
| 534 | Py_CLEAR(u->u_freevars); |
| 535 | Py_CLEAR(u->u_cellvars); |
| 536 | Py_CLEAR(u->u_private); |
| 537 | PyObject_Free(u); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | static int |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 541 | compiler_enter_scope(struct compiler *c, identifier name, |
| 542 | int scope_type, void *key, int lineno) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 543 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 544 | struct compiler_unit *u; |
Victor Stinner | fc6f2ef | 2016-02-27 02:19:22 +0100 | [diff] [blame] | 545 | basicblock *block; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 546 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 547 | u = (struct compiler_unit *)PyObject_Malloc(sizeof( |
| 548 | struct compiler_unit)); |
| 549 | if (!u) { |
| 550 | PyErr_NoMemory(); |
| 551 | return 0; |
| 552 | } |
| 553 | memset(u, 0, sizeof(struct compiler_unit)); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 554 | u->u_scope_type = scope_type; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 555 | u->u_argcount = 0; |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 556 | u->u_posonlyargcount = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 557 | u->u_kwonlyargcount = 0; |
| 558 | u->u_ste = PySymtable_Lookup(c->c_st, key); |
| 559 | if (!u->u_ste) { |
| 560 | compiler_unit_free(u); |
| 561 | return 0; |
| 562 | } |
| 563 | Py_INCREF(name); |
| 564 | u->u_name = name; |
| 565 | u->u_varnames = list2dict(u->u_ste->ste_varnames); |
| 566 | u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); |
| 567 | if (!u->u_varnames || !u->u_cellvars) { |
| 568 | compiler_unit_free(u); |
| 569 | return 0; |
| 570 | } |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 571 | if (u->u_ste->ste_needs_class_closure) { |
Martin Panter | 7462b649 | 2015-11-02 03:37:02 +0000 | [diff] [blame] | 572 | /* Cook up an implicit __class__ cell. */ |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 573 | _Py_IDENTIFIER(__class__); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 574 | PyObject *name; |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 575 | int res; |
| 576 | assert(u->u_scope_type == COMPILER_SCOPE_CLASS); |
Serhiy Storchaka | 5ab81d7 | 2016-12-16 16:18:57 +0200 | [diff] [blame] | 577 | assert(PyDict_GET_SIZE(u->u_cellvars) == 0); |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 578 | name = _PyUnicode_FromId(&PyId___class__); |
| 579 | if (!name) { |
| 580 | compiler_unit_free(u); |
| 581 | return 0; |
| 582 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 583 | res = PyDict_SetItem(u->u_cellvars, name, _PyLong_Zero); |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 584 | if (res < 0) { |
| 585 | compiler_unit_free(u); |
| 586 | return 0; |
| 587 | } |
| 588 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 589 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 590 | u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, |
Serhiy Storchaka | 5ab81d7 | 2016-12-16 16:18:57 +0200 | [diff] [blame] | 591 | PyDict_GET_SIZE(u->u_cellvars)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 592 | if (!u->u_freevars) { |
| 593 | compiler_unit_free(u); |
| 594 | return 0; |
| 595 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 596 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 597 | u->u_blocks = NULL; |
| 598 | u->u_nfblocks = 0; |
| 599 | u->u_firstlineno = lineno; |
| 600 | u->u_lineno = 0; |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 601 | u->u_col_offset = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 602 | u->u_lineno_set = 0; |
| 603 | u->u_consts = PyDict_New(); |
| 604 | if (!u->u_consts) { |
| 605 | compiler_unit_free(u); |
| 606 | return 0; |
| 607 | } |
| 608 | u->u_names = PyDict_New(); |
| 609 | if (!u->u_names) { |
| 610 | compiler_unit_free(u); |
| 611 | return 0; |
| 612 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 613 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 614 | u->u_private = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 615 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 616 | /* Push the old compiler_unit on the stack. */ |
| 617 | if (c->u) { |
Benjamin Peterson | 9e77f72 | 2015-05-07 18:41:47 -0400 | [diff] [blame] | 618 | PyObject *capsule = PyCapsule_New(c->u, CAPSULE_NAME, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 619 | if (!capsule || PyList_Append(c->c_stack, capsule) < 0) { |
| 620 | Py_XDECREF(capsule); |
| 621 | compiler_unit_free(u); |
| 622 | return 0; |
| 623 | } |
| 624 | Py_DECREF(capsule); |
| 625 | u->u_private = c->u->u_private; |
| 626 | Py_XINCREF(u->u_private); |
| 627 | } |
| 628 | c->u = u; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 629 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 630 | c->c_nestlevel++; |
Victor Stinner | fc6f2ef | 2016-02-27 02:19:22 +0100 | [diff] [blame] | 631 | |
| 632 | block = compiler_new_block(c); |
| 633 | if (block == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 634 | return 0; |
Victor Stinner | fc6f2ef | 2016-02-27 02:19:22 +0100 | [diff] [blame] | 635 | c->u->u_curblock = block; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 636 | |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 637 | if (u->u_scope_type != COMPILER_SCOPE_MODULE) { |
| 638 | if (!compiler_set_qualname(c)) |
| 639 | return 0; |
| 640 | } |
| 641 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 642 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Neil Schemenauer | c396d9e | 2005-10-25 06:30:14 +0000 | [diff] [blame] | 645 | static void |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 646 | compiler_exit_scope(struct compiler *c) |
| 647 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 648 | Py_ssize_t n; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 649 | PyObject *capsule; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 650 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 651 | c->c_nestlevel--; |
| 652 | compiler_unit_free(c->u); |
| 653 | /* Restore c->u to the parent unit. */ |
| 654 | n = PyList_GET_SIZE(c->c_stack) - 1; |
| 655 | if (n >= 0) { |
| 656 | capsule = PyList_GET_ITEM(c->c_stack, n); |
Benjamin Peterson | 9e77f72 | 2015-05-07 18:41:47 -0400 | [diff] [blame] | 657 | c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 658 | assert(c->u); |
| 659 | /* we are deleting from a list so this really shouldn't fail */ |
| 660 | if (PySequence_DelItem(c->c_stack, n) < 0) |
| 661 | Py_FatalError("compiler_exit_scope()"); |
| 662 | compiler_unit_check(c->u); |
| 663 | } |
| 664 | else |
| 665 | c->u = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 666 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 667 | } |
| 668 | |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 669 | static int |
| 670 | compiler_set_qualname(struct compiler *c) |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 671 | { |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 672 | _Py_static_string(dot, "."); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 673 | _Py_static_string(dot_locals, ".<locals>"); |
| 674 | Py_ssize_t stack_size; |
| 675 | struct compiler_unit *u = c->u; |
| 676 | PyObject *name, *base, *dot_str, *dot_locals_str; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 677 | |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 678 | base = NULL; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 679 | stack_size = PyList_GET_SIZE(c->c_stack); |
Benjamin Peterson | a8a38b8 | 2013-10-19 16:14:39 -0400 | [diff] [blame] | 680 | assert(stack_size >= 1); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 681 | if (stack_size > 1) { |
| 682 | int scope, force_global = 0; |
| 683 | struct compiler_unit *parent; |
| 684 | PyObject *mangled, *capsule; |
| 685 | |
Benjamin Peterson | 3d9e481 | 2013-10-19 16:01:13 -0400 | [diff] [blame] | 686 | capsule = PyList_GET_ITEM(c->c_stack, stack_size - 1); |
Benjamin Peterson | 9e77f72 | 2015-05-07 18:41:47 -0400 | [diff] [blame] | 687 | parent = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 688 | assert(parent); |
| 689 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 690 | if (u->u_scope_type == COMPILER_SCOPE_FUNCTION |
| 691 | || u->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION |
| 692 | || u->u_scope_type == COMPILER_SCOPE_CLASS) { |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 693 | assert(u->u_name); |
| 694 | mangled = _Py_Mangle(parent->u_private, u->u_name); |
| 695 | if (!mangled) |
| 696 | return 0; |
| 697 | scope = PyST_GetScope(parent->u_ste, mangled); |
| 698 | Py_DECREF(mangled); |
| 699 | assert(scope != GLOBAL_IMPLICIT); |
| 700 | if (scope == GLOBAL_EXPLICIT) |
| 701 | force_global = 1; |
| 702 | } |
| 703 | |
| 704 | if (!force_global) { |
| 705 | if (parent->u_scope_type == COMPILER_SCOPE_FUNCTION |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 706 | || parent->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 707 | || parent->u_scope_type == COMPILER_SCOPE_LAMBDA) { |
| 708 | dot_locals_str = _PyUnicode_FromId(&dot_locals); |
| 709 | if (dot_locals_str == NULL) |
| 710 | return 0; |
| 711 | base = PyUnicode_Concat(parent->u_qualname, dot_locals_str); |
| 712 | if (base == NULL) |
| 713 | return 0; |
| 714 | } |
| 715 | else { |
| 716 | Py_INCREF(parent->u_qualname); |
| 717 | base = parent->u_qualname; |
Benjamin Peterson | 3d9e481 | 2013-10-19 16:01:13 -0400 | [diff] [blame] | 718 | } |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 719 | } |
| 720 | } |
Benjamin Peterson | 3d9e481 | 2013-10-19 16:01:13 -0400 | [diff] [blame] | 721 | |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 722 | if (base != NULL) { |
| 723 | dot_str = _PyUnicode_FromId(&dot); |
| 724 | if (dot_str == NULL) { |
| 725 | Py_DECREF(base); |
| 726 | return 0; |
| 727 | } |
| 728 | name = PyUnicode_Concat(base, dot_str); |
| 729 | Py_DECREF(base); |
| 730 | if (name == NULL) |
| 731 | return 0; |
| 732 | PyUnicode_Append(&name, u->u_name); |
| 733 | if (name == NULL) |
| 734 | return 0; |
| 735 | } |
| 736 | else { |
| 737 | Py_INCREF(u->u_name); |
| 738 | name = u->u_name; |
| 739 | } |
| 740 | u->u_qualname = name; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 741 | |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 742 | return 1; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 743 | } |
| 744 | |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 745 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 746 | /* Allocate a new block and return a pointer to it. |
| 747 | Returns NULL on error. |
| 748 | */ |
| 749 | |
| 750 | static basicblock * |
| 751 | compiler_new_block(struct compiler *c) |
| 752 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 753 | basicblock *b; |
| 754 | struct compiler_unit *u; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 755 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 756 | u = c->u; |
| 757 | b = (basicblock *)PyObject_Malloc(sizeof(basicblock)); |
| 758 | if (b == NULL) { |
| 759 | PyErr_NoMemory(); |
| 760 | return NULL; |
| 761 | } |
| 762 | memset((void *)b, 0, sizeof(basicblock)); |
| 763 | /* Extend the singly linked list of blocks with new block. */ |
| 764 | b->b_list = u->u_blocks; |
| 765 | u->u_blocks = b; |
| 766 | return b; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 767 | } |
| 768 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 769 | static basicblock * |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 770 | compiler_next_block(struct compiler *c) |
| 771 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 772 | basicblock *block = compiler_new_block(c); |
| 773 | if (block == NULL) |
| 774 | return NULL; |
| 775 | c->u->u_curblock->b_next = block; |
| 776 | c->u->u_curblock = block; |
| 777 | return block; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | static basicblock * |
| 781 | compiler_use_next_block(struct compiler *c, basicblock *block) |
| 782 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 783 | assert(block != NULL); |
| 784 | c->u->u_curblock->b_next = block; |
| 785 | c->u->u_curblock = block; |
| 786 | return block; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | /* Returns the offset of the next instruction in the current block's |
| 790 | b_instr array. Resizes the b_instr as necessary. |
| 791 | Returns -1 on failure. |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 792 | */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 793 | |
| 794 | static int |
| 795 | compiler_next_instr(struct compiler *c, basicblock *b) |
| 796 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 797 | assert(b != NULL); |
| 798 | if (b->b_instr == NULL) { |
| 799 | b->b_instr = (struct instr *)PyObject_Malloc( |
| 800 | sizeof(struct instr) * DEFAULT_BLOCK_SIZE); |
| 801 | if (b->b_instr == NULL) { |
| 802 | PyErr_NoMemory(); |
| 803 | return -1; |
| 804 | } |
| 805 | b->b_ialloc = DEFAULT_BLOCK_SIZE; |
| 806 | memset((char *)b->b_instr, 0, |
| 807 | sizeof(struct instr) * DEFAULT_BLOCK_SIZE); |
| 808 | } |
| 809 | else if (b->b_iused == b->b_ialloc) { |
| 810 | struct instr *tmp; |
| 811 | size_t oldsize, newsize; |
| 812 | oldsize = b->b_ialloc * sizeof(struct instr); |
| 813 | newsize = oldsize << 1; |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 814 | |
Benjamin Peterson | 2f8bfef | 2016-09-07 09:26:18 -0700 | [diff] [blame] | 815 | if (oldsize > (SIZE_MAX >> 1)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 816 | PyErr_NoMemory(); |
| 817 | return -1; |
| 818 | } |
Amaury Forgeot d'Arc | 9c74b14 | 2008-06-18 00:47:36 +0000 | [diff] [blame] | 819 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 820 | if (newsize == 0) { |
| 821 | PyErr_NoMemory(); |
| 822 | return -1; |
| 823 | } |
| 824 | b->b_ialloc <<= 1; |
| 825 | tmp = (struct instr *)PyObject_Realloc( |
| 826 | (void *)b->b_instr, newsize); |
| 827 | if (tmp == NULL) { |
| 828 | PyErr_NoMemory(); |
| 829 | return -1; |
| 830 | } |
| 831 | b->b_instr = tmp; |
| 832 | memset((char *)b->b_instr + oldsize, 0, newsize - oldsize); |
| 833 | } |
| 834 | return b->b_iused++; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 835 | } |
| 836 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 837 | /* Set the i_lineno member of the instruction at offset off if the |
| 838 | line number for the current expression/statement has not |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 839 | already been set. If it has been set, the call has no effect. |
| 840 | |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 841 | The line number is reset in the following cases: |
| 842 | - when entering a new scope |
| 843 | - on each statement |
| 844 | - on each expression that start a new line |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 845 | - before the "except" and "finally" clauses |
Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 846 | - before the "for" and "while" expressions |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 847 | */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 848 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 849 | static void |
| 850 | compiler_set_lineno(struct compiler *c, int off) |
| 851 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 852 | basicblock *b; |
| 853 | if (c->u->u_lineno_set) |
| 854 | return; |
| 855 | c->u->u_lineno_set = 1; |
| 856 | b = c->u->u_curblock; |
| 857 | b->b_instr[off].i_lineno = c->u->u_lineno; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 858 | } |
| 859 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 860 | /* Return the stack effect of opcode with argument oparg. |
| 861 | |
| 862 | Some opcodes have different stack effect when jump to the target and |
| 863 | when not jump. The 'jump' parameter specifies the case: |
| 864 | |
| 865 | * 0 -- when not jump |
| 866 | * 1 -- when jump |
| 867 | * -1 -- maximal |
| 868 | */ |
| 869 | /* XXX Make the stack effect of WITH_CLEANUP_START and |
| 870 | WITH_CLEANUP_FINISH deterministic. */ |
| 871 | static int |
| 872 | stack_effect(int opcode, int oparg, int jump) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 873 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 874 | switch (opcode) { |
Serhiy Storchaka | 57faf34 | 2018-04-25 22:04:06 +0300 | [diff] [blame] | 875 | case NOP: |
| 876 | case EXTENDED_ARG: |
| 877 | return 0; |
| 878 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 879 | /* Stack manipulation */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 880 | case POP_TOP: |
| 881 | return -1; |
| 882 | case ROT_TWO: |
| 883 | case ROT_THREE: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 884 | case ROT_FOUR: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 885 | return 0; |
| 886 | case DUP_TOP: |
| 887 | return 1; |
Antoine Pitrou | 74a69fa | 2010-09-04 18:43:52 +0000 | [diff] [blame] | 888 | case DUP_TOP_TWO: |
| 889 | return 2; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 890 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 891 | /* Unary operators */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 892 | case UNARY_POSITIVE: |
| 893 | case UNARY_NEGATIVE: |
| 894 | case UNARY_NOT: |
| 895 | case UNARY_INVERT: |
| 896 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 897 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 898 | case SET_ADD: |
| 899 | case LIST_APPEND: |
| 900 | return -1; |
| 901 | case MAP_ADD: |
| 902 | return -2; |
Neal Norwitz | 10be2ea | 2006-03-03 20:29:11 +0000 | [diff] [blame] | 903 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 904 | /* Binary operators */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 905 | case BINARY_POWER: |
| 906 | case BINARY_MULTIPLY: |
Benjamin Peterson | d51374e | 2014-04-09 23:55:56 -0400 | [diff] [blame] | 907 | case BINARY_MATRIX_MULTIPLY: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 908 | case BINARY_MODULO: |
| 909 | case BINARY_ADD: |
| 910 | case BINARY_SUBTRACT: |
| 911 | case BINARY_SUBSCR: |
| 912 | case BINARY_FLOOR_DIVIDE: |
| 913 | case BINARY_TRUE_DIVIDE: |
| 914 | return -1; |
| 915 | case INPLACE_FLOOR_DIVIDE: |
| 916 | case INPLACE_TRUE_DIVIDE: |
| 917 | return -1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 918 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 919 | case INPLACE_ADD: |
| 920 | case INPLACE_SUBTRACT: |
| 921 | case INPLACE_MULTIPLY: |
Benjamin Peterson | d51374e | 2014-04-09 23:55:56 -0400 | [diff] [blame] | 922 | case INPLACE_MATRIX_MULTIPLY: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 923 | case INPLACE_MODULO: |
| 924 | return -1; |
| 925 | case STORE_SUBSCR: |
| 926 | return -3; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 927 | case DELETE_SUBSCR: |
| 928 | return -2; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 929 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 930 | case BINARY_LSHIFT: |
| 931 | case BINARY_RSHIFT: |
| 932 | case BINARY_AND: |
| 933 | case BINARY_XOR: |
| 934 | case BINARY_OR: |
| 935 | return -1; |
| 936 | case INPLACE_POWER: |
| 937 | return -1; |
| 938 | case GET_ITER: |
| 939 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 940 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 941 | case PRINT_EXPR: |
| 942 | return -1; |
| 943 | case LOAD_BUILD_CLASS: |
| 944 | return 1; |
| 945 | case INPLACE_LSHIFT: |
| 946 | case INPLACE_RSHIFT: |
| 947 | case INPLACE_AND: |
| 948 | case INPLACE_XOR: |
| 949 | case INPLACE_OR: |
| 950 | return -1; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 951 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 952 | case SETUP_WITH: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 953 | /* 1 in the normal flow. |
| 954 | * Restore the stack position and push 6 values before jumping to |
| 955 | * the handler if an exception be raised. */ |
| 956 | return jump ? 6 : 1; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 957 | case WITH_CLEANUP_START: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 958 | return 2; /* or 1, depending on TOS */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 959 | case WITH_CLEANUP_FINISH: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 960 | /* Pop a variable number of values pushed by WITH_CLEANUP_START |
| 961 | * + __exit__ or __aexit__. */ |
| 962 | return -3; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 963 | case RETURN_VALUE: |
| 964 | return -1; |
| 965 | case IMPORT_STAR: |
| 966 | return -1; |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 967 | case SETUP_ANNOTATIONS: |
| 968 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 969 | case YIELD_VALUE: |
| 970 | return 0; |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 971 | case YIELD_FROM: |
| 972 | return -1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 973 | case POP_BLOCK: |
| 974 | return 0; |
| 975 | case POP_EXCEPT: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 976 | return -3; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 977 | case END_FINALLY: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 978 | case POP_FINALLY: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 979 | /* Pop 6 values when an exception was raised. */ |
| 980 | return -6; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 981 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 982 | case STORE_NAME: |
| 983 | return -1; |
| 984 | case DELETE_NAME: |
| 985 | return 0; |
| 986 | case UNPACK_SEQUENCE: |
| 987 | return oparg-1; |
| 988 | case UNPACK_EX: |
| 989 | return (oparg&0xFF) + (oparg>>8); |
| 990 | case FOR_ITER: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 991 | /* -1 at end of iterator, 1 if continue iterating. */ |
| 992 | return jump > 0 ? -1 : 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 993 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 994 | case STORE_ATTR: |
| 995 | return -2; |
| 996 | case DELETE_ATTR: |
| 997 | return -1; |
| 998 | case STORE_GLOBAL: |
| 999 | return -1; |
| 1000 | case DELETE_GLOBAL: |
| 1001 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1002 | case LOAD_CONST: |
| 1003 | return 1; |
| 1004 | case LOAD_NAME: |
| 1005 | return 1; |
| 1006 | case BUILD_TUPLE: |
| 1007 | case BUILD_LIST: |
| 1008 | case BUILD_SET: |
Serhiy Storchaka | ea525a2 | 2016-09-06 22:07:53 +0300 | [diff] [blame] | 1009 | case BUILD_STRING: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1010 | return 1-oparg; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 1011 | case BUILD_LIST_UNPACK: |
| 1012 | case BUILD_TUPLE_UNPACK: |
Serhiy Storchaka | 7344285 | 2016-10-02 10:33:46 +0300 | [diff] [blame] | 1013 | case BUILD_TUPLE_UNPACK_WITH_CALL: |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 1014 | case BUILD_SET_UNPACK: |
| 1015 | case BUILD_MAP_UNPACK: |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 1016 | case BUILD_MAP_UNPACK_WITH_CALL: |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 1017 | return 1 - oparg; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1018 | case BUILD_MAP: |
Benjamin Peterson | b685515 | 2015-09-10 21:02:39 -0700 | [diff] [blame] | 1019 | return 1 - 2*oparg; |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 1020 | case BUILD_CONST_KEY_MAP: |
| 1021 | return -oparg; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1022 | case LOAD_ATTR: |
| 1023 | return 0; |
| 1024 | case COMPARE_OP: |
| 1025 | return -1; |
| 1026 | case IMPORT_NAME: |
| 1027 | return -1; |
| 1028 | case IMPORT_FROM: |
| 1029 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1030 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1031 | /* Jumps */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1032 | case JUMP_FORWARD: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1033 | case JUMP_ABSOLUTE: |
| 1034 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1035 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1036 | case JUMP_IF_TRUE_OR_POP: |
| 1037 | case JUMP_IF_FALSE_OR_POP: |
| 1038 | return jump ? 0 : -1; |
| 1039 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1040 | case POP_JUMP_IF_FALSE: |
| 1041 | case POP_JUMP_IF_TRUE: |
| 1042 | return -1; |
Jeffrey Yasskin | 9de7ec7 | 2009-02-25 02:25:04 +0000 | [diff] [blame] | 1043 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1044 | case LOAD_GLOBAL: |
| 1045 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1046 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 1047 | /* Exception handling */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1048 | case SETUP_FINALLY: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1049 | /* 0 in the normal flow. |
| 1050 | * Restore the stack position and push 6 values before jumping to |
| 1051 | * the handler if an exception be raised. */ |
| 1052 | return jump ? 6 : 0; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 1053 | case BEGIN_FINALLY: |
| 1054 | /* Actually pushes 1 value, but count 6 for balancing with |
| 1055 | * END_FINALLY and POP_FINALLY. |
| 1056 | * This is the main reason of using this opcode instead of |
| 1057 | * "LOAD_CONST None". */ |
| 1058 | return 6; |
| 1059 | case CALL_FINALLY: |
| 1060 | return jump ? 1 : 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1061 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1062 | case LOAD_FAST: |
| 1063 | return 1; |
| 1064 | case STORE_FAST: |
| 1065 | return -1; |
| 1066 | case DELETE_FAST: |
| 1067 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1068 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1069 | case RAISE_VARARGS: |
| 1070 | return -oparg; |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1071 | |
| 1072 | /* Functions and calls */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1073 | case CALL_FUNCTION: |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 1074 | return -oparg; |
Yury Selivanov | f239213 | 2016-12-13 19:03:51 -0500 | [diff] [blame] | 1075 | case CALL_METHOD: |
| 1076 | return -oparg-1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1077 | case CALL_FUNCTION_KW: |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 1078 | return -oparg-1; |
| 1079 | case CALL_FUNCTION_EX: |
Matthieu Dartiailh | 3a9ac82 | 2017-02-21 14:25:22 +0100 | [diff] [blame] | 1080 | return -1 - ((oparg & 0x01) != 0); |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1081 | case MAKE_FUNCTION: |
| 1082 | return -1 - ((oparg & 0x01) != 0) - ((oparg & 0x02) != 0) - |
| 1083 | ((oparg & 0x04) != 0) - ((oparg & 0x08) != 0); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1084 | case BUILD_SLICE: |
| 1085 | if (oparg == 3) |
| 1086 | return -2; |
| 1087 | else |
| 1088 | return -1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1089 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1090 | /* Closures */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1091 | case LOAD_CLOSURE: |
| 1092 | return 1; |
| 1093 | case LOAD_DEREF: |
Benjamin Peterson | 3b0431d | 2013-04-30 09:41:40 -0400 | [diff] [blame] | 1094 | case LOAD_CLASSDEREF: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1095 | return 1; |
| 1096 | case STORE_DEREF: |
| 1097 | return -1; |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 1098 | case DELETE_DEREF: |
| 1099 | return 0; |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1100 | |
| 1101 | /* Iterators and generators */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1102 | case GET_AWAITABLE: |
| 1103 | return 0; |
| 1104 | case SETUP_ASYNC_WITH: |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1105 | /* 0 in the normal flow. |
| 1106 | * Restore the stack position to the position before the result |
| 1107 | * of __aenter__ and push 6 values before jumping to the handler |
| 1108 | * if an exception be raised. */ |
| 1109 | return jump ? -1 + 6 : 0; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1110 | case BEFORE_ASYNC_WITH: |
| 1111 | return 1; |
| 1112 | case GET_AITER: |
| 1113 | return 0; |
| 1114 | case GET_ANEXT: |
| 1115 | return 1; |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 1116 | case GET_YIELD_FROM_ITER: |
| 1117 | return 0; |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 1118 | case END_ASYNC_FOR: |
| 1119 | return -7; |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 1120 | case FORMAT_VALUE: |
| 1121 | /* If there's a fmt_spec on the stack, we go from 2->1, |
| 1122 | else 1->1. */ |
| 1123 | return (oparg & FVS_MASK) == FVS_HAVE_SPEC ? -1 : 0; |
Yury Selivanov | f239213 | 2016-12-13 19:03:51 -0500 | [diff] [blame] | 1124 | case LOAD_METHOD: |
| 1125 | return 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1126 | default: |
Larry Hastings | 3a90797 | 2013-11-23 14:49:22 -0800 | [diff] [blame] | 1127 | return PY_INVALID_STACK_EFFECT; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1128 | } |
Larry Hastings | 3a90797 | 2013-11-23 14:49:22 -0800 | [diff] [blame] | 1129 | return PY_INVALID_STACK_EFFECT; /* not reachable */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1130 | } |
| 1131 | |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1132 | int |
Serhiy Storchaka | 7bdf282 | 2018-09-18 09:54:26 +0300 | [diff] [blame] | 1133 | PyCompile_OpcodeStackEffectWithJump(int opcode, int oparg, int jump) |
| 1134 | { |
| 1135 | return stack_effect(opcode, oparg, jump); |
| 1136 | } |
| 1137 | |
| 1138 | int |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 1139 | PyCompile_OpcodeStackEffect(int opcode, int oparg) |
| 1140 | { |
| 1141 | return stack_effect(opcode, oparg, -1); |
| 1142 | } |
| 1143 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1144 | /* Add an opcode with no argument. |
| 1145 | Returns 0 on failure, 1 on success. |
| 1146 | */ |
| 1147 | |
| 1148 | static int |
| 1149 | compiler_addop(struct compiler *c, int opcode) |
| 1150 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1151 | basicblock *b; |
| 1152 | struct instr *i; |
| 1153 | int off; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1154 | assert(!HAS_ARG(opcode)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1155 | off = compiler_next_instr(c, c->u->u_curblock); |
| 1156 | if (off < 0) |
| 1157 | return 0; |
| 1158 | b = c->u->u_curblock; |
| 1159 | i = &b->b_instr[off]; |
| 1160 | i->i_opcode = opcode; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1161 | i->i_oparg = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1162 | if (opcode == RETURN_VALUE) |
| 1163 | b->b_return = 1; |
| 1164 | compiler_set_lineno(c, off); |
| 1165 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 1168 | static Py_ssize_t |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1169 | compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o) |
| 1170 | { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1171 | PyObject *v; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1172 | Py_ssize_t arg; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1173 | |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1174 | v = PyDict_GetItemWithError(dict, o); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1175 | if (!v) { |
Stefan Krah | c0cbed1 | 2015-07-27 12:56:49 +0200 | [diff] [blame] | 1176 | if (PyErr_Occurred()) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1177 | return -1; |
Stefan Krah | c0cbed1 | 2015-07-27 12:56:49 +0200 | [diff] [blame] | 1178 | } |
Serhiy Storchaka | 5ab81d7 | 2016-12-16 16:18:57 +0200 | [diff] [blame] | 1179 | arg = PyDict_GET_SIZE(dict); |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1180 | v = PyLong_FromSsize_t(arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1181 | if (!v) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1182 | return -1; |
| 1183 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1184 | if (PyDict_SetItem(dict, o, v) < 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1185 | Py_DECREF(v); |
| 1186 | return -1; |
| 1187 | } |
| 1188 | Py_DECREF(v); |
| 1189 | } |
| 1190 | else |
| 1191 | arg = PyLong_AsLong(v); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1192 | return arg; |
| 1193 | } |
| 1194 | |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1195 | // Merge const *o* recursively and return constant key object. |
| 1196 | static PyObject* |
| 1197 | merge_consts_recursive(struct compiler *c, PyObject *o) |
| 1198 | { |
| 1199 | // None and Ellipsis are singleton, and key is the singleton. |
| 1200 | // No need to merge object and key. |
| 1201 | if (o == Py_None || o == Py_Ellipsis) { |
| 1202 | Py_INCREF(o); |
| 1203 | return o; |
| 1204 | } |
| 1205 | |
| 1206 | PyObject *key = _PyCode_ConstantKey(o); |
| 1207 | if (key == NULL) { |
| 1208 | return NULL; |
| 1209 | } |
| 1210 | |
| 1211 | // t is borrowed reference |
| 1212 | PyObject *t = PyDict_SetDefault(c->c_const_cache, key, key); |
| 1213 | if (t != key) { |
INADA Naoki | f7e4d36 | 2018-11-29 00:58:46 +0900 | [diff] [blame] | 1214 | // o is registered in c_const_cache. Just use it. |
Zackery Spytz | 9b4a1b1 | 2019-03-20 03:16:25 -0600 | [diff] [blame] | 1215 | Py_XINCREF(t); |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1216 | Py_DECREF(key); |
| 1217 | return t; |
| 1218 | } |
| 1219 | |
INADA Naoki | f7e4d36 | 2018-11-29 00:58:46 +0900 | [diff] [blame] | 1220 | // We registered o in c_const_cache. |
Simeon | 63b5fc5 | 2019-04-09 19:36:57 -0400 | [diff] [blame] | 1221 | // When o is a tuple or frozenset, we want to merge its |
INADA Naoki | f7e4d36 | 2018-11-29 00:58:46 +0900 | [diff] [blame] | 1222 | // items too. |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1223 | if (PyTuple_CheckExact(o)) { |
INADA Naoki | f7e4d36 | 2018-11-29 00:58:46 +0900 | [diff] [blame] | 1224 | Py_ssize_t len = PyTuple_GET_SIZE(o); |
| 1225 | for (Py_ssize_t i = 0; i < len; i++) { |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1226 | PyObject *item = PyTuple_GET_ITEM(o, i); |
| 1227 | PyObject *u = merge_consts_recursive(c, item); |
| 1228 | if (u == NULL) { |
| 1229 | Py_DECREF(key); |
| 1230 | return NULL; |
| 1231 | } |
| 1232 | |
| 1233 | // See _PyCode_ConstantKey() |
| 1234 | PyObject *v; // borrowed |
| 1235 | if (PyTuple_CheckExact(u)) { |
| 1236 | v = PyTuple_GET_ITEM(u, 1); |
| 1237 | } |
| 1238 | else { |
| 1239 | v = u; |
| 1240 | } |
| 1241 | if (v != item) { |
| 1242 | Py_INCREF(v); |
| 1243 | PyTuple_SET_ITEM(o, i, v); |
| 1244 | Py_DECREF(item); |
| 1245 | } |
| 1246 | |
| 1247 | Py_DECREF(u); |
| 1248 | } |
| 1249 | } |
INADA Naoki | f7e4d36 | 2018-11-29 00:58:46 +0900 | [diff] [blame] | 1250 | else if (PyFrozenSet_CheckExact(o)) { |
Simeon | 63b5fc5 | 2019-04-09 19:36:57 -0400 | [diff] [blame] | 1251 | // *key* is tuple. And its first item is frozenset of |
INADA Naoki | f7e4d36 | 2018-11-29 00:58:46 +0900 | [diff] [blame] | 1252 | // constant keys. |
| 1253 | // See _PyCode_ConstantKey() for detail. |
| 1254 | assert(PyTuple_CheckExact(key)); |
| 1255 | assert(PyTuple_GET_SIZE(key) == 2); |
| 1256 | |
| 1257 | Py_ssize_t len = PySet_GET_SIZE(o); |
| 1258 | if (len == 0) { // empty frozenset should not be re-created. |
| 1259 | return key; |
| 1260 | } |
| 1261 | PyObject *tuple = PyTuple_New(len); |
| 1262 | if (tuple == NULL) { |
| 1263 | Py_DECREF(key); |
| 1264 | return NULL; |
| 1265 | } |
| 1266 | Py_ssize_t i = 0, pos = 0; |
| 1267 | PyObject *item; |
| 1268 | Py_hash_t hash; |
| 1269 | while (_PySet_NextEntry(o, &pos, &item, &hash)) { |
| 1270 | PyObject *k = merge_consts_recursive(c, item); |
| 1271 | if (k == NULL) { |
| 1272 | Py_DECREF(tuple); |
| 1273 | Py_DECREF(key); |
| 1274 | return NULL; |
| 1275 | } |
| 1276 | PyObject *u; |
| 1277 | if (PyTuple_CheckExact(k)) { |
| 1278 | u = PyTuple_GET_ITEM(k, 1); |
| 1279 | Py_INCREF(u); |
| 1280 | Py_DECREF(k); |
| 1281 | } |
| 1282 | else { |
| 1283 | u = k; |
| 1284 | } |
| 1285 | PyTuple_SET_ITEM(tuple, i, u); // Steals reference of u. |
| 1286 | i++; |
| 1287 | } |
| 1288 | |
| 1289 | // Instead of rewriting o, we create new frozenset and embed in the |
| 1290 | // key tuple. Caller should get merged frozenset from the key tuple. |
| 1291 | PyObject *new = PyFrozenSet_New(tuple); |
| 1292 | Py_DECREF(tuple); |
| 1293 | if (new == NULL) { |
| 1294 | Py_DECREF(key); |
| 1295 | return NULL; |
| 1296 | } |
| 1297 | assert(PyTuple_GET_ITEM(key, 1) == o); |
| 1298 | Py_DECREF(o); |
| 1299 | PyTuple_SET_ITEM(key, 1, new); |
| 1300 | } |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1301 | |
| 1302 | return key; |
| 1303 | } |
| 1304 | |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1305 | static Py_ssize_t |
| 1306 | compiler_add_const(struct compiler *c, PyObject *o) |
| 1307 | { |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1308 | PyObject *key = merge_consts_recursive(c, o); |
| 1309 | if (key == NULL) { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1310 | return -1; |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1311 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1312 | |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 1313 | Py_ssize_t arg = compiler_add_o(c, c->u->u_consts, key); |
| 1314 | Py_DECREF(key); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1315 | return arg; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
| 1318 | static int |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1319 | compiler_addop_load_const(struct compiler *c, PyObject *o) |
| 1320 | { |
| 1321 | Py_ssize_t arg = compiler_add_const(c, o); |
| 1322 | if (arg < 0) |
| 1323 | return 0; |
| 1324 | return compiler_addop_i(c, LOAD_CONST, arg); |
| 1325 | } |
| 1326 | |
| 1327 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1328 | compiler_addop_o(struct compiler *c, int opcode, PyObject *dict, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1329 | PyObject *o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1330 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1331 | Py_ssize_t arg = compiler_add_o(c, dict, o); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1332 | if (arg < 0) |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 1333 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1334 | return compiler_addop_i(c, opcode, arg); |
| 1335 | } |
| 1336 | |
| 1337 | static int |
| 1338 | compiler_addop_name(struct compiler *c, int opcode, PyObject *dict, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1339 | PyObject *o) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1340 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1341 | Py_ssize_t arg; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1342 | PyObject *mangled = _Py_Mangle(c->u->u_private, o); |
| 1343 | if (!mangled) |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 1344 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1345 | arg = compiler_add_o(c, dict, mangled); |
| 1346 | Py_DECREF(mangled); |
| 1347 | if (arg < 0) |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 1348 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1349 | return compiler_addop_i(c, opcode, arg); |
| 1350 | } |
| 1351 | |
| 1352 | /* Add an opcode with an integer argument. |
| 1353 | Returns 0 on failure, 1 on success. |
| 1354 | */ |
| 1355 | |
| 1356 | static int |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 1357 | compiler_addop_i(struct compiler *c, int opcode, Py_ssize_t oparg) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1358 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1359 | struct instr *i; |
| 1360 | int off; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1361 | |
Victor Stinner | 2ad474b | 2016-03-01 23:34:47 +0100 | [diff] [blame] | 1362 | /* oparg value is unsigned, but a signed C int is usually used to store |
| 1363 | it in the C code (like Python/ceval.c). |
| 1364 | |
| 1365 | Limit to 32-bit signed C int (rather than INT_MAX) for portability. |
| 1366 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1367 | The argument of a concrete bytecode instruction is limited to 8-bit. |
| 1368 | EXTENDED_ARG is used for 16, 24, and 32-bit arguments. */ |
| 1369 | assert(HAS_ARG(opcode)); |
Victor Stinner | 2ad474b | 2016-03-01 23:34:47 +0100 | [diff] [blame] | 1370 | assert(0 <= oparg && oparg <= 2147483647); |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1371 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1372 | off = compiler_next_instr(c, c->u->u_curblock); |
| 1373 | if (off < 0) |
| 1374 | return 0; |
| 1375 | i = &c->u->u_curblock->b_instr[off]; |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 1376 | i->i_opcode = opcode; |
| 1377 | i->i_oparg = Py_SAFE_DOWNCAST(oparg, Py_ssize_t, int); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1378 | compiler_set_lineno(c, off); |
| 1379 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | static int |
| 1383 | compiler_addop_j(struct compiler *c, int opcode, basicblock *b, int absolute) |
| 1384 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1385 | struct instr *i; |
| 1386 | int off; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1387 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1388 | assert(HAS_ARG(opcode)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1389 | assert(b != NULL); |
| 1390 | off = compiler_next_instr(c, c->u->u_curblock); |
| 1391 | if (off < 0) |
| 1392 | return 0; |
| 1393 | i = &c->u->u_curblock->b_instr[off]; |
| 1394 | i->i_opcode = opcode; |
| 1395 | i->i_target = b; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1396 | if (absolute) |
| 1397 | i->i_jabs = 1; |
| 1398 | else |
| 1399 | i->i_jrel = 1; |
| 1400 | compiler_set_lineno(c, off); |
| 1401 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1402 | } |
| 1403 | |
Victor Stinner | fc6f2ef | 2016-02-27 02:19:22 +0100 | [diff] [blame] | 1404 | /* NEXT_BLOCK() creates an implicit jump from the current block |
| 1405 | to the new block. |
| 1406 | |
| 1407 | The returns inside this macro make it impossible to decref objects |
| 1408 | created in the local function. Local objects should use the arena. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1409 | */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1410 | #define NEXT_BLOCK(C) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1411 | if (compiler_next_block((C)) == NULL) \ |
| 1412 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1413 | } |
| 1414 | |
| 1415 | #define ADDOP(C, OP) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1416 | if (!compiler_addop((C), (OP))) \ |
| 1417 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1418 | } |
| 1419 | |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1420 | #define ADDOP_IN_SCOPE(C, OP) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1421 | if (!compiler_addop((C), (OP))) { \ |
| 1422 | compiler_exit_scope(c); \ |
| 1423 | return 0; \ |
| 1424 | } \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1427 | #define ADDOP_LOAD_CONST(C, O) { \ |
| 1428 | if (!compiler_addop_load_const((C), (O))) \ |
| 1429 | return 0; \ |
| 1430 | } |
| 1431 | |
| 1432 | /* Same as ADDOP_LOAD_CONST, but steals a reference. */ |
| 1433 | #define ADDOP_LOAD_CONST_NEW(C, O) { \ |
| 1434 | PyObject *__new_const = (O); \ |
| 1435 | if (__new_const == NULL) { \ |
| 1436 | return 0; \ |
| 1437 | } \ |
| 1438 | if (!compiler_addop_load_const((C), __new_const)) { \ |
| 1439 | Py_DECREF(__new_const); \ |
| 1440 | return 0; \ |
| 1441 | } \ |
| 1442 | Py_DECREF(__new_const); \ |
| 1443 | } |
| 1444 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1445 | #define ADDOP_O(C, OP, O, TYPE) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1446 | if (!compiler_addop_o((C), (OP), (C)->u->u_ ## TYPE, (O))) \ |
| 1447 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1448 | } |
| 1449 | |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 1450 | /* Same as ADDOP_O, but steals a reference. */ |
| 1451 | #define ADDOP_N(C, OP, O, TYPE) { \ |
| 1452 | if (!compiler_addop_o((C), (OP), (C)->u->u_ ## TYPE, (O))) { \ |
| 1453 | Py_DECREF((O)); \ |
| 1454 | return 0; \ |
| 1455 | } \ |
| 1456 | Py_DECREF((O)); \ |
| 1457 | } |
| 1458 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1459 | #define ADDOP_NAME(C, OP, O, TYPE) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1460 | if (!compiler_addop_name((C), (OP), (C)->u->u_ ## TYPE, (O))) \ |
| 1461 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | #define ADDOP_I(C, OP, O) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1465 | if (!compiler_addop_i((C), (OP), (O))) \ |
| 1466 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | #define ADDOP_JABS(C, OP, O) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1470 | if (!compiler_addop_j((C), (OP), (O), 1)) \ |
| 1471 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1472 | } |
| 1473 | |
| 1474 | #define ADDOP_JREL(C, OP, O) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1475 | if (!compiler_addop_j((C), (OP), (O), 0)) \ |
| 1476 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | /* VISIT and VISIT_SEQ takes an ASDL type as their second argument. They use |
| 1480 | the ASDL name to synthesize the name of the C type and the visit function. |
| 1481 | */ |
| 1482 | |
| 1483 | #define VISIT(C, TYPE, V) {\ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1484 | if (!compiler_visit_ ## TYPE((C), (V))) \ |
| 1485 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1486 | } |
| 1487 | |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1488 | #define VISIT_IN_SCOPE(C, TYPE, V) {\ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1489 | if (!compiler_visit_ ## TYPE((C), (V))) { \ |
| 1490 | compiler_exit_scope(c); \ |
| 1491 | return 0; \ |
| 1492 | } \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1493 | } |
| 1494 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1495 | #define VISIT_SLICE(C, V, CTX) {\ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1496 | if (!compiler_visit_slice((C), (V), (CTX))) \ |
| 1497 | return 0; \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
| 1500 | #define VISIT_SEQ(C, TYPE, SEQ) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1501 | int _i; \ |
| 1502 | asdl_seq *seq = (SEQ); /* avoid variable capture */ \ |
| 1503 | for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \ |
| 1504 | TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \ |
| 1505 | if (!compiler_visit_ ## TYPE((C), elt)) \ |
| 1506 | return 0; \ |
| 1507 | } \ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1508 | } |
| 1509 | |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1510 | #define VISIT_SEQ_IN_SCOPE(C, TYPE, SEQ) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1511 | int _i; \ |
| 1512 | asdl_seq *seq = (SEQ); /* avoid variable capture */ \ |
| 1513 | for (_i = 0; _i < asdl_seq_LEN(seq); _i++) { \ |
| 1514 | TYPE ## _ty elt = (TYPE ## _ty)asdl_seq_GET(seq, _i); \ |
| 1515 | if (!compiler_visit_ ## TYPE((C), elt)) { \ |
| 1516 | compiler_exit_scope(c); \ |
| 1517 | return 0; \ |
| 1518 | } \ |
| 1519 | } \ |
Neal Norwitz | b6fc9df | 2005-11-13 18:50:34 +0000 | [diff] [blame] | 1520 | } |
| 1521 | |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 1522 | /* Search if variable annotations are present statically in a block. */ |
| 1523 | |
| 1524 | static int |
| 1525 | find_ann(asdl_seq *stmts) |
| 1526 | { |
| 1527 | int i, j, res = 0; |
| 1528 | stmt_ty st; |
| 1529 | |
| 1530 | for (i = 0; i < asdl_seq_LEN(stmts); i++) { |
| 1531 | st = (stmt_ty)asdl_seq_GET(stmts, i); |
| 1532 | switch (st->kind) { |
| 1533 | case AnnAssign_kind: |
| 1534 | return 1; |
| 1535 | case For_kind: |
| 1536 | res = find_ann(st->v.For.body) || |
| 1537 | find_ann(st->v.For.orelse); |
| 1538 | break; |
| 1539 | case AsyncFor_kind: |
| 1540 | res = find_ann(st->v.AsyncFor.body) || |
| 1541 | find_ann(st->v.AsyncFor.orelse); |
| 1542 | break; |
| 1543 | case While_kind: |
| 1544 | res = find_ann(st->v.While.body) || |
| 1545 | find_ann(st->v.While.orelse); |
| 1546 | break; |
| 1547 | case If_kind: |
| 1548 | res = find_ann(st->v.If.body) || |
| 1549 | find_ann(st->v.If.orelse); |
| 1550 | break; |
| 1551 | case With_kind: |
| 1552 | res = find_ann(st->v.With.body); |
| 1553 | break; |
| 1554 | case AsyncWith_kind: |
| 1555 | res = find_ann(st->v.AsyncWith.body); |
| 1556 | break; |
| 1557 | case Try_kind: |
| 1558 | for (j = 0; j < asdl_seq_LEN(st->v.Try.handlers); j++) { |
| 1559 | excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( |
| 1560 | st->v.Try.handlers, j); |
| 1561 | if (find_ann(handler->v.ExceptHandler.body)) { |
| 1562 | return 1; |
| 1563 | } |
| 1564 | } |
| 1565 | res = find_ann(st->v.Try.body) || |
| 1566 | find_ann(st->v.Try.finalbody) || |
| 1567 | find_ann(st->v.Try.orelse); |
| 1568 | break; |
| 1569 | default: |
| 1570 | res = 0; |
| 1571 | } |
| 1572 | if (res) { |
| 1573 | break; |
| 1574 | } |
| 1575 | } |
| 1576 | return res; |
| 1577 | } |
| 1578 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 1579 | /* |
| 1580 | * Frame block handling functions |
| 1581 | */ |
| 1582 | |
| 1583 | static int |
| 1584 | compiler_push_fblock(struct compiler *c, enum fblocktype t, basicblock *b, |
| 1585 | basicblock *exit) |
| 1586 | { |
| 1587 | struct fblockinfo *f; |
| 1588 | if (c->u->u_nfblocks >= CO_MAXBLOCKS) { |
| 1589 | PyErr_SetString(PyExc_SyntaxError, |
| 1590 | "too many statically nested blocks"); |
| 1591 | return 0; |
| 1592 | } |
| 1593 | f = &c->u->u_fblock[c->u->u_nfblocks++]; |
| 1594 | f->fb_type = t; |
| 1595 | f->fb_block = b; |
| 1596 | f->fb_exit = exit; |
| 1597 | return 1; |
| 1598 | } |
| 1599 | |
| 1600 | static void |
| 1601 | compiler_pop_fblock(struct compiler *c, enum fblocktype t, basicblock *b) |
| 1602 | { |
| 1603 | struct compiler_unit *u = c->u; |
| 1604 | assert(u->u_nfblocks > 0); |
| 1605 | u->u_nfblocks--; |
| 1606 | assert(u->u_fblock[u->u_nfblocks].fb_type == t); |
| 1607 | assert(u->u_fblock[u->u_nfblocks].fb_block == b); |
| 1608 | } |
| 1609 | |
| 1610 | /* Unwind a frame block. If preserve_tos is true, the TOS before |
| 1611 | * popping the blocks will be restored afterwards. |
| 1612 | */ |
| 1613 | static int |
| 1614 | compiler_unwind_fblock(struct compiler *c, struct fblockinfo *info, |
| 1615 | int preserve_tos) |
| 1616 | { |
| 1617 | switch (info->fb_type) { |
| 1618 | case WHILE_LOOP: |
| 1619 | return 1; |
| 1620 | |
| 1621 | case FINALLY_END: |
| 1622 | ADDOP_I(c, POP_FINALLY, preserve_tos); |
| 1623 | return 1; |
| 1624 | |
| 1625 | case FOR_LOOP: |
| 1626 | /* Pop the iterator */ |
| 1627 | if (preserve_tos) { |
| 1628 | ADDOP(c, ROT_TWO); |
| 1629 | } |
| 1630 | ADDOP(c, POP_TOP); |
| 1631 | return 1; |
| 1632 | |
| 1633 | case EXCEPT: |
| 1634 | ADDOP(c, POP_BLOCK); |
| 1635 | return 1; |
| 1636 | |
| 1637 | case FINALLY_TRY: |
| 1638 | ADDOP(c, POP_BLOCK); |
| 1639 | ADDOP_JREL(c, CALL_FINALLY, info->fb_exit); |
| 1640 | return 1; |
| 1641 | |
| 1642 | case WITH: |
| 1643 | case ASYNC_WITH: |
| 1644 | ADDOP(c, POP_BLOCK); |
| 1645 | if (preserve_tos) { |
| 1646 | ADDOP(c, ROT_TWO); |
| 1647 | } |
| 1648 | ADDOP(c, BEGIN_FINALLY); |
| 1649 | ADDOP(c, WITH_CLEANUP_START); |
| 1650 | if (info->fb_type == ASYNC_WITH) { |
| 1651 | ADDOP(c, GET_AWAITABLE); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1652 | ADDOP_LOAD_CONST(c, Py_None); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 1653 | ADDOP(c, YIELD_FROM); |
| 1654 | } |
| 1655 | ADDOP(c, WITH_CLEANUP_FINISH); |
| 1656 | ADDOP_I(c, POP_FINALLY, 0); |
| 1657 | return 1; |
| 1658 | |
| 1659 | case HANDLER_CLEANUP: |
| 1660 | if (preserve_tos) { |
| 1661 | ADDOP(c, ROT_FOUR); |
| 1662 | } |
| 1663 | if (info->fb_exit) { |
| 1664 | ADDOP(c, POP_BLOCK); |
| 1665 | ADDOP(c, POP_EXCEPT); |
| 1666 | ADDOP_JREL(c, CALL_FINALLY, info->fb_exit); |
| 1667 | } |
| 1668 | else { |
| 1669 | ADDOP(c, POP_EXCEPT); |
| 1670 | } |
| 1671 | return 1; |
| 1672 | } |
| 1673 | Py_UNREACHABLE(); |
| 1674 | } |
| 1675 | |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 1676 | /* Compile a sequence of statements, checking for a docstring |
| 1677 | and for annotations. */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1678 | |
| 1679 | static int |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1680 | compiler_body(struct compiler *c, asdl_seq *stmts) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1681 | { |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1682 | int i = 0; |
| 1683 | stmt_ty st; |
Serhiy Storchaka | 143ce5c | 2018-05-30 10:56:16 +0300 | [diff] [blame] | 1684 | PyObject *docstring; |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1685 | |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 1686 | /* Set current line number to the line number of first statement. |
| 1687 | This way line number for SETUP_ANNOTATIONS will always |
| 1688 | coincide with the line number of first "real" statement in module. |
| 1689 | If body is empy, then lineno will be set later in assemble. */ |
| 1690 | if (c->u->u_scope_type == COMPILER_SCOPE_MODULE && |
| 1691 | !c->u->u_lineno && asdl_seq_LEN(stmts)) { |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1692 | st = (stmt_ty)asdl_seq_GET(stmts, 0); |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 1693 | c->u->u_lineno = st->lineno; |
| 1694 | } |
| 1695 | /* Every annotated class and module should have __annotations__. */ |
| 1696 | if (find_ann(stmts)) { |
| 1697 | ADDOP(c, SETUP_ANNOTATIONS); |
| 1698 | } |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1699 | if (!asdl_seq_LEN(stmts)) |
| 1700 | return 1; |
INADA Naoki | cb41b27 | 2017-02-23 00:31:59 +0900 | [diff] [blame] | 1701 | /* if not -OO mode, set docstring */ |
Serhiy Storchaka | 143ce5c | 2018-05-30 10:56:16 +0300 | [diff] [blame] | 1702 | if (c->c_optimize < 2) { |
| 1703 | docstring = _PyAST_GetDocString(stmts); |
| 1704 | if (docstring) { |
| 1705 | i = 1; |
| 1706 | st = (stmt_ty)asdl_seq_GET(stmts, 0); |
| 1707 | assert(st->kind == Expr_kind); |
| 1708 | VISIT(c, expr, st->v.Expr.value); |
| 1709 | if (!compiler_nameop(c, __doc__, Store)) |
| 1710 | return 0; |
| 1711 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1712 | } |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1713 | for (; i < asdl_seq_LEN(stmts); i++) |
| 1714 | VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1715 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
| 1718 | static PyCodeObject * |
| 1719 | compiler_mod(struct compiler *c, mod_ty mod) |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 1720 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1721 | PyCodeObject *co; |
| 1722 | int addNone = 1; |
| 1723 | static PyObject *module; |
| 1724 | if (!module) { |
| 1725 | module = PyUnicode_InternFromString("<module>"); |
| 1726 | if (!module) |
| 1727 | return NULL; |
| 1728 | } |
| 1729 | /* Use 0 for firstlineno initially, will fixup in assemble(). */ |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 1730 | if (!compiler_enter_scope(c, module, COMPILER_SCOPE_MODULE, mod, 0)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1731 | return NULL; |
| 1732 | switch (mod->kind) { |
| 1733 | case Module_kind: |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 1734 | if (!compiler_body(c, mod->v.Module.body)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1735 | compiler_exit_scope(c); |
| 1736 | return 0; |
| 1737 | } |
| 1738 | break; |
| 1739 | case Interactive_kind: |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 1740 | if (find_ann(mod->v.Interactive.body)) { |
| 1741 | ADDOP(c, SETUP_ANNOTATIONS); |
| 1742 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1743 | c->c_interactive = 1; |
| 1744 | VISIT_SEQ_IN_SCOPE(c, stmt, |
| 1745 | mod->v.Interactive.body); |
| 1746 | break; |
| 1747 | case Expression_kind: |
| 1748 | VISIT_IN_SCOPE(c, expr, mod->v.Expression.body); |
| 1749 | addNone = 0; |
| 1750 | break; |
| 1751 | case Suite_kind: |
| 1752 | PyErr_SetString(PyExc_SystemError, |
| 1753 | "suite should not be possible"); |
| 1754 | return 0; |
| 1755 | default: |
| 1756 | PyErr_Format(PyExc_SystemError, |
| 1757 | "module kind %d should not be possible", |
| 1758 | mod->kind); |
| 1759 | return 0; |
| 1760 | } |
| 1761 | co = assemble(c, addNone); |
| 1762 | compiler_exit_scope(c); |
| 1763 | return co; |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 1764 | } |
| 1765 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1766 | /* The test for LOCAL must come before the test for FREE in order to |
| 1767 | handle classes where name is both local and free. The local var is |
| 1768 | a method and the free var is a free var referenced within a method. |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 1769 | */ |
| 1770 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1771 | static int |
| 1772 | get_ref_type(struct compiler *c, PyObject *name) |
| 1773 | { |
Victor Stinner | 0b1bc56 | 2013-05-16 22:17:17 +0200 | [diff] [blame] | 1774 | int scope; |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 1775 | if (c->u->u_scope_type == COMPILER_SCOPE_CLASS && |
Serhiy Storchaka | f4934ea | 2016-11-16 10:17:58 +0200 | [diff] [blame] | 1776 | _PyUnicode_EqualToASCIIString(name, "__class__")) |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 1777 | return CELL; |
Victor Stinner | 0b1bc56 | 2013-05-16 22:17:17 +0200 | [diff] [blame] | 1778 | scope = PyST_GetScope(c->u->u_ste, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1779 | if (scope == 0) { |
| 1780 | char buf[350]; |
| 1781 | PyOS_snprintf(buf, sizeof(buf), |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 1782 | "unknown scope for %.100s in %.100s(%s)\n" |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1783 | "symbols: %s\nlocals: %s\nglobals: %s", |
Serhiy Storchaka | df4518c | 2014-11-18 23:34:33 +0200 | [diff] [blame] | 1784 | PyUnicode_AsUTF8(name), |
| 1785 | PyUnicode_AsUTF8(c->u->u_name), |
| 1786 | PyUnicode_AsUTF8(PyObject_Repr(c->u->u_ste->ste_id)), |
| 1787 | PyUnicode_AsUTF8(PyObject_Repr(c->u->u_ste->ste_symbols)), |
| 1788 | PyUnicode_AsUTF8(PyObject_Repr(c->u->u_varnames)), |
| 1789 | PyUnicode_AsUTF8(PyObject_Repr(c->u->u_names)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1790 | ); |
| 1791 | Py_FatalError(buf); |
| 1792 | } |
Tim Peters | 2a7f384 | 2001-06-09 09:26:21 +0000 | [diff] [blame] | 1793 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1794 | return scope; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1795 | } |
| 1796 | |
| 1797 | static int |
| 1798 | compiler_lookup_arg(PyObject *dict, PyObject *name) |
| 1799 | { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1800 | PyObject *v; |
| 1801 | v = PyDict_GetItem(dict, name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1802 | if (v == NULL) |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 1803 | return -1; |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 1804 | return PyLong_AS_LONG(v); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1805 | } |
| 1806 | |
| 1807 | static int |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1808 | compiler_make_closure(struct compiler *c, PyCodeObject *co, Py_ssize_t flags, PyObject *qualname) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1809 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1810 | Py_ssize_t i, free = PyCode_GetNumFree(co); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 1811 | if (qualname == NULL) |
| 1812 | qualname = co->co_name; |
| 1813 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1814 | if (free) { |
| 1815 | for (i = 0; i < free; ++i) { |
| 1816 | /* Bypass com_addop_varname because it will generate |
| 1817 | LOAD_DEREF but LOAD_CLOSURE is needed. |
| 1818 | */ |
| 1819 | PyObject *name = PyTuple_GET_ITEM(co->co_freevars, i); |
| 1820 | int arg, reftype; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1821 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1822 | /* Special case: If a class contains a method with a |
| 1823 | free variable that has the same name as a method, |
| 1824 | the name will be considered free *and* local in the |
| 1825 | class. It should be handled by the closure, as |
| 1826 | well as by the normal name loookup logic. |
| 1827 | */ |
| 1828 | reftype = get_ref_type(c, name); |
| 1829 | if (reftype == CELL) |
| 1830 | arg = compiler_lookup_arg(c->u->u_cellvars, name); |
| 1831 | else /* (reftype == FREE) */ |
| 1832 | arg = compiler_lookup_arg(c->u->u_freevars, name); |
| 1833 | if (arg == -1) { |
| 1834 | fprintf(stderr, |
| 1835 | "lookup %s in %s %d %d\n" |
| 1836 | "freevars of %s: %s\n", |
| 1837 | PyUnicode_AsUTF8(PyObject_Repr(name)), |
| 1838 | PyUnicode_AsUTF8(c->u->u_name), |
| 1839 | reftype, arg, |
| 1840 | PyUnicode_AsUTF8(co->co_name), |
| 1841 | PyUnicode_AsUTF8(PyObject_Repr(co->co_freevars))); |
| 1842 | Py_FatalError("compiler_make_closure()"); |
| 1843 | } |
| 1844 | ADDOP_I(c, LOAD_CLOSURE, arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1845 | } |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1846 | flags |= 0x08; |
| 1847 | ADDOP_I(c, BUILD_TUPLE, free); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1848 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1849 | ADDOP_LOAD_CONST(c, (PyObject*)co); |
| 1850 | ADDOP_LOAD_CONST(c, qualname); |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1851 | ADDOP_I(c, MAKE_FUNCTION, flags); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1852 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1853 | } |
| 1854 | |
| 1855 | static int |
| 1856 | compiler_decorators(struct compiler *c, asdl_seq* decos) |
| 1857 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1858 | int i; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1859 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1860 | if (!decos) |
| 1861 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1862 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1863 | for (i = 0; i < asdl_seq_LEN(decos); i++) { |
| 1864 | VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); |
| 1865 | } |
| 1866 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1867 | } |
| 1868 | |
| 1869 | static int |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1870 | compiler_visit_kwonlydefaults(struct compiler *c, asdl_seq *kwonlyargs, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1871 | asdl_seq *kw_defaults) |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1872 | { |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1873 | /* Push a dict of keyword-only default values. |
| 1874 | |
| 1875 | Return 0 on error, -1 if no dict pushed, 1 if a dict is pushed. |
| 1876 | */ |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1877 | int i; |
| 1878 | PyObject *keys = NULL; |
| 1879 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1880 | for (i = 0; i < asdl_seq_LEN(kwonlyargs); i++) { |
| 1881 | arg_ty arg = asdl_seq_GET(kwonlyargs, i); |
| 1882 | expr_ty default_ = asdl_seq_GET(kw_defaults, i); |
| 1883 | if (default_) { |
Benjamin Peterson | 32c59b6 | 2012-04-17 19:53:21 -0400 | [diff] [blame] | 1884 | PyObject *mangled = _Py_Mangle(c->u->u_private, arg->arg); |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1885 | if (!mangled) { |
| 1886 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1887 | } |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1888 | if (keys == NULL) { |
| 1889 | keys = PyList_New(1); |
| 1890 | if (keys == NULL) { |
| 1891 | Py_DECREF(mangled); |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1892 | return 0; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1893 | } |
| 1894 | PyList_SET_ITEM(keys, 0, mangled); |
| 1895 | } |
| 1896 | else { |
| 1897 | int res = PyList_Append(keys, mangled); |
| 1898 | Py_DECREF(mangled); |
| 1899 | if (res == -1) { |
| 1900 | goto error; |
| 1901 | } |
| 1902 | } |
| 1903 | if (!compiler_visit_expr(c, default_)) { |
| 1904 | goto error; |
| 1905 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1906 | } |
| 1907 | } |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1908 | if (keys != NULL) { |
| 1909 | Py_ssize_t default_count = PyList_GET_SIZE(keys); |
| 1910 | PyObject *keys_tuple = PyList_AsTuple(keys); |
| 1911 | Py_DECREF(keys); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 1912 | ADDOP_LOAD_CONST_NEW(c, keys_tuple); |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1913 | ADDOP_I(c, BUILD_CONST_KEY_MAP, default_count); |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1914 | assert(default_count > 0); |
| 1915 | return 1; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1916 | } |
| 1917 | else { |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1918 | return -1; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1919 | } |
| 1920 | |
| 1921 | error: |
| 1922 | Py_XDECREF(keys); |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1923 | return 0; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 1924 | } |
| 1925 | |
| 1926 | static int |
Guido van Rossum | 95e4d58 | 2018-01-26 08:20:18 -0800 | [diff] [blame] | 1927 | compiler_visit_annexpr(struct compiler *c, expr_ty annotation) |
| 1928 | { |
Serhiy Storchaka | 64fddc4 | 2018-05-17 06:17:48 +0300 | [diff] [blame] | 1929 | ADDOP_LOAD_CONST_NEW(c, _PyAST_ExprAsUnicode(annotation)); |
Guido van Rossum | 95e4d58 | 2018-01-26 08:20:18 -0800 | [diff] [blame] | 1930 | return 1; |
| 1931 | } |
| 1932 | |
| 1933 | static int |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1934 | compiler_visit_argannotation(struct compiler *c, identifier id, |
| 1935 | expr_ty annotation, PyObject *names) |
| 1936 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1937 | if (annotation) { |
Victor Stinner | 065efc3 | 2014-02-18 22:07:56 +0100 | [diff] [blame] | 1938 | PyObject *mangled; |
Guido van Rossum | 95e4d58 | 2018-01-26 08:20:18 -0800 | [diff] [blame] | 1939 | if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) { |
| 1940 | VISIT(c, annexpr, annotation) |
| 1941 | } |
| 1942 | else { |
| 1943 | VISIT(c, expr, annotation); |
| 1944 | } |
Victor Stinner | 065efc3 | 2014-02-18 22:07:56 +0100 | [diff] [blame] | 1945 | mangled = _Py_Mangle(c->u->u_private, id); |
Yury Selivanov | 34ce99f | 2014-02-18 12:49:41 -0500 | [diff] [blame] | 1946 | if (!mangled) |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1947 | return 0; |
Yury Selivanov | 34ce99f | 2014-02-18 12:49:41 -0500 | [diff] [blame] | 1948 | if (PyList_Append(names, mangled) < 0) { |
| 1949 | Py_DECREF(mangled); |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1950 | return 0; |
Yury Selivanov | 34ce99f | 2014-02-18 12:49:41 -0500 | [diff] [blame] | 1951 | } |
| 1952 | Py_DECREF(mangled); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1953 | } |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1954 | return 1; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1955 | } |
| 1956 | |
| 1957 | static int |
| 1958 | compiler_visit_argannotations(struct compiler *c, asdl_seq* args, |
| 1959 | PyObject *names) |
| 1960 | { |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1961 | int i; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1962 | for (i = 0; i < asdl_seq_LEN(args); i++) { |
| 1963 | arg_ty arg = (arg_ty)asdl_seq_GET(args, i); |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1964 | if (!compiler_visit_argannotation( |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1965 | c, |
| 1966 | arg->arg, |
| 1967 | arg->annotation, |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1968 | names)) |
| 1969 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1970 | } |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1971 | return 1; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1972 | } |
| 1973 | |
| 1974 | static int |
| 1975 | compiler_visit_annotations(struct compiler *c, arguments_ty args, |
| 1976 | expr_ty returns) |
| 1977 | { |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1978 | /* Push arg annotation dict. |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 1979 | The expressions are evaluated out-of-order wrt the source code. |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1980 | |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 1981 | Return 0 on error, -1 if no dict pushed, 1 if a dict is pushed. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1982 | */ |
| 1983 | static identifier return_str; |
| 1984 | PyObject *names; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 1985 | Py_ssize_t len; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1986 | names = PyList_New(0); |
| 1987 | if (!names) |
Serhiy Storchaka | 694de3b | 2016-06-15 20:06:07 +0300 | [diff] [blame] | 1988 | return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 1989 | |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1990 | if (!compiler_visit_argannotations(c, args->args, names)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1991 | goto error; |
Benjamin Peterson | cda75be | 2013-03-18 10:48:58 -0700 | [diff] [blame] | 1992 | if (args->vararg && args->vararg->annotation && |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1993 | !compiler_visit_argannotation(c, args->vararg->arg, |
Benjamin Peterson | cda75be | 2013-03-18 10:48:58 -0700 | [diff] [blame] | 1994 | args->vararg->annotation, names)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1995 | goto error; |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1996 | if (!compiler_visit_argannotations(c, args->kwonlyargs, names)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1997 | goto error; |
Benjamin Peterson | cda75be | 2013-03-18 10:48:58 -0700 | [diff] [blame] | 1998 | if (args->kwarg && args->kwarg->annotation && |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 1999 | !compiler_visit_argannotation(c, args->kwarg->arg, |
Benjamin Peterson | cda75be | 2013-03-18 10:48:58 -0700 | [diff] [blame] | 2000 | args->kwarg->annotation, names)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2001 | goto error; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2002 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2003 | if (!return_str) { |
| 2004 | return_str = PyUnicode_InternFromString("return"); |
| 2005 | if (!return_str) |
| 2006 | goto error; |
| 2007 | } |
Yury Selivanov | f315c1c | 2015-07-23 09:10:44 +0300 | [diff] [blame] | 2008 | if (!compiler_visit_argannotation(c, return_str, returns, names)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2009 | goto error; |
| 2010 | } |
| 2011 | |
| 2012 | len = PyList_GET_SIZE(names); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2013 | if (len) { |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2014 | PyObject *keytuple = PyList_AsTuple(names); |
| 2015 | Py_DECREF(names); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2016 | ADDOP_LOAD_CONST_NEW(c, keytuple); |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2017 | ADDOP_I(c, BUILD_CONST_KEY_MAP, len); |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2018 | return 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2019 | } |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2020 | else { |
| 2021 | Py_DECREF(names); |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2022 | return -1; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2023 | } |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2024 | |
| 2025 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2026 | Py_DECREF(names); |
Serhiy Storchaka | 694de3b | 2016-06-15 20:06:07 +0300 | [diff] [blame] | 2027 | return 0; |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 2028 | } |
| 2029 | |
| 2030 | static int |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2031 | compiler_visit_defaults(struct compiler *c, arguments_ty args) |
| 2032 | { |
| 2033 | VISIT_SEQ(c, expr, args->defaults); |
| 2034 | ADDOP_I(c, BUILD_TUPLE, asdl_seq_LEN(args->defaults)); |
| 2035 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2036 | } |
| 2037 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2038 | static Py_ssize_t |
| 2039 | compiler_default_arguments(struct compiler *c, arguments_ty args) |
| 2040 | { |
| 2041 | Py_ssize_t funcflags = 0; |
| 2042 | if (args->defaults && asdl_seq_LEN(args->defaults) > 0) { |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2043 | if (!compiler_visit_defaults(c, args)) |
| 2044 | return -1; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2045 | funcflags |= 0x01; |
| 2046 | } |
| 2047 | if (args->kwonlyargs) { |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2048 | int res = compiler_visit_kwonlydefaults(c, args->kwonlyargs, |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2049 | args->kw_defaults); |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2050 | if (res == 0) { |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2051 | return -1; |
| 2052 | } |
| 2053 | else if (res > 0) { |
| 2054 | funcflags |= 0x02; |
| 2055 | } |
| 2056 | } |
| 2057 | return funcflags; |
| 2058 | } |
| 2059 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2060 | static int |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2061 | compiler_function(struct compiler *c, stmt_ty s, int is_async) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2062 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2063 | PyCodeObject *co; |
Serhiy Storchaka | 143ce5c | 2018-05-30 10:56:16 +0300 | [diff] [blame] | 2064 | PyObject *qualname, *docstring = NULL; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2065 | arguments_ty args; |
| 2066 | expr_ty returns; |
| 2067 | identifier name; |
| 2068 | asdl_seq* decos; |
| 2069 | asdl_seq *body; |
INADA Naoki | cb41b27 | 2017-02-23 00:31:59 +0900 | [diff] [blame] | 2070 | Py_ssize_t i, funcflags; |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2071 | int annotations; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2072 | int scope_type; |
Serhiy Storchaka | 95b6acf | 2018-10-30 13:16:02 +0200 | [diff] [blame] | 2073 | int firstlineno; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2074 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2075 | if (is_async) { |
| 2076 | assert(s->kind == AsyncFunctionDef_kind); |
| 2077 | |
| 2078 | args = s->v.AsyncFunctionDef.args; |
| 2079 | returns = s->v.AsyncFunctionDef.returns; |
| 2080 | decos = s->v.AsyncFunctionDef.decorator_list; |
| 2081 | name = s->v.AsyncFunctionDef.name; |
| 2082 | body = s->v.AsyncFunctionDef.body; |
| 2083 | |
| 2084 | scope_type = COMPILER_SCOPE_ASYNC_FUNCTION; |
| 2085 | } else { |
| 2086 | assert(s->kind == FunctionDef_kind); |
| 2087 | |
| 2088 | args = s->v.FunctionDef.args; |
| 2089 | returns = s->v.FunctionDef.returns; |
| 2090 | decos = s->v.FunctionDef.decorator_list; |
| 2091 | name = s->v.FunctionDef.name; |
| 2092 | body = s->v.FunctionDef.body; |
| 2093 | |
| 2094 | scope_type = COMPILER_SCOPE_FUNCTION; |
| 2095 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2096 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2097 | if (!compiler_decorators(c, decos)) |
| 2098 | return 0; |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 2099 | |
Serhiy Storchaka | 95b6acf | 2018-10-30 13:16:02 +0200 | [diff] [blame] | 2100 | firstlineno = s->lineno; |
| 2101 | if (asdl_seq_LEN(decos)) { |
| 2102 | firstlineno = ((expr_ty)asdl_seq_GET(decos, 0))->lineno; |
| 2103 | } |
| 2104 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2105 | funcflags = compiler_default_arguments(c, args); |
| 2106 | if (funcflags == -1) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2107 | return 0; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2108 | } |
| 2109 | |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2110 | annotations = compiler_visit_annotations(c, args, returns); |
| 2111 | if (annotations == 0) { |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2112 | return 0; |
| 2113 | } |
Serhiy Storchaka | 607f8a5 | 2016-06-15 20:07:53 +0300 | [diff] [blame] | 2114 | else if (annotations > 0) { |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2115 | funcflags |= 0x04; |
| 2116 | } |
| 2117 | |
Serhiy Storchaka | 95b6acf | 2018-10-30 13:16:02 +0200 | [diff] [blame] | 2118 | if (!compiler_enter_scope(c, name, scope_type, (void *)s, firstlineno)) { |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2119 | return 0; |
| 2120 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2121 | |
INADA Naoki | cb41b27 | 2017-02-23 00:31:59 +0900 | [diff] [blame] | 2122 | /* if not -OO mode, add docstring */ |
Serhiy Storchaka | 143ce5c | 2018-05-30 10:56:16 +0300 | [diff] [blame] | 2123 | if (c->c_optimize < 2) { |
| 2124 | docstring = _PyAST_GetDocString(body); |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 2125 | } |
Serhiy Storchaka | 143ce5c | 2018-05-30 10:56:16 +0300 | [diff] [blame] | 2126 | if (compiler_add_const(c, docstring ? docstring : Py_None) < 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2127 | compiler_exit_scope(c); |
| 2128 | return 0; |
| 2129 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2130 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2131 | c->u->u_argcount = asdl_seq_LEN(args->args); |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 2132 | c->u->u_posonlyargcount = asdl_seq_LEN(args->posonlyargs); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2133 | c->u->u_kwonlyargcount = asdl_seq_LEN(args->kwonlyargs); |
INADA Naoki | cb41b27 | 2017-02-23 00:31:59 +0900 | [diff] [blame] | 2134 | VISIT_SEQ_IN_SCOPE(c, stmt, body); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2135 | co = assemble(c, 1); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 2136 | qualname = c->u->u_qualname; |
| 2137 | Py_INCREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2138 | compiler_exit_scope(c); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 2139 | if (co == NULL) { |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2140 | Py_XDECREF(qualname); |
| 2141 | Py_XDECREF(co); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2142 | return 0; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2143 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2144 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2145 | compiler_make_closure(c, co, funcflags, qualname); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2146 | Py_DECREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2147 | Py_DECREF(co); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2148 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2149 | /* decorators */ |
| 2150 | for (i = 0; i < asdl_seq_LEN(decos); i++) { |
| 2151 | ADDOP_I(c, CALL_FUNCTION, 1); |
| 2152 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2153 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2154 | return compiler_nameop(c, name, Store); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2155 | } |
| 2156 | |
| 2157 | static int |
| 2158 | compiler_class(struct compiler *c, stmt_ty s) |
| 2159 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2160 | PyCodeObject *co; |
| 2161 | PyObject *str; |
Serhiy Storchaka | 95b6acf | 2018-10-30 13:16:02 +0200 | [diff] [blame] | 2162 | int i, firstlineno; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2163 | asdl_seq* decos = s->v.ClassDef.decorator_list; |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 2164 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2165 | if (!compiler_decorators(c, decos)) |
| 2166 | return 0; |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 2167 | |
Serhiy Storchaka | 95b6acf | 2018-10-30 13:16:02 +0200 | [diff] [blame] | 2168 | firstlineno = s->lineno; |
| 2169 | if (asdl_seq_LEN(decos)) { |
| 2170 | firstlineno = ((expr_ty)asdl_seq_GET(decos, 0))->lineno; |
| 2171 | } |
| 2172 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2173 | /* ultimately generate code for: |
| 2174 | <name> = __build_class__(<func>, <name>, *<bases>, **<keywords>) |
| 2175 | where: |
| 2176 | <func> is a function/closure created from the class body; |
| 2177 | it has a single argument (__locals__) where the dict |
| 2178 | (or MutableSequence) representing the locals is passed |
| 2179 | <name> is the class name |
| 2180 | <bases> is the positional arguments and *varargs argument |
| 2181 | <keywords> is the keyword arguments and **kwds argument |
| 2182 | This borrows from compiler_call. |
| 2183 | */ |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame] | 2184 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2185 | /* 1. compile the class body into a code object */ |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2186 | if (!compiler_enter_scope(c, s->v.ClassDef.name, |
Serhiy Storchaka | 95b6acf | 2018-10-30 13:16:02 +0200 | [diff] [blame] | 2187 | COMPILER_SCOPE_CLASS, (void *)s, firstlineno)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2188 | return 0; |
| 2189 | /* this block represents what we do in the new scope */ |
| 2190 | { |
| 2191 | /* use the class name for name mangling */ |
| 2192 | Py_INCREF(s->v.ClassDef.name); |
Serhiy Storchaka | 4884271 | 2016-04-06 09:45:48 +0300 | [diff] [blame] | 2193 | Py_XSETREF(c->u->u_private, s->v.ClassDef.name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2194 | /* load (global) __name__ ... */ |
| 2195 | str = PyUnicode_InternFromString("__name__"); |
| 2196 | if (!str || !compiler_nameop(c, str, Load)) { |
| 2197 | Py_XDECREF(str); |
| 2198 | compiler_exit_scope(c); |
| 2199 | return 0; |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 2200 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2201 | Py_DECREF(str); |
| 2202 | /* ... and store it as __module__ */ |
| 2203 | str = PyUnicode_InternFromString("__module__"); |
| 2204 | if (!str || !compiler_nameop(c, str, Store)) { |
| 2205 | Py_XDECREF(str); |
| 2206 | compiler_exit_scope(c); |
| 2207 | return 0; |
| 2208 | } |
| 2209 | Py_DECREF(str); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 2210 | assert(c->u->u_qualname); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2211 | ADDOP_LOAD_CONST(c, c->u->u_qualname); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2212 | str = PyUnicode_InternFromString("__qualname__"); |
| 2213 | if (!str || !compiler_nameop(c, str, Store)) { |
| 2214 | Py_XDECREF(str); |
| 2215 | compiler_exit_scope(c); |
| 2216 | return 0; |
| 2217 | } |
| 2218 | Py_DECREF(str); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2219 | /* compile the body proper */ |
Serhiy Storchaka | 73cbe7a | 2018-05-29 12:04:55 +0300 | [diff] [blame] | 2220 | if (!compiler_body(c, s->v.ClassDef.body)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2221 | compiler_exit_scope(c); |
| 2222 | return 0; |
| 2223 | } |
Nick Coghlan | 19d2467 | 2016-12-05 16:47:55 +1000 | [diff] [blame] | 2224 | /* Return __classcell__ if it is referenced, otherwise return None */ |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 2225 | if (c->u->u_ste->ste_needs_class_closure) { |
Nick Coghlan | 19d2467 | 2016-12-05 16:47:55 +1000 | [diff] [blame] | 2226 | /* Store __classcell__ into class namespace & return it */ |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 2227 | str = PyUnicode_InternFromString("__class__"); |
| 2228 | if (str == NULL) { |
| 2229 | compiler_exit_scope(c); |
| 2230 | return 0; |
| 2231 | } |
| 2232 | i = compiler_lookup_arg(c->u->u_cellvars, str); |
| 2233 | Py_DECREF(str); |
Victor Stinner | 98e818b | 2013-11-05 18:07:34 +0100 | [diff] [blame] | 2234 | if (i < 0) { |
| 2235 | compiler_exit_scope(c); |
| 2236 | return 0; |
| 2237 | } |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 2238 | assert(i == 0); |
Nick Coghlan | 944368e | 2016-09-11 14:45:49 +1000 | [diff] [blame] | 2239 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2240 | ADDOP_I(c, LOAD_CLOSURE, i); |
Nick Coghlan | 19d2467 | 2016-12-05 16:47:55 +1000 | [diff] [blame] | 2241 | ADDOP(c, DUP_TOP); |
Nick Coghlan | 944368e | 2016-09-11 14:45:49 +1000 | [diff] [blame] | 2242 | str = PyUnicode_InternFromString("__classcell__"); |
| 2243 | if (!str || !compiler_nameop(c, str, Store)) { |
| 2244 | Py_XDECREF(str); |
| 2245 | compiler_exit_scope(c); |
| 2246 | return 0; |
| 2247 | } |
| 2248 | Py_DECREF(str); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2249 | } |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 2250 | else { |
Nick Coghlan | 19d2467 | 2016-12-05 16:47:55 +1000 | [diff] [blame] | 2251 | /* No methods referenced __class__, so just return None */ |
Serhiy Storchaka | 5ab81d7 | 2016-12-16 16:18:57 +0200 | [diff] [blame] | 2252 | assert(PyDict_GET_SIZE(c->u->u_cellvars) == 0); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2253 | ADDOP_LOAD_CONST(c, Py_None); |
Benjamin Peterson | 312595c | 2013-05-15 15:26:42 -0500 | [diff] [blame] | 2254 | } |
Nick Coghlan | 19d2467 | 2016-12-05 16:47:55 +1000 | [diff] [blame] | 2255 | ADDOP_IN_SCOPE(c, RETURN_VALUE); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2256 | /* create the code object */ |
| 2257 | co = assemble(c, 1); |
| 2258 | } |
| 2259 | /* leave the new scope */ |
| 2260 | compiler_exit_scope(c); |
| 2261 | if (co == NULL) |
| 2262 | return 0; |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 2263 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2264 | /* 2. load the 'build_class' function */ |
| 2265 | ADDOP(c, LOAD_BUILD_CLASS); |
| 2266 | |
| 2267 | /* 3. load a function (or closure) made from the code object */ |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2268 | compiler_make_closure(c, co, 0, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2269 | Py_DECREF(co); |
| 2270 | |
| 2271 | /* 4. load class name */ |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2272 | ADDOP_LOAD_CONST(c, s->v.ClassDef.name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2273 | |
| 2274 | /* 5. generate the rest of the code for the call */ |
| 2275 | if (!compiler_call_helper(c, 2, |
| 2276 | s->v.ClassDef.bases, |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2277 | s->v.ClassDef.keywords)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2278 | return 0; |
| 2279 | |
| 2280 | /* 6. apply decorators */ |
| 2281 | for (i = 0; i < asdl_seq_LEN(decos); i++) { |
| 2282 | ADDOP_I(c, CALL_FUNCTION, 1); |
| 2283 | } |
| 2284 | |
| 2285 | /* 7. store into <name> */ |
| 2286 | if (!compiler_nameop(c, s->v.ClassDef.name, Store)) |
| 2287 | return 0; |
| 2288 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2289 | } |
| 2290 | |
Serhiy Storchaka | 3bcbedc | 2019-01-18 07:47:48 +0200 | [diff] [blame] | 2291 | /* Return 0 if the expression is a constant value except named singletons. |
| 2292 | Return 1 otherwise. */ |
| 2293 | static int |
| 2294 | check_is_arg(expr_ty e) |
| 2295 | { |
| 2296 | if (e->kind != Constant_kind) { |
| 2297 | return 1; |
| 2298 | } |
| 2299 | PyObject *value = e->v.Constant.value; |
| 2300 | return (value == Py_None |
| 2301 | || value == Py_False |
| 2302 | || value == Py_True |
| 2303 | || value == Py_Ellipsis); |
| 2304 | } |
| 2305 | |
| 2306 | /* Check operands of identity chacks ("is" and "is not"). |
| 2307 | Emit a warning if any operand is a constant except named singletons. |
| 2308 | Return 0 on error. |
| 2309 | */ |
| 2310 | static int |
| 2311 | check_compare(struct compiler *c, expr_ty e) |
| 2312 | { |
| 2313 | Py_ssize_t i, n; |
| 2314 | int left = check_is_arg(e->v.Compare.left); |
| 2315 | n = asdl_seq_LEN(e->v.Compare.ops); |
| 2316 | for (i = 0; i < n; i++) { |
| 2317 | cmpop_ty op = (cmpop_ty)asdl_seq_GET(e->v.Compare.ops, i); |
| 2318 | int right = check_is_arg((expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); |
| 2319 | if (op == Is || op == IsNot) { |
| 2320 | if (!right || !left) { |
| 2321 | const char *msg = (op == Is) |
| 2322 | ? "\"is\" with a literal. Did you mean \"==\"?" |
| 2323 | : "\"is not\" with a literal. Did you mean \"!=\"?"; |
| 2324 | return compiler_warn(c, msg); |
| 2325 | } |
| 2326 | } |
| 2327 | left = right; |
| 2328 | } |
| 2329 | return 1; |
| 2330 | } |
| 2331 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2332 | static int |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 2333 | cmpop(cmpop_ty op) |
| 2334 | { |
| 2335 | switch (op) { |
| 2336 | case Eq: |
| 2337 | return PyCmp_EQ; |
| 2338 | case NotEq: |
| 2339 | return PyCmp_NE; |
| 2340 | case Lt: |
| 2341 | return PyCmp_LT; |
| 2342 | case LtE: |
| 2343 | return PyCmp_LE; |
| 2344 | case Gt: |
| 2345 | return PyCmp_GT; |
| 2346 | case GtE: |
| 2347 | return PyCmp_GE; |
| 2348 | case Is: |
| 2349 | return PyCmp_IS; |
| 2350 | case IsNot: |
| 2351 | return PyCmp_IS_NOT; |
| 2352 | case In: |
| 2353 | return PyCmp_IN; |
| 2354 | case NotIn: |
| 2355 | return PyCmp_NOT_IN; |
| 2356 | default: |
| 2357 | return PyCmp_BAD; |
| 2358 | } |
| 2359 | } |
| 2360 | |
| 2361 | static int |
| 2362 | compiler_jump_if(struct compiler *c, expr_ty e, basicblock *next, int cond) |
| 2363 | { |
| 2364 | switch (e->kind) { |
| 2365 | case UnaryOp_kind: |
| 2366 | if (e->v.UnaryOp.op == Not) |
| 2367 | return compiler_jump_if(c, e->v.UnaryOp.operand, next, !cond); |
| 2368 | /* fallback to general implementation */ |
| 2369 | break; |
| 2370 | case BoolOp_kind: { |
| 2371 | asdl_seq *s = e->v.BoolOp.values; |
| 2372 | Py_ssize_t i, n = asdl_seq_LEN(s) - 1; |
| 2373 | assert(n >= 0); |
| 2374 | int cond2 = e->v.BoolOp.op == Or; |
| 2375 | basicblock *next2 = next; |
| 2376 | if (!cond2 != !cond) { |
| 2377 | next2 = compiler_new_block(c); |
| 2378 | if (next2 == NULL) |
| 2379 | return 0; |
| 2380 | } |
| 2381 | for (i = 0; i < n; ++i) { |
| 2382 | if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, i), next2, cond2)) |
| 2383 | return 0; |
| 2384 | } |
| 2385 | if (!compiler_jump_if(c, (expr_ty)asdl_seq_GET(s, n), next, cond)) |
| 2386 | return 0; |
| 2387 | if (next2 != next) |
| 2388 | compiler_use_next_block(c, next2); |
| 2389 | return 1; |
| 2390 | } |
| 2391 | case IfExp_kind: { |
| 2392 | basicblock *end, *next2; |
| 2393 | end = compiler_new_block(c); |
| 2394 | if (end == NULL) |
| 2395 | return 0; |
| 2396 | next2 = compiler_new_block(c); |
| 2397 | if (next2 == NULL) |
| 2398 | return 0; |
| 2399 | if (!compiler_jump_if(c, e->v.IfExp.test, next2, 0)) |
| 2400 | return 0; |
| 2401 | if (!compiler_jump_if(c, e->v.IfExp.body, next, cond)) |
| 2402 | return 0; |
| 2403 | ADDOP_JREL(c, JUMP_FORWARD, end); |
| 2404 | compiler_use_next_block(c, next2); |
| 2405 | if (!compiler_jump_if(c, e->v.IfExp.orelse, next, cond)) |
| 2406 | return 0; |
| 2407 | compiler_use_next_block(c, end); |
| 2408 | return 1; |
| 2409 | } |
| 2410 | case Compare_kind: { |
| 2411 | Py_ssize_t i, n = asdl_seq_LEN(e->v.Compare.ops) - 1; |
| 2412 | if (n > 0) { |
Serhiy Storchaka | 4583525 | 2019-02-16 08:29:46 +0200 | [diff] [blame] | 2413 | if (!check_compare(c, e)) { |
| 2414 | return 0; |
| 2415 | } |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 2416 | basicblock *cleanup = compiler_new_block(c); |
| 2417 | if (cleanup == NULL) |
| 2418 | return 0; |
| 2419 | VISIT(c, expr, e->v.Compare.left); |
| 2420 | for (i = 0; i < n; i++) { |
| 2421 | VISIT(c, expr, |
| 2422 | (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); |
| 2423 | ADDOP(c, DUP_TOP); |
| 2424 | ADDOP(c, ROT_THREE); |
| 2425 | ADDOP_I(c, COMPARE_OP, |
| 2426 | cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, i)))); |
| 2427 | ADDOP_JABS(c, POP_JUMP_IF_FALSE, cleanup); |
| 2428 | NEXT_BLOCK(c); |
| 2429 | } |
| 2430 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); |
| 2431 | ADDOP_I(c, COMPARE_OP, |
| 2432 | cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, n)))); |
| 2433 | ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); |
| 2434 | basicblock *end = compiler_new_block(c); |
| 2435 | if (end == NULL) |
| 2436 | return 0; |
| 2437 | ADDOP_JREL(c, JUMP_FORWARD, end); |
| 2438 | compiler_use_next_block(c, cleanup); |
| 2439 | ADDOP(c, POP_TOP); |
| 2440 | if (!cond) { |
| 2441 | ADDOP_JREL(c, JUMP_FORWARD, next); |
| 2442 | } |
| 2443 | compiler_use_next_block(c, end); |
| 2444 | return 1; |
| 2445 | } |
| 2446 | /* fallback to general implementation */ |
| 2447 | break; |
| 2448 | } |
| 2449 | default: |
| 2450 | /* fallback to general implementation */ |
| 2451 | break; |
| 2452 | } |
| 2453 | |
| 2454 | /* general implementation */ |
| 2455 | VISIT(c, expr, e); |
| 2456 | ADDOP_JABS(c, cond ? POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE, next); |
| 2457 | return 1; |
| 2458 | } |
| 2459 | |
| 2460 | static int |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 2461 | compiler_ifexp(struct compiler *c, expr_ty e) |
| 2462 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2463 | basicblock *end, *next; |
| 2464 | |
| 2465 | assert(e->kind == IfExp_kind); |
| 2466 | end = compiler_new_block(c); |
| 2467 | if (end == NULL) |
| 2468 | return 0; |
| 2469 | next = compiler_new_block(c); |
| 2470 | if (next == NULL) |
| 2471 | return 0; |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 2472 | if (!compiler_jump_if(c, e->v.IfExp.test, next, 0)) |
| 2473 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2474 | VISIT(c, expr, e->v.IfExp.body); |
| 2475 | ADDOP_JREL(c, JUMP_FORWARD, end); |
| 2476 | compiler_use_next_block(c, next); |
| 2477 | VISIT(c, expr, e->v.IfExp.orelse); |
| 2478 | compiler_use_next_block(c, end); |
| 2479 | return 1; |
Thomas Wouters | dca3b9c | 2006-02-27 00:24:13 +0000 | [diff] [blame] | 2480 | } |
| 2481 | |
| 2482 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2483 | compiler_lambda(struct compiler *c, expr_ty e) |
| 2484 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2485 | PyCodeObject *co; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2486 | PyObject *qualname; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2487 | static identifier name; |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2488 | Py_ssize_t funcflags; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2489 | arguments_ty args = e->v.Lambda.args; |
| 2490 | assert(e->kind == Lambda_kind); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2491 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2492 | if (!name) { |
| 2493 | name = PyUnicode_InternFromString("<lambda>"); |
| 2494 | if (!name) |
| 2495 | return 0; |
| 2496 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2497 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2498 | funcflags = compiler_default_arguments(c, args); |
| 2499 | if (funcflags == -1) { |
| 2500 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2501 | } |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2502 | |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 2503 | if (!compiler_enter_scope(c, name, COMPILER_SCOPE_LAMBDA, |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2504 | (void *)e, e->lineno)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2505 | return 0; |
Neal Norwitz | 4737b23 | 2005-11-19 23:58:29 +0000 | [diff] [blame] | 2506 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2507 | /* Make None the first constant, so the lambda can't have a |
| 2508 | docstring. */ |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2509 | if (compiler_add_const(c, Py_None) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2510 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2511 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2512 | c->u->u_argcount = asdl_seq_LEN(args->args); |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 2513 | c->u->u_posonlyargcount = asdl_seq_LEN(args->posonlyargs); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2514 | c->u->u_kwonlyargcount = asdl_seq_LEN(args->kwonlyargs); |
| 2515 | VISIT_IN_SCOPE(c, expr, e->v.Lambda.body); |
| 2516 | if (c->u->u_ste->ste_generator) { |
Serhiy Storchaka | c775ad6 | 2015-03-11 18:20:35 +0200 | [diff] [blame] | 2517 | co = assemble(c, 0); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2518 | } |
| 2519 | else { |
| 2520 | ADDOP_IN_SCOPE(c, RETURN_VALUE); |
Serhiy Storchaka | c775ad6 | 2015-03-11 18:20:35 +0200 | [diff] [blame] | 2521 | co = assemble(c, 1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2522 | } |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 2523 | qualname = c->u->u_qualname; |
| 2524 | Py_INCREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2525 | compiler_exit_scope(c); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 2526 | if (co == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2527 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2528 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 2529 | compiler_make_closure(c, co, funcflags, qualname); |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 2530 | Py_DECREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2531 | Py_DECREF(co); |
| 2532 | |
| 2533 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2534 | } |
| 2535 | |
| 2536 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2537 | compiler_if(struct compiler *c, stmt_ty s) |
| 2538 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2539 | basicblock *end, *next; |
| 2540 | int constant; |
| 2541 | assert(s->kind == If_kind); |
| 2542 | end = compiler_new_block(c); |
| 2543 | if (end == NULL) |
| 2544 | return 0; |
| 2545 | |
Serhiy Storchaka | 3dfbaf5 | 2017-12-25 12:47:50 +0200 | [diff] [blame] | 2546 | constant = expr_constant(s->v.If.test); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2547 | /* constant = 0: "if 0" |
| 2548 | * constant = 1: "if 1", "if 2", ... |
| 2549 | * constant = -1: rest */ |
| 2550 | if (constant == 0) { |
| 2551 | if (s->v.If.orelse) |
| 2552 | VISIT_SEQ(c, stmt, s->v.If.orelse); |
| 2553 | } else if (constant == 1) { |
| 2554 | VISIT_SEQ(c, stmt, s->v.If.body); |
| 2555 | } else { |
Antoine Pitrou | e7811fc | 2014-09-18 03:06:50 +0200 | [diff] [blame] | 2556 | if (asdl_seq_LEN(s->v.If.orelse)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2557 | next = compiler_new_block(c); |
| 2558 | if (next == NULL) |
| 2559 | return 0; |
| 2560 | } |
| 2561 | else |
| 2562 | next = end; |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 2563 | if (!compiler_jump_if(c, s->v.If.test, next, 0)) |
| 2564 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2565 | VISIT_SEQ(c, stmt, s->v.If.body); |
Antoine Pitrou | e7811fc | 2014-09-18 03:06:50 +0200 | [diff] [blame] | 2566 | if (asdl_seq_LEN(s->v.If.orelse)) { |
| 2567 | ADDOP_JREL(c, JUMP_FORWARD, end); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2568 | compiler_use_next_block(c, next); |
| 2569 | VISIT_SEQ(c, stmt, s->v.If.orelse); |
| 2570 | } |
| 2571 | } |
| 2572 | compiler_use_next_block(c, end); |
| 2573 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2574 | } |
| 2575 | |
| 2576 | static int |
| 2577 | compiler_for(struct compiler *c, stmt_ty s) |
| 2578 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2579 | basicblock *start, *cleanup, *end; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2580 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2581 | start = compiler_new_block(c); |
| 2582 | cleanup = compiler_new_block(c); |
| 2583 | end = compiler_new_block(c); |
| 2584 | if (start == NULL || end == NULL || cleanup == NULL) |
| 2585 | return 0; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2586 | |
| 2587 | if (!compiler_push_fblock(c, FOR_LOOP, start, end)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2588 | return 0; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2589 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2590 | VISIT(c, expr, s->v.For.iter); |
| 2591 | ADDOP(c, GET_ITER); |
| 2592 | compiler_use_next_block(c, start); |
| 2593 | ADDOP_JREL(c, FOR_ITER, cleanup); |
| 2594 | VISIT(c, expr, s->v.For.target); |
| 2595 | VISIT_SEQ(c, stmt, s->v.For.body); |
| 2596 | ADDOP_JABS(c, JUMP_ABSOLUTE, start); |
| 2597 | compiler_use_next_block(c, cleanup); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2598 | |
| 2599 | compiler_pop_fblock(c, FOR_LOOP, start); |
| 2600 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2601 | VISIT_SEQ(c, stmt, s->v.For.orelse); |
| 2602 | compiler_use_next_block(c, end); |
| 2603 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2604 | } |
| 2605 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2606 | |
| 2607 | static int |
| 2608 | compiler_async_for(struct compiler *c, stmt_ty s) |
| 2609 | { |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 2610 | basicblock *start, *except, *end; |
Zsolt Dollenstein | e239650 | 2018-04-27 08:58:56 -0700 | [diff] [blame] | 2611 | if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION) { |
| 2612 | return compiler_error(c, "'async for' outside async function"); |
| 2613 | } |
| 2614 | |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 2615 | start = compiler_new_block(c); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2616 | except = compiler_new_block(c); |
| 2617 | end = compiler_new_block(c); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2618 | |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 2619 | if (start == NULL || except == NULL || end == NULL) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2620 | return 0; |
| 2621 | |
| 2622 | VISIT(c, expr, s->v.AsyncFor.iter); |
| 2623 | ADDOP(c, GET_AITER); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2624 | |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 2625 | compiler_use_next_block(c, start); |
| 2626 | if (!compiler_push_fblock(c, FOR_LOOP, start, end)) |
| 2627 | return 0; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2628 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2629 | /* SETUP_FINALLY to guard the __anext__ call */ |
| 2630 | ADDOP_JREL(c, SETUP_FINALLY, except); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2631 | ADDOP(c, GET_ANEXT); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2632 | ADDOP_LOAD_CONST(c, Py_None); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2633 | ADDOP(c, YIELD_FROM); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2634 | ADDOP(c, POP_BLOCK); /* for SETUP_FINALLY */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2635 | |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 2636 | /* Success block for __anext__ */ |
| 2637 | VISIT(c, expr, s->v.AsyncFor.target); |
| 2638 | VISIT_SEQ(c, stmt, s->v.AsyncFor.body); |
| 2639 | ADDOP_JABS(c, JUMP_ABSOLUTE, start); |
| 2640 | |
| 2641 | compiler_pop_fblock(c, FOR_LOOP, start); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2642 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2643 | /* Except block for __anext__ */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2644 | compiler_use_next_block(c, except); |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 2645 | ADDOP(c, END_ASYNC_FOR); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2646 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2647 | /* `else` block */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2648 | VISIT_SEQ(c, stmt, s->v.For.orelse); |
| 2649 | |
| 2650 | compiler_use_next_block(c, end); |
| 2651 | |
| 2652 | return 1; |
| 2653 | } |
| 2654 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2655 | static int |
| 2656 | compiler_while(struct compiler *c, stmt_ty s) |
| 2657 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2658 | basicblock *loop, *orelse, *end, *anchor = NULL; |
Serhiy Storchaka | 3dfbaf5 | 2017-12-25 12:47:50 +0200 | [diff] [blame] | 2659 | int constant = expr_constant(s->v.While.test); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2660 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2661 | if (constant == 0) { |
| 2662 | if (s->v.While.orelse) |
| 2663 | VISIT_SEQ(c, stmt, s->v.While.orelse); |
| 2664 | return 1; |
| 2665 | } |
| 2666 | loop = compiler_new_block(c); |
| 2667 | end = compiler_new_block(c); |
| 2668 | if (constant == -1) { |
| 2669 | anchor = compiler_new_block(c); |
| 2670 | if (anchor == NULL) |
| 2671 | return 0; |
| 2672 | } |
| 2673 | if (loop == NULL || end == NULL) |
| 2674 | return 0; |
| 2675 | if (s->v.While.orelse) { |
| 2676 | orelse = compiler_new_block(c); |
| 2677 | if (orelse == NULL) |
| 2678 | return 0; |
| 2679 | } |
| 2680 | else |
| 2681 | orelse = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2682 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2683 | compiler_use_next_block(c, loop); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2684 | if (!compiler_push_fblock(c, WHILE_LOOP, loop, end)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2685 | return 0; |
| 2686 | if (constant == -1) { |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 2687 | if (!compiler_jump_if(c, s->v.While.test, anchor, 0)) |
| 2688 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2689 | } |
| 2690 | VISIT_SEQ(c, stmt, s->v.While.body); |
| 2691 | ADDOP_JABS(c, JUMP_ABSOLUTE, loop); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2692 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2693 | /* XXX should the two POP instructions be in a separate block |
| 2694 | if there is no else clause ? |
| 2695 | */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2696 | |
Benjamin Peterson | 3cda0ed | 2014-12-13 16:06:19 -0500 | [diff] [blame] | 2697 | if (constant == -1) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2698 | compiler_use_next_block(c, anchor); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2699 | compiler_pop_fblock(c, WHILE_LOOP, loop); |
| 2700 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2701 | if (orelse != NULL) /* what if orelse is just pass? */ |
| 2702 | VISIT_SEQ(c, stmt, s->v.While.orelse); |
| 2703 | compiler_use_next_block(c, end); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2704 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2705 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2706 | } |
| 2707 | |
| 2708 | static int |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2709 | compiler_return(struct compiler *c, stmt_ty s) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2710 | { |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2711 | int preserve_tos = ((s->v.Return.value != NULL) && |
Serhiy Storchaka | 3f22811 | 2018-09-27 17:42:37 +0300 | [diff] [blame] | 2712 | (s->v.Return.value->kind != Constant_kind)); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2713 | if (c->u->u_ste->ste_type != FunctionBlock) |
| 2714 | return compiler_error(c, "'return' outside function"); |
| 2715 | if (s->v.Return.value != NULL && |
| 2716 | c->u->u_ste->ste_coroutine && c->u->u_ste->ste_generator) |
| 2717 | { |
| 2718 | return compiler_error( |
| 2719 | c, "'return' with value in async generator"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2720 | } |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2721 | if (preserve_tos) { |
| 2722 | VISIT(c, expr, s->v.Return.value); |
| 2723 | } |
| 2724 | for (int depth = c->u->u_nfblocks; depth--;) { |
| 2725 | struct fblockinfo *info = &c->u->u_fblock[depth]; |
| 2726 | |
| 2727 | if (!compiler_unwind_fblock(c, info, preserve_tos)) |
| 2728 | return 0; |
| 2729 | } |
| 2730 | if (s->v.Return.value == NULL) { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2731 | ADDOP_LOAD_CONST(c, Py_None); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2732 | } |
| 2733 | else if (!preserve_tos) { |
| 2734 | VISIT(c, expr, s->v.Return.value); |
| 2735 | } |
| 2736 | ADDOP(c, RETURN_VALUE); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2737 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2738 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2739 | } |
| 2740 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2741 | static int |
| 2742 | compiler_break(struct compiler *c) |
| 2743 | { |
| 2744 | for (int depth = c->u->u_nfblocks; depth--;) { |
| 2745 | struct fblockinfo *info = &c->u->u_fblock[depth]; |
| 2746 | |
| 2747 | if (!compiler_unwind_fblock(c, info, 0)) |
| 2748 | return 0; |
| 2749 | if (info->fb_type == WHILE_LOOP || info->fb_type == FOR_LOOP) { |
| 2750 | ADDOP_JABS(c, JUMP_ABSOLUTE, info->fb_exit); |
| 2751 | return 1; |
| 2752 | } |
| 2753 | } |
| 2754 | return compiler_error(c, "'break' outside loop"); |
| 2755 | } |
| 2756 | |
| 2757 | static int |
| 2758 | compiler_continue(struct compiler *c) |
| 2759 | { |
| 2760 | for (int depth = c->u->u_nfblocks; depth--;) { |
| 2761 | struct fblockinfo *info = &c->u->u_fblock[depth]; |
| 2762 | |
| 2763 | if (info->fb_type == WHILE_LOOP || info->fb_type == FOR_LOOP) { |
| 2764 | ADDOP_JABS(c, JUMP_ABSOLUTE, info->fb_block); |
| 2765 | return 1; |
| 2766 | } |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2767 | if (!compiler_unwind_fblock(c, info, 0)) |
| 2768 | return 0; |
| 2769 | } |
| 2770 | return compiler_error(c, "'continue' not properly in loop"); |
| 2771 | } |
| 2772 | |
| 2773 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2774 | /* Code generated for "try: <body> finally: <finalbody>" is as follows: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2775 | |
| 2776 | SETUP_FINALLY L |
| 2777 | <code for body> |
| 2778 | POP_BLOCK |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2779 | BEGIN_FINALLY |
| 2780 | L: |
| 2781 | <code for finalbody> |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2782 | END_FINALLY |
| 2783 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2784 | The special instructions use the block stack. Each block |
| 2785 | stack entry contains the instruction that created it (here |
| 2786 | SETUP_FINALLY), the level of the value stack at the time the |
| 2787 | block stack entry was created, and a label (here L). |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2788 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2789 | SETUP_FINALLY: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2790 | Pushes the current value stack level and the label |
| 2791 | onto the block stack. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2792 | POP_BLOCK: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2793 | Pops en entry from the block stack. |
| 2794 | BEGIN_FINALLY |
| 2795 | Pushes NULL onto the value stack. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2796 | END_FINALLY: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2797 | Pops 1 (NULL or int) or 6 entries from the *value* stack and restore |
| 2798 | the raised and the caught exceptions they specify. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2799 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2800 | The block stack is unwound when an exception is raised: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2801 | when a SETUP_FINALLY entry is found, the raised and the caught |
| 2802 | exceptions are pushed onto the value stack (and the exception |
| 2803 | condition is cleared), and the interpreter jumps to the label |
| 2804 | gotten from the block stack. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2805 | */ |
| 2806 | |
| 2807 | static int |
| 2808 | compiler_try_finally(struct compiler *c, stmt_ty s) |
| 2809 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2810 | basicblock *body, *end; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2811 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2812 | body = compiler_new_block(c); |
| 2813 | end = compiler_new_block(c); |
| 2814 | if (body == NULL || end == NULL) |
| 2815 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2816 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2817 | /* `try` block */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2818 | ADDOP_JREL(c, SETUP_FINALLY, end); |
| 2819 | compiler_use_next_block(c, body); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2820 | if (!compiler_push_fblock(c, FINALLY_TRY, body, end)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2821 | return 0; |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2822 | if (s->v.Try.handlers && asdl_seq_LEN(s->v.Try.handlers)) { |
| 2823 | if (!compiler_try_except(c, s)) |
| 2824 | return 0; |
| 2825 | } |
| 2826 | else { |
| 2827 | VISIT_SEQ(c, stmt, s->v.Try.body); |
| 2828 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2829 | ADDOP(c, POP_BLOCK); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2830 | ADDOP(c, BEGIN_FINALLY); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2831 | compiler_pop_fblock(c, FINALLY_TRY, body); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2832 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2833 | /* `finally` block */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2834 | compiler_use_next_block(c, end); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2835 | if (!compiler_push_fblock(c, FINALLY_END, end, NULL)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2836 | return 0; |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2837 | VISIT_SEQ(c, stmt, s->v.Try.finalbody); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2838 | ADDOP(c, END_FINALLY); |
| 2839 | compiler_pop_fblock(c, FINALLY_END, end); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2840 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2841 | } |
| 2842 | |
| 2843 | /* |
Jeffrey Yasskin | 9de7ec7 | 2009-02-25 02:25:04 +0000 | [diff] [blame] | 2844 | Code generated for "try: S except E1 as V1: S1 except E2 as V2: S2 ...": |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2845 | (The contents of the value stack is shown in [], with the top |
| 2846 | at the right; 'tb' is trace-back info, 'val' the exception's |
| 2847 | associated value, and 'exc' the exception.) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2848 | |
| 2849 | Value stack Label Instruction Argument |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2850 | [] SETUP_FINALLY L1 |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2851 | [] <code for S> |
| 2852 | [] POP_BLOCK |
| 2853 | [] JUMP_FORWARD L0 |
| 2854 | |
| 2855 | [tb, val, exc] L1: DUP ) |
| 2856 | [tb, val, exc, exc] <evaluate E1> ) |
| 2857 | [tb, val, exc, exc, E1] COMPARE_OP EXC_MATCH ) only if E1 |
| 2858 | [tb, val, exc, 1-or-0] POP_JUMP_IF_FALSE L2 ) |
| 2859 | [tb, val, exc] POP |
| 2860 | [tb, val] <assign to V1> (or POP if no V1) |
| 2861 | [tb] POP |
| 2862 | [] <code for S1> |
| 2863 | JUMP_FORWARD L0 |
| 2864 | |
| 2865 | [tb, val, exc] L2: DUP |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2866 | .............................etc....................... |
| 2867 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2868 | [tb, val, exc] Ln+1: END_FINALLY # re-raise exception |
| 2869 | |
| 2870 | [] L0: <next statement> |
| 2871 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2872 | Of course, parts are not generated if Vi or Ei is not present. |
| 2873 | */ |
| 2874 | static int |
| 2875 | compiler_try_except(struct compiler *c, stmt_ty s) |
| 2876 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2877 | basicblock *body, *orelse, *except, *end; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 2878 | Py_ssize_t i, n; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2879 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2880 | body = compiler_new_block(c); |
| 2881 | except = compiler_new_block(c); |
| 2882 | orelse = compiler_new_block(c); |
| 2883 | end = compiler_new_block(c); |
| 2884 | if (body == NULL || except == NULL || orelse == NULL || end == NULL) |
| 2885 | return 0; |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2886 | ADDOP_JREL(c, SETUP_FINALLY, except); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2887 | compiler_use_next_block(c, body); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2888 | if (!compiler_push_fblock(c, EXCEPT, body, NULL)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2889 | return 0; |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2890 | VISIT_SEQ(c, stmt, s->v.Try.body); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2891 | ADDOP(c, POP_BLOCK); |
| 2892 | compiler_pop_fblock(c, EXCEPT, body); |
| 2893 | ADDOP_JREL(c, JUMP_FORWARD, orelse); |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2894 | n = asdl_seq_LEN(s->v.Try.handlers); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2895 | compiler_use_next_block(c, except); |
| 2896 | for (i = 0; i < n; i++) { |
| 2897 | excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2898 | s->v.Try.handlers, i); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2899 | if (!handler->v.ExceptHandler.type && i < n-1) |
| 2900 | return compiler_error(c, "default 'except:' must be last"); |
| 2901 | c->u->u_lineno_set = 0; |
| 2902 | c->u->u_lineno = handler->lineno; |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 2903 | c->u->u_col_offset = handler->col_offset; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2904 | except = compiler_new_block(c); |
| 2905 | if (except == NULL) |
| 2906 | return 0; |
| 2907 | if (handler->v.ExceptHandler.type) { |
| 2908 | ADDOP(c, DUP_TOP); |
| 2909 | VISIT(c, expr, handler->v.ExceptHandler.type); |
| 2910 | ADDOP_I(c, COMPARE_OP, PyCmp_EXC_MATCH); |
| 2911 | ADDOP_JABS(c, POP_JUMP_IF_FALSE, except); |
| 2912 | } |
| 2913 | ADDOP(c, POP_TOP); |
| 2914 | if (handler->v.ExceptHandler.name) { |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2915 | basicblock *cleanup_end, *cleanup_body; |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 2916 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2917 | cleanup_end = compiler_new_block(c); |
| 2918 | cleanup_body = compiler_new_block(c); |
Zackery Spytz | 53ebf4b | 2018-10-11 23:54:03 -0600 | [diff] [blame] | 2919 | if (cleanup_end == NULL || cleanup_body == NULL) { |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2920 | return 0; |
Zackery Spytz | 53ebf4b | 2018-10-11 23:54:03 -0600 | [diff] [blame] | 2921 | } |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 2922 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2923 | compiler_nameop(c, handler->v.ExceptHandler.name, Store); |
| 2924 | ADDOP(c, POP_TOP); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2925 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2926 | /* |
| 2927 | try: |
Ezio Melotti | 1b6424f | 2013-04-19 07:10:09 +0300 | [diff] [blame] | 2928 | # body |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2929 | except type as name: |
Ezio Melotti | 1b6424f | 2013-04-19 07:10:09 +0300 | [diff] [blame] | 2930 | try: |
| 2931 | # body |
| 2932 | finally: |
| 2933 | name = None |
| 2934 | del name |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2935 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2936 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2937 | /* second try: */ |
| 2938 | ADDOP_JREL(c, SETUP_FINALLY, cleanup_end); |
| 2939 | compiler_use_next_block(c, cleanup_body); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2940 | if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, cleanup_end)) |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2941 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2942 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2943 | /* second # body */ |
| 2944 | VISIT_SEQ(c, stmt, handler->v.ExceptHandler.body); |
| 2945 | ADDOP(c, POP_BLOCK); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2946 | ADDOP(c, BEGIN_FINALLY); |
| 2947 | compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2948 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2949 | /* finally: */ |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2950 | compiler_use_next_block(c, cleanup_end); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2951 | if (!compiler_push_fblock(c, FINALLY_END, cleanup_end, NULL)) |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2952 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2953 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2954 | /* name = None; del name */ |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 2955 | ADDOP_LOAD_CONST(c, Py_None); |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2956 | compiler_nameop(c, handler->v.ExceptHandler.name, Store); |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2957 | compiler_nameop(c, handler->v.ExceptHandler.name, Del); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2958 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2959 | ADDOP(c, END_FINALLY); |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 2960 | ADDOP(c, POP_EXCEPT); |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2961 | compiler_pop_fblock(c, FINALLY_END, cleanup_end); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2962 | } |
| 2963 | else { |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2964 | basicblock *cleanup_body; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2965 | |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2966 | cleanup_body = compiler_new_block(c); |
Benjamin Peterson | 0a5dad9 | 2011-05-27 14:17:04 -0500 | [diff] [blame] | 2967 | if (!cleanup_body) |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2968 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2969 | |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 2970 | ADDOP(c, POP_TOP); |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2971 | ADDOP(c, POP_TOP); |
| 2972 | compiler_use_next_block(c, cleanup_body); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2973 | if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL)) |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2974 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2975 | VISIT_SEQ(c, stmt, handler->v.ExceptHandler.body); |
Benjamin Peterson | 74897ba | 2011-05-27 14:10:24 -0500 | [diff] [blame] | 2976 | ADDOP(c, POP_EXCEPT); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 2977 | compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2978 | } |
| 2979 | ADDOP_JREL(c, JUMP_FORWARD, end); |
| 2980 | compiler_use_next_block(c, except); |
| 2981 | } |
| 2982 | ADDOP(c, END_FINALLY); |
| 2983 | compiler_use_next_block(c, orelse); |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2984 | VISIT_SEQ(c, stmt, s->v.Try.orelse); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2985 | compiler_use_next_block(c, end); |
| 2986 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2987 | } |
| 2988 | |
| 2989 | static int |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 2990 | compiler_try(struct compiler *c, stmt_ty s) { |
| 2991 | if (s->v.Try.finalbody && asdl_seq_LEN(s->v.Try.finalbody)) |
| 2992 | return compiler_try_finally(c, s); |
| 2993 | else |
| 2994 | return compiler_try_except(c, s); |
| 2995 | } |
| 2996 | |
| 2997 | |
| 2998 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 2999 | compiler_import_as(struct compiler *c, identifier name, identifier asname) |
| 3000 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3001 | /* The IMPORT_NAME opcode was already generated. This function |
| 3002 | merely needs to bind the result to a name. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3003 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3004 | If there is a dot in name, we need to split it and emit a |
Serhiy Storchaka | f93234b | 2017-05-09 22:31:05 +0300 | [diff] [blame] | 3005 | IMPORT_FROM for each name. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3006 | */ |
Serhiy Storchaka | 265fcc5 | 2017-08-29 15:47:44 +0300 | [diff] [blame] | 3007 | Py_ssize_t len = PyUnicode_GET_LENGTH(name); |
| 3008 | Py_ssize_t dot = PyUnicode_FindChar(name, '.', 0, len, 1); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3009 | if (dot == -2) |
Serhiy Storchaka | 694de3b | 2016-06-15 20:06:07 +0300 | [diff] [blame] | 3010 | return 0; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3011 | if (dot != -1) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3012 | /* Consume the base module name to get the first attribute */ |
Serhiy Storchaka | 265fcc5 | 2017-08-29 15:47:44 +0300 | [diff] [blame] | 3013 | while (1) { |
| 3014 | Py_ssize_t pos = dot + 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3015 | PyObject *attr; |
Serhiy Storchaka | 265fcc5 | 2017-08-29 15:47:44 +0300 | [diff] [blame] | 3016 | dot = PyUnicode_FindChar(name, '.', pos, len, 1); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3017 | if (dot == -2) |
Serhiy Storchaka | 694de3b | 2016-06-15 20:06:07 +0300 | [diff] [blame] | 3018 | return 0; |
Serhiy Storchaka | 265fcc5 | 2017-08-29 15:47:44 +0300 | [diff] [blame] | 3019 | attr = PyUnicode_Substring(name, pos, (dot != -1) ? dot : len); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3020 | if (!attr) |
Serhiy Storchaka | 694de3b | 2016-06-15 20:06:07 +0300 | [diff] [blame] | 3021 | return 0; |
Serhiy Storchaka | aa8e51f | 2018-04-01 00:29:37 +0300 | [diff] [blame] | 3022 | ADDOP_N(c, IMPORT_FROM, attr, names); |
Serhiy Storchaka | 265fcc5 | 2017-08-29 15:47:44 +0300 | [diff] [blame] | 3023 | if (dot == -1) { |
| 3024 | break; |
| 3025 | } |
| 3026 | ADDOP(c, ROT_TWO); |
| 3027 | ADDOP(c, POP_TOP); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3028 | } |
Serhiy Storchaka | 265fcc5 | 2017-08-29 15:47:44 +0300 | [diff] [blame] | 3029 | if (!compiler_nameop(c, asname, Store)) { |
| 3030 | return 0; |
| 3031 | } |
| 3032 | ADDOP(c, POP_TOP); |
| 3033 | return 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3034 | } |
| 3035 | return compiler_nameop(c, asname, Store); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3036 | } |
| 3037 | |
| 3038 | static int |
| 3039 | compiler_import(struct compiler *c, stmt_ty s) |
| 3040 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3041 | /* The Import node stores a module name like a.b.c as a single |
| 3042 | string. This is convenient for all cases except |
| 3043 | import a.b.c as d |
| 3044 | where we need to parse that string to extract the individual |
| 3045 | module names. |
| 3046 | XXX Perhaps change the representation to make this case simpler? |
| 3047 | */ |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3048 | Py_ssize_t i, n = asdl_seq_LEN(s->v.Import.names); |
Thomas Wouters | f7f438b | 2006-02-28 16:09:29 +0000 | [diff] [blame] | 3049 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3050 | for (i = 0; i < n; i++) { |
| 3051 | alias_ty alias = (alias_ty)asdl_seq_GET(s->v.Import.names, i); |
| 3052 | int r; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3053 | |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 3054 | ADDOP_LOAD_CONST(c, _PyLong_Zero); |
| 3055 | ADDOP_LOAD_CONST(c, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3056 | ADDOP_NAME(c, IMPORT_NAME, alias->name, names); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3057 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3058 | if (alias->asname) { |
| 3059 | r = compiler_import_as(c, alias->name, alias->asname); |
| 3060 | if (!r) |
| 3061 | return r; |
| 3062 | } |
| 3063 | else { |
| 3064 | identifier tmp = alias->name; |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3065 | Py_ssize_t dot = PyUnicode_FindChar( |
| 3066 | alias->name, '.', 0, PyUnicode_GET_LENGTH(alias->name), 1); |
Victor Stinner | 6b64a68 | 2013-07-11 22:50:45 +0200 | [diff] [blame] | 3067 | if (dot != -1) { |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3068 | tmp = PyUnicode_Substring(alias->name, 0, dot); |
Victor Stinner | 6b64a68 | 2013-07-11 22:50:45 +0200 | [diff] [blame] | 3069 | if (tmp == NULL) |
| 3070 | return 0; |
| 3071 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3072 | r = compiler_nameop(c, tmp, Store); |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3073 | if (dot != -1) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3074 | Py_DECREF(tmp); |
| 3075 | } |
| 3076 | if (!r) |
| 3077 | return r; |
| 3078 | } |
| 3079 | } |
| 3080 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3081 | } |
| 3082 | |
| 3083 | static int |
| 3084 | compiler_from_import(struct compiler *c, stmt_ty s) |
| 3085 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3086 | Py_ssize_t i, n = asdl_seq_LEN(s->v.ImportFrom.names); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 3087 | PyObject *names; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3088 | static PyObject *empty_string; |
Benjamin Peterson | 78565b2 | 2009-06-28 19:19:51 +0000 | [diff] [blame] | 3089 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3090 | if (!empty_string) { |
| 3091 | empty_string = PyUnicode_FromString(""); |
| 3092 | if (!empty_string) |
| 3093 | return 0; |
| 3094 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3095 | |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 3096 | ADDOP_LOAD_CONST_NEW(c, PyLong_FromLong(s->v.ImportFrom.level)); |
Serhiy Storchaka | a95d986 | 2018-03-24 22:42:35 +0200 | [diff] [blame] | 3097 | |
| 3098 | names = PyTuple_New(n); |
| 3099 | if (!names) |
| 3100 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3101 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3102 | /* build up the names */ |
| 3103 | for (i = 0; i < n; i++) { |
| 3104 | alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i); |
| 3105 | Py_INCREF(alias->name); |
| 3106 | PyTuple_SET_ITEM(names, i, alias->name); |
| 3107 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3108 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3109 | if (s->lineno > c->c_future->ff_lineno && s->v.ImportFrom.module && |
Serhiy Storchaka | f4934ea | 2016-11-16 10:17:58 +0200 | [diff] [blame] | 3110 | _PyUnicode_EqualToASCIIString(s->v.ImportFrom.module, "__future__")) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3111 | Py_DECREF(names); |
| 3112 | return compiler_error(c, "from __future__ imports must occur " |
| 3113 | "at the beginning of the file"); |
| 3114 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 3115 | ADDOP_LOAD_CONST_NEW(c, names); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3116 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3117 | if (s->v.ImportFrom.module) { |
| 3118 | ADDOP_NAME(c, IMPORT_NAME, s->v.ImportFrom.module, names); |
| 3119 | } |
| 3120 | else { |
| 3121 | ADDOP_NAME(c, IMPORT_NAME, empty_string, names); |
| 3122 | } |
| 3123 | for (i = 0; i < n; i++) { |
| 3124 | alias_ty alias = (alias_ty)asdl_seq_GET(s->v.ImportFrom.names, i); |
| 3125 | identifier store_name; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3126 | |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3127 | if (i == 0 && PyUnicode_READ_CHAR(alias->name, 0) == '*') { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3128 | assert(n == 1); |
| 3129 | ADDOP(c, IMPORT_STAR); |
| 3130 | return 1; |
| 3131 | } |
| 3132 | |
| 3133 | ADDOP_NAME(c, IMPORT_FROM, alias->name, names); |
| 3134 | store_name = alias->name; |
| 3135 | if (alias->asname) |
| 3136 | store_name = alias->asname; |
| 3137 | |
| 3138 | if (!compiler_nameop(c, store_name, Store)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3139 | return 0; |
| 3140 | } |
| 3141 | } |
| 3142 | /* remove imported module */ |
| 3143 | ADDOP(c, POP_TOP); |
| 3144 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3145 | } |
| 3146 | |
| 3147 | static int |
| 3148 | compiler_assert(struct compiler *c, stmt_ty s) |
| 3149 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3150 | static PyObject *assertion_error = NULL; |
| 3151 | basicblock *end; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3152 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 3153 | if (c->c_optimize) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3154 | return 1; |
| 3155 | if (assertion_error == NULL) { |
| 3156 | assertion_error = PyUnicode_InternFromString("AssertionError"); |
| 3157 | if (assertion_error == NULL) |
| 3158 | return 0; |
| 3159 | } |
| 3160 | if (s->v.Assert.test->kind == Tuple_kind && |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 3161 | asdl_seq_LEN(s->v.Assert.test->v.Tuple.elts) > 0) |
| 3162 | { |
| 3163 | if (!compiler_warn(c, "assertion is always true, " |
| 3164 | "perhaps remove parentheses?")) |
| 3165 | { |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 3166 | return 0; |
| 3167 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3168 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3169 | end = compiler_new_block(c); |
| 3170 | if (end == NULL) |
| 3171 | return 0; |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 3172 | if (!compiler_jump_if(c, s->v.Assert.test, end, 1)) |
| 3173 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3174 | ADDOP_O(c, LOAD_GLOBAL, assertion_error, names); |
| 3175 | if (s->v.Assert.msg) { |
| 3176 | VISIT(c, expr, s->v.Assert.msg); |
| 3177 | ADDOP_I(c, CALL_FUNCTION, 1); |
| 3178 | } |
| 3179 | ADDOP_I(c, RAISE_VARARGS, 1); |
| 3180 | compiler_use_next_block(c, end); |
| 3181 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3182 | } |
| 3183 | |
| 3184 | static int |
Victor Stinner | f2c1aa1 | 2016-01-26 00:40:57 +0100 | [diff] [blame] | 3185 | compiler_visit_stmt_expr(struct compiler *c, expr_ty value) |
| 3186 | { |
| 3187 | if (c->c_interactive && c->c_nestlevel <= 1) { |
| 3188 | VISIT(c, expr, value); |
| 3189 | ADDOP(c, PRINT_EXPR); |
| 3190 | return 1; |
| 3191 | } |
| 3192 | |
Serhiy Storchaka | 3f22811 | 2018-09-27 17:42:37 +0300 | [diff] [blame] | 3193 | if (value->kind == Constant_kind) { |
Victor Stinner | 15a3095 | 2016-02-08 22:45:06 +0100 | [diff] [blame] | 3194 | /* ignore constant statement */ |
Victor Stinner | f2c1aa1 | 2016-01-26 00:40:57 +0100 | [diff] [blame] | 3195 | return 1; |
Victor Stinner | f2c1aa1 | 2016-01-26 00:40:57 +0100 | [diff] [blame] | 3196 | } |
| 3197 | |
| 3198 | VISIT(c, expr, value); |
| 3199 | ADDOP(c, POP_TOP); |
| 3200 | return 1; |
| 3201 | } |
| 3202 | |
| 3203 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3204 | compiler_visit_stmt(struct compiler *c, stmt_ty s) |
| 3205 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3206 | Py_ssize_t i, n; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3207 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3208 | /* Always assign a lineno to the next instruction for a stmt. */ |
| 3209 | c->u->u_lineno = s->lineno; |
Benjamin Peterson | d4efd9e | 2010-09-20 23:02:10 +0000 | [diff] [blame] | 3210 | c->u->u_col_offset = s->col_offset; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3211 | c->u->u_lineno_set = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3212 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3213 | switch (s->kind) { |
| 3214 | case FunctionDef_kind: |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3215 | return compiler_function(c, s, 0); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3216 | case ClassDef_kind: |
| 3217 | return compiler_class(c, s); |
| 3218 | case Return_kind: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 3219 | return compiler_return(c, s); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3220 | case Delete_kind: |
| 3221 | VISIT_SEQ(c, expr, s->v.Delete.targets) |
| 3222 | break; |
| 3223 | case Assign_kind: |
| 3224 | n = asdl_seq_LEN(s->v.Assign.targets); |
| 3225 | VISIT(c, expr, s->v.Assign.value); |
| 3226 | for (i = 0; i < n; i++) { |
| 3227 | if (i < n - 1) |
| 3228 | ADDOP(c, DUP_TOP); |
| 3229 | VISIT(c, expr, |
| 3230 | (expr_ty)asdl_seq_GET(s->v.Assign.targets, i)); |
| 3231 | } |
| 3232 | break; |
| 3233 | case AugAssign_kind: |
| 3234 | return compiler_augassign(c, s); |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 3235 | case AnnAssign_kind: |
| 3236 | return compiler_annassign(c, s); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3237 | case For_kind: |
| 3238 | return compiler_for(c, s); |
| 3239 | case While_kind: |
| 3240 | return compiler_while(c, s); |
| 3241 | case If_kind: |
| 3242 | return compiler_if(c, s); |
| 3243 | case Raise_kind: |
| 3244 | n = 0; |
| 3245 | if (s->v.Raise.exc) { |
| 3246 | VISIT(c, expr, s->v.Raise.exc); |
| 3247 | n++; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3248 | if (s->v.Raise.cause) { |
| 3249 | VISIT(c, expr, s->v.Raise.cause); |
| 3250 | n++; |
| 3251 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3252 | } |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3253 | ADDOP_I(c, RAISE_VARARGS, (int)n); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3254 | break; |
Benjamin Peterson | 43af12b | 2011-05-29 11:43:10 -0500 | [diff] [blame] | 3255 | case Try_kind: |
| 3256 | return compiler_try(c, s); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3257 | case Assert_kind: |
| 3258 | return compiler_assert(c, s); |
| 3259 | case Import_kind: |
| 3260 | return compiler_import(c, s); |
| 3261 | case ImportFrom_kind: |
| 3262 | return compiler_from_import(c, s); |
| 3263 | case Global_kind: |
| 3264 | case Nonlocal_kind: |
| 3265 | break; |
| 3266 | case Expr_kind: |
Victor Stinner | f2c1aa1 | 2016-01-26 00:40:57 +0100 | [diff] [blame] | 3267 | return compiler_visit_stmt_expr(c, s->v.Expr.value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3268 | case Pass_kind: |
| 3269 | break; |
| 3270 | case Break_kind: |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 3271 | return compiler_break(c); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3272 | case Continue_kind: |
| 3273 | return compiler_continue(c); |
| 3274 | case With_kind: |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 3275 | return compiler_with(c, s, 0); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3276 | case AsyncFunctionDef_kind: |
| 3277 | return compiler_function(c, s, 1); |
| 3278 | case AsyncWith_kind: |
| 3279 | return compiler_async_with(c, s, 0); |
| 3280 | case AsyncFor_kind: |
| 3281 | return compiler_async_for(c, s); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3282 | } |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3283 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3284 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3285 | } |
| 3286 | |
| 3287 | static int |
| 3288 | unaryop(unaryop_ty op) |
| 3289 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3290 | switch (op) { |
| 3291 | case Invert: |
| 3292 | return UNARY_INVERT; |
| 3293 | case Not: |
| 3294 | return UNARY_NOT; |
| 3295 | case UAdd: |
| 3296 | return UNARY_POSITIVE; |
| 3297 | case USub: |
| 3298 | return UNARY_NEGATIVE; |
| 3299 | default: |
| 3300 | PyErr_Format(PyExc_SystemError, |
| 3301 | "unary op %d should not be possible", op); |
| 3302 | return 0; |
| 3303 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3304 | } |
| 3305 | |
| 3306 | static int |
| 3307 | binop(struct compiler *c, operator_ty op) |
| 3308 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3309 | switch (op) { |
| 3310 | case Add: |
| 3311 | return BINARY_ADD; |
| 3312 | case Sub: |
| 3313 | return BINARY_SUBTRACT; |
| 3314 | case Mult: |
| 3315 | return BINARY_MULTIPLY; |
Benjamin Peterson | d51374e | 2014-04-09 23:55:56 -0400 | [diff] [blame] | 3316 | case MatMult: |
| 3317 | return BINARY_MATRIX_MULTIPLY; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3318 | case Div: |
| 3319 | return BINARY_TRUE_DIVIDE; |
| 3320 | case Mod: |
| 3321 | return BINARY_MODULO; |
| 3322 | case Pow: |
| 3323 | return BINARY_POWER; |
| 3324 | case LShift: |
| 3325 | return BINARY_LSHIFT; |
| 3326 | case RShift: |
| 3327 | return BINARY_RSHIFT; |
| 3328 | case BitOr: |
| 3329 | return BINARY_OR; |
| 3330 | case BitXor: |
| 3331 | return BINARY_XOR; |
| 3332 | case BitAnd: |
| 3333 | return BINARY_AND; |
| 3334 | case FloorDiv: |
| 3335 | return BINARY_FLOOR_DIVIDE; |
| 3336 | default: |
| 3337 | PyErr_Format(PyExc_SystemError, |
| 3338 | "binary op %d should not be possible", op); |
| 3339 | return 0; |
| 3340 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3341 | } |
| 3342 | |
| 3343 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3344 | inplace_binop(struct compiler *c, operator_ty op) |
| 3345 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3346 | switch (op) { |
| 3347 | case Add: |
| 3348 | return INPLACE_ADD; |
| 3349 | case Sub: |
| 3350 | return INPLACE_SUBTRACT; |
| 3351 | case Mult: |
| 3352 | return INPLACE_MULTIPLY; |
Benjamin Peterson | d51374e | 2014-04-09 23:55:56 -0400 | [diff] [blame] | 3353 | case MatMult: |
| 3354 | return INPLACE_MATRIX_MULTIPLY; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3355 | case Div: |
| 3356 | return INPLACE_TRUE_DIVIDE; |
| 3357 | case Mod: |
| 3358 | return INPLACE_MODULO; |
| 3359 | case Pow: |
| 3360 | return INPLACE_POWER; |
| 3361 | case LShift: |
| 3362 | return INPLACE_LSHIFT; |
| 3363 | case RShift: |
| 3364 | return INPLACE_RSHIFT; |
| 3365 | case BitOr: |
| 3366 | return INPLACE_OR; |
| 3367 | case BitXor: |
| 3368 | return INPLACE_XOR; |
| 3369 | case BitAnd: |
| 3370 | return INPLACE_AND; |
| 3371 | case FloorDiv: |
| 3372 | return INPLACE_FLOOR_DIVIDE; |
| 3373 | default: |
| 3374 | PyErr_Format(PyExc_SystemError, |
| 3375 | "inplace binary op %d should not be possible", op); |
| 3376 | return 0; |
| 3377 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3378 | } |
| 3379 | |
| 3380 | static int |
| 3381 | compiler_nameop(struct compiler *c, identifier name, expr_context_ty ctx) |
| 3382 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3383 | int op, scope; |
| 3384 | Py_ssize_t arg; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3385 | enum { OP_FAST, OP_GLOBAL, OP_DEREF, OP_NAME } optype; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3386 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3387 | PyObject *dict = c->u->u_names; |
| 3388 | PyObject *mangled; |
| 3389 | /* XXX AugStore isn't used anywhere! */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3390 | |
Serhiy Storchaka | f4934ea | 2016-11-16 10:17:58 +0200 | [diff] [blame] | 3391 | assert(!_PyUnicode_EqualToASCIIString(name, "None") && |
| 3392 | !_PyUnicode_EqualToASCIIString(name, "True") && |
| 3393 | !_PyUnicode_EqualToASCIIString(name, "False")); |
Benjamin Peterson | 70b224d | 2012-12-06 17:49:58 -0500 | [diff] [blame] | 3394 | |
Serhiy Storchaka | bd6ec4d | 2017-12-18 14:29:12 +0200 | [diff] [blame] | 3395 | mangled = _Py_Mangle(c->u->u_private, name); |
| 3396 | if (!mangled) |
| 3397 | return 0; |
| 3398 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3399 | op = 0; |
| 3400 | optype = OP_NAME; |
| 3401 | scope = PyST_GetScope(c->u->u_ste, mangled); |
| 3402 | switch (scope) { |
| 3403 | case FREE: |
| 3404 | dict = c->u->u_freevars; |
| 3405 | optype = OP_DEREF; |
| 3406 | break; |
| 3407 | case CELL: |
| 3408 | dict = c->u->u_cellvars; |
| 3409 | optype = OP_DEREF; |
| 3410 | break; |
| 3411 | case LOCAL: |
| 3412 | if (c->u->u_ste->ste_type == FunctionBlock) |
| 3413 | optype = OP_FAST; |
| 3414 | break; |
| 3415 | case GLOBAL_IMPLICIT: |
Benjamin Peterson | 1dfd247 | 2015-04-27 21:44:22 -0400 | [diff] [blame] | 3416 | if (c->u->u_ste->ste_type == FunctionBlock) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3417 | optype = OP_GLOBAL; |
| 3418 | break; |
| 3419 | case GLOBAL_EXPLICIT: |
| 3420 | optype = OP_GLOBAL; |
| 3421 | break; |
| 3422 | default: |
| 3423 | /* scope can be 0 */ |
| 3424 | break; |
| 3425 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3426 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3427 | /* XXX Leave assert here, but handle __doc__ and the like better */ |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 3428 | assert(scope || PyUnicode_READ_CHAR(name, 0) == '_'); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3429 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3430 | switch (optype) { |
| 3431 | case OP_DEREF: |
| 3432 | switch (ctx) { |
Benjamin Peterson | 3b0431d | 2013-04-30 09:41:40 -0400 | [diff] [blame] | 3433 | case Load: |
| 3434 | op = (c->u->u_ste->ste_type == ClassBlock) ? LOAD_CLASSDEREF : LOAD_DEREF; |
| 3435 | break; |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3436 | case Store: |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3437 | op = STORE_DEREF; |
| 3438 | break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3439 | case AugLoad: |
| 3440 | case AugStore: |
| 3441 | break; |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 3442 | case Del: op = DELETE_DEREF; break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3443 | case Param: |
| 3444 | default: |
| 3445 | PyErr_SetString(PyExc_SystemError, |
| 3446 | "param invalid for deref variable"); |
| 3447 | return 0; |
| 3448 | } |
| 3449 | break; |
| 3450 | case OP_FAST: |
| 3451 | switch (ctx) { |
| 3452 | case Load: op = LOAD_FAST; break; |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3453 | case Store: |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3454 | op = STORE_FAST; |
| 3455 | break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3456 | case Del: op = DELETE_FAST; break; |
| 3457 | case AugLoad: |
| 3458 | case AugStore: |
| 3459 | break; |
| 3460 | case Param: |
| 3461 | default: |
| 3462 | PyErr_SetString(PyExc_SystemError, |
| 3463 | "param invalid for local variable"); |
| 3464 | return 0; |
| 3465 | } |
Serhiy Storchaka | aa8e51f | 2018-04-01 00:29:37 +0300 | [diff] [blame] | 3466 | ADDOP_N(c, op, mangled, varnames); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3467 | return 1; |
| 3468 | case OP_GLOBAL: |
| 3469 | switch (ctx) { |
| 3470 | case Load: op = LOAD_GLOBAL; break; |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3471 | case Store: |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3472 | op = STORE_GLOBAL; |
| 3473 | break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3474 | case Del: op = DELETE_GLOBAL; break; |
| 3475 | case AugLoad: |
| 3476 | case AugStore: |
| 3477 | break; |
| 3478 | case Param: |
| 3479 | default: |
| 3480 | PyErr_SetString(PyExc_SystemError, |
| 3481 | "param invalid for global variable"); |
| 3482 | return 0; |
| 3483 | } |
| 3484 | break; |
| 3485 | case OP_NAME: |
| 3486 | switch (ctx) { |
Benjamin Peterson | 20f9c3c | 2010-07-20 22:39:34 +0000 | [diff] [blame] | 3487 | case Load: op = LOAD_NAME; break; |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3488 | case Store: |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 3489 | op = STORE_NAME; |
| 3490 | break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3491 | case Del: op = DELETE_NAME; break; |
| 3492 | case AugLoad: |
| 3493 | case AugStore: |
| 3494 | break; |
| 3495 | case Param: |
| 3496 | default: |
| 3497 | PyErr_SetString(PyExc_SystemError, |
| 3498 | "param invalid for name variable"); |
| 3499 | return 0; |
| 3500 | } |
| 3501 | break; |
| 3502 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3503 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3504 | assert(op); |
| 3505 | arg = compiler_add_o(c, dict, mangled); |
| 3506 | Py_DECREF(mangled); |
| 3507 | if (arg < 0) |
| 3508 | return 0; |
| 3509 | return compiler_addop_i(c, op, arg); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3510 | } |
| 3511 | |
| 3512 | static int |
| 3513 | compiler_boolop(struct compiler *c, expr_ty e) |
| 3514 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3515 | basicblock *end; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3516 | int jumpi; |
| 3517 | Py_ssize_t i, n; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3518 | asdl_seq *s; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3519 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3520 | assert(e->kind == BoolOp_kind); |
| 3521 | if (e->v.BoolOp.op == And) |
| 3522 | jumpi = JUMP_IF_FALSE_OR_POP; |
| 3523 | else |
| 3524 | jumpi = JUMP_IF_TRUE_OR_POP; |
| 3525 | end = compiler_new_block(c); |
| 3526 | if (end == NULL) |
| 3527 | return 0; |
| 3528 | s = e->v.BoolOp.values; |
| 3529 | n = asdl_seq_LEN(s) - 1; |
| 3530 | assert(n >= 0); |
| 3531 | for (i = 0; i < n; ++i) { |
| 3532 | VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); |
| 3533 | ADDOP_JABS(c, jumpi, end); |
| 3534 | } |
| 3535 | VISIT(c, expr, (expr_ty)asdl_seq_GET(s, n)); |
| 3536 | compiler_use_next_block(c, end); |
| 3537 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3538 | } |
| 3539 | |
| 3540 | static int |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3541 | starunpack_helper(struct compiler *c, asdl_seq *elts, |
| 3542 | int single_op, int inner_op, int outer_op) |
| 3543 | { |
| 3544 | Py_ssize_t n = asdl_seq_LEN(elts); |
| 3545 | Py_ssize_t i, nsubitems = 0, nseen = 0; |
| 3546 | for (i = 0; i < n; i++) { |
| 3547 | expr_ty elt = asdl_seq_GET(elts, i); |
| 3548 | if (elt->kind == Starred_kind) { |
| 3549 | if (nseen) { |
| 3550 | ADDOP_I(c, inner_op, nseen); |
| 3551 | nseen = 0; |
| 3552 | nsubitems++; |
| 3553 | } |
| 3554 | VISIT(c, expr, elt->v.Starred.value); |
| 3555 | nsubitems++; |
| 3556 | } |
| 3557 | else { |
| 3558 | VISIT(c, expr, elt); |
| 3559 | nseen++; |
| 3560 | } |
| 3561 | } |
| 3562 | if (nsubitems) { |
| 3563 | if (nseen) { |
| 3564 | ADDOP_I(c, inner_op, nseen); |
| 3565 | nsubitems++; |
| 3566 | } |
| 3567 | ADDOP_I(c, outer_op, nsubitems); |
| 3568 | } |
| 3569 | else |
| 3570 | ADDOP_I(c, single_op, nseen); |
| 3571 | return 1; |
| 3572 | } |
| 3573 | |
| 3574 | static int |
| 3575 | assignment_helper(struct compiler *c, asdl_seq *elts) |
| 3576 | { |
| 3577 | Py_ssize_t n = asdl_seq_LEN(elts); |
| 3578 | Py_ssize_t i; |
| 3579 | int seen_star = 0; |
| 3580 | for (i = 0; i < n; i++) { |
| 3581 | expr_ty elt = asdl_seq_GET(elts, i); |
| 3582 | if (elt->kind == Starred_kind && !seen_star) { |
| 3583 | if ((i >= (1 << 8)) || |
| 3584 | (n-i-1 >= (INT_MAX >> 8))) |
| 3585 | return compiler_error(c, |
| 3586 | "too many expressions in " |
| 3587 | "star-unpacking assignment"); |
| 3588 | ADDOP_I(c, UNPACK_EX, (i + ((n-i-1) << 8))); |
| 3589 | seen_star = 1; |
| 3590 | asdl_seq_SET(elts, i, elt->v.Starred.value); |
| 3591 | } |
| 3592 | else if (elt->kind == Starred_kind) { |
| 3593 | return compiler_error(c, |
| 3594 | "two starred expressions in assignment"); |
| 3595 | } |
| 3596 | } |
| 3597 | if (!seen_star) { |
| 3598 | ADDOP_I(c, UNPACK_SEQUENCE, n); |
| 3599 | } |
| 3600 | VISIT_SEQ(c, expr, elts); |
| 3601 | return 1; |
| 3602 | } |
| 3603 | |
| 3604 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3605 | compiler_list(struct compiler *c, expr_ty e) |
| 3606 | { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3607 | asdl_seq *elts = e->v.List.elts; |
Serhiy Storchaka | d8b3a98 | 2019-03-05 20:42:06 +0200 | [diff] [blame] | 3608 | if (e->v.List.ctx == Store) { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3609 | return assignment_helper(c, elts); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3610 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3611 | else if (e->v.List.ctx == Load) { |
| 3612 | return starunpack_helper(c, elts, |
| 3613 | BUILD_LIST, BUILD_TUPLE, BUILD_LIST_UNPACK); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3614 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3615 | else |
| 3616 | VISIT_SEQ(c, expr, elts); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3617 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3618 | } |
| 3619 | |
| 3620 | static int |
| 3621 | compiler_tuple(struct compiler *c, expr_ty e) |
| 3622 | { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3623 | asdl_seq *elts = e->v.Tuple.elts; |
Serhiy Storchaka | d8b3a98 | 2019-03-05 20:42:06 +0200 | [diff] [blame] | 3624 | if (e->v.Tuple.ctx == Store) { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3625 | return assignment_helper(c, elts); |
| 3626 | } |
| 3627 | else if (e->v.Tuple.ctx == Load) { |
| 3628 | return starunpack_helper(c, elts, |
| 3629 | BUILD_TUPLE, BUILD_TUPLE, BUILD_TUPLE_UNPACK); |
| 3630 | } |
| 3631 | else |
| 3632 | VISIT_SEQ(c, expr, elts); |
| 3633 | return 1; |
| 3634 | } |
| 3635 | |
| 3636 | static int |
| 3637 | compiler_set(struct compiler *c, expr_ty e) |
| 3638 | { |
| 3639 | return starunpack_helper(c, e->v.Set.elts, BUILD_SET, |
| 3640 | BUILD_SET, BUILD_SET_UNPACK); |
| 3641 | } |
| 3642 | |
| 3643 | static int |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3644 | are_all_items_const(asdl_seq *seq, Py_ssize_t begin, Py_ssize_t end) |
| 3645 | { |
| 3646 | Py_ssize_t i; |
| 3647 | for (i = begin; i < end; i++) { |
| 3648 | expr_ty key = (expr_ty)asdl_seq_GET(seq, i); |
Serhiy Storchaka | 3f22811 | 2018-09-27 17:42:37 +0300 | [diff] [blame] | 3649 | if (key == NULL || key->kind != Constant_kind) |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3650 | return 0; |
| 3651 | } |
| 3652 | return 1; |
| 3653 | } |
| 3654 | |
| 3655 | static int |
| 3656 | compiler_subdict(struct compiler *c, expr_ty e, Py_ssize_t begin, Py_ssize_t end) |
| 3657 | { |
| 3658 | Py_ssize_t i, n = end - begin; |
| 3659 | PyObject *keys, *key; |
| 3660 | if (n > 1 && are_all_items_const(e->v.Dict.keys, begin, end)) { |
| 3661 | for (i = begin; i < end; i++) { |
| 3662 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); |
| 3663 | } |
| 3664 | keys = PyTuple_New(n); |
| 3665 | if (keys == NULL) { |
| 3666 | return 0; |
| 3667 | } |
| 3668 | for (i = begin; i < end; i++) { |
Serhiy Storchaka | 3f22811 | 2018-09-27 17:42:37 +0300 | [diff] [blame] | 3669 | key = ((expr_ty)asdl_seq_GET(e->v.Dict.keys, i))->v.Constant.value; |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3670 | Py_INCREF(key); |
| 3671 | PyTuple_SET_ITEM(keys, i - begin, key); |
| 3672 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 3673 | ADDOP_LOAD_CONST_NEW(c, keys); |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3674 | ADDOP_I(c, BUILD_CONST_KEY_MAP, n); |
| 3675 | } |
| 3676 | else { |
| 3677 | for (i = begin; i < end; i++) { |
| 3678 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); |
| 3679 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); |
| 3680 | } |
| 3681 | ADDOP_I(c, BUILD_MAP, n); |
| 3682 | } |
| 3683 | return 1; |
| 3684 | } |
| 3685 | |
| 3686 | static int |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3687 | compiler_dict(struct compiler *c, expr_ty e) |
| 3688 | { |
Victor Stinner | 976bb40 | 2016-03-23 11:36:19 +0100 | [diff] [blame] | 3689 | Py_ssize_t i, n, elements; |
| 3690 | int containers; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3691 | int is_unpacking = 0; |
| 3692 | n = asdl_seq_LEN(e->v.Dict.values); |
| 3693 | containers = 0; |
| 3694 | elements = 0; |
| 3695 | for (i = 0; i < n; i++) { |
| 3696 | is_unpacking = (expr_ty)asdl_seq_GET(e->v.Dict.keys, i) == NULL; |
| 3697 | if (elements == 0xFFFF || (elements && is_unpacking)) { |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3698 | if (!compiler_subdict(c, e, i - elements, i)) |
| 3699 | return 0; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3700 | containers++; |
| 3701 | elements = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3702 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3703 | if (is_unpacking) { |
| 3704 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); |
| 3705 | containers++; |
| 3706 | } |
| 3707 | else { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3708 | elements++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3709 | } |
| 3710 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3711 | if (elements || containers == 0) { |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3712 | if (!compiler_subdict(c, e, n - elements, n)) |
| 3713 | return 0; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3714 | containers++; |
| 3715 | } |
| 3716 | /* If there is more than one dict, they need to be merged into a new |
| 3717 | * dict. If there is one dict and it's an unpacking, then it needs |
| 3718 | * to be copied into a new dict." */ |
Serhiy Storchaka | 3d85fae | 2016-11-28 20:56:37 +0200 | [diff] [blame] | 3719 | if (containers > 1 || is_unpacking) { |
| 3720 | ADDOP_I(c, BUILD_MAP_UNPACK, containers); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3721 | } |
| 3722 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3723 | } |
| 3724 | |
| 3725 | static int |
| 3726 | compiler_compare(struct compiler *c, expr_ty e) |
| 3727 | { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 3728 | Py_ssize_t i, n; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3729 | |
Serhiy Storchaka | 3bcbedc | 2019-01-18 07:47:48 +0200 | [diff] [blame] | 3730 | if (!check_compare(c, e)) { |
| 3731 | return 0; |
| 3732 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3733 | VISIT(c, expr, e->v.Compare.left); |
Serhiy Storchaka | 02b9ef2 | 2017-12-30 09:47:42 +0200 | [diff] [blame] | 3734 | assert(asdl_seq_LEN(e->v.Compare.ops) > 0); |
| 3735 | n = asdl_seq_LEN(e->v.Compare.ops) - 1; |
| 3736 | if (n == 0) { |
| 3737 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, 0)); |
| 3738 | ADDOP_I(c, COMPARE_OP, |
| 3739 | cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, 0)))); |
| 3740 | } |
| 3741 | else { |
| 3742 | basicblock *cleanup = compiler_new_block(c); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3743 | if (cleanup == NULL) |
| 3744 | return 0; |
Serhiy Storchaka | 02b9ef2 | 2017-12-30 09:47:42 +0200 | [diff] [blame] | 3745 | for (i = 0; i < n; i++) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3746 | VISIT(c, expr, |
| 3747 | (expr_ty)asdl_seq_GET(e->v.Compare.comparators, i)); |
Serhiy Storchaka | 02b9ef2 | 2017-12-30 09:47:42 +0200 | [diff] [blame] | 3748 | ADDOP(c, DUP_TOP); |
| 3749 | ADDOP(c, ROT_THREE); |
| 3750 | ADDOP_I(c, COMPARE_OP, |
| 3751 | cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, i)))); |
| 3752 | ADDOP_JABS(c, JUMP_IF_FALSE_OR_POP, cleanup); |
| 3753 | NEXT_BLOCK(c); |
| 3754 | } |
| 3755 | VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); |
| 3756 | ADDOP_I(c, COMPARE_OP, |
| 3757 | cmpop((cmpop_ty)(asdl_seq_GET(e->v.Compare.ops, n)))); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3758 | basicblock *end = compiler_new_block(c); |
| 3759 | if (end == NULL) |
| 3760 | return 0; |
| 3761 | ADDOP_JREL(c, JUMP_FORWARD, end); |
| 3762 | compiler_use_next_block(c, cleanup); |
| 3763 | ADDOP(c, ROT_TWO); |
| 3764 | ADDOP(c, POP_TOP); |
| 3765 | compiler_use_next_block(c, end); |
| 3766 | } |
| 3767 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3768 | } |
| 3769 | |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 3770 | static PyTypeObject * |
| 3771 | infer_type(expr_ty e) |
| 3772 | { |
| 3773 | switch (e->kind) { |
| 3774 | case Tuple_kind: |
| 3775 | return &PyTuple_Type; |
| 3776 | case List_kind: |
| 3777 | case ListComp_kind: |
| 3778 | return &PyList_Type; |
| 3779 | case Dict_kind: |
| 3780 | case DictComp_kind: |
| 3781 | return &PyDict_Type; |
| 3782 | case Set_kind: |
| 3783 | case SetComp_kind: |
| 3784 | return &PySet_Type; |
| 3785 | case GeneratorExp_kind: |
| 3786 | return &PyGen_Type; |
| 3787 | case Lambda_kind: |
| 3788 | return &PyFunction_Type; |
| 3789 | case JoinedStr_kind: |
| 3790 | case FormattedValue_kind: |
| 3791 | return &PyUnicode_Type; |
| 3792 | case Constant_kind: |
| 3793 | return e->v.Constant.value->ob_type; |
| 3794 | default: |
| 3795 | return NULL; |
| 3796 | } |
| 3797 | } |
| 3798 | |
| 3799 | static int |
| 3800 | check_caller(struct compiler *c, expr_ty e) |
| 3801 | { |
| 3802 | switch (e->kind) { |
| 3803 | case Constant_kind: |
| 3804 | case Tuple_kind: |
| 3805 | case List_kind: |
| 3806 | case ListComp_kind: |
| 3807 | case Dict_kind: |
| 3808 | case DictComp_kind: |
| 3809 | case Set_kind: |
| 3810 | case SetComp_kind: |
| 3811 | case GeneratorExp_kind: |
| 3812 | case JoinedStr_kind: |
| 3813 | case FormattedValue_kind: |
| 3814 | return compiler_warn(c, "'%.200s' object is not callable; " |
| 3815 | "perhaps you missed a comma?", |
| 3816 | infer_type(e)->tp_name); |
| 3817 | default: |
| 3818 | return 1; |
| 3819 | } |
| 3820 | } |
| 3821 | |
| 3822 | static int |
| 3823 | check_subscripter(struct compiler *c, expr_ty e) |
| 3824 | { |
| 3825 | PyObject *v; |
| 3826 | |
| 3827 | switch (e->kind) { |
| 3828 | case Constant_kind: |
| 3829 | v = e->v.Constant.value; |
| 3830 | if (!(v == Py_None || v == Py_Ellipsis || |
| 3831 | PyLong_Check(v) || PyFloat_Check(v) || PyComplex_Check(v) || |
| 3832 | PyAnySet_Check(v))) |
| 3833 | { |
| 3834 | return 1; |
| 3835 | } |
| 3836 | /* fall through */ |
| 3837 | case Set_kind: |
| 3838 | case SetComp_kind: |
| 3839 | case GeneratorExp_kind: |
| 3840 | case Lambda_kind: |
| 3841 | return compiler_warn(c, "'%.200s' object is not subscriptable; " |
| 3842 | "perhaps you missed a comma?", |
| 3843 | infer_type(e)->tp_name); |
| 3844 | default: |
| 3845 | return 1; |
| 3846 | } |
| 3847 | } |
| 3848 | |
| 3849 | static int |
| 3850 | check_index(struct compiler *c, expr_ty e, slice_ty s) |
| 3851 | { |
| 3852 | PyObject *v; |
| 3853 | |
| 3854 | if (s->kind != Index_kind) { |
| 3855 | return 1; |
| 3856 | } |
| 3857 | PyTypeObject *index_type = infer_type(s->v.Index.value); |
| 3858 | if (index_type == NULL |
| 3859 | || PyType_FastSubclass(index_type, Py_TPFLAGS_LONG_SUBCLASS) |
| 3860 | || index_type == &PySlice_Type) { |
| 3861 | return 1; |
| 3862 | } |
| 3863 | |
| 3864 | switch (e->kind) { |
| 3865 | case Constant_kind: |
| 3866 | v = e->v.Constant.value; |
| 3867 | if (!(PyUnicode_Check(v) || PyBytes_Check(v) || PyTuple_Check(v))) { |
| 3868 | return 1; |
| 3869 | } |
| 3870 | /* fall through */ |
| 3871 | case Tuple_kind: |
| 3872 | case List_kind: |
| 3873 | case ListComp_kind: |
| 3874 | case JoinedStr_kind: |
| 3875 | case FormattedValue_kind: |
| 3876 | return compiler_warn(c, "%.200s indices must be integers or slices, " |
| 3877 | "not %.200s; " |
| 3878 | "perhaps you missed a comma?", |
| 3879 | infer_type(e)->tp_name, |
| 3880 | index_type->tp_name); |
| 3881 | default: |
| 3882 | return 1; |
| 3883 | } |
| 3884 | } |
| 3885 | |
Zackery Spytz | 97f5de0 | 2019-03-22 01:30:32 -0600 | [diff] [blame] | 3886 | // Return 1 if the method call was optimized, -1 if not, and 0 on error. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3887 | static int |
Yury Selivanov | f239213 | 2016-12-13 19:03:51 -0500 | [diff] [blame] | 3888 | maybe_optimize_method_call(struct compiler *c, expr_ty e) |
| 3889 | { |
| 3890 | Py_ssize_t argsl, i; |
| 3891 | expr_ty meth = e->v.Call.func; |
| 3892 | asdl_seq *args = e->v.Call.args; |
| 3893 | |
| 3894 | /* Check that the call node is an attribute access, and that |
| 3895 | the call doesn't have keyword parameters. */ |
| 3896 | if (meth->kind != Attribute_kind || meth->v.Attribute.ctx != Load || |
| 3897 | asdl_seq_LEN(e->v.Call.keywords)) |
| 3898 | return -1; |
| 3899 | |
| 3900 | /* Check that there are no *varargs types of arguments. */ |
| 3901 | argsl = asdl_seq_LEN(args); |
| 3902 | for (i = 0; i < argsl; i++) { |
| 3903 | expr_ty elt = asdl_seq_GET(args, i); |
| 3904 | if (elt->kind == Starred_kind) { |
| 3905 | return -1; |
| 3906 | } |
| 3907 | } |
| 3908 | |
| 3909 | /* Alright, we can optimize the code. */ |
| 3910 | VISIT(c, expr, meth->v.Attribute.value); |
| 3911 | ADDOP_NAME(c, LOAD_METHOD, meth->v.Attribute.attr, names); |
| 3912 | VISIT_SEQ(c, expr, e->v.Call.args); |
| 3913 | ADDOP_I(c, CALL_METHOD, asdl_seq_LEN(e->v.Call.args)); |
| 3914 | return 1; |
| 3915 | } |
| 3916 | |
| 3917 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 3918 | compiler_call(struct compiler *c, expr_ty e) |
| 3919 | { |
Zackery Spytz | 97f5de0 | 2019-03-22 01:30:32 -0600 | [diff] [blame] | 3920 | int ret = maybe_optimize_method_call(c, e); |
| 3921 | if (ret >= 0) { |
| 3922 | return ret; |
| 3923 | } |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 3924 | if (!check_caller(c, e->v.Call.func)) { |
| 3925 | return 0; |
| 3926 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3927 | VISIT(c, expr, e->v.Call.func); |
| 3928 | return compiler_call_helper(c, 0, |
| 3929 | e->v.Call.args, |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3930 | e->v.Call.keywords); |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame] | 3931 | } |
| 3932 | |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3933 | static int |
| 3934 | compiler_joined_str(struct compiler *c, expr_ty e) |
| 3935 | { |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3936 | VISIT_SEQ(c, expr, e->v.JoinedStr.values); |
Serhiy Storchaka | 4cc30ae | 2016-12-11 19:37:19 +0200 | [diff] [blame] | 3937 | if (asdl_seq_LEN(e->v.JoinedStr.values) != 1) |
| 3938 | ADDOP_I(c, BUILD_STRING, asdl_seq_LEN(e->v.JoinedStr.values)); |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3939 | return 1; |
| 3940 | } |
| 3941 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3942 | /* Used to implement f-strings. Format a single value. */ |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3943 | static int |
| 3944 | compiler_formatted_value(struct compiler *c, expr_ty e) |
| 3945 | { |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3946 | /* Our oparg encodes 2 pieces of information: the conversion |
| 3947 | character, and whether or not a format_spec was provided. |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3948 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3949 | Convert the conversion char to 2 bits: |
| 3950 | None: 000 0x0 FVC_NONE |
| 3951 | !s : 001 0x1 FVC_STR |
| 3952 | !r : 010 0x2 FVC_REPR |
| 3953 | !a : 011 0x3 FVC_ASCII |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3954 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3955 | next bit is whether or not we have a format spec: |
| 3956 | yes : 100 0x4 |
| 3957 | no : 000 0x0 |
| 3958 | */ |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3959 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3960 | int oparg; |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3961 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3962 | /* Evaluate the expression to be formatted. */ |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3963 | VISIT(c, expr, e->v.FormattedValue.value); |
| 3964 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3965 | switch (e->v.FormattedValue.conversion) { |
| 3966 | case 's': oparg = FVC_STR; break; |
| 3967 | case 'r': oparg = FVC_REPR; break; |
| 3968 | case 'a': oparg = FVC_ASCII; break; |
| 3969 | case -1: oparg = FVC_NONE; break; |
| 3970 | default: |
| 3971 | PyErr_SetString(PyExc_SystemError, |
| 3972 | "Unrecognized conversion character"); |
| 3973 | return 0; |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3974 | } |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3975 | if (e->v.FormattedValue.format_spec) { |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3976 | /* Evaluate the format spec, and update our opcode arg. */ |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3977 | VISIT(c, expr, e->v.FormattedValue.format_spec); |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3978 | oparg |= FVS_HAVE_SPEC; |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3979 | } |
| 3980 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3981 | /* And push our opcode and oparg */ |
| 3982 | ADDOP_I(c, FORMAT_VALUE, oparg); |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 3983 | return 1; |
| 3984 | } |
| 3985 | |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 3986 | static int |
| 3987 | compiler_subkwargs(struct compiler *c, asdl_seq *keywords, Py_ssize_t begin, Py_ssize_t end) |
| 3988 | { |
| 3989 | Py_ssize_t i, n = end - begin; |
| 3990 | keyword_ty kw; |
| 3991 | PyObject *keys, *key; |
| 3992 | assert(n > 0); |
| 3993 | if (n > 1) { |
| 3994 | for (i = begin; i < end; i++) { |
| 3995 | kw = asdl_seq_GET(keywords, i); |
| 3996 | VISIT(c, expr, kw->value); |
| 3997 | } |
| 3998 | keys = PyTuple_New(n); |
| 3999 | if (keys == NULL) { |
| 4000 | return 0; |
| 4001 | } |
| 4002 | for (i = begin; i < end; i++) { |
| 4003 | key = ((keyword_ty) asdl_seq_GET(keywords, i))->arg; |
| 4004 | Py_INCREF(key); |
| 4005 | PyTuple_SET_ITEM(keys, i - begin, key); |
| 4006 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4007 | ADDOP_LOAD_CONST_NEW(c, keys); |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 4008 | ADDOP_I(c, BUILD_CONST_KEY_MAP, n); |
| 4009 | } |
| 4010 | else { |
| 4011 | /* a for loop only executes once */ |
| 4012 | for (i = begin; i < end; i++) { |
| 4013 | kw = asdl_seq_GET(keywords, i); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4014 | ADDOP_LOAD_CONST(c, kw->arg); |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 4015 | VISIT(c, expr, kw->value); |
| 4016 | } |
| 4017 | ADDOP_I(c, BUILD_MAP, n); |
| 4018 | } |
| 4019 | return 1; |
| 4020 | } |
| 4021 | |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame] | 4022 | /* shared code between compiler_call and compiler_class */ |
| 4023 | static int |
| 4024 | compiler_call_helper(struct compiler *c, |
Victor Stinner | 976bb40 | 2016-03-23 11:36:19 +0100 | [diff] [blame] | 4025 | int n, /* Args already pushed */ |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 4026 | asdl_seq *args, |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4027 | asdl_seq *keywords) |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame] | 4028 | { |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4029 | Py_ssize_t i, nseen, nelts, nkwelts; |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 4030 | int mustdictunpack = 0; |
Guido van Rossum | 52cc1d8 | 2007-03-18 15:41:51 +0000 | [diff] [blame] | 4031 | |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4032 | /* the number of tuples and dictionaries on the stack */ |
| 4033 | Py_ssize_t nsubargs = 0, nsubkwargs = 0; |
| 4034 | |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4035 | nelts = asdl_seq_LEN(args); |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4036 | nkwelts = asdl_seq_LEN(keywords); |
| 4037 | |
| 4038 | for (i = 0; i < nkwelts; i++) { |
| 4039 | keyword_ty kw = asdl_seq_GET(keywords, i); |
| 4040 | if (kw->arg == NULL) { |
| 4041 | mustdictunpack = 1; |
| 4042 | break; |
| 4043 | } |
| 4044 | } |
| 4045 | |
| 4046 | nseen = n; /* the number of positional arguments on the stack */ |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4047 | for (i = 0; i < nelts; i++) { |
| 4048 | expr_ty elt = asdl_seq_GET(args, i); |
| 4049 | if (elt->kind == Starred_kind) { |
| 4050 | /* A star-arg. If we've seen positional arguments, |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4051 | pack the positional arguments into a tuple. */ |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4052 | if (nseen) { |
| 4053 | ADDOP_I(c, BUILD_TUPLE, nseen); |
| 4054 | nseen = 0; |
| 4055 | nsubargs++; |
| 4056 | } |
| 4057 | VISIT(c, expr, elt->v.Starred.value); |
| 4058 | nsubargs++; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4059 | } |
| 4060 | else { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4061 | VISIT(c, expr, elt); |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4062 | nseen++; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4063 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4064 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4065 | |
| 4066 | /* Same dance again for keyword arguments */ |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 4067 | if (nsubargs || mustdictunpack) { |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4068 | if (nseen) { |
| 4069 | /* Pack up any trailing positional arguments. */ |
| 4070 | ADDOP_I(c, BUILD_TUPLE, nseen); |
| 4071 | nsubargs++; |
| 4072 | } |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 4073 | if (nsubargs > 1) { |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4074 | /* If we ended up with more than one stararg, we need |
| 4075 | to concatenate them into a single sequence. */ |
Serhiy Storchaka | 7344285 | 2016-10-02 10:33:46 +0300 | [diff] [blame] | 4076 | ADDOP_I(c, BUILD_TUPLE_UNPACK_WITH_CALL, nsubargs); |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4077 | } |
| 4078 | else if (nsubargs == 0) { |
| 4079 | ADDOP_I(c, BUILD_TUPLE, 0); |
| 4080 | } |
| 4081 | nseen = 0; /* the number of keyword arguments on the stack following */ |
| 4082 | for (i = 0; i < nkwelts; i++) { |
| 4083 | keyword_ty kw = asdl_seq_GET(keywords, i); |
| 4084 | if (kw->arg == NULL) { |
| 4085 | /* A keyword argument unpacking. */ |
| 4086 | if (nseen) { |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 4087 | if (!compiler_subkwargs(c, keywords, i - nseen, i)) |
| 4088 | return 0; |
| 4089 | nsubkwargs++; |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4090 | nseen = 0; |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 4091 | } |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4092 | VISIT(c, expr, kw->value); |
| 4093 | nsubkwargs++; |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4094 | } |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4095 | else { |
| 4096 | nseen++; |
| 4097 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4098 | } |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4099 | if (nseen) { |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 4100 | /* Pack up any trailing keyword arguments. */ |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4101 | if (!compiler_subkwargs(c, keywords, nkwelts - nseen, nkwelts)) |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 4102 | return 0; |
| 4103 | nsubkwargs++; |
| 4104 | } |
Serhiy Storchaka | b728105 | 2016-09-12 00:52:40 +0300 | [diff] [blame] | 4105 | if (nsubkwargs > 1) { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4106 | /* Pack it all up */ |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4107 | ADDOP_I(c, BUILD_MAP_UNPACK_WITH_CALL, nsubkwargs); |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4108 | } |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4109 | ADDOP_I(c, CALL_FUNCTION_EX, nsubkwargs > 0); |
| 4110 | return 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4111 | } |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4112 | else if (nkwelts) { |
| 4113 | PyObject *names; |
| 4114 | VISIT_SEQ(c, keyword, keywords); |
| 4115 | names = PyTuple_New(nkwelts); |
| 4116 | if (names == NULL) { |
| 4117 | return 0; |
| 4118 | } |
| 4119 | for (i = 0; i < nkwelts; i++) { |
| 4120 | keyword_ty kw = asdl_seq_GET(keywords, i); |
| 4121 | Py_INCREF(kw->arg); |
| 4122 | PyTuple_SET_ITEM(names, i, kw->arg); |
| 4123 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4124 | ADDOP_LOAD_CONST_NEW(c, names); |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4125 | ADDOP_I(c, CALL_FUNCTION_KW, n + nelts + nkwelts); |
| 4126 | return 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4127 | } |
Victor Stinner | f9b760f | 2016-09-09 10:17:08 -0700 | [diff] [blame] | 4128 | else { |
| 4129 | ADDOP_I(c, CALL_FUNCTION, n + nelts); |
| 4130 | return 1; |
| 4131 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4132 | } |
| 4133 | |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4134 | |
| 4135 | /* List and set comprehensions and generator expressions work by creating a |
| 4136 | nested function to perform the actual iteration. This means that the |
| 4137 | iteration variables don't leak into the current scope. |
| 4138 | The defined function is called immediately following its definition, with the |
| 4139 | result of that call being the result of the expression. |
| 4140 | The LC/SC version returns the populated container, while the GE version is |
| 4141 | flagged in symtable.c as a generator, so it returns the generator object |
| 4142 | when the function is called. |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4143 | |
| 4144 | Possible cleanups: |
| 4145 | - iterate over the generator sequence instead of using recursion |
| 4146 | */ |
| 4147 | |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4148 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4149 | static int |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4150 | compiler_comprehension_generator(struct compiler *c, |
| 4151 | asdl_seq *generators, int gen_index, |
| 4152 | expr_ty elt, expr_ty val, int type) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4153 | { |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4154 | comprehension_ty gen; |
| 4155 | gen = (comprehension_ty)asdl_seq_GET(generators, gen_index); |
| 4156 | if (gen->is_async) { |
| 4157 | return compiler_async_comprehension_generator( |
| 4158 | c, generators, gen_index, elt, val, type); |
| 4159 | } else { |
| 4160 | return compiler_sync_comprehension_generator( |
| 4161 | c, generators, gen_index, elt, val, type); |
| 4162 | } |
| 4163 | } |
| 4164 | |
| 4165 | static int |
| 4166 | compiler_sync_comprehension_generator(struct compiler *c, |
| 4167 | asdl_seq *generators, int gen_index, |
| 4168 | expr_ty elt, expr_ty val, int type) |
| 4169 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4170 | /* generate code for the iterator, then each of the ifs, |
| 4171 | and then write to the element */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4172 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4173 | comprehension_ty gen; |
| 4174 | basicblock *start, *anchor, *skip, *if_cleanup; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 4175 | Py_ssize_t i, n; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4176 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4177 | start = compiler_new_block(c); |
| 4178 | skip = compiler_new_block(c); |
| 4179 | if_cleanup = compiler_new_block(c); |
| 4180 | anchor = compiler_new_block(c); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4181 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4182 | if (start == NULL || skip == NULL || if_cleanup == NULL || |
| 4183 | anchor == NULL) |
| 4184 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4185 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4186 | gen = (comprehension_ty)asdl_seq_GET(generators, gen_index); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4187 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4188 | if (gen_index == 0) { |
| 4189 | /* Receive outermost iter as an implicit argument */ |
| 4190 | c->u->u_argcount = 1; |
| 4191 | ADDOP_I(c, LOAD_FAST, 0); |
| 4192 | } |
| 4193 | else { |
| 4194 | /* Sub-iter - calculate on the fly */ |
| 4195 | VISIT(c, expr, gen->iter); |
| 4196 | ADDOP(c, GET_ITER); |
| 4197 | } |
| 4198 | compiler_use_next_block(c, start); |
| 4199 | ADDOP_JREL(c, FOR_ITER, anchor); |
| 4200 | NEXT_BLOCK(c); |
| 4201 | VISIT(c, expr, gen->target); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4202 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4203 | /* XXX this needs to be cleaned up...a lot! */ |
| 4204 | n = asdl_seq_LEN(gen->ifs); |
| 4205 | for (i = 0; i < n; i++) { |
| 4206 | expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i); |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 4207 | if (!compiler_jump_if(c, e, if_cleanup, 0)) |
| 4208 | return 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4209 | NEXT_BLOCK(c); |
| 4210 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4211 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4212 | if (++gen_index < asdl_seq_LEN(generators)) |
| 4213 | if (!compiler_comprehension_generator(c, |
| 4214 | generators, gen_index, |
| 4215 | elt, val, type)) |
| 4216 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4217 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4218 | /* only append after the last for generator */ |
| 4219 | if (gen_index >= asdl_seq_LEN(generators)) { |
| 4220 | /* comprehension specific code */ |
| 4221 | switch (type) { |
| 4222 | case COMP_GENEXP: |
| 4223 | VISIT(c, expr, elt); |
| 4224 | ADDOP(c, YIELD_VALUE); |
| 4225 | ADDOP(c, POP_TOP); |
| 4226 | break; |
| 4227 | case COMP_LISTCOMP: |
| 4228 | VISIT(c, expr, elt); |
| 4229 | ADDOP_I(c, LIST_APPEND, gen_index + 1); |
| 4230 | break; |
| 4231 | case COMP_SETCOMP: |
| 4232 | VISIT(c, expr, elt); |
| 4233 | ADDOP_I(c, SET_ADD, gen_index + 1); |
| 4234 | break; |
| 4235 | case COMP_DICTCOMP: |
| 4236 | /* With 'd[k] = v', v is evaluated before k, so we do |
| 4237 | the same. */ |
| 4238 | VISIT(c, expr, val); |
| 4239 | VISIT(c, expr, elt); |
| 4240 | ADDOP_I(c, MAP_ADD, gen_index + 1); |
| 4241 | break; |
| 4242 | default: |
| 4243 | return 0; |
| 4244 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4245 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4246 | compiler_use_next_block(c, skip); |
| 4247 | } |
| 4248 | compiler_use_next_block(c, if_cleanup); |
| 4249 | ADDOP_JABS(c, JUMP_ABSOLUTE, start); |
| 4250 | compiler_use_next_block(c, anchor); |
| 4251 | |
| 4252 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4253 | } |
| 4254 | |
| 4255 | static int |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4256 | compiler_async_comprehension_generator(struct compiler *c, |
| 4257 | asdl_seq *generators, int gen_index, |
| 4258 | expr_ty elt, expr_ty val, int type) |
| 4259 | { |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4260 | comprehension_ty gen; |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 4261 | basicblock *start, *if_cleanup, *except; |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4262 | Py_ssize_t i, n; |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 4263 | start = compiler_new_block(c); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4264 | except = compiler_new_block(c); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4265 | if_cleanup = compiler_new_block(c); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4266 | |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 4267 | if (start == NULL || if_cleanup == NULL || except == NULL) { |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4268 | return 0; |
| 4269 | } |
| 4270 | |
| 4271 | gen = (comprehension_ty)asdl_seq_GET(generators, gen_index); |
| 4272 | |
| 4273 | if (gen_index == 0) { |
| 4274 | /* Receive outermost iter as an implicit argument */ |
| 4275 | c->u->u_argcount = 1; |
| 4276 | ADDOP_I(c, LOAD_FAST, 0); |
| 4277 | } |
| 4278 | else { |
| 4279 | /* Sub-iter - calculate on the fly */ |
| 4280 | VISIT(c, expr, gen->iter); |
| 4281 | ADDOP(c, GET_AITER); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4282 | } |
| 4283 | |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 4284 | compiler_use_next_block(c, start); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4285 | |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4286 | ADDOP_JREL(c, SETUP_FINALLY, except); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4287 | ADDOP(c, GET_ANEXT); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4288 | ADDOP_LOAD_CONST(c, Py_None); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4289 | ADDOP(c, YIELD_FROM); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4290 | ADDOP(c, POP_BLOCK); |
Serhiy Storchaka | 24d3201 | 2018-03-10 18:22:34 +0200 | [diff] [blame] | 4291 | VISIT(c, expr, gen->target); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4292 | |
| 4293 | n = asdl_seq_LEN(gen->ifs); |
| 4294 | for (i = 0; i < n; i++) { |
| 4295 | expr_ty e = (expr_ty)asdl_seq_GET(gen->ifs, i); |
Serhiy Storchaka | 36ff451 | 2017-06-11 14:50:22 +0300 | [diff] [blame] | 4296 | if (!compiler_jump_if(c, e, if_cleanup, 0)) |
| 4297 | return 0; |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4298 | NEXT_BLOCK(c); |
| 4299 | } |
| 4300 | |
| 4301 | if (++gen_index < asdl_seq_LEN(generators)) |
| 4302 | if (!compiler_comprehension_generator(c, |
| 4303 | generators, gen_index, |
| 4304 | elt, val, type)) |
| 4305 | return 0; |
| 4306 | |
| 4307 | /* only append after the last for generator */ |
| 4308 | if (gen_index >= asdl_seq_LEN(generators)) { |
| 4309 | /* comprehension specific code */ |
| 4310 | switch (type) { |
| 4311 | case COMP_GENEXP: |
| 4312 | VISIT(c, expr, elt); |
| 4313 | ADDOP(c, YIELD_VALUE); |
| 4314 | ADDOP(c, POP_TOP); |
| 4315 | break; |
| 4316 | case COMP_LISTCOMP: |
| 4317 | VISIT(c, expr, elt); |
| 4318 | ADDOP_I(c, LIST_APPEND, gen_index + 1); |
| 4319 | break; |
| 4320 | case COMP_SETCOMP: |
| 4321 | VISIT(c, expr, elt); |
| 4322 | ADDOP_I(c, SET_ADD, gen_index + 1); |
| 4323 | break; |
| 4324 | case COMP_DICTCOMP: |
| 4325 | /* With 'd[k] = v', v is evaluated before k, so we do |
| 4326 | the same. */ |
| 4327 | VISIT(c, expr, val); |
| 4328 | VISIT(c, expr, elt); |
| 4329 | ADDOP_I(c, MAP_ADD, gen_index + 1); |
| 4330 | break; |
| 4331 | default: |
| 4332 | return 0; |
| 4333 | } |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4334 | } |
| 4335 | compiler_use_next_block(c, if_cleanup); |
Serhiy Storchaka | 702f8f3 | 2018-03-23 14:34:35 +0200 | [diff] [blame] | 4336 | ADDOP_JABS(c, JUMP_ABSOLUTE, start); |
| 4337 | |
| 4338 | compiler_use_next_block(c, except); |
| 4339 | ADDOP(c, END_ASYNC_FOR); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4340 | |
| 4341 | return 1; |
| 4342 | } |
| 4343 | |
| 4344 | static int |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4345 | compiler_comprehension(struct compiler *c, expr_ty e, int type, |
| 4346 | identifier name, asdl_seq *generators, expr_ty elt, |
| 4347 | expr_ty val) |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4348 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4349 | PyCodeObject *co = NULL; |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4350 | comprehension_ty outermost; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 4351 | PyObject *qualname = NULL; |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4352 | int is_async_function = c->u->u_ste->ste_coroutine; |
| 4353 | int is_async_generator = 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4354 | |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4355 | outermost = (comprehension_ty) asdl_seq_GET(generators, 0); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4356 | |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 4357 | if (!compiler_enter_scope(c, name, COMPILER_SCOPE_COMPREHENSION, |
| 4358 | (void *)e, e->lineno)) |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4359 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4360 | goto error; |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4361 | } |
| 4362 | |
| 4363 | is_async_generator = c->u->u_ste->ste_coroutine; |
| 4364 | |
Yury Selivanov | b8ab9d3 | 2017-10-06 02:58:28 -0400 | [diff] [blame] | 4365 | if (is_async_generator && !is_async_function && type != COMP_GENEXP) { |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4366 | compiler_error(c, "asynchronous comprehension outside of " |
| 4367 | "an asynchronous function"); |
| 4368 | goto error_in_scope; |
| 4369 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4370 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4371 | if (type != COMP_GENEXP) { |
| 4372 | int op; |
| 4373 | switch (type) { |
| 4374 | case COMP_LISTCOMP: |
| 4375 | op = BUILD_LIST; |
| 4376 | break; |
| 4377 | case COMP_SETCOMP: |
| 4378 | op = BUILD_SET; |
| 4379 | break; |
| 4380 | case COMP_DICTCOMP: |
| 4381 | op = BUILD_MAP; |
| 4382 | break; |
| 4383 | default: |
| 4384 | PyErr_Format(PyExc_SystemError, |
| 4385 | "unknown comprehension type %d", type); |
| 4386 | goto error_in_scope; |
| 4387 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4388 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4389 | ADDOP_I(c, op, 0); |
| 4390 | } |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4391 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4392 | if (!compiler_comprehension_generator(c, generators, 0, elt, |
| 4393 | val, type)) |
| 4394 | goto error_in_scope; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4395 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4396 | if (type != COMP_GENEXP) { |
| 4397 | ADDOP(c, RETURN_VALUE); |
| 4398 | } |
| 4399 | |
| 4400 | co = assemble(c, 1); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 4401 | qualname = c->u->u_qualname; |
| 4402 | Py_INCREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4403 | compiler_exit_scope(c); |
Benjamin Peterson | 6b4f780 | 2013-10-20 17:50:28 -0400 | [diff] [blame] | 4404 | if (co == NULL) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4405 | goto error; |
| 4406 | |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 4407 | if (!compiler_make_closure(c, co, 0, qualname)) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4408 | goto error; |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 4409 | Py_DECREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4410 | Py_DECREF(co); |
| 4411 | |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4412 | VISIT(c, expr, outermost->iter); |
| 4413 | |
| 4414 | if (outermost->is_async) { |
| 4415 | ADDOP(c, GET_AITER); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4416 | } else { |
| 4417 | ADDOP(c, GET_ITER); |
| 4418 | } |
| 4419 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4420 | ADDOP_I(c, CALL_FUNCTION, 1); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4421 | |
| 4422 | if (is_async_generator && type != COMP_GENEXP) { |
| 4423 | ADDOP(c, GET_AWAITABLE); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4424 | ADDOP_LOAD_CONST(c, Py_None); |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4425 | ADDOP(c, YIELD_FROM); |
| 4426 | } |
| 4427 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4428 | return 1; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4429 | error_in_scope: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4430 | compiler_exit_scope(c); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4431 | error: |
Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 4432 | Py_XDECREF(qualname); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4433 | Py_XDECREF(co); |
| 4434 | return 0; |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4435 | } |
| 4436 | |
| 4437 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4438 | compiler_genexp(struct compiler *c, expr_ty e) |
| 4439 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4440 | static identifier name; |
| 4441 | if (!name) { |
Zackery Spytz | f303639 | 2018-04-15 16:12:29 -0600 | [diff] [blame] | 4442 | name = PyUnicode_InternFromString("<genexpr>"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4443 | if (!name) |
| 4444 | return 0; |
| 4445 | } |
| 4446 | assert(e->kind == GeneratorExp_kind); |
| 4447 | return compiler_comprehension(c, e, COMP_GENEXP, name, |
| 4448 | e->v.GeneratorExp.generators, |
| 4449 | e->v.GeneratorExp.elt, NULL); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4450 | } |
| 4451 | |
| 4452 | static int |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4453 | compiler_listcomp(struct compiler *c, expr_ty e) |
| 4454 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4455 | static identifier name; |
| 4456 | if (!name) { |
Zackery Spytz | f303639 | 2018-04-15 16:12:29 -0600 | [diff] [blame] | 4457 | name = PyUnicode_InternFromString("<listcomp>"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4458 | if (!name) |
| 4459 | return 0; |
| 4460 | } |
| 4461 | assert(e->kind == ListComp_kind); |
| 4462 | return compiler_comprehension(c, e, COMP_LISTCOMP, name, |
| 4463 | e->v.ListComp.generators, |
| 4464 | e->v.ListComp.elt, NULL); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4465 | } |
| 4466 | |
| 4467 | static int |
| 4468 | compiler_setcomp(struct compiler *c, expr_ty e) |
| 4469 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4470 | static identifier name; |
| 4471 | if (!name) { |
Zackery Spytz | f303639 | 2018-04-15 16:12:29 -0600 | [diff] [blame] | 4472 | name = PyUnicode_InternFromString("<setcomp>"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4473 | if (!name) |
| 4474 | return 0; |
| 4475 | } |
| 4476 | assert(e->kind == SetComp_kind); |
| 4477 | return compiler_comprehension(c, e, COMP_SETCOMP, name, |
| 4478 | e->v.SetComp.generators, |
| 4479 | e->v.SetComp.elt, NULL); |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 4480 | } |
| 4481 | |
| 4482 | |
| 4483 | static int |
| 4484 | compiler_dictcomp(struct compiler *c, expr_ty e) |
| 4485 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4486 | static identifier name; |
| 4487 | if (!name) { |
Zackery Spytz | f303639 | 2018-04-15 16:12:29 -0600 | [diff] [blame] | 4488 | name = PyUnicode_InternFromString("<dictcomp>"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4489 | if (!name) |
| 4490 | return 0; |
| 4491 | } |
| 4492 | assert(e->kind == DictComp_kind); |
| 4493 | return compiler_comprehension(c, e, COMP_DICTCOMP, name, |
| 4494 | e->v.DictComp.generators, |
| 4495 | e->v.DictComp.key, e->v.DictComp.value); |
Nick Coghlan | 650f0d0 | 2007-04-15 12:05:43 +0000 | [diff] [blame] | 4496 | } |
| 4497 | |
| 4498 | |
| 4499 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4500 | compiler_visit_keyword(struct compiler *c, keyword_ty k) |
| 4501 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4502 | VISIT(c, expr, k->value); |
| 4503 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4504 | } |
| 4505 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4506 | /* Test whether expression is constant. For constants, report |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4507 | whether they are true or false. |
| 4508 | |
| 4509 | Return values: 1 for true, 0 for false, -1 for non-constant. |
| 4510 | */ |
| 4511 | |
| 4512 | static int |
Serhiy Storchaka | 3dfbaf5 | 2017-12-25 12:47:50 +0200 | [diff] [blame] | 4513 | expr_constant(expr_ty e) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4514 | { |
Serhiy Storchaka | 3f22811 | 2018-09-27 17:42:37 +0300 | [diff] [blame] | 4515 | if (e->kind == Constant_kind) { |
| 4516 | return PyObject_IsTrue(e->v.Constant.value); |
Benjamin Peterson | 442f209 | 2012-12-06 17:41:04 -0500 | [diff] [blame] | 4517 | } |
Serhiy Storchaka | 3325a67 | 2017-12-15 12:35:48 +0200 | [diff] [blame] | 4518 | return -1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4519 | } |
| 4520 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4521 | |
| 4522 | /* |
| 4523 | Implements the async with statement. |
| 4524 | |
| 4525 | The semantics outlined in that PEP are as follows: |
| 4526 | |
| 4527 | async with EXPR as VAR: |
| 4528 | BLOCK |
| 4529 | |
| 4530 | It is implemented roughly as: |
| 4531 | |
| 4532 | context = EXPR |
| 4533 | exit = context.__aexit__ # not calling it |
| 4534 | value = await context.__aenter__() |
| 4535 | try: |
| 4536 | VAR = value # if VAR present in the syntax |
| 4537 | BLOCK |
| 4538 | finally: |
| 4539 | if an exception was raised: |
Serhiy Storchaka | ec466a1 | 2015-06-11 00:09:32 +0300 | [diff] [blame] | 4540 | exc = copy of (exception, instance, traceback) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4541 | else: |
Serhiy Storchaka | ec466a1 | 2015-06-11 00:09:32 +0300 | [diff] [blame] | 4542 | exc = (None, None, None) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4543 | if not (await exit(*exc)): |
| 4544 | raise |
| 4545 | */ |
| 4546 | static int |
| 4547 | compiler_async_with(struct compiler *c, stmt_ty s, int pos) |
| 4548 | { |
| 4549 | basicblock *block, *finally; |
| 4550 | withitem_ty item = asdl_seq_GET(s->v.AsyncWith.items, pos); |
| 4551 | |
| 4552 | assert(s->kind == AsyncWith_kind); |
Zsolt Dollenstein | e239650 | 2018-04-27 08:58:56 -0700 | [diff] [blame] | 4553 | if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION) { |
| 4554 | return compiler_error(c, "'async with' outside async function"); |
| 4555 | } |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4556 | |
| 4557 | block = compiler_new_block(c); |
| 4558 | finally = compiler_new_block(c); |
| 4559 | if (!block || !finally) |
| 4560 | return 0; |
| 4561 | |
| 4562 | /* Evaluate EXPR */ |
| 4563 | VISIT(c, expr, item->context_expr); |
| 4564 | |
| 4565 | ADDOP(c, BEFORE_ASYNC_WITH); |
| 4566 | ADDOP(c, GET_AWAITABLE); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4567 | ADDOP_LOAD_CONST(c, Py_None); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4568 | ADDOP(c, YIELD_FROM); |
| 4569 | |
| 4570 | ADDOP_JREL(c, SETUP_ASYNC_WITH, finally); |
| 4571 | |
| 4572 | /* SETUP_ASYNC_WITH pushes a finally block. */ |
| 4573 | compiler_use_next_block(c, block); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4574 | if (!compiler_push_fblock(c, ASYNC_WITH, block, finally)) { |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4575 | return 0; |
| 4576 | } |
| 4577 | |
| 4578 | if (item->optional_vars) { |
| 4579 | VISIT(c, expr, item->optional_vars); |
| 4580 | } |
| 4581 | else { |
| 4582 | /* Discard result from context.__aenter__() */ |
| 4583 | ADDOP(c, POP_TOP); |
| 4584 | } |
| 4585 | |
| 4586 | pos++; |
| 4587 | if (pos == asdl_seq_LEN(s->v.AsyncWith.items)) |
| 4588 | /* BLOCK code */ |
| 4589 | VISIT_SEQ(c, stmt, s->v.AsyncWith.body) |
| 4590 | else if (!compiler_async_with(c, s, pos)) |
| 4591 | return 0; |
| 4592 | |
| 4593 | /* End of try block; start the finally block */ |
| 4594 | ADDOP(c, POP_BLOCK); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4595 | ADDOP(c, BEGIN_FINALLY); |
| 4596 | compiler_pop_fblock(c, ASYNC_WITH, block); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4597 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4598 | compiler_use_next_block(c, finally); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4599 | if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4600 | return 0; |
| 4601 | |
| 4602 | /* Finally block starts; context.__exit__ is on the stack under |
| 4603 | the exception or return information. Just issue our magic |
| 4604 | opcode. */ |
| 4605 | ADDOP(c, WITH_CLEANUP_START); |
| 4606 | |
| 4607 | ADDOP(c, GET_AWAITABLE); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4608 | ADDOP_LOAD_CONST(c, Py_None); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4609 | ADDOP(c, YIELD_FROM); |
| 4610 | |
| 4611 | ADDOP(c, WITH_CLEANUP_FINISH); |
| 4612 | |
| 4613 | /* Finally block ends. */ |
| 4614 | ADDOP(c, END_FINALLY); |
| 4615 | compiler_pop_fblock(c, FINALLY_END, finally); |
| 4616 | return 1; |
| 4617 | } |
| 4618 | |
| 4619 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4620 | /* |
| 4621 | Implements the with statement from PEP 343. |
| 4622 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4623 | The semantics outlined in that PEP are as follows: |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4624 | |
| 4625 | with EXPR as VAR: |
| 4626 | BLOCK |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4627 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4628 | It is implemented roughly as: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4629 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 4630 | context = EXPR |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4631 | exit = context.__exit__ # not calling it |
| 4632 | value = context.__enter__() |
| 4633 | try: |
| 4634 | VAR = value # if VAR present in the syntax |
| 4635 | BLOCK |
| 4636 | finally: |
| 4637 | if an exception was raised: |
Serhiy Storchaka | d741a88 | 2015-06-11 00:06:39 +0300 | [diff] [blame] | 4638 | exc = copy of (exception, instance, traceback) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4639 | else: |
Serhiy Storchaka | d741a88 | 2015-06-11 00:06:39 +0300 | [diff] [blame] | 4640 | exc = (None, None, None) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4641 | exit(*exc) |
| 4642 | */ |
| 4643 | static int |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 4644 | compiler_with(struct compiler *c, stmt_ty s, int pos) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4645 | { |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4646 | basicblock *block, *finally; |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 4647 | withitem_ty item = asdl_seq_GET(s->v.With.items, pos); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4648 | |
| 4649 | assert(s->kind == With_kind); |
| 4650 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4651 | block = compiler_new_block(c); |
| 4652 | finally = compiler_new_block(c); |
| 4653 | if (!block || !finally) |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 4654 | return 0; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4655 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 4656 | /* Evaluate EXPR */ |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 4657 | VISIT(c, expr, item->context_expr); |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 4658 | ADDOP_JREL(c, SETUP_WITH, finally); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4659 | |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 4660 | /* SETUP_WITH pushes a finally block. */ |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4661 | compiler_use_next_block(c, block); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4662 | if (!compiler_push_fblock(c, WITH, block, finally)) { |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 4663 | return 0; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4664 | } |
| 4665 | |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 4666 | if (item->optional_vars) { |
| 4667 | VISIT(c, expr, item->optional_vars); |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 4668 | } |
| 4669 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4670 | /* Discard result from context.__enter__() */ |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 4671 | ADDOP(c, POP_TOP); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4672 | } |
| 4673 | |
Benjamin Peterson | bf1bbc1 | 2011-05-27 13:58:08 -0500 | [diff] [blame] | 4674 | pos++; |
| 4675 | if (pos == asdl_seq_LEN(s->v.With.items)) |
| 4676 | /* BLOCK code */ |
| 4677 | VISIT_SEQ(c, stmt, s->v.With.body) |
| 4678 | else if (!compiler_with(c, s, pos)) |
| 4679 | return 0; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4680 | |
| 4681 | /* End of try block; start the finally block */ |
| 4682 | ADDOP(c, POP_BLOCK); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4683 | ADDOP(c, BEGIN_FINALLY); |
| 4684 | compiler_pop_fblock(c, WITH, block); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4685 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4686 | compiler_use_next_block(c, finally); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 4687 | if (!compiler_push_fblock(c, FINALLY_END, finally, NULL)) |
Antoine Pitrou | 9aee2c8 | 2010-06-22 21:49:39 +0000 | [diff] [blame] | 4688 | return 0; |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4689 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 4690 | /* Finally block starts; context.__exit__ is on the stack under |
| 4691 | the exception or return information. Just issue our magic |
| 4692 | opcode. */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4693 | ADDOP(c, WITH_CLEANUP_START); |
| 4694 | ADDOP(c, WITH_CLEANUP_FINISH); |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 4695 | |
| 4696 | /* Finally block ends. */ |
| 4697 | ADDOP(c, END_FINALLY); |
| 4698 | compiler_pop_fblock(c, FINALLY_END, finally); |
| 4699 | return 1; |
| 4700 | } |
| 4701 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4702 | static int |
Serhiy Storchaka | da8d72c | 2018-09-17 15:17:29 +0300 | [diff] [blame] | 4703 | compiler_visit_expr1(struct compiler *c, expr_ty e) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4704 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4705 | switch (e->kind) { |
Emily Morehouse | 8f59ee0 | 2019-01-24 16:49:56 -0700 | [diff] [blame] | 4706 | case NamedExpr_kind: |
| 4707 | VISIT(c, expr, e->v.NamedExpr.value); |
| 4708 | ADDOP(c, DUP_TOP); |
| 4709 | VISIT(c, expr, e->v.NamedExpr.target); |
| 4710 | break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4711 | case BoolOp_kind: |
| 4712 | return compiler_boolop(c, e); |
| 4713 | case BinOp_kind: |
| 4714 | VISIT(c, expr, e->v.BinOp.left); |
| 4715 | VISIT(c, expr, e->v.BinOp.right); |
| 4716 | ADDOP(c, binop(c, e->v.BinOp.op)); |
| 4717 | break; |
| 4718 | case UnaryOp_kind: |
| 4719 | VISIT(c, expr, e->v.UnaryOp.operand); |
| 4720 | ADDOP(c, unaryop(e->v.UnaryOp.op)); |
| 4721 | break; |
| 4722 | case Lambda_kind: |
| 4723 | return compiler_lambda(c, e); |
| 4724 | case IfExp_kind: |
| 4725 | return compiler_ifexp(c, e); |
| 4726 | case Dict_kind: |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4727 | return compiler_dict(c, e); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4728 | case Set_kind: |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4729 | return compiler_set(c, e); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4730 | case GeneratorExp_kind: |
| 4731 | return compiler_genexp(c, e); |
| 4732 | case ListComp_kind: |
| 4733 | return compiler_listcomp(c, e); |
| 4734 | case SetComp_kind: |
| 4735 | return compiler_setcomp(c, e); |
| 4736 | case DictComp_kind: |
| 4737 | return compiler_dictcomp(c, e); |
| 4738 | case Yield_kind: |
| 4739 | if (c->u->u_ste->ste_type != FunctionBlock) |
| 4740 | return compiler_error(c, "'yield' outside function"); |
Mark Dickinson | ded35ae | 2012-11-25 14:36:26 +0000 | [diff] [blame] | 4741 | if (e->v.Yield.value) { |
| 4742 | VISIT(c, expr, e->v.Yield.value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4743 | } |
| 4744 | else { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4745 | ADDOP_LOAD_CONST(c, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4746 | } |
Mark Dickinson | ded35ae | 2012-11-25 14:36:26 +0000 | [diff] [blame] | 4747 | ADDOP(c, YIELD_VALUE); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4748 | break; |
Mark Dickinson | ded35ae | 2012-11-25 14:36:26 +0000 | [diff] [blame] | 4749 | case YieldFrom_kind: |
| 4750 | if (c->u->u_ste->ste_type != FunctionBlock) |
| 4751 | return compiler_error(c, "'yield' outside function"); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4752 | |
| 4753 | if (c->u->u_scope_type == COMPILER_SCOPE_ASYNC_FUNCTION) |
| 4754 | return compiler_error(c, "'yield from' inside async function"); |
| 4755 | |
Mark Dickinson | ded35ae | 2012-11-25 14:36:26 +0000 | [diff] [blame] | 4756 | VISIT(c, expr, e->v.YieldFrom.value); |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 4757 | ADDOP(c, GET_YIELD_FROM_ITER); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4758 | ADDOP_LOAD_CONST(c, Py_None); |
Mark Dickinson | ded35ae | 2012-11-25 14:36:26 +0000 | [diff] [blame] | 4759 | ADDOP(c, YIELD_FROM); |
| 4760 | break; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4761 | case Await_kind: |
| 4762 | if (c->u->u_ste->ste_type != FunctionBlock) |
| 4763 | return compiler_error(c, "'await' outside function"); |
| 4764 | |
Yury Selivanov | 52c4e7c | 2016-09-09 10:36:01 -0700 | [diff] [blame] | 4765 | if (c->u->u_scope_type != COMPILER_SCOPE_ASYNC_FUNCTION && |
| 4766 | c->u->u_scope_type != COMPILER_SCOPE_COMPREHENSION) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4767 | return compiler_error(c, "'await' outside async function"); |
| 4768 | |
| 4769 | VISIT(c, expr, e->v.Await.value); |
| 4770 | ADDOP(c, GET_AWAITABLE); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4771 | ADDOP_LOAD_CONST(c, Py_None); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4772 | ADDOP(c, YIELD_FROM); |
| 4773 | break; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4774 | case Compare_kind: |
| 4775 | return compiler_compare(c, e); |
| 4776 | case Call_kind: |
| 4777 | return compiler_call(c, e); |
Victor Stinner | f2c1aa1 | 2016-01-26 00:40:57 +0100 | [diff] [blame] | 4778 | case Constant_kind: |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 4779 | ADDOP_LOAD_CONST(c, e->v.Constant.value); |
Victor Stinner | f2c1aa1 | 2016-01-26 00:40:57 +0100 | [diff] [blame] | 4780 | break; |
Eric V. Smith | 235a6f0 | 2015-09-19 14:51:32 -0400 | [diff] [blame] | 4781 | case JoinedStr_kind: |
| 4782 | return compiler_joined_str(c, e); |
| 4783 | case FormattedValue_kind: |
| 4784 | return compiler_formatted_value(c, e); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4785 | /* The following exprs can be assignment targets. */ |
| 4786 | case Attribute_kind: |
| 4787 | if (e->v.Attribute.ctx != AugStore) |
| 4788 | VISIT(c, expr, e->v.Attribute.value); |
| 4789 | switch (e->v.Attribute.ctx) { |
| 4790 | case AugLoad: |
| 4791 | ADDOP(c, DUP_TOP); |
Stefan Krah | f432a32 | 2017-08-21 13:09:59 +0200 | [diff] [blame] | 4792 | /* Fall through */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4793 | case Load: |
| 4794 | ADDOP_NAME(c, LOAD_ATTR, e->v.Attribute.attr, names); |
| 4795 | break; |
| 4796 | case AugStore: |
| 4797 | ADDOP(c, ROT_TWO); |
Stefan Krah | f432a32 | 2017-08-21 13:09:59 +0200 | [diff] [blame] | 4798 | /* Fall through */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4799 | case Store: |
| 4800 | ADDOP_NAME(c, STORE_ATTR, e->v.Attribute.attr, names); |
| 4801 | break; |
| 4802 | case Del: |
| 4803 | ADDOP_NAME(c, DELETE_ATTR, e->v.Attribute.attr, names); |
| 4804 | break; |
| 4805 | case Param: |
| 4806 | default: |
| 4807 | PyErr_SetString(PyExc_SystemError, |
| 4808 | "param invalid in attribute expression"); |
| 4809 | return 0; |
| 4810 | } |
| 4811 | break; |
| 4812 | case Subscript_kind: |
| 4813 | switch (e->v.Subscript.ctx) { |
| 4814 | case AugLoad: |
| 4815 | VISIT(c, expr, e->v.Subscript.value); |
| 4816 | VISIT_SLICE(c, e->v.Subscript.slice, AugLoad); |
| 4817 | break; |
| 4818 | case Load: |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 4819 | if (!check_subscripter(c, e->v.Subscript.value)) { |
| 4820 | return 0; |
| 4821 | } |
| 4822 | if (!check_index(c, e->v.Subscript.value, e->v.Subscript.slice)) { |
| 4823 | return 0; |
| 4824 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4825 | VISIT(c, expr, e->v.Subscript.value); |
| 4826 | VISIT_SLICE(c, e->v.Subscript.slice, Load); |
| 4827 | break; |
| 4828 | case AugStore: |
| 4829 | VISIT_SLICE(c, e->v.Subscript.slice, AugStore); |
| 4830 | break; |
| 4831 | case Store: |
| 4832 | VISIT(c, expr, e->v.Subscript.value); |
| 4833 | VISIT_SLICE(c, e->v.Subscript.slice, Store); |
| 4834 | break; |
| 4835 | case Del: |
| 4836 | VISIT(c, expr, e->v.Subscript.value); |
| 4837 | VISIT_SLICE(c, e->v.Subscript.slice, Del); |
| 4838 | break; |
| 4839 | case Param: |
| 4840 | default: |
| 4841 | PyErr_SetString(PyExc_SystemError, |
| 4842 | "param invalid in subscript expression"); |
| 4843 | return 0; |
| 4844 | } |
| 4845 | break; |
| 4846 | case Starred_kind: |
| 4847 | switch (e->v.Starred.ctx) { |
| 4848 | case Store: |
| 4849 | /* In all legitimate cases, the Starred node was already replaced |
| 4850 | * by compiler_list/compiler_tuple. XXX: is that okay? */ |
| 4851 | return compiler_error(c, |
| 4852 | "starred assignment target must be in a list or tuple"); |
| 4853 | default: |
| 4854 | return compiler_error(c, |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 4855 | "can't use starred expression here"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4856 | } |
| 4857 | break; |
| 4858 | case Name_kind: |
| 4859 | return compiler_nameop(c, e->v.Name.id, e->v.Name.ctx); |
| 4860 | /* child nodes of List and Tuple will have expr_context set */ |
| 4861 | case List_kind: |
| 4862 | return compiler_list(c, e); |
| 4863 | case Tuple_kind: |
| 4864 | return compiler_tuple(c, e); |
| 4865 | } |
| 4866 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4867 | } |
| 4868 | |
| 4869 | static int |
Serhiy Storchaka | da8d72c | 2018-09-17 15:17:29 +0300 | [diff] [blame] | 4870 | compiler_visit_expr(struct compiler *c, expr_ty e) |
| 4871 | { |
| 4872 | /* If expr e has a different line number than the last expr/stmt, |
| 4873 | set a new line number for the next instruction. |
| 4874 | */ |
| 4875 | int old_lineno = c->u->u_lineno; |
| 4876 | int old_col_offset = c->u->u_col_offset; |
| 4877 | if (e->lineno != c->u->u_lineno) { |
| 4878 | c->u->u_lineno = e->lineno; |
| 4879 | c->u->u_lineno_set = 0; |
| 4880 | } |
| 4881 | /* Updating the column offset is always harmless. */ |
| 4882 | c->u->u_col_offset = e->col_offset; |
| 4883 | |
| 4884 | int res = compiler_visit_expr1(c, e); |
| 4885 | |
| 4886 | if (old_lineno != c->u->u_lineno) { |
| 4887 | c->u->u_lineno = old_lineno; |
| 4888 | c->u->u_lineno_set = 0; |
| 4889 | } |
| 4890 | c->u->u_col_offset = old_col_offset; |
| 4891 | return res; |
| 4892 | } |
| 4893 | |
| 4894 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4895 | compiler_augassign(struct compiler *c, stmt_ty s) |
| 4896 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4897 | expr_ty e = s->v.AugAssign.target; |
| 4898 | expr_ty auge; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4899 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4900 | assert(s->kind == AugAssign_kind); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4901 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4902 | switch (e->kind) { |
| 4903 | case Attribute_kind: |
| 4904 | auge = Attribute(e->v.Attribute.value, e->v.Attribute.attr, |
Ivan Levkivskyi | 9932a22 | 2019-01-22 11:18:22 +0000 | [diff] [blame] | 4905 | AugLoad, e->lineno, e->col_offset, |
| 4906 | e->end_lineno, e->end_col_offset, c->c_arena); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4907 | if (auge == NULL) |
| 4908 | return 0; |
| 4909 | VISIT(c, expr, auge); |
| 4910 | VISIT(c, expr, s->v.AugAssign.value); |
| 4911 | ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); |
| 4912 | auge->v.Attribute.ctx = AugStore; |
| 4913 | VISIT(c, expr, auge); |
| 4914 | break; |
| 4915 | case Subscript_kind: |
| 4916 | auge = Subscript(e->v.Subscript.value, e->v.Subscript.slice, |
Ivan Levkivskyi | 9932a22 | 2019-01-22 11:18:22 +0000 | [diff] [blame] | 4917 | AugLoad, e->lineno, e->col_offset, |
| 4918 | e->end_lineno, e->end_col_offset, c->c_arena); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4919 | if (auge == NULL) |
| 4920 | return 0; |
| 4921 | VISIT(c, expr, auge); |
| 4922 | VISIT(c, expr, s->v.AugAssign.value); |
| 4923 | ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); |
| 4924 | auge->v.Subscript.ctx = AugStore; |
| 4925 | VISIT(c, expr, auge); |
| 4926 | break; |
| 4927 | case Name_kind: |
| 4928 | if (!compiler_nameop(c, e->v.Name.id, Load)) |
| 4929 | return 0; |
| 4930 | VISIT(c, expr, s->v.AugAssign.value); |
| 4931 | ADDOP(c, inplace_binop(c, s->v.AugAssign.op)); |
| 4932 | return compiler_nameop(c, e->v.Name.id, Store); |
| 4933 | default: |
| 4934 | PyErr_Format(PyExc_SystemError, |
| 4935 | "invalid node type (%d) for augmented assignment", |
| 4936 | e->kind); |
| 4937 | return 0; |
| 4938 | } |
| 4939 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 4940 | } |
| 4941 | |
| 4942 | static int |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 4943 | check_ann_expr(struct compiler *c, expr_ty e) |
| 4944 | { |
| 4945 | VISIT(c, expr, e); |
| 4946 | ADDOP(c, POP_TOP); |
| 4947 | return 1; |
| 4948 | } |
| 4949 | |
| 4950 | static int |
| 4951 | check_annotation(struct compiler *c, stmt_ty s) |
| 4952 | { |
| 4953 | /* Annotations are only evaluated in a module or class. */ |
| 4954 | if (c->u->u_scope_type == COMPILER_SCOPE_MODULE || |
| 4955 | c->u->u_scope_type == COMPILER_SCOPE_CLASS) { |
| 4956 | return check_ann_expr(c, s->v.AnnAssign.annotation); |
| 4957 | } |
| 4958 | return 1; |
| 4959 | } |
| 4960 | |
| 4961 | static int |
| 4962 | check_ann_slice(struct compiler *c, slice_ty sl) |
| 4963 | { |
| 4964 | switch(sl->kind) { |
| 4965 | case Index_kind: |
| 4966 | return check_ann_expr(c, sl->v.Index.value); |
| 4967 | case Slice_kind: |
| 4968 | if (sl->v.Slice.lower && !check_ann_expr(c, sl->v.Slice.lower)) { |
| 4969 | return 0; |
| 4970 | } |
| 4971 | if (sl->v.Slice.upper && !check_ann_expr(c, sl->v.Slice.upper)) { |
| 4972 | return 0; |
| 4973 | } |
| 4974 | if (sl->v.Slice.step && !check_ann_expr(c, sl->v.Slice.step)) { |
| 4975 | return 0; |
| 4976 | } |
| 4977 | break; |
| 4978 | default: |
| 4979 | PyErr_SetString(PyExc_SystemError, |
| 4980 | "unexpected slice kind"); |
| 4981 | return 0; |
| 4982 | } |
| 4983 | return 1; |
| 4984 | } |
| 4985 | |
| 4986 | static int |
| 4987 | check_ann_subscr(struct compiler *c, slice_ty sl) |
| 4988 | { |
| 4989 | /* We check that everything in a subscript is defined at runtime. */ |
| 4990 | Py_ssize_t i, n; |
| 4991 | |
| 4992 | switch (sl->kind) { |
| 4993 | case Index_kind: |
| 4994 | case Slice_kind: |
| 4995 | if (!check_ann_slice(c, sl)) { |
| 4996 | return 0; |
| 4997 | } |
| 4998 | break; |
| 4999 | case ExtSlice_kind: |
| 5000 | n = asdl_seq_LEN(sl->v.ExtSlice.dims); |
| 5001 | for (i = 0; i < n; i++) { |
| 5002 | slice_ty subsl = (slice_ty)asdl_seq_GET(sl->v.ExtSlice.dims, i); |
| 5003 | switch (subsl->kind) { |
| 5004 | case Index_kind: |
| 5005 | case Slice_kind: |
| 5006 | if (!check_ann_slice(c, subsl)) { |
| 5007 | return 0; |
| 5008 | } |
| 5009 | break; |
| 5010 | case ExtSlice_kind: |
| 5011 | default: |
| 5012 | PyErr_SetString(PyExc_SystemError, |
| 5013 | "extended slice invalid in nested slice"); |
| 5014 | return 0; |
| 5015 | } |
| 5016 | } |
| 5017 | break; |
| 5018 | default: |
| 5019 | PyErr_Format(PyExc_SystemError, |
| 5020 | "invalid subscript kind %d", sl->kind); |
| 5021 | return 0; |
| 5022 | } |
| 5023 | return 1; |
| 5024 | } |
| 5025 | |
| 5026 | static int |
| 5027 | compiler_annassign(struct compiler *c, stmt_ty s) |
| 5028 | { |
| 5029 | expr_ty targ = s->v.AnnAssign.target; |
Guido van Rossum | 015d874 | 2016-09-11 09:45:24 -0700 | [diff] [blame] | 5030 | PyObject* mangled; |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 5031 | |
| 5032 | assert(s->kind == AnnAssign_kind); |
| 5033 | |
| 5034 | /* We perform the actual assignment first. */ |
| 5035 | if (s->v.AnnAssign.value) { |
| 5036 | VISIT(c, expr, s->v.AnnAssign.value); |
| 5037 | VISIT(c, expr, targ); |
| 5038 | } |
| 5039 | switch (targ->kind) { |
| 5040 | case Name_kind: |
| 5041 | /* If we have a simple name in a module or class, store annotation. */ |
| 5042 | if (s->v.AnnAssign.simple && |
| 5043 | (c->u->u_scope_type == COMPILER_SCOPE_MODULE || |
| 5044 | c->u->u_scope_type == COMPILER_SCOPE_CLASS)) { |
Guido van Rossum | 95e4d58 | 2018-01-26 08:20:18 -0800 | [diff] [blame] | 5045 | if (c->c_future->ff_features & CO_FUTURE_ANNOTATIONS) { |
| 5046 | VISIT(c, annexpr, s->v.AnnAssign.annotation) |
| 5047 | } |
| 5048 | else { |
| 5049 | VISIT(c, expr, s->v.AnnAssign.annotation); |
| 5050 | } |
Mark Shannon | 332cd5e | 2018-01-30 00:41:04 +0000 | [diff] [blame] | 5051 | ADDOP_NAME(c, LOAD_NAME, __annotations__, names); |
Serhiy Storchaka | a95d986 | 2018-03-24 22:42:35 +0200 | [diff] [blame] | 5052 | mangled = _Py_Mangle(c->u->u_private, targ->v.Name.id); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5053 | ADDOP_LOAD_CONST_NEW(c, mangled); |
Mark Shannon | 332cd5e | 2018-01-30 00:41:04 +0000 | [diff] [blame] | 5054 | ADDOP(c, STORE_SUBSCR); |
Yury Selivanov | f8cb8a1 | 2016-09-08 20:50:03 -0700 | [diff] [blame] | 5055 | } |
| 5056 | break; |
| 5057 | case Attribute_kind: |
| 5058 | if (!s->v.AnnAssign.value && |
| 5059 | !check_ann_expr(c, targ->v.Attribute.value)) { |
| 5060 | return 0; |
| 5061 | } |
| 5062 | break; |
| 5063 | case Subscript_kind: |
| 5064 | if (!s->v.AnnAssign.value && |
| 5065 | (!check_ann_expr(c, targ->v.Subscript.value) || |
| 5066 | !check_ann_subscr(c, targ->v.Subscript.slice))) { |
| 5067 | return 0; |
| 5068 | } |
| 5069 | break; |
| 5070 | default: |
| 5071 | PyErr_Format(PyExc_SystemError, |
| 5072 | "invalid node type (%d) for annotated assignment", |
| 5073 | targ->kind); |
| 5074 | return 0; |
| 5075 | } |
| 5076 | /* Annotation is evaluated last. */ |
| 5077 | if (!s->v.AnnAssign.simple && !check_annotation(c, s)) { |
| 5078 | return 0; |
| 5079 | } |
| 5080 | return 1; |
| 5081 | } |
| 5082 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5083 | /* Raises a SyntaxError and returns 0. |
| 5084 | If something goes wrong, a different exception may be raised. |
| 5085 | */ |
| 5086 | |
| 5087 | static int |
| 5088 | compiler_error(struct compiler *c, const char *errstr) |
| 5089 | { |
Benjamin Peterson | 43b0686 | 2011-05-27 09:08:01 -0500 | [diff] [blame] | 5090 | PyObject *loc; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5091 | PyObject *u = NULL, *v = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5092 | |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 5093 | loc = PyErr_ProgramTextObject(c->c_filename, c->u->u_lineno); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5094 | if (!loc) { |
| 5095 | Py_INCREF(Py_None); |
| 5096 | loc = Py_None; |
| 5097 | } |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 5098 | u = Py_BuildValue("(OiiO)", c->c_filename, c->u->u_lineno, |
Ammar Askar | 025eb98 | 2018-09-24 17:12:49 -0400 | [diff] [blame] | 5099 | c->u->u_col_offset + 1, loc); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5100 | if (!u) |
| 5101 | goto exit; |
| 5102 | v = Py_BuildValue("(zO)", errstr, u); |
| 5103 | if (!v) |
| 5104 | goto exit; |
| 5105 | PyErr_SetObject(PyExc_SyntaxError, v); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5106 | exit: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5107 | Py_DECREF(loc); |
| 5108 | Py_XDECREF(u); |
| 5109 | Py_XDECREF(v); |
| 5110 | return 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5111 | } |
| 5112 | |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5113 | /* Emits a SyntaxWarning and returns 1 on success. |
| 5114 | If a SyntaxWarning raised as error, replaces it with a SyntaxError |
| 5115 | and returns 0. |
| 5116 | */ |
| 5117 | static int |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 5118 | compiler_warn(struct compiler *c, const char *format, ...) |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5119 | { |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 5120 | va_list vargs; |
| 5121 | #ifdef HAVE_STDARG_PROTOTYPES |
| 5122 | va_start(vargs, format); |
| 5123 | #else |
| 5124 | va_start(vargs); |
| 5125 | #endif |
| 5126 | PyObject *msg = PyUnicode_FromFormatV(format, vargs); |
| 5127 | va_end(vargs); |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5128 | if (msg == NULL) { |
| 5129 | return 0; |
| 5130 | } |
| 5131 | if (PyErr_WarnExplicitObject(PyExc_SyntaxWarning, msg, c->c_filename, |
| 5132 | c->u->u_lineno, NULL, NULL) < 0) |
| 5133 | { |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5134 | if (PyErr_ExceptionMatches(PyExc_SyntaxWarning)) { |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 5135 | /* Replace the SyntaxWarning exception with a SyntaxError |
| 5136 | to get a more accurate error report */ |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5137 | PyErr_Clear(); |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 5138 | assert(PyUnicode_AsUTF8(msg) != NULL); |
| 5139 | compiler_error(c, PyUnicode_AsUTF8(msg)); |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5140 | } |
Serhiy Storchaka | 62e4481 | 2019-02-16 08:12:19 +0200 | [diff] [blame] | 5141 | Py_DECREF(msg); |
Serhiy Storchaka | d31e773 | 2018-10-21 10:09:39 +0300 | [diff] [blame] | 5142 | return 0; |
| 5143 | } |
| 5144 | Py_DECREF(msg); |
| 5145 | return 1; |
| 5146 | } |
| 5147 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5148 | static int |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5149 | compiler_handle_subscr(struct compiler *c, const char *kind, |
| 5150 | expr_context_ty ctx) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5151 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5152 | int op = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5153 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5154 | /* XXX this code is duplicated */ |
| 5155 | switch (ctx) { |
| 5156 | case AugLoad: /* fall through to Load */ |
| 5157 | case Load: op = BINARY_SUBSCR; break; |
| 5158 | case AugStore:/* fall through to Store */ |
| 5159 | case Store: op = STORE_SUBSCR; break; |
| 5160 | case Del: op = DELETE_SUBSCR; break; |
| 5161 | case Param: |
| 5162 | PyErr_Format(PyExc_SystemError, |
| 5163 | "invalid %s kind %d in subscript\n", |
| 5164 | kind, ctx); |
| 5165 | return 0; |
| 5166 | } |
| 5167 | if (ctx == AugLoad) { |
Antoine Pitrou | 74a69fa | 2010-09-04 18:43:52 +0000 | [diff] [blame] | 5168 | ADDOP(c, DUP_TOP_TWO); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5169 | } |
| 5170 | else if (ctx == AugStore) { |
| 5171 | ADDOP(c, ROT_THREE); |
| 5172 | } |
| 5173 | ADDOP(c, op); |
| 5174 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5175 | } |
| 5176 | |
| 5177 | static int |
| 5178 | compiler_slice(struct compiler *c, slice_ty s, expr_context_ty ctx) |
| 5179 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5180 | int n = 2; |
| 5181 | assert(s->kind == Slice_kind); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5182 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5183 | /* only handles the cases where BUILD_SLICE is emitted */ |
| 5184 | if (s->v.Slice.lower) { |
| 5185 | VISIT(c, expr, s->v.Slice.lower); |
| 5186 | } |
| 5187 | else { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5188 | ADDOP_LOAD_CONST(c, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5189 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5190 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5191 | if (s->v.Slice.upper) { |
| 5192 | VISIT(c, expr, s->v.Slice.upper); |
| 5193 | } |
| 5194 | else { |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5195 | ADDOP_LOAD_CONST(c, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5196 | } |
| 5197 | |
| 5198 | if (s->v.Slice.step) { |
| 5199 | n++; |
| 5200 | VISIT(c, expr, s->v.Slice.step); |
| 5201 | } |
| 5202 | ADDOP_I(c, BUILD_SLICE, n); |
| 5203 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5204 | } |
| 5205 | |
| 5206 | static int |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5207 | compiler_visit_nested_slice(struct compiler *c, slice_ty s, |
| 5208 | expr_context_ty ctx) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5209 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5210 | switch (s->kind) { |
| 5211 | case Slice_kind: |
| 5212 | return compiler_slice(c, s, ctx); |
| 5213 | case Index_kind: |
| 5214 | VISIT(c, expr, s->v.Index.value); |
| 5215 | break; |
| 5216 | case ExtSlice_kind: |
| 5217 | default: |
| 5218 | PyErr_SetString(PyExc_SystemError, |
| 5219 | "extended slice invalid in nested slice"); |
| 5220 | return 0; |
| 5221 | } |
| 5222 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5223 | } |
| 5224 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5225 | static int |
| 5226 | compiler_visit_slice(struct compiler *c, slice_ty s, expr_context_ty ctx) |
| 5227 | { |
Serhiy Storchaka | e2f92de | 2017-11-11 13:06:26 +0200 | [diff] [blame] | 5228 | const char * kindname = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5229 | switch (s->kind) { |
| 5230 | case Index_kind: |
| 5231 | kindname = "index"; |
| 5232 | if (ctx != AugStore) { |
| 5233 | VISIT(c, expr, s->v.Index.value); |
| 5234 | } |
| 5235 | break; |
| 5236 | case Slice_kind: |
| 5237 | kindname = "slice"; |
| 5238 | if (ctx != AugStore) { |
| 5239 | if (!compiler_slice(c, s, ctx)) |
| 5240 | return 0; |
| 5241 | } |
| 5242 | break; |
| 5243 | case ExtSlice_kind: |
| 5244 | kindname = "extended slice"; |
| 5245 | if (ctx != AugStore) { |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5246 | Py_ssize_t i, n = asdl_seq_LEN(s->v.ExtSlice.dims); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5247 | for (i = 0; i < n; i++) { |
| 5248 | slice_ty sub = (slice_ty)asdl_seq_GET( |
| 5249 | s->v.ExtSlice.dims, i); |
| 5250 | if (!compiler_visit_nested_slice(c, sub, ctx)) |
| 5251 | return 0; |
| 5252 | } |
| 5253 | ADDOP_I(c, BUILD_TUPLE, n); |
| 5254 | } |
| 5255 | break; |
| 5256 | default: |
| 5257 | PyErr_Format(PyExc_SystemError, |
| 5258 | "invalid subscript kind %d", s->kind); |
| 5259 | return 0; |
| 5260 | } |
| 5261 | return compiler_handle_subscr(c, kindname, ctx); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5262 | } |
| 5263 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 5264 | /* End of the compiler section, beginning of the assembler section */ |
| 5265 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5266 | /* do depth-first search of basic block graph, starting with block. |
| 5267 | post records the block indices in post-order. |
| 5268 | |
| 5269 | XXX must handle implicit jumps from one block to next |
| 5270 | */ |
| 5271 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 5272 | struct assembler { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5273 | PyObject *a_bytecode; /* string containing bytecode */ |
| 5274 | int a_offset; /* offset into bytecode */ |
| 5275 | int a_nblocks; /* number of reachable blocks */ |
| 5276 | basicblock **a_postorder; /* list of blocks in dfs postorder */ |
| 5277 | PyObject *a_lnotab; /* string containing lnotab */ |
| 5278 | int a_lnotab_off; /* offset into lnotab */ |
| 5279 | int a_lineno; /* last lineno of emitted instruction */ |
| 5280 | int a_lineno_off; /* bytecode offset of last lineno */ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 5281 | }; |
| 5282 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5283 | static void |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5284 | dfs(struct compiler *c, basicblock *b, struct assembler *a, int end) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5285 | { |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5286 | int i, j; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5287 | |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5288 | /* Get rid of recursion for normal control flow. |
| 5289 | Since the number of blocks is limited, unused space in a_postorder |
| 5290 | (from a_nblocks to end) can be used as a stack for still not ordered |
| 5291 | blocks. */ |
| 5292 | for (j = end; b && !b->b_seen; b = b->b_next) { |
| 5293 | b->b_seen = 1; |
| 5294 | assert(a->a_nblocks < j); |
| 5295 | a->a_postorder[--j] = b; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5296 | } |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5297 | while (j < end) { |
| 5298 | b = a->a_postorder[j++]; |
| 5299 | for (i = 0; i < b->b_iused; i++) { |
| 5300 | struct instr *instr = &b->b_instr[i]; |
| 5301 | if (instr->i_jrel || instr->i_jabs) |
| 5302 | dfs(c, instr->i_target, a, j); |
| 5303 | } |
| 5304 | assert(a->a_nblocks < j); |
| 5305 | a->a_postorder[a->a_nblocks++] = b; |
| 5306 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5307 | } |
| 5308 | |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5309 | Py_LOCAL_INLINE(void) |
| 5310 | stackdepth_push(basicblock ***sp, basicblock *b, int depth) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5311 | { |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 5312 | assert(b->b_startdepth < 0 || b->b_startdepth == depth); |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5313 | if (b->b_startdepth < depth) { |
| 5314 | assert(b->b_startdepth < 0); |
| 5315 | b->b_startdepth = depth; |
| 5316 | *(*sp)++ = b; |
Serhiy Storchaka | d4864c6 | 2018-01-09 21:54:52 +0200 | [diff] [blame] | 5317 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5318 | } |
| 5319 | |
| 5320 | /* Find the flow path that needs the largest stack. We assume that |
| 5321 | * cycles in the flow graph have no net effect on the stack depth. |
| 5322 | */ |
| 5323 | static int |
| 5324 | stackdepth(struct compiler *c) |
| 5325 | { |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5326 | basicblock *b, *entryblock = NULL; |
| 5327 | basicblock **stack, **sp; |
| 5328 | int nblocks = 0, maxdepth = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5329 | for (b = c->u->u_blocks; b != NULL; b = b->b_list) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5330 | b->b_startdepth = INT_MIN; |
| 5331 | entryblock = b; |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5332 | nblocks++; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5333 | } |
| 5334 | if (!entryblock) |
| 5335 | return 0; |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5336 | stack = (basicblock **)PyObject_Malloc(sizeof(basicblock *) * nblocks); |
| 5337 | if (!stack) { |
| 5338 | PyErr_NoMemory(); |
| 5339 | return -1; |
| 5340 | } |
| 5341 | |
| 5342 | sp = stack; |
| 5343 | stackdepth_push(&sp, entryblock, 0); |
| 5344 | while (sp != stack) { |
| 5345 | b = *--sp; |
| 5346 | int depth = b->b_startdepth; |
| 5347 | assert(depth >= 0); |
| 5348 | basicblock *next = b->b_next; |
| 5349 | for (int i = 0; i < b->b_iused; i++) { |
| 5350 | struct instr *instr = &b->b_instr[i]; |
| 5351 | int effect = stack_effect(instr->i_opcode, instr->i_oparg, 0); |
| 5352 | if (effect == PY_INVALID_STACK_EFFECT) { |
| 5353 | fprintf(stderr, "opcode = %d\n", instr->i_opcode); |
| 5354 | Py_FatalError("PyCompile_OpcodeStackEffect()"); |
| 5355 | } |
| 5356 | int new_depth = depth + effect; |
| 5357 | if (new_depth > maxdepth) { |
| 5358 | maxdepth = new_depth; |
| 5359 | } |
| 5360 | assert(depth >= 0); /* invalid code or bug in stackdepth() */ |
| 5361 | if (instr->i_jrel || instr->i_jabs) { |
| 5362 | effect = stack_effect(instr->i_opcode, instr->i_oparg, 1); |
| 5363 | assert(effect != PY_INVALID_STACK_EFFECT); |
| 5364 | int target_depth = depth + effect; |
| 5365 | if (target_depth > maxdepth) { |
| 5366 | maxdepth = target_depth; |
| 5367 | } |
| 5368 | assert(target_depth >= 0); /* invalid code or bug in stackdepth() */ |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 5369 | if (instr->i_opcode == CALL_FINALLY) { |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5370 | assert(instr->i_target->b_startdepth >= 0); |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 5371 | assert(instr->i_target->b_startdepth >= target_depth); |
| 5372 | depth = new_depth; |
| 5373 | continue; |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5374 | } |
| 5375 | stackdepth_push(&sp, instr->i_target, target_depth); |
| 5376 | } |
| 5377 | depth = new_depth; |
| 5378 | if (instr->i_opcode == JUMP_ABSOLUTE || |
| 5379 | instr->i_opcode == JUMP_FORWARD || |
| 5380 | instr->i_opcode == RETURN_VALUE || |
Serhiy Storchaka | 520b7ae | 2018-02-22 23:33:30 +0200 | [diff] [blame] | 5381 | instr->i_opcode == RAISE_VARARGS) |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5382 | { |
| 5383 | /* remaining code is dead */ |
| 5384 | next = NULL; |
| 5385 | break; |
| 5386 | } |
| 5387 | } |
| 5388 | if (next != NULL) { |
| 5389 | stackdepth_push(&sp, next, depth); |
| 5390 | } |
| 5391 | } |
| 5392 | PyObject_Free(stack); |
| 5393 | return maxdepth; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5394 | } |
| 5395 | |
| 5396 | static int |
| 5397 | assemble_init(struct assembler *a, int nblocks, int firstlineno) |
| 5398 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5399 | memset(a, 0, sizeof(struct assembler)); |
| 5400 | a->a_lineno = firstlineno; |
| 5401 | a->a_bytecode = PyBytes_FromStringAndSize(NULL, DEFAULT_CODE_SIZE); |
| 5402 | if (!a->a_bytecode) |
| 5403 | return 0; |
| 5404 | a->a_lnotab = PyBytes_FromStringAndSize(NULL, DEFAULT_LNOTAB_SIZE); |
| 5405 | if (!a->a_lnotab) |
| 5406 | return 0; |
Benjamin Peterson | 2f8bfef | 2016-09-07 09:26:18 -0700 | [diff] [blame] | 5407 | if ((size_t)nblocks > SIZE_MAX / sizeof(basicblock *)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5408 | PyErr_NoMemory(); |
| 5409 | return 0; |
| 5410 | } |
| 5411 | a->a_postorder = (basicblock **)PyObject_Malloc( |
| 5412 | sizeof(basicblock *) * nblocks); |
| 5413 | if (!a->a_postorder) { |
| 5414 | PyErr_NoMemory(); |
| 5415 | return 0; |
| 5416 | } |
| 5417 | return 1; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5418 | } |
| 5419 | |
| 5420 | static void |
| 5421 | assemble_free(struct assembler *a) |
| 5422 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5423 | Py_XDECREF(a->a_bytecode); |
| 5424 | Py_XDECREF(a->a_lnotab); |
| 5425 | if (a->a_postorder) |
| 5426 | PyObject_Free(a->a_postorder); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5427 | } |
| 5428 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5429 | static int |
| 5430 | blocksize(basicblock *b) |
| 5431 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5432 | int i; |
| 5433 | int size = 0; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5434 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5435 | for (i = 0; i < b->b_iused; i++) |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5436 | size += instrsize(b->b_instr[i].i_oparg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5437 | return size; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5438 | } |
| 5439 | |
Alexandre Vassalotti | 7b82b40 | 2009-07-21 04:30:03 +0000 | [diff] [blame] | 5440 | /* Appends a pair to the end of the line number table, a_lnotab, representing |
| 5441 | the instruction's bytecode offset and line number. See |
| 5442 | Objects/lnotab_notes.txt for the description of the line number table. */ |
Tim Peters | 2a7f384 | 2001-06-09 09:26:21 +0000 | [diff] [blame] | 5443 | |
Guido van Rossum | f68d8e5 | 2001-04-14 17:55:09 +0000 | [diff] [blame] | 5444 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5445 | assemble_lnotab(struct assembler *a, struct instr *i) |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5446 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5447 | int d_bytecode, d_lineno; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5448 | Py_ssize_t len; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5449 | unsigned char *lnotab; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5450 | |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5451 | d_bytecode = (a->a_offset - a->a_lineno_off) * sizeof(_Py_CODEUNIT); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5452 | d_lineno = i->i_lineno - a->a_lineno; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5453 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5454 | assert(d_bytecode >= 0); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5455 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5456 | if(d_bytecode == 0 && d_lineno == 0) |
| 5457 | return 1; |
Guido van Rossum | 4bad92c | 1991-07-27 21:34:52 +0000 | [diff] [blame] | 5458 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5459 | if (d_bytecode > 255) { |
| 5460 | int j, nbytes, ncodes = d_bytecode / 255; |
| 5461 | nbytes = a->a_lnotab_off + 2 * ncodes; |
| 5462 | len = PyBytes_GET_SIZE(a->a_lnotab); |
| 5463 | if (nbytes >= len) { |
| 5464 | if ((len <= INT_MAX / 2) && (len * 2 < nbytes)) |
| 5465 | len = nbytes; |
| 5466 | else if (len <= INT_MAX / 2) |
| 5467 | len *= 2; |
| 5468 | else { |
| 5469 | PyErr_NoMemory(); |
| 5470 | return 0; |
| 5471 | } |
| 5472 | if (_PyBytes_Resize(&a->a_lnotab, len) < 0) |
| 5473 | return 0; |
| 5474 | } |
| 5475 | lnotab = (unsigned char *) |
| 5476 | PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off; |
| 5477 | for (j = 0; j < ncodes; j++) { |
| 5478 | *lnotab++ = 255; |
| 5479 | *lnotab++ = 0; |
| 5480 | } |
| 5481 | d_bytecode -= ncodes * 255; |
| 5482 | a->a_lnotab_off += ncodes * 2; |
| 5483 | } |
Victor Stinner | f3914eb | 2016-01-20 12:16:21 +0100 | [diff] [blame] | 5484 | assert(0 <= d_bytecode && d_bytecode <= 255); |
| 5485 | |
| 5486 | if (d_lineno < -128 || 127 < d_lineno) { |
| 5487 | int j, nbytes, ncodes, k; |
| 5488 | if (d_lineno < 0) { |
| 5489 | k = -128; |
| 5490 | /* use division on positive numbers */ |
| 5491 | ncodes = (-d_lineno) / 128; |
| 5492 | } |
| 5493 | else { |
| 5494 | k = 127; |
| 5495 | ncodes = d_lineno / 127; |
| 5496 | } |
| 5497 | d_lineno -= ncodes * k; |
| 5498 | assert(ncodes >= 1); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5499 | nbytes = a->a_lnotab_off + 2 * ncodes; |
| 5500 | len = PyBytes_GET_SIZE(a->a_lnotab); |
| 5501 | if (nbytes >= len) { |
| 5502 | if ((len <= INT_MAX / 2) && len * 2 < nbytes) |
| 5503 | len = nbytes; |
| 5504 | else if (len <= INT_MAX / 2) |
| 5505 | len *= 2; |
| 5506 | else { |
| 5507 | PyErr_NoMemory(); |
| 5508 | return 0; |
| 5509 | } |
| 5510 | if (_PyBytes_Resize(&a->a_lnotab, len) < 0) |
| 5511 | return 0; |
| 5512 | } |
| 5513 | lnotab = (unsigned char *) |
| 5514 | PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off; |
| 5515 | *lnotab++ = d_bytecode; |
Victor Stinner | f3914eb | 2016-01-20 12:16:21 +0100 | [diff] [blame] | 5516 | *lnotab++ = k; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5517 | d_bytecode = 0; |
| 5518 | for (j = 1; j < ncodes; j++) { |
| 5519 | *lnotab++ = 0; |
Victor Stinner | f3914eb | 2016-01-20 12:16:21 +0100 | [diff] [blame] | 5520 | *lnotab++ = k; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5521 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5522 | a->a_lnotab_off += ncodes * 2; |
| 5523 | } |
Victor Stinner | f3914eb | 2016-01-20 12:16:21 +0100 | [diff] [blame] | 5524 | assert(-128 <= d_lineno && d_lineno <= 127); |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 5525 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5526 | len = PyBytes_GET_SIZE(a->a_lnotab); |
| 5527 | if (a->a_lnotab_off + 2 >= len) { |
| 5528 | if (_PyBytes_Resize(&a->a_lnotab, len * 2) < 0) |
| 5529 | return 0; |
| 5530 | } |
| 5531 | lnotab = (unsigned char *) |
| 5532 | PyBytes_AS_STRING(a->a_lnotab) + a->a_lnotab_off; |
Tim Peters | 51e2651 | 2001-09-07 08:45:55 +0000 | [diff] [blame] | 5533 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5534 | a->a_lnotab_off += 2; |
| 5535 | if (d_bytecode) { |
| 5536 | *lnotab++ = d_bytecode; |
Victor Stinner | 4f2dab5 | 2011-05-27 16:46:51 +0200 | [diff] [blame] | 5537 | *lnotab++ = d_lineno; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5538 | } |
| 5539 | else { /* First line of a block; def stmt, etc. */ |
| 5540 | *lnotab++ = 0; |
Victor Stinner | 4f2dab5 | 2011-05-27 16:46:51 +0200 | [diff] [blame] | 5541 | *lnotab++ = d_lineno; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5542 | } |
| 5543 | a->a_lineno = i->i_lineno; |
| 5544 | a->a_lineno_off = a->a_offset; |
| 5545 | return 1; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5546 | } |
| 5547 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5548 | /* assemble_emit() |
| 5549 | Extend the bytecode with a new instruction. |
| 5550 | Update lnotab if necessary. |
Jeremy Hylton | 376e63d | 2003-08-28 14:42:14 +0000 | [diff] [blame] | 5551 | */ |
| 5552 | |
Guido van Rossum | 4ca6c9d | 1994-08-29 12:16:12 +0000 | [diff] [blame] | 5553 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5554 | assemble_emit(struct assembler *a, struct instr *i) |
Guido van Rossum | 4ca6c9d | 1994-08-29 12:16:12 +0000 | [diff] [blame] | 5555 | { |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5556 | int size, arg = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5557 | Py_ssize_t len = PyBytes_GET_SIZE(a->a_bytecode); |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5558 | _Py_CODEUNIT *code; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5559 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5560 | arg = i->i_oparg; |
| 5561 | size = instrsize(arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5562 | if (i->i_lineno && !assemble_lnotab(a, i)) |
| 5563 | return 0; |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5564 | if (a->a_offset + size >= len / (int)sizeof(_Py_CODEUNIT)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5565 | if (len > PY_SSIZE_T_MAX / 2) |
| 5566 | return 0; |
| 5567 | if (_PyBytes_Resize(&a->a_bytecode, len * 2) < 0) |
| 5568 | return 0; |
| 5569 | } |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5570 | code = (_Py_CODEUNIT *)PyBytes_AS_STRING(a->a_bytecode) + a->a_offset; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5571 | a->a_offset += size; |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5572 | write_op_arg(code, i->i_opcode, arg, size); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5573 | return 1; |
Anthony Baxter | c2a5a63 | 2004-08-02 06:10:11 +0000 | [diff] [blame] | 5574 | } |
| 5575 | |
Neal Norwitz | 7d37f2f | 2005-10-23 22:40:47 +0000 | [diff] [blame] | 5576 | static void |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5577 | assemble_jump_offsets(struct assembler *a, struct compiler *c) |
Anthony Baxter | c2a5a63 | 2004-08-02 06:10:11 +0000 | [diff] [blame] | 5578 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5579 | basicblock *b; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5580 | int bsize, totsize, extended_arg_recompile; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5581 | int i; |
Guido van Rossum | c5e9629 | 1991-12-10 13:53:51 +0000 | [diff] [blame] | 5582 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5583 | /* Compute the size of each block and fixup jump args. |
| 5584 | Replace block pointer with position in bytecode. */ |
| 5585 | do { |
| 5586 | totsize = 0; |
| 5587 | for (i = a->a_nblocks - 1; i >= 0; i--) { |
| 5588 | b = a->a_postorder[i]; |
| 5589 | bsize = blocksize(b); |
| 5590 | b->b_offset = totsize; |
| 5591 | totsize += bsize; |
| 5592 | } |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5593 | extended_arg_recompile = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5594 | for (b = c->u->u_blocks; b != NULL; b = b->b_list) { |
| 5595 | bsize = b->b_offset; |
| 5596 | for (i = 0; i < b->b_iused; i++) { |
| 5597 | struct instr *instr = &b->b_instr[i]; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5598 | int isize = instrsize(instr->i_oparg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5599 | /* Relative jumps are computed relative to |
| 5600 | the instruction pointer after fetching |
| 5601 | the jump instruction. |
| 5602 | */ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5603 | bsize += isize; |
| 5604 | if (instr->i_jabs || instr->i_jrel) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5605 | instr->i_oparg = instr->i_target->b_offset; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5606 | if (instr->i_jrel) { |
| 5607 | instr->i_oparg -= bsize; |
| 5608 | } |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5609 | instr->i_oparg *= sizeof(_Py_CODEUNIT); |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5610 | if (instrsize(instr->i_oparg) != isize) { |
| 5611 | extended_arg_recompile = 1; |
| 5612 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5613 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5614 | } |
| 5615 | } |
Neal Norwitz | f1d5068 | 2005-10-23 23:00:41 +0000 | [diff] [blame] | 5616 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5617 | /* XXX: This is an awful hack that could hurt performance, but |
| 5618 | on the bright side it should work until we come up |
| 5619 | with a better solution. |
Neal Norwitz | f1d5068 | 2005-10-23 23:00:41 +0000 | [diff] [blame] | 5620 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5621 | The issue is that in the first loop blocksize() is called |
| 5622 | which calls instrsize() which requires i_oparg be set |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5623 | appropriately. There is a bootstrap problem because |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5624 | i_oparg is calculated in the second loop above. |
Neal Norwitz | f1d5068 | 2005-10-23 23:00:41 +0000 | [diff] [blame] | 5625 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5626 | So we loop until we stop seeing new EXTENDED_ARGs. |
| 5627 | The only EXTENDED_ARGs that could be popping up are |
| 5628 | ones in jump instructions. So this should converge |
| 5629 | fairly quickly. |
| 5630 | */ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5631 | } while (extended_arg_recompile); |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 5632 | } |
| 5633 | |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5634 | static PyObject * |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5635 | dict_keys_inorder(PyObject *dict, Py_ssize_t offset) |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5636 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5637 | PyObject *tuple, *k, *v; |
Serhiy Storchaka | 5ab81d7 | 2016-12-16 16:18:57 +0200 | [diff] [blame] | 5638 | Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict); |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5639 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5640 | tuple = PyTuple_New(size); |
| 5641 | if (tuple == NULL) |
| 5642 | return NULL; |
| 5643 | while (PyDict_Next(dict, &pos, &k, &v)) { |
| 5644 | i = PyLong_AS_LONG(v); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5645 | Py_INCREF(k); |
| 5646 | assert((i - offset) < size); |
| 5647 | assert((i - offset) >= 0); |
| 5648 | PyTuple_SET_ITEM(tuple, i - offset, k); |
| 5649 | } |
| 5650 | return tuple; |
| 5651 | } |
| 5652 | |
| 5653 | static PyObject * |
| 5654 | consts_dict_keys_inorder(PyObject *dict) |
| 5655 | { |
| 5656 | PyObject *consts, *k, *v; |
| 5657 | Py_ssize_t i, pos = 0, size = PyDict_GET_SIZE(dict); |
| 5658 | |
| 5659 | consts = PyList_New(size); /* PyCode_Optimize() requires a list */ |
| 5660 | if (consts == NULL) |
| 5661 | return NULL; |
| 5662 | while (PyDict_Next(dict, &pos, &k, &v)) { |
| 5663 | i = PyLong_AS_LONG(v); |
Serhiy Storchaka | b7e1eff | 2018-04-19 08:28:04 +0300 | [diff] [blame] | 5664 | /* The keys of the dictionary can be tuples wrapping a contant. |
| 5665 | * (see compiler_add_o and _PyCode_ConstantKey). In that case |
| 5666 | * the object we want is always second. */ |
| 5667 | if (PyTuple_CheckExact(k)) { |
| 5668 | k = PyTuple_GET_ITEM(k, 1); |
| 5669 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5670 | Py_INCREF(k); |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5671 | assert(i < size); |
| 5672 | assert(i >= 0); |
| 5673 | PyList_SET_ITEM(consts, i, k); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5674 | } |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5675 | return consts; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5676 | } |
| 5677 | |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5678 | static int |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5679 | compute_code_flags(struct compiler *c) |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5680 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5681 | PySTEntryObject *ste = c->u->u_ste; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5682 | int flags = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5683 | if (ste->ste_type == FunctionBlock) { |
Benjamin Peterson | 1dfd247 | 2015-04-27 21:44:22 -0400 | [diff] [blame] | 5684 | flags |= CO_NEWLOCALS | CO_OPTIMIZED; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5685 | if (ste->ste_nested) |
| 5686 | flags |= CO_NESTED; |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 5687 | if (ste->ste_generator && !ste->ste_coroutine) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5688 | flags |= CO_GENERATOR; |
Yury Selivanov | eb63645 | 2016-09-08 22:01:51 -0700 | [diff] [blame] | 5689 | if (!ste->ste_generator && ste->ste_coroutine) |
| 5690 | flags |= CO_COROUTINE; |
| 5691 | if (ste->ste_generator && ste->ste_coroutine) |
| 5692 | flags |= CO_ASYNC_GENERATOR; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5693 | if (ste->ste_varargs) |
| 5694 | flags |= CO_VARARGS; |
| 5695 | if (ste->ste_varkeywords) |
| 5696 | flags |= CO_VARKEYWORDS; |
| 5697 | } |
Thomas Wouters | 5e9f1fa | 2006-02-28 20:02:27 +0000 | [diff] [blame] | 5698 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5699 | /* (Only) inherit compilerflags in PyCF_MASK */ |
| 5700 | flags |= (c->c_flags->cf_flags & PyCF_MASK); |
Thomas Wouters | 5e9f1fa | 2006-02-28 20:02:27 +0000 | [diff] [blame] | 5701 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5702 | return flags; |
Jeremy Hylton | 29906ee | 2001-02-27 04:23:34 +0000 | [diff] [blame] | 5703 | } |
| 5704 | |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 5705 | // Merge *tuple* with constant cache. |
| 5706 | // Unlike merge_consts_recursive(), this function doesn't work recursively. |
| 5707 | static int |
| 5708 | merge_const_tuple(struct compiler *c, PyObject **tuple) |
| 5709 | { |
| 5710 | assert(PyTuple_CheckExact(*tuple)); |
| 5711 | |
| 5712 | PyObject *key = _PyCode_ConstantKey(*tuple); |
| 5713 | if (key == NULL) { |
| 5714 | return 0; |
| 5715 | } |
| 5716 | |
| 5717 | // t is borrowed reference |
| 5718 | PyObject *t = PyDict_SetDefault(c->c_const_cache, key, key); |
| 5719 | Py_DECREF(key); |
| 5720 | if (t == NULL) { |
| 5721 | return 0; |
| 5722 | } |
| 5723 | if (t == key) { // tuple is new constant. |
| 5724 | return 1; |
| 5725 | } |
| 5726 | |
| 5727 | PyObject *u = PyTuple_GET_ITEM(t, 1); |
| 5728 | Py_INCREF(u); |
| 5729 | Py_DECREF(*tuple); |
| 5730 | *tuple = u; |
| 5731 | return 1; |
| 5732 | } |
| 5733 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5734 | static PyCodeObject * |
| 5735 | makecode(struct compiler *c, struct assembler *a) |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5736 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5737 | PyObject *tmp; |
| 5738 | PyCodeObject *co = NULL; |
| 5739 | PyObject *consts = NULL; |
| 5740 | PyObject *names = NULL; |
| 5741 | PyObject *varnames = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5742 | PyObject *name = NULL; |
| 5743 | PyObject *freevars = NULL; |
| 5744 | PyObject *cellvars = NULL; |
| 5745 | PyObject *bytecode = NULL; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5746 | Py_ssize_t nlocals; |
| 5747 | int nlocals_int; |
| 5748 | int flags; |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 5749 | int argcount, posonlyargcount, kwonlyargcount, maxdepth; |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5750 | |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5751 | consts = consts_dict_keys_inorder(c->u->u_consts); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5752 | names = dict_keys_inorder(c->u->u_names, 0); |
| 5753 | varnames = dict_keys_inorder(c->u->u_varnames, 0); |
| 5754 | if (!consts || !names || !varnames) |
| 5755 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5756 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5757 | cellvars = dict_keys_inorder(c->u->u_cellvars, 0); |
| 5758 | if (!cellvars) |
| 5759 | goto error; |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5760 | freevars = dict_keys_inorder(c->u->u_freevars, PyTuple_GET_SIZE(cellvars)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5761 | if (!freevars) |
| 5762 | goto error; |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5763 | |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 5764 | if (!merge_const_tuple(c, &names) || |
| 5765 | !merge_const_tuple(c, &varnames) || |
| 5766 | !merge_const_tuple(c, &cellvars) || |
| 5767 | !merge_const_tuple(c, &freevars)) |
| 5768 | { |
| 5769 | goto error; |
| 5770 | } |
| 5771 | |
Serhiy Storchaka | 5ab81d7 | 2016-12-16 16:18:57 +0200 | [diff] [blame] | 5772 | nlocals = PyDict_GET_SIZE(c->u->u_varnames); |
Victor Stinner | ad9a066 | 2013-11-19 22:23:20 +0100 | [diff] [blame] | 5773 | assert(nlocals < INT_MAX); |
| 5774 | nlocals_int = Py_SAFE_DOWNCAST(nlocals, Py_ssize_t, int); |
| 5775 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5776 | flags = compute_code_flags(c); |
| 5777 | if (flags < 0) |
| 5778 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5779 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5780 | bytecode = PyCode_Optimize(a->a_bytecode, consts, names, a->a_lnotab); |
| 5781 | if (!bytecode) |
| 5782 | goto error; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5783 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5784 | tmp = PyList_AsTuple(consts); /* PyCode_New requires a tuple */ |
| 5785 | if (!tmp) |
| 5786 | goto error; |
| 5787 | Py_DECREF(consts); |
| 5788 | consts = tmp; |
INADA Naoki | c2e1607 | 2018-11-26 21:23:22 +0900 | [diff] [blame] | 5789 | if (!merge_const_tuple(c, &consts)) { |
| 5790 | goto error; |
| 5791 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5792 | |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 5793 | argcount = Py_SAFE_DOWNCAST(c->u->u_argcount, Py_ssize_t, int); |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 5794 | posonlyargcount = Py_SAFE_DOWNCAST(c->u->u_posonlyargcount, Py_ssize_t, int); |
Victor Stinner | f8e3221 | 2013-11-19 23:56:34 +0100 | [diff] [blame] | 5795 | kwonlyargcount = Py_SAFE_DOWNCAST(c->u->u_kwonlyargcount, Py_ssize_t, int); |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5796 | maxdepth = stackdepth(c); |
| 5797 | if (maxdepth < 0) { |
| 5798 | goto error; |
| 5799 | } |
Pablo Galindo | 8c77b8c | 2019-04-29 13:36:57 +0100 | [diff] [blame] | 5800 | co = PyCode_New(argcount, posonlyargcount, kwonlyargcount, |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5801 | nlocals_int, maxdepth, flags, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5802 | bytecode, consts, names, varnames, |
| 5803 | freevars, cellvars, |
Victor Stinner | 14e461d | 2013-08-26 22:28:21 +0200 | [diff] [blame] | 5804 | c->c_filename, c->u->u_name, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5805 | c->u->u_firstlineno, |
| 5806 | a->a_lnotab); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5807 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5808 | Py_XDECREF(consts); |
| 5809 | Py_XDECREF(names); |
| 5810 | Py_XDECREF(varnames); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5811 | Py_XDECREF(name); |
| 5812 | Py_XDECREF(freevars); |
| 5813 | Py_XDECREF(cellvars); |
| 5814 | Py_XDECREF(bytecode); |
| 5815 | return co; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5816 | } |
| 5817 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5818 | |
| 5819 | /* For debugging purposes only */ |
| 5820 | #if 0 |
| 5821 | static void |
| 5822 | dump_instr(const struct instr *i) |
| 5823 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5824 | const char *jrel = i->i_jrel ? "jrel " : ""; |
| 5825 | const char *jabs = i->i_jabs ? "jabs " : ""; |
| 5826 | char arg[128]; |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5827 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5828 | *arg = '\0'; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5829 | if (HAS_ARG(i->i_opcode)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5830 | sprintf(arg, "arg: %d ", i->i_oparg); |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 5831 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5832 | fprintf(stderr, "line: %d, opcode: %d %s%s%s\n", |
| 5833 | i->i_lineno, i->i_opcode, arg, jabs, jrel); |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5834 | } |
| 5835 | |
| 5836 | static void |
| 5837 | dump_basicblock(const basicblock *b) |
| 5838 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5839 | const char *seen = b->b_seen ? "seen " : ""; |
| 5840 | const char *b_return = b->b_return ? "return " : ""; |
| 5841 | fprintf(stderr, "used: %d, depth: %d, offset: %d %s%s\n", |
| 5842 | b->b_iused, b->b_startdepth, b->b_offset, seen, b_return); |
| 5843 | if (b->b_instr) { |
| 5844 | int i; |
| 5845 | for (i = 0; i < b->b_iused; i++) { |
| 5846 | fprintf(stderr, " [%02d] ", i); |
| 5847 | dump_instr(b->b_instr + i); |
| 5848 | } |
| 5849 | } |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5850 | } |
| 5851 | #endif |
| 5852 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5853 | static PyCodeObject * |
| 5854 | assemble(struct compiler *c, int addNone) |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5855 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5856 | basicblock *b, *entryblock; |
| 5857 | struct assembler a; |
| 5858 | int i, j, nblocks; |
| 5859 | PyCodeObject *co = NULL; |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 5860 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5861 | /* Make sure every block that falls off the end returns None. |
| 5862 | XXX NEXT_BLOCK() isn't quite right, because if the last |
| 5863 | block ends with a jump or return b_next shouldn't set. |
| 5864 | */ |
| 5865 | if (!c->u->u_curblock->b_return) { |
| 5866 | NEXT_BLOCK(c); |
| 5867 | if (addNone) |
Serhiy Storchaka | d70c2a6 | 2018-04-20 16:01:25 +0300 | [diff] [blame] | 5868 | ADDOP_LOAD_CONST(c, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5869 | ADDOP(c, RETURN_VALUE); |
| 5870 | } |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5871 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5872 | nblocks = 0; |
| 5873 | entryblock = NULL; |
| 5874 | for (b = c->u->u_blocks; b != NULL; b = b->b_list) { |
| 5875 | nblocks++; |
| 5876 | entryblock = b; |
| 5877 | } |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5878 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5879 | /* Set firstlineno if it wasn't explicitly set. */ |
| 5880 | if (!c->u->u_firstlineno) { |
Ned Deily | dc35cda | 2016-08-17 17:18:33 -0400 | [diff] [blame] | 5881 | if (entryblock && entryblock->b_instr && entryblock->b_instr->i_lineno) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5882 | c->u->u_firstlineno = entryblock->b_instr->i_lineno; |
| 5883 | else |
| 5884 | c->u->u_firstlineno = 1; |
| 5885 | } |
| 5886 | if (!assemble_init(&a, nblocks, c->u->u_firstlineno)) |
| 5887 | goto error; |
Serhiy Storchaka | 782d6fe | 2018-01-11 20:20:13 +0200 | [diff] [blame] | 5888 | dfs(c, entryblock, &a, nblocks); |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5889 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5890 | /* Can't modify the bytecode after computing jump offsets. */ |
| 5891 | assemble_jump_offsets(&a, c); |
Tim Peters | b6c3cea | 2001-06-26 03:36:28 +0000 | [diff] [blame] | 5892 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5893 | /* Emit code in reverse postorder from dfs. */ |
| 5894 | for (i = a.a_nblocks - 1; i >= 0; i--) { |
| 5895 | b = a.a_postorder[i]; |
| 5896 | for (j = 0; j < b->b_iused; j++) |
| 5897 | if (!assemble_emit(&a, &b->b_instr[j])) |
| 5898 | goto error; |
| 5899 | } |
Tim Peters | b6c3cea | 2001-06-26 03:36:28 +0000 | [diff] [blame] | 5900 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5901 | if (_PyBytes_Resize(&a.a_lnotab, a.a_lnotab_off) < 0) |
| 5902 | goto error; |
Serhiy Storchaka | ab87400 | 2016-09-11 13:48:15 +0300 | [diff] [blame] | 5903 | if (_PyBytes_Resize(&a.a_bytecode, a.a_offset * sizeof(_Py_CODEUNIT)) < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5904 | goto error; |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5905 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5906 | co = makecode(c, &a); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 5907 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5908 | assemble_free(&a); |
| 5909 | return co; |
Jeremy Hylton | e36f778 | 2001-01-19 03:21:30 +0000 | [diff] [blame] | 5910 | } |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 5911 | |
| 5912 | #undef PyAST_Compile |
Benjamin Peterson | e502451 | 2018-09-12 12:06:42 -0700 | [diff] [blame] | 5913 | PyCodeObject * |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 5914 | PyAST_Compile(mod_ty mod, const char *filename, PyCompilerFlags *flags, |
| 5915 | PyArena *arena) |
| 5916 | { |
| 5917 | return PyAST_CompileEx(mod, filename, flags, -1, arena); |
| 5918 | } |