Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2 | /* Execute compiled code */ |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 4 | /* XXX TO DO: |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 5 | XXX speed up searching for keywords by using a dictionary |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 6 | XXX document it! |
| 7 | */ |
| 8 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9 | /* enable more aggressive intra-module optimizations, where available */ |
| 10 | #define PY_LOCAL_AGGRESSIVE |
| 11 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 12 | #include "Python.h" |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 13 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 14 | #include "code.h" |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 15 | #include "dictobject.h" |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 16 | #include "frameobject.h" |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 17 | #include "opcode.h" |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 18 | #include "setobject.h" |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 19 | #include "structmember.h" |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 21 | #include <ctype.h> |
| 22 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 23 | #ifndef WITH_TSC |
Michael W. Hudson | 75eabd2 | 2005-01-18 15:56:11 +0000 | [diff] [blame] | 24 | |
| 25 | #define READ_TIMESTAMP(var) |
| 26 | |
| 27 | #else |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 28 | |
| 29 | typedef unsigned long long uint64; |
| 30 | |
Ezio Melotti | 1392500 | 2011-03-16 11:05:33 +0200 | [diff] [blame] | 31 | /* PowerPC support. |
David Malcolm | f1397ad | 2011-01-06 17:01:36 +0000 | [diff] [blame] | 32 | "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas |
| 33 | "__powerpc__" appears to be the correct one for Linux with GCC |
| 34 | */ |
| 35 | #if defined(__ppc__) || defined (__powerpc__) |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 36 | |
Michael W. Hudson | 75eabd2 | 2005-01-18 15:56:11 +0000 | [diff] [blame] | 37 | #define READ_TIMESTAMP(var) ppc_getcounter(&var) |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 38 | |
| 39 | static void |
| 40 | ppc_getcounter(uint64 *v) |
| 41 | { |
Antoine Pitrou | 9ed5f27 | 2013-08-13 20:18:52 +0200 | [diff] [blame] | 42 | unsigned long tbu, tb, tbu2; |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 43 | |
| 44 | loop: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 45 | asm volatile ("mftbu %0" : "=r" (tbu) ); |
| 46 | asm volatile ("mftb %0" : "=r" (tb) ); |
| 47 | asm volatile ("mftbu %0" : "=r" (tbu2)); |
| 48 | if (__builtin_expect(tbu != tbu2, 0)) goto loop; |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 49 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 50 | /* The slightly peculiar way of writing the next lines is |
| 51 | compiled better by GCC than any other way I tried. */ |
| 52 | ((long*)(v))[0] = tbu; |
| 53 | ((long*)(v))[1] = tb; |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 54 | } |
| 55 | |
Mark Dickinson | a25b131 | 2009-10-31 10:18:44 +0000 | [diff] [blame] | 56 | #elif defined(__i386__) |
| 57 | |
| 58 | /* this is for linux/x86 (and probably any other GCC/x86 combo) */ |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 59 | |
Michael W. Hudson | 75eabd2 | 2005-01-18 15:56:11 +0000 | [diff] [blame] | 60 | #define READ_TIMESTAMP(val) \ |
| 61 | __asm__ __volatile__("rdtsc" : "=A" (val)) |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 62 | |
Mark Dickinson | a25b131 | 2009-10-31 10:18:44 +0000 | [diff] [blame] | 63 | #elif defined(__x86_64__) |
| 64 | |
| 65 | /* for gcc/x86_64, the "A" constraint in DI mode means *either* rax *or* rdx; |
| 66 | not edx:eax as it does for i386. Since rdtsc puts its result in edx:eax |
| 67 | even in 64-bit mode, we need to use "a" and "d" for the lower and upper |
| 68 | 32-bit pieces of the result. */ |
| 69 | |
Victor Stinner | 0b881dd | 2014-12-12 13:17:41 +0100 | [diff] [blame] | 70 | #define READ_TIMESTAMP(val) do { \ |
| 71 | unsigned int h, l; \ |
| 72 | __asm__ __volatile__("rdtsc" : "=a" (l), "=d" (h)); \ |
| 73 | (val) = ((uint64)l) | (((uint64)h) << 32); \ |
| 74 | } while(0) |
Mark Dickinson | a25b131 | 2009-10-31 10:18:44 +0000 | [diff] [blame] | 75 | |
| 76 | |
| 77 | #else |
| 78 | |
| 79 | #error "Don't know how to implement timestamp counter for this architecture" |
| 80 | |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 81 | #endif |
| 82 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 83 | void dump_tsc(int opcode, int ticked, uint64 inst0, uint64 inst1, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 84 | uint64 loop0, uint64 loop1, uint64 intr0, uint64 intr1) |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 85 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 86 | uint64 intr, inst, loop; |
| 87 | PyThreadState *tstate = PyThreadState_Get(); |
| 88 | if (!tstate->interp->tscdump) |
| 89 | return; |
| 90 | intr = intr1 - intr0; |
| 91 | inst = inst1 - inst0 - intr; |
| 92 | loop = loop1 - loop0 - intr; |
| 93 | fprintf(stderr, "opcode=%03d t=%d inst=%06lld loop=%06lld\n", |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 94 | opcode, ticked, inst, loop); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 95 | } |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 96 | |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 97 | #endif |
| 98 | |
Guido van Rossum | 04691fc | 1992-08-12 15:35:34 +0000 | [diff] [blame] | 99 | /* Turn this on if your compiler chokes on the big switch: */ |
Guido van Rossum | 1ae940a | 1995-01-02 19:04:15 +0000 | [diff] [blame] | 100 | /* #define CASE_TOO_BIG 1 */ |
Guido van Rossum | 04691fc | 1992-08-12 15:35:34 +0000 | [diff] [blame] | 101 | |
Guido van Rossum | 408027e | 1996-12-30 16:17:54 +0000 | [diff] [blame] | 102 | #ifdef Py_DEBUG |
Guido van Rossum | 96a42c8 | 1992-01-12 02:29:51 +0000 | [diff] [blame] | 103 | /* For debugging the interpreter: */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 104 | #define LLTRACE 1 /* Low-level trace feature */ |
| 105 | #define CHECKEXC 1 /* Double-check exception checking */ |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 106 | #endif |
| 107 | |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 108 | typedef PyObject *(*callproc)(PyObject *, PyObject *, PyObject *); |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 109 | |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 110 | /* Forward declarations */ |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 111 | #ifdef WITH_TSC |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 112 | static PyObject * call_function(PyObject ***, int, uint64*, uint64*); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 113 | #else |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 114 | static PyObject * call_function(PyObject ***, int); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 115 | #endif |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 116 | static PyObject * fast_function(PyObject *, PyObject **, int, int, int); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 117 | static PyObject * do_call(PyObject *, PyObject ***, int, int); |
| 118 | static PyObject * ext_do_call(PyObject *, PyObject ***, int, int, int); |
Thomas Wouters | 8ce81f7 | 2007-09-20 18:22:40 +0000 | [diff] [blame] | 119 | static PyObject * update_keyword_args(PyObject *, int, PyObject ***, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 120 | PyObject *); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 121 | static PyObject * update_star_args(int, int, PyObject *, PyObject ***); |
| 122 | static PyObject * load_args(PyObject ***, int); |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 123 | #define CALL_FLAG_VAR 1 |
| 124 | #define CALL_FLAG_KW 2 |
| 125 | |
Guido van Rossum | 0a066c0 | 1992-03-27 17:29:15 +0000 | [diff] [blame] | 126 | #ifdef LLTRACE |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 127 | static int lltrace; |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 128 | static int prtrace(PyObject *, const char *); |
Guido van Rossum | 0a066c0 | 1992-03-27 17:29:15 +0000 | [diff] [blame] | 129 | #endif |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 130 | static int call_trace(Py_tracefunc, PyObject *, |
| 131 | PyThreadState *, PyFrameObject *, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 132 | int, PyObject *); |
Amaury Forgeot d'Arc | f05149a | 2007-11-13 01:05:30 +0000 | [diff] [blame] | 133 | static int call_trace_protected(Py_tracefunc, PyObject *, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 134 | PyThreadState *, PyFrameObject *, |
| 135 | int, PyObject *); |
| 136 | static void call_exc_trace(Py_tracefunc, PyObject *, |
| 137 | PyThreadState *, PyFrameObject *); |
Tim Peters | 8a5c3c7 | 2004-04-05 19:36:21 +0000 | [diff] [blame] | 138 | static int maybe_call_line_trace(Py_tracefunc, PyObject *, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 139 | PyThreadState *, PyFrameObject *, int *, int *, int *); |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 140 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 141 | static PyObject * cmp_outcome(int, PyObject *, PyObject *); |
Serhiy Storchaka | 133138a | 2016-08-02 22:51:21 +0300 | [diff] [blame] | 142 | static PyObject * import_name(PyFrameObject *, PyObject *, PyObject *, PyObject *); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 143 | static PyObject * import_from(PyObject *, PyObject *); |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 144 | static int import_all_from(PyObject *, PyObject *); |
Neal Norwitz | da059e3 | 2007-08-26 05:33:45 +0000 | [diff] [blame] | 145 | static void format_exc_check_arg(PyObject *, const char *, PyObject *); |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 146 | static void format_exc_unbound(PyCodeObject *co, int oparg); |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 147 | static PyObject * unicode_concatenate(PyObject *, PyObject *, |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 148 | PyFrameObject *, const unsigned short *); |
Benjamin Peterson | ce79852 | 2012-01-22 11:24:29 -0500 | [diff] [blame] | 149 | static PyObject * special_lookup(PyObject *, _Py_Identifier *); |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 150 | |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 151 | #define NAME_ERROR_MSG \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 152 | "name '%.200s' is not defined" |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 153 | #define UNBOUNDLOCAL_ERROR_MSG \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 154 | "local variable '%.200s' referenced before assignment" |
Jeremy Hylton | c76770c | 2001-04-13 16:51:46 +0000 | [diff] [blame] | 155 | #define UNBOUNDFREE_ERROR_MSG \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 156 | "free variable '%.200s' referenced before assignment" \ |
| 157 | " in enclosing scope" |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 158 | |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 159 | /* Dynamic execution profile */ |
| 160 | #ifdef DYNAMIC_EXECUTION_PROFILE |
| 161 | #ifdef DXPAIRS |
| 162 | static long dxpairs[257][256]; |
| 163 | #define dxp dxpairs[256] |
| 164 | #else |
| 165 | static long dxp[256]; |
| 166 | #endif |
| 167 | #endif |
| 168 | |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 169 | /* Function call profile */ |
| 170 | #ifdef CALL_PROFILE |
| 171 | #define PCALL_NUM 11 |
| 172 | static int pcall[PCALL_NUM]; |
| 173 | |
| 174 | #define PCALL_ALL 0 |
| 175 | #define PCALL_FUNCTION 1 |
| 176 | #define PCALL_FAST_FUNCTION 2 |
| 177 | #define PCALL_FASTER_FUNCTION 3 |
| 178 | #define PCALL_METHOD 4 |
| 179 | #define PCALL_BOUND_METHOD 5 |
| 180 | #define PCALL_CFUNCTION 6 |
| 181 | #define PCALL_TYPE 7 |
| 182 | #define PCALL_GENERATOR 8 |
| 183 | #define PCALL_OTHER 9 |
| 184 | #define PCALL_POP 10 |
| 185 | |
| 186 | /* Notes about the statistics |
| 187 | |
| 188 | PCALL_FAST stats |
| 189 | |
| 190 | FAST_FUNCTION means no argument tuple needs to be created. |
| 191 | FASTER_FUNCTION means that the fast-path frame setup code is used. |
| 192 | |
| 193 | If there is a method call where the call can be optimized by changing |
| 194 | the argument tuple and calling the function directly, it gets recorded |
| 195 | twice. |
| 196 | |
| 197 | As a result, the relationship among the statistics appears to be |
| 198 | PCALL_ALL == PCALL_FUNCTION + PCALL_METHOD - PCALL_BOUND_METHOD + |
| 199 | PCALL_CFUNCTION + PCALL_TYPE + PCALL_GENERATOR + PCALL_OTHER |
| 200 | PCALL_FUNCTION > PCALL_FAST_FUNCTION > PCALL_FASTER_FUNCTION |
| 201 | PCALL_METHOD > PCALL_BOUND_METHOD |
| 202 | */ |
| 203 | |
| 204 | #define PCALL(POS) pcall[POS]++ |
| 205 | |
| 206 | PyObject * |
| 207 | PyEval_GetCallStats(PyObject *self) |
| 208 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 209 | return Py_BuildValue("iiiiiiiiiii", |
| 210 | pcall[0], pcall[1], pcall[2], pcall[3], |
| 211 | pcall[4], pcall[5], pcall[6], pcall[7], |
| 212 | pcall[8], pcall[9], pcall[10]); |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 213 | } |
| 214 | #else |
| 215 | #define PCALL(O) |
| 216 | |
| 217 | PyObject * |
| 218 | PyEval_GetCallStats(PyObject *self) |
| 219 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 220 | Py_INCREF(Py_None); |
| 221 | return Py_None; |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 222 | } |
| 223 | #endif |
| 224 | |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 225 | |
Benjamin Peterson | d2be5b4 | 2010-09-10 22:47:02 +0000 | [diff] [blame] | 226 | #ifdef WITH_THREAD |
| 227 | #define GIL_REQUEST _Py_atomic_load_relaxed(&gil_drop_request) |
| 228 | #else |
| 229 | #define GIL_REQUEST 0 |
| 230 | #endif |
| 231 | |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 232 | /* This can set eval_breaker to 0 even though gil_drop_request became |
| 233 | 1. We believe this is all right because the eval loop will release |
| 234 | the GIL eventually anyway. */ |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 235 | #define COMPUTE_EVAL_BREAKER() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 236 | _Py_atomic_store_relaxed( \ |
| 237 | &eval_breaker, \ |
Benjamin Peterson | d2be5b4 | 2010-09-10 22:47:02 +0000 | [diff] [blame] | 238 | GIL_REQUEST | \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 239 | _Py_atomic_load_relaxed(&pendingcalls_to_do) | \ |
| 240 | pending_async_exc) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 241 | |
Benjamin Peterson | d2be5b4 | 2010-09-10 22:47:02 +0000 | [diff] [blame] | 242 | #ifdef WITH_THREAD |
| 243 | |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 244 | #define SET_GIL_DROP_REQUEST() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 245 | do { \ |
| 246 | _Py_atomic_store_relaxed(&gil_drop_request, 1); \ |
| 247 | _Py_atomic_store_relaxed(&eval_breaker, 1); \ |
| 248 | } while (0) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 249 | |
| 250 | #define RESET_GIL_DROP_REQUEST() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 251 | do { \ |
| 252 | _Py_atomic_store_relaxed(&gil_drop_request, 0); \ |
| 253 | COMPUTE_EVAL_BREAKER(); \ |
| 254 | } while (0) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 255 | |
Benjamin Peterson | d2be5b4 | 2010-09-10 22:47:02 +0000 | [diff] [blame] | 256 | #endif |
| 257 | |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 258 | /* Pending calls are only modified under pending_lock */ |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 259 | #define SIGNAL_PENDING_CALLS() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 260 | do { \ |
| 261 | _Py_atomic_store_relaxed(&pendingcalls_to_do, 1); \ |
| 262 | _Py_atomic_store_relaxed(&eval_breaker, 1); \ |
| 263 | } while (0) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 264 | |
| 265 | #define UNSIGNAL_PENDING_CALLS() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 266 | do { \ |
| 267 | _Py_atomic_store_relaxed(&pendingcalls_to_do, 0); \ |
| 268 | COMPUTE_EVAL_BREAKER(); \ |
| 269 | } while (0) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 270 | |
| 271 | #define SIGNAL_ASYNC_EXC() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 272 | do { \ |
| 273 | pending_async_exc = 1; \ |
| 274 | _Py_atomic_store_relaxed(&eval_breaker, 1); \ |
| 275 | } while (0) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 276 | |
| 277 | #define UNSIGNAL_ASYNC_EXC() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 278 | do { pending_async_exc = 0; COMPUTE_EVAL_BREAKER(); } while (0) |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 279 | |
| 280 | |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 281 | #ifdef WITH_THREAD |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 282 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 283 | #ifdef HAVE_ERRNO_H |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 284 | #include <errno.h> |
Guido van Rossum | 2571cc8 | 1999-04-07 16:07:23 +0000 | [diff] [blame] | 285 | #endif |
Guido van Rossum | 49b5606 | 1998-10-01 20:42:43 +0000 | [diff] [blame] | 286 | #include "pythread.h" |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 287 | |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 288 | static PyThread_type_lock pending_lock = 0; /* for pending calls */ |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 289 | static long main_thread = 0; |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 290 | /* This single variable consolidates all requests to break out of the fast path |
| 291 | in the eval loop. */ |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 292 | static _Py_atomic_int eval_breaker = {0}; |
| 293 | /* Request for dropping the GIL */ |
| 294 | static _Py_atomic_int gil_drop_request = {0}; |
| 295 | /* Request for running pending calls. */ |
| 296 | static _Py_atomic_int pendingcalls_to_do = {0}; |
| 297 | /* Request for looking at the `async_exc` field of the current thread state. |
| 298 | Guarded by the GIL. */ |
| 299 | static int pending_async_exc = 0; |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 300 | |
| 301 | #include "ceval_gil.h" |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 302 | |
Tim Peters | 7f468f2 | 2004-10-11 02:40:51 +0000 | [diff] [blame] | 303 | int |
| 304 | PyEval_ThreadsInitialized(void) |
| 305 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 306 | return gil_created(); |
Tim Peters | 7f468f2 | 2004-10-11 02:40:51 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 309 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 310 | PyEval_InitThreads(void) |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 311 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 312 | if (gil_created()) |
| 313 | return; |
| 314 | create_gil(); |
| 315 | take_gil(PyThreadState_GET()); |
| 316 | main_thread = PyThread_get_thread_ident(); |
| 317 | if (!pending_lock) |
| 318 | pending_lock = PyThread_allocate_lock(); |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 319 | } |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 320 | |
Guido van Rossum | 9cc8a20 | 1997-07-19 19:55:50 +0000 | [diff] [blame] | 321 | void |
Antoine Pitrou | 1df1536 | 2010-09-13 14:16:46 +0000 | [diff] [blame] | 322 | _PyEval_FiniThreads(void) |
| 323 | { |
| 324 | if (!gil_created()) |
| 325 | return; |
| 326 | destroy_gil(); |
| 327 | assert(!gil_created()); |
| 328 | } |
| 329 | |
| 330 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 331 | PyEval_AcquireLock(void) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 332 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 333 | PyThreadState *tstate = PyThreadState_GET(); |
| 334 | if (tstate == NULL) |
| 335 | Py_FatalError("PyEval_AcquireLock: current thread state is NULL"); |
| 336 | take_gil(tstate); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 340 | PyEval_ReleaseLock(void) |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 341 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 342 | /* This function must succeed when the current thread state is NULL. |
| 343 | We therefore avoid PyThreadState_GET() which dumps a fatal error |
| 344 | in debug mode. |
| 345 | */ |
| 346 | drop_gil((PyThreadState*)_Py_atomic_load_relaxed( |
| 347 | &_PyThreadState_Current)); |
Guido van Rossum | 25ce566 | 1997-08-02 03:10:38 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 351 | PyEval_AcquireThread(PyThreadState *tstate) |
Guido van Rossum | 9cc8a20 | 1997-07-19 19:55:50 +0000 | [diff] [blame] | 352 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 353 | if (tstate == NULL) |
| 354 | Py_FatalError("PyEval_AcquireThread: NULL new thread state"); |
| 355 | /* Check someone has called PyEval_InitThreads() to create the lock */ |
| 356 | assert(gil_created()); |
| 357 | take_gil(tstate); |
| 358 | if (PyThreadState_Swap(tstate) != NULL) |
| 359 | Py_FatalError( |
| 360 | "PyEval_AcquireThread: non-NULL old thread state"); |
Guido van Rossum | 9cc8a20 | 1997-07-19 19:55:50 +0000 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 364 | PyEval_ReleaseThread(PyThreadState *tstate) |
Guido van Rossum | 9cc8a20 | 1997-07-19 19:55:50 +0000 | [diff] [blame] | 365 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 366 | if (tstate == NULL) |
| 367 | Py_FatalError("PyEval_ReleaseThread: NULL thread state"); |
| 368 | if (PyThreadState_Swap(NULL) != tstate) |
| 369 | Py_FatalError("PyEval_ReleaseThread: wrong thread state"); |
| 370 | drop_gil(tstate); |
Guido van Rossum | 9cc8a20 | 1997-07-19 19:55:50 +0000 | [diff] [blame] | 371 | } |
Guido van Rossum | fee3a2d | 2000-08-27 17:34:07 +0000 | [diff] [blame] | 372 | |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 373 | /* This function is called from PyOS_AfterFork to destroy all threads which are |
| 374 | * not running in the child process, and clear internal locks which might be |
| 375 | * held by those threads. (This could also be done using pthread_atfork |
| 376 | * mechanism, at least for the pthreads implementation.) */ |
Guido van Rossum | fee3a2d | 2000-08-27 17:34:07 +0000 | [diff] [blame] | 377 | |
| 378 | void |
| 379 | PyEval_ReInitThreads(void) |
| 380 | { |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 381 | _Py_IDENTIFIER(_after_fork); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 382 | PyObject *threading, *result; |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 383 | PyThreadState *current_tstate = PyThreadState_GET(); |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 384 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 385 | if (!gil_created()) |
| 386 | return; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 387 | recreate_gil(); |
| 388 | pending_lock = PyThread_allocate_lock(); |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 389 | take_gil(current_tstate); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 390 | main_thread = PyThread_get_thread_ident(); |
Jesse Noller | a851397 | 2008-07-17 16:49:17 +0000 | [diff] [blame] | 391 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 392 | /* Update the threading module with the new state. |
| 393 | */ |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 394 | threading = PyMapping_GetItemString(current_tstate->interp->modules, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 395 | "threading"); |
| 396 | if (threading == NULL) { |
| 397 | /* threading not imported */ |
| 398 | PyErr_Clear(); |
| 399 | return; |
| 400 | } |
Martin v. Löwis | afe55bb | 2011-10-09 10:38:36 +0200 | [diff] [blame] | 401 | result = _PyObject_CallMethodId(threading, &PyId__after_fork, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 402 | if (result == NULL) |
| 403 | PyErr_WriteUnraisable(threading); |
| 404 | else |
| 405 | Py_DECREF(result); |
| 406 | Py_DECREF(threading); |
Antoine Pitrou | 8408cea | 2013-05-05 23:47:09 +0200 | [diff] [blame] | 407 | |
| 408 | /* Destroy all threads except the current one */ |
| 409 | _PyThreadState_DeleteExcept(current_tstate); |
Guido van Rossum | fee3a2d | 2000-08-27 17:34:07 +0000 | [diff] [blame] | 410 | } |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 411 | |
| 412 | #else |
Jeffrey Yasskin | 3937083 | 2010-05-03 19:29:34 +0000 | [diff] [blame] | 413 | static _Py_atomic_int eval_breaker = {0}; |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 414 | static int pending_async_exc = 0; |
| 415 | #endif /* WITH_THREAD */ |
| 416 | |
| 417 | /* This function is used to signal that async exceptions are waiting to be |
| 418 | raised, therefore it is also useful in non-threaded builds. */ |
| 419 | |
| 420 | void |
| 421 | _PyEval_SignalAsyncExc(void) |
| 422 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 423 | SIGNAL_ASYNC_EXC(); |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 424 | } |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 425 | |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 426 | /* Functions save_thread and restore_thread are always defined so |
| 427 | dynamically loaded modules needn't be compiled separately for use |
| 428 | with and without threads: */ |
| 429 | |
Guido van Rossum | 2fca21f7 | 1997-07-18 23:56:58 +0000 | [diff] [blame] | 430 | PyThreadState * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 431 | PyEval_SaveThread(void) |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 432 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 433 | PyThreadState *tstate = PyThreadState_Swap(NULL); |
| 434 | if (tstate == NULL) |
| 435 | Py_FatalError("PyEval_SaveThread: NULL tstate"); |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 436 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 437 | if (gil_created()) |
| 438 | drop_gil(tstate); |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 439 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 440 | return tstate; |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | void |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 444 | PyEval_RestoreThread(PyThreadState *tstate) |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 445 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 446 | if (tstate == NULL) |
| 447 | Py_FatalError("PyEval_RestoreThread: NULL tstate"); |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 448 | #ifdef WITH_THREAD |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 449 | if (gil_created()) { |
| 450 | int err = errno; |
| 451 | take_gil(tstate); |
Antoine Pitrou | 0d5e52d | 2011-05-04 20:02:30 +0200 | [diff] [blame] | 452 | /* _Py_Finalizing is protected by the GIL */ |
| 453 | if (_Py_Finalizing && tstate != _Py_Finalizing) { |
| 454 | drop_gil(tstate); |
| 455 | PyThread_exit_thread(); |
| 456 | assert(0); /* unreachable */ |
| 457 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 458 | errno = err; |
| 459 | } |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 460 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 461 | PyThreadState_Swap(tstate); |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 465 | /* Mechanism whereby asynchronously executing callbacks (e.g. UNIX |
| 466 | signal handlers or Mac I/O completion routines) can schedule calls |
| 467 | to a function to be called synchronously. |
| 468 | The synchronous function is called with one void* argument. |
| 469 | It should return 0 for success or -1 for failure -- failure should |
| 470 | be accompanied by an exception. |
| 471 | |
| 472 | If registry succeeds, the registry function returns 0; if it fails |
| 473 | (e.g. due to too many pending calls) it returns -1 (without setting |
| 474 | an exception condition). |
| 475 | |
| 476 | Note that because registry may occur from within signal handlers, |
| 477 | or other asynchronous events, calling malloc() is unsafe! |
| 478 | |
| 479 | #ifdef WITH_THREAD |
| 480 | Any thread can schedule pending calls, but only the main thread |
| 481 | will execute them. |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 482 | There is no facility to schedule calls to a particular thread, but |
| 483 | that should be easy to change, should that ever be required. In |
| 484 | that case, the static variables here should go into the python |
| 485 | threadstate. |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 486 | #endif |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 487 | */ |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 488 | |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 489 | #ifdef WITH_THREAD |
| 490 | |
| 491 | /* The WITH_THREAD implementation is thread-safe. It allows |
| 492 | scheduling to be made from any thread, and even from an executing |
| 493 | callback. |
| 494 | */ |
| 495 | |
| 496 | #define NPENDINGCALLS 32 |
| 497 | static struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 498 | int (*func)(void *); |
| 499 | void *arg; |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 500 | } pendingcalls[NPENDINGCALLS]; |
| 501 | static int pendingfirst = 0; |
| 502 | static int pendinglast = 0; |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 503 | |
| 504 | int |
| 505 | Py_AddPendingCall(int (*func)(void *), void *arg) |
| 506 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 507 | int i, j, result=0; |
| 508 | PyThread_type_lock lock = pending_lock; |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 509 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 510 | /* try a few times for the lock. Since this mechanism is used |
| 511 | * for signal handling (on the main thread), there is a (slim) |
| 512 | * chance that a signal is delivered on the same thread while we |
| 513 | * hold the lock during the Py_MakePendingCalls() function. |
| 514 | * This avoids a deadlock in that case. |
| 515 | * Note that signals can be delivered on any thread. In particular, |
| 516 | * on Windows, a SIGINT is delivered on a system-created worker |
| 517 | * thread. |
| 518 | * We also check for lock being NULL, in the unlikely case that |
| 519 | * this function is called before any bytecode evaluation takes place. |
| 520 | */ |
| 521 | if (lock != NULL) { |
| 522 | for (i = 0; i<100; i++) { |
| 523 | if (PyThread_acquire_lock(lock, NOWAIT_LOCK)) |
| 524 | break; |
| 525 | } |
| 526 | if (i == 100) |
| 527 | return -1; |
| 528 | } |
| 529 | |
| 530 | i = pendinglast; |
| 531 | j = (i + 1) % NPENDINGCALLS; |
| 532 | if (j == pendingfirst) { |
| 533 | result = -1; /* Queue full */ |
| 534 | } else { |
| 535 | pendingcalls[i].func = func; |
| 536 | pendingcalls[i].arg = arg; |
| 537 | pendinglast = j; |
| 538 | } |
| 539 | /* signal main loop */ |
| 540 | SIGNAL_PENDING_CALLS(); |
| 541 | if (lock != NULL) |
| 542 | PyThread_release_lock(lock); |
| 543 | return result; |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | int |
| 547 | Py_MakePendingCalls(void) |
| 548 | { |
Charles-François Natali | f23339a | 2011-07-23 18:15:43 +0200 | [diff] [blame] | 549 | static int busy = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 550 | int i; |
| 551 | int r = 0; |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 552 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 553 | if (!pending_lock) { |
| 554 | /* initial allocation of the lock */ |
| 555 | pending_lock = PyThread_allocate_lock(); |
| 556 | if (pending_lock == NULL) |
| 557 | return -1; |
| 558 | } |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 559 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 560 | /* only service pending calls on main thread */ |
| 561 | if (main_thread && PyThread_get_thread_ident() != main_thread) |
| 562 | return 0; |
| 563 | /* don't perform recursive pending calls */ |
Charles-François Natali | f23339a | 2011-07-23 18:15:43 +0200 | [diff] [blame] | 564 | if (busy) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 565 | return 0; |
Charles-François Natali | f23339a | 2011-07-23 18:15:43 +0200 | [diff] [blame] | 566 | busy = 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 567 | /* perform a bounded number of calls, in case of recursion */ |
| 568 | for (i=0; i<NPENDINGCALLS; i++) { |
| 569 | int j; |
| 570 | int (*func)(void *); |
| 571 | void *arg = NULL; |
| 572 | |
| 573 | /* pop one item off the queue while holding the lock */ |
| 574 | PyThread_acquire_lock(pending_lock, WAIT_LOCK); |
| 575 | j = pendingfirst; |
| 576 | if (j == pendinglast) { |
| 577 | func = NULL; /* Queue empty */ |
| 578 | } else { |
| 579 | func = pendingcalls[j].func; |
| 580 | arg = pendingcalls[j].arg; |
| 581 | pendingfirst = (j + 1) % NPENDINGCALLS; |
| 582 | } |
| 583 | if (pendingfirst != pendinglast) |
| 584 | SIGNAL_PENDING_CALLS(); |
| 585 | else |
| 586 | UNSIGNAL_PENDING_CALLS(); |
| 587 | PyThread_release_lock(pending_lock); |
| 588 | /* having released the lock, perform the callback */ |
| 589 | if (func == NULL) |
| 590 | break; |
| 591 | r = func(arg); |
| 592 | if (r) |
| 593 | break; |
| 594 | } |
Charles-François Natali | f23339a | 2011-07-23 18:15:43 +0200 | [diff] [blame] | 595 | busy = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 596 | return r; |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | #else /* if ! defined WITH_THREAD */ |
| 600 | |
| 601 | /* |
| 602 | WARNING! ASYNCHRONOUSLY EXECUTING CODE! |
| 603 | This code is used for signal handling in python that isn't built |
| 604 | with WITH_THREAD. |
| 605 | Don't use this implementation when Py_AddPendingCalls() can happen |
| 606 | on a different thread! |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 607 | |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 608 | There are two possible race conditions: |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 609 | (1) nested asynchronous calls to Py_AddPendingCall() |
| 610 | (2) AddPendingCall() calls made while pending calls are being processed. |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 611 | |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 612 | (1) is very unlikely because typically signal delivery |
| 613 | is blocked during signal handling. So it should be impossible. |
| 614 | (2) is a real possibility. |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 615 | The current code is safe against (2), but not against (1). |
| 616 | The safety against (2) is derived from the fact that only one |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 617 | thread is present, interrupted by signals, and that the critical |
| 618 | section is protected with the "busy" variable. On Windows, which |
| 619 | delivers SIGINT on a system thread, this does not hold and therefore |
| 620 | Windows really shouldn't use this version. |
| 621 | The two threads could theoretically wiggle around the "busy" variable. |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 622 | */ |
Guido van Rossum | 8861b74 | 1996-07-30 16:49:37 +0000 | [diff] [blame] | 623 | |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 624 | #define NPENDINGCALLS 32 |
| 625 | static struct { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 626 | int (*func)(void *); |
| 627 | void *arg; |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 628 | } pendingcalls[NPENDINGCALLS]; |
| 629 | static volatile int pendingfirst = 0; |
| 630 | static volatile int pendinglast = 0; |
Benjamin Peterson | 08ec84c | 2010-05-30 14:49:32 +0000 | [diff] [blame] | 631 | static _Py_atomic_int pendingcalls_to_do = {0}; |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 632 | |
| 633 | int |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 634 | Py_AddPendingCall(int (*func)(void *), void *arg) |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 635 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 636 | static volatile int busy = 0; |
| 637 | int i, j; |
| 638 | /* XXX Begin critical section */ |
| 639 | if (busy) |
| 640 | return -1; |
| 641 | busy = 1; |
| 642 | i = pendinglast; |
| 643 | j = (i + 1) % NPENDINGCALLS; |
| 644 | if (j == pendingfirst) { |
| 645 | busy = 0; |
| 646 | return -1; /* Queue full */ |
| 647 | } |
| 648 | pendingcalls[i].func = func; |
| 649 | pendingcalls[i].arg = arg; |
| 650 | pendinglast = j; |
Skip Montanaro | d581d77 | 2002-09-03 20:10:45 +0000 | [diff] [blame] | 651 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 652 | SIGNAL_PENDING_CALLS(); |
| 653 | busy = 0; |
| 654 | /* XXX End critical section */ |
| 655 | return 0; |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Guido van Rossum | 180d7b4 | 1994-09-29 09:45:57 +0000 | [diff] [blame] | 658 | int |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 659 | Py_MakePendingCalls(void) |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 660 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 661 | static int busy = 0; |
| 662 | if (busy) |
| 663 | return 0; |
| 664 | busy = 1; |
| 665 | UNSIGNAL_PENDING_CALLS(); |
| 666 | for (;;) { |
| 667 | int i; |
| 668 | int (*func)(void *); |
| 669 | void *arg; |
| 670 | i = pendingfirst; |
| 671 | if (i == pendinglast) |
| 672 | break; /* Queue empty */ |
| 673 | func = pendingcalls[i].func; |
| 674 | arg = pendingcalls[i].arg; |
| 675 | pendingfirst = (i + 1) % NPENDINGCALLS; |
| 676 | if (func(arg) < 0) { |
| 677 | busy = 0; |
| 678 | SIGNAL_PENDING_CALLS(); /* We're not done yet */ |
| 679 | return -1; |
| 680 | } |
| 681 | } |
| 682 | busy = 0; |
| 683 | return 0; |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 684 | } |
| 685 | |
Benjamin Peterson | e5bf383 | 2009-01-17 23:43:58 +0000 | [diff] [blame] | 686 | #endif /* WITH_THREAD */ |
| 687 | |
Guido van Rossum | a967209 | 1994-09-14 13:31:22 +0000 | [diff] [blame] | 688 | |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 689 | /* The interpreter's recursion limit */ |
| 690 | |
Hye-Shik Chang | b6fa281 | 2005-04-04 15:49:02 +0000 | [diff] [blame] | 691 | #ifndef Py_DEFAULT_RECURSION_LIMIT |
| 692 | #define Py_DEFAULT_RECURSION_LIMIT 1000 |
| 693 | #endif |
| 694 | static int recursion_limit = Py_DEFAULT_RECURSION_LIMIT; |
| 695 | int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT; |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 696 | |
Vladimir Marangozov | 7bd25be | 2000-09-01 11:07:19 +0000 | [diff] [blame] | 697 | int |
| 698 | Py_GetRecursionLimit(void) |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 699 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 700 | return recursion_limit; |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 701 | } |
| 702 | |
Vladimir Marangozov | 7bd25be | 2000-09-01 11:07:19 +0000 | [diff] [blame] | 703 | void |
| 704 | Py_SetRecursionLimit(int new_limit) |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 705 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 706 | recursion_limit = new_limit; |
| 707 | _Py_CheckRecursionLimit = recursion_limit; |
Jeremy Hylton | ee5adfb | 2000-08-31 19:23:01 +0000 | [diff] [blame] | 708 | } |
| 709 | |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 710 | /* the macro Py_EnterRecursiveCall() only calls _Py_CheckRecursiveCall() |
| 711 | if the recursion_depth reaches _Py_CheckRecursionLimit. |
| 712 | If USE_STACKCHECK, the macro decrements _Py_CheckRecursionLimit |
| 713 | to guarantee that _Py_CheckRecursiveCall() is regularly called. |
| 714 | Without USE_STACKCHECK, there is no need for this. */ |
| 715 | int |
Serhiy Storchaka | 5fa22fc | 2015-06-21 16:26:28 +0300 | [diff] [blame] | 716 | _Py_CheckRecursiveCall(const char *where) |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 717 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 718 | PyThreadState *tstate = PyThreadState_GET(); |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 719 | |
| 720 | #ifdef USE_STACKCHECK |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 721 | if (PyOS_CheckStack()) { |
| 722 | --tstate->recursion_depth; |
| 723 | PyErr_SetString(PyExc_MemoryError, "Stack overflow"); |
| 724 | return -1; |
| 725 | } |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 726 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 727 | _Py_CheckRecursionLimit = recursion_limit; |
| 728 | if (tstate->recursion_critical) |
| 729 | /* Somebody asked that we don't check for recursion. */ |
| 730 | return 0; |
| 731 | if (tstate->overflowed) { |
| 732 | if (tstate->recursion_depth > recursion_limit + 50) { |
| 733 | /* Overflowing while handling an overflow. Give up. */ |
| 734 | Py_FatalError("Cannot recover from stack overflow."); |
| 735 | } |
| 736 | return 0; |
| 737 | } |
| 738 | if (tstate->recursion_depth > recursion_limit) { |
| 739 | --tstate->recursion_depth; |
| 740 | tstate->overflowed = 1; |
Yury Selivanov | f488fb4 | 2015-07-03 01:04:23 -0400 | [diff] [blame] | 741 | PyErr_Format(PyExc_RecursionError, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 742 | "maximum recursion depth exceeded%s", |
| 743 | where); |
| 744 | return -1; |
| 745 | } |
| 746 | return 0; |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 747 | } |
| 748 | |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 749 | /* Status code for main loop (reason for stack unwind) */ |
Raymond Hettinger | 7c95865 | 2004-04-06 10:11:10 +0000 | [diff] [blame] | 750 | enum why_code { |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 751 | WHY_NOT = 0x0001, /* No error */ |
| 752 | WHY_EXCEPTION = 0x0002, /* Exception occurred */ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 753 | WHY_RETURN = 0x0008, /* 'return' statement */ |
| 754 | WHY_BREAK = 0x0010, /* 'break' statement */ |
| 755 | WHY_CONTINUE = 0x0020, /* 'continue' statement */ |
| 756 | WHY_YIELD = 0x0040, /* 'yield' operator */ |
| 757 | WHY_SILENCED = 0x0080 /* Exception silenced by 'with' */ |
Raymond Hettinger | 7c95865 | 2004-04-06 10:11:10 +0000 | [diff] [blame] | 758 | }; |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 759 | |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 760 | static void save_exc_state(PyThreadState *, PyFrameObject *); |
| 761 | static void swap_exc_state(PyThreadState *, PyFrameObject *); |
| 762 | static void restore_and_clear_exc_state(PyThreadState *, PyFrameObject *); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 763 | static int do_raise(PyObject *, PyObject *); |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 764 | static int unpack_iterable(PyObject *, int, int, PyObject **); |
Guido van Rossum | 1aa1483 | 1997-01-21 05:34:20 +0000 | [diff] [blame] | 765 | |
Jeffrey Yasskin | 008d8ef | 2008-12-06 17:09:27 +0000 | [diff] [blame] | 766 | /* Records whether tracing is on for any thread. Counts the number of |
| 767 | threads for which tstate->c_tracefunc is non-NULL, so if the value |
| 768 | is 0, we know we don't have to check this thread's c_tracefunc. |
| 769 | This speeds up the if statement in PyEval_EvalFrameEx() after |
| 770 | fast_next_opcode*/ |
| 771 | static int _Py_TracingPossible = 0; |
| 772 | |
Antoine Pitrou | 074e5ed | 2009-11-10 19:50:40 +0000 | [diff] [blame] | 773 | |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 774 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 775 | PyObject * |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 776 | PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals) |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 777 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 778 | return PyEval_EvalCodeEx(co, |
| 779 | globals, locals, |
| 780 | (PyObject **)NULL, 0, |
| 781 | (PyObject **)NULL, 0, |
| 782 | (PyObject **)NULL, 0, |
| 783 | NULL, NULL); |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | |
| 787 | /* Interpreter main loop */ |
| 788 | |
Martin v. Löwis | 8d97e33 | 2004-06-27 15:43:12 +0000 | [diff] [blame] | 789 | PyObject * |
Phillip J. Eby | 0d6615f | 2005-08-02 00:46:46 +0000 | [diff] [blame] | 790 | PyEval_EvalFrame(PyFrameObject *f) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 791 | /* This is for backward compatibility with extension modules that |
| 792 | used this API; core interpreter code should call |
| 793 | PyEval_EvalFrameEx() */ |
| 794 | return PyEval_EvalFrameEx(f, 0); |
Phillip J. Eby | 0d6615f | 2005-08-02 00:46:46 +0000 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | PyObject * |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 798 | PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 799 | { |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 800 | #ifdef DXPAIRS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 801 | int lastopcode = 0; |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 802 | #endif |
Antoine Pitrou | 9ed5f27 | 2013-08-13 20:18:52 +0200 | [diff] [blame] | 803 | PyObject **stack_pointer; /* Next free slot in value stack */ |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 804 | const unsigned short *next_instr; |
Antoine Pitrou | 9ed5f27 | 2013-08-13 20:18:52 +0200 | [diff] [blame] | 805 | int opcode; /* Current opcode */ |
| 806 | int oparg; /* Current opcode argument, if any */ |
| 807 | enum why_code why; /* Reason for block stack unwind */ |
| 808 | PyObject **fastlocals, **freevars; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 809 | PyObject *retval = NULL; /* Return value */ |
| 810 | PyThreadState *tstate = PyThreadState_GET(); |
| 811 | PyCodeObject *co; |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 812 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 813 | /* when tracing we set things up so that |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 814 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 815 | not (instr_lb <= current_bytecode_offset < instr_ub) |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 816 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 817 | is true when the line being executed has changed. The |
| 818 | initial values are such as to make this false the first |
| 819 | time it is tested. */ |
| 820 | int instr_ub = -1, instr_lb = 0, instr_prev = -1; |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 821 | |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 822 | const unsigned short *first_instr; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 823 | PyObject *names; |
| 824 | PyObject *consts; |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 825 | |
Brett Cannon | 368b4b7 | 2012-04-02 12:17:59 -0400 | [diff] [blame] | 826 | #ifdef LLTRACE |
Victor Stinner | 3c1e481 | 2012-03-26 22:10:51 +0200 | [diff] [blame] | 827 | _Py_IDENTIFIER(__ltrace__); |
Brett Cannon | 368b4b7 | 2012-04-02 12:17:59 -0400 | [diff] [blame] | 828 | #endif |
Victor Stinner | 3c1e481 | 2012-03-26 22:10:51 +0200 | [diff] [blame] | 829 | |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 830 | /* Computed GOTOs, or |
| 831 | the-optimization-commonly-but-improperly-known-as-"threaded code" |
| 832 | using gcc's labels-as-values extension |
| 833 | (http://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html). |
| 834 | |
| 835 | The traditional bytecode evaluation loop uses a "switch" statement, which |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 836 | decent compilers will optimize as a single indirect branch instruction |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 837 | combined with a lookup table of jump addresses. However, since the |
| 838 | indirect jump instruction is shared by all opcodes, the CPU will have a |
| 839 | hard time making the right prediction for where to jump next (actually, |
| 840 | it will be always wrong except in the uncommon case of a sequence of |
| 841 | several identical opcodes). |
| 842 | |
| 843 | "Threaded code" in contrast, uses an explicit jump table and an explicit |
| 844 | indirect jump instruction at the end of each opcode. Since the jump |
| 845 | instruction is at a different address for each opcode, the CPU will make a |
| 846 | separate prediction for each of these instructions, which is equivalent to |
| 847 | predicting the second opcode of each opcode pair. These predictions have |
| 848 | a much better chance to turn out valid, especially in small bytecode loops. |
| 849 | |
| 850 | A mispredicted branch on a modern CPU flushes the whole pipeline and |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 851 | can cost several CPU cycles (depending on the pipeline depth), |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 852 | and potentially many more instructions (depending on the pipeline width). |
| 853 | A correctly predicted branch, however, is nearly free. |
| 854 | |
| 855 | At the time of this writing, the "threaded code" version is up to 15-20% |
| 856 | faster than the normal "switch" version, depending on the compiler and the |
| 857 | CPU architecture. |
| 858 | |
| 859 | We disable the optimization if DYNAMIC_EXECUTION_PROFILE is defined, |
| 860 | because it would render the measurements invalid. |
| 861 | |
| 862 | |
| 863 | NOTE: care must be taken that the compiler doesn't try to "optimize" the |
| 864 | indirect jumps by sharing them between all opcodes. Such optimizations |
| 865 | can be disabled on gcc by using the -fno-gcse flag (or possibly |
| 866 | -fno-crossjumping). |
| 867 | */ |
| 868 | |
Antoine Pitrou | 042b128 | 2010-08-13 21:15:58 +0000 | [diff] [blame] | 869 | #ifdef DYNAMIC_EXECUTION_PROFILE |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 870 | #undef USE_COMPUTED_GOTOS |
Antoine Pitrou | 042b128 | 2010-08-13 21:15:58 +0000 | [diff] [blame] | 871 | #define USE_COMPUTED_GOTOS 0 |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 872 | #endif |
| 873 | |
Antoine Pitrou | 042b128 | 2010-08-13 21:15:58 +0000 | [diff] [blame] | 874 | #ifdef HAVE_COMPUTED_GOTOS |
| 875 | #ifndef USE_COMPUTED_GOTOS |
| 876 | #define USE_COMPUTED_GOTOS 1 |
| 877 | #endif |
| 878 | #else |
| 879 | #if defined(USE_COMPUTED_GOTOS) && USE_COMPUTED_GOTOS |
| 880 | #error "Computed gotos are not supported on this compiler." |
| 881 | #endif |
| 882 | #undef USE_COMPUTED_GOTOS |
| 883 | #define USE_COMPUTED_GOTOS 0 |
| 884 | #endif |
| 885 | |
| 886 | #if USE_COMPUTED_GOTOS |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 887 | /* Import the static jump table */ |
| 888 | #include "opcode_targets.h" |
| 889 | |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 890 | #define TARGET(op) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 891 | TARGET_##op: \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 892 | case op: |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 893 | |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 894 | #define DISPATCH() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 895 | { \ |
| 896 | if (!_Py_atomic_load_relaxed(&eval_breaker)) { \ |
| 897 | FAST_DISPATCH(); \ |
| 898 | } \ |
| 899 | continue; \ |
| 900 | } |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 901 | |
| 902 | #ifdef LLTRACE |
| 903 | #define FAST_DISPATCH() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 904 | { \ |
| 905 | if (!lltrace && !_Py_TracingPossible) { \ |
| 906 | f->f_lasti = INSTR_OFFSET(); \ |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 907 | NEXTOPARG(); \ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 908 | goto *opcode_targets[opcode]; \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 909 | } \ |
| 910 | goto fast_next_opcode; \ |
| 911 | } |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 912 | #else |
| 913 | #define FAST_DISPATCH() \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 914 | { \ |
| 915 | if (!_Py_TracingPossible) { \ |
| 916 | f->f_lasti = INSTR_OFFSET(); \ |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 917 | NEXTOPARG(); \ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 918 | goto *opcode_targets[opcode]; \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 919 | } \ |
| 920 | goto fast_next_opcode; \ |
| 921 | } |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 922 | #endif |
| 923 | |
| 924 | #else |
| 925 | #define TARGET(op) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 926 | case op: |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 927 | |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 928 | #define DISPATCH() continue |
| 929 | #define FAST_DISPATCH() goto fast_next_opcode |
| 930 | #endif |
| 931 | |
| 932 | |
Neal Norwitz | a81d220 | 2002-07-14 00:27:26 +0000 | [diff] [blame] | 933 | /* Tuple access macros */ |
| 934 | |
| 935 | #ifndef Py_DEBUG |
| 936 | #define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i)) |
| 937 | #else |
| 938 | #define GETITEM(v, i) PyTuple_GetItem((v), (i)) |
| 939 | #endif |
| 940 | |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 941 | #ifdef WITH_TSC |
| 942 | /* Use Pentium timestamp counter to mark certain events: |
| 943 | inst0 -- beginning of switch statement for opcode dispatch |
| 944 | inst1 -- end of switch statement (may be skipped) |
| 945 | loop0 -- the top of the mainloop |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 946 | loop1 -- place where control returns again to top of mainloop |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 947 | (may be skipped) |
| 948 | intr1 -- beginning of long interruption |
| 949 | intr2 -- end of long interruption |
| 950 | |
| 951 | Many opcodes call out to helper C functions. In some cases, the |
| 952 | time in those functions should be counted towards the time for the |
| 953 | opcode, but not in all cases. For example, a CALL_FUNCTION opcode |
| 954 | calls another Python function; there's no point in charge all the |
| 955 | bytecode executed by the called function to the caller. |
| 956 | |
| 957 | It's hard to make a useful judgement statically. In the presence |
| 958 | of operator overloading, it's impossible to tell if a call will |
| 959 | execute new Python code or not. |
| 960 | |
| 961 | It's a case-by-case judgement. I'll use intr1 for the following |
| 962 | cases: |
| 963 | |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 964 | IMPORT_STAR |
| 965 | IMPORT_FROM |
| 966 | CALL_FUNCTION (and friends) |
| 967 | |
| 968 | */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 969 | uint64 inst0, inst1, loop0, loop1, intr0 = 0, intr1 = 0; |
| 970 | int ticked = 0; |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 971 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 972 | READ_TIMESTAMP(inst0); |
| 973 | READ_TIMESTAMP(inst1); |
| 974 | READ_TIMESTAMP(loop0); |
| 975 | READ_TIMESTAMP(loop1); |
Michael W. Hudson | 800ba23 | 2004-08-12 18:19:17 +0000 | [diff] [blame] | 976 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 977 | /* shut up the compiler */ |
| 978 | opcode = 0; |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 979 | #endif |
| 980 | |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 981 | /* Code access macros */ |
| 982 | |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 983 | #ifdef WORDS_BIGENDIAN |
| 984 | #define OPCODE(word) ((word) >> 8) |
| 985 | #define OPARG(word) ((word) & 255) |
| 986 | #else |
| 987 | #define OPCODE(word) ((word) & 255) |
| 988 | #define OPARG(word) ((word) >> 8) |
| 989 | #endif |
| 990 | /* The integer overflow is checked by an assertion below. */ |
| 991 | #define INSTR_OFFSET() (2*(int)(next_instr - first_instr)) |
| 992 | #define NEXTOPARG() do { \ |
| 993 | unsigned short word = *next_instr; \ |
| 994 | opcode = OPCODE(word); \ |
| 995 | oparg = OPARG(word); \ |
| 996 | next_instr++; \ |
| 997 | } while (0) |
| 998 | #define JUMPTO(x) (next_instr = first_instr + (x)/2) |
| 999 | #define JUMPBY(x) (next_instr += (x)/2) |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1000 | |
Raymond Hettinger | f606f87 | 2003-03-16 03:11:04 +0000 | [diff] [blame] | 1001 | /* OpCode prediction macros |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1002 | Some opcodes tend to come in pairs thus making it possible to |
| 1003 | predict the second code when the first is run. For example, |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 1004 | COMPARE_OP is often followed by POP_JUMP_IF_FALSE or POP_JUMP_IF_TRUE. |
Raymond Hettinger | f606f87 | 2003-03-16 03:11:04 +0000 | [diff] [blame] | 1005 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1006 | Verifying the prediction costs a single high-speed test of a register |
| 1007 | variable against a constant. If the pairing was good, then the |
| 1008 | processor's own internal branch predication has a high likelihood of |
| 1009 | success, resulting in a nearly zero-overhead transition to the |
| 1010 | next opcode. A successful prediction saves a trip through the eval-loop |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1011 | including its unpredictable switch-case branch. Combined with the |
| 1012 | processor's internal branch prediction, a successful PREDICT has the |
| 1013 | effect of making the two opcodes run as if they were a single new opcode |
| 1014 | with the bodies combined. |
Raymond Hettinger | f606f87 | 2003-03-16 03:11:04 +0000 | [diff] [blame] | 1015 | |
Georg Brandl | 86b2fb9 | 2008-07-16 03:43:04 +0000 | [diff] [blame] | 1016 | If collecting opcode statistics, your choices are to either keep the |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1017 | predictions turned-on and interpret the results as if some opcodes |
| 1018 | had been combined or turn-off predictions so that the opcode frequency |
| 1019 | counter updates for both opcodes. |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 1020 | |
| 1021 | Opcode prediction is disabled with threaded code, since the latter allows |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1022 | the CPU to record separate branch prediction information for each |
| 1023 | opcode. |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 1024 | |
Raymond Hettinger | f606f87 | 2003-03-16 03:11:04 +0000 | [diff] [blame] | 1025 | */ |
| 1026 | |
Antoine Pitrou | 042b128 | 2010-08-13 21:15:58 +0000 | [diff] [blame] | 1027 | #if defined(DYNAMIC_EXECUTION_PROFILE) || USE_COMPUTED_GOTOS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1028 | #define PREDICT(op) if (0) goto PRED_##op |
Raymond Hettinger | a721698 | 2004-02-08 19:59:27 +0000 | [diff] [blame] | 1029 | #else |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1030 | #define PREDICT(op) \ |
| 1031 | do{ \ |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 1032 | unsigned short word = *next_instr; \ |
| 1033 | opcode = OPCODE(word); \ |
| 1034 | if (opcode == op){ \ |
| 1035 | oparg = OPARG(word); \ |
| 1036 | next_instr++; \ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1037 | goto PRED_##op; \ |
| 1038 | } \ |
| 1039 | } while(0) |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 1040 | #endif |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1041 | #define PREDICTED(op) PRED_##op: |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 1042 | |
Raymond Hettinger | f606f87 | 2003-03-16 03:11:04 +0000 | [diff] [blame] | 1043 | |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1044 | /* Stack manipulation macros */ |
| 1045 | |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1046 | /* The stack can grow at most MAXINT deep, as co_nlocals and |
| 1047 | co_stacksize are ints. */ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1048 | #define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack)) |
| 1049 | #define EMPTY() (STACK_LEVEL() == 0) |
| 1050 | #define TOP() (stack_pointer[-1]) |
| 1051 | #define SECOND() (stack_pointer[-2]) |
| 1052 | #define THIRD() (stack_pointer[-3]) |
| 1053 | #define FOURTH() (stack_pointer[-4]) |
| 1054 | #define PEEK(n) (stack_pointer[-(n)]) |
| 1055 | #define SET_TOP(v) (stack_pointer[-1] = (v)) |
| 1056 | #define SET_SECOND(v) (stack_pointer[-2] = (v)) |
| 1057 | #define SET_THIRD(v) (stack_pointer[-3] = (v)) |
| 1058 | #define SET_FOURTH(v) (stack_pointer[-4] = (v)) |
| 1059 | #define SET_VALUE(n, v) (stack_pointer[-(n)] = (v)) |
| 1060 | #define BASIC_STACKADJ(n) (stack_pointer += n) |
| 1061 | #define BASIC_PUSH(v) (*stack_pointer++ = (v)) |
| 1062 | #define BASIC_POP() (*--stack_pointer) |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1063 | |
Guido van Rossum | 96a42c8 | 1992-01-12 02:29:51 +0000 | [diff] [blame] | 1064 | #ifdef LLTRACE |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1065 | #define PUSH(v) { (void)(BASIC_PUSH(v), \ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1066 | lltrace && prtrace(TOP(), "push")); \ |
| 1067 | assert(STACK_LEVEL() <= co->co_stacksize); } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1068 | #define POP() ((void)(lltrace && prtrace(TOP(), "pop")), \ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1069 | BASIC_POP()) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1070 | #define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1071 | lltrace && prtrace(TOP(), "stackadj")); \ |
| 1072 | assert(STACK_LEVEL() <= co->co_stacksize); } |
Christian Heimes | 0449f63 | 2007-12-15 01:27:15 +0000 | [diff] [blame] | 1073 | #define EXT_POP(STACK_POINTER) ((void)(lltrace && \ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1074 | prtrace((STACK_POINTER)[-1], "ext_pop")), \ |
| 1075 | *--(STACK_POINTER)) |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1076 | #else |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1077 | #define PUSH(v) BASIC_PUSH(v) |
| 1078 | #define POP() BASIC_POP() |
| 1079 | #define STACKADJ(n) BASIC_STACKADJ(n) |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 1080 | #define EXT_POP(STACK_POINTER) (*--(STACK_POINTER)) |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1081 | #endif |
| 1082 | |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 1083 | /* Local variable macros */ |
| 1084 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1085 | #define GETLOCAL(i) (fastlocals[i]) |
Guido van Rossum | cfbf1a3 | 2002-03-28 20:17:52 +0000 | [diff] [blame] | 1086 | |
| 1087 | /* The SETLOCAL() macro must not DECREF the local variable in-place and |
| 1088 | then store the new value; it must copy the old value to a temporary |
| 1089 | value, then store the new value, and then DECREF the temporary value. |
| 1090 | This is because it is possible that during the DECREF the frame is |
| 1091 | accessed by other code (e.g. a __del__ method or gc.collect()) and the |
| 1092 | variable would be pointing to already-freed memory. */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1093 | #define SETLOCAL(i, value) do { PyObject *tmp = GETLOCAL(i); \ |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1094 | GETLOCAL(i) = value; \ |
| 1095 | Py_XDECREF(tmp); } while (0) |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 1096 | |
Benjamin Peterson | eec3d71 | 2008-06-11 15:59:43 +0000 | [diff] [blame] | 1097 | |
| 1098 | #define UNWIND_BLOCK(b) \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1099 | while (STACK_LEVEL() > (b)->b_level) { \ |
| 1100 | PyObject *v = POP(); \ |
| 1101 | Py_XDECREF(v); \ |
| 1102 | } |
Benjamin Peterson | eec3d71 | 2008-06-11 15:59:43 +0000 | [diff] [blame] | 1103 | |
| 1104 | #define UNWIND_EXCEPT_HANDLER(b) \ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1105 | do { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1106 | PyObject *type, *value, *traceback; \ |
| 1107 | assert(STACK_LEVEL() >= (b)->b_level + 3); \ |
| 1108 | while (STACK_LEVEL() > (b)->b_level + 3) { \ |
| 1109 | value = POP(); \ |
| 1110 | Py_XDECREF(value); \ |
| 1111 | } \ |
| 1112 | type = tstate->exc_type; \ |
| 1113 | value = tstate->exc_value; \ |
| 1114 | traceback = tstate->exc_traceback; \ |
| 1115 | tstate->exc_type = POP(); \ |
| 1116 | tstate->exc_value = POP(); \ |
| 1117 | tstate->exc_traceback = POP(); \ |
| 1118 | Py_XDECREF(type); \ |
| 1119 | Py_XDECREF(value); \ |
| 1120 | Py_XDECREF(traceback); \ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1121 | } while(0) |
Benjamin Peterson | eec3d71 | 2008-06-11 15:59:43 +0000 | [diff] [blame] | 1122 | |
Guido van Rossum | a027efa | 1997-05-05 20:56:21 +0000 | [diff] [blame] | 1123 | /* Start of code */ |
| 1124 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1125 | /* push frame */ |
| 1126 | if (Py_EnterRecursiveCall("")) |
| 1127 | return NULL; |
Guido van Rossum | 8861b74 | 1996-07-30 16:49:37 +0000 | [diff] [blame] | 1128 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1129 | tstate->frame = f; |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 1130 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1131 | if (tstate->use_tracing) { |
| 1132 | if (tstate->c_tracefunc != NULL) { |
| 1133 | /* tstate->c_tracefunc, if defined, is a |
| 1134 | function that will be called on *every* entry |
| 1135 | to a code block. Its return value, if not |
| 1136 | None, is a function that will be called at |
| 1137 | the start of each executed line of code. |
| 1138 | (Actually, the function must return itself |
| 1139 | in order to continue tracing.) The trace |
| 1140 | functions are called with three arguments: |
| 1141 | a pointer to the current frame, a string |
| 1142 | indicating why the function is called, and |
| 1143 | an argument which depends on the situation. |
| 1144 | The global trace function is also called |
| 1145 | whenever an exception is detected. */ |
| 1146 | if (call_trace_protected(tstate->c_tracefunc, |
| 1147 | tstate->c_traceobj, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 1148 | tstate, f, PyTrace_CALL, Py_None)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1149 | /* Trace function raised an error */ |
| 1150 | goto exit_eval_frame; |
| 1151 | } |
| 1152 | } |
| 1153 | if (tstate->c_profilefunc != NULL) { |
| 1154 | /* Similar for c_profilefunc, except it needn't |
| 1155 | return itself and isn't called for "line" events */ |
| 1156 | if (call_trace_protected(tstate->c_profilefunc, |
| 1157 | tstate->c_profileobj, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 1158 | tstate, f, PyTrace_CALL, Py_None)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1159 | /* Profile function raised an error */ |
| 1160 | goto exit_eval_frame; |
| 1161 | } |
| 1162 | } |
| 1163 | } |
Neil Schemenauer | 6c0f200 | 2001-09-04 19:03:35 +0000 | [diff] [blame] | 1164 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1165 | co = f->f_code; |
| 1166 | names = co->co_names; |
| 1167 | consts = co->co_consts; |
| 1168 | fastlocals = f->f_localsplus; |
| 1169 | freevars = f->f_localsplus + co->co_nlocals; |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 1170 | assert(PyBytes_Check(co->co_code)); |
| 1171 | assert(PyBytes_GET_SIZE(co->co_code) <= INT_MAX); |
| 1172 | assert(PyBytes_GET_SIZE(co->co_code) % 2 == 0); |
Serhiy Storchaka | 74f2fe6 | 2016-05-25 20:35:44 +0300 | [diff] [blame] | 1173 | assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(co->co_code), 2)); |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 1174 | first_instr = (unsigned short*) PyBytes_AS_STRING(co->co_code); |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1175 | /* |
| 1176 | f->f_lasti refers to the index of the last instruction, |
| 1177 | unless it's -1 in which case next_instr should be first_instr. |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 1178 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1179 | YIELD_FROM sets f_lasti to itself, in order to repeatedly yield |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 1180 | multiple values. |
Thomas Wouters | 902d6eb | 2007-01-09 23:18:33 +0000 | [diff] [blame] | 1181 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1182 | When the PREDICT() macros are enabled, some opcode pairs follow in |
| 1183 | direct succession without updating f->f_lasti. A successful |
| 1184 | prediction effectively links the two codes together as if they |
| 1185 | were a single new opcode; accordingly,f->f_lasti will point to |
| 1186 | the first code in the pair (for instance, GET_ITER followed by |
| 1187 | FOR_ITER is effectively a single opcode and f->f_lasti will point |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1188 | to the beginning of the combined pair.) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1189 | */ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1190 | next_instr = first_instr; |
| 1191 | if (f->f_lasti >= 0) { |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 1192 | assert(f->f_lasti % 2 == 0); |
| 1193 | next_instr += f->f_lasti/2 + 1; |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1194 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1195 | stack_pointer = f->f_stacktop; |
| 1196 | assert(stack_pointer != NULL); |
| 1197 | f->f_stacktop = NULL; /* remains NULL unless yield suspends frame */ |
Antoine Pitrou | 58720d6 | 2013-08-05 23:26:40 +0200 | [diff] [blame] | 1198 | f->f_executing = 1; |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 1199 | |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 1200 | if (co->co_flags & (CO_GENERATOR | CO_COROUTINE)) { |
Victor Stinner | 26f7b8a | 2015-01-31 10:29:47 +0100 | [diff] [blame] | 1201 | if (!throwflag && f->f_exc_type != NULL && f->f_exc_type != Py_None) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1202 | /* We were in an except handler when we left, |
| 1203 | restore the exception state which was put aside |
| 1204 | (see YIELD_VALUE). */ |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 1205 | swap_exc_state(tstate, f); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1206 | } |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 1207 | else |
| 1208 | save_exc_state(tstate, f); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1209 | } |
Benjamin Peterson | eec3d71 | 2008-06-11 15:59:43 +0000 | [diff] [blame] | 1210 | |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 1211 | #ifdef LLTRACE |
Victor Stinner | 3c1e481 | 2012-03-26 22:10:51 +0200 | [diff] [blame] | 1212 | lltrace = _PyDict_GetItemId(f->f_globals, &PyId___ltrace__) != NULL; |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 1213 | #endif |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1214 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1215 | why = WHY_NOT; |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1216 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1217 | if (throwflag) /* support for generator.throw() */ |
| 1218 | goto error; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1219 | |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 1220 | #ifdef Py_DEBUG |
| 1221 | /* PyEval_EvalFrameEx() must not be called with an exception set, |
| 1222 | because it may clear it (directly or indirectly) and so the |
Martin Panter | 9955a37 | 2015-10-07 10:26:23 +0000 | [diff] [blame] | 1223 | caller loses its exception */ |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 1224 | assert(!PyErr_Occurred()); |
| 1225 | #endif |
| 1226 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1227 | for (;;) { |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 1228 | #ifdef WITH_TSC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1229 | if (inst1 == 0) { |
| 1230 | /* Almost surely, the opcode executed a break |
| 1231 | or a continue, preventing inst1 from being set |
| 1232 | on the way out of the loop. |
| 1233 | */ |
| 1234 | READ_TIMESTAMP(inst1); |
| 1235 | loop1 = inst1; |
| 1236 | } |
| 1237 | dump_tsc(opcode, ticked, inst0, inst1, loop0, loop1, |
| 1238 | intr0, intr1); |
| 1239 | ticked = 0; |
| 1240 | inst1 = 0; |
| 1241 | intr0 = 0; |
| 1242 | intr1 = 0; |
| 1243 | READ_TIMESTAMP(loop0); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 1244 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1245 | assert(stack_pointer >= f->f_valuestack); /* else underflow */ |
| 1246 | assert(STACK_LEVEL() <= co->co_stacksize); /* else overflow */ |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 1247 | assert(!PyErr_Occurred()); |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 1248 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1249 | /* Do periodic things. Doing this every time through |
| 1250 | the loop would add too much overhead, so we do it |
| 1251 | only every Nth instruction. We also do it if |
| 1252 | ``pendingcalls_to_do'' is set, i.e. when an asynchronous |
| 1253 | event needs attention (e.g. a signal handler or |
| 1254 | async I/O handler); see Py_AddPendingCall() and |
| 1255 | Py_MakePendingCalls() above. */ |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1256 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1257 | if (_Py_atomic_load_relaxed(&eval_breaker)) { |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 1258 | if (OPCODE(*next_instr) == SETUP_FINALLY) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1259 | /* Make the last opcode before |
Ezio Melotti | 1392500 | 2011-03-16 11:05:33 +0200 | [diff] [blame] | 1260 | a try: finally: block uninterruptible. */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1261 | goto fast_next_opcode; |
| 1262 | } |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 1263 | #ifdef WITH_TSC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1264 | ticked = 1; |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 1265 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1266 | if (_Py_atomic_load_relaxed(&pendingcalls_to_do)) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1267 | if (Py_MakePendingCalls() < 0) |
| 1268 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1269 | } |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 1270 | #ifdef WITH_THREAD |
Benjamin Peterson | d2be5b4 | 2010-09-10 22:47:02 +0000 | [diff] [blame] | 1271 | if (_Py_atomic_load_relaxed(&gil_drop_request)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1272 | /* Give another thread a chance */ |
| 1273 | if (PyThreadState_Swap(NULL) != tstate) |
| 1274 | Py_FatalError("ceval: tstate mix-up"); |
| 1275 | drop_gil(tstate); |
| 1276 | |
| 1277 | /* Other threads may run now */ |
| 1278 | |
| 1279 | take_gil(tstate); |
Benjamin Peterson | 17548dd | 2014-06-16 22:59:07 -0700 | [diff] [blame] | 1280 | |
| 1281 | /* Check if we should make a quick exit. */ |
| 1282 | if (_Py_Finalizing && _Py_Finalizing != tstate) { |
| 1283 | drop_gil(tstate); |
| 1284 | PyThread_exit_thread(); |
| 1285 | } |
| 1286 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1287 | if (PyThreadState_Swap(tstate) != NULL) |
| 1288 | Py_FatalError("ceval: orphan tstate"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1289 | } |
Benjamin Peterson | d2be5b4 | 2010-09-10 22:47:02 +0000 | [diff] [blame] | 1290 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1291 | /* Check for asynchronous exceptions. */ |
| 1292 | if (tstate->async_exc != NULL) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1293 | PyObject *exc = tstate->async_exc; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1294 | tstate->async_exc = NULL; |
| 1295 | UNSIGNAL_ASYNC_EXC(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1296 | PyErr_SetNone(exc); |
| 1297 | Py_DECREF(exc); |
| 1298 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1299 | } |
| 1300 | } |
Guido van Rossum | 1984f1e | 1992-08-04 12:41:02 +0000 | [diff] [blame] | 1301 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1302 | fast_next_opcode: |
| 1303 | f->f_lasti = INSTR_OFFSET(); |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1304 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1305 | /* line-by-line tracing support */ |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 1306 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1307 | if (_Py_TracingPossible && |
Benjamin Peterson | 51f4616 | 2013-01-23 08:38:47 -0500 | [diff] [blame] | 1308 | tstate->c_tracefunc != NULL && !tstate->tracing) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1309 | int err; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1310 | /* see maybe_call_line_trace |
| 1311 | for expository comments */ |
| 1312 | f->f_stacktop = stack_pointer; |
Tim Peters | 8a5c3c7 | 2004-04-05 19:36:21 +0000 | [diff] [blame] | 1313 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1314 | err = maybe_call_line_trace(tstate->c_tracefunc, |
| 1315 | tstate->c_traceobj, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 1316 | tstate, f, |
| 1317 | &instr_lb, &instr_ub, &instr_prev); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1318 | /* Reload possibly changed frame fields */ |
| 1319 | JUMPTO(f->f_lasti); |
| 1320 | if (f->f_stacktop != NULL) { |
| 1321 | stack_pointer = f->f_stacktop; |
| 1322 | f->f_stacktop = NULL; |
| 1323 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1324 | if (err) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1325 | /* trace function raised an exception */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1326 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1327 | } |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 1328 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1329 | /* Extract opcode and argument */ |
Michael W. Hudson | 019a78e | 2002-11-08 12:53:11 +0000 | [diff] [blame] | 1330 | |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 1331 | NEXTOPARG(); |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 1332 | dispatch_opcode: |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 1333 | #ifdef DYNAMIC_EXECUTION_PROFILE |
| 1334 | #ifdef DXPAIRS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1335 | dxpairs[lastopcode][opcode]++; |
| 1336 | lastopcode = opcode; |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 1337 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1338 | dxp[opcode]++; |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 1339 | #endif |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1340 | |
Guido van Rossum | 96a42c8 | 1992-01-12 02:29:51 +0000 | [diff] [blame] | 1341 | #ifdef LLTRACE |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1342 | /* Instruction tracing */ |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1343 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1344 | if (lltrace) { |
| 1345 | if (HAS_ARG(opcode)) { |
| 1346 | printf("%d: %d, %d\n", |
| 1347 | f->f_lasti, opcode, oparg); |
| 1348 | } |
| 1349 | else { |
| 1350 | printf("%d: %d\n", |
| 1351 | f->f_lasti, opcode); |
| 1352 | } |
| 1353 | } |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 1354 | #endif |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 1355 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1356 | /* Main switch on opcode */ |
| 1357 | READ_TIMESTAMP(inst0); |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 1358 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1359 | switch (opcode) { |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1360 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1361 | /* BEWARE! |
| 1362 | It is essential that any operation that fails sets either |
| 1363 | x to NULL, err to nonzero, or why to anything but WHY_NOT, |
| 1364 | and that no operation that succeeds does this! */ |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1365 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1366 | TARGET(NOP) |
| 1367 | FAST_DISPATCH(); |
Raymond Hettinger | 9c18e81 | 2004-06-21 16:31:15 +0000 | [diff] [blame] | 1368 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1369 | TARGET(LOAD_FAST) { |
| 1370 | PyObject *value = GETLOCAL(oparg); |
| 1371 | if (value == NULL) { |
| 1372 | format_exc_check_arg(PyExc_UnboundLocalError, |
| 1373 | UNBOUNDLOCAL_ERROR_MSG, |
| 1374 | PyTuple_GetItem(co->co_varnames, oparg)); |
| 1375 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1376 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1377 | Py_INCREF(value); |
| 1378 | PUSH(value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1379 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1380 | } |
| 1381 | |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 1382 | PREDICTED(LOAD_CONST); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1383 | TARGET(LOAD_CONST) { |
| 1384 | PyObject *value = GETITEM(consts, oparg); |
| 1385 | Py_INCREF(value); |
| 1386 | PUSH(value); |
| 1387 | FAST_DISPATCH(); |
| 1388 | } |
Neil Schemenauer | 6354386 | 2002-02-17 19:10:14 +0000 | [diff] [blame] | 1389 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 1390 | PREDICTED(STORE_FAST); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1391 | TARGET(STORE_FAST) { |
| 1392 | PyObject *value = POP(); |
| 1393 | SETLOCAL(oparg, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1394 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1395 | } |
Neil Schemenauer | 6354386 | 2002-02-17 19:10:14 +0000 | [diff] [blame] | 1396 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1397 | TARGET(POP_TOP) { |
| 1398 | PyObject *value = POP(); |
| 1399 | Py_DECREF(value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1400 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1401 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1402 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1403 | TARGET(ROT_TWO) { |
| 1404 | PyObject *top = TOP(); |
| 1405 | PyObject *second = SECOND(); |
| 1406 | SET_TOP(second); |
| 1407 | SET_SECOND(top); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1408 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1409 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1410 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1411 | TARGET(ROT_THREE) { |
| 1412 | PyObject *top = TOP(); |
| 1413 | PyObject *second = SECOND(); |
| 1414 | PyObject *third = THIRD(); |
| 1415 | SET_TOP(second); |
| 1416 | SET_SECOND(third); |
| 1417 | SET_THIRD(top); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1418 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1419 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1420 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1421 | TARGET(DUP_TOP) { |
| 1422 | PyObject *top = TOP(); |
| 1423 | Py_INCREF(top); |
| 1424 | PUSH(top); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1425 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1426 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1427 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1428 | TARGET(DUP_TOP_TWO) { |
| 1429 | PyObject *top = TOP(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1430 | PyObject *second = SECOND(); |
Benjamin Peterson | f208df3 | 2012-10-12 11:37:56 -0400 | [diff] [blame] | 1431 | Py_INCREF(top); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1432 | Py_INCREF(second); |
Antoine Pitrou | 74a69fa | 2010-09-04 18:43:52 +0000 | [diff] [blame] | 1433 | STACKADJ(2); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1434 | SET_TOP(top); |
| 1435 | SET_SECOND(second); |
Antoine Pitrou | 74a69fa | 2010-09-04 18:43:52 +0000 | [diff] [blame] | 1436 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1437 | } |
Thomas Wouters | 434d082 | 2000-08-24 20:11:32 +0000 | [diff] [blame] | 1438 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1439 | TARGET(UNARY_POSITIVE) { |
| 1440 | PyObject *value = TOP(); |
| 1441 | PyObject *res = PyNumber_Positive(value); |
| 1442 | Py_DECREF(value); |
| 1443 | SET_TOP(res); |
| 1444 | if (res == NULL) |
| 1445 | goto error; |
| 1446 | DISPATCH(); |
| 1447 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1448 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1449 | TARGET(UNARY_NEGATIVE) { |
| 1450 | PyObject *value = TOP(); |
| 1451 | PyObject *res = PyNumber_Negative(value); |
| 1452 | Py_DECREF(value); |
| 1453 | SET_TOP(res); |
| 1454 | if (res == NULL) |
| 1455 | goto error; |
| 1456 | DISPATCH(); |
| 1457 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1458 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1459 | TARGET(UNARY_NOT) { |
| 1460 | PyObject *value = TOP(); |
| 1461 | int err = PyObject_IsTrue(value); |
| 1462 | Py_DECREF(value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1463 | if (err == 0) { |
| 1464 | Py_INCREF(Py_True); |
| 1465 | SET_TOP(Py_True); |
| 1466 | DISPATCH(); |
| 1467 | } |
| 1468 | else if (err > 0) { |
| 1469 | Py_INCREF(Py_False); |
| 1470 | SET_TOP(Py_False); |
| 1471 | err = 0; |
| 1472 | DISPATCH(); |
| 1473 | } |
| 1474 | STACKADJ(-1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1475 | goto error; |
| 1476 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1477 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1478 | TARGET(UNARY_INVERT) { |
| 1479 | PyObject *value = TOP(); |
| 1480 | PyObject *res = PyNumber_Invert(value); |
| 1481 | Py_DECREF(value); |
| 1482 | SET_TOP(res); |
| 1483 | if (res == NULL) |
| 1484 | goto error; |
| 1485 | DISPATCH(); |
| 1486 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1487 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1488 | TARGET(BINARY_POWER) { |
| 1489 | PyObject *exp = POP(); |
| 1490 | PyObject *base = TOP(); |
| 1491 | PyObject *res = PyNumber_Power(base, exp, Py_None); |
| 1492 | Py_DECREF(base); |
| 1493 | Py_DECREF(exp); |
| 1494 | SET_TOP(res); |
| 1495 | if (res == NULL) |
| 1496 | goto error; |
| 1497 | DISPATCH(); |
| 1498 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1499 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1500 | TARGET(BINARY_MULTIPLY) { |
| 1501 | PyObject *right = POP(); |
| 1502 | PyObject *left = TOP(); |
| 1503 | PyObject *res = PyNumber_Multiply(left, right); |
| 1504 | Py_DECREF(left); |
| 1505 | Py_DECREF(right); |
| 1506 | SET_TOP(res); |
| 1507 | if (res == NULL) |
| 1508 | goto error; |
| 1509 | DISPATCH(); |
| 1510 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1511 | |
Benjamin Peterson | d51374e | 2014-04-09 23:55:56 -0400 | [diff] [blame] | 1512 | TARGET(BINARY_MATRIX_MULTIPLY) { |
| 1513 | PyObject *right = POP(); |
| 1514 | PyObject *left = TOP(); |
| 1515 | PyObject *res = PyNumber_MatrixMultiply(left, right); |
| 1516 | Py_DECREF(left); |
| 1517 | Py_DECREF(right); |
| 1518 | SET_TOP(res); |
| 1519 | if (res == NULL) |
| 1520 | goto error; |
| 1521 | DISPATCH(); |
| 1522 | } |
| 1523 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1524 | TARGET(BINARY_TRUE_DIVIDE) { |
| 1525 | PyObject *divisor = POP(); |
| 1526 | PyObject *dividend = TOP(); |
| 1527 | PyObject *quotient = PyNumber_TrueDivide(dividend, divisor); |
| 1528 | Py_DECREF(dividend); |
| 1529 | Py_DECREF(divisor); |
| 1530 | SET_TOP(quotient); |
| 1531 | if (quotient == NULL) |
| 1532 | goto error; |
| 1533 | DISPATCH(); |
| 1534 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1535 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1536 | TARGET(BINARY_FLOOR_DIVIDE) { |
| 1537 | PyObject *divisor = POP(); |
| 1538 | PyObject *dividend = TOP(); |
| 1539 | PyObject *quotient = PyNumber_FloorDivide(dividend, divisor); |
| 1540 | Py_DECREF(dividend); |
| 1541 | Py_DECREF(divisor); |
| 1542 | SET_TOP(quotient); |
| 1543 | if (quotient == NULL) |
| 1544 | goto error; |
| 1545 | DISPATCH(); |
| 1546 | } |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 1547 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1548 | TARGET(BINARY_MODULO) { |
| 1549 | PyObject *divisor = POP(); |
| 1550 | PyObject *dividend = TOP(); |
| 1551 | PyObject *res = PyUnicode_CheckExact(dividend) ? |
| 1552 | PyUnicode_Format(dividend, divisor) : |
| 1553 | PyNumber_Remainder(dividend, divisor); |
| 1554 | Py_DECREF(divisor); |
| 1555 | Py_DECREF(dividend); |
| 1556 | SET_TOP(res); |
| 1557 | if (res == NULL) |
| 1558 | goto error; |
| 1559 | DISPATCH(); |
| 1560 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1561 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1562 | TARGET(BINARY_ADD) { |
| 1563 | PyObject *right = POP(); |
| 1564 | PyObject *left = TOP(); |
| 1565 | PyObject *sum; |
| 1566 | if (PyUnicode_CheckExact(left) && |
| 1567 | PyUnicode_CheckExact(right)) { |
| 1568 | sum = unicode_concatenate(left, right, f, next_instr); |
Martin Panter | 95f53c1 | 2016-07-18 08:23:26 +0000 | [diff] [blame] | 1569 | /* unicode_concatenate consumed the ref to left */ |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 1570 | } |
| 1571 | else { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1572 | sum = PyNumber_Add(left, right); |
| 1573 | Py_DECREF(left); |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 1574 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1575 | Py_DECREF(right); |
| 1576 | SET_TOP(sum); |
| 1577 | if (sum == NULL) |
| 1578 | goto error; |
| 1579 | DISPATCH(); |
| 1580 | } |
| 1581 | |
| 1582 | TARGET(BINARY_SUBTRACT) { |
| 1583 | PyObject *right = POP(); |
| 1584 | PyObject *left = TOP(); |
| 1585 | PyObject *diff = PyNumber_Subtract(left, right); |
| 1586 | Py_DECREF(right); |
| 1587 | Py_DECREF(left); |
| 1588 | SET_TOP(diff); |
| 1589 | if (diff == NULL) |
| 1590 | goto error; |
| 1591 | DISPATCH(); |
| 1592 | } |
| 1593 | |
| 1594 | TARGET(BINARY_SUBSCR) { |
| 1595 | PyObject *sub = POP(); |
| 1596 | PyObject *container = TOP(); |
| 1597 | PyObject *res = PyObject_GetItem(container, sub); |
| 1598 | Py_DECREF(container); |
| 1599 | Py_DECREF(sub); |
| 1600 | SET_TOP(res); |
| 1601 | if (res == NULL) |
| 1602 | goto error; |
| 1603 | DISPATCH(); |
| 1604 | } |
| 1605 | |
| 1606 | TARGET(BINARY_LSHIFT) { |
| 1607 | PyObject *right = POP(); |
| 1608 | PyObject *left = TOP(); |
| 1609 | PyObject *res = PyNumber_Lshift(left, right); |
| 1610 | Py_DECREF(left); |
| 1611 | Py_DECREF(right); |
| 1612 | SET_TOP(res); |
| 1613 | if (res == NULL) |
| 1614 | goto error; |
| 1615 | DISPATCH(); |
| 1616 | } |
| 1617 | |
| 1618 | TARGET(BINARY_RSHIFT) { |
| 1619 | PyObject *right = POP(); |
| 1620 | PyObject *left = TOP(); |
| 1621 | PyObject *res = PyNumber_Rshift(left, right); |
| 1622 | Py_DECREF(left); |
| 1623 | Py_DECREF(right); |
| 1624 | SET_TOP(res); |
| 1625 | if (res == NULL) |
| 1626 | goto error; |
| 1627 | DISPATCH(); |
| 1628 | } |
| 1629 | |
| 1630 | TARGET(BINARY_AND) { |
| 1631 | PyObject *right = POP(); |
| 1632 | PyObject *left = TOP(); |
| 1633 | PyObject *res = PyNumber_And(left, right); |
| 1634 | Py_DECREF(left); |
| 1635 | Py_DECREF(right); |
| 1636 | SET_TOP(res); |
| 1637 | if (res == NULL) |
| 1638 | goto error; |
| 1639 | DISPATCH(); |
| 1640 | } |
| 1641 | |
| 1642 | TARGET(BINARY_XOR) { |
| 1643 | PyObject *right = POP(); |
| 1644 | PyObject *left = TOP(); |
| 1645 | PyObject *res = PyNumber_Xor(left, right); |
| 1646 | Py_DECREF(left); |
| 1647 | Py_DECREF(right); |
| 1648 | SET_TOP(res); |
| 1649 | if (res == NULL) |
| 1650 | goto error; |
| 1651 | DISPATCH(); |
| 1652 | } |
| 1653 | |
| 1654 | TARGET(BINARY_OR) { |
| 1655 | PyObject *right = POP(); |
| 1656 | PyObject *left = TOP(); |
| 1657 | PyObject *res = PyNumber_Or(left, right); |
| 1658 | Py_DECREF(left); |
| 1659 | Py_DECREF(right); |
| 1660 | SET_TOP(res); |
| 1661 | if (res == NULL) |
| 1662 | goto error; |
| 1663 | DISPATCH(); |
| 1664 | } |
| 1665 | |
| 1666 | TARGET(LIST_APPEND) { |
| 1667 | PyObject *v = POP(); |
| 1668 | PyObject *list = PEEK(oparg); |
| 1669 | int err; |
| 1670 | err = PyList_Append(list, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1671 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1672 | if (err != 0) |
| 1673 | goto error; |
| 1674 | PREDICT(JUMP_ABSOLUTE); |
| 1675 | DISPATCH(); |
| 1676 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1677 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1678 | TARGET(SET_ADD) { |
| 1679 | PyObject *v = POP(); |
| 1680 | PyObject *set = stack_pointer[-oparg]; |
| 1681 | int err; |
| 1682 | err = PySet_Add(set, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1683 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1684 | if (err != 0) |
| 1685 | goto error; |
| 1686 | PREDICT(JUMP_ABSOLUTE); |
| 1687 | DISPATCH(); |
| 1688 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1689 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1690 | TARGET(INPLACE_POWER) { |
| 1691 | PyObject *exp = POP(); |
| 1692 | PyObject *base = TOP(); |
| 1693 | PyObject *res = PyNumber_InPlacePower(base, exp, Py_None); |
| 1694 | Py_DECREF(base); |
| 1695 | Py_DECREF(exp); |
| 1696 | SET_TOP(res); |
| 1697 | if (res == NULL) |
| 1698 | goto error; |
| 1699 | DISPATCH(); |
| 1700 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1701 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1702 | TARGET(INPLACE_MULTIPLY) { |
| 1703 | PyObject *right = POP(); |
| 1704 | PyObject *left = TOP(); |
| 1705 | PyObject *res = PyNumber_InPlaceMultiply(left, right); |
| 1706 | Py_DECREF(left); |
| 1707 | Py_DECREF(right); |
| 1708 | SET_TOP(res); |
| 1709 | if (res == NULL) |
| 1710 | goto error; |
| 1711 | DISPATCH(); |
| 1712 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1713 | |
Benjamin Peterson | d51374e | 2014-04-09 23:55:56 -0400 | [diff] [blame] | 1714 | TARGET(INPLACE_MATRIX_MULTIPLY) { |
| 1715 | PyObject *right = POP(); |
| 1716 | PyObject *left = TOP(); |
| 1717 | PyObject *res = PyNumber_InPlaceMatrixMultiply(left, right); |
| 1718 | Py_DECREF(left); |
| 1719 | Py_DECREF(right); |
| 1720 | SET_TOP(res); |
| 1721 | if (res == NULL) |
| 1722 | goto error; |
| 1723 | DISPATCH(); |
| 1724 | } |
| 1725 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1726 | TARGET(INPLACE_TRUE_DIVIDE) { |
| 1727 | PyObject *divisor = POP(); |
| 1728 | PyObject *dividend = TOP(); |
| 1729 | PyObject *quotient = PyNumber_InPlaceTrueDivide(dividend, divisor); |
| 1730 | Py_DECREF(dividend); |
| 1731 | Py_DECREF(divisor); |
| 1732 | SET_TOP(quotient); |
| 1733 | if (quotient == NULL) |
| 1734 | goto error; |
| 1735 | DISPATCH(); |
| 1736 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1737 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1738 | TARGET(INPLACE_FLOOR_DIVIDE) { |
| 1739 | PyObject *divisor = POP(); |
| 1740 | PyObject *dividend = TOP(); |
| 1741 | PyObject *quotient = PyNumber_InPlaceFloorDivide(dividend, divisor); |
| 1742 | Py_DECREF(dividend); |
| 1743 | Py_DECREF(divisor); |
| 1744 | SET_TOP(quotient); |
| 1745 | if (quotient == NULL) |
| 1746 | goto error; |
| 1747 | DISPATCH(); |
| 1748 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1749 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1750 | TARGET(INPLACE_MODULO) { |
| 1751 | PyObject *right = POP(); |
| 1752 | PyObject *left = TOP(); |
| 1753 | PyObject *mod = PyNumber_InPlaceRemainder(left, right); |
| 1754 | Py_DECREF(left); |
| 1755 | Py_DECREF(right); |
| 1756 | SET_TOP(mod); |
| 1757 | if (mod == NULL) |
| 1758 | goto error; |
| 1759 | DISPATCH(); |
| 1760 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1761 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1762 | TARGET(INPLACE_ADD) { |
| 1763 | PyObject *right = POP(); |
| 1764 | PyObject *left = TOP(); |
| 1765 | PyObject *sum; |
| 1766 | if (PyUnicode_CheckExact(left) && PyUnicode_CheckExact(right)) { |
| 1767 | sum = unicode_concatenate(left, right, f, next_instr); |
Martin Panter | 95f53c1 | 2016-07-18 08:23:26 +0000 | [diff] [blame] | 1768 | /* unicode_concatenate consumed the ref to left */ |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 1769 | } |
| 1770 | else { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1771 | sum = PyNumber_InPlaceAdd(left, right); |
| 1772 | Py_DECREF(left); |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 1773 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1774 | Py_DECREF(right); |
| 1775 | SET_TOP(sum); |
| 1776 | if (sum == NULL) |
| 1777 | goto error; |
| 1778 | DISPATCH(); |
| 1779 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1780 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1781 | TARGET(INPLACE_SUBTRACT) { |
| 1782 | PyObject *right = POP(); |
| 1783 | PyObject *left = TOP(); |
| 1784 | PyObject *diff = PyNumber_InPlaceSubtract(left, right); |
| 1785 | Py_DECREF(left); |
| 1786 | Py_DECREF(right); |
| 1787 | SET_TOP(diff); |
| 1788 | if (diff == NULL) |
| 1789 | goto error; |
| 1790 | DISPATCH(); |
| 1791 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1792 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1793 | TARGET(INPLACE_LSHIFT) { |
| 1794 | PyObject *right = POP(); |
| 1795 | PyObject *left = TOP(); |
| 1796 | PyObject *res = PyNumber_InPlaceLshift(left, right); |
| 1797 | Py_DECREF(left); |
| 1798 | Py_DECREF(right); |
| 1799 | SET_TOP(res); |
| 1800 | if (res == NULL) |
| 1801 | goto error; |
| 1802 | DISPATCH(); |
| 1803 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1804 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1805 | TARGET(INPLACE_RSHIFT) { |
| 1806 | PyObject *right = POP(); |
| 1807 | PyObject *left = TOP(); |
| 1808 | PyObject *res = PyNumber_InPlaceRshift(left, right); |
| 1809 | Py_DECREF(left); |
| 1810 | Py_DECREF(right); |
| 1811 | SET_TOP(res); |
| 1812 | if (res == NULL) |
| 1813 | goto error; |
| 1814 | DISPATCH(); |
| 1815 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1816 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1817 | TARGET(INPLACE_AND) { |
| 1818 | PyObject *right = POP(); |
| 1819 | PyObject *left = TOP(); |
| 1820 | PyObject *res = PyNumber_InPlaceAnd(left, right); |
| 1821 | Py_DECREF(left); |
| 1822 | Py_DECREF(right); |
| 1823 | SET_TOP(res); |
| 1824 | if (res == NULL) |
| 1825 | goto error; |
| 1826 | DISPATCH(); |
| 1827 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1828 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1829 | TARGET(INPLACE_XOR) { |
| 1830 | PyObject *right = POP(); |
| 1831 | PyObject *left = TOP(); |
| 1832 | PyObject *res = PyNumber_InPlaceXor(left, right); |
| 1833 | Py_DECREF(left); |
| 1834 | Py_DECREF(right); |
| 1835 | SET_TOP(res); |
| 1836 | if (res == NULL) |
| 1837 | goto error; |
| 1838 | DISPATCH(); |
| 1839 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1840 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1841 | TARGET(INPLACE_OR) { |
| 1842 | PyObject *right = POP(); |
| 1843 | PyObject *left = TOP(); |
| 1844 | PyObject *res = PyNumber_InPlaceOr(left, right); |
| 1845 | Py_DECREF(left); |
| 1846 | Py_DECREF(right); |
| 1847 | SET_TOP(res); |
| 1848 | if (res == NULL) |
| 1849 | goto error; |
| 1850 | DISPATCH(); |
| 1851 | } |
Thomas Wouters | 434d082 | 2000-08-24 20:11:32 +0000 | [diff] [blame] | 1852 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1853 | TARGET(STORE_SUBSCR) { |
| 1854 | PyObject *sub = TOP(); |
| 1855 | PyObject *container = SECOND(); |
| 1856 | PyObject *v = THIRD(); |
| 1857 | int err; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1858 | STACKADJ(-3); |
Martin Panter | 95f53c1 | 2016-07-18 08:23:26 +0000 | [diff] [blame] | 1859 | /* container[sub] = v */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1860 | err = PyObject_SetItem(container, sub, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1861 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1862 | Py_DECREF(container); |
| 1863 | Py_DECREF(sub); |
| 1864 | if (err != 0) |
| 1865 | goto error; |
| 1866 | DISPATCH(); |
| 1867 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1868 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1869 | TARGET(DELETE_SUBSCR) { |
| 1870 | PyObject *sub = TOP(); |
| 1871 | PyObject *container = SECOND(); |
| 1872 | int err; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1873 | STACKADJ(-2); |
Martin Panter | 95f53c1 | 2016-07-18 08:23:26 +0000 | [diff] [blame] | 1874 | /* del container[sub] */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1875 | err = PyObject_DelItem(container, sub); |
| 1876 | Py_DECREF(container); |
| 1877 | Py_DECREF(sub); |
| 1878 | if (err != 0) |
| 1879 | goto error; |
| 1880 | DISPATCH(); |
| 1881 | } |
Barry Warsaw | 23c9ec8 | 2000-08-21 15:44:01 +0000 | [diff] [blame] | 1882 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1883 | TARGET(PRINT_EXPR) { |
Victor Stinner | cab75e3 | 2013-11-06 22:38:37 +0100 | [diff] [blame] | 1884 | _Py_IDENTIFIER(displayhook); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1885 | PyObject *value = POP(); |
Victor Stinner | cab75e3 | 2013-11-06 22:38:37 +0100 | [diff] [blame] | 1886 | PyObject *hook = _PySys_GetObjectId(&PyId_displayhook); |
Benjamin Peterson | fe1bcb6 | 2012-10-12 11:40:01 -0400 | [diff] [blame] | 1887 | PyObject *res; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1888 | if (hook == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1889 | PyErr_SetString(PyExc_RuntimeError, |
| 1890 | "lost sys.displayhook"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1891 | Py_DECREF(value); |
| 1892 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1893 | } |
Benjamin Peterson | fe1bcb6 | 2012-10-12 11:40:01 -0400 | [diff] [blame] | 1894 | res = PyObject_CallFunctionObjArgs(hook, value, NULL); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1895 | Py_DECREF(value); |
| 1896 | if (res == NULL) |
| 1897 | goto error; |
| 1898 | Py_DECREF(res); |
| 1899 | DISPATCH(); |
| 1900 | } |
Moshe Zadka | f68f2fe | 2001-01-11 05:41:27 +0000 | [diff] [blame] | 1901 | |
Thomas Wouters | 434d082 | 2000-08-24 20:11:32 +0000 | [diff] [blame] | 1902 | #ifdef CASE_TOO_BIG |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1903 | default: switch (opcode) { |
Thomas Wouters | 434d082 | 2000-08-24 20:11:32 +0000 | [diff] [blame] | 1904 | #endif |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1905 | TARGET(RAISE_VARARGS) { |
| 1906 | PyObject *cause = NULL, *exc = NULL; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1907 | switch (oparg) { |
| 1908 | case 2: |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1909 | cause = POP(); /* cause */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1910 | case 1: |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1911 | exc = POP(); /* exc */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1912 | case 0: /* Fallthrough */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1913 | if (do_raise(exc, cause)) { |
| 1914 | why = WHY_EXCEPTION; |
| 1915 | goto fast_block_end; |
| 1916 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1917 | break; |
| 1918 | default: |
| 1919 | PyErr_SetString(PyExc_SystemError, |
| 1920 | "bad RAISE_VARARGS oparg"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1921 | break; |
| 1922 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1923 | goto error; |
| 1924 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 1925 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1926 | TARGET(RETURN_VALUE) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 1927 | retval = POP(); |
| 1928 | why = WHY_RETURN; |
| 1929 | goto fast_block_end; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 1930 | } |
Guido van Rossum | db3165e | 1993-10-18 17:06:59 +0000 | [diff] [blame] | 1931 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1932 | TARGET(GET_AITER) { |
Yury Selivanov | 6ef0590 | 2015-05-28 11:21:31 -0400 | [diff] [blame] | 1933 | unaryfunc getter = NULL; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1934 | PyObject *iter = NULL; |
| 1935 | PyObject *awaitable = NULL; |
| 1936 | PyObject *obj = TOP(); |
| 1937 | PyTypeObject *type = Py_TYPE(obj); |
| 1938 | |
Yury Selivanov | a6f6edb | 2016-06-09 15:08:31 -0400 | [diff] [blame] | 1939 | if (type->tp_as_async != NULL) { |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1940 | getter = type->tp_as_async->am_aiter; |
Yury Selivanov | a6f6edb | 2016-06-09 15:08:31 -0400 | [diff] [blame] | 1941 | } |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1942 | |
| 1943 | if (getter != NULL) { |
| 1944 | iter = (*getter)(obj); |
| 1945 | Py_DECREF(obj); |
| 1946 | if (iter == NULL) { |
| 1947 | SET_TOP(NULL); |
| 1948 | goto error; |
| 1949 | } |
| 1950 | } |
| 1951 | else { |
| 1952 | SET_TOP(NULL); |
| 1953 | PyErr_Format( |
| 1954 | PyExc_TypeError, |
| 1955 | "'async for' requires an object with " |
| 1956 | "__aiter__ method, got %.100s", |
| 1957 | type->tp_name); |
| 1958 | Py_DECREF(obj); |
| 1959 | goto error; |
| 1960 | } |
| 1961 | |
Yury Selivanov | a6f6edb | 2016-06-09 15:08:31 -0400 | [diff] [blame] | 1962 | if (Py_TYPE(iter)->tp_as_async != NULL && |
| 1963 | Py_TYPE(iter)->tp_as_async->am_anext != NULL) { |
| 1964 | |
| 1965 | /* Starting with CPython 3.5.2 __aiter__ should return |
| 1966 | asynchronous iterators directly (not awaitables that |
| 1967 | resolve to asynchronous iterators.) |
| 1968 | |
| 1969 | Therefore, we check if the object that was returned |
| 1970 | from __aiter__ has an __anext__ method. If it does, |
| 1971 | we wrap it in an awaitable that resolves to `iter`. |
| 1972 | |
| 1973 | See http://bugs.python.org/issue27243 for more |
| 1974 | details. |
| 1975 | */ |
| 1976 | |
| 1977 | PyObject *wrapper = _PyAIterWrapper_New(iter); |
| 1978 | Py_DECREF(iter); |
| 1979 | SET_TOP(wrapper); |
| 1980 | DISPATCH(); |
| 1981 | } |
| 1982 | |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 1983 | awaitable = _PyCoro_GetAwaitableIter(iter); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1984 | if (awaitable == NULL) { |
| 1985 | SET_TOP(NULL); |
| 1986 | PyErr_Format( |
| 1987 | PyExc_TypeError, |
| 1988 | "'async for' received an invalid object " |
| 1989 | "from __aiter__: %.100s", |
| 1990 | Py_TYPE(iter)->tp_name); |
| 1991 | |
| 1992 | Py_DECREF(iter); |
| 1993 | goto error; |
Yury Selivanov | a6f6edb | 2016-06-09 15:08:31 -0400 | [diff] [blame] | 1994 | } else { |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 1995 | Py_DECREF(iter); |
| 1996 | |
Yury Selivanov | a6f6edb | 2016-06-09 15:08:31 -0400 | [diff] [blame] | 1997 | if (PyErr_WarnFormat( |
| 1998 | PyExc_PendingDeprecationWarning, 1, |
| 1999 | "'%.100s' implements legacy __aiter__ protocol; " |
| 2000 | "__aiter__ should return an asynchronous " |
| 2001 | "iterator, not awaitable", |
| 2002 | type->tp_name)) |
| 2003 | { |
| 2004 | /* Warning was converted to an error. */ |
| 2005 | Py_DECREF(awaitable); |
| 2006 | SET_TOP(NULL); |
| 2007 | goto error; |
| 2008 | } |
| 2009 | } |
| 2010 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2011 | SET_TOP(awaitable); |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 2012 | PREDICT(LOAD_CONST); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2013 | DISPATCH(); |
| 2014 | } |
| 2015 | |
| 2016 | TARGET(GET_ANEXT) { |
Yury Selivanov | 6ef0590 | 2015-05-28 11:21:31 -0400 | [diff] [blame] | 2017 | unaryfunc getter = NULL; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2018 | PyObject *next_iter = NULL; |
| 2019 | PyObject *awaitable = NULL; |
| 2020 | PyObject *aiter = TOP(); |
| 2021 | PyTypeObject *type = Py_TYPE(aiter); |
| 2022 | |
| 2023 | if (type->tp_as_async != NULL) |
| 2024 | getter = type->tp_as_async->am_anext; |
| 2025 | |
| 2026 | if (getter != NULL) { |
| 2027 | next_iter = (*getter)(aiter); |
| 2028 | if (next_iter == NULL) { |
| 2029 | goto error; |
| 2030 | } |
| 2031 | } |
| 2032 | else { |
| 2033 | PyErr_Format( |
| 2034 | PyExc_TypeError, |
| 2035 | "'async for' requires an iterator with " |
| 2036 | "__anext__ method, got %.100s", |
| 2037 | type->tp_name); |
| 2038 | goto error; |
| 2039 | } |
| 2040 | |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 2041 | awaitable = _PyCoro_GetAwaitableIter(next_iter); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2042 | if (awaitable == NULL) { |
| 2043 | PyErr_Format( |
| 2044 | PyExc_TypeError, |
| 2045 | "'async for' received an invalid object " |
| 2046 | "from __anext__: %.100s", |
| 2047 | Py_TYPE(next_iter)->tp_name); |
| 2048 | |
| 2049 | Py_DECREF(next_iter); |
| 2050 | goto error; |
| 2051 | } else |
| 2052 | Py_DECREF(next_iter); |
| 2053 | |
| 2054 | PUSH(awaitable); |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 2055 | PREDICT(LOAD_CONST); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2056 | DISPATCH(); |
| 2057 | } |
| 2058 | |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 2059 | PREDICTED(GET_AWAITABLE); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2060 | TARGET(GET_AWAITABLE) { |
| 2061 | PyObject *iterable = TOP(); |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 2062 | PyObject *iter = _PyCoro_GetAwaitableIter(iterable); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2063 | |
| 2064 | Py_DECREF(iterable); |
| 2065 | |
Yury Selivanov | c724bae | 2016-03-02 11:30:46 -0500 | [diff] [blame] | 2066 | if (iter != NULL && PyCoro_CheckExact(iter)) { |
| 2067 | PyObject *yf = _PyGen_yf((PyGenObject*)iter); |
| 2068 | if (yf != NULL) { |
| 2069 | /* `iter` is a coroutine object that is being |
| 2070 | awaited, `yf` is a pointer to the current awaitable |
| 2071 | being awaited on. */ |
| 2072 | Py_DECREF(yf); |
| 2073 | Py_CLEAR(iter); |
| 2074 | PyErr_SetString( |
| 2075 | PyExc_RuntimeError, |
| 2076 | "coroutine is being awaited already"); |
| 2077 | /* The code below jumps to `error` if `iter` is NULL. */ |
| 2078 | } |
| 2079 | } |
| 2080 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2081 | SET_TOP(iter); /* Even if it's NULL */ |
| 2082 | |
| 2083 | if (iter == NULL) { |
| 2084 | goto error; |
| 2085 | } |
| 2086 | |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 2087 | PREDICT(LOAD_CONST); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 2088 | DISPATCH(); |
| 2089 | } |
| 2090 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2091 | TARGET(YIELD_FROM) { |
| 2092 | PyObject *v = POP(); |
| 2093 | PyObject *reciever = TOP(); |
| 2094 | int err; |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 2095 | if (PyGen_CheckExact(reciever) || PyCoro_CheckExact(reciever)) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2096 | retval = _PyGen_Send((PyGenObject *)reciever, v); |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 2097 | } else { |
Benjamin Peterson | 302e790 | 2012-03-20 23:17:04 -0400 | [diff] [blame] | 2098 | _Py_IDENTIFIER(send); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2099 | if (v == Py_None) |
| 2100 | retval = Py_TYPE(reciever)->tp_iternext(reciever); |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 2101 | else |
Benjamin Peterson | f6e50b4 | 2014-04-13 23:52:01 -0400 | [diff] [blame] | 2102 | retval = _PyObject_CallMethodIdObjArgs(reciever, &PyId_send, v, NULL); |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 2103 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2104 | Py_DECREF(v); |
| 2105 | if (retval == NULL) { |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 2106 | PyObject *val; |
Guido van Rossum | 8820c23 | 2013-11-21 11:30:06 -0800 | [diff] [blame] | 2107 | if (tstate->c_tracefunc != NULL |
| 2108 | && PyErr_ExceptionMatches(PyExc_StopIteration)) |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 2109 | call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, f); |
Nick Coghlan | c40bc09 | 2012-06-17 15:15:49 +1000 | [diff] [blame] | 2110 | err = _PyGen_FetchStopIterationValue(&val); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2111 | if (err < 0) |
| 2112 | goto error; |
| 2113 | Py_DECREF(reciever); |
| 2114 | SET_TOP(val); |
| 2115 | DISPATCH(); |
Nick Coghlan | 1f7ce62 | 2012-01-13 21:43:40 +1000 | [diff] [blame] | 2116 | } |
Martin Panter | 95f53c1 | 2016-07-18 08:23:26 +0000 | [diff] [blame] | 2117 | /* receiver remains on stack, retval is value to be yielded */ |
Nick Coghlan | 1f7ce62 | 2012-01-13 21:43:40 +1000 | [diff] [blame] | 2118 | f->f_stacktop = stack_pointer; |
| 2119 | why = WHY_YIELD; |
Benjamin Peterson | 2afe6ae | 2012-03-15 15:37:39 -0500 | [diff] [blame] | 2120 | /* and repeat... */ |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2121 | f->f_lasti -= 2; |
Nick Coghlan | 1f7ce62 | 2012-01-13 21:43:40 +1000 | [diff] [blame] | 2122 | goto fast_yield; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2123 | } |
Nick Coghlan | 1f7ce62 | 2012-01-13 21:43:40 +1000 | [diff] [blame] | 2124 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2125 | TARGET(YIELD_VALUE) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2126 | retval = POP(); |
| 2127 | f->f_stacktop = stack_pointer; |
| 2128 | why = WHY_YIELD; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2129 | goto fast_yield; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2130 | } |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 2131 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2132 | TARGET(POP_EXCEPT) { |
| 2133 | PyTryBlock *b = PyFrame_BlockPop(f); |
| 2134 | if (b->b_type != EXCEPT_HANDLER) { |
| 2135 | PyErr_SetString(PyExc_SystemError, |
| 2136 | "popped block is not an except handler"); |
| 2137 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2138 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2139 | UNWIND_EXCEPT_HANDLER(b); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2140 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2141 | } |
Benjamin Peterson | eec3d71 | 2008-06-11 15:59:43 +0000 | [diff] [blame] | 2142 | |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 2143 | PREDICTED(POP_BLOCK); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2144 | TARGET(POP_BLOCK) { |
| 2145 | PyTryBlock *b = PyFrame_BlockPop(f); |
| 2146 | UNWIND_BLOCK(b); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2147 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2148 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2149 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2150 | PREDICTED(END_FINALLY); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2151 | TARGET(END_FINALLY) { |
| 2152 | PyObject *status = POP(); |
| 2153 | if (PyLong_Check(status)) { |
| 2154 | why = (enum why_code) PyLong_AS_LONG(status); |
| 2155 | assert(why != WHY_YIELD && why != WHY_EXCEPTION); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2156 | if (why == WHY_RETURN || |
| 2157 | why == WHY_CONTINUE) |
| 2158 | retval = POP(); |
| 2159 | if (why == WHY_SILENCED) { |
| 2160 | /* An exception was silenced by 'with', we must |
| 2161 | manually unwind the EXCEPT_HANDLER block which was |
| 2162 | created when the exception was caught, otherwise |
| 2163 | the stack will be in an inconsistent state. */ |
| 2164 | PyTryBlock *b = PyFrame_BlockPop(f); |
| 2165 | assert(b->b_type == EXCEPT_HANDLER); |
| 2166 | UNWIND_EXCEPT_HANDLER(b); |
| 2167 | why = WHY_NOT; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2168 | Py_DECREF(status); |
| 2169 | DISPATCH(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2170 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2171 | Py_DECREF(status); |
| 2172 | goto fast_block_end; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2173 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2174 | else if (PyExceptionClass_Check(status)) { |
| 2175 | PyObject *exc = POP(); |
| 2176 | PyObject *tb = POP(); |
| 2177 | PyErr_Restore(status, exc, tb); |
| 2178 | why = WHY_EXCEPTION; |
| 2179 | goto fast_block_end; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2180 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2181 | else if (status != Py_None) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2182 | PyErr_SetString(PyExc_SystemError, |
| 2183 | "'finally' pops bad exception"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2184 | Py_DECREF(status); |
| 2185 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2186 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2187 | Py_DECREF(status); |
| 2188 | DISPATCH(); |
| 2189 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2190 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2191 | TARGET(LOAD_BUILD_CLASS) { |
Victor Stinner | 3c1e481 | 2012-03-26 22:10:51 +0200 | [diff] [blame] | 2192 | _Py_IDENTIFIER(__build_class__); |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2193 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2194 | PyObject *bc; |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2195 | if (PyDict_CheckExact(f->f_builtins)) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2196 | bc = _PyDict_GetItemId(f->f_builtins, &PyId___build_class__); |
| 2197 | if (bc == NULL) { |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2198 | PyErr_SetString(PyExc_NameError, |
| 2199 | "__build_class__ not found"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2200 | goto error; |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2201 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2202 | Py_INCREF(bc); |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2203 | } |
| 2204 | else { |
| 2205 | PyObject *build_class_str = _PyUnicode_FromId(&PyId___build_class__); |
| 2206 | if (build_class_str == NULL) |
| 2207 | break; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2208 | bc = PyObject_GetItem(f->f_builtins, build_class_str); |
| 2209 | if (bc == NULL) { |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2210 | if (PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2211 | PyErr_SetString(PyExc_NameError, |
| 2212 | "__build_class__ not found"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2213 | goto error; |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2214 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2215 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2216 | PUSH(bc); |
Benjamin Peterson | 00f86f2 | 2012-10-10 14:10:33 -0400 | [diff] [blame] | 2217 | DISPATCH(); |
Victor Stinner | 3c1e481 | 2012-03-26 22:10:51 +0200 | [diff] [blame] | 2218 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2219 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2220 | TARGET(STORE_NAME) { |
| 2221 | PyObject *name = GETITEM(names, oparg); |
| 2222 | PyObject *v = POP(); |
| 2223 | PyObject *ns = f->f_locals; |
| 2224 | int err; |
| 2225 | if (ns == NULL) { |
| 2226 | PyErr_Format(PyExc_SystemError, |
| 2227 | "no locals found when storing %R", name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2228 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2229 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2230 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2231 | if (PyDict_CheckExact(ns)) |
| 2232 | err = PyDict_SetItem(ns, name, v); |
| 2233 | else |
| 2234 | err = PyObject_SetItem(ns, name, v); |
| 2235 | Py_DECREF(v); |
| 2236 | if (err != 0) |
| 2237 | goto error; |
| 2238 | DISPATCH(); |
| 2239 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2240 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2241 | TARGET(DELETE_NAME) { |
| 2242 | PyObject *name = GETITEM(names, oparg); |
| 2243 | PyObject *ns = f->f_locals; |
| 2244 | int err; |
| 2245 | if (ns == NULL) { |
| 2246 | PyErr_Format(PyExc_SystemError, |
| 2247 | "no locals when deleting %R", name); |
| 2248 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2249 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2250 | err = PyObject_DelItem(ns, name); |
| 2251 | if (err != 0) { |
| 2252 | format_exc_check_arg(PyExc_NameError, |
| 2253 | NAME_ERROR_MSG, |
| 2254 | name); |
| 2255 | goto error; |
| 2256 | } |
| 2257 | DISPATCH(); |
| 2258 | } |
Guido van Rossum | 04691fc | 1992-08-12 15:35:34 +0000 | [diff] [blame] | 2259 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2260 | PREDICTED(UNPACK_SEQUENCE); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2261 | TARGET(UNPACK_SEQUENCE) { |
| 2262 | PyObject *seq = POP(), *item, **items; |
| 2263 | if (PyTuple_CheckExact(seq) && |
| 2264 | PyTuple_GET_SIZE(seq) == oparg) { |
| 2265 | items = ((PyTupleObject *)seq)->ob_item; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2266 | while (oparg--) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2267 | item = items[oparg]; |
| 2268 | Py_INCREF(item); |
| 2269 | PUSH(item); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2270 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2271 | } else if (PyList_CheckExact(seq) && |
| 2272 | PyList_GET_SIZE(seq) == oparg) { |
| 2273 | items = ((PyListObject *)seq)->ob_item; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2274 | while (oparg--) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2275 | item = items[oparg]; |
| 2276 | Py_INCREF(item); |
| 2277 | PUSH(item); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2278 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2279 | } else if (unpack_iterable(seq, oparg, -1, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2280 | stack_pointer + oparg)) { |
| 2281 | STACKADJ(oparg); |
| 2282 | } else { |
| 2283 | /* unpack_iterable() raised an exception */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2284 | Py_DECREF(seq); |
| 2285 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2286 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2287 | Py_DECREF(seq); |
Benjamin Peterson | 00f86f2 | 2012-10-10 14:10:33 -0400 | [diff] [blame] | 2288 | DISPATCH(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2289 | } |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 2290 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2291 | TARGET(UNPACK_EX) { |
| 2292 | int totalargs = 1 + (oparg & 0xFF) + (oparg >> 8); |
| 2293 | PyObject *seq = POP(); |
| 2294 | |
| 2295 | if (unpack_iterable(seq, oparg & 0xFF, oparg >> 8, |
| 2296 | stack_pointer + totalargs)) { |
| 2297 | stack_pointer += totalargs; |
| 2298 | } else { |
| 2299 | Py_DECREF(seq); |
| 2300 | goto error; |
| 2301 | } |
| 2302 | Py_DECREF(seq); |
| 2303 | DISPATCH(); |
| 2304 | } |
| 2305 | |
| 2306 | TARGET(STORE_ATTR) { |
| 2307 | PyObject *name = GETITEM(names, oparg); |
| 2308 | PyObject *owner = TOP(); |
| 2309 | PyObject *v = SECOND(); |
| 2310 | int err; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2311 | STACKADJ(-2); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2312 | err = PyObject_SetAttr(owner, name, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2313 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2314 | Py_DECREF(owner); |
| 2315 | if (err != 0) |
| 2316 | goto error; |
| 2317 | DISPATCH(); |
| 2318 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2319 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2320 | TARGET(DELETE_ATTR) { |
| 2321 | PyObject *name = GETITEM(names, oparg); |
| 2322 | PyObject *owner = POP(); |
| 2323 | int err; |
| 2324 | err = PyObject_SetAttr(owner, name, (PyObject *)NULL); |
| 2325 | Py_DECREF(owner); |
| 2326 | if (err != 0) |
| 2327 | goto error; |
| 2328 | DISPATCH(); |
| 2329 | } |
| 2330 | |
| 2331 | TARGET(STORE_GLOBAL) { |
| 2332 | PyObject *name = GETITEM(names, oparg); |
| 2333 | PyObject *v = POP(); |
| 2334 | int err; |
| 2335 | err = PyDict_SetItem(f->f_globals, name, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2336 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2337 | if (err != 0) |
| 2338 | goto error; |
| 2339 | DISPATCH(); |
| 2340 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2341 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2342 | TARGET(DELETE_GLOBAL) { |
| 2343 | PyObject *name = GETITEM(names, oparg); |
| 2344 | int err; |
| 2345 | err = PyDict_DelItem(f->f_globals, name); |
| 2346 | if (err != 0) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2347 | format_exc_check_arg( |
Ezio Melotti | 04a2955 | 2013-03-03 15:12:44 +0200 | [diff] [blame] | 2348 | PyExc_NameError, NAME_ERROR_MSG, name); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2349 | goto error; |
Benjamin Peterson | 00f86f2 | 2012-10-10 14:10:33 -0400 | [diff] [blame] | 2350 | } |
| 2351 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2352 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2353 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2354 | TARGET(LOAD_NAME) { |
| 2355 | PyObject *name = GETITEM(names, oparg); |
| 2356 | PyObject *locals = f->f_locals; |
| 2357 | PyObject *v; |
| 2358 | if (locals == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2359 | PyErr_Format(PyExc_SystemError, |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2360 | "no locals when loading %R", name); |
| 2361 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2362 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2363 | if (PyDict_CheckExact(locals)) { |
| 2364 | v = PyDict_GetItem(locals, name); |
| 2365 | Py_XINCREF(v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2366 | } |
| 2367 | else { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2368 | v = PyObject_GetItem(locals, name); |
Victor Stinner | e20310f | 2015-11-05 13:56:58 +0100 | [diff] [blame] | 2369 | if (v == NULL) { |
Benjamin Peterson | 9272279 | 2012-12-15 12:51:05 -0500 | [diff] [blame] | 2370 | if (!PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2371 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2372 | PyErr_Clear(); |
| 2373 | } |
| 2374 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2375 | if (v == NULL) { |
| 2376 | v = PyDict_GetItem(f->f_globals, name); |
| 2377 | Py_XINCREF(v); |
| 2378 | if (v == NULL) { |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2379 | if (PyDict_CheckExact(f->f_builtins)) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2380 | v = PyDict_GetItem(f->f_builtins, name); |
| 2381 | if (v == NULL) { |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2382 | format_exc_check_arg( |
| 2383 | PyExc_NameError, |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2384 | NAME_ERROR_MSG, name); |
| 2385 | goto error; |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2386 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2387 | Py_INCREF(v); |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2388 | } |
| 2389 | else { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2390 | v = PyObject_GetItem(f->f_builtins, name); |
| 2391 | if (v == NULL) { |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2392 | if (PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2393 | format_exc_check_arg( |
| 2394 | PyExc_NameError, |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2395 | NAME_ERROR_MSG, name); |
| 2396 | goto error; |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2397 | } |
Benjamin Peterson | 20f9c3c | 2010-07-20 22:39:34 +0000 | [diff] [blame] | 2398 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2399 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2400 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2401 | PUSH(v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2402 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2403 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2404 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2405 | TARGET(LOAD_GLOBAL) { |
| 2406 | PyObject *name = GETITEM(names, oparg); |
| 2407 | PyObject *v; |
Victor Stinner | b0b2242 | 2012-04-19 00:57:45 +0200 | [diff] [blame] | 2408 | if (PyDict_CheckExact(f->f_globals) |
Victor Stinner | b4efc96 | 2015-11-20 09:24:02 +0100 | [diff] [blame] | 2409 | && PyDict_CheckExact(f->f_builtins)) |
| 2410 | { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2411 | v = _PyDict_LoadGlobal((PyDictObject *)f->f_globals, |
Benjamin Peterson | 7d95e40 | 2012-04-23 11:24:50 -0400 | [diff] [blame] | 2412 | (PyDictObject *)f->f_builtins, |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2413 | name); |
| 2414 | if (v == NULL) { |
Victor Stinner | b4efc96 | 2015-11-20 09:24:02 +0100 | [diff] [blame] | 2415 | if (!_PyErr_OCCURRED()) { |
| 2416 | /* _PyDict_LoadGlobal() returns NULL without raising |
| 2417 | * an exception if the key doesn't exist */ |
Benjamin Peterson | 7d95e40 | 2012-04-23 11:24:50 -0400 | [diff] [blame] | 2418 | format_exc_check_arg(PyExc_NameError, |
Ezio Melotti | 04a2955 | 2013-03-03 15:12:44 +0200 | [diff] [blame] | 2419 | NAME_ERROR_MSG, name); |
Victor Stinner | b4efc96 | 2015-11-20 09:24:02 +0100 | [diff] [blame] | 2420 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2421 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2422 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2423 | Py_INCREF(v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2424 | } |
Benjamin Peterson | 7d95e40 | 2012-04-23 11:24:50 -0400 | [diff] [blame] | 2425 | else { |
| 2426 | /* Slow-path if globals or builtins is not a dict */ |
Victor Stinner | b4efc96 | 2015-11-20 09:24:02 +0100 | [diff] [blame] | 2427 | |
| 2428 | /* namespace 1: globals */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2429 | v = PyObject_GetItem(f->f_globals, name); |
| 2430 | if (v == NULL) { |
Victor Stinner | 60a1d3c | 2015-11-05 13:55:20 +0100 | [diff] [blame] | 2431 | if (!PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2432 | goto error; |
| 2433 | PyErr_Clear(); |
| 2434 | |
Victor Stinner | b4efc96 | 2015-11-20 09:24:02 +0100 | [diff] [blame] | 2435 | /* namespace 2: builtins */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2436 | v = PyObject_GetItem(f->f_builtins, name); |
| 2437 | if (v == NULL) { |
Benjamin Peterson | 7d95e40 | 2012-04-23 11:24:50 -0400 | [diff] [blame] | 2438 | if (PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2439 | format_exc_check_arg( |
| 2440 | PyExc_NameError, |
Ezio Melotti | 04a2955 | 2013-03-03 15:12:44 +0200 | [diff] [blame] | 2441 | NAME_ERROR_MSG, name); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2442 | goto error; |
Benjamin Peterson | 7d95e40 | 2012-04-23 11:24:50 -0400 | [diff] [blame] | 2443 | } |
| 2444 | } |
| 2445 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2446 | PUSH(v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2447 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2448 | } |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 2449 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2450 | TARGET(DELETE_FAST) { |
| 2451 | PyObject *v = GETLOCAL(oparg); |
| 2452 | if (v != NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2453 | SETLOCAL(oparg, NULL); |
| 2454 | DISPATCH(); |
| 2455 | } |
| 2456 | format_exc_check_arg( |
| 2457 | PyExc_UnboundLocalError, |
| 2458 | UNBOUNDLOCAL_ERROR_MSG, |
| 2459 | PyTuple_GetItem(co->co_varnames, oparg) |
| 2460 | ); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2461 | goto error; |
| 2462 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2463 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2464 | TARGET(DELETE_DEREF) { |
| 2465 | PyObject *cell = freevars[oparg]; |
| 2466 | if (PyCell_GET(cell) != NULL) { |
| 2467 | PyCell_Set(cell, NULL); |
Benjamin Peterson | 00ebe2c | 2010-09-10 22:02:31 +0000 | [diff] [blame] | 2468 | DISPATCH(); |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 2469 | } |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 2470 | format_exc_unbound(co, oparg); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2471 | goto error; |
| 2472 | } |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 2473 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2474 | TARGET(LOAD_CLOSURE) { |
| 2475 | PyObject *cell = freevars[oparg]; |
| 2476 | Py_INCREF(cell); |
| 2477 | PUSH(cell); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2478 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2479 | } |
Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 2480 | |
Benjamin Peterson | 3b0431d | 2013-04-30 09:41:40 -0400 | [diff] [blame] | 2481 | TARGET(LOAD_CLASSDEREF) { |
| 2482 | PyObject *name, *value, *locals = f->f_locals; |
Victor Stinner | d3dfd0e | 2013-05-16 23:48:01 +0200 | [diff] [blame] | 2483 | Py_ssize_t idx; |
Benjamin Peterson | 3b0431d | 2013-04-30 09:41:40 -0400 | [diff] [blame] | 2484 | assert(locals); |
| 2485 | assert(oparg >= PyTuple_GET_SIZE(co->co_cellvars)); |
| 2486 | idx = oparg - PyTuple_GET_SIZE(co->co_cellvars); |
| 2487 | assert(idx >= 0 && idx < PyTuple_GET_SIZE(co->co_freevars)); |
| 2488 | name = PyTuple_GET_ITEM(co->co_freevars, idx); |
| 2489 | if (PyDict_CheckExact(locals)) { |
| 2490 | value = PyDict_GetItem(locals, name); |
| 2491 | Py_XINCREF(value); |
| 2492 | } |
| 2493 | else { |
| 2494 | value = PyObject_GetItem(locals, name); |
Victor Stinner | e20310f | 2015-11-05 13:56:58 +0100 | [diff] [blame] | 2495 | if (value == NULL) { |
Benjamin Peterson | 3b0431d | 2013-04-30 09:41:40 -0400 | [diff] [blame] | 2496 | if (!PyErr_ExceptionMatches(PyExc_KeyError)) |
| 2497 | goto error; |
| 2498 | PyErr_Clear(); |
| 2499 | } |
| 2500 | } |
| 2501 | if (!value) { |
| 2502 | PyObject *cell = freevars[oparg]; |
| 2503 | value = PyCell_GET(cell); |
| 2504 | if (value == NULL) { |
| 2505 | format_exc_unbound(co, oparg); |
| 2506 | goto error; |
| 2507 | } |
| 2508 | Py_INCREF(value); |
| 2509 | } |
| 2510 | PUSH(value); |
| 2511 | DISPATCH(); |
| 2512 | } |
| 2513 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2514 | TARGET(LOAD_DEREF) { |
| 2515 | PyObject *cell = freevars[oparg]; |
| 2516 | PyObject *value = PyCell_GET(cell); |
| 2517 | if (value == NULL) { |
| 2518 | format_exc_unbound(co, oparg); |
| 2519 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2520 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2521 | Py_INCREF(value); |
| 2522 | PUSH(value); |
| 2523 | DISPATCH(); |
| 2524 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2525 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2526 | TARGET(STORE_DEREF) { |
| 2527 | PyObject *v = POP(); |
| 2528 | PyObject *cell = freevars[oparg]; |
| 2529 | PyCell_Set(cell, v); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2530 | Py_DECREF(v); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2531 | DISPATCH(); |
| 2532 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2533 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2534 | TARGET(BUILD_TUPLE) { |
| 2535 | PyObject *tup = PyTuple_New(oparg); |
| 2536 | if (tup == NULL) |
| 2537 | goto error; |
| 2538 | while (--oparg >= 0) { |
| 2539 | PyObject *item = POP(); |
| 2540 | PyTuple_SET_ITEM(tup, oparg, item); |
| 2541 | } |
| 2542 | PUSH(tup); |
| 2543 | DISPATCH(); |
| 2544 | } |
| 2545 | |
| 2546 | TARGET(BUILD_LIST) { |
| 2547 | PyObject *list = PyList_New(oparg); |
| 2548 | if (list == NULL) |
| 2549 | goto error; |
| 2550 | while (--oparg >= 0) { |
| 2551 | PyObject *item = POP(); |
| 2552 | PyList_SET_ITEM(list, oparg, item); |
| 2553 | } |
| 2554 | PUSH(list); |
| 2555 | DISPATCH(); |
| 2556 | } |
| 2557 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2558 | TARGET(BUILD_TUPLE_UNPACK) |
| 2559 | TARGET(BUILD_LIST_UNPACK) { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2560 | int convert_to_tuple = opcode == BUILD_TUPLE_UNPACK; |
| 2561 | int i; |
| 2562 | PyObject *sum = PyList_New(0); |
| 2563 | PyObject *return_value; |
| 2564 | if (sum == NULL) |
| 2565 | goto error; |
| 2566 | |
| 2567 | for (i = oparg; i > 0; i--) { |
| 2568 | PyObject *none_val; |
| 2569 | |
| 2570 | none_val = _PyList_Extend((PyListObject *)sum, PEEK(i)); |
| 2571 | if (none_val == NULL) { |
| 2572 | Py_DECREF(sum); |
| 2573 | goto error; |
| 2574 | } |
| 2575 | Py_DECREF(none_val); |
| 2576 | } |
| 2577 | |
| 2578 | if (convert_to_tuple) { |
| 2579 | return_value = PyList_AsTuple(sum); |
| 2580 | Py_DECREF(sum); |
| 2581 | if (return_value == NULL) |
| 2582 | goto error; |
| 2583 | } |
| 2584 | else { |
| 2585 | return_value = sum; |
| 2586 | } |
| 2587 | |
| 2588 | while (oparg--) |
| 2589 | Py_DECREF(POP()); |
| 2590 | PUSH(return_value); |
| 2591 | DISPATCH(); |
| 2592 | } |
| 2593 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2594 | TARGET(BUILD_SET) { |
| 2595 | PyObject *set = PySet_New(NULL); |
| 2596 | int err = 0; |
| 2597 | if (set == NULL) |
| 2598 | goto error; |
| 2599 | while (--oparg >= 0) { |
| 2600 | PyObject *item = POP(); |
| 2601 | if (err == 0) |
| 2602 | err = PySet_Add(set, item); |
| 2603 | Py_DECREF(item); |
| 2604 | } |
| 2605 | if (err != 0) { |
| 2606 | Py_DECREF(set); |
| 2607 | goto error; |
| 2608 | } |
| 2609 | PUSH(set); |
| 2610 | DISPATCH(); |
| 2611 | } |
| 2612 | |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2613 | TARGET(BUILD_SET_UNPACK) { |
| 2614 | int i; |
| 2615 | PyObject *sum = PySet_New(NULL); |
| 2616 | if (sum == NULL) |
| 2617 | goto error; |
| 2618 | |
| 2619 | for (i = oparg; i > 0; i--) { |
| 2620 | if (_PySet_Update(sum, PEEK(i)) < 0) { |
| 2621 | Py_DECREF(sum); |
| 2622 | goto error; |
| 2623 | } |
| 2624 | } |
| 2625 | |
| 2626 | while (oparg--) |
| 2627 | Py_DECREF(POP()); |
| 2628 | PUSH(sum); |
| 2629 | DISPATCH(); |
| 2630 | } |
| 2631 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2632 | TARGET(BUILD_MAP) { |
Benjamin Peterson | d5d77aa | 2015-07-05 10:37:25 -0500 | [diff] [blame] | 2633 | int i; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2634 | PyObject *map = _PyDict_NewPresized((Py_ssize_t)oparg); |
| 2635 | if (map == NULL) |
| 2636 | goto error; |
Benjamin Peterson | d5d77aa | 2015-07-05 10:37:25 -0500 | [diff] [blame] | 2637 | for (i = oparg; i > 0; i--) { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2638 | int err; |
Benjamin Peterson | d5d77aa | 2015-07-05 10:37:25 -0500 | [diff] [blame] | 2639 | PyObject *key = PEEK(2*i); |
| 2640 | PyObject *value = PEEK(2*i - 1); |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2641 | err = PyDict_SetItem(map, key, value); |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2642 | if (err != 0) { |
| 2643 | Py_DECREF(map); |
| 2644 | goto error; |
| 2645 | } |
| 2646 | } |
Benjamin Peterson | d5d77aa | 2015-07-05 10:37:25 -0500 | [diff] [blame] | 2647 | |
| 2648 | while (oparg--) { |
| 2649 | Py_DECREF(POP()); |
| 2650 | Py_DECREF(POP()); |
| 2651 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2652 | PUSH(map); |
| 2653 | DISPATCH(); |
| 2654 | } |
| 2655 | |
Serhiy Storchaka | 6a7506a | 2016-06-12 00:39:41 +0300 | [diff] [blame] | 2656 | TARGET(BUILD_CONST_KEY_MAP) { |
| 2657 | int i; |
| 2658 | PyObject *map; |
| 2659 | PyObject *keys = TOP(); |
| 2660 | if (!PyTuple_CheckExact(keys) || |
| 2661 | PyTuple_GET_SIZE(keys) != (Py_ssize_t)oparg) { |
| 2662 | PyErr_SetString(PyExc_SystemError, |
| 2663 | "bad BUILD_CONST_KEY_MAP keys argument"); |
| 2664 | goto error; |
| 2665 | } |
| 2666 | map = _PyDict_NewPresized((Py_ssize_t)oparg); |
| 2667 | if (map == NULL) { |
| 2668 | goto error; |
| 2669 | } |
| 2670 | for (i = oparg; i > 0; i--) { |
| 2671 | int err; |
| 2672 | PyObject *key = PyTuple_GET_ITEM(keys, oparg - i); |
| 2673 | PyObject *value = PEEK(i + 1); |
| 2674 | err = PyDict_SetItem(map, key, value); |
| 2675 | if (err != 0) { |
| 2676 | Py_DECREF(map); |
| 2677 | goto error; |
| 2678 | } |
| 2679 | } |
| 2680 | |
| 2681 | Py_DECREF(POP()); |
| 2682 | while (oparg--) { |
| 2683 | Py_DECREF(POP()); |
| 2684 | } |
| 2685 | PUSH(map); |
| 2686 | DISPATCH(); |
| 2687 | } |
| 2688 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2689 | TARGET(BUILD_MAP_UNPACK_WITH_CALL) |
| 2690 | TARGET(BUILD_MAP_UNPACK) { |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 2691 | int with_call = opcode == BUILD_MAP_UNPACK_WITH_CALL; |
| 2692 | int num_maps; |
| 2693 | int function_location; |
| 2694 | int i; |
| 2695 | PyObject *sum = PyDict_New(); |
| 2696 | if (sum == NULL) |
| 2697 | goto error; |
| 2698 | if (with_call) { |
| 2699 | num_maps = oparg & 0xff; |
| 2700 | function_location = (oparg>>8) & 0xff; |
| 2701 | } |
| 2702 | else { |
| 2703 | num_maps = oparg; |
| 2704 | } |
| 2705 | |
| 2706 | for (i = num_maps; i > 0; i--) { |
| 2707 | PyObject *arg = PEEK(i); |
| 2708 | if (with_call) { |
| 2709 | PyObject *intersection = _PyDictView_Intersect(sum, arg); |
| 2710 | |
| 2711 | if (intersection == NULL) { |
| 2712 | if (PyErr_ExceptionMatches(PyExc_AttributeError)) { |
| 2713 | PyObject *func = ( |
| 2714 | PEEK(function_location + num_maps)); |
| 2715 | PyErr_Format(PyExc_TypeError, |
| 2716 | "%.200s%.200s argument after ** " |
| 2717 | "must be a mapping, not %.200s", |
| 2718 | PyEval_GetFuncName(func), |
| 2719 | PyEval_GetFuncDesc(func), |
| 2720 | arg->ob_type->tp_name); |
| 2721 | } |
| 2722 | Py_DECREF(sum); |
| 2723 | goto error; |
| 2724 | } |
| 2725 | |
| 2726 | if (PySet_GET_SIZE(intersection)) { |
| 2727 | Py_ssize_t idx = 0; |
| 2728 | PyObject *key; |
| 2729 | PyObject *func = PEEK(function_location + num_maps); |
| 2730 | Py_hash_t hash; |
| 2731 | _PySet_NextEntry(intersection, &idx, &key, &hash); |
| 2732 | if (!PyUnicode_Check(key)) { |
| 2733 | PyErr_Format(PyExc_TypeError, |
| 2734 | "%.200s%.200s keywords must be strings", |
| 2735 | PyEval_GetFuncName(func), |
| 2736 | PyEval_GetFuncDesc(func)); |
| 2737 | } else { |
| 2738 | PyErr_Format(PyExc_TypeError, |
| 2739 | "%.200s%.200s got multiple " |
| 2740 | "values for keyword argument '%U'", |
| 2741 | PyEval_GetFuncName(func), |
| 2742 | PyEval_GetFuncDesc(func), |
| 2743 | key); |
| 2744 | } |
| 2745 | Py_DECREF(intersection); |
| 2746 | Py_DECREF(sum); |
| 2747 | goto error; |
| 2748 | } |
| 2749 | Py_DECREF(intersection); |
| 2750 | } |
| 2751 | |
| 2752 | if (PyDict_Update(sum, arg) < 0) { |
| 2753 | if (PyErr_ExceptionMatches(PyExc_AttributeError)) { |
| 2754 | PyErr_Format(PyExc_TypeError, |
| 2755 | "'%.200s' object is not a mapping", |
| 2756 | arg->ob_type->tp_name); |
| 2757 | } |
| 2758 | Py_DECREF(sum); |
| 2759 | goto error; |
| 2760 | } |
| 2761 | } |
| 2762 | |
| 2763 | while (num_maps--) |
| 2764 | Py_DECREF(POP()); |
| 2765 | PUSH(sum); |
| 2766 | DISPATCH(); |
| 2767 | } |
| 2768 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2769 | TARGET(MAP_ADD) { |
| 2770 | PyObject *key = TOP(); |
| 2771 | PyObject *value = SECOND(); |
| 2772 | PyObject *map; |
| 2773 | int err; |
| 2774 | STACKADJ(-2); |
| 2775 | map = stack_pointer[-oparg]; /* dict */ |
| 2776 | assert(PyDict_CheckExact(map)); |
Martin Panter | 95f53c1 | 2016-07-18 08:23:26 +0000 | [diff] [blame] | 2777 | err = PyDict_SetItem(map, key, value); /* map[key] = value */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2778 | Py_DECREF(value); |
| 2779 | Py_DECREF(key); |
| 2780 | if (err != 0) |
| 2781 | goto error; |
| 2782 | PREDICT(JUMP_ABSOLUTE); |
| 2783 | DISPATCH(); |
| 2784 | } |
| 2785 | |
| 2786 | TARGET(LOAD_ATTR) { |
| 2787 | PyObject *name = GETITEM(names, oparg); |
| 2788 | PyObject *owner = TOP(); |
| 2789 | PyObject *res = PyObject_GetAttr(owner, name); |
| 2790 | Py_DECREF(owner); |
| 2791 | SET_TOP(res); |
| 2792 | if (res == NULL) |
| 2793 | goto error; |
| 2794 | DISPATCH(); |
| 2795 | } |
| 2796 | |
| 2797 | TARGET(COMPARE_OP) { |
| 2798 | PyObject *right = POP(); |
| 2799 | PyObject *left = TOP(); |
| 2800 | PyObject *res = cmp_outcome(oparg, left, right); |
| 2801 | Py_DECREF(left); |
| 2802 | Py_DECREF(right); |
| 2803 | SET_TOP(res); |
| 2804 | if (res == NULL) |
| 2805 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2806 | PREDICT(POP_JUMP_IF_FALSE); |
| 2807 | PREDICT(POP_JUMP_IF_TRUE); |
| 2808 | DISPATCH(); |
Victor Stinner | 3c1e481 | 2012-03-26 22:10:51 +0200 | [diff] [blame] | 2809 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2810 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2811 | TARGET(IMPORT_NAME) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2812 | PyObject *name = GETITEM(names, oparg); |
Serhiy Storchaka | 133138a | 2016-08-02 22:51:21 +0300 | [diff] [blame] | 2813 | PyObject *fromlist = POP(); |
| 2814 | PyObject *level = TOP(); |
| 2815 | PyObject *res; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2816 | READ_TIMESTAMP(intr0); |
Serhiy Storchaka | 133138a | 2016-08-02 22:51:21 +0300 | [diff] [blame] | 2817 | res = import_name(f, name, fromlist, level); |
| 2818 | Py_DECREF(level); |
| 2819 | Py_DECREF(fromlist); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2820 | READ_TIMESTAMP(intr1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2821 | SET_TOP(res); |
| 2822 | if (res == NULL) |
| 2823 | goto error; |
| 2824 | DISPATCH(); |
| 2825 | } |
| 2826 | |
| 2827 | TARGET(IMPORT_STAR) { |
| 2828 | PyObject *from = POP(), *locals; |
| 2829 | int err; |
Victor Stinner | 41bb43a | 2013-10-29 01:19:37 +0100 | [diff] [blame] | 2830 | if (PyFrame_FastToLocalsWithError(f) < 0) |
| 2831 | goto error; |
| 2832 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2833 | locals = f->f_locals; |
| 2834 | if (locals == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2835 | PyErr_SetString(PyExc_SystemError, |
| 2836 | "no locals found during 'import *'"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2837 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2838 | } |
| 2839 | READ_TIMESTAMP(intr0); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2840 | err = import_all_from(locals, from); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2841 | READ_TIMESTAMP(intr1); |
| 2842 | PyFrame_LocalsToFast(f, 0); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2843 | Py_DECREF(from); |
| 2844 | if (err != 0) |
| 2845 | goto error; |
| 2846 | DISPATCH(); |
| 2847 | } |
Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 2848 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2849 | TARGET(IMPORT_FROM) { |
| 2850 | PyObject *name = GETITEM(names, oparg); |
| 2851 | PyObject *from = TOP(); |
| 2852 | PyObject *res; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2853 | READ_TIMESTAMP(intr0); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2854 | res = import_from(from, name); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2855 | READ_TIMESTAMP(intr1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2856 | PUSH(res); |
| 2857 | if (res == NULL) |
| 2858 | goto error; |
| 2859 | DISPATCH(); |
| 2860 | } |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 2861 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2862 | TARGET(JUMP_FORWARD) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2863 | JUMPBY(oparg); |
| 2864 | FAST_DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2865 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2866 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2867 | PREDICTED(POP_JUMP_IF_FALSE); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2868 | TARGET(POP_JUMP_IF_FALSE) { |
| 2869 | PyObject *cond = POP(); |
| 2870 | int err; |
| 2871 | if (cond == Py_True) { |
| 2872 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2873 | FAST_DISPATCH(); |
| 2874 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2875 | if (cond == Py_False) { |
| 2876 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2877 | JUMPTO(oparg); |
| 2878 | FAST_DISPATCH(); |
| 2879 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2880 | err = PyObject_IsTrue(cond); |
| 2881 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2882 | if (err > 0) |
| 2883 | err = 0; |
| 2884 | else if (err == 0) |
| 2885 | JUMPTO(oparg); |
| 2886 | else |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2887 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2888 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2889 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2890 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2891 | PREDICTED(POP_JUMP_IF_TRUE); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2892 | TARGET(POP_JUMP_IF_TRUE) { |
| 2893 | PyObject *cond = POP(); |
| 2894 | int err; |
| 2895 | if (cond == Py_False) { |
| 2896 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2897 | FAST_DISPATCH(); |
| 2898 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2899 | if (cond == Py_True) { |
| 2900 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2901 | JUMPTO(oparg); |
| 2902 | FAST_DISPATCH(); |
| 2903 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2904 | err = PyObject_IsTrue(cond); |
| 2905 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2906 | if (err > 0) { |
| 2907 | err = 0; |
| 2908 | JUMPTO(oparg); |
| 2909 | } |
| 2910 | else if (err == 0) |
| 2911 | ; |
| 2912 | else |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2913 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2914 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2915 | } |
Jeffrey Yasskin | 9de7ec7 | 2009-02-25 02:25:04 +0000 | [diff] [blame] | 2916 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2917 | TARGET(JUMP_IF_FALSE_OR_POP) { |
| 2918 | PyObject *cond = TOP(); |
| 2919 | int err; |
| 2920 | if (cond == Py_True) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2921 | STACKADJ(-1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2922 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2923 | FAST_DISPATCH(); |
| 2924 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2925 | if (cond == Py_False) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2926 | JUMPTO(oparg); |
| 2927 | FAST_DISPATCH(); |
| 2928 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2929 | err = PyObject_IsTrue(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2930 | if (err > 0) { |
| 2931 | STACKADJ(-1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2932 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2933 | err = 0; |
| 2934 | } |
| 2935 | else if (err == 0) |
| 2936 | JUMPTO(oparg); |
| 2937 | else |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2938 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2939 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2940 | } |
Jeffrey Yasskin | 9de7ec7 | 2009-02-25 02:25:04 +0000 | [diff] [blame] | 2941 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2942 | TARGET(JUMP_IF_TRUE_OR_POP) { |
| 2943 | PyObject *cond = TOP(); |
| 2944 | int err; |
| 2945 | if (cond == Py_False) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2946 | STACKADJ(-1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2947 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2948 | FAST_DISPATCH(); |
| 2949 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2950 | if (cond == Py_True) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2951 | JUMPTO(oparg); |
| 2952 | FAST_DISPATCH(); |
| 2953 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2954 | err = PyObject_IsTrue(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2955 | if (err > 0) { |
| 2956 | err = 0; |
| 2957 | JUMPTO(oparg); |
| 2958 | } |
| 2959 | else if (err == 0) { |
| 2960 | STACKADJ(-1); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2961 | Py_DECREF(cond); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2962 | } |
| 2963 | else |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2964 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2965 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2966 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2967 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 2968 | PREDICTED(JUMP_ABSOLUTE); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2969 | TARGET(JUMP_ABSOLUTE) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2970 | JUMPTO(oparg); |
Guido van Rossum | 58da931 | 2007-11-10 23:39:45 +0000 | [diff] [blame] | 2971 | #if FAST_LOOPS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2972 | /* Enabling this path speeds-up all while and for-loops by bypassing |
| 2973 | the per-loop checks for signals. By default, this should be turned-off |
| 2974 | because it prevents detection of a control-break in tight loops like |
| 2975 | "while 1: pass". Compile with this option turned-on when you need |
| 2976 | the speed-up and do not need break checking inside tight loops (ones |
| 2977 | that contain only instructions ending with FAST_DISPATCH). |
| 2978 | */ |
| 2979 | FAST_DISPATCH(); |
Guido van Rossum | 58da931 | 2007-11-10 23:39:45 +0000 | [diff] [blame] | 2980 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2981 | DISPATCH(); |
Guido van Rossum | 58da931 | 2007-11-10 23:39:45 +0000 | [diff] [blame] | 2982 | #endif |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2983 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 2984 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2985 | TARGET(GET_ITER) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 2986 | /* before: [obj]; after [getiter(obj)] */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 2987 | PyObject *iterable = TOP(); |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 2988 | PyObject *iter = PyObject_GetIter(iterable); |
| 2989 | Py_DECREF(iterable); |
| 2990 | SET_TOP(iter); |
| 2991 | if (iter == NULL) |
| 2992 | goto error; |
| 2993 | PREDICT(FOR_ITER); |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 2994 | PREDICT(CALL_FUNCTION); |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 2995 | DISPATCH(); |
| 2996 | } |
| 2997 | |
| 2998 | TARGET(GET_YIELD_FROM_ITER) { |
| 2999 | /* before: [obj]; after [getiter(obj)] */ |
| 3000 | PyObject *iterable = TOP(); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3001 | PyObject *iter; |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 3002 | if (PyCoro_CheckExact(iterable)) { |
| 3003 | /* `iterable` is a coroutine */ |
| 3004 | if (!(co->co_flags & (CO_COROUTINE | CO_ITERABLE_COROUTINE))) { |
| 3005 | /* and it is used in a 'yield from' expression of a |
| 3006 | regular generator. */ |
| 3007 | Py_DECREF(iterable); |
| 3008 | SET_TOP(NULL); |
| 3009 | PyErr_SetString(PyExc_TypeError, |
| 3010 | "cannot 'yield from' a coroutine object " |
| 3011 | "in a non-coroutine generator"); |
| 3012 | goto error; |
| 3013 | } |
| 3014 | } |
| 3015 | else if (!PyGen_CheckExact(iterable)) { |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3016 | /* `iterable` is not a generator. */ |
| 3017 | iter = PyObject_GetIter(iterable); |
| 3018 | Py_DECREF(iterable); |
| 3019 | SET_TOP(iter); |
| 3020 | if (iter == NULL) |
| 3021 | goto error; |
| 3022 | } |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 3023 | PREDICT(LOAD_CONST); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3024 | DISPATCH(); |
| 3025 | } |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 3026 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 3027 | PREDICTED(FOR_ITER); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3028 | TARGET(FOR_ITER) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3029 | /* before: [iter]; after: [iter, iter()] *or* [] */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3030 | PyObject *iter = TOP(); |
| 3031 | PyObject *next = (*iter->ob_type->tp_iternext)(iter); |
| 3032 | if (next != NULL) { |
| 3033 | PUSH(next); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3034 | PREDICT(STORE_FAST); |
| 3035 | PREDICT(UNPACK_SEQUENCE); |
| 3036 | DISPATCH(); |
| 3037 | } |
| 3038 | if (PyErr_Occurred()) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3039 | if (!PyErr_ExceptionMatches(PyExc_StopIteration)) |
| 3040 | goto error; |
Guido van Rossum | 8820c23 | 2013-11-21 11:30:06 -0800 | [diff] [blame] | 3041 | else if (tstate->c_tracefunc != NULL) |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 3042 | call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, f); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3043 | PyErr_Clear(); |
| 3044 | } |
| 3045 | /* iterator ended normally */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3046 | STACKADJ(-1); |
| 3047 | Py_DECREF(iter); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3048 | JUMPBY(oparg); |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 3049 | PREDICT(POP_BLOCK); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3050 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3051 | } |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 3052 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3053 | TARGET(BREAK_LOOP) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3054 | why = WHY_BREAK; |
| 3055 | goto fast_block_end; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3056 | } |
Raymond Hettinger | 2d783e9 | 2004-03-12 09:12:22 +0000 | [diff] [blame] | 3057 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3058 | TARGET(CONTINUE_LOOP) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3059 | retval = PyLong_FromLong(oparg); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3060 | if (retval == NULL) |
| 3061 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3062 | why = WHY_CONTINUE; |
| 3063 | goto fast_block_end; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3064 | } |
Raymond Hettinger | 2d783e9 | 2004-03-12 09:12:22 +0000 | [diff] [blame] | 3065 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 3066 | TARGET(SETUP_LOOP) |
| 3067 | TARGET(SETUP_EXCEPT) |
| 3068 | TARGET(SETUP_FINALLY) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3069 | /* NOTE: If you add any new block-setup opcodes that |
| 3070 | are not try/except/finally handlers, you may need |
| 3071 | to update the PyGen_NeedsFinalizing() function. |
| 3072 | */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 3073 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3074 | PyFrame_BlockSetup(f, opcode, INSTR_OFFSET() + oparg, |
| 3075 | STACK_LEVEL()); |
| 3076 | DISPATCH(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3077 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3078 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3079 | TARGET(BEFORE_ASYNC_WITH) { |
| 3080 | _Py_IDENTIFIER(__aexit__); |
| 3081 | _Py_IDENTIFIER(__aenter__); |
| 3082 | |
| 3083 | PyObject *mgr = TOP(); |
| 3084 | PyObject *exit = special_lookup(mgr, &PyId___aexit__), |
| 3085 | *enter; |
| 3086 | PyObject *res; |
| 3087 | if (exit == NULL) |
| 3088 | goto error; |
| 3089 | SET_TOP(exit); |
| 3090 | enter = special_lookup(mgr, &PyId___aenter__); |
| 3091 | Py_DECREF(mgr); |
| 3092 | if (enter == NULL) |
| 3093 | goto error; |
| 3094 | res = PyObject_CallFunctionObjArgs(enter, NULL); |
| 3095 | Py_DECREF(enter); |
| 3096 | if (res == NULL) |
| 3097 | goto error; |
| 3098 | PUSH(res); |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 3099 | PREDICT(GET_AWAITABLE); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3100 | DISPATCH(); |
| 3101 | } |
| 3102 | |
| 3103 | TARGET(SETUP_ASYNC_WITH) { |
| 3104 | PyObject *res = POP(); |
| 3105 | /* Setup the finally block before pushing the result |
| 3106 | of __aenter__ on the stack. */ |
| 3107 | PyFrame_BlockSetup(f, SETUP_FINALLY, INSTR_OFFSET() + oparg, |
| 3108 | STACK_LEVEL()); |
| 3109 | PUSH(res); |
| 3110 | DISPATCH(); |
| 3111 | } |
| 3112 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3113 | TARGET(SETUP_WITH) { |
Benjamin Peterson | ce79852 | 2012-01-22 11:24:29 -0500 | [diff] [blame] | 3114 | _Py_IDENTIFIER(__exit__); |
| 3115 | _Py_IDENTIFIER(__enter__); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3116 | PyObject *mgr = TOP(); |
| 3117 | PyObject *exit = special_lookup(mgr, &PyId___exit__), *enter; |
| 3118 | PyObject *res; |
| 3119 | if (exit == NULL) |
| 3120 | goto error; |
| 3121 | SET_TOP(exit); |
| 3122 | enter = special_lookup(mgr, &PyId___enter__); |
| 3123 | Py_DECREF(mgr); |
| 3124 | if (enter == NULL) |
| 3125 | goto error; |
| 3126 | res = PyObject_CallFunctionObjArgs(enter, NULL); |
| 3127 | Py_DECREF(enter); |
| 3128 | if (res == NULL) |
| 3129 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3130 | /* Setup the finally block before pushing the result |
| 3131 | of __enter__ on the stack. */ |
| 3132 | PyFrame_BlockSetup(f, SETUP_FINALLY, INSTR_OFFSET() + oparg, |
| 3133 | STACK_LEVEL()); |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 3134 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3135 | PUSH(res); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3136 | DISPATCH(); |
| 3137 | } |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 3138 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3139 | TARGET(WITH_CLEANUP_START) { |
Benjamin Peterson | 8f16948 | 2013-10-29 22:25:06 -0400 | [diff] [blame] | 3140 | /* At the top of the stack are 1-6 values indicating |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3141 | how/why we entered the finally clause: |
| 3142 | - TOP = None |
| 3143 | - (TOP, SECOND) = (WHY_{RETURN,CONTINUE}), retval |
| 3144 | - TOP = WHY_*; no retval below it |
| 3145 | - (TOP, SECOND, THIRD) = exc_info() |
| 3146 | (FOURTH, FITH, SIXTH) = previous exception for EXCEPT_HANDLER |
| 3147 | Below them is EXIT, the context.__exit__ bound method. |
| 3148 | In the last case, we must call |
| 3149 | EXIT(TOP, SECOND, THIRD) |
| 3150 | otherwise we must call |
| 3151 | EXIT(None, None, None) |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 3152 | |
Benjamin Peterson | 8f16948 | 2013-10-29 22:25:06 -0400 | [diff] [blame] | 3153 | In the first three cases, we remove EXIT from the |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3154 | stack, leaving the rest in the same order. In the |
Benjamin Peterson | 8f16948 | 2013-10-29 22:25:06 -0400 | [diff] [blame] | 3155 | fourth case, we shift the bottom 3 values of the |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3156 | stack down, and replace the empty spot with NULL. |
Guido van Rossum | 1a5e21e | 2006-02-28 21:57:43 +0000 | [diff] [blame] | 3157 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3158 | In addition, if the stack represents an exception, |
| 3159 | *and* the function call returns a 'true' value, we |
| 3160 | push WHY_SILENCED onto the stack. END_FINALLY will |
| 3161 | then not re-raise the exception. (But non-local |
| 3162 | gotos should still be resumed.) |
| 3163 | */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 3164 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3165 | PyObject *exit_func; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3166 | PyObject *exc = TOP(), *val = Py_None, *tb = Py_None, *res; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3167 | if (exc == Py_None) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3168 | (void)POP(); |
| 3169 | exit_func = TOP(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3170 | SET_TOP(exc); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3171 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3172 | else if (PyLong_Check(exc)) { |
| 3173 | STACKADJ(-1); |
| 3174 | switch (PyLong_AsLong(exc)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3175 | case WHY_RETURN: |
| 3176 | case WHY_CONTINUE: |
| 3177 | /* Retval in TOP. */ |
| 3178 | exit_func = SECOND(); |
| 3179 | SET_SECOND(TOP()); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3180 | SET_TOP(exc); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3181 | break; |
| 3182 | default: |
| 3183 | exit_func = TOP(); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3184 | SET_TOP(exc); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3185 | break; |
| 3186 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3187 | exc = Py_None; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3188 | } |
| 3189 | else { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3190 | PyObject *tp2, *exc2, *tb2; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3191 | PyTryBlock *block; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3192 | val = SECOND(); |
| 3193 | tb = THIRD(); |
| 3194 | tp2 = FOURTH(); |
| 3195 | exc2 = PEEK(5); |
| 3196 | tb2 = PEEK(6); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3197 | exit_func = PEEK(7); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3198 | SET_VALUE(7, tb2); |
| 3199 | SET_VALUE(6, exc2); |
| 3200 | SET_VALUE(5, tp2); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3201 | /* UNWIND_EXCEPT_HANDLER will pop this off. */ |
| 3202 | SET_FOURTH(NULL); |
| 3203 | /* We just shifted the stack down, so we have |
| 3204 | to tell the except handler block that the |
| 3205 | values are lower than it expects. */ |
| 3206 | block = &f->f_blockstack[f->f_iblock - 1]; |
| 3207 | assert(block->b_type == EXCEPT_HANDLER); |
| 3208 | block->b_level--; |
| 3209 | } |
| 3210 | /* XXX Not the fastest way to call it... */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3211 | res = PyObject_CallFunctionObjArgs(exit_func, exc, val, tb, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3212 | Py_DECREF(exit_func); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3213 | if (res == NULL) |
| 3214 | goto error; |
Amaury Forgeot d'Arc | 10b24e8 | 2008-12-10 23:49:33 +0000 | [diff] [blame] | 3215 | |
Nick Coghlan | baaadbf | 2015-05-13 15:54:02 +1000 | [diff] [blame] | 3216 | Py_INCREF(exc); /* Duplicating the exception on the stack */ |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3217 | PUSH(exc); |
| 3218 | PUSH(res); |
| 3219 | PREDICT(WITH_CLEANUP_FINISH); |
| 3220 | DISPATCH(); |
| 3221 | } |
| 3222 | |
| 3223 | PREDICTED(WITH_CLEANUP_FINISH); |
| 3224 | TARGET(WITH_CLEANUP_FINISH) { |
| 3225 | PyObject *res = POP(); |
| 3226 | PyObject *exc = POP(); |
| 3227 | int err; |
| 3228 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3229 | if (exc != Py_None) |
| 3230 | err = PyObject_IsTrue(res); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3231 | else |
| 3232 | err = 0; |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 3233 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3234 | Py_DECREF(res); |
Nick Coghlan | baaadbf | 2015-05-13 15:54:02 +1000 | [diff] [blame] | 3235 | Py_DECREF(exc); |
Amaury Forgeot d'Arc | 10b24e8 | 2008-12-10 23:49:33 +0000 | [diff] [blame] | 3236 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3237 | if (err < 0) |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3238 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3239 | else if (err > 0) { |
| 3240 | err = 0; |
| 3241 | /* There was an exception and a True return */ |
| 3242 | PUSH(PyLong_FromLong((long) WHY_SILENCED)); |
| 3243 | } |
| 3244 | PREDICT(END_FINALLY); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3245 | DISPATCH(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3246 | } |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 3247 | |
Serhiy Storchaka | da9c513 | 2016-06-27 18:58:57 +0300 | [diff] [blame] | 3248 | PREDICTED(CALL_FUNCTION); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3249 | TARGET(CALL_FUNCTION) { |
| 3250 | PyObject **sp, *res; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3251 | PCALL(PCALL_ALL); |
| 3252 | sp = stack_pointer; |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 3253 | #ifdef WITH_TSC |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3254 | res = call_function(&sp, oparg, &intr0, &intr1); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 3255 | #else |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3256 | res = call_function(&sp, oparg); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 3257 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3258 | stack_pointer = sp; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3259 | PUSH(res); |
| 3260 | if (res == NULL) |
| 3261 | goto error; |
| 3262 | DISPATCH(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3263 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3264 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 3265 | TARGET(CALL_FUNCTION_VAR) |
| 3266 | TARGET(CALL_FUNCTION_KW) |
| 3267 | TARGET(CALL_FUNCTION_VAR_KW) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3268 | int na = oparg & 0xff; |
| 3269 | int nk = (oparg>>8) & 0xff; |
| 3270 | int flags = (opcode - CALL_FUNCTION) & 3; |
| 3271 | int n = na + 2 * nk; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3272 | PyObject **pfunc, *func, **sp, *res; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3273 | PCALL(PCALL_ALL); |
| 3274 | if (flags & CALL_FLAG_VAR) |
| 3275 | n++; |
| 3276 | if (flags & CALL_FLAG_KW) |
| 3277 | n++; |
| 3278 | pfunc = stack_pointer - n - 1; |
| 3279 | func = *pfunc; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 3280 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3281 | if (PyMethod_Check(func) |
Stefan Krah | b7e1010 | 2010-06-23 18:42:39 +0000 | [diff] [blame] | 3282 | && PyMethod_GET_SELF(func) != NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3283 | PyObject *self = PyMethod_GET_SELF(func); |
| 3284 | Py_INCREF(self); |
| 3285 | func = PyMethod_GET_FUNCTION(func); |
| 3286 | Py_INCREF(func); |
Serhiy Storchaka | 57a01d3 | 2016-04-10 18:05:40 +0300 | [diff] [blame] | 3287 | Py_SETREF(*pfunc, self); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3288 | na++; |
Brett Cannon | b94767f | 2011-02-22 20:15:44 +0000 | [diff] [blame] | 3289 | /* n++; */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3290 | } else |
| 3291 | Py_INCREF(func); |
| 3292 | sp = stack_pointer; |
| 3293 | READ_TIMESTAMP(intr0); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3294 | res = ext_do_call(func, &sp, flags, na, nk); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3295 | READ_TIMESTAMP(intr1); |
| 3296 | stack_pointer = sp; |
| 3297 | Py_DECREF(func); |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 3298 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3299 | while (stack_pointer > pfunc) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3300 | PyObject *o = POP(); |
| 3301 | Py_DECREF(o); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3302 | } |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3303 | PUSH(res); |
| 3304 | if (res == NULL) |
| 3305 | goto error; |
| 3306 | DISPATCH(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3307 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3308 | |
Serhiy Storchaka | b0f80b0 | 2016-05-24 09:15:14 +0300 | [diff] [blame] | 3309 | TARGET(MAKE_FUNCTION) { |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 3310 | PyObject *qualname = POP(); |
| 3311 | PyObject *codeobj = POP(); |
| 3312 | PyFunctionObject *func = (PyFunctionObject *) |
| 3313 | PyFunction_NewWithQualName(codeobj, f->f_globals, qualname); |
Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 3314 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 3315 | Py_DECREF(codeobj); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3316 | Py_DECREF(qualname); |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 3317 | if (func == NULL) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3318 | goto error; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3319 | } |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 3320 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 3321 | if (oparg & 0x08) { |
| 3322 | assert(PyTuple_CheckExact(TOP())); |
| 3323 | func ->func_closure = POP(); |
| 3324 | } |
| 3325 | if (oparg & 0x04) { |
| 3326 | assert(PyDict_CheckExact(TOP())); |
| 3327 | func->func_annotations = POP(); |
| 3328 | } |
| 3329 | if (oparg & 0x02) { |
| 3330 | assert(PyDict_CheckExact(TOP())); |
| 3331 | func->func_kwdefaults = POP(); |
| 3332 | } |
| 3333 | if (oparg & 0x01) { |
| 3334 | assert(PyTuple_CheckExact(TOP())); |
| 3335 | func->func_defaults = POP(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3336 | } |
Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 3337 | |
Serhiy Storchaka | 64204de | 2016-06-12 17:36:24 +0300 | [diff] [blame] | 3338 | PUSH((PyObject *)func); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3339 | DISPATCH(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3340 | } |
Guido van Rossum | 8861b74 | 1996-07-30 16:49:37 +0000 | [diff] [blame] | 3341 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3342 | TARGET(BUILD_SLICE) { |
| 3343 | PyObject *start, *stop, *step, *slice; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3344 | if (oparg == 3) |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3345 | step = POP(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3346 | else |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3347 | step = NULL; |
| 3348 | stop = POP(); |
| 3349 | start = TOP(); |
| 3350 | slice = PySlice_New(start, stop, step); |
| 3351 | Py_DECREF(start); |
| 3352 | Py_DECREF(stop); |
| 3353 | Py_XDECREF(step); |
| 3354 | SET_TOP(slice); |
| 3355 | if (slice == NULL) |
| 3356 | goto error; |
| 3357 | DISPATCH(); |
| 3358 | } |
Guido van Rossum | 8861b74 | 1996-07-30 16:49:37 +0000 | [diff] [blame] | 3359 | |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3360 | TARGET(FORMAT_VALUE) { |
| 3361 | /* Handles f-string value formatting. */ |
| 3362 | PyObject *result; |
| 3363 | PyObject *fmt_spec; |
| 3364 | PyObject *value; |
| 3365 | PyObject *(*conv_fn)(PyObject *); |
| 3366 | int which_conversion = oparg & FVC_MASK; |
| 3367 | int have_fmt_spec = (oparg & FVS_MASK) == FVS_HAVE_SPEC; |
| 3368 | |
| 3369 | fmt_spec = have_fmt_spec ? POP() : NULL; |
Eric V. Smith | 135d5f4 | 2016-02-05 18:23:08 -0500 | [diff] [blame] | 3370 | value = POP(); |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3371 | |
| 3372 | /* See if any conversion is specified. */ |
| 3373 | switch (which_conversion) { |
| 3374 | case FVC_STR: conv_fn = PyObject_Str; break; |
| 3375 | case FVC_REPR: conv_fn = PyObject_Repr; break; |
| 3376 | case FVC_ASCII: conv_fn = PyObject_ASCII; break; |
| 3377 | |
| 3378 | /* Must be 0 (meaning no conversion), since only four |
| 3379 | values are allowed by (oparg & FVC_MASK). */ |
| 3380 | default: conv_fn = NULL; break; |
| 3381 | } |
| 3382 | |
| 3383 | /* If there's a conversion function, call it and replace |
| 3384 | value with that result. Otherwise, just use value, |
| 3385 | without conversion. */ |
Eric V. Smith | eb588a1 | 2016-02-05 18:26:20 -0500 | [diff] [blame] | 3386 | if (conv_fn != NULL) { |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3387 | result = conv_fn(value); |
| 3388 | Py_DECREF(value); |
Eric V. Smith | eb588a1 | 2016-02-05 18:26:20 -0500 | [diff] [blame] | 3389 | if (result == NULL) { |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3390 | Py_XDECREF(fmt_spec); |
| 3391 | goto error; |
| 3392 | } |
| 3393 | value = result; |
| 3394 | } |
| 3395 | |
| 3396 | /* If value is a unicode object, and there's no fmt_spec, |
| 3397 | then we know the result of format(value) is value |
| 3398 | itself. In that case, skip calling format(). I plan to |
| 3399 | move this optimization in to PyObject_Format() |
| 3400 | itself. */ |
| 3401 | if (PyUnicode_CheckExact(value) && fmt_spec == NULL) { |
| 3402 | /* Do nothing, just transfer ownership to result. */ |
| 3403 | result = value; |
| 3404 | } else { |
| 3405 | /* Actually call format(). */ |
| 3406 | result = PyObject_Format(value, fmt_spec); |
| 3407 | Py_DECREF(value); |
| 3408 | Py_XDECREF(fmt_spec); |
Eric V. Smith | eb588a1 | 2016-02-05 18:26:20 -0500 | [diff] [blame] | 3409 | if (result == NULL) { |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3410 | goto error; |
Eric V. Smith | eb588a1 | 2016-02-05 18:26:20 -0500 | [diff] [blame] | 3411 | } |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3412 | } |
| 3413 | |
Eric V. Smith | 135d5f4 | 2016-02-05 18:23:08 -0500 | [diff] [blame] | 3414 | PUSH(result); |
Eric V. Smith | a78c795 | 2015-11-03 12:45:05 -0500 | [diff] [blame] | 3415 | DISPATCH(); |
| 3416 | } |
| 3417 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3418 | TARGET(EXTENDED_ARG) { |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 3419 | int oldoparg = oparg; |
| 3420 | NEXTOPARG(); |
| 3421 | oparg |= oldoparg << 8; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3422 | goto dispatch_opcode; |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3423 | } |
Guido van Rossum | 8861b74 | 1996-07-30 16:49:37 +0000 | [diff] [blame] | 3424 | |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 3425 | |
Antoine Pitrou | 042b128 | 2010-08-13 21:15:58 +0000 | [diff] [blame] | 3426 | #if USE_COMPUTED_GOTOS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3427 | _unknown_opcode: |
Antoine Pitrou | b52ec78 | 2009-01-25 16:34:23 +0000 | [diff] [blame] | 3428 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3429 | default: |
| 3430 | fprintf(stderr, |
| 3431 | "XXX lineno: %d, opcode: %d\n", |
| 3432 | PyFrame_GetLineNumber(f), |
| 3433 | opcode); |
| 3434 | PyErr_SetString(PyExc_SystemError, "unknown opcode"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3435 | goto error; |
Guido van Rossum | 04691fc | 1992-08-12 15:35:34 +0000 | [diff] [blame] | 3436 | |
| 3437 | #ifdef CASE_TOO_BIG |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3438 | } |
Guido van Rossum | 04691fc | 1992-08-12 15:35:34 +0000 | [diff] [blame] | 3439 | #endif |
| 3440 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3441 | } /* switch */ |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 3442 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3443 | /* This should never be reached. Every opcode should end with DISPATCH() |
| 3444 | or goto error. */ |
| 3445 | assert(0); |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3446 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3447 | error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3448 | READ_TIMESTAMP(inst1); |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 3449 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3450 | assert(why == WHY_NOT); |
| 3451 | why = WHY_EXCEPTION; |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3452 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3453 | /* Double-check exception status. */ |
Victor Stinner | 365b693 | 2013-07-12 00:11:58 +0200 | [diff] [blame] | 3454 | #ifdef NDEBUG |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3455 | if (!PyErr_Occurred()) |
| 3456 | PyErr_SetString(PyExc_SystemError, |
| 3457 | "error return without exception set"); |
Victor Stinner | 365b693 | 2013-07-12 00:11:58 +0200 | [diff] [blame] | 3458 | #else |
| 3459 | assert(PyErr_Occurred()); |
| 3460 | #endif |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 3461 | |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3462 | /* Log traceback info. */ |
| 3463 | PyTraceBack_Here(f); |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3464 | |
Benjamin Peterson | 51f4616 | 2013-01-23 08:38:47 -0500 | [diff] [blame] | 3465 | if (tstate->c_tracefunc != NULL) |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 3466 | call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, |
| 3467 | tstate, f); |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3468 | |
Raymond Hettinger | 1dd8309 | 2004-02-06 18:32:33 +0000 | [diff] [blame] | 3469 | fast_block_end: |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3470 | assert(why != WHY_NOT); |
| 3471 | |
| 3472 | /* Unwind stacks if a (pseudo) exception occurred */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3473 | while (why != WHY_NOT && f->f_iblock > 0) { |
| 3474 | /* Peek at the current block. */ |
| 3475 | PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1]; |
Jeremy Hylton | 3faa52e | 2001-02-01 22:48:12 +0000 | [diff] [blame] | 3476 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3477 | assert(why != WHY_YIELD); |
| 3478 | if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) { |
| 3479 | why = WHY_NOT; |
| 3480 | JUMPTO(PyLong_AS_LONG(retval)); |
| 3481 | Py_DECREF(retval); |
| 3482 | break; |
| 3483 | } |
| 3484 | /* Now we have to pop the block. */ |
| 3485 | f->f_iblock--; |
Jeremy Hylton | 3faa52e | 2001-02-01 22:48:12 +0000 | [diff] [blame] | 3486 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3487 | if (b->b_type == EXCEPT_HANDLER) { |
| 3488 | UNWIND_EXCEPT_HANDLER(b); |
| 3489 | continue; |
| 3490 | } |
| 3491 | UNWIND_BLOCK(b); |
| 3492 | if (b->b_type == SETUP_LOOP && why == WHY_BREAK) { |
| 3493 | why = WHY_NOT; |
| 3494 | JUMPTO(b->b_handler); |
| 3495 | break; |
| 3496 | } |
| 3497 | if (why == WHY_EXCEPTION && (b->b_type == SETUP_EXCEPT |
| 3498 | || b->b_type == SETUP_FINALLY)) { |
| 3499 | PyObject *exc, *val, *tb; |
| 3500 | int handler = b->b_handler; |
| 3501 | /* Beware, this invalidates all b->b_* fields */ |
| 3502 | PyFrame_BlockSetup(f, EXCEPT_HANDLER, -1, STACK_LEVEL()); |
| 3503 | PUSH(tstate->exc_traceback); |
| 3504 | PUSH(tstate->exc_value); |
| 3505 | if (tstate->exc_type != NULL) { |
| 3506 | PUSH(tstate->exc_type); |
| 3507 | } |
| 3508 | else { |
| 3509 | Py_INCREF(Py_None); |
| 3510 | PUSH(Py_None); |
| 3511 | } |
| 3512 | PyErr_Fetch(&exc, &val, &tb); |
| 3513 | /* Make the raw exception data |
| 3514 | available to the handler, |
| 3515 | so a program can emulate the |
| 3516 | Python main loop. */ |
| 3517 | PyErr_NormalizeException( |
| 3518 | &exc, &val, &tb); |
Victor Stinner | 7eab0d0 | 2013-07-15 21:16:27 +0200 | [diff] [blame] | 3519 | if (tb != NULL) |
| 3520 | PyException_SetTraceback(val, tb); |
| 3521 | else |
| 3522 | PyException_SetTraceback(val, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3523 | Py_INCREF(exc); |
| 3524 | tstate->exc_type = exc; |
| 3525 | Py_INCREF(val); |
| 3526 | tstate->exc_value = val; |
| 3527 | tstate->exc_traceback = tb; |
| 3528 | if (tb == NULL) |
| 3529 | tb = Py_None; |
| 3530 | Py_INCREF(tb); |
| 3531 | PUSH(tb); |
| 3532 | PUSH(val); |
| 3533 | PUSH(exc); |
| 3534 | why = WHY_NOT; |
| 3535 | JUMPTO(handler); |
| 3536 | break; |
| 3537 | } |
| 3538 | if (b->b_type == SETUP_FINALLY) { |
| 3539 | if (why & (WHY_RETURN | WHY_CONTINUE)) |
| 3540 | PUSH(retval); |
| 3541 | PUSH(PyLong_FromLong((long)why)); |
| 3542 | why = WHY_NOT; |
| 3543 | JUMPTO(b->b_handler); |
| 3544 | break; |
| 3545 | } |
| 3546 | } /* unwind stack */ |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 3547 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3548 | /* End the loop if we still have an error (or return) */ |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3549 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3550 | if (why != WHY_NOT) |
| 3551 | break; |
| 3552 | READ_TIMESTAMP(loop1); |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3553 | |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 3554 | assert(!PyErr_Occurred()); |
| 3555 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3556 | } /* main loop */ |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3557 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3558 | assert(why != WHY_YIELD); |
| 3559 | /* Pop remaining stack entries. */ |
| 3560 | while (!EMPTY()) { |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 3561 | PyObject *o = POP(); |
| 3562 | Py_XDECREF(o); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3563 | } |
Guido van Rossum | 35974fb | 2001-12-06 21:28:18 +0000 | [diff] [blame] | 3564 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3565 | if (why != WHY_RETURN) |
| 3566 | retval = NULL; |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3567 | |
Victor Stinner | 4a7cc88 | 2015-03-06 23:35:27 +0100 | [diff] [blame] | 3568 | assert((retval != NULL) ^ (PyErr_Occurred() != NULL)); |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 3569 | |
Raymond Hettinger | 1dd8309 | 2004-02-06 18:32:33 +0000 | [diff] [blame] | 3570 | fast_yield: |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 3571 | if (co->co_flags & (CO_GENERATOR | CO_COROUTINE)) { |
Victor Stinner | 26f7b8a | 2015-01-31 10:29:47 +0100 | [diff] [blame] | 3572 | |
Benjamin Peterson | ac91341 | 2011-07-03 16:25:11 -0500 | [diff] [blame] | 3573 | /* The purpose of this block is to put aside the generator's exception |
| 3574 | state and restore that of the calling frame. If the current |
| 3575 | exception state is from the caller, we clear the exception values |
| 3576 | on the generator frame, so they are not swapped back in latter. The |
| 3577 | origin of the current exception state is determined by checking for |
| 3578 | except handler blocks, which we must be in iff a new exception |
| 3579 | state came into existence in this frame. (An uncaught exception |
| 3580 | would have why == WHY_EXCEPTION, and we wouldn't be here). */ |
| 3581 | int i; |
| 3582 | for (i = 0; i < f->f_iblock; i++) |
| 3583 | if (f->f_blockstack[i].b_type == EXCEPT_HANDLER) |
| 3584 | break; |
| 3585 | if (i == f->f_iblock) |
| 3586 | /* We did not create this exception. */ |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 3587 | restore_and_clear_exc_state(tstate, f); |
Benjamin Peterson | ac91341 | 2011-07-03 16:25:11 -0500 | [diff] [blame] | 3588 | else |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 3589 | swap_exc_state(tstate, f); |
Benjamin Peterson | ac91341 | 2011-07-03 16:25:11 -0500 | [diff] [blame] | 3590 | } |
Benjamin Peterson | 83195c3 | 2011-07-03 13:44:00 -0500 | [diff] [blame] | 3591 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3592 | if (tstate->use_tracing) { |
Benjamin Peterson | 51f4616 | 2013-01-23 08:38:47 -0500 | [diff] [blame] | 3593 | if (tstate->c_tracefunc) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3594 | if (why == WHY_RETURN || why == WHY_YIELD) { |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 3595 | if (call_trace(tstate->c_tracefunc, tstate->c_traceobj, |
| 3596 | tstate, f, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3597 | PyTrace_RETURN, retval)) { |
Serhiy Storchaka | 505ff75 | 2014-02-09 13:33:53 +0200 | [diff] [blame] | 3598 | Py_CLEAR(retval); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3599 | why = WHY_EXCEPTION; |
| 3600 | } |
| 3601 | } |
| 3602 | else if (why == WHY_EXCEPTION) { |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 3603 | call_trace_protected(tstate->c_tracefunc, tstate->c_traceobj, |
| 3604 | tstate, f, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3605 | PyTrace_RETURN, NULL); |
| 3606 | } |
| 3607 | } |
| 3608 | if (tstate->c_profilefunc) { |
| 3609 | if (why == WHY_EXCEPTION) |
| 3610 | call_trace_protected(tstate->c_profilefunc, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 3611 | tstate->c_profileobj, |
| 3612 | tstate, f, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3613 | PyTrace_RETURN, NULL); |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 3614 | else if (call_trace(tstate->c_profilefunc, tstate->c_profileobj, |
| 3615 | tstate, f, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3616 | PyTrace_RETURN, retval)) { |
Serhiy Storchaka | 505ff75 | 2014-02-09 13:33:53 +0200 | [diff] [blame] | 3617 | Py_CLEAR(retval); |
Brett Cannon | b94767f | 2011-02-22 20:15:44 +0000 | [diff] [blame] | 3618 | /* why = WHY_EXCEPTION; */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3619 | } |
| 3620 | } |
| 3621 | } |
Guido van Rossum | a424013 | 1997-01-21 21:18:36 +0000 | [diff] [blame] | 3622 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3623 | /* pop frame */ |
Thomas Wouters | ce272b6 | 2007-09-19 21:19:28 +0000 | [diff] [blame] | 3624 | exit_eval_frame: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3625 | Py_LeaveRecursiveCall(); |
Antoine Pitrou | 58720d6 | 2013-08-05 23:26:40 +0200 | [diff] [blame] | 3626 | f->f_executing = 0; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3627 | tstate->frame = f->f_back; |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 3628 | |
Victor Stinner | efde146 | 2015-03-21 15:04:43 +0100 | [diff] [blame] | 3629 | return _Py_CheckFunctionResult(NULL, retval, "PyEval_EvalFrameEx"); |
Guido van Rossum | 374a922 | 1991-04-04 10:40:29 +0000 | [diff] [blame] | 3630 | } |
| 3631 | |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3632 | static void |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3633 | format_missing(const char *kind, PyCodeObject *co, PyObject *names) |
| 3634 | { |
| 3635 | int err; |
| 3636 | Py_ssize_t len = PyList_GET_SIZE(names); |
| 3637 | PyObject *name_str, *comma, *tail, *tmp; |
| 3638 | |
| 3639 | assert(PyList_CheckExact(names)); |
| 3640 | assert(len >= 1); |
| 3641 | /* Deal with the joys of natural language. */ |
| 3642 | switch (len) { |
| 3643 | case 1: |
| 3644 | name_str = PyList_GET_ITEM(names, 0); |
| 3645 | Py_INCREF(name_str); |
| 3646 | break; |
| 3647 | case 2: |
| 3648 | name_str = PyUnicode_FromFormat("%U and %U", |
| 3649 | PyList_GET_ITEM(names, len - 2), |
| 3650 | PyList_GET_ITEM(names, len - 1)); |
| 3651 | break; |
| 3652 | default: |
| 3653 | tail = PyUnicode_FromFormat(", %U, and %U", |
| 3654 | PyList_GET_ITEM(names, len - 2), |
| 3655 | PyList_GET_ITEM(names, len - 1)); |
Benjamin Peterson | d1ab608 | 2012-06-01 11:18:22 -0700 | [diff] [blame] | 3656 | if (tail == NULL) |
| 3657 | return; |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3658 | /* Chop off the last two objects in the list. This shouldn't actually |
| 3659 | fail, but we can't be too careful. */ |
| 3660 | err = PyList_SetSlice(names, len - 2, len, NULL); |
| 3661 | if (err == -1) { |
| 3662 | Py_DECREF(tail); |
| 3663 | return; |
| 3664 | } |
| 3665 | /* Stitch everything up into a nice comma-separated list. */ |
| 3666 | comma = PyUnicode_FromString(", "); |
| 3667 | if (comma == NULL) { |
| 3668 | Py_DECREF(tail); |
| 3669 | return; |
| 3670 | } |
| 3671 | tmp = PyUnicode_Join(comma, names); |
| 3672 | Py_DECREF(comma); |
| 3673 | if (tmp == NULL) { |
| 3674 | Py_DECREF(tail); |
| 3675 | return; |
| 3676 | } |
| 3677 | name_str = PyUnicode_Concat(tmp, tail); |
| 3678 | Py_DECREF(tmp); |
| 3679 | Py_DECREF(tail); |
| 3680 | break; |
| 3681 | } |
| 3682 | if (name_str == NULL) |
| 3683 | return; |
| 3684 | PyErr_Format(PyExc_TypeError, |
| 3685 | "%U() missing %i required %s argument%s: %U", |
| 3686 | co->co_name, |
| 3687 | len, |
| 3688 | kind, |
| 3689 | len == 1 ? "" : "s", |
| 3690 | name_str); |
| 3691 | Py_DECREF(name_str); |
| 3692 | } |
| 3693 | |
| 3694 | static void |
| 3695 | missing_arguments(PyCodeObject *co, int missing, int defcount, |
| 3696 | PyObject **fastlocals) |
| 3697 | { |
| 3698 | int i, j = 0; |
| 3699 | int start, end; |
| 3700 | int positional = defcount != -1; |
| 3701 | const char *kind = positional ? "positional" : "keyword-only"; |
| 3702 | PyObject *missing_names; |
| 3703 | |
| 3704 | /* Compute the names of the arguments that are missing. */ |
| 3705 | missing_names = PyList_New(missing); |
| 3706 | if (missing_names == NULL) |
| 3707 | return; |
| 3708 | if (positional) { |
| 3709 | start = 0; |
| 3710 | end = co->co_argcount - defcount; |
| 3711 | } |
| 3712 | else { |
| 3713 | start = co->co_argcount; |
| 3714 | end = start + co->co_kwonlyargcount; |
| 3715 | } |
| 3716 | for (i = start; i < end; i++) { |
| 3717 | if (GETLOCAL(i) == NULL) { |
| 3718 | PyObject *raw = PyTuple_GET_ITEM(co->co_varnames, i); |
| 3719 | PyObject *name = PyObject_Repr(raw); |
| 3720 | if (name == NULL) { |
| 3721 | Py_DECREF(missing_names); |
| 3722 | return; |
| 3723 | } |
| 3724 | PyList_SET_ITEM(missing_names, j++, name); |
| 3725 | } |
| 3726 | } |
| 3727 | assert(j == missing); |
| 3728 | format_missing(kind, co, missing_names); |
| 3729 | Py_DECREF(missing_names); |
| 3730 | } |
| 3731 | |
| 3732 | static void |
| 3733 | too_many_positional(PyCodeObject *co, int given, int defcount, PyObject **fastlocals) |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3734 | { |
| 3735 | int plural; |
| 3736 | int kwonly_given = 0; |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3737 | int i; |
| 3738 | PyObject *sig, *kwonly_sig; |
| 3739 | |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3740 | assert((co->co_flags & CO_VARARGS) == 0); |
| 3741 | /* Count missing keyword-only args. */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3742 | for (i = co->co_argcount; i < co->co_argcount + co->co_kwonlyargcount; i++) |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3743 | if (GETLOCAL(i) != NULL) |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3744 | kwonly_given++; |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3745 | if (defcount) { |
| 3746 | int atleast = co->co_argcount - defcount; |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3747 | plural = 1; |
| 3748 | sig = PyUnicode_FromFormat("from %d to %d", atleast, co->co_argcount); |
| 3749 | } |
| 3750 | else { |
| 3751 | plural = co->co_argcount != 1; |
| 3752 | sig = PyUnicode_FromFormat("%d", co->co_argcount); |
| 3753 | } |
| 3754 | if (sig == NULL) |
| 3755 | return; |
| 3756 | if (kwonly_given) { |
| 3757 | const char *format = " positional argument%s (and %d keyword-only argument%s)"; |
| 3758 | kwonly_sig = PyUnicode_FromFormat(format, given != 1 ? "s" : "", kwonly_given, |
| 3759 | kwonly_given != 1 ? "s" : ""); |
| 3760 | if (kwonly_sig == NULL) { |
| 3761 | Py_DECREF(sig); |
| 3762 | return; |
| 3763 | } |
| 3764 | } |
| 3765 | else { |
| 3766 | /* This will not fail. */ |
| 3767 | kwonly_sig = PyUnicode_FromString(""); |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3768 | assert(kwonly_sig != NULL); |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3769 | } |
| 3770 | PyErr_Format(PyExc_TypeError, |
| 3771 | "%U() takes %U positional argument%s but %d%U %s given", |
| 3772 | co->co_name, |
| 3773 | sig, |
| 3774 | plural ? "s" : "", |
| 3775 | given, |
| 3776 | kwonly_sig, |
| 3777 | given == 1 && !kwonly_given ? "was" : "were"); |
| 3778 | Py_DECREF(sig); |
| 3779 | Py_DECREF(kwonly_sig); |
| 3780 | } |
| 3781 | |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 3782 | |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 3783 | /* This is gonna seem *real weird*, but if you put some other code between |
Martin v. Löwis | 8d97e33 | 2004-06-27 15:43:12 +0000 | [diff] [blame] | 3784 | PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust |
Guido van Rossum | c2e2074 | 2006-02-27 22:32:47 +0000 | [diff] [blame] | 3785 | the test in the if statements in Misc/gdbinit (pystack and pystackv). */ |
Skip Montanaro | 786ea6b | 2004-03-01 15:44:05 +0000 | [diff] [blame] | 3786 | |
Victor Stinner | 40ee301 | 2014-06-16 15:59:28 +0200 | [diff] [blame] | 3787 | static PyObject * |
| 3788 | _PyEval_EvalCodeWithName(PyObject *_co, PyObject *globals, PyObject *locals, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3789 | PyObject **args, int argcount, PyObject **kws, int kwcount, |
Victor Stinner | 40ee301 | 2014-06-16 15:59:28 +0200 | [diff] [blame] | 3790 | PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure, |
| 3791 | PyObject *name, PyObject *qualname) |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 3792 | { |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 3793 | PyCodeObject* co = (PyCodeObject*)_co; |
Antoine Pitrou | 9ed5f27 | 2013-08-13 20:18:52 +0200 | [diff] [blame] | 3794 | PyFrameObject *f; |
| 3795 | PyObject *retval = NULL; |
| 3796 | PyObject **fastlocals, **freevars; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3797 | PyThreadState *tstate; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3798 | PyObject *x, *u; |
Victor Stinner | 17061a9 | 2016-08-16 23:39:42 +0200 | [diff] [blame] | 3799 | const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount; |
| 3800 | Py_ssize_t i, n; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3801 | PyObject *kwdict; |
| 3802 | |
| 3803 | assert((kwcount == 0) || (kws != NULL)); |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 3804 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3805 | if (globals == NULL) { |
| 3806 | PyErr_SetString(PyExc_SystemError, |
| 3807 | "PyEval_EvalCodeEx: NULL globals"); |
| 3808 | return NULL; |
| 3809 | } |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 3810 | |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3811 | /* Create the frame */ |
| 3812 | tstate = PyThreadState_GET(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3813 | assert(tstate != NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3814 | f = PyFrame_New(tstate, co, globals, locals); |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3815 | if (f == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3816 | return NULL; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3817 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3818 | fastlocals = f->f_localsplus; |
| 3819 | freevars = f->f_localsplus + co->co_nlocals; |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 3820 | |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3821 | /* Create a dictionary for keyword parameters (**kwags) */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3822 | if (co->co_flags & CO_VARKEYWORDS) { |
| 3823 | kwdict = PyDict_New(); |
| 3824 | if (kwdict == NULL) |
| 3825 | goto fail; |
| 3826 | i = total_args; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3827 | if (co->co_flags & CO_VARARGS) { |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3828 | i++; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3829 | } |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3830 | SETLOCAL(i, kwdict); |
| 3831 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3832 | else { |
| 3833 | kwdict = NULL; |
| 3834 | } |
| 3835 | |
| 3836 | /* Copy positional arguments into local variables */ |
| 3837 | if (argcount > co->co_argcount) { |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3838 | n = co->co_argcount; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3839 | } |
| 3840 | else { |
| 3841 | n = argcount; |
| 3842 | } |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3843 | for (i = 0; i < n; i++) { |
| 3844 | x = args[i]; |
| 3845 | Py_INCREF(x); |
| 3846 | SETLOCAL(i, x); |
| 3847 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3848 | |
| 3849 | /* Pack other positional arguments into the *args argument */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3850 | if (co->co_flags & CO_VARARGS) { |
| 3851 | u = PyTuple_New(argcount - n); |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3852 | if (u == NULL) { |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3853 | goto fail; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3854 | } |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3855 | SETLOCAL(total_args, u); |
| 3856 | for (i = n; i < argcount; i++) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3857 | x = args[i]; |
| 3858 | Py_INCREF(x); |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3859 | PyTuple_SET_ITEM(u, i-n, x); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3860 | } |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3861 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3862 | |
| 3863 | /* Handle keyword arguments (passed as an array of (key, value)) */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3864 | for (i = 0; i < kwcount; i++) { |
| 3865 | PyObject **co_varnames; |
| 3866 | PyObject *keyword = kws[2*i]; |
| 3867 | PyObject *value = kws[2*i + 1]; |
Victor Stinner | 17061a9 | 2016-08-16 23:39:42 +0200 | [diff] [blame] | 3868 | Py_ssize_t j; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3869 | |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3870 | if (keyword == NULL || !PyUnicode_Check(keyword)) { |
| 3871 | PyErr_Format(PyExc_TypeError, |
| 3872 | "%U() keywords must be strings", |
| 3873 | co->co_name); |
| 3874 | goto fail; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3875 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3876 | |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3877 | /* Speed hack: do raw pointer compares. As names are |
| 3878 | normally interned this should almost always hit. */ |
| 3879 | co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item; |
| 3880 | for (j = 0; j < total_args; j++) { |
| 3881 | PyObject *nm = co_varnames[j]; |
| 3882 | if (nm == keyword) |
| 3883 | goto kw_found; |
| 3884 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3885 | |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3886 | /* Slow fallback, just in case */ |
| 3887 | for (j = 0; j < total_args; j++) { |
| 3888 | PyObject *nm = co_varnames[j]; |
| 3889 | int cmp = PyObject_RichCompareBool( |
| 3890 | keyword, nm, Py_EQ); |
| 3891 | if (cmp > 0) |
| 3892 | goto kw_found; |
| 3893 | else if (cmp < 0) |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3894 | goto fail; |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3895 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3896 | |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3897 | if (j >= total_args && kwdict == NULL) { |
| 3898 | PyErr_Format(PyExc_TypeError, |
| 3899 | "%U() got an unexpected " |
| 3900 | "keyword argument '%S'", |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3901 | co->co_name, |
| 3902 | keyword); |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3903 | goto fail; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3904 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3905 | |
Christian Heimes | 0bd447f | 2013-07-20 14:48:10 +0200 | [diff] [blame] | 3906 | if (PyDict_SetItem(kwdict, keyword, value) == -1) { |
| 3907 | goto fail; |
| 3908 | } |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3909 | continue; |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3910 | |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3911 | kw_found: |
| 3912 | if (GETLOCAL(j) != NULL) { |
| 3913 | PyErr_Format(PyExc_TypeError, |
| 3914 | "%U() got multiple " |
| 3915 | "values for argument '%S'", |
| 3916 | co->co_name, |
| 3917 | keyword); |
| 3918 | goto fail; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3919 | } |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3920 | Py_INCREF(value); |
| 3921 | SETLOCAL(j, value); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3922 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3923 | |
| 3924 | /* Check the number of positional arguments */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3925 | if (argcount > co->co_argcount && !(co->co_flags & CO_VARARGS)) { |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3926 | too_many_positional(co, argcount, defcount, fastlocals); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3927 | goto fail; |
| 3928 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3929 | |
| 3930 | /* Add missing positional arguments (copy default values from defs) */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3931 | if (argcount < co->co_argcount) { |
Victor Stinner | 17061a9 | 2016-08-16 23:39:42 +0200 | [diff] [blame] | 3932 | Py_ssize_t m = co->co_argcount - defcount; |
| 3933 | Py_ssize_t missing = 0; |
| 3934 | for (i = argcount; i < m; i++) { |
| 3935 | if (GETLOCAL(i) == NULL) { |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3936 | missing++; |
Victor Stinner | 17061a9 | 2016-08-16 23:39:42 +0200 | [diff] [blame] | 3937 | } |
| 3938 | } |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3939 | if (missing) { |
| 3940 | missing_arguments(co, missing, defcount, fastlocals); |
| 3941 | goto fail; |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3942 | } |
| 3943 | if (n > m) |
| 3944 | i = n - m; |
| 3945 | else |
| 3946 | i = 0; |
| 3947 | for (; i < defcount; i++) { |
| 3948 | if (GETLOCAL(m+i) == NULL) { |
| 3949 | PyObject *def = defs[i]; |
| 3950 | Py_INCREF(def); |
| 3951 | SETLOCAL(m+i, def); |
| 3952 | } |
| 3953 | } |
| 3954 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3955 | |
| 3956 | /* Add missing keyword arguments (copy default values from kwdefs) */ |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3957 | if (co->co_kwonlyargcount > 0) { |
Victor Stinner | 17061a9 | 2016-08-16 23:39:42 +0200 | [diff] [blame] | 3958 | Py_ssize_t missing = 0; |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3959 | for (i = co->co_argcount; i < total_args; i++) { |
| 3960 | PyObject *name; |
| 3961 | if (GETLOCAL(i) != NULL) |
| 3962 | continue; |
| 3963 | name = PyTuple_GET_ITEM(co->co_varnames, i); |
| 3964 | if (kwdefs != NULL) { |
| 3965 | PyObject *def = PyDict_GetItem(kwdefs, name); |
| 3966 | if (def) { |
| 3967 | Py_INCREF(def); |
| 3968 | SETLOCAL(i, def); |
| 3969 | continue; |
| 3970 | } |
| 3971 | } |
Benjamin Peterson | e109c70 | 2011-06-24 09:37:26 -0500 | [diff] [blame] | 3972 | missing++; |
| 3973 | } |
| 3974 | if (missing) { |
| 3975 | missing_arguments(co, missing, -1, fastlocals); |
Benjamin Peterson | b204a42 | 2011-06-05 22:04:07 -0500 | [diff] [blame] | 3976 | goto fail; |
| 3977 | } |
| 3978 | } |
| 3979 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3980 | /* Allocate and initialize storage for cell vars, and copy free |
Benjamin Peterson | 9003760 | 2011-06-25 22:54:45 -0500 | [diff] [blame] | 3981 | vars into frame. */ |
| 3982 | for (i = 0; i < PyTuple_GET_SIZE(co->co_cellvars); ++i) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3983 | PyObject *c; |
Benjamin Peterson | 9003760 | 2011-06-25 22:54:45 -0500 | [diff] [blame] | 3984 | int arg; |
| 3985 | /* Possibly account for the cell variable being an argument. */ |
| 3986 | if (co->co_cell2arg != NULL && |
Guido van Rossum | 6832c81 | 2013-05-10 08:47:42 -0700 | [diff] [blame] | 3987 | (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG) { |
Benjamin Peterson | 9003760 | 2011-06-25 22:54:45 -0500 | [diff] [blame] | 3988 | c = PyCell_New(GETLOCAL(arg)); |
Benjamin Peterson | 159ae41 | 2013-05-12 18:16:06 -0500 | [diff] [blame] | 3989 | /* Clear the local copy. */ |
| 3990 | SETLOCAL(arg, NULL); |
Guido van Rossum | 6832c81 | 2013-05-10 08:47:42 -0700 | [diff] [blame] | 3991 | } |
| 3992 | else { |
Benjamin Peterson | 9003760 | 2011-06-25 22:54:45 -0500 | [diff] [blame] | 3993 | c = PyCell_New(NULL); |
Guido van Rossum | 6832c81 | 2013-05-10 08:47:42 -0700 | [diff] [blame] | 3994 | } |
Benjamin Peterson | 159ae41 | 2013-05-12 18:16:06 -0500 | [diff] [blame] | 3995 | if (c == NULL) |
| 3996 | goto fail; |
Benjamin Peterson | 9003760 | 2011-06-25 22:54:45 -0500 | [diff] [blame] | 3997 | SETLOCAL(co->co_nlocals + i, c); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 3998 | } |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 3999 | |
| 4000 | /* Copy closure variables to free variables */ |
Benjamin Peterson | 9003760 | 2011-06-25 22:54:45 -0500 | [diff] [blame] | 4001 | for (i = 0; i < PyTuple_GET_SIZE(co->co_freevars); ++i) { |
| 4002 | PyObject *o = PyTuple_GET_ITEM(closure, i); |
| 4003 | Py_INCREF(o); |
| 4004 | freevars[PyTuple_GET_SIZE(co->co_cellvars) + i] = o; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4005 | } |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 4006 | |
Victor Stinner | c702001 | 2016-08-16 23:40:29 +0200 | [diff] [blame] | 4007 | /* Handle generator/coroutine */ |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 4008 | if (co->co_flags & (CO_GENERATOR | CO_COROUTINE)) { |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4009 | PyObject *gen; |
Yury Selivanov | 94c2263 | 2015-06-04 10:16:51 -0400 | [diff] [blame] | 4010 | PyObject *coro_wrapper = tstate->coroutine_wrapper; |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 4011 | int is_coro = co->co_flags & CO_COROUTINE; |
Yury Selivanov | 94c2263 | 2015-06-04 10:16:51 -0400 | [diff] [blame] | 4012 | |
| 4013 | if (is_coro && tstate->in_coroutine_wrapper) { |
| 4014 | assert(coro_wrapper != NULL); |
| 4015 | PyErr_Format(PyExc_RuntimeError, |
| 4016 | "coroutine wrapper %.200R attempted " |
| 4017 | "to recursively wrap %.200R", |
| 4018 | coro_wrapper, |
| 4019 | co); |
| 4020 | goto fail; |
| 4021 | } |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4022 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4023 | /* Don't need to keep the reference to f_back, it will be set |
| 4024 | * when the generator is resumed. */ |
Serhiy Storchaka | 505ff75 | 2014-02-09 13:33:53 +0200 | [diff] [blame] | 4025 | Py_CLEAR(f->f_back); |
Neil Schemenauer | 2b13ce8 | 2001-06-21 02:41:10 +0000 | [diff] [blame] | 4026 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4027 | PCALL(PCALL_GENERATOR); |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 4028 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4029 | /* Create a new generator that owns the ready to run frame |
| 4030 | * and return that as the value. */ |
Yury Selivanov | 5376ba9 | 2015-06-22 12:19:30 -0400 | [diff] [blame] | 4031 | if (is_coro) { |
| 4032 | gen = PyCoro_New(f, name, qualname); |
| 4033 | } else { |
| 4034 | gen = PyGen_NewWithQualName(f, name, qualname); |
| 4035 | } |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4036 | if (gen == NULL) |
| 4037 | return NULL; |
| 4038 | |
Yury Selivanov | 94c2263 | 2015-06-04 10:16:51 -0400 | [diff] [blame] | 4039 | if (is_coro && coro_wrapper != NULL) { |
| 4040 | PyObject *wrapped; |
| 4041 | tstate->in_coroutine_wrapper = 1; |
| 4042 | wrapped = PyObject_CallFunction(coro_wrapper, "N", gen); |
| 4043 | tstate->in_coroutine_wrapper = 0; |
| 4044 | return wrapped; |
| 4045 | } |
Yury Selivanov | aab3c4a | 2015-06-02 18:43:51 -0400 | [diff] [blame] | 4046 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4047 | return gen; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4048 | } |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 4049 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4050 | retval = PyEval_EvalFrameEx(f,0); |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 4051 | |
Thomas Wouters | ce272b6 | 2007-09-19 21:19:28 +0000 | [diff] [blame] | 4052 | fail: /* Jump here from prelude on failure */ |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 4053 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4054 | /* decref'ing the frame can cause __del__ methods to get invoked, |
| 4055 | which can call back into Python. While we're done with the |
| 4056 | current Python frame (f), the associated C stack is still in use, |
| 4057 | so recursion_depth must be boosted for the duration. |
| 4058 | */ |
| 4059 | assert(tstate != NULL); |
| 4060 | ++tstate->recursion_depth; |
| 4061 | Py_DECREF(f); |
| 4062 | --tstate->recursion_depth; |
| 4063 | return retval; |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 4064 | } |
| 4065 | |
Victor Stinner | 40ee301 | 2014-06-16 15:59:28 +0200 | [diff] [blame] | 4066 | PyObject * |
| 4067 | PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals, |
| 4068 | PyObject **args, int argcount, PyObject **kws, int kwcount, |
| 4069 | PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure) |
| 4070 | { |
| 4071 | return _PyEval_EvalCodeWithName(_co, globals, locals, |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4072 | args, argcount, |
| 4073 | kws, kwcount, |
| 4074 | defs, defcount, |
| 4075 | kwdefs, closure, |
Victor Stinner | 40ee301 | 2014-06-16 15:59:28 +0200 | [diff] [blame] | 4076 | NULL, NULL); |
| 4077 | } |
Tim Peters | 5ca576e | 2001-06-18 22:08:13 +0000 | [diff] [blame] | 4078 | |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 4079 | static PyObject * |
Benjamin Peterson | ce79852 | 2012-01-22 11:24:29 -0500 | [diff] [blame] | 4080 | special_lookup(PyObject *o, _Py_Identifier *id) |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 4081 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4082 | PyObject *res; |
Benjamin Peterson | ce79852 | 2012-01-22 11:24:29 -0500 | [diff] [blame] | 4083 | res = _PyObject_LookupSpecial(o, id); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4084 | if (res == NULL && !PyErr_Occurred()) { |
Benjamin Peterson | ce79852 | 2012-01-22 11:24:29 -0500 | [diff] [blame] | 4085 | PyErr_SetObject(PyExc_AttributeError, id->object); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4086 | return NULL; |
| 4087 | } |
| 4088 | return res; |
Benjamin Peterson | 876b2f2 | 2009-06-28 03:18:59 +0000 | [diff] [blame] | 4089 | } |
| 4090 | |
| 4091 | |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 4092 | /* These 3 functions deal with the exception state of generators. */ |
| 4093 | |
| 4094 | static void |
| 4095 | save_exc_state(PyThreadState *tstate, PyFrameObject *f) |
| 4096 | { |
| 4097 | PyObject *type, *value, *traceback; |
| 4098 | Py_XINCREF(tstate->exc_type); |
| 4099 | Py_XINCREF(tstate->exc_value); |
| 4100 | Py_XINCREF(tstate->exc_traceback); |
| 4101 | type = f->f_exc_type; |
| 4102 | value = f->f_exc_value; |
| 4103 | traceback = f->f_exc_traceback; |
| 4104 | f->f_exc_type = tstate->exc_type; |
| 4105 | f->f_exc_value = tstate->exc_value; |
| 4106 | f->f_exc_traceback = tstate->exc_traceback; |
| 4107 | Py_XDECREF(type); |
| 4108 | Py_XDECREF(value); |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 4109 | Py_XDECREF(traceback); |
Benjamin Peterson | 8788024 | 2011-07-03 16:48:31 -0500 | [diff] [blame] | 4110 | } |
| 4111 | |
| 4112 | static void |
| 4113 | swap_exc_state(PyThreadState *tstate, PyFrameObject *f) |
| 4114 | { |
| 4115 | PyObject *tmp; |
| 4116 | tmp = tstate->exc_type; |
| 4117 | tstate->exc_type = f->f_exc_type; |
| 4118 | f->f_exc_type = tmp; |
| 4119 | tmp = tstate->exc_value; |
| 4120 | tstate->exc_value = f->f_exc_value; |
| 4121 | f->f_exc_value = tmp; |
| 4122 | tmp = tstate->exc_traceback; |
| 4123 | tstate->exc_traceback = f->f_exc_traceback; |
| 4124 | f->f_exc_traceback = tmp; |
| 4125 | } |
| 4126 | |
| 4127 | static void |
| 4128 | restore_and_clear_exc_state(PyThreadState *tstate, PyFrameObject *f) |
| 4129 | { |
| 4130 | PyObject *type, *value, *tb; |
| 4131 | type = tstate->exc_type; |
| 4132 | value = tstate->exc_value; |
| 4133 | tb = tstate->exc_traceback; |
| 4134 | tstate->exc_type = f->f_exc_type; |
| 4135 | tstate->exc_value = f->f_exc_value; |
| 4136 | tstate->exc_traceback = f->f_exc_traceback; |
| 4137 | f->f_exc_type = NULL; |
| 4138 | f->f_exc_value = NULL; |
| 4139 | f->f_exc_traceback = NULL; |
| 4140 | Py_XDECREF(type); |
| 4141 | Py_XDECREF(value); |
| 4142 | Py_XDECREF(tb); |
| 4143 | } |
| 4144 | |
| 4145 | |
Guido van Rossum | 0aa9ee6 | 1996-12-10 18:07:35 +0000 | [diff] [blame] | 4146 | /* Logic for the raise statement (too complicated for inlining). |
| 4147 | This *consumes* a reference count to each of its arguments. */ |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 4148 | static int |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 4149 | do_raise(PyObject *exc, PyObject *cause) |
Guido van Rossum | 0aa9ee6 | 1996-12-10 18:07:35 +0000 | [diff] [blame] | 4150 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4151 | PyObject *type = NULL, *value = NULL; |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 4152 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4153 | if (exc == NULL) { |
| 4154 | /* Reraise */ |
| 4155 | PyThreadState *tstate = PyThreadState_GET(); |
| 4156 | PyObject *tb; |
| 4157 | type = tstate->exc_type; |
| 4158 | value = tstate->exc_value; |
| 4159 | tb = tstate->exc_traceback; |
Victor Stinner | eec9331 | 2016-08-18 18:13:10 +0200 | [diff] [blame] | 4160 | if (type == Py_None || type == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4161 | PyErr_SetString(PyExc_RuntimeError, |
| 4162 | "No active exception to reraise"); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 4163 | return 0; |
| 4164 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4165 | Py_XINCREF(type); |
| 4166 | Py_XINCREF(value); |
| 4167 | Py_XINCREF(tb); |
| 4168 | PyErr_Restore(type, value, tb); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 4169 | return 1; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4170 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 4171 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4172 | /* We support the following forms of raise: |
| 4173 | raise |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 4174 | raise <instance> |
| 4175 | raise <type> */ |
Guido van Rossum | 0aa9ee6 | 1996-12-10 18:07:35 +0000 | [diff] [blame] | 4176 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4177 | if (PyExceptionClass_Check(exc)) { |
| 4178 | type = exc; |
| 4179 | value = PyObject_CallObject(exc, NULL); |
| 4180 | if (value == NULL) |
| 4181 | goto raise_error; |
Benjamin Peterson | 5afa03a | 2011-07-15 14:09:26 -0500 | [diff] [blame] | 4182 | if (!PyExceptionInstance_Check(value)) { |
| 4183 | PyErr_Format(PyExc_TypeError, |
| 4184 | "calling %R should have returned an instance of " |
| 4185 | "BaseException, not %R", |
| 4186 | type, Py_TYPE(value)); |
| 4187 | goto raise_error; |
| 4188 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4189 | } |
| 4190 | else if (PyExceptionInstance_Check(exc)) { |
| 4191 | value = exc; |
| 4192 | type = PyExceptionInstance_Class(exc); |
| 4193 | Py_INCREF(type); |
| 4194 | } |
| 4195 | else { |
| 4196 | /* Not something you can raise. You get an exception |
| 4197 | anyway, just not what you specified :-) */ |
| 4198 | Py_DECREF(exc); |
| 4199 | PyErr_SetString(PyExc_TypeError, |
| 4200 | "exceptions must derive from BaseException"); |
| 4201 | goto raise_error; |
| 4202 | } |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 4203 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4204 | if (cause) { |
| 4205 | PyObject *fixed_cause; |
| 4206 | if (PyExceptionClass_Check(cause)) { |
| 4207 | fixed_cause = PyObject_CallObject(cause, NULL); |
| 4208 | if (fixed_cause == NULL) |
| 4209 | goto raise_error; |
Benjamin Peterson | d5a1c44 | 2012-05-14 22:09:31 -0700 | [diff] [blame] | 4210 | Py_DECREF(cause); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4211 | } |
Benjamin Peterson | d5a1c44 | 2012-05-14 22:09:31 -0700 | [diff] [blame] | 4212 | else if (PyExceptionInstance_Check(cause)) { |
| 4213 | fixed_cause = cause; |
| 4214 | } |
| 4215 | else if (cause == Py_None) { |
| 4216 | Py_DECREF(cause); |
| 4217 | fixed_cause = NULL; |
| 4218 | } |
| 4219 | else { |
| 4220 | PyErr_SetString(PyExc_TypeError, |
| 4221 | "exception causes must derive from " |
| 4222 | "BaseException"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4223 | goto raise_error; |
| 4224 | } |
Benjamin Peterson | d5a1c44 | 2012-05-14 22:09:31 -0700 | [diff] [blame] | 4225 | PyException_SetCause(value, fixed_cause); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4226 | } |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 4227 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4228 | PyErr_SetObject(type, value); |
| 4229 | /* PyErr_SetObject incref's its arguments */ |
| 4230 | Py_XDECREF(value); |
| 4231 | Py_XDECREF(type); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 4232 | return 0; |
Collin Winter | 828f04a | 2007-08-31 00:04:24 +0000 | [diff] [blame] | 4233 | |
| 4234 | raise_error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4235 | Py_XDECREF(value); |
| 4236 | Py_XDECREF(type); |
| 4237 | Py_XDECREF(cause); |
Benjamin Peterson | 31a58ff | 2012-10-12 11:34:51 -0400 | [diff] [blame] | 4238 | return 0; |
Guido van Rossum | 0aa9ee6 | 1996-12-10 18:07:35 +0000 | [diff] [blame] | 4239 | } |
| 4240 | |
Tim Peters | d6d010b | 2001-06-21 02:49:55 +0000 | [diff] [blame] | 4241 | /* Iterate v argcnt times and store the results on the stack (via decreasing |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4242 | sp). Return 1 for success, 0 if error. |
Antoine Pitrou | 9a2310d | 2008-07-25 22:39:39 +0000 | [diff] [blame] | 4243 | |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4244 | If argcntafter == -1, do a simple unpack. If it is >= 0, do an unpack |
| 4245 | with a variable target. |
| 4246 | */ |
Tim Peters | d6d010b | 2001-06-21 02:49:55 +0000 | [diff] [blame] | 4247 | |
Barry Warsaw | e42b18f | 1997-08-25 22:13:04 +0000 | [diff] [blame] | 4248 | static int |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4249 | unpack_iterable(PyObject *v, int argcnt, int argcntafter, PyObject **sp) |
Barry Warsaw | e42b18f | 1997-08-25 22:13:04 +0000 | [diff] [blame] | 4250 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4251 | int i = 0, j = 0; |
| 4252 | Py_ssize_t ll = 0; |
| 4253 | PyObject *it; /* iter(v) */ |
| 4254 | PyObject *w; |
| 4255 | PyObject *l = NULL; /* variable list */ |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 4256 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4257 | assert(v != NULL); |
Tim Peters | d6d010b | 2001-06-21 02:49:55 +0000 | [diff] [blame] | 4258 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4259 | it = PyObject_GetIter(v); |
| 4260 | if (it == NULL) |
| 4261 | goto Error; |
Tim Peters | d6d010b | 2001-06-21 02:49:55 +0000 | [diff] [blame] | 4262 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4263 | for (; i < argcnt; i++) { |
| 4264 | w = PyIter_Next(it); |
| 4265 | if (w == NULL) { |
| 4266 | /* Iterator done, via error or exhaustion. */ |
| 4267 | if (!PyErr_Occurred()) { |
R David Murray | 4171bbe | 2015-04-15 17:08:45 -0400 | [diff] [blame] | 4268 | if (argcntafter == -1) { |
| 4269 | PyErr_Format(PyExc_ValueError, |
| 4270 | "not enough values to unpack (expected %d, got %d)", |
| 4271 | argcnt, i); |
| 4272 | } |
| 4273 | else { |
| 4274 | PyErr_Format(PyExc_ValueError, |
| 4275 | "not enough values to unpack " |
| 4276 | "(expected at least %d, got %d)", |
| 4277 | argcnt + argcntafter, i); |
| 4278 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4279 | } |
| 4280 | goto Error; |
| 4281 | } |
| 4282 | *--sp = w; |
| 4283 | } |
Tim Peters | d6d010b | 2001-06-21 02:49:55 +0000 | [diff] [blame] | 4284 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4285 | if (argcntafter == -1) { |
| 4286 | /* We better have exhausted the iterator now. */ |
| 4287 | w = PyIter_Next(it); |
| 4288 | if (w == NULL) { |
| 4289 | if (PyErr_Occurred()) |
| 4290 | goto Error; |
| 4291 | Py_DECREF(it); |
| 4292 | return 1; |
| 4293 | } |
| 4294 | Py_DECREF(w); |
R David Murray | 4171bbe | 2015-04-15 17:08:45 -0400 | [diff] [blame] | 4295 | PyErr_Format(PyExc_ValueError, |
| 4296 | "too many values to unpack (expected %d)", |
| 4297 | argcnt); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4298 | goto Error; |
| 4299 | } |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4300 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4301 | l = PySequence_List(it); |
| 4302 | if (l == NULL) |
| 4303 | goto Error; |
| 4304 | *--sp = l; |
| 4305 | i++; |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4306 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4307 | ll = PyList_GET_SIZE(l); |
| 4308 | if (ll < argcntafter) { |
R David Murray | 4171bbe | 2015-04-15 17:08:45 -0400 | [diff] [blame] | 4309 | PyErr_Format(PyExc_ValueError, |
| 4310 | "not enough values to unpack (expected at least %d, got %zd)", |
| 4311 | argcnt + argcntafter, argcnt + ll); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4312 | goto Error; |
| 4313 | } |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4314 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4315 | /* Pop the "after-variable" args off the list. */ |
| 4316 | for (j = argcntafter; j > 0; j--, i++) { |
| 4317 | *--sp = PyList_GET_ITEM(l, ll - j); |
| 4318 | } |
| 4319 | /* Resize the list. */ |
| 4320 | Py_SIZE(l) = ll - argcntafter; |
| 4321 | Py_DECREF(it); |
| 4322 | return 1; |
Guido van Rossum | 0368b72 | 2007-05-11 16:50:42 +0000 | [diff] [blame] | 4323 | |
Tim Peters | d6d010b | 2001-06-21 02:49:55 +0000 | [diff] [blame] | 4324 | Error: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4325 | for (; i > 0; i--, sp++) |
| 4326 | Py_DECREF(*sp); |
| 4327 | Py_XDECREF(it); |
| 4328 | return 0; |
Barry Warsaw | e42b18f | 1997-08-25 22:13:04 +0000 | [diff] [blame] | 4329 | } |
| 4330 | |
| 4331 | |
Guido van Rossum | 96a42c8 | 1992-01-12 02:29:51 +0000 | [diff] [blame] | 4332 | #ifdef LLTRACE |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 4333 | static int |
Serhiy Storchaka | ef1585e | 2015-12-25 20:01:53 +0200 | [diff] [blame] | 4334 | prtrace(PyObject *v, const char *str) |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 4335 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4336 | printf("%s ", str); |
| 4337 | if (PyObject_Print(v, stdout, 0) != 0) |
| 4338 | PyErr_Clear(); /* Don't know what else to do */ |
| 4339 | printf("\n"); |
| 4340 | return 1; |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 4341 | } |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 4342 | #endif |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 4343 | |
Guido van Rossum | 9c8d70d | 1992-03-23 18:19:28 +0000 | [diff] [blame] | 4344 | static void |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4345 | call_exc_trace(Py_tracefunc func, PyObject *self, |
| 4346 | PyThreadState *tstate, PyFrameObject *f) |
Guido van Rossum | 9c8d70d | 1992-03-23 18:19:28 +0000 | [diff] [blame] | 4347 | { |
Victor Stinner | aaa8ed8 | 2013-07-10 13:57:55 +0200 | [diff] [blame] | 4348 | PyObject *type, *value, *traceback, *orig_traceback, *arg; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4349 | int err; |
Antoine Pitrou | 8933521 | 2013-11-23 14:05:23 +0100 | [diff] [blame] | 4350 | PyErr_Fetch(&type, &value, &orig_traceback); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4351 | if (value == NULL) { |
| 4352 | value = Py_None; |
| 4353 | Py_INCREF(value); |
| 4354 | } |
Antoine Pitrou | 8933521 | 2013-11-23 14:05:23 +0100 | [diff] [blame] | 4355 | PyErr_NormalizeException(&type, &value, &orig_traceback); |
| 4356 | traceback = (orig_traceback != NULL) ? orig_traceback : Py_None; |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4357 | arg = PyTuple_Pack(3, type, value, traceback); |
| 4358 | if (arg == NULL) { |
Antoine Pitrou | 8933521 | 2013-11-23 14:05:23 +0100 | [diff] [blame] | 4359 | PyErr_Restore(type, value, orig_traceback); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4360 | return; |
| 4361 | } |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4362 | err = call_trace(func, self, tstate, f, PyTrace_EXCEPTION, arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4363 | Py_DECREF(arg); |
| 4364 | if (err == 0) |
Victor Stinner | aaa8ed8 | 2013-07-10 13:57:55 +0200 | [diff] [blame] | 4365 | PyErr_Restore(type, value, orig_traceback); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4366 | else { |
| 4367 | Py_XDECREF(type); |
| 4368 | Py_XDECREF(value); |
Victor Stinner | aaa8ed8 | 2013-07-10 13:57:55 +0200 | [diff] [blame] | 4369 | Py_XDECREF(orig_traceback); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4370 | } |
Guido van Rossum | 9c8d70d | 1992-03-23 18:19:28 +0000 | [diff] [blame] | 4371 | } |
| 4372 | |
Amaury Forgeot d'Arc | f05149a | 2007-11-13 01:05:30 +0000 | [diff] [blame] | 4373 | static int |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4374 | call_trace_protected(Py_tracefunc func, PyObject *obj, |
| 4375 | PyThreadState *tstate, PyFrameObject *frame, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4376 | int what, PyObject *arg) |
Fred Drake | 4ec5d56 | 2001-10-04 19:26:43 +0000 | [diff] [blame] | 4377 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4378 | PyObject *type, *value, *traceback; |
| 4379 | int err; |
| 4380 | PyErr_Fetch(&type, &value, &traceback); |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4381 | err = call_trace(func, obj, tstate, frame, what, arg); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4382 | if (err == 0) |
| 4383 | { |
| 4384 | PyErr_Restore(type, value, traceback); |
| 4385 | return 0; |
| 4386 | } |
| 4387 | else { |
| 4388 | Py_XDECREF(type); |
| 4389 | Py_XDECREF(value); |
| 4390 | Py_XDECREF(traceback); |
| 4391 | return -1; |
| 4392 | } |
Fred Drake | 4ec5d56 | 2001-10-04 19:26:43 +0000 | [diff] [blame] | 4393 | } |
| 4394 | |
Guido van Rossum | 9c8d70d | 1992-03-23 18:19:28 +0000 | [diff] [blame] | 4395 | static int |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4396 | call_trace(Py_tracefunc func, PyObject *obj, |
| 4397 | PyThreadState *tstate, PyFrameObject *frame, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4398 | int what, PyObject *arg) |
Guido van Rossum | 96a42c8 | 1992-01-12 02:29:51 +0000 | [diff] [blame] | 4399 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4400 | int result; |
| 4401 | if (tstate->tracing) |
| 4402 | return 0; |
| 4403 | tstate->tracing++; |
| 4404 | tstate->use_tracing = 0; |
| 4405 | result = func(obj, frame, what, arg); |
| 4406 | tstate->use_tracing = ((tstate->c_tracefunc != NULL) |
| 4407 | || (tstate->c_profilefunc != NULL)); |
| 4408 | tstate->tracing--; |
| 4409 | return result; |
Guido van Rossum | 96a42c8 | 1992-01-12 02:29:51 +0000 | [diff] [blame] | 4410 | } |
| 4411 | |
Guido van Rossum | a12fe4e | 2003-04-09 19:06:21 +0000 | [diff] [blame] | 4412 | PyObject * |
| 4413 | _PyEval_CallTracing(PyObject *func, PyObject *args) |
| 4414 | { |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4415 | PyThreadState *tstate = PyThreadState_GET(); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4416 | int save_tracing = tstate->tracing; |
| 4417 | int save_use_tracing = tstate->use_tracing; |
| 4418 | PyObject *result; |
Guido van Rossum | a12fe4e | 2003-04-09 19:06:21 +0000 | [diff] [blame] | 4419 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4420 | tstate->tracing = 0; |
| 4421 | tstate->use_tracing = ((tstate->c_tracefunc != NULL) |
| 4422 | || (tstate->c_profilefunc != NULL)); |
| 4423 | result = PyObject_Call(func, args, NULL); |
| 4424 | tstate->tracing = save_tracing; |
| 4425 | tstate->use_tracing = save_use_tracing; |
| 4426 | return result; |
Guido van Rossum | a12fe4e | 2003-04-09 19:06:21 +0000 | [diff] [blame] | 4427 | } |
| 4428 | |
Alexandre Vassalotti | 7b82b40 | 2009-07-21 04:30:03 +0000 | [diff] [blame] | 4429 | /* See Objects/lnotab_notes.txt for a description of how tracing works. */ |
Michael W. Hudson | 006c752 | 2002-11-08 13:08:46 +0000 | [diff] [blame] | 4430 | static int |
Tim Peters | 8a5c3c7 | 2004-04-05 19:36:21 +0000 | [diff] [blame] | 4431 | maybe_call_line_trace(Py_tracefunc func, PyObject *obj, |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4432 | PyThreadState *tstate, PyFrameObject *frame, |
| 4433 | int *instr_lb, int *instr_ub, int *instr_prev) |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 4434 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4435 | int result = 0; |
| 4436 | int line = frame->f_lineno; |
Michael W. Hudson | 006c752 | 2002-11-08 13:08:46 +0000 | [diff] [blame] | 4437 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4438 | /* If the last instruction executed isn't in the current |
| 4439 | instruction window, reset the window. |
| 4440 | */ |
| 4441 | if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { |
| 4442 | PyAddrPair bounds; |
| 4443 | line = _PyCode_CheckLineNumber(frame->f_code, frame->f_lasti, |
| 4444 | &bounds); |
| 4445 | *instr_lb = bounds.ap_lower; |
| 4446 | *instr_ub = bounds.ap_upper; |
| 4447 | } |
| 4448 | /* If the last instruction falls at the start of a line or if |
| 4449 | it represents a jump backwards, update the frame's line |
| 4450 | number and call the trace function. */ |
| 4451 | if (frame->f_lasti == *instr_lb || frame->f_lasti < *instr_prev) { |
| 4452 | frame->f_lineno = line; |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4453 | result = call_trace(func, obj, tstate, frame, PyTrace_LINE, Py_None); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4454 | } |
| 4455 | *instr_prev = frame->f_lasti; |
| 4456 | return result; |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 4457 | } |
| 4458 | |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 4459 | void |
| 4460 | PyEval_SetProfile(Py_tracefunc func, PyObject *arg) |
Fred Drake | d083839 | 2001-06-16 21:02:31 +0000 | [diff] [blame] | 4461 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4462 | PyThreadState *tstate = PyThreadState_GET(); |
| 4463 | PyObject *temp = tstate->c_profileobj; |
| 4464 | Py_XINCREF(arg); |
| 4465 | tstate->c_profilefunc = NULL; |
| 4466 | tstate->c_profileobj = NULL; |
| 4467 | /* Must make sure that tracing is not ignored if 'temp' is freed */ |
| 4468 | tstate->use_tracing = tstate->c_tracefunc != NULL; |
| 4469 | Py_XDECREF(temp); |
| 4470 | tstate->c_profilefunc = func; |
| 4471 | tstate->c_profileobj = arg; |
| 4472 | /* Flag that tracing or profiling is turned on */ |
| 4473 | tstate->use_tracing = (func != NULL) || (tstate->c_tracefunc != NULL); |
Fred Drake | 5755ce6 | 2001-06-27 19:19:46 +0000 | [diff] [blame] | 4474 | } |
| 4475 | |
| 4476 | void |
| 4477 | PyEval_SetTrace(Py_tracefunc func, PyObject *arg) |
| 4478 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4479 | PyThreadState *tstate = PyThreadState_GET(); |
| 4480 | PyObject *temp = tstate->c_traceobj; |
| 4481 | _Py_TracingPossible += (func != NULL) - (tstate->c_tracefunc != NULL); |
| 4482 | Py_XINCREF(arg); |
| 4483 | tstate->c_tracefunc = NULL; |
| 4484 | tstate->c_traceobj = NULL; |
| 4485 | /* Must make sure that profiling is not ignored if 'temp' is freed */ |
| 4486 | tstate->use_tracing = tstate->c_profilefunc != NULL; |
| 4487 | Py_XDECREF(temp); |
| 4488 | tstate->c_tracefunc = func; |
| 4489 | tstate->c_traceobj = arg; |
| 4490 | /* Flag that tracing or profiling is turned on */ |
| 4491 | tstate->use_tracing = ((func != NULL) |
| 4492 | || (tstate->c_profilefunc != NULL)); |
Fred Drake | d083839 | 2001-06-16 21:02:31 +0000 | [diff] [blame] | 4493 | } |
| 4494 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4495 | void |
Yury Selivanov | d8cf382 | 2015-06-01 12:15:23 -0400 | [diff] [blame] | 4496 | _PyEval_SetCoroutineWrapper(PyObject *wrapper) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4497 | { |
| 4498 | PyThreadState *tstate = PyThreadState_GET(); |
| 4499 | |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4500 | Py_XINCREF(wrapper); |
Serhiy Storchaka | 4884271 | 2016-04-06 09:45:48 +0300 | [diff] [blame] | 4501 | Py_XSETREF(tstate->coroutine_wrapper, wrapper); |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4502 | } |
| 4503 | |
| 4504 | PyObject * |
Yury Selivanov | d8cf382 | 2015-06-01 12:15:23 -0400 | [diff] [blame] | 4505 | _PyEval_GetCoroutineWrapper(void) |
Yury Selivanov | 7544508 | 2015-05-11 22:57:16 -0400 | [diff] [blame] | 4506 | { |
| 4507 | PyThreadState *tstate = PyThreadState_GET(); |
| 4508 | return tstate->coroutine_wrapper; |
| 4509 | } |
| 4510 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 4511 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4512 | PyEval_GetBuiltins(void) |
Guido van Rossum | 6135a87 | 1995-01-09 17:53:26 +0000 | [diff] [blame] | 4513 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4514 | PyFrameObject *current_frame = PyEval_GetFrame(); |
| 4515 | if (current_frame == NULL) |
| 4516 | return PyThreadState_GET()->interp->builtins; |
| 4517 | else |
| 4518 | return current_frame->f_builtins; |
Guido van Rossum | 6135a87 | 1995-01-09 17:53:26 +0000 | [diff] [blame] | 4519 | } |
| 4520 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 4521 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4522 | PyEval_GetLocals(void) |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 4523 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4524 | PyFrameObject *current_frame = PyEval_GetFrame(); |
Victor Stinner | 41bb43a | 2013-10-29 01:19:37 +0100 | [diff] [blame] | 4525 | if (current_frame == NULL) { |
| 4526 | PyErr_SetString(PyExc_SystemError, "frame does not exist"); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4527 | return NULL; |
Victor Stinner | 41bb43a | 2013-10-29 01:19:37 +0100 | [diff] [blame] | 4528 | } |
| 4529 | |
| 4530 | if (PyFrame_FastToLocalsWithError(current_frame) < 0) |
| 4531 | return NULL; |
| 4532 | |
| 4533 | assert(current_frame->f_locals != NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4534 | return current_frame->f_locals; |
Guido van Rossum | 5b72218 | 1993-03-30 17:46:03 +0000 | [diff] [blame] | 4535 | } |
| 4536 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 4537 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4538 | PyEval_GetGlobals(void) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 4539 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4540 | PyFrameObject *current_frame = PyEval_GetFrame(); |
| 4541 | if (current_frame == NULL) |
| 4542 | return NULL; |
Victor Stinner | 41bb43a | 2013-10-29 01:19:37 +0100 | [diff] [blame] | 4543 | |
| 4544 | assert(current_frame->f_globals != NULL); |
| 4545 | return current_frame->f_globals; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 4546 | } |
| 4547 | |
Guido van Rossum | 6297a7a | 2003-02-19 15:53:17 +0000 | [diff] [blame] | 4548 | PyFrameObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4549 | PyEval_GetFrame(void) |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 4550 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4551 | PyThreadState *tstate = PyThreadState_GET(); |
| 4552 | return _PyThreadState_GetFrame(tstate); |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 4553 | } |
| 4554 | |
Guido van Rossum | 6135a87 | 1995-01-09 17:53:26 +0000 | [diff] [blame] | 4555 | int |
Tim Peters | 5ba5866 | 2001-07-16 02:29:45 +0000 | [diff] [blame] | 4556 | PyEval_MergeCompilerFlags(PyCompilerFlags *cf) |
Jeremy Hylton | 061d106 | 2001-03-22 02:32:48 +0000 | [diff] [blame] | 4557 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4558 | PyFrameObject *current_frame = PyEval_GetFrame(); |
| 4559 | int result = cf->cf_flags != 0; |
Tim Peters | 5ba5866 | 2001-07-16 02:29:45 +0000 | [diff] [blame] | 4560 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4561 | if (current_frame != NULL) { |
| 4562 | const int codeflags = current_frame->f_code->co_flags; |
| 4563 | const int compilerflags = codeflags & PyCF_MASK; |
| 4564 | if (compilerflags) { |
| 4565 | result = 1; |
| 4566 | cf->cf_flags |= compilerflags; |
| 4567 | } |
Neil Schemenauer | c24ea08 | 2002-03-22 23:53:36 +0000 | [diff] [blame] | 4568 | #if 0 /* future keyword */ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4569 | if (codeflags & CO_GENERATOR_ALLOWED) { |
| 4570 | result = 1; |
| 4571 | cf->cf_flags |= CO_GENERATOR_ALLOWED; |
| 4572 | } |
Neil Schemenauer | c24ea08 | 2002-03-22 23:53:36 +0000 | [diff] [blame] | 4573 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4574 | } |
| 4575 | return result; |
Jeremy Hylton | 061d106 | 2001-03-22 02:32:48 +0000 | [diff] [blame] | 4576 | } |
| 4577 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 4578 | |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 4579 | /* External interface to call any callable object. |
Antoine Pitrou | 8689a10 | 2010-04-01 16:53:15 +0000 | [diff] [blame] | 4580 | The arg must be a tuple or NULL. The kw must be a dict or NULL. */ |
Guido van Rossum | e59214e | 1994-08-30 08:01:59 +0000 | [diff] [blame] | 4581 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 4582 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 4583 | PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw) |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 4584 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4585 | PyObject *result; |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 4586 | |
Victor Stinner | 59b356d | 2015-03-16 11:52:32 +0100 | [diff] [blame] | 4587 | #ifdef Py_DEBUG |
| 4588 | /* PyEval_CallObjectWithKeywords() must not be called with an exception |
| 4589 | set. It raises a new exception if parameters are invalid or if |
| 4590 | PyTuple_New() fails, and so the original exception is lost. */ |
| 4591 | assert(!PyErr_Occurred()); |
| 4592 | #endif |
| 4593 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4594 | if (arg == NULL) { |
| 4595 | arg = PyTuple_New(0); |
| 4596 | if (arg == NULL) |
| 4597 | return NULL; |
| 4598 | } |
| 4599 | else if (!PyTuple_Check(arg)) { |
| 4600 | PyErr_SetString(PyExc_TypeError, |
| 4601 | "argument list must be a tuple"); |
| 4602 | return NULL; |
| 4603 | } |
| 4604 | else |
| 4605 | Py_INCREF(arg); |
Guido van Rossum | 681d79a | 1995-07-18 14:51:37 +0000 | [diff] [blame] | 4606 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4607 | if (kw != NULL && !PyDict_Check(kw)) { |
| 4608 | PyErr_SetString(PyExc_TypeError, |
| 4609 | "keyword list must be a dictionary"); |
| 4610 | Py_DECREF(arg); |
| 4611 | return NULL; |
| 4612 | } |
Guido van Rossum | e3e61c1 | 1995-08-04 04:14:47 +0000 | [diff] [blame] | 4613 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4614 | result = PyObject_Call(func, arg, kw); |
| 4615 | Py_DECREF(arg); |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 4616 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4617 | return result; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4618 | } |
| 4619 | |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 4620 | const char * |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 4621 | PyEval_GetFuncName(PyObject *func) |
Jeremy Hylton | 512a237 | 2001-04-11 13:52:29 +0000 | [diff] [blame] | 4622 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4623 | if (PyMethod_Check(func)) |
| 4624 | return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func)); |
| 4625 | else if (PyFunction_Check(func)) |
| 4626 | return _PyUnicode_AsString(((PyFunctionObject*)func)->func_name); |
| 4627 | else if (PyCFunction_Check(func)) |
| 4628 | return ((PyCFunctionObject*)func)->m_ml->ml_name; |
| 4629 | else |
| 4630 | return func->ob_type->tp_name; |
Jeremy Hylton | 512a237 | 2001-04-11 13:52:29 +0000 | [diff] [blame] | 4631 | } |
| 4632 | |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 4633 | const char * |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 4634 | PyEval_GetFuncDesc(PyObject *func) |
Jeremy Hylton | 512a237 | 2001-04-11 13:52:29 +0000 | [diff] [blame] | 4635 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4636 | if (PyMethod_Check(func)) |
| 4637 | return "()"; |
| 4638 | else if (PyFunction_Check(func)) |
| 4639 | return "()"; |
| 4640 | else if (PyCFunction_Check(func)) |
| 4641 | return "()"; |
| 4642 | else |
| 4643 | return " object"; |
Jeremy Hylton | 512a237 | 2001-04-11 13:52:29 +0000 | [diff] [blame] | 4644 | } |
| 4645 | |
Neal Norwitz | addfe0c | 2002-11-10 14:33:26 +0000 | [diff] [blame] | 4646 | static void |
Jeremy Hylton | 192690e | 2002-08-16 18:36:11 +0000 | [diff] [blame] | 4647 | err_args(PyObject *func, int flags, int nargs) |
| 4648 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4649 | if (flags & METH_NOARGS) |
| 4650 | PyErr_Format(PyExc_TypeError, |
| 4651 | "%.200s() takes no arguments (%d given)", |
| 4652 | ((PyCFunctionObject *)func)->m_ml->ml_name, |
| 4653 | nargs); |
| 4654 | else |
| 4655 | PyErr_Format(PyExc_TypeError, |
| 4656 | "%.200s() takes exactly one argument (%d given)", |
| 4657 | ((PyCFunctionObject *)func)->m_ml->ml_name, |
| 4658 | nargs); |
Jeremy Hylton | 192690e | 2002-08-16 18:36:11 +0000 | [diff] [blame] | 4659 | } |
| 4660 | |
Armin Rigo | 1c2d7e5 | 2005-09-20 18:34:01 +0000 | [diff] [blame] | 4661 | #define C_TRACE(x, call) \ |
Nicholas Bastin | d858a77 | 2004-06-25 23:31:06 +0000 | [diff] [blame] | 4662 | if (tstate->use_tracing && tstate->c_profilefunc) { \ |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4663 | if (call_trace(tstate->c_profilefunc, tstate->c_profileobj, \ |
| 4664 | tstate, tstate->frame, \ |
| 4665 | PyTrace_C_CALL, func)) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4666 | x = NULL; \ |
| 4667 | } \ |
| 4668 | else { \ |
| 4669 | x = call; \ |
| 4670 | if (tstate->c_profilefunc != NULL) { \ |
| 4671 | if (x == NULL) { \ |
| 4672 | call_trace_protected(tstate->c_profilefunc, \ |
| 4673 | tstate->c_profileobj, \ |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4674 | tstate, tstate->frame, \ |
| 4675 | PyTrace_C_EXCEPTION, func); \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4676 | /* XXX should pass (type, value, tb) */ \ |
| 4677 | } else { \ |
| 4678 | if (call_trace(tstate->c_profilefunc, \ |
| 4679 | tstate->c_profileobj, \ |
Victor Stinner | fdeb6ec | 2013-12-13 02:01:38 +0100 | [diff] [blame] | 4680 | tstate, tstate->frame, \ |
| 4681 | PyTrace_C_RETURN, func)) { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4682 | Py_DECREF(x); \ |
| 4683 | x = NULL; \ |
| 4684 | } \ |
| 4685 | } \ |
| 4686 | } \ |
| 4687 | } \ |
Nicholas Bastin | d858a77 | 2004-06-25 23:31:06 +0000 | [diff] [blame] | 4688 | } else { \ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4689 | x = call; \ |
| 4690 | } |
Nicholas Bastin | c69ebe8 | 2004-03-24 21:57:10 +0000 | [diff] [blame] | 4691 | |
Jeremy Hylton | e8c0432 | 2002-08-16 17:47:26 +0000 | [diff] [blame] | 4692 | static PyObject * |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 4693 | call_function(PyObject ***pp_stack, int oparg |
| 4694 | #ifdef WITH_TSC |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4695 | , uint64* pintr0, uint64* pintr1 |
Martin v. Löwis | f30d60e | 2004-06-08 08:17:44 +0000 | [diff] [blame] | 4696 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4697 | ) |
Jeremy Hylton | e8c0432 | 2002-08-16 17:47:26 +0000 | [diff] [blame] | 4698 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4699 | int na = oparg & 0xff; |
| 4700 | int nk = (oparg>>8) & 0xff; |
| 4701 | int n = na + 2 * nk; |
| 4702 | PyObject **pfunc = (*pp_stack) - n - 1; |
| 4703 | PyObject *func = *pfunc; |
| 4704 | PyObject *x, *w; |
Jeremy Hylton | e8c0432 | 2002-08-16 17:47:26 +0000 | [diff] [blame] | 4705 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4706 | /* Always dispatch PyCFunction first, because these are |
| 4707 | presumed to be the most frequent callable object. |
| 4708 | */ |
| 4709 | if (PyCFunction_Check(func) && nk == 0) { |
| 4710 | int flags = PyCFunction_GET_FLAGS(func); |
| 4711 | PyThreadState *tstate = PyThreadState_GET(); |
Raymond Hettinger | a7f56bc | 2004-06-26 04:34:33 +0000 | [diff] [blame] | 4712 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4713 | PCALL(PCALL_CFUNCTION); |
| 4714 | if (flags & (METH_NOARGS | METH_O)) { |
| 4715 | PyCFunction meth = PyCFunction_GET_FUNCTION(func); |
| 4716 | PyObject *self = PyCFunction_GET_SELF(func); |
| 4717 | if (flags & METH_NOARGS && na == 0) { |
| 4718 | C_TRACE(x, (*meth)(self,NULL)); |
Victor Stinner | 4a7cc88 | 2015-03-06 23:35:27 +0100 | [diff] [blame] | 4719 | |
Victor Stinner | efde146 | 2015-03-21 15:04:43 +0100 | [diff] [blame] | 4720 | x = _Py_CheckFunctionResult(func, x, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4721 | } |
| 4722 | else if (flags & METH_O && na == 1) { |
| 4723 | PyObject *arg = EXT_POP(*pp_stack); |
| 4724 | C_TRACE(x, (*meth)(self,arg)); |
| 4725 | Py_DECREF(arg); |
Victor Stinner | 4a7cc88 | 2015-03-06 23:35:27 +0100 | [diff] [blame] | 4726 | |
Victor Stinner | efde146 | 2015-03-21 15:04:43 +0100 | [diff] [blame] | 4727 | x = _Py_CheckFunctionResult(func, x, NULL); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4728 | } |
| 4729 | else { |
| 4730 | err_args(func, flags, na); |
| 4731 | x = NULL; |
| 4732 | } |
| 4733 | } |
| 4734 | else { |
| 4735 | PyObject *callargs; |
| 4736 | callargs = load_args(pp_stack, na); |
Victor Stinner | 0ff0f54 | 2013-07-08 22:27:42 +0200 | [diff] [blame] | 4737 | if (callargs != NULL) { |
| 4738 | READ_TIMESTAMP(*pintr0); |
| 4739 | C_TRACE(x, PyCFunction_Call(func,callargs,NULL)); |
| 4740 | READ_TIMESTAMP(*pintr1); |
| 4741 | Py_XDECREF(callargs); |
| 4742 | } |
| 4743 | else { |
| 4744 | x = NULL; |
| 4745 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4746 | } |
Victor Stinner | 4a7cc88 | 2015-03-06 23:35:27 +0100 | [diff] [blame] | 4747 | } |
| 4748 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4749 | if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) { |
| 4750 | /* optimize access to bound methods */ |
| 4751 | PyObject *self = PyMethod_GET_SELF(func); |
| 4752 | PCALL(PCALL_METHOD); |
| 4753 | PCALL(PCALL_BOUND_METHOD); |
| 4754 | Py_INCREF(self); |
| 4755 | func = PyMethod_GET_FUNCTION(func); |
| 4756 | Py_INCREF(func); |
Serhiy Storchaka | 57a01d3 | 2016-04-10 18:05:40 +0300 | [diff] [blame] | 4757 | Py_SETREF(*pfunc, self); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4758 | na++; |
| 4759 | n++; |
| 4760 | } else |
| 4761 | Py_INCREF(func); |
| 4762 | READ_TIMESTAMP(*pintr0); |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4763 | if (PyFunction_Check(func)) { |
| 4764 | x = fast_function(func, (*pp_stack) - n, n, na, nk); |
| 4765 | } |
| 4766 | else { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4767 | x = do_call(func, pp_stack, na, nk); |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4768 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4769 | READ_TIMESTAMP(*pintr1); |
| 4770 | Py_DECREF(func); |
Victor Stinner | 4a7cc88 | 2015-03-06 23:35:27 +0100 | [diff] [blame] | 4771 | |
| 4772 | assert((x != NULL) ^ (PyErr_Occurred() != NULL)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4773 | } |
Tim Peters | 8a5c3c7 | 2004-04-05 19:36:21 +0000 | [diff] [blame] | 4774 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4775 | /* Clear the stack of the function object. Also removes |
| 4776 | the arguments in case they weren't consumed already |
| 4777 | (fast_function() and err_args() leave them on the stack). |
| 4778 | */ |
| 4779 | while ((*pp_stack) > pfunc) { |
| 4780 | w = EXT_POP(*pp_stack); |
| 4781 | Py_DECREF(w); |
| 4782 | PCALL(PCALL_POP); |
| 4783 | } |
Victor Stinner | ace47d7 | 2013-07-18 01:41:08 +0200 | [diff] [blame] | 4784 | |
Victor Stinner | 4a7cc88 | 2015-03-06 23:35:27 +0100 | [diff] [blame] | 4785 | assert((x != NULL) ^ (PyErr_Occurred() != NULL)); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4786 | return x; |
Jeremy Hylton | e8c0432 | 2002-08-16 17:47:26 +0000 | [diff] [blame] | 4787 | } |
| 4788 | |
Jeremy Hylton | 192690e | 2002-08-16 18:36:11 +0000 | [diff] [blame] | 4789 | /* The fast_function() function optimize calls for which no argument |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4790 | tuple is necessary; the objects are passed directly from the stack. |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 4791 | For the simplest case -- a function that takes only positional |
| 4792 | arguments and is called with only positional arguments -- it |
| 4793 | inlines the most primitive frame setup code from |
| 4794 | PyEval_EvalCodeEx(), which vastly reduces the checks that must be |
| 4795 | done before evaluating the frame. |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4796 | */ |
| 4797 | |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4798 | static PyObject* |
| 4799 | _PyFunction_FastCallNoKw(PyObject **args, Py_ssize_t na, |
| 4800 | PyCodeObject *co, PyObject *globals) |
| 4801 | { |
| 4802 | PyFrameObject *f; |
| 4803 | PyThreadState *tstate = PyThreadState_GET(); |
| 4804 | PyObject **fastlocals; |
| 4805 | Py_ssize_t i; |
| 4806 | PyObject *result; |
| 4807 | |
| 4808 | PCALL(PCALL_FASTER_FUNCTION); |
| 4809 | assert(globals != NULL); |
| 4810 | /* XXX Perhaps we should create a specialized |
| 4811 | PyFrame_New() that doesn't take locals, but does |
| 4812 | take builtins without sanity checking them. |
| 4813 | */ |
| 4814 | assert(tstate != NULL); |
| 4815 | f = PyFrame_New(tstate, co, globals, NULL); |
| 4816 | if (f == NULL) { |
| 4817 | return NULL; |
| 4818 | } |
| 4819 | |
| 4820 | fastlocals = f->f_localsplus; |
| 4821 | |
| 4822 | for (i = 0; i < na; i++) { |
| 4823 | Py_INCREF(*args); |
| 4824 | fastlocals[i] = *args++; |
| 4825 | } |
| 4826 | result = PyEval_EvalFrameEx(f,0); |
| 4827 | |
| 4828 | ++tstate->recursion_depth; |
| 4829 | Py_DECREF(f); |
| 4830 | --tstate->recursion_depth; |
| 4831 | |
| 4832 | return result; |
| 4833 | } |
| 4834 | |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4835 | static PyObject * |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4836 | fast_function(PyObject *func, PyObject **stack, int n, int na, int nk) |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4837 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4838 | PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); |
| 4839 | PyObject *globals = PyFunction_GET_GLOBALS(func); |
| 4840 | PyObject *argdefs = PyFunction_GET_DEFAULTS(func); |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4841 | PyObject *kwdefs, *closure, *name, *qualname; |
| 4842 | PyObject **d; |
| 4843 | int nd; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4844 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4845 | PCALL(PCALL_FUNCTION); |
| 4846 | PCALL(PCALL_FAST_FUNCTION); |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 4847 | |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4848 | if (argdefs == NULL && co->co_argcount == na && |
| 4849 | co->co_kwonlyargcount == 0 && nk == 0 && |
| 4850 | co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) |
| 4851 | { |
| 4852 | return _PyFunction_FastCallNoKw(stack, na, co, globals); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4853 | } |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4854 | |
| 4855 | kwdefs = PyFunction_GET_KW_DEFAULTS(func); |
| 4856 | closure = PyFunction_GET_CLOSURE(func); |
| 4857 | name = ((PyFunctionObject *)func) -> func_name; |
| 4858 | qualname = ((PyFunctionObject *)func) -> func_qualname; |
| 4859 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4860 | if (argdefs != NULL) { |
| 4861 | d = &PyTuple_GET_ITEM(argdefs, 0); |
| 4862 | nd = Py_SIZE(argdefs); |
| 4863 | } |
Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame^] | 4864 | else { |
| 4865 | d = NULL; |
| 4866 | nd = 0; |
| 4867 | } |
| 4868 | return _PyEval_EvalCodeWithName((PyObject*)co, globals, (PyObject *)NULL, |
| 4869 | stack, na, |
| 4870 | stack + na, nk, |
| 4871 | d, nd, kwdefs, |
| 4872 | closure, name, qualname); |
| 4873 | } |
| 4874 | |
| 4875 | PyObject * |
| 4876 | _PyFunction_FastCall(PyObject *func, PyObject **args, int nargs, PyObject *kwargs) |
| 4877 | { |
| 4878 | PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); |
| 4879 | PyObject *globals = PyFunction_GET_GLOBALS(func); |
| 4880 | PyObject *argdefs = PyFunction_GET_DEFAULTS(func); |
| 4881 | PyObject *kwdefs, *closure, *name, *qualname; |
| 4882 | PyObject **d; |
| 4883 | int nd; |
| 4884 | |
| 4885 | PCALL(PCALL_FUNCTION); |
| 4886 | PCALL(PCALL_FAST_FUNCTION); |
| 4887 | |
| 4888 | /* issue #27128: support for keywords will come later */ |
| 4889 | assert(kwargs == NULL); |
| 4890 | |
| 4891 | if (argdefs == NULL && co->co_argcount == nargs && |
| 4892 | co->co_kwonlyargcount == 0 && |
| 4893 | co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) |
| 4894 | { |
| 4895 | return _PyFunction_FastCallNoKw(args, nargs, co, globals); |
| 4896 | } |
| 4897 | |
| 4898 | kwdefs = PyFunction_GET_KW_DEFAULTS(func); |
| 4899 | closure = PyFunction_GET_CLOSURE(func); |
| 4900 | name = ((PyFunctionObject *)func) -> func_name; |
| 4901 | qualname = ((PyFunctionObject *)func) -> func_qualname; |
| 4902 | |
| 4903 | if (argdefs != NULL) { |
| 4904 | d = &PyTuple_GET_ITEM(argdefs, 0); |
| 4905 | nd = Py_SIZE(argdefs); |
| 4906 | } |
| 4907 | else { |
| 4908 | d = NULL; |
| 4909 | nd = 0; |
| 4910 | } |
| 4911 | return _PyEval_EvalCodeWithName((PyObject*)co, globals, (PyObject *)NULL, |
| 4912 | args, nargs, |
| 4913 | NULL, 0, |
| 4914 | d, nd, kwdefs, |
| 4915 | closure, name, qualname); |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4916 | } |
| 4917 | |
| 4918 | static PyObject * |
Ka-Ping Yee | 2057970 | 2001-01-15 22:14:16 +0000 | [diff] [blame] | 4919 | update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack, |
| 4920 | PyObject *func) |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4921 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4922 | PyObject *kwdict = NULL; |
| 4923 | if (orig_kwdict == NULL) |
| 4924 | kwdict = PyDict_New(); |
| 4925 | else { |
| 4926 | kwdict = PyDict_Copy(orig_kwdict); |
| 4927 | Py_DECREF(orig_kwdict); |
| 4928 | } |
| 4929 | if (kwdict == NULL) |
| 4930 | return NULL; |
| 4931 | while (--nk >= 0) { |
| 4932 | int err; |
| 4933 | PyObject *value = EXT_POP(*pp_stack); |
| 4934 | PyObject *key = EXT_POP(*pp_stack); |
| 4935 | if (PyDict_GetItem(kwdict, key) != NULL) { |
| 4936 | PyErr_Format(PyExc_TypeError, |
| 4937 | "%.200s%s got multiple values " |
| 4938 | "for keyword argument '%U'", |
| 4939 | PyEval_GetFuncName(func), |
| 4940 | PyEval_GetFuncDesc(func), |
| 4941 | key); |
| 4942 | Py_DECREF(key); |
| 4943 | Py_DECREF(value); |
| 4944 | Py_DECREF(kwdict); |
| 4945 | return NULL; |
| 4946 | } |
| 4947 | err = PyDict_SetItem(kwdict, key, value); |
| 4948 | Py_DECREF(key); |
| 4949 | Py_DECREF(value); |
| 4950 | if (err) { |
| 4951 | Py_DECREF(kwdict); |
| 4952 | return NULL; |
| 4953 | } |
| 4954 | } |
| 4955 | return kwdict; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4956 | } |
| 4957 | |
| 4958 | static PyObject * |
| 4959 | update_star_args(int nstack, int nstar, PyObject *stararg, |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4960 | PyObject ***pp_stack) |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4961 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4962 | PyObject *callargs, *w; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4963 | |
Serhiy Storchaka | 79d6e8d | 2016-04-19 23:37:17 +0300 | [diff] [blame] | 4964 | if (!nstack) { |
| 4965 | if (!stararg) { |
| 4966 | /* There are no positional arguments on the stack and there is no |
| 4967 | sequence to be unpacked. */ |
| 4968 | return PyTuple_New(0); |
| 4969 | } |
| 4970 | if (PyTuple_CheckExact(stararg)) { |
| 4971 | /* No arguments are passed on the stack and the sequence is not a |
| 4972 | tuple subclass so we can just pass the stararg tuple directly |
| 4973 | to the function. */ |
| 4974 | Py_INCREF(stararg); |
| 4975 | return stararg; |
| 4976 | } |
| 4977 | } |
| 4978 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 4979 | callargs = PyTuple_New(nstack + nstar); |
| 4980 | if (callargs == NULL) { |
| 4981 | return NULL; |
| 4982 | } |
| 4983 | if (nstar) { |
| 4984 | int i; |
| 4985 | for (i = 0; i < nstar; i++) { |
| 4986 | PyObject *a = PyTuple_GET_ITEM(stararg, i); |
| 4987 | Py_INCREF(a); |
| 4988 | PyTuple_SET_ITEM(callargs, nstack + i, a); |
| 4989 | } |
| 4990 | } |
| 4991 | while (--nstack >= 0) { |
| 4992 | w = EXT_POP(*pp_stack); |
| 4993 | PyTuple_SET_ITEM(callargs, nstack, w); |
| 4994 | } |
| 4995 | return callargs; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 4996 | } |
| 4997 | |
| 4998 | static PyObject * |
| 4999 | load_args(PyObject ***pp_stack, int na) |
| 5000 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5001 | PyObject *args = PyTuple_New(na); |
| 5002 | PyObject *w; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 5003 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5004 | if (args == NULL) |
| 5005 | return NULL; |
| 5006 | while (--na >= 0) { |
| 5007 | w = EXT_POP(*pp_stack); |
| 5008 | PyTuple_SET_ITEM(args, na, w); |
| 5009 | } |
| 5010 | return args; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 5011 | } |
| 5012 | |
| 5013 | static PyObject * |
| 5014 | do_call(PyObject *func, PyObject ***pp_stack, int na, int nk) |
| 5015 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5016 | PyObject *callargs = NULL; |
| 5017 | PyObject *kwdict = NULL; |
| 5018 | PyObject *result = NULL; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 5019 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5020 | if (nk > 0) { |
| 5021 | kwdict = update_keyword_args(NULL, nk, pp_stack, func); |
| 5022 | if (kwdict == NULL) |
| 5023 | goto call_fail; |
| 5024 | } |
| 5025 | callargs = load_args(pp_stack, na); |
| 5026 | if (callargs == NULL) |
| 5027 | goto call_fail; |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 5028 | #ifdef CALL_PROFILE |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5029 | /* At this point, we have to look at the type of func to |
| 5030 | update the call stats properly. Do it here so as to avoid |
| 5031 | exposing the call stats machinery outside ceval.c |
| 5032 | */ |
| 5033 | if (PyFunction_Check(func)) |
| 5034 | PCALL(PCALL_FUNCTION); |
| 5035 | else if (PyMethod_Check(func)) |
| 5036 | PCALL(PCALL_METHOD); |
| 5037 | else if (PyType_Check(func)) |
| 5038 | PCALL(PCALL_TYPE); |
| 5039 | else if (PyCFunction_Check(func)) |
| 5040 | PCALL(PCALL_CFUNCTION); |
| 5041 | else |
| 5042 | PCALL(PCALL_OTHER); |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 5043 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5044 | if (PyCFunction_Check(func)) { |
| 5045 | PyThreadState *tstate = PyThreadState_GET(); |
| 5046 | C_TRACE(result, PyCFunction_Call(func, callargs, kwdict)); |
| 5047 | } |
| 5048 | else |
| 5049 | result = PyObject_Call(func, callargs, kwdict); |
Thomas Wouters | 7ce29ca | 2007-09-19 21:56:32 +0000 | [diff] [blame] | 5050 | call_fail: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5051 | Py_XDECREF(callargs); |
| 5052 | Py_XDECREF(kwdict); |
| 5053 | return result; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 5054 | } |
| 5055 | |
| 5056 | static PyObject * |
| 5057 | ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk) |
| 5058 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5059 | int nstar = 0; |
| 5060 | PyObject *callargs = NULL; |
| 5061 | PyObject *stararg = NULL; |
| 5062 | PyObject *kwdict = NULL; |
| 5063 | PyObject *result = NULL; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 5064 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5065 | if (flags & CALL_FLAG_KW) { |
| 5066 | kwdict = EXT_POP(*pp_stack); |
Serhiy Storchaka | ce41287 | 2016-05-08 23:36:44 +0300 | [diff] [blame] | 5067 | if (!PyDict_CheckExact(kwdict)) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5068 | PyObject *d; |
| 5069 | d = PyDict_New(); |
| 5070 | if (d == NULL) |
| 5071 | goto ext_call_fail; |
| 5072 | if (PyDict_Update(d, kwdict) != 0) { |
| 5073 | Py_DECREF(d); |
| 5074 | /* PyDict_Update raises attribute |
| 5075 | * error (percolated from an attempt |
| 5076 | * to get 'keys' attribute) instead of |
| 5077 | * a type error if its second argument |
| 5078 | * is not a mapping. |
| 5079 | */ |
| 5080 | if (PyErr_ExceptionMatches(PyExc_AttributeError)) { |
| 5081 | PyErr_Format(PyExc_TypeError, |
| 5082 | "%.200s%.200s argument after ** " |
| 5083 | "must be a mapping, not %.200s", |
| 5084 | PyEval_GetFuncName(func), |
| 5085 | PyEval_GetFuncDesc(func), |
| 5086 | kwdict->ob_type->tp_name); |
| 5087 | } |
| 5088 | goto ext_call_fail; |
| 5089 | } |
| 5090 | Py_DECREF(kwdict); |
| 5091 | kwdict = d; |
| 5092 | } |
| 5093 | } |
Benjamin Peterson | 025e9eb | 2015-05-05 20:16:41 -0400 | [diff] [blame] | 5094 | if (nk > 0) { |
| 5095 | kwdict = update_keyword_args(kwdict, nk, pp_stack, func); |
| 5096 | if (kwdict == NULL) |
| 5097 | goto ext_call_fail; |
| 5098 | } |
| 5099 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5100 | if (flags & CALL_FLAG_VAR) { |
| 5101 | stararg = EXT_POP(*pp_stack); |
| 5102 | if (!PyTuple_Check(stararg)) { |
| 5103 | PyObject *t = NULL; |
Martin Panter | b594422 | 2016-01-31 06:30:56 +0000 | [diff] [blame] | 5104 | if (Py_TYPE(stararg)->tp_iter == NULL && |
| 5105 | !PySequence_Check(stararg)) { |
| 5106 | PyErr_Format(PyExc_TypeError, |
| 5107 | "%.200s%.200s argument after * " |
| 5108 | "must be an iterable, not %.200s", |
| 5109 | PyEval_GetFuncName(func), |
| 5110 | PyEval_GetFuncDesc(func), |
| 5111 | stararg->ob_type->tp_name); |
| 5112 | goto ext_call_fail; |
| 5113 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5114 | t = PySequence_Tuple(stararg); |
| 5115 | if (t == NULL) { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5116 | goto ext_call_fail; |
| 5117 | } |
| 5118 | Py_DECREF(stararg); |
| 5119 | stararg = t; |
| 5120 | } |
| 5121 | nstar = PyTuple_GET_SIZE(stararg); |
| 5122 | } |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5123 | callargs = update_star_args(na, nstar, stararg, pp_stack); |
| 5124 | if (callargs == NULL) |
| 5125 | goto ext_call_fail; |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 5126 | #ifdef CALL_PROFILE |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5127 | /* At this point, we have to look at the type of func to |
| 5128 | update the call stats properly. Do it here so as to avoid |
| 5129 | exposing the call stats machinery outside ceval.c |
| 5130 | */ |
| 5131 | if (PyFunction_Check(func)) |
| 5132 | PCALL(PCALL_FUNCTION); |
| 5133 | else if (PyMethod_Check(func)) |
| 5134 | PCALL(PCALL_METHOD); |
| 5135 | else if (PyType_Check(func)) |
| 5136 | PCALL(PCALL_TYPE); |
| 5137 | else if (PyCFunction_Check(func)) |
| 5138 | PCALL(PCALL_CFUNCTION); |
| 5139 | else |
| 5140 | PCALL(PCALL_OTHER); |
Jeremy Hylton | 985eba5 | 2003-02-05 23:13:00 +0000 | [diff] [blame] | 5141 | #endif |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5142 | if (PyCFunction_Check(func)) { |
| 5143 | PyThreadState *tstate = PyThreadState_GET(); |
| 5144 | C_TRACE(result, PyCFunction_Call(func, callargs, kwdict)); |
| 5145 | } |
| 5146 | else |
| 5147 | result = PyObject_Call(func, callargs, kwdict); |
Thomas Wouters | ce272b6 | 2007-09-19 21:19:28 +0000 | [diff] [blame] | 5148 | ext_call_fail: |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5149 | Py_XDECREF(callargs); |
| 5150 | Py_XDECREF(kwdict); |
| 5151 | Py_XDECREF(stararg); |
| 5152 | return result; |
Jeremy Hylton | 5282044 | 2001-01-03 23:52:36 +0000 | [diff] [blame] | 5153 | } |
| 5154 | |
Serhiy Storchaka | 483405b | 2015-02-17 10:14:30 +0200 | [diff] [blame] | 5155 | /* Extract a slice index from a PyLong or an object with the |
Guido van Rossum | 38fff8c | 2006-03-07 18:50:55 +0000 | [diff] [blame] | 5156 | nb_index slot defined, and store in *pi. |
| 5157 | Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX, |
| 5158 | and silently boost values less than -PY_SSIZE_T_MAX-1 to -PY_SSIZE_T_MAX-1. |
Martin v. Löwis | dde99d2 | 2006-02-17 15:57:41 +0000 | [diff] [blame] | 5159 | Return 0 on error, 1 on success. |
Tim Peters | cb479e7 | 2001-12-16 19:11:44 +0000 | [diff] [blame] | 5160 | */ |
Tim Peters | b519638 | 2001-12-16 19:44:20 +0000 | [diff] [blame] | 5161 | /* Note: If v is NULL, return success without storing into *pi. This |
| 5162 | is because_PyEval_SliceIndex() is called by apply_slice(), which can be |
| 5163 | called by the SLICE opcode with v and/or w equal to NULL. |
Tim Peters | cb479e7 | 2001-12-16 19:11:44 +0000 | [diff] [blame] | 5164 | */ |
Guido van Rossum | 20c6add | 2000-05-08 14:06:50 +0000 | [diff] [blame] | 5165 | int |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5166 | _PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi) |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 5167 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5168 | if (v != NULL) { |
| 5169 | Py_ssize_t x; |
| 5170 | if (PyIndex_Check(v)) { |
| 5171 | x = PyNumber_AsSsize_t(v, NULL); |
| 5172 | if (x == -1 && PyErr_Occurred()) |
| 5173 | return 0; |
| 5174 | } |
| 5175 | else { |
| 5176 | PyErr_SetString(PyExc_TypeError, |
| 5177 | "slice indices must be integers or " |
| 5178 | "None or have an __index__ method"); |
| 5179 | return 0; |
| 5180 | } |
| 5181 | *pi = x; |
| 5182 | } |
| 5183 | return 1; |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 5184 | } |
| 5185 | |
Guido van Rossum | 486364b | 2007-06-30 05:01:58 +0000 | [diff] [blame] | 5186 | #define CANNOT_CATCH_MSG "catching classes that do not inherit from "\ |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5187 | "BaseException is not allowed" |
Brett Cannon | f74225d | 2007-02-26 21:10:16 +0000 | [diff] [blame] | 5188 | |
Guido van Rossum | b209a11 | 1997-04-29 18:18:01 +0000 | [diff] [blame] | 5189 | static PyObject * |
Antoine Pitrou | 9ed5f27 | 2013-08-13 20:18:52 +0200 | [diff] [blame] | 5190 | cmp_outcome(int op, PyObject *v, PyObject *w) |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 5191 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5192 | int res = 0; |
| 5193 | switch (op) { |
| 5194 | case PyCmp_IS: |
| 5195 | res = (v == w); |
| 5196 | break; |
| 5197 | case PyCmp_IS_NOT: |
| 5198 | res = (v != w); |
| 5199 | break; |
| 5200 | case PyCmp_IN: |
| 5201 | res = PySequence_Contains(w, v); |
| 5202 | if (res < 0) |
| 5203 | return NULL; |
| 5204 | break; |
| 5205 | case PyCmp_NOT_IN: |
| 5206 | res = PySequence_Contains(w, v); |
| 5207 | if (res < 0) |
| 5208 | return NULL; |
| 5209 | res = !res; |
| 5210 | break; |
| 5211 | case PyCmp_EXC_MATCH: |
| 5212 | if (PyTuple_Check(w)) { |
| 5213 | Py_ssize_t i, length; |
| 5214 | length = PyTuple_Size(w); |
| 5215 | for (i = 0; i < length; i += 1) { |
| 5216 | PyObject *exc = PyTuple_GET_ITEM(w, i); |
| 5217 | if (!PyExceptionClass_Check(exc)) { |
| 5218 | PyErr_SetString(PyExc_TypeError, |
| 5219 | CANNOT_CATCH_MSG); |
| 5220 | return NULL; |
| 5221 | } |
| 5222 | } |
| 5223 | } |
| 5224 | else { |
| 5225 | if (!PyExceptionClass_Check(w)) { |
| 5226 | PyErr_SetString(PyExc_TypeError, |
| 5227 | CANNOT_CATCH_MSG); |
| 5228 | return NULL; |
| 5229 | } |
| 5230 | } |
| 5231 | res = PyErr_GivenExceptionMatches(v, w); |
| 5232 | break; |
| 5233 | default: |
| 5234 | return PyObject_RichCompare(v, w, op); |
| 5235 | } |
| 5236 | v = res ? Py_True : Py_False; |
| 5237 | Py_INCREF(v); |
| 5238 | return v; |
Guido van Rossum | 10dc2e8 | 1990-11-18 17:27:39 +0000 | [diff] [blame] | 5239 | } |
| 5240 | |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 5241 | static PyObject * |
Serhiy Storchaka | 133138a | 2016-08-02 22:51:21 +0300 | [diff] [blame] | 5242 | import_name(PyFrameObject *f, PyObject *name, PyObject *fromlist, PyObject *level) |
| 5243 | { |
| 5244 | _Py_IDENTIFIER(__import__); |
| 5245 | PyObject *import_func, *args, *res; |
| 5246 | |
| 5247 | import_func = _PyDict_GetItemId(f->f_builtins, &PyId___import__); |
| 5248 | if (import_func == NULL) { |
| 5249 | PyErr_SetString(PyExc_ImportError, "__import__ not found"); |
| 5250 | return NULL; |
| 5251 | } |
| 5252 | |
| 5253 | /* Fast path for not overloaded __import__. */ |
| 5254 | if (import_func == PyThreadState_GET()->interp->import_func) { |
| 5255 | int ilevel = _PyLong_AsInt(level); |
| 5256 | if (ilevel == -1 && PyErr_Occurred()) { |
| 5257 | return NULL; |
| 5258 | } |
| 5259 | res = PyImport_ImportModuleLevelObject( |
| 5260 | name, |
| 5261 | f->f_globals, |
| 5262 | f->f_locals == NULL ? Py_None : f->f_locals, |
| 5263 | fromlist, |
| 5264 | ilevel); |
| 5265 | return res; |
| 5266 | } |
| 5267 | |
| 5268 | Py_INCREF(import_func); |
| 5269 | args = PyTuple_Pack(5, |
| 5270 | name, |
| 5271 | f->f_globals, |
| 5272 | f->f_locals == NULL ? Py_None : f->f_locals, |
| 5273 | fromlist, |
| 5274 | level); |
| 5275 | if (args == NULL) { |
| 5276 | Py_DECREF(import_func); |
| 5277 | return NULL; |
| 5278 | } |
| 5279 | res = PyEval_CallObject(import_func, args); |
| 5280 | Py_DECREF(args); |
| 5281 | Py_DECREF(import_func); |
| 5282 | return res; |
| 5283 | } |
| 5284 | |
| 5285 | static PyObject * |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 5286 | import_from(PyObject *v, PyObject *name) |
Guido van Rossum | e9736fc | 1990-11-18 17:33:06 +0000 | [diff] [blame] | 5287 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5288 | PyObject *x; |
Antoine Pitrou | 0373a10 | 2014-10-13 20:19:45 +0200 | [diff] [blame] | 5289 | _Py_IDENTIFIER(__name__); |
| 5290 | PyObject *fullmodname, *pkgname; |
Guido van Rossum | 18d4d8f | 2001-01-12 16:24:03 +0000 | [diff] [blame] | 5291 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5292 | x = PyObject_GetAttr(v, name); |
Antoine Pitrou | 0373a10 | 2014-10-13 20:19:45 +0200 | [diff] [blame] | 5293 | if (x != NULL || !PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 5294 | return x; |
| 5295 | /* Issue #17636: in case this failed because of a circular relative |
| 5296 | import, try to fallback on reading the module directly from |
| 5297 | sys.modules. */ |
| 5298 | PyErr_Clear(); |
| 5299 | pkgname = _PyObject_GetAttrId(v, &PyId___name__); |
Brett Cannon | 3008bc0 | 2015-08-11 18:01:31 -0700 | [diff] [blame] | 5300 | if (pkgname == NULL) { |
| 5301 | goto error; |
| 5302 | } |
Antoine Pitrou | 0373a10 | 2014-10-13 20:19:45 +0200 | [diff] [blame] | 5303 | fullmodname = PyUnicode_FromFormat("%U.%U", pkgname, name); |
| 5304 | Py_DECREF(pkgname); |
Brett Cannon | 3008bc0 | 2015-08-11 18:01:31 -0700 | [diff] [blame] | 5305 | if (fullmodname == NULL) { |
Antoine Pitrou | 0373a10 | 2014-10-13 20:19:45 +0200 | [diff] [blame] | 5306 | return NULL; |
Brett Cannon | 3008bc0 | 2015-08-11 18:01:31 -0700 | [diff] [blame] | 5307 | } |
Antoine Pitrou | 0373a10 | 2014-10-13 20:19:45 +0200 | [diff] [blame] | 5308 | x = PyDict_GetItem(PyImport_GetModuleDict(), fullmodname); |
Antoine Pitrou | 0373a10 | 2014-10-13 20:19:45 +0200 | [diff] [blame] | 5309 | Py_DECREF(fullmodname); |
Brett Cannon | 3008bc0 | 2015-08-11 18:01:31 -0700 | [diff] [blame] | 5310 | if (x == NULL) { |
| 5311 | goto error; |
| 5312 | } |
| 5313 | Py_INCREF(x); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5314 | return x; |
Brett Cannon | 3008bc0 | 2015-08-11 18:01:31 -0700 | [diff] [blame] | 5315 | error: |
| 5316 | PyErr_Format(PyExc_ImportError, "cannot import name %R", name); |
| 5317 | return NULL; |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 5318 | } |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 5319 | |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 5320 | static int |
| 5321 | import_all_from(PyObject *locals, PyObject *v) |
| 5322 | { |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 5323 | _Py_IDENTIFIER(__all__); |
| 5324 | _Py_IDENTIFIER(__dict__); |
| 5325 | PyObject *all = _PyObject_GetAttrId(v, &PyId___all__); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5326 | PyObject *dict, *name, *value; |
| 5327 | int skip_leading_underscores = 0; |
| 5328 | int pos, err; |
Thomas Wouters | 5215225 | 2000-08-17 22:55:00 +0000 | [diff] [blame] | 5329 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5330 | if (all == NULL) { |
| 5331 | if (!PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 5332 | return -1; /* Unexpected error */ |
| 5333 | PyErr_Clear(); |
Martin v. Löwis | 1c67dd9 | 2011-10-14 15:16:45 +0200 | [diff] [blame] | 5334 | dict = _PyObject_GetAttrId(v, &PyId___dict__); |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5335 | if (dict == NULL) { |
| 5336 | if (!PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 5337 | return -1; |
| 5338 | PyErr_SetString(PyExc_ImportError, |
| 5339 | "from-import-* object has no __dict__ and no __all__"); |
| 5340 | return -1; |
| 5341 | } |
| 5342 | all = PyMapping_Keys(dict); |
| 5343 | Py_DECREF(dict); |
| 5344 | if (all == NULL) |
| 5345 | return -1; |
| 5346 | skip_leading_underscores = 1; |
| 5347 | } |
Guido van Rossum | 18d4d8f | 2001-01-12 16:24:03 +0000 | [diff] [blame] | 5348 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5349 | for (pos = 0, err = 0; ; pos++) { |
| 5350 | name = PySequence_GetItem(all, pos); |
| 5351 | if (name == NULL) { |
| 5352 | if (!PyErr_ExceptionMatches(PyExc_IndexError)) |
| 5353 | err = -1; |
| 5354 | else |
| 5355 | PyErr_Clear(); |
| 5356 | break; |
| 5357 | } |
| 5358 | if (skip_leading_underscores && |
| 5359 | PyUnicode_Check(name) && |
Martin v. Löwis | d63a3b8 | 2011-09-28 07:41:54 +0200 | [diff] [blame] | 5360 | PyUnicode_READY(name) != -1 && |
| 5361 | PyUnicode_READ_CHAR(name, 0) == '_') |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5362 | { |
| 5363 | Py_DECREF(name); |
| 5364 | continue; |
| 5365 | } |
| 5366 | value = PyObject_GetAttr(v, name); |
| 5367 | if (value == NULL) |
| 5368 | err = -1; |
| 5369 | else if (PyDict_CheckExact(locals)) |
| 5370 | err = PyDict_SetItem(locals, name, value); |
| 5371 | else |
| 5372 | err = PyObject_SetItem(locals, name, value); |
| 5373 | Py_DECREF(name); |
| 5374 | Py_XDECREF(value); |
| 5375 | if (err != 0) |
| 5376 | break; |
| 5377 | } |
| 5378 | Py_DECREF(all); |
| 5379 | return err; |
Guido van Rossum | e9736fc | 1990-11-18 17:33:06 +0000 | [diff] [blame] | 5380 | } |
| 5381 | |
Guido van Rossum | ac7be68 | 2001-01-17 15:42:30 +0000 | [diff] [blame] | 5382 | static void |
Neal Norwitz | da059e3 | 2007-08-26 05:33:45 +0000 | [diff] [blame] | 5383 | format_exc_check_arg(PyObject *exc, const char *format_str, PyObject *obj) |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 5384 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5385 | const char *obj_str; |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 5386 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5387 | if (!obj) |
| 5388 | return; |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 5389 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5390 | obj_str = _PyUnicode_AsString(obj); |
| 5391 | if (!obj_str) |
| 5392 | return; |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 5393 | |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5394 | PyErr_Format(exc, format_str, obj_str); |
Paul Prescod | e68140d | 2000-08-30 20:25:01 +0000 | [diff] [blame] | 5395 | } |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5396 | |
Amaury Forgeot d'Arc | ba117ef | 2010-09-10 21:39:53 +0000 | [diff] [blame] | 5397 | static void |
| 5398 | format_exc_unbound(PyCodeObject *co, int oparg) |
| 5399 | { |
| 5400 | PyObject *name; |
| 5401 | /* Don't stomp existing exception */ |
| 5402 | if (PyErr_Occurred()) |
| 5403 | return; |
| 5404 | if (oparg < PyTuple_GET_SIZE(co->co_cellvars)) { |
| 5405 | name = PyTuple_GET_ITEM(co->co_cellvars, |
| 5406 | oparg); |
| 5407 | format_exc_check_arg( |
| 5408 | PyExc_UnboundLocalError, |
| 5409 | UNBOUNDLOCAL_ERROR_MSG, |
| 5410 | name); |
| 5411 | } else { |
| 5412 | name = PyTuple_GET_ITEM(co->co_freevars, oparg - |
| 5413 | PyTuple_GET_SIZE(co->co_cellvars)); |
| 5414 | format_exc_check_arg(PyExc_NameError, |
| 5415 | UNBOUNDFREE_ERROR_MSG, name); |
| 5416 | } |
| 5417 | } |
| 5418 | |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 5419 | static PyObject * |
| 5420 | unicode_concatenate(PyObject *v, PyObject *w, |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 5421 | PyFrameObject *f, const unsigned short *next_instr) |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 5422 | { |
| 5423 | PyObject *res; |
| 5424 | if (Py_REFCNT(v) == 2) { |
| 5425 | /* In the common case, there are 2 references to the value |
| 5426 | * stored in 'variable' when the += is performed: one on the |
| 5427 | * value stack (in 'v') and one still stored in the |
| 5428 | * 'variable'. We try to delete the variable now to reduce |
| 5429 | * the refcnt to 1. |
| 5430 | */ |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 5431 | int opcode, oparg; |
| 5432 | NEXTOPARG(); |
| 5433 | switch (opcode) { |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 5434 | case STORE_FAST: |
| 5435 | { |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 5436 | PyObject **fastlocals = f->f_localsplus; |
| 5437 | if (GETLOCAL(oparg) == v) |
| 5438 | SETLOCAL(oparg, NULL); |
| 5439 | break; |
| 5440 | } |
| 5441 | case STORE_DEREF: |
| 5442 | { |
| 5443 | PyObject **freevars = (f->f_localsplus + |
| 5444 | f->f_code->co_nlocals); |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 5445 | PyObject *c = freevars[oparg]; |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 5446 | if (PyCell_GET(c) == v) |
| 5447 | PyCell_Set(c, NULL); |
| 5448 | break; |
| 5449 | } |
| 5450 | case STORE_NAME: |
| 5451 | { |
| 5452 | PyObject *names = f->f_code->co_names; |
Serhiy Storchaka | f60bf5f | 2016-05-25 20:02:01 +0300 | [diff] [blame] | 5453 | PyObject *name = GETITEM(names, oparg); |
Victor Stinner | d2a915d | 2011-10-02 20:34:20 +0200 | [diff] [blame] | 5454 | PyObject *locals = f->f_locals; |
| 5455 | if (PyDict_CheckExact(locals) && |
| 5456 | PyDict_GetItem(locals, name) == v) { |
| 5457 | if (PyDict_DelItem(locals, name) != 0) { |
| 5458 | PyErr_Clear(); |
| 5459 | } |
| 5460 | } |
| 5461 | break; |
| 5462 | } |
| 5463 | } |
| 5464 | } |
| 5465 | res = v; |
| 5466 | PyUnicode_Append(&res, w); |
| 5467 | return res; |
| 5468 | } |
| 5469 | |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5470 | #ifdef DYNAMIC_EXECUTION_PROFILE |
| 5471 | |
Skip Montanaro | f118cb1 | 2001-10-15 20:51:38 +0000 | [diff] [blame] | 5472 | static PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 5473 | getarray(long a[256]) |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5474 | { |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5475 | int i; |
| 5476 | PyObject *l = PyList_New(256); |
| 5477 | if (l == NULL) return NULL; |
| 5478 | for (i = 0; i < 256; i++) { |
| 5479 | PyObject *x = PyLong_FromLong(a[i]); |
| 5480 | if (x == NULL) { |
| 5481 | Py_DECREF(l); |
| 5482 | return NULL; |
| 5483 | } |
| 5484 | PyList_SetItem(l, i, x); |
| 5485 | } |
| 5486 | for (i = 0; i < 256; i++) |
| 5487 | a[i] = 0; |
| 5488 | return l; |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5489 | } |
| 5490 | |
| 5491 | PyObject * |
Thomas Wouters | f70ef4f | 2000-07-22 18:47:25 +0000 | [diff] [blame] | 5492 | _Py_GetDXProfile(PyObject *self, PyObject *args) |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5493 | { |
| 5494 | #ifndef DXPAIRS |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5495 | return getarray(dxp); |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5496 | #else |
Antoine Pitrou | f95a1b3 | 2010-05-09 15:52:27 +0000 | [diff] [blame] | 5497 | int i; |
| 5498 | PyObject *l = PyList_New(257); |
| 5499 | if (l == NULL) return NULL; |
| 5500 | for (i = 0; i < 257; i++) { |
| 5501 | PyObject *x = getarray(dxpairs[i]); |
| 5502 | if (x == NULL) { |
| 5503 | Py_DECREF(l); |
| 5504 | return NULL; |
| 5505 | } |
| 5506 | PyList_SetItem(l, i, x); |
| 5507 | } |
| 5508 | return l; |
Guido van Rossum | 950361c | 1997-01-24 13:49:28 +0000 | [diff] [blame] | 5509 | #endif |
| 5510 | } |
| 5511 | |
| 5512 | #endif |