blob: 4e6911a07c714f5618a3aa6265c84091ad5b6dbe [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Execute compiled code */
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003
Guido van Rossum681d79a1995-07-18 14:51:37 +00004/* XXX TO DO:
Guido van Rossum681d79a1995-07-18 14:51:37 +00005 XXX speed up searching for keywords by using a dictionary
Guido van Rossum681d79a1995-07-18 14:51:37 +00006 XXX document it!
7 */
8
Thomas Wouters477c8d52006-05-27 19:21:47 +00009/* enable more aggressive intra-module optimizations, where available */
10#define PY_LOCAL_AGGRESSIVE
11
Guido van Rossumb209a111997-04-29 18:18:01 +000012#include "Python.h"
Guido van Rossum10dc2e81990-11-18 17:27:39 +000013
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000014#include "code.h"
Benjamin Peterson025e9eb2015-05-05 20:16:41 -040015#include "dictobject.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +000016#include "frameobject.h"
Guido van Rossum10dc2e81990-11-18 17:27:39 +000017#include "opcode.h"
Łukasz Langaa785c872016-09-09 17:37:37 -070018#include "pydtrace.h"
Benjamin Peterson025e9eb2015-05-05 20:16:41 -040019#include "setobject.h"
Tim Peters6d6c1a32001-08-02 04:15:00 +000020#include "structmember.h"
Guido van Rossum10dc2e81990-11-18 17:27:39 +000021
Guido van Rossumc6004111993-11-05 10:22:19 +000022#include <ctype.h>
23
Guido van Rossum04691fc1992-08-12 15:35:34 +000024/* Turn this on if your compiler chokes on the big switch: */
Guido van Rossum1ae940a1995-01-02 19:04:15 +000025/* #define CASE_TOO_BIG 1 */
Guido van Rossum04691fc1992-08-12 15:35:34 +000026
Guido van Rossum408027e1996-12-30 16:17:54 +000027#ifdef Py_DEBUG
Guido van Rossum96a42c81992-01-12 02:29:51 +000028/* For debugging the interpreter: */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000029#define LLTRACE 1 /* Low-level trace feature */
30#define CHECKEXC 1 /* Double-check exception checking */
Guido van Rossum10dc2e81990-11-18 17:27:39 +000031#endif
32
Yury Selivanovf2392132016-12-13 19:03:51 -050033/* Private API for the LOAD_METHOD opcode. */
34extern int _PyObject_GetMethod(PyObject *, PyObject *, PyObject **);
35
Jeremy Hylton52820442001-01-03 23:52:36 +000036typedef PyObject *(*callproc)(PyObject *, PyObject *, PyObject *);
Guido van Rossum5b722181993-03-30 17:46:03 +000037
Guido van Rossum374a9221991-04-04 10:40:29 +000038/* Forward declarations */
Victor Stinner415c5102017-01-11 00:54:57 +010039Py_LOCAL_INLINE(PyObject *) call_function(PyObject ***, Py_ssize_t, PyObject *);
Victor Stinnerf9b760f2016-09-09 10:17:08 -070040static PyObject * do_call_core(PyObject *, PyObject *, PyObject *);
Jeremy Hylton52820442001-01-03 23:52:36 +000041
Guido van Rossum0a066c01992-03-27 17:29:15 +000042#ifdef LLTRACE
Guido van Rossumc2e20742006-02-27 22:32:47 +000043static int lltrace;
Serhiy Storchakaef1585e2015-12-25 20:01:53 +020044static int prtrace(PyObject *, const char *);
Guido van Rossum0a066c01992-03-27 17:29:15 +000045#endif
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +010046static int call_trace(Py_tracefunc, PyObject *,
47 PyThreadState *, PyFrameObject *,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000048 int, PyObject *);
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +000049static int call_trace_protected(Py_tracefunc, PyObject *,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +010050 PyThreadState *, PyFrameObject *,
51 int, PyObject *);
52static void call_exc_trace(Py_tracefunc, PyObject *,
53 PyThreadState *, PyFrameObject *);
Tim Peters8a5c3c72004-04-05 19:36:21 +000054static int maybe_call_line_trace(Py_tracefunc, PyObject *,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +010055 PyThreadState *, PyFrameObject *, int *, int *, int *);
Łukasz Langaa785c872016-09-09 17:37:37 -070056static void maybe_dtrace_line(PyFrameObject *, int *, int *, int *);
57static void dtrace_function_entry(PyFrameObject *);
58static void dtrace_function_return(PyFrameObject *);
Michael W. Hudsondd32a912002-08-15 14:59:02 +000059
Thomas Wouters477c8d52006-05-27 19:21:47 +000060static PyObject * cmp_outcome(int, PyObject *, PyObject *);
Serhiy Storchaka133138a2016-08-02 22:51:21 +030061static PyObject * import_name(PyFrameObject *, PyObject *, PyObject *, PyObject *);
Thomas Wouters477c8d52006-05-27 19:21:47 +000062static PyObject * import_from(PyObject *, PyObject *);
Thomas Wouters52152252000-08-17 22:55:00 +000063static int import_all_from(PyObject *, PyObject *);
Neal Norwitzda059e32007-08-26 05:33:45 +000064static void format_exc_check_arg(PyObject *, const char *, PyObject *);
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +000065static void format_exc_unbound(PyCodeObject *co, int oparg);
Victor Stinnerd2a915d2011-10-02 20:34:20 +020066static PyObject * unicode_concatenate(PyObject *, PyObject *,
Serhiy Storchakaab874002016-09-11 13:48:15 +030067 PyFrameObject *, const _Py_CODEUNIT *);
Benjamin Petersonce798522012-01-22 11:24:29 -050068static PyObject * special_lookup(PyObject *, _Py_Identifier *);
Guido van Rossum374a9221991-04-04 10:40:29 +000069
Paul Prescode68140d2000-08-30 20:25:01 +000070#define NAME_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000071 "name '%.200s' is not defined"
Paul Prescode68140d2000-08-30 20:25:01 +000072#define UNBOUNDLOCAL_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000073 "local variable '%.200s' referenced before assignment"
Jeremy Hyltonc76770c2001-04-13 16:51:46 +000074#define UNBOUNDFREE_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000075 "free variable '%.200s' referenced before assignment" \
76 " in enclosing scope"
Guido van Rossum374a9221991-04-04 10:40:29 +000077
Guido van Rossum950361c1997-01-24 13:49:28 +000078/* Dynamic execution profile */
79#ifdef DYNAMIC_EXECUTION_PROFILE
80#ifdef DXPAIRS
81static long dxpairs[257][256];
82#define dxp dxpairs[256]
83#else
84static long dxp[256];
85#endif
86#endif
87
Benjamin Petersond2be5b42010-09-10 22:47:02 +000088#ifdef WITH_THREAD
89#define GIL_REQUEST _Py_atomic_load_relaxed(&gil_drop_request)
90#else
91#define GIL_REQUEST 0
92#endif
93
Jeffrey Yasskin39370832010-05-03 19:29:34 +000094/* This can set eval_breaker to 0 even though gil_drop_request became
95 1. We believe this is all right because the eval loop will release
96 the GIL eventually anyway. */
Antoine Pitrou074e5ed2009-11-10 19:50:40 +000097#define COMPUTE_EVAL_BREAKER() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000098 _Py_atomic_store_relaxed( \
99 &eval_breaker, \
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000100 GIL_REQUEST | \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101 _Py_atomic_load_relaxed(&pendingcalls_to_do) | \
102 pending_async_exc)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000103
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000104#ifdef WITH_THREAD
105
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000106#define SET_GIL_DROP_REQUEST() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000107 do { \
108 _Py_atomic_store_relaxed(&gil_drop_request, 1); \
109 _Py_atomic_store_relaxed(&eval_breaker, 1); \
110 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000111
112#define RESET_GIL_DROP_REQUEST() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000113 do { \
114 _Py_atomic_store_relaxed(&gil_drop_request, 0); \
115 COMPUTE_EVAL_BREAKER(); \
116 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000117
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000118#endif
119
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000120/* Pending calls are only modified under pending_lock */
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000121#define SIGNAL_PENDING_CALLS() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000122 do { \
123 _Py_atomic_store_relaxed(&pendingcalls_to_do, 1); \
124 _Py_atomic_store_relaxed(&eval_breaker, 1); \
125 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000126
127#define UNSIGNAL_PENDING_CALLS() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 do { \
129 _Py_atomic_store_relaxed(&pendingcalls_to_do, 0); \
130 COMPUTE_EVAL_BREAKER(); \
131 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000132
133#define SIGNAL_ASYNC_EXC() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000134 do { \
135 pending_async_exc = 1; \
136 _Py_atomic_store_relaxed(&eval_breaker, 1); \
137 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000138
139#define UNSIGNAL_ASYNC_EXC() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000140 do { pending_async_exc = 0; COMPUTE_EVAL_BREAKER(); } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000141
142
Guido van Rossume59214e1994-08-30 08:01:59 +0000143#ifdef WITH_THREAD
Guido van Rossumff4949e1992-08-05 19:58:53 +0000144
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000145#ifdef HAVE_ERRNO_H
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000146#include <errno.h>
Guido van Rossum2571cc81999-04-07 16:07:23 +0000147#endif
Guido van Rossum49b56061998-10-01 20:42:43 +0000148#include "pythread.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +0000149
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000150static PyThread_type_lock pending_lock = 0; /* for pending calls */
Serhiy Storchakaaefa7eb2017-03-23 15:48:39 +0200151static unsigned long main_thread = 0;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000152/* This single variable consolidates all requests to break out of the fast path
153 in the eval loop. */
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000154static _Py_atomic_int eval_breaker = {0};
155/* Request for dropping the GIL */
156static _Py_atomic_int gil_drop_request = {0};
157/* Request for running pending calls. */
158static _Py_atomic_int pendingcalls_to_do = {0};
159/* Request for looking at the `async_exc` field of the current thread state.
160 Guarded by the GIL. */
161static int pending_async_exc = 0;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000162
163#include "ceval_gil.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000164
Tim Peters7f468f22004-10-11 02:40:51 +0000165int
166PyEval_ThreadsInitialized(void)
167{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000168 return gil_created();
Tim Peters7f468f22004-10-11 02:40:51 +0000169}
170
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000171void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000172PyEval_InitThreads(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000173{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 if (gil_created())
175 return;
176 create_gil();
177 take_gil(PyThreadState_GET());
178 main_thread = PyThread_get_thread_ident();
179 if (!pending_lock)
180 pending_lock = PyThread_allocate_lock();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000181}
Guido van Rossumff4949e1992-08-05 19:58:53 +0000182
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000183void
Antoine Pitrou1df15362010-09-13 14:16:46 +0000184_PyEval_FiniThreads(void)
185{
186 if (!gil_created())
187 return;
188 destroy_gil();
189 assert(!gil_created());
190}
191
192void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000193PyEval_AcquireLock(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000194{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000195 PyThreadState *tstate = PyThreadState_GET();
196 if (tstate == NULL)
197 Py_FatalError("PyEval_AcquireLock: current thread state is NULL");
198 take_gil(tstate);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000199}
200
201void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000202PyEval_ReleaseLock(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000203{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 /* This function must succeed when the current thread state is NULL.
205 We therefore avoid PyThreadState_GET() which dumps a fatal error
206 in debug mode.
207 */
208 drop_gil((PyThreadState*)_Py_atomic_load_relaxed(
209 &_PyThreadState_Current));
Guido van Rossum25ce5661997-08-02 03:10:38 +0000210}
211
212void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000213PyEval_AcquireThread(PyThreadState *tstate)
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000214{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000215 if (tstate == NULL)
216 Py_FatalError("PyEval_AcquireThread: NULL new thread state");
217 /* Check someone has called PyEval_InitThreads() to create the lock */
218 assert(gil_created());
219 take_gil(tstate);
220 if (PyThreadState_Swap(tstate) != NULL)
221 Py_FatalError(
222 "PyEval_AcquireThread: non-NULL old thread state");
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000223}
224
225void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000226PyEval_ReleaseThread(PyThreadState *tstate)
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000227{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000228 if (tstate == NULL)
229 Py_FatalError("PyEval_ReleaseThread: NULL thread state");
230 if (PyThreadState_Swap(NULL) != tstate)
231 Py_FatalError("PyEval_ReleaseThread: wrong thread state");
232 drop_gil(tstate);
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000233}
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000234
Antoine Pitrouf7ecfac2017-05-28 11:35:14 +0200235/* This function is called from PyOS_AfterFork_Child to destroy all threads
236 * which are not running in the child process, and clear internal locks
237 * which might be held by those threads.
238 */
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000239
240void
241PyEval_ReInitThreads(void)
242{
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200243 PyThreadState *current_tstate = PyThreadState_GET();
Jesse Nollera8513972008-07-17 16:49:17 +0000244
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000245 if (!gil_created())
246 return;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000247 recreate_gil();
248 pending_lock = PyThread_allocate_lock();
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200249 take_gil(current_tstate);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000250 main_thread = PyThread_get_thread_ident();
Jesse Nollera8513972008-07-17 16:49:17 +0000251
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200252 /* Destroy all threads except the current one */
253 _PyThreadState_DeleteExcept(current_tstate);
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000254}
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000255
256#else
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000257static _Py_atomic_int eval_breaker = {0};
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000258static int pending_async_exc = 0;
259#endif /* WITH_THREAD */
260
261/* This function is used to signal that async exceptions are waiting to be
262 raised, therefore it is also useful in non-threaded builds. */
263
264void
265_PyEval_SignalAsyncExc(void)
266{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000267 SIGNAL_ASYNC_EXC();
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000268}
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000269
Guido van Rossumff4949e1992-08-05 19:58:53 +0000270/* Functions save_thread and restore_thread are always defined so
271 dynamically loaded modules needn't be compiled separately for use
272 with and without threads: */
273
Guido van Rossum2fca21f71997-07-18 23:56:58 +0000274PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000275PyEval_SaveThread(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000276{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000277 PyThreadState *tstate = PyThreadState_Swap(NULL);
278 if (tstate == NULL)
279 Py_FatalError("PyEval_SaveThread: NULL tstate");
Guido van Rossume59214e1994-08-30 08:01:59 +0000280#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000281 if (gil_created())
282 drop_gil(tstate);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000283#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 return tstate;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000285}
286
287void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000288PyEval_RestoreThread(PyThreadState *tstate)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000289{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000290 if (tstate == NULL)
291 Py_FatalError("PyEval_RestoreThread: NULL tstate");
Guido van Rossume59214e1994-08-30 08:01:59 +0000292#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000293 if (gil_created()) {
294 int err = errno;
295 take_gil(tstate);
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200296 /* _Py_Finalizing is protected by the GIL */
297 if (_Py_Finalizing && tstate != _Py_Finalizing) {
298 drop_gil(tstate);
299 PyThread_exit_thread();
300 assert(0); /* unreachable */
301 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000302 errno = err;
303 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000304#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000305 PyThreadState_Swap(tstate);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000306}
307
308
Guido van Rossuma9672091994-09-14 13:31:22 +0000309/* Mechanism whereby asynchronously executing callbacks (e.g. UNIX
310 signal handlers or Mac I/O completion routines) can schedule calls
311 to a function to be called synchronously.
312 The synchronous function is called with one void* argument.
313 It should return 0 for success or -1 for failure -- failure should
314 be accompanied by an exception.
315
316 If registry succeeds, the registry function returns 0; if it fails
317 (e.g. due to too many pending calls) it returns -1 (without setting
318 an exception condition).
319
320 Note that because registry may occur from within signal handlers,
321 or other asynchronous events, calling malloc() is unsafe!
322
323#ifdef WITH_THREAD
324 Any thread can schedule pending calls, but only the main thread
325 will execute them.
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000326 There is no facility to schedule calls to a particular thread, but
327 that should be easy to change, should that ever be required. In
328 that case, the static variables here should go into the python
329 threadstate.
Guido van Rossuma9672091994-09-14 13:31:22 +0000330#endif
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000331*/
Guido van Rossuma9672091994-09-14 13:31:22 +0000332
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000333#ifdef WITH_THREAD
334
335/* The WITH_THREAD implementation is thread-safe. It allows
336 scheduling to be made from any thread, and even from an executing
337 callback.
338 */
339
340#define NPENDINGCALLS 32
341static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000342 int (*func)(void *);
343 void *arg;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000344} pendingcalls[NPENDINGCALLS];
345static int pendingfirst = 0;
346static int pendinglast = 0;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000347
348int
349Py_AddPendingCall(int (*func)(void *), void *arg)
350{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 int i, j, result=0;
352 PyThread_type_lock lock = pending_lock;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000353
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000354 /* try a few times for the lock. Since this mechanism is used
355 * for signal handling (on the main thread), there is a (slim)
356 * chance that a signal is delivered on the same thread while we
357 * hold the lock during the Py_MakePendingCalls() function.
358 * This avoids a deadlock in that case.
359 * Note that signals can be delivered on any thread. In particular,
360 * on Windows, a SIGINT is delivered on a system-created worker
361 * thread.
362 * We also check for lock being NULL, in the unlikely case that
363 * this function is called before any bytecode evaluation takes place.
364 */
365 if (lock != NULL) {
366 for (i = 0; i<100; i++) {
367 if (PyThread_acquire_lock(lock, NOWAIT_LOCK))
368 break;
369 }
370 if (i == 100)
371 return -1;
372 }
373
374 i = pendinglast;
375 j = (i + 1) % NPENDINGCALLS;
376 if (j == pendingfirst) {
377 result = -1; /* Queue full */
378 } else {
379 pendingcalls[i].func = func;
380 pendingcalls[i].arg = arg;
381 pendinglast = j;
382 }
383 /* signal main loop */
384 SIGNAL_PENDING_CALLS();
385 if (lock != NULL)
386 PyThread_release_lock(lock);
387 return result;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000388}
389
390int
391Py_MakePendingCalls(void)
392{
Charles-François Natalif23339a2011-07-23 18:15:43 +0200393 static int busy = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 int i;
395 int r = 0;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000396
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 if (!pending_lock) {
398 /* initial allocation of the lock */
399 pending_lock = PyThread_allocate_lock();
400 if (pending_lock == NULL)
401 return -1;
402 }
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000403
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000404 /* only service pending calls on main thread */
405 if (main_thread && PyThread_get_thread_ident() != main_thread)
406 return 0;
407 /* don't perform recursive pending calls */
Charles-François Natalif23339a2011-07-23 18:15:43 +0200408 if (busy)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000409 return 0;
Charles-François Natalif23339a2011-07-23 18:15:43 +0200410 busy = 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 /* perform a bounded number of calls, in case of recursion */
412 for (i=0; i<NPENDINGCALLS; i++) {
413 int j;
414 int (*func)(void *);
415 void *arg = NULL;
416
417 /* pop one item off the queue while holding the lock */
418 PyThread_acquire_lock(pending_lock, WAIT_LOCK);
419 j = pendingfirst;
420 if (j == pendinglast) {
421 func = NULL; /* Queue empty */
422 } else {
423 func = pendingcalls[j].func;
424 arg = pendingcalls[j].arg;
425 pendingfirst = (j + 1) % NPENDINGCALLS;
426 }
427 if (pendingfirst != pendinglast)
428 SIGNAL_PENDING_CALLS();
429 else
430 UNSIGNAL_PENDING_CALLS();
431 PyThread_release_lock(pending_lock);
432 /* having released the lock, perform the callback */
433 if (func == NULL)
434 break;
435 r = func(arg);
436 if (r)
437 break;
438 }
Charles-François Natalif23339a2011-07-23 18:15:43 +0200439 busy = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 return r;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000441}
442
443#else /* if ! defined WITH_THREAD */
444
445/*
446 WARNING! ASYNCHRONOUSLY EXECUTING CODE!
447 This code is used for signal handling in python that isn't built
448 with WITH_THREAD.
449 Don't use this implementation when Py_AddPendingCalls() can happen
450 on a different thread!
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000451
Guido van Rossuma9672091994-09-14 13:31:22 +0000452 There are two possible race conditions:
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000453 (1) nested asynchronous calls to Py_AddPendingCall()
454 (2) AddPendingCall() calls made while pending calls are being processed.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000455
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000456 (1) is very unlikely because typically signal delivery
457 is blocked during signal handling. So it should be impossible.
458 (2) is a real possibility.
Guido van Rossuma9672091994-09-14 13:31:22 +0000459 The current code is safe against (2), but not against (1).
460 The safety against (2) is derived from the fact that only one
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000461 thread is present, interrupted by signals, and that the critical
462 section is protected with the "busy" variable. On Windows, which
463 delivers SIGINT on a system thread, this does not hold and therefore
464 Windows really shouldn't use this version.
465 The two threads could theoretically wiggle around the "busy" variable.
Guido van Rossuma027efa1997-05-05 20:56:21 +0000466*/
Guido van Rossum8861b741996-07-30 16:49:37 +0000467
Guido van Rossuma9672091994-09-14 13:31:22 +0000468#define NPENDINGCALLS 32
469static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000470 int (*func)(void *);
471 void *arg;
Guido van Rossuma9672091994-09-14 13:31:22 +0000472} pendingcalls[NPENDINGCALLS];
473static volatile int pendingfirst = 0;
474static volatile int pendinglast = 0;
Benjamin Peterson08ec84c2010-05-30 14:49:32 +0000475static _Py_atomic_int pendingcalls_to_do = {0};
Guido van Rossuma9672091994-09-14 13:31:22 +0000476
477int
Thomas Wouters334fb892000-07-25 12:56:38 +0000478Py_AddPendingCall(int (*func)(void *), void *arg)
Guido van Rossuma9672091994-09-14 13:31:22 +0000479{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000480 static volatile int busy = 0;
481 int i, j;
482 /* XXX Begin critical section */
483 if (busy)
484 return -1;
485 busy = 1;
486 i = pendinglast;
487 j = (i + 1) % NPENDINGCALLS;
488 if (j == pendingfirst) {
489 busy = 0;
490 return -1; /* Queue full */
491 }
492 pendingcalls[i].func = func;
493 pendingcalls[i].arg = arg;
494 pendinglast = j;
Skip Montanarod581d772002-09-03 20:10:45 +0000495
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000496 SIGNAL_PENDING_CALLS();
497 busy = 0;
498 /* XXX End critical section */
499 return 0;
Guido van Rossuma9672091994-09-14 13:31:22 +0000500}
501
Guido van Rossum180d7b41994-09-29 09:45:57 +0000502int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000503Py_MakePendingCalls(void)
Guido van Rossuma9672091994-09-14 13:31:22 +0000504{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000505 static int busy = 0;
506 if (busy)
507 return 0;
508 busy = 1;
509 UNSIGNAL_PENDING_CALLS();
510 for (;;) {
511 int i;
512 int (*func)(void *);
513 void *arg;
514 i = pendingfirst;
515 if (i == pendinglast)
516 break; /* Queue empty */
517 func = pendingcalls[i].func;
518 arg = pendingcalls[i].arg;
519 pendingfirst = (i + 1) % NPENDINGCALLS;
520 if (func(arg) < 0) {
521 busy = 0;
522 SIGNAL_PENDING_CALLS(); /* We're not done yet */
523 return -1;
524 }
525 }
526 busy = 0;
527 return 0;
Guido van Rossuma9672091994-09-14 13:31:22 +0000528}
529
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000530#endif /* WITH_THREAD */
531
Guido van Rossuma9672091994-09-14 13:31:22 +0000532
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000533/* The interpreter's recursion limit */
534
Hye-Shik Changb6fa2812005-04-04 15:49:02 +0000535#ifndef Py_DEFAULT_RECURSION_LIMIT
536#define Py_DEFAULT_RECURSION_LIMIT 1000
537#endif
538static int recursion_limit = Py_DEFAULT_RECURSION_LIMIT;
539int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000540
Vladimir Marangozov7bd25be2000-09-01 11:07:19 +0000541int
542Py_GetRecursionLimit(void)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000543{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 return recursion_limit;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000545}
546
Vladimir Marangozov7bd25be2000-09-01 11:07:19 +0000547void
548Py_SetRecursionLimit(int new_limit)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000549{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000550 recursion_limit = new_limit;
551 _Py_CheckRecursionLimit = recursion_limit;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000552}
553
Armin Rigo2b3eb402003-10-28 12:05:48 +0000554/* the macro Py_EnterRecursiveCall() only calls _Py_CheckRecursiveCall()
555 if the recursion_depth reaches _Py_CheckRecursionLimit.
556 If USE_STACKCHECK, the macro decrements _Py_CheckRecursionLimit
557 to guarantee that _Py_CheckRecursiveCall() is regularly called.
558 Without USE_STACKCHECK, there is no need for this. */
559int
Serhiy Storchaka5fa22fc2015-06-21 16:26:28 +0300560_Py_CheckRecursiveCall(const char *where)
Armin Rigo2b3eb402003-10-28 12:05:48 +0000561{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 PyThreadState *tstate = PyThreadState_GET();
Armin Rigo2b3eb402003-10-28 12:05:48 +0000563
564#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 if (PyOS_CheckStack()) {
566 --tstate->recursion_depth;
567 PyErr_SetString(PyExc_MemoryError, "Stack overflow");
568 return -1;
569 }
Armin Rigo2b3eb402003-10-28 12:05:48 +0000570#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000571 _Py_CheckRecursionLimit = recursion_limit;
572 if (tstate->recursion_critical)
573 /* Somebody asked that we don't check for recursion. */
574 return 0;
575 if (tstate->overflowed) {
576 if (tstate->recursion_depth > recursion_limit + 50) {
577 /* Overflowing while handling an overflow. Give up. */
578 Py_FatalError("Cannot recover from stack overflow.");
579 }
580 return 0;
581 }
582 if (tstate->recursion_depth > recursion_limit) {
583 --tstate->recursion_depth;
584 tstate->overflowed = 1;
Yury Selivanovf488fb42015-07-03 01:04:23 -0400585 PyErr_Format(PyExc_RecursionError,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 "maximum recursion depth exceeded%s",
587 where);
588 return -1;
589 }
590 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000591}
592
Guido van Rossum374a9221991-04-04 10:40:29 +0000593/* Status code for main loop (reason for stack unwind) */
Raymond Hettinger7c958652004-04-06 10:11:10 +0000594enum why_code {
Stefan Krahb7e10102010-06-23 18:42:39 +0000595 WHY_NOT = 0x0001, /* No error */
596 WHY_EXCEPTION = 0x0002, /* Exception occurred */
Stefan Krahb7e10102010-06-23 18:42:39 +0000597 WHY_RETURN = 0x0008, /* 'return' statement */
598 WHY_BREAK = 0x0010, /* 'break' statement */
599 WHY_CONTINUE = 0x0020, /* 'continue' statement */
600 WHY_YIELD = 0x0040, /* 'yield' operator */
601 WHY_SILENCED = 0x0080 /* Exception silenced by 'with' */
Raymond Hettinger7c958652004-04-06 10:11:10 +0000602};
Guido van Rossum374a9221991-04-04 10:40:29 +0000603
Benjamin Peterson87880242011-07-03 16:48:31 -0500604static void save_exc_state(PyThreadState *, PyFrameObject *);
605static void swap_exc_state(PyThreadState *, PyFrameObject *);
606static void restore_and_clear_exc_state(PyThreadState *, PyFrameObject *);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -0400607static int do_raise(PyObject *, PyObject *);
Guido van Rossum0368b722007-05-11 16:50:42 +0000608static int unpack_iterable(PyObject *, int, int, PyObject **);
Guido van Rossum1aa14831997-01-21 05:34:20 +0000609
Jeffrey Yasskin008d8ef2008-12-06 17:09:27 +0000610/* Records whether tracing is on for any thread. Counts the number of
611 threads for which tstate->c_tracefunc is non-NULL, so if the value
612 is 0, we know we don't have to check this thread's c_tracefunc.
613 This speeds up the if statement in PyEval_EvalFrameEx() after
614 fast_next_opcode*/
615static int _Py_TracingPossible = 0;
616
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000617
Guido van Rossum374a9221991-04-04 10:40:29 +0000618
Guido van Rossumb209a111997-04-29 18:18:01 +0000619PyObject *
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000620PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals)
Guido van Rossum681d79a1995-07-18 14:51:37 +0000621{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 return PyEval_EvalCodeEx(co,
623 globals, locals,
624 (PyObject **)NULL, 0,
625 (PyObject **)NULL, 0,
626 (PyObject **)NULL, 0,
627 NULL, NULL);
Guido van Rossum681d79a1995-07-18 14:51:37 +0000628}
629
630
631/* Interpreter main loop */
632
Martin v. Löwis8d97e332004-06-27 15:43:12 +0000633PyObject *
Phillip J. Eby0d6615f2005-08-02 00:46:46 +0000634PyEval_EvalFrame(PyFrameObject *f) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000635 /* This is for backward compatibility with extension modules that
636 used this API; core interpreter code should call
637 PyEval_EvalFrameEx() */
638 return PyEval_EvalFrameEx(f, 0);
Phillip J. Eby0d6615f2005-08-02 00:46:46 +0000639}
640
641PyObject *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000642PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Guido van Rossum374a9221991-04-04 10:40:29 +0000643{
Brett Cannon3cebf932016-09-05 15:33:46 -0700644 PyThreadState *tstate = PyThreadState_GET();
645 return tstate->interp->eval_frame(f, throwflag);
646}
647
Victor Stinnerc6944e72016-11-11 02:13:35 +0100648PyObject* _Py_HOT_FUNCTION
Brett Cannon3cebf932016-09-05 15:33:46 -0700649_PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
650{
Guido van Rossum950361c1997-01-24 13:49:28 +0000651#ifdef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000652 int lastopcode = 0;
Guido van Rossum950361c1997-01-24 13:49:28 +0000653#endif
Antoine Pitrou9ed5f272013-08-13 20:18:52 +0200654 PyObject **stack_pointer; /* Next free slot in value stack */
Serhiy Storchakaab874002016-09-11 13:48:15 +0300655 const _Py_CODEUNIT *next_instr;
Antoine Pitrou9ed5f272013-08-13 20:18:52 +0200656 int opcode; /* Current opcode */
657 int oparg; /* Current opcode argument, if any */
658 enum why_code why; /* Reason for block stack unwind */
659 PyObject **fastlocals, **freevars;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000660 PyObject *retval = NULL; /* Return value */
661 PyThreadState *tstate = PyThreadState_GET();
662 PyCodeObject *co;
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000663
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000664 /* when tracing we set things up so that
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000665
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000666 not (instr_lb <= current_bytecode_offset < instr_ub)
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000667
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000668 is true when the line being executed has changed. The
669 initial values are such as to make this false the first
670 time it is tested. */
671 int instr_ub = -1, instr_lb = 0, instr_prev = -1;
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000672
Serhiy Storchakaab874002016-09-11 13:48:15 +0300673 const _Py_CODEUNIT *first_instr;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000674 PyObject *names;
675 PyObject *consts;
Guido van Rossum374a9221991-04-04 10:40:29 +0000676
Brett Cannon368b4b72012-04-02 12:17:59 -0400677#ifdef LLTRACE
Victor Stinner3c1e4812012-03-26 22:10:51 +0200678 _Py_IDENTIFIER(__ltrace__);
Brett Cannon368b4b72012-04-02 12:17:59 -0400679#endif
Victor Stinner3c1e4812012-03-26 22:10:51 +0200680
Antoine Pitroub52ec782009-01-25 16:34:23 +0000681/* Computed GOTOs, or
682 the-optimization-commonly-but-improperly-known-as-"threaded code"
683 using gcc's labels-as-values extension
684 (http://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html).
685
686 The traditional bytecode evaluation loop uses a "switch" statement, which
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000687 decent compilers will optimize as a single indirect branch instruction
Antoine Pitroub52ec782009-01-25 16:34:23 +0000688 combined with a lookup table of jump addresses. However, since the
689 indirect jump instruction is shared by all opcodes, the CPU will have a
690 hard time making the right prediction for where to jump next (actually,
691 it will be always wrong except in the uncommon case of a sequence of
692 several identical opcodes).
693
694 "Threaded code" in contrast, uses an explicit jump table and an explicit
695 indirect jump instruction at the end of each opcode. Since the jump
696 instruction is at a different address for each opcode, the CPU will make a
697 separate prediction for each of these instructions, which is equivalent to
698 predicting the second opcode of each opcode pair. These predictions have
699 a much better chance to turn out valid, especially in small bytecode loops.
700
701 A mispredicted branch on a modern CPU flushes the whole pipeline and
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000702 can cost several CPU cycles (depending on the pipeline depth),
Antoine Pitroub52ec782009-01-25 16:34:23 +0000703 and potentially many more instructions (depending on the pipeline width).
704 A correctly predicted branch, however, is nearly free.
705
706 At the time of this writing, the "threaded code" version is up to 15-20%
707 faster than the normal "switch" version, depending on the compiler and the
708 CPU architecture.
709
710 We disable the optimization if DYNAMIC_EXECUTION_PROFILE is defined,
711 because it would render the measurements invalid.
712
713
714 NOTE: care must be taken that the compiler doesn't try to "optimize" the
715 indirect jumps by sharing them between all opcodes. Such optimizations
716 can be disabled on gcc by using the -fno-gcse flag (or possibly
717 -fno-crossjumping).
718*/
719
Antoine Pitrou042b1282010-08-13 21:15:58 +0000720#ifdef DYNAMIC_EXECUTION_PROFILE
Antoine Pitroub52ec782009-01-25 16:34:23 +0000721#undef USE_COMPUTED_GOTOS
Antoine Pitrou042b1282010-08-13 21:15:58 +0000722#define USE_COMPUTED_GOTOS 0
Antoine Pitroub52ec782009-01-25 16:34:23 +0000723#endif
724
Antoine Pitrou042b1282010-08-13 21:15:58 +0000725#ifdef HAVE_COMPUTED_GOTOS
726 #ifndef USE_COMPUTED_GOTOS
727 #define USE_COMPUTED_GOTOS 1
728 #endif
729#else
730 #if defined(USE_COMPUTED_GOTOS) && USE_COMPUTED_GOTOS
731 #error "Computed gotos are not supported on this compiler."
732 #endif
733 #undef USE_COMPUTED_GOTOS
734 #define USE_COMPUTED_GOTOS 0
735#endif
736
737#if USE_COMPUTED_GOTOS
Antoine Pitroub52ec782009-01-25 16:34:23 +0000738/* Import the static jump table */
739#include "opcode_targets.h"
740
Antoine Pitroub52ec782009-01-25 16:34:23 +0000741#define TARGET(op) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000742 TARGET_##op: \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000743 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000744
Antoine Pitroub52ec782009-01-25 16:34:23 +0000745#define DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000746 { \
747 if (!_Py_atomic_load_relaxed(&eval_breaker)) { \
748 FAST_DISPATCH(); \
749 } \
750 continue; \
751 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000752
753#ifdef LLTRACE
754#define FAST_DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000755 { \
Łukasz Langaa785c872016-09-09 17:37:37 -0700756 if (!lltrace && !_Py_TracingPossible && !PyDTrace_LINE_ENABLED()) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000757 f->f_lasti = INSTR_OFFSET(); \
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300758 NEXTOPARG(); \
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300759 goto *opcode_targets[opcode]; \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000760 } \
761 goto fast_next_opcode; \
762 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000763#else
764#define FAST_DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000765 { \
Łukasz Langaa785c872016-09-09 17:37:37 -0700766 if (!_Py_TracingPossible && !PyDTrace_LINE_ENABLED()) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000767 f->f_lasti = INSTR_OFFSET(); \
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300768 NEXTOPARG(); \
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300769 goto *opcode_targets[opcode]; \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000770 } \
771 goto fast_next_opcode; \
772 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000773#endif
774
775#else
776#define TARGET(op) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000777 case op:
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300778
Antoine Pitroub52ec782009-01-25 16:34:23 +0000779#define DISPATCH() continue
780#define FAST_DISPATCH() goto fast_next_opcode
781#endif
782
783
Neal Norwitza81d2202002-07-14 00:27:26 +0000784/* Tuple access macros */
785
786#ifndef Py_DEBUG
787#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
788#else
789#define GETITEM(v, i) PyTuple_GetItem((v), (i))
790#endif
791
Guido van Rossum374a9221991-04-04 10:40:29 +0000792/* Code access macros */
793
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300794/* The integer overflow is checked by an assertion below. */
Serhiy Storchakaab874002016-09-11 13:48:15 +0300795#define INSTR_OFFSET() (sizeof(_Py_CODEUNIT) * (int)(next_instr - first_instr))
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300796#define NEXTOPARG() do { \
Serhiy Storchakaab874002016-09-11 13:48:15 +0300797 _Py_CODEUNIT word = *next_instr; \
798 opcode = _Py_OPCODE(word); \
799 oparg = _Py_OPARG(word); \
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300800 next_instr++; \
801 } while (0)
Serhiy Storchakaab874002016-09-11 13:48:15 +0300802#define JUMPTO(x) (next_instr = first_instr + (x) / sizeof(_Py_CODEUNIT))
803#define JUMPBY(x) (next_instr += (x) / sizeof(_Py_CODEUNIT))
Guido van Rossum374a9221991-04-04 10:40:29 +0000804
Raymond Hettingerf606f872003-03-16 03:11:04 +0000805/* OpCode prediction macros
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 Some opcodes tend to come in pairs thus making it possible to
807 predict the second code when the first is run. For example,
Serhiy Storchakada9c5132016-06-27 18:58:57 +0300808 COMPARE_OP is often followed by POP_JUMP_IF_FALSE or POP_JUMP_IF_TRUE.
Raymond Hettingerf606f872003-03-16 03:11:04 +0000809
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000810 Verifying the prediction costs a single high-speed test of a register
811 variable against a constant. If the pairing was good, then the
812 processor's own internal branch predication has a high likelihood of
813 success, resulting in a nearly zero-overhead transition to the
814 next opcode. A successful prediction saves a trip through the eval-loop
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300815 including its unpredictable switch-case branch. Combined with the
816 processor's internal branch prediction, a successful PREDICT has the
817 effect of making the two opcodes run as if they were a single new opcode
818 with the bodies combined.
Raymond Hettingerf606f872003-03-16 03:11:04 +0000819
Georg Brandl86b2fb92008-07-16 03:43:04 +0000820 If collecting opcode statistics, your choices are to either keep the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000821 predictions turned-on and interpret the results as if some opcodes
822 had been combined or turn-off predictions so that the opcode frequency
823 counter updates for both opcodes.
Antoine Pitroub52ec782009-01-25 16:34:23 +0000824
825 Opcode prediction is disabled with threaded code, since the latter allows
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000826 the CPU to record separate branch prediction information for each
827 opcode.
Antoine Pitroub52ec782009-01-25 16:34:23 +0000828
Raymond Hettingerf606f872003-03-16 03:11:04 +0000829*/
830
Antoine Pitrou042b1282010-08-13 21:15:58 +0000831#if defined(DYNAMIC_EXECUTION_PROFILE) || USE_COMPUTED_GOTOS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000832#define PREDICT(op) if (0) goto PRED_##op
Raymond Hettingera7216982004-02-08 19:59:27 +0000833#else
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300834#define PREDICT(op) \
835 do{ \
Serhiy Storchakaab874002016-09-11 13:48:15 +0300836 _Py_CODEUNIT word = *next_instr; \
837 opcode = _Py_OPCODE(word); \
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300838 if (opcode == op){ \
Serhiy Storchakaab874002016-09-11 13:48:15 +0300839 oparg = _Py_OPARG(word); \
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300840 next_instr++; \
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300841 goto PRED_##op; \
842 } \
843 } while(0)
Antoine Pitroub52ec782009-01-25 16:34:23 +0000844#endif
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300845#define PREDICTED(op) PRED_##op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000846
Raymond Hettingerf606f872003-03-16 03:11:04 +0000847
Guido van Rossum374a9221991-04-04 10:40:29 +0000848/* Stack manipulation macros */
849
Martin v. Löwis18e16552006-02-15 17:27:45 +0000850/* The stack can grow at most MAXINT deep, as co_nlocals and
851 co_stacksize are ints. */
Stefan Krahb7e10102010-06-23 18:42:39 +0000852#define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack))
853#define EMPTY() (STACK_LEVEL() == 0)
854#define TOP() (stack_pointer[-1])
855#define SECOND() (stack_pointer[-2])
856#define THIRD() (stack_pointer[-3])
857#define FOURTH() (stack_pointer[-4])
858#define PEEK(n) (stack_pointer[-(n)])
859#define SET_TOP(v) (stack_pointer[-1] = (v))
860#define SET_SECOND(v) (stack_pointer[-2] = (v))
861#define SET_THIRD(v) (stack_pointer[-3] = (v))
862#define SET_FOURTH(v) (stack_pointer[-4] = (v))
863#define SET_VALUE(n, v) (stack_pointer[-(n)] = (v))
864#define BASIC_STACKADJ(n) (stack_pointer += n)
865#define BASIC_PUSH(v) (*stack_pointer++ = (v))
866#define BASIC_POP() (*--stack_pointer)
Guido van Rossum374a9221991-04-04 10:40:29 +0000867
Guido van Rossum96a42c81992-01-12 02:29:51 +0000868#ifdef LLTRACE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000869#define PUSH(v) { (void)(BASIC_PUSH(v), \
Stefan Krahb7e10102010-06-23 18:42:39 +0000870 lltrace && prtrace(TOP(), "push")); \
871 assert(STACK_LEVEL() <= co->co_stacksize); }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000872#define POP() ((void)(lltrace && prtrace(TOP(), "pop")), \
Stefan Krahb7e10102010-06-23 18:42:39 +0000873 BASIC_POP())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000874#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
Stefan Krahb7e10102010-06-23 18:42:39 +0000875 lltrace && prtrace(TOP(), "stackadj")); \
876 assert(STACK_LEVEL() <= co->co_stacksize); }
Christian Heimes0449f632007-12-15 01:27:15 +0000877#define EXT_POP(STACK_POINTER) ((void)(lltrace && \
Stefan Krahb7e10102010-06-23 18:42:39 +0000878 prtrace((STACK_POINTER)[-1], "ext_pop")), \
879 *--(STACK_POINTER))
Guido van Rossum374a9221991-04-04 10:40:29 +0000880#else
Stefan Krahb7e10102010-06-23 18:42:39 +0000881#define PUSH(v) BASIC_PUSH(v)
882#define POP() BASIC_POP()
883#define STACKADJ(n) BASIC_STACKADJ(n)
Guido van Rossumc2e20742006-02-27 22:32:47 +0000884#define EXT_POP(STACK_POINTER) (*--(STACK_POINTER))
Guido van Rossum374a9221991-04-04 10:40:29 +0000885#endif
886
Guido van Rossum681d79a1995-07-18 14:51:37 +0000887/* Local variable macros */
888
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000889#define GETLOCAL(i) (fastlocals[i])
Guido van Rossumcfbf1a32002-03-28 20:17:52 +0000890
891/* The SETLOCAL() macro must not DECREF the local variable in-place and
892 then store the new value; it must copy the old value to a temporary
893 value, then store the new value, and then DECREF the temporary value.
894 This is because it is possible that during the DECREF the frame is
895 accessed by other code (e.g. a __del__ method or gc.collect()) and the
896 variable would be pointing to already-freed memory. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000897#define SETLOCAL(i, value) do { PyObject *tmp = GETLOCAL(i); \
Stefan Krahb7e10102010-06-23 18:42:39 +0000898 GETLOCAL(i) = value; \
899 Py_XDECREF(tmp); } while (0)
Guido van Rossum681d79a1995-07-18 14:51:37 +0000900
Benjamin Petersoneec3d712008-06-11 15:59:43 +0000901
902#define UNWIND_BLOCK(b) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000903 while (STACK_LEVEL() > (b)->b_level) { \
904 PyObject *v = POP(); \
905 Py_XDECREF(v); \
906 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +0000907
908#define UNWIND_EXCEPT_HANDLER(b) \
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300909 do { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000910 PyObject *type, *value, *traceback; \
911 assert(STACK_LEVEL() >= (b)->b_level + 3); \
912 while (STACK_LEVEL() > (b)->b_level + 3) { \
913 value = POP(); \
914 Py_XDECREF(value); \
915 } \
916 type = tstate->exc_type; \
917 value = tstate->exc_value; \
918 traceback = tstate->exc_traceback; \
919 tstate->exc_type = POP(); \
920 tstate->exc_value = POP(); \
921 tstate->exc_traceback = POP(); \
922 Py_XDECREF(type); \
923 Py_XDECREF(value); \
924 Py_XDECREF(traceback); \
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300925 } while(0)
Benjamin Petersoneec3d712008-06-11 15:59:43 +0000926
Guido van Rossuma027efa1997-05-05 20:56:21 +0000927/* Start of code */
928
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000929 /* push frame */
930 if (Py_EnterRecursiveCall(""))
931 return NULL;
Guido van Rossum8861b741996-07-30 16:49:37 +0000932
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000933 tstate->frame = f;
Tim Peters5ca576e2001-06-18 22:08:13 +0000934
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000935 if (tstate->use_tracing) {
936 if (tstate->c_tracefunc != NULL) {
937 /* tstate->c_tracefunc, if defined, is a
938 function that will be called on *every* entry
939 to a code block. Its return value, if not
940 None, is a function that will be called at
941 the start of each executed line of code.
942 (Actually, the function must return itself
943 in order to continue tracing.) The trace
944 functions are called with three arguments:
945 a pointer to the current frame, a string
946 indicating why the function is called, and
947 an argument which depends on the situation.
948 The global trace function is also called
949 whenever an exception is detected. */
950 if (call_trace_protected(tstate->c_tracefunc,
951 tstate->c_traceobj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100952 tstate, f, PyTrace_CALL, Py_None)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000953 /* Trace function raised an error */
954 goto exit_eval_frame;
955 }
956 }
957 if (tstate->c_profilefunc != NULL) {
958 /* Similar for c_profilefunc, except it needn't
959 return itself and isn't called for "line" events */
960 if (call_trace_protected(tstate->c_profilefunc,
961 tstate->c_profileobj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100962 tstate, f, PyTrace_CALL, Py_None)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000963 /* Profile function raised an error */
964 goto exit_eval_frame;
965 }
966 }
967 }
Neil Schemenauer6c0f2002001-09-04 19:03:35 +0000968
Łukasz Langaa785c872016-09-09 17:37:37 -0700969 if (PyDTrace_FUNCTION_ENTRY_ENABLED())
970 dtrace_function_entry(f);
971
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000972 co = f->f_code;
973 names = co->co_names;
974 consts = co->co_consts;
975 fastlocals = f->f_localsplus;
976 freevars = f->f_localsplus + co->co_nlocals;
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +0300977 assert(PyBytes_Check(co->co_code));
978 assert(PyBytes_GET_SIZE(co->co_code) <= INT_MAX);
Serhiy Storchakaab874002016-09-11 13:48:15 +0300979 assert(PyBytes_GET_SIZE(co->co_code) % sizeof(_Py_CODEUNIT) == 0);
980 assert(_Py_IS_ALIGNED(PyBytes_AS_STRING(co->co_code), sizeof(_Py_CODEUNIT)));
981 first_instr = (_Py_CODEUNIT *) PyBytes_AS_STRING(co->co_code);
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300982 /*
983 f->f_lasti refers to the index of the last instruction,
984 unless it's -1 in which case next_instr should be first_instr.
Michael W. Hudson019a78e2002-11-08 12:53:11 +0000985
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300986 YIELD_FROM sets f_lasti to itself, in order to repeatedly yield
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -0500987 multiple values.
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000988
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000989 When the PREDICT() macros are enabled, some opcode pairs follow in
990 direct succession without updating f->f_lasti. A successful
991 prediction effectively links the two codes together as if they
992 were a single new opcode; accordingly,f->f_lasti will point to
993 the first code in the pair (for instance, GET_ITER followed by
994 FOR_ITER is effectively a single opcode and f->f_lasti will point
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300995 to the beginning of the combined pair.)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000996 */
Serhiy Storchakaab874002016-09-11 13:48:15 +0300997 assert(f->f_lasti >= -1);
Serhiy Storchakab0f80b02016-05-24 09:15:14 +0300998 next_instr = first_instr;
999 if (f->f_lasti >= 0) {
Serhiy Storchakaab874002016-09-11 13:48:15 +03001000 assert(f->f_lasti % sizeof(_Py_CODEUNIT) == 0);
1001 next_instr += f->f_lasti / sizeof(_Py_CODEUNIT) + 1;
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03001002 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001003 stack_pointer = f->f_stacktop;
1004 assert(stack_pointer != NULL);
1005 f->f_stacktop = NULL; /* remains NULL unless yield suspends frame */
Antoine Pitrou58720d62013-08-05 23:26:40 +02001006 f->f_executing = 1;
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001007
Yury Selivanoveb636452016-09-08 22:01:51 -07001008 if (co->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR)) {
Victor Stinner26f7b8a2015-01-31 10:29:47 +01001009 if (!throwflag && f->f_exc_type != NULL && f->f_exc_type != Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001010 /* We were in an except handler when we left,
1011 restore the exception state which was put aside
1012 (see YIELD_VALUE). */
Benjamin Peterson87880242011-07-03 16:48:31 -05001013 swap_exc_state(tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001014 }
Benjamin Peterson87880242011-07-03 16:48:31 -05001015 else
1016 save_exc_state(tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001017 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001018
Tim Peters5ca576e2001-06-18 22:08:13 +00001019#ifdef LLTRACE
Victor Stinner3c1e4812012-03-26 22:10:51 +02001020 lltrace = _PyDict_GetItemId(f->f_globals, &PyId___ltrace__) != NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00001021#endif
Guido van Rossumac7be682001-01-17 15:42:30 +00001022
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001023 why = WHY_NOT;
Guido van Rossumac7be682001-01-17 15:42:30 +00001024
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001025 if (throwflag) /* support for generator.throw() */
1026 goto error;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001027
Victor Stinnerace47d72013-07-18 01:41:08 +02001028#ifdef Py_DEBUG
1029 /* PyEval_EvalFrameEx() must not be called with an exception set,
Victor Stinnera8cb5152017-01-18 14:12:51 +01001030 because it can clear it (directly or indirectly) and so the
Martin Panter9955a372015-10-07 10:26:23 +00001031 caller loses its exception */
Victor Stinnerace47d72013-07-18 01:41:08 +02001032 assert(!PyErr_Occurred());
1033#endif
1034
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001035 for (;;) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001036 assert(stack_pointer >= f->f_valuestack); /* else underflow */
1037 assert(STACK_LEVEL() <= co->co_stacksize); /* else overflow */
Victor Stinnerace47d72013-07-18 01:41:08 +02001038 assert(!PyErr_Occurred());
Michael W. Hudsondd32a912002-08-15 14:59:02 +00001039
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001040 /* Do periodic things. Doing this every time through
1041 the loop would add too much overhead, so we do it
1042 only every Nth instruction. We also do it if
1043 ``pendingcalls_to_do'' is set, i.e. when an asynchronous
1044 event needs attention (e.g. a signal handler or
1045 async I/O handler); see Py_AddPendingCall() and
1046 Py_MakePendingCalls() above. */
Guido van Rossumac7be682001-01-17 15:42:30 +00001047
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001048 if (_Py_atomic_load_relaxed(&eval_breaker)) {
Nathaniel J. Smithab4413a2017-05-17 13:33:23 -07001049 if (_Py_OPCODE(*next_instr) == SETUP_FINALLY ||
1050 _Py_OPCODE(*next_instr) == YIELD_FROM) {
1051 /* Two cases where we skip running signal handlers and other
1052 pending calls:
1053 - If we're about to enter the try: of a try/finally (not
1054 *very* useful, but might help in some cases and it's
1055 traditional)
1056 - If we're resuming a chain of nested 'yield from' or
1057 'await' calls, then each frame is parked with YIELD_FROM
1058 as its next opcode. If the user hit control-C we want to
1059 wait until we've reached the innermost frame before
1060 running the signal handler and raising KeyboardInterrupt
1061 (see bpo-30039).
1062 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001063 goto fast_next_opcode;
1064 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001065 if (_Py_atomic_load_relaxed(&pendingcalls_to_do)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001066 if (Py_MakePendingCalls() < 0)
1067 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001068 }
Guido van Rossume59214e1994-08-30 08:01:59 +00001069#ifdef WITH_THREAD
Benjamin Petersond2be5b42010-09-10 22:47:02 +00001070 if (_Py_atomic_load_relaxed(&gil_drop_request)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001071 /* Give another thread a chance */
1072 if (PyThreadState_Swap(NULL) != tstate)
1073 Py_FatalError("ceval: tstate mix-up");
1074 drop_gil(tstate);
1075
1076 /* Other threads may run now */
1077
1078 take_gil(tstate);
Benjamin Peterson17548dd2014-06-16 22:59:07 -07001079
1080 /* Check if we should make a quick exit. */
1081 if (_Py_Finalizing && _Py_Finalizing != tstate) {
1082 drop_gil(tstate);
1083 PyThread_exit_thread();
1084 }
1085
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001086 if (PyThreadState_Swap(tstate) != NULL)
1087 Py_FatalError("ceval: orphan tstate");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001088 }
Benjamin Petersond2be5b42010-09-10 22:47:02 +00001089#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001090 /* Check for asynchronous exceptions. */
1091 if (tstate->async_exc != NULL) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001092 PyObject *exc = tstate->async_exc;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001093 tstate->async_exc = NULL;
1094 UNSIGNAL_ASYNC_EXC();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001095 PyErr_SetNone(exc);
1096 Py_DECREF(exc);
1097 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001098 }
1099 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001100
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001101 fast_next_opcode:
1102 f->f_lasti = INSTR_OFFSET();
Guido van Rossumac7be682001-01-17 15:42:30 +00001103
Łukasz Langaa785c872016-09-09 17:37:37 -07001104 if (PyDTrace_LINE_ENABLED())
1105 maybe_dtrace_line(f, &instr_lb, &instr_ub, &instr_prev);
1106
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001107 /* line-by-line tracing support */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001108
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001109 if (_Py_TracingPossible &&
Benjamin Peterson51f46162013-01-23 08:38:47 -05001110 tstate->c_tracefunc != NULL && !tstate->tracing) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001111 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001112 /* see maybe_call_line_trace
1113 for expository comments */
1114 f->f_stacktop = stack_pointer;
Tim Peters8a5c3c72004-04-05 19:36:21 +00001115
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001116 err = maybe_call_line_trace(tstate->c_tracefunc,
1117 tstate->c_traceobj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01001118 tstate, f,
1119 &instr_lb, &instr_ub, &instr_prev);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001120 /* Reload possibly changed frame fields */
1121 JUMPTO(f->f_lasti);
1122 if (f->f_stacktop != NULL) {
1123 stack_pointer = f->f_stacktop;
1124 f->f_stacktop = NULL;
1125 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001126 if (err)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001127 /* trace function raised an exception */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001128 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 }
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001130
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001131 /* Extract opcode and argument */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001132
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +03001133 NEXTOPARG();
Stefan Krahb7e10102010-06-23 18:42:39 +00001134 dispatch_opcode:
Guido van Rossum950361c1997-01-24 13:49:28 +00001135#ifdef DYNAMIC_EXECUTION_PROFILE
1136#ifdef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001137 dxpairs[lastopcode][opcode]++;
1138 lastopcode = opcode;
Guido van Rossum950361c1997-01-24 13:49:28 +00001139#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001140 dxp[opcode]++;
Guido van Rossum950361c1997-01-24 13:49:28 +00001141#endif
Guido van Rossum374a9221991-04-04 10:40:29 +00001142
Guido van Rossum96a42c81992-01-12 02:29:51 +00001143#ifdef LLTRACE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001144 /* Instruction tracing */
Guido van Rossumac7be682001-01-17 15:42:30 +00001145
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001146 if (lltrace) {
1147 if (HAS_ARG(opcode)) {
1148 printf("%d: %d, %d\n",
1149 f->f_lasti, opcode, oparg);
1150 }
1151 else {
1152 printf("%d: %d\n",
1153 f->f_lasti, opcode);
1154 }
1155 }
Guido van Rossum374a9221991-04-04 10:40:29 +00001156#endif
Michael W. Hudsondd32a912002-08-15 14:59:02 +00001157
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001158 switch (opcode) {
Guido van Rossumac7be682001-01-17 15:42:30 +00001159
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001160 /* BEWARE!
1161 It is essential that any operation that fails sets either
1162 x to NULL, err to nonzero, or why to anything but WHY_NOT,
1163 and that no operation that succeeds does this! */
Guido van Rossumac7be682001-01-17 15:42:30 +00001164
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001165 TARGET(NOP)
1166 FAST_DISPATCH();
Raymond Hettinger9c18e812004-06-21 16:31:15 +00001167
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001168 TARGET(LOAD_FAST) {
1169 PyObject *value = GETLOCAL(oparg);
1170 if (value == NULL) {
1171 format_exc_check_arg(PyExc_UnboundLocalError,
1172 UNBOUNDLOCAL_ERROR_MSG,
1173 PyTuple_GetItem(co->co_varnames, oparg));
1174 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001175 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001176 Py_INCREF(value);
1177 PUSH(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001178 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001179 }
1180
Serhiy Storchakada9c5132016-06-27 18:58:57 +03001181 PREDICTED(LOAD_CONST);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001182 TARGET(LOAD_CONST) {
1183 PyObject *value = GETITEM(consts, oparg);
1184 Py_INCREF(value);
1185 PUSH(value);
1186 FAST_DISPATCH();
1187 }
Neil Schemenauer63543862002-02-17 19:10:14 +00001188
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03001189 PREDICTED(STORE_FAST);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001190 TARGET(STORE_FAST) {
1191 PyObject *value = POP();
1192 SETLOCAL(oparg, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001193 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001194 }
Neil Schemenauer63543862002-02-17 19:10:14 +00001195
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001196 TARGET(POP_TOP) {
1197 PyObject *value = POP();
1198 Py_DECREF(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001199 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001200 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001201
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001202 TARGET(ROT_TWO) {
1203 PyObject *top = TOP();
1204 PyObject *second = SECOND();
1205 SET_TOP(second);
1206 SET_SECOND(top);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001207 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001208 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001209
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001210 TARGET(ROT_THREE) {
1211 PyObject *top = TOP();
1212 PyObject *second = SECOND();
1213 PyObject *third = THIRD();
1214 SET_TOP(second);
1215 SET_SECOND(third);
1216 SET_THIRD(top);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001217 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001218 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001219
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001220 TARGET(DUP_TOP) {
1221 PyObject *top = TOP();
1222 Py_INCREF(top);
1223 PUSH(top);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001224 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001225 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001226
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001227 TARGET(DUP_TOP_TWO) {
1228 PyObject *top = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001229 PyObject *second = SECOND();
Benjamin Petersonf208df32012-10-12 11:37:56 -04001230 Py_INCREF(top);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001231 Py_INCREF(second);
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00001232 STACKADJ(2);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001233 SET_TOP(top);
1234 SET_SECOND(second);
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00001235 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001236 }
Thomas Wouters434d0822000-08-24 20:11:32 +00001237
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001238 TARGET(UNARY_POSITIVE) {
1239 PyObject *value = TOP();
1240 PyObject *res = PyNumber_Positive(value);
1241 Py_DECREF(value);
1242 SET_TOP(res);
1243 if (res == NULL)
1244 goto error;
1245 DISPATCH();
1246 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001247
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001248 TARGET(UNARY_NEGATIVE) {
1249 PyObject *value = TOP();
1250 PyObject *res = PyNumber_Negative(value);
1251 Py_DECREF(value);
1252 SET_TOP(res);
1253 if (res == NULL)
1254 goto error;
1255 DISPATCH();
1256 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001257
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001258 TARGET(UNARY_NOT) {
1259 PyObject *value = TOP();
1260 int err = PyObject_IsTrue(value);
1261 Py_DECREF(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001262 if (err == 0) {
1263 Py_INCREF(Py_True);
1264 SET_TOP(Py_True);
1265 DISPATCH();
1266 }
1267 else if (err > 0) {
1268 Py_INCREF(Py_False);
1269 SET_TOP(Py_False);
1270 err = 0;
1271 DISPATCH();
1272 }
1273 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001274 goto error;
1275 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001276
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001277 TARGET(UNARY_INVERT) {
1278 PyObject *value = TOP();
1279 PyObject *res = PyNumber_Invert(value);
1280 Py_DECREF(value);
1281 SET_TOP(res);
1282 if (res == NULL)
1283 goto error;
1284 DISPATCH();
1285 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001286
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001287 TARGET(BINARY_POWER) {
1288 PyObject *exp = POP();
1289 PyObject *base = TOP();
1290 PyObject *res = PyNumber_Power(base, exp, Py_None);
1291 Py_DECREF(base);
1292 Py_DECREF(exp);
1293 SET_TOP(res);
1294 if (res == NULL)
1295 goto error;
1296 DISPATCH();
1297 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001298
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001299 TARGET(BINARY_MULTIPLY) {
1300 PyObject *right = POP();
1301 PyObject *left = TOP();
1302 PyObject *res = PyNumber_Multiply(left, right);
1303 Py_DECREF(left);
1304 Py_DECREF(right);
1305 SET_TOP(res);
1306 if (res == NULL)
1307 goto error;
1308 DISPATCH();
1309 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001310
Benjamin Petersond51374e2014-04-09 23:55:56 -04001311 TARGET(BINARY_MATRIX_MULTIPLY) {
1312 PyObject *right = POP();
1313 PyObject *left = TOP();
1314 PyObject *res = PyNumber_MatrixMultiply(left, right);
1315 Py_DECREF(left);
1316 Py_DECREF(right);
1317 SET_TOP(res);
1318 if (res == NULL)
1319 goto error;
1320 DISPATCH();
1321 }
1322
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001323 TARGET(BINARY_TRUE_DIVIDE) {
1324 PyObject *divisor = POP();
1325 PyObject *dividend = TOP();
1326 PyObject *quotient = PyNumber_TrueDivide(dividend, divisor);
1327 Py_DECREF(dividend);
1328 Py_DECREF(divisor);
1329 SET_TOP(quotient);
1330 if (quotient == NULL)
1331 goto error;
1332 DISPATCH();
1333 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001334
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001335 TARGET(BINARY_FLOOR_DIVIDE) {
1336 PyObject *divisor = POP();
1337 PyObject *dividend = TOP();
1338 PyObject *quotient = PyNumber_FloorDivide(dividend, divisor);
1339 Py_DECREF(dividend);
1340 Py_DECREF(divisor);
1341 SET_TOP(quotient);
1342 if (quotient == NULL)
1343 goto error;
1344 DISPATCH();
1345 }
Guido van Rossum4668b002001-08-08 05:00:18 +00001346
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001347 TARGET(BINARY_MODULO) {
1348 PyObject *divisor = POP();
1349 PyObject *dividend = TOP();
Martijn Pietersd7e64332017-02-23 13:38:04 +00001350 PyObject *res;
1351 if (PyUnicode_CheckExact(dividend) && (
1352 !PyUnicode_Check(divisor) || PyUnicode_CheckExact(divisor))) {
1353 // fast path; string formatting, but not if the RHS is a str subclass
1354 // (see issue28598)
1355 res = PyUnicode_Format(dividend, divisor);
1356 } else {
1357 res = PyNumber_Remainder(dividend, divisor);
1358 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001359 Py_DECREF(divisor);
1360 Py_DECREF(dividend);
1361 SET_TOP(res);
1362 if (res == NULL)
1363 goto error;
1364 DISPATCH();
1365 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001366
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001367 TARGET(BINARY_ADD) {
1368 PyObject *right = POP();
1369 PyObject *left = TOP();
1370 PyObject *sum;
Victor Stinnerd65f42a2016-10-20 12:18:10 +02001371 /* NOTE(haypo): Please don't try to micro-optimize int+int on
1372 CPython using bytecode, it is simply worthless.
1373 See http://bugs.python.org/issue21955 and
1374 http://bugs.python.org/issue10044 for the discussion. In short,
1375 no patch shown any impact on a realistic benchmark, only a minor
1376 speedup on microbenchmarks. */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001377 if (PyUnicode_CheckExact(left) &&
1378 PyUnicode_CheckExact(right)) {
1379 sum = unicode_concatenate(left, right, f, next_instr);
Martin Panter95f53c12016-07-18 08:23:26 +00001380 /* unicode_concatenate consumed the ref to left */
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001381 }
1382 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001383 sum = PyNumber_Add(left, right);
1384 Py_DECREF(left);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001385 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001386 Py_DECREF(right);
1387 SET_TOP(sum);
1388 if (sum == NULL)
1389 goto error;
1390 DISPATCH();
1391 }
1392
1393 TARGET(BINARY_SUBTRACT) {
1394 PyObject *right = POP();
1395 PyObject *left = TOP();
1396 PyObject *diff = PyNumber_Subtract(left, right);
1397 Py_DECREF(right);
1398 Py_DECREF(left);
1399 SET_TOP(diff);
1400 if (diff == NULL)
1401 goto error;
1402 DISPATCH();
1403 }
1404
1405 TARGET(BINARY_SUBSCR) {
1406 PyObject *sub = POP();
1407 PyObject *container = TOP();
1408 PyObject *res = PyObject_GetItem(container, sub);
1409 Py_DECREF(container);
1410 Py_DECREF(sub);
1411 SET_TOP(res);
1412 if (res == NULL)
1413 goto error;
1414 DISPATCH();
1415 }
1416
1417 TARGET(BINARY_LSHIFT) {
1418 PyObject *right = POP();
1419 PyObject *left = TOP();
1420 PyObject *res = PyNumber_Lshift(left, right);
1421 Py_DECREF(left);
1422 Py_DECREF(right);
1423 SET_TOP(res);
1424 if (res == NULL)
1425 goto error;
1426 DISPATCH();
1427 }
1428
1429 TARGET(BINARY_RSHIFT) {
1430 PyObject *right = POP();
1431 PyObject *left = TOP();
1432 PyObject *res = PyNumber_Rshift(left, right);
1433 Py_DECREF(left);
1434 Py_DECREF(right);
1435 SET_TOP(res);
1436 if (res == NULL)
1437 goto error;
1438 DISPATCH();
1439 }
1440
1441 TARGET(BINARY_AND) {
1442 PyObject *right = POP();
1443 PyObject *left = TOP();
1444 PyObject *res = PyNumber_And(left, right);
1445 Py_DECREF(left);
1446 Py_DECREF(right);
1447 SET_TOP(res);
1448 if (res == NULL)
1449 goto error;
1450 DISPATCH();
1451 }
1452
1453 TARGET(BINARY_XOR) {
1454 PyObject *right = POP();
1455 PyObject *left = TOP();
1456 PyObject *res = PyNumber_Xor(left, right);
1457 Py_DECREF(left);
1458 Py_DECREF(right);
1459 SET_TOP(res);
1460 if (res == NULL)
1461 goto error;
1462 DISPATCH();
1463 }
1464
1465 TARGET(BINARY_OR) {
1466 PyObject *right = POP();
1467 PyObject *left = TOP();
1468 PyObject *res = PyNumber_Or(left, right);
1469 Py_DECREF(left);
1470 Py_DECREF(right);
1471 SET_TOP(res);
1472 if (res == NULL)
1473 goto error;
1474 DISPATCH();
1475 }
1476
1477 TARGET(LIST_APPEND) {
1478 PyObject *v = POP();
1479 PyObject *list = PEEK(oparg);
1480 int err;
1481 err = PyList_Append(list, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001482 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001483 if (err != 0)
1484 goto error;
1485 PREDICT(JUMP_ABSOLUTE);
1486 DISPATCH();
1487 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001488
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001489 TARGET(SET_ADD) {
1490 PyObject *v = POP();
Raymond Hettinger41862222016-10-15 19:03:06 -07001491 PyObject *set = PEEK(oparg);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001492 int err;
1493 err = PySet_Add(set, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001494 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001495 if (err != 0)
1496 goto error;
1497 PREDICT(JUMP_ABSOLUTE);
1498 DISPATCH();
1499 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001500
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001501 TARGET(INPLACE_POWER) {
1502 PyObject *exp = POP();
1503 PyObject *base = TOP();
1504 PyObject *res = PyNumber_InPlacePower(base, exp, Py_None);
1505 Py_DECREF(base);
1506 Py_DECREF(exp);
1507 SET_TOP(res);
1508 if (res == NULL)
1509 goto error;
1510 DISPATCH();
1511 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001512
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001513 TARGET(INPLACE_MULTIPLY) {
1514 PyObject *right = POP();
1515 PyObject *left = TOP();
1516 PyObject *res = PyNumber_InPlaceMultiply(left, right);
1517 Py_DECREF(left);
1518 Py_DECREF(right);
1519 SET_TOP(res);
1520 if (res == NULL)
1521 goto error;
1522 DISPATCH();
1523 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001524
Benjamin Petersond51374e2014-04-09 23:55:56 -04001525 TARGET(INPLACE_MATRIX_MULTIPLY) {
1526 PyObject *right = POP();
1527 PyObject *left = TOP();
1528 PyObject *res = PyNumber_InPlaceMatrixMultiply(left, right);
1529 Py_DECREF(left);
1530 Py_DECREF(right);
1531 SET_TOP(res);
1532 if (res == NULL)
1533 goto error;
1534 DISPATCH();
1535 }
1536
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001537 TARGET(INPLACE_TRUE_DIVIDE) {
1538 PyObject *divisor = POP();
1539 PyObject *dividend = TOP();
1540 PyObject *quotient = PyNumber_InPlaceTrueDivide(dividend, divisor);
1541 Py_DECREF(dividend);
1542 Py_DECREF(divisor);
1543 SET_TOP(quotient);
1544 if (quotient == NULL)
1545 goto error;
1546 DISPATCH();
1547 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001548
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001549 TARGET(INPLACE_FLOOR_DIVIDE) {
1550 PyObject *divisor = POP();
1551 PyObject *dividend = TOP();
1552 PyObject *quotient = PyNumber_InPlaceFloorDivide(dividend, divisor);
1553 Py_DECREF(dividend);
1554 Py_DECREF(divisor);
1555 SET_TOP(quotient);
1556 if (quotient == NULL)
1557 goto error;
1558 DISPATCH();
1559 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001560
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001561 TARGET(INPLACE_MODULO) {
1562 PyObject *right = POP();
1563 PyObject *left = TOP();
1564 PyObject *mod = PyNumber_InPlaceRemainder(left, right);
1565 Py_DECREF(left);
1566 Py_DECREF(right);
1567 SET_TOP(mod);
1568 if (mod == NULL)
1569 goto error;
1570 DISPATCH();
1571 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001572
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001573 TARGET(INPLACE_ADD) {
1574 PyObject *right = POP();
1575 PyObject *left = TOP();
1576 PyObject *sum;
1577 if (PyUnicode_CheckExact(left) && PyUnicode_CheckExact(right)) {
1578 sum = unicode_concatenate(left, right, f, next_instr);
Martin Panter95f53c12016-07-18 08:23:26 +00001579 /* unicode_concatenate consumed the ref to left */
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001580 }
1581 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001582 sum = PyNumber_InPlaceAdd(left, right);
1583 Py_DECREF(left);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001584 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001585 Py_DECREF(right);
1586 SET_TOP(sum);
1587 if (sum == NULL)
1588 goto error;
1589 DISPATCH();
1590 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001591
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001592 TARGET(INPLACE_SUBTRACT) {
1593 PyObject *right = POP();
1594 PyObject *left = TOP();
1595 PyObject *diff = PyNumber_InPlaceSubtract(left, right);
1596 Py_DECREF(left);
1597 Py_DECREF(right);
1598 SET_TOP(diff);
1599 if (diff == NULL)
1600 goto error;
1601 DISPATCH();
1602 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001603
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001604 TARGET(INPLACE_LSHIFT) {
1605 PyObject *right = POP();
1606 PyObject *left = TOP();
1607 PyObject *res = PyNumber_InPlaceLshift(left, right);
1608 Py_DECREF(left);
1609 Py_DECREF(right);
1610 SET_TOP(res);
1611 if (res == NULL)
1612 goto error;
1613 DISPATCH();
1614 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001615
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001616 TARGET(INPLACE_RSHIFT) {
1617 PyObject *right = POP();
1618 PyObject *left = TOP();
1619 PyObject *res = PyNumber_InPlaceRshift(left, right);
1620 Py_DECREF(left);
1621 Py_DECREF(right);
1622 SET_TOP(res);
1623 if (res == NULL)
1624 goto error;
1625 DISPATCH();
1626 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001627
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001628 TARGET(INPLACE_AND) {
1629 PyObject *right = POP();
1630 PyObject *left = TOP();
1631 PyObject *res = PyNumber_InPlaceAnd(left, right);
1632 Py_DECREF(left);
1633 Py_DECREF(right);
1634 SET_TOP(res);
1635 if (res == NULL)
1636 goto error;
1637 DISPATCH();
1638 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001639
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001640 TARGET(INPLACE_XOR) {
1641 PyObject *right = POP();
1642 PyObject *left = TOP();
1643 PyObject *res = PyNumber_InPlaceXor(left, right);
1644 Py_DECREF(left);
1645 Py_DECREF(right);
1646 SET_TOP(res);
1647 if (res == NULL)
1648 goto error;
1649 DISPATCH();
1650 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001651
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001652 TARGET(INPLACE_OR) {
1653 PyObject *right = POP();
1654 PyObject *left = TOP();
1655 PyObject *res = PyNumber_InPlaceOr(left, right);
1656 Py_DECREF(left);
1657 Py_DECREF(right);
1658 SET_TOP(res);
1659 if (res == NULL)
1660 goto error;
1661 DISPATCH();
1662 }
Thomas Wouters434d0822000-08-24 20:11:32 +00001663
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001664 TARGET(STORE_SUBSCR) {
1665 PyObject *sub = TOP();
1666 PyObject *container = SECOND();
1667 PyObject *v = THIRD();
1668 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001669 STACKADJ(-3);
Martin Panter95f53c12016-07-18 08:23:26 +00001670 /* container[sub] = v */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001671 err = PyObject_SetItem(container, sub, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001672 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001673 Py_DECREF(container);
1674 Py_DECREF(sub);
1675 if (err != 0)
1676 goto error;
1677 DISPATCH();
1678 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001679
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001680 TARGET(STORE_ANNOTATION) {
1681 _Py_IDENTIFIER(__annotations__);
1682 PyObject *ann_dict;
1683 PyObject *ann = POP();
1684 PyObject *name = GETITEM(names, oparg);
1685 int err;
1686 if (f->f_locals == NULL) {
1687 PyErr_Format(PyExc_SystemError,
1688 "no locals found when storing annotation");
1689 Py_DECREF(ann);
1690 goto error;
1691 }
1692 /* first try to get __annotations__ from locals... */
1693 if (PyDict_CheckExact(f->f_locals)) {
1694 ann_dict = _PyDict_GetItemId(f->f_locals,
1695 &PyId___annotations__);
1696 if (ann_dict == NULL) {
1697 PyErr_SetString(PyExc_NameError,
1698 "__annotations__ not found");
1699 Py_DECREF(ann);
1700 goto error;
1701 }
1702 Py_INCREF(ann_dict);
1703 }
1704 else {
1705 PyObject *ann_str = _PyUnicode_FromId(&PyId___annotations__);
1706 if (ann_str == NULL) {
1707 Py_DECREF(ann);
1708 goto error;
1709 }
1710 ann_dict = PyObject_GetItem(f->f_locals, ann_str);
1711 if (ann_dict == NULL) {
1712 if (PyErr_ExceptionMatches(PyExc_KeyError)) {
1713 PyErr_SetString(PyExc_NameError,
1714 "__annotations__ not found");
1715 }
1716 Py_DECREF(ann);
1717 goto error;
1718 }
1719 }
1720 /* ...if succeeded, __annotations__[name] = ann */
1721 if (PyDict_CheckExact(ann_dict)) {
1722 err = PyDict_SetItem(ann_dict, name, ann);
1723 }
1724 else {
1725 err = PyObject_SetItem(ann_dict, name, ann);
1726 }
1727 Py_DECREF(ann_dict);
Yury Selivanov50c584f2016-09-08 23:38:21 -07001728 Py_DECREF(ann);
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001729 if (err != 0) {
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001730 goto error;
1731 }
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07001732 DISPATCH();
1733 }
1734
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001735 TARGET(DELETE_SUBSCR) {
1736 PyObject *sub = TOP();
1737 PyObject *container = SECOND();
1738 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001739 STACKADJ(-2);
Martin Panter95f53c12016-07-18 08:23:26 +00001740 /* del container[sub] */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001741 err = PyObject_DelItem(container, sub);
1742 Py_DECREF(container);
1743 Py_DECREF(sub);
1744 if (err != 0)
1745 goto error;
1746 DISPATCH();
1747 }
Barry Warsaw23c9ec82000-08-21 15:44:01 +00001748
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001749 TARGET(PRINT_EXPR) {
Victor Stinnercab75e32013-11-06 22:38:37 +01001750 _Py_IDENTIFIER(displayhook);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001751 PyObject *value = POP();
Victor Stinnercab75e32013-11-06 22:38:37 +01001752 PyObject *hook = _PySys_GetObjectId(&PyId_displayhook);
Benjamin Petersonfe1bcb62012-10-12 11:40:01 -04001753 PyObject *res;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001754 if (hook == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001755 PyErr_SetString(PyExc_RuntimeError,
1756 "lost sys.displayhook");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001757 Py_DECREF(value);
1758 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001759 }
Victor Stinnerde4ae3d2016-12-04 22:59:09 +01001760 res = PyObject_CallFunctionObjArgs(hook, value, NULL);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001761 Py_DECREF(value);
1762 if (res == NULL)
1763 goto error;
1764 Py_DECREF(res);
1765 DISPATCH();
1766 }
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +00001767
Thomas Wouters434d0822000-08-24 20:11:32 +00001768#ifdef CASE_TOO_BIG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001769 default: switch (opcode) {
Thomas Wouters434d0822000-08-24 20:11:32 +00001770#endif
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001771 TARGET(RAISE_VARARGS) {
1772 PyObject *cause = NULL, *exc = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001773 switch (oparg) {
1774 case 2:
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001775 cause = POP(); /* cause */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001776 case 1:
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001777 exc = POP(); /* exc */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001778 case 0: /* Fallthrough */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001779 if (do_raise(exc, cause)) {
1780 why = WHY_EXCEPTION;
1781 goto fast_block_end;
1782 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001783 break;
1784 default:
1785 PyErr_SetString(PyExc_SystemError,
1786 "bad RAISE_VARARGS oparg");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001787 break;
1788 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001789 goto error;
1790 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001791
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001792 TARGET(RETURN_VALUE) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001793 retval = POP();
1794 why = WHY_RETURN;
1795 goto fast_block_end;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001796 }
Guido van Rossumdb3165e1993-10-18 17:06:59 +00001797
Yury Selivanov75445082015-05-11 22:57:16 -04001798 TARGET(GET_AITER) {
Yury Selivanov6ef05902015-05-28 11:21:31 -04001799 unaryfunc getter = NULL;
Yury Selivanov75445082015-05-11 22:57:16 -04001800 PyObject *iter = NULL;
1801 PyObject *awaitable = NULL;
1802 PyObject *obj = TOP();
1803 PyTypeObject *type = Py_TYPE(obj);
1804
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001805 if (type->tp_as_async != NULL) {
Yury Selivanov75445082015-05-11 22:57:16 -04001806 getter = type->tp_as_async->am_aiter;
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001807 }
Yury Selivanov75445082015-05-11 22:57:16 -04001808
1809 if (getter != NULL) {
1810 iter = (*getter)(obj);
1811 Py_DECREF(obj);
1812 if (iter == NULL) {
1813 SET_TOP(NULL);
1814 goto error;
1815 }
1816 }
1817 else {
1818 SET_TOP(NULL);
1819 PyErr_Format(
1820 PyExc_TypeError,
1821 "'async for' requires an object with "
1822 "__aiter__ method, got %.100s",
1823 type->tp_name);
1824 Py_DECREF(obj);
1825 goto error;
1826 }
1827
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001828 if (Py_TYPE(iter)->tp_as_async != NULL &&
1829 Py_TYPE(iter)->tp_as_async->am_anext != NULL) {
1830
1831 /* Starting with CPython 3.5.2 __aiter__ should return
1832 asynchronous iterators directly (not awaitables that
1833 resolve to asynchronous iterators.)
1834
1835 Therefore, we check if the object that was returned
1836 from __aiter__ has an __anext__ method. If it does,
1837 we wrap it in an awaitable that resolves to `iter`.
1838
1839 See http://bugs.python.org/issue27243 for more
1840 details.
1841 */
1842
1843 PyObject *wrapper = _PyAIterWrapper_New(iter);
1844 Py_DECREF(iter);
1845 SET_TOP(wrapper);
1846 DISPATCH();
1847 }
1848
Yury Selivanov5376ba92015-06-22 12:19:30 -04001849 awaitable = _PyCoro_GetAwaitableIter(iter);
Yury Selivanov75445082015-05-11 22:57:16 -04001850 if (awaitable == NULL) {
Yury Selivanov398ff912017-03-02 22:20:00 -05001851 _PyErr_FormatFromCause(
Yury Selivanov75445082015-05-11 22:57:16 -04001852 PyExc_TypeError,
1853 "'async for' received an invalid object "
1854 "from __aiter__: %.100s",
1855 Py_TYPE(iter)->tp_name);
1856
Yury Selivanov398ff912017-03-02 22:20:00 -05001857 SET_TOP(NULL);
Yury Selivanov75445082015-05-11 22:57:16 -04001858 Py_DECREF(iter);
1859 goto error;
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001860 } else {
Yury Selivanov75445082015-05-11 22:57:16 -04001861 Py_DECREF(iter);
1862
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001863 if (PyErr_WarnFormat(
Yury Selivanov2edd8a12016-11-08 15:13:07 -05001864 PyExc_DeprecationWarning, 1,
Yury Selivanova6f6edb2016-06-09 15:08:31 -04001865 "'%.100s' implements legacy __aiter__ protocol; "
1866 "__aiter__ should return an asynchronous "
1867 "iterator, not awaitable",
1868 type->tp_name))
1869 {
1870 /* Warning was converted to an error. */
1871 Py_DECREF(awaitable);
1872 SET_TOP(NULL);
1873 goto error;
1874 }
1875 }
1876
Yury Selivanov75445082015-05-11 22:57:16 -04001877 SET_TOP(awaitable);
Serhiy Storchakada9c5132016-06-27 18:58:57 +03001878 PREDICT(LOAD_CONST);
Yury Selivanov75445082015-05-11 22:57:16 -04001879 DISPATCH();
1880 }
1881
1882 TARGET(GET_ANEXT) {
Yury Selivanov6ef05902015-05-28 11:21:31 -04001883 unaryfunc getter = NULL;
Yury Selivanov75445082015-05-11 22:57:16 -04001884 PyObject *next_iter = NULL;
1885 PyObject *awaitable = NULL;
1886 PyObject *aiter = TOP();
1887 PyTypeObject *type = Py_TYPE(aiter);
1888
Yury Selivanoveb636452016-09-08 22:01:51 -07001889 if (PyAsyncGen_CheckExact(aiter)) {
1890 awaitable = type->tp_as_async->am_anext(aiter);
1891 if (awaitable == NULL) {
Yury Selivanov75445082015-05-11 22:57:16 -04001892 goto error;
1893 }
Yury Selivanoveb636452016-09-08 22:01:51 -07001894 } else {
1895 if (type->tp_as_async != NULL){
1896 getter = type->tp_as_async->am_anext;
1897 }
Yury Selivanov75445082015-05-11 22:57:16 -04001898
Yury Selivanoveb636452016-09-08 22:01:51 -07001899 if (getter != NULL) {
1900 next_iter = (*getter)(aiter);
1901 if (next_iter == NULL) {
1902 goto error;
1903 }
1904 }
1905 else {
1906 PyErr_Format(
1907 PyExc_TypeError,
1908 "'async for' requires an iterator with "
1909 "__anext__ method, got %.100s",
1910 type->tp_name);
1911 goto error;
1912 }
Yury Selivanov75445082015-05-11 22:57:16 -04001913
Yury Selivanoveb636452016-09-08 22:01:51 -07001914 awaitable = _PyCoro_GetAwaitableIter(next_iter);
1915 if (awaitable == NULL) {
Yury Selivanov398ff912017-03-02 22:20:00 -05001916 _PyErr_FormatFromCause(
Yury Selivanoveb636452016-09-08 22:01:51 -07001917 PyExc_TypeError,
1918 "'async for' received an invalid object "
1919 "from __anext__: %.100s",
1920 Py_TYPE(next_iter)->tp_name);
1921
1922 Py_DECREF(next_iter);
1923 goto error;
1924 } else {
1925 Py_DECREF(next_iter);
1926 }
1927 }
Yury Selivanov75445082015-05-11 22:57:16 -04001928
1929 PUSH(awaitable);
Serhiy Storchakada9c5132016-06-27 18:58:57 +03001930 PREDICT(LOAD_CONST);
Yury Selivanov75445082015-05-11 22:57:16 -04001931 DISPATCH();
1932 }
1933
Serhiy Storchakada9c5132016-06-27 18:58:57 +03001934 PREDICTED(GET_AWAITABLE);
Yury Selivanov75445082015-05-11 22:57:16 -04001935 TARGET(GET_AWAITABLE) {
1936 PyObject *iterable = TOP();
Yury Selivanov5376ba92015-06-22 12:19:30 -04001937 PyObject *iter = _PyCoro_GetAwaitableIter(iterable);
Yury Selivanov75445082015-05-11 22:57:16 -04001938
1939 Py_DECREF(iterable);
1940
Yury Selivanovc724bae2016-03-02 11:30:46 -05001941 if (iter != NULL && PyCoro_CheckExact(iter)) {
1942 PyObject *yf = _PyGen_yf((PyGenObject*)iter);
1943 if (yf != NULL) {
1944 /* `iter` is a coroutine object that is being
1945 awaited, `yf` is a pointer to the current awaitable
1946 being awaited on. */
1947 Py_DECREF(yf);
1948 Py_CLEAR(iter);
1949 PyErr_SetString(
1950 PyExc_RuntimeError,
1951 "coroutine is being awaited already");
1952 /* The code below jumps to `error` if `iter` is NULL. */
1953 }
1954 }
1955
Yury Selivanov75445082015-05-11 22:57:16 -04001956 SET_TOP(iter); /* Even if it's NULL */
1957
1958 if (iter == NULL) {
1959 goto error;
1960 }
1961
Serhiy Storchakada9c5132016-06-27 18:58:57 +03001962 PREDICT(LOAD_CONST);
Yury Selivanov75445082015-05-11 22:57:16 -04001963 DISPATCH();
1964 }
1965
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001966 TARGET(YIELD_FROM) {
1967 PyObject *v = POP();
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001968 PyObject *receiver = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001969 int err;
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001970 if (PyGen_CheckExact(receiver) || PyCoro_CheckExact(receiver)) {
1971 retval = _PyGen_Send((PyGenObject *)receiver, v);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001972 } else {
Benjamin Peterson302e7902012-03-20 23:17:04 -04001973 _Py_IDENTIFIER(send);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001974 if (v == Py_None)
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001975 retval = Py_TYPE(receiver)->tp_iternext(receiver);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001976 else
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001977 retval = _PyObject_CallMethodIdObjArgs(receiver, &PyId_send, v, NULL);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001978 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001979 Py_DECREF(v);
1980 if (retval == NULL) {
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001981 PyObject *val;
Guido van Rossum8820c232013-11-21 11:30:06 -08001982 if (tstate->c_tracefunc != NULL
1983 && PyErr_ExceptionMatches(PyExc_StopIteration))
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01001984 call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, f);
Nick Coghlanc40bc092012-06-17 15:15:49 +10001985 err = _PyGen_FetchStopIterationValue(&val);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001986 if (err < 0)
1987 goto error;
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001988 Py_DECREF(receiver);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001989 SET_TOP(val);
1990 DISPATCH();
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001991 }
Martin Panter95f53c12016-07-18 08:23:26 +00001992 /* receiver remains on stack, retval is value to be yielded */
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001993 f->f_stacktop = stack_pointer;
1994 why = WHY_YIELD;
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001995 /* and repeat... */
Victor Stinnerf7d199f2016-11-24 22:33:01 +01001996 assert(f->f_lasti >= (int)sizeof(_Py_CODEUNIT));
Serhiy Storchakaab874002016-09-11 13:48:15 +03001997 f->f_lasti -= sizeof(_Py_CODEUNIT);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001998 goto fast_yield;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001999 }
Nick Coghlan1f7ce622012-01-13 21:43:40 +10002000
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002001 TARGET(YIELD_VALUE) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002002 retval = POP();
Yury Selivanoveb636452016-09-08 22:01:51 -07002003
2004 if (co->co_flags & CO_ASYNC_GENERATOR) {
2005 PyObject *w = _PyAsyncGenValueWrapperNew(retval);
2006 Py_DECREF(retval);
2007 if (w == NULL) {
2008 retval = NULL;
2009 goto error;
2010 }
2011 retval = w;
2012 }
2013
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002014 f->f_stacktop = stack_pointer;
2015 why = WHY_YIELD;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002016 goto fast_yield;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002017 }
Tim Peters5ca576e2001-06-18 22:08:13 +00002018
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002019 TARGET(POP_EXCEPT) {
2020 PyTryBlock *b = PyFrame_BlockPop(f);
2021 if (b->b_type != EXCEPT_HANDLER) {
2022 PyErr_SetString(PyExc_SystemError,
2023 "popped block is not an except handler");
2024 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002025 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002026 UNWIND_EXCEPT_HANDLER(b);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002027 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002028 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00002029
Serhiy Storchakada9c5132016-06-27 18:58:57 +03002030 PREDICTED(POP_BLOCK);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002031 TARGET(POP_BLOCK) {
2032 PyTryBlock *b = PyFrame_BlockPop(f);
2033 UNWIND_BLOCK(b);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002034 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002035 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002036
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002037 PREDICTED(END_FINALLY);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002038 TARGET(END_FINALLY) {
2039 PyObject *status = POP();
2040 if (PyLong_Check(status)) {
2041 why = (enum why_code) PyLong_AS_LONG(status);
2042 assert(why != WHY_YIELD && why != WHY_EXCEPTION);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002043 if (why == WHY_RETURN ||
2044 why == WHY_CONTINUE)
2045 retval = POP();
2046 if (why == WHY_SILENCED) {
2047 /* An exception was silenced by 'with', we must
2048 manually unwind the EXCEPT_HANDLER block which was
2049 created when the exception was caught, otherwise
2050 the stack will be in an inconsistent state. */
2051 PyTryBlock *b = PyFrame_BlockPop(f);
2052 assert(b->b_type == EXCEPT_HANDLER);
2053 UNWIND_EXCEPT_HANDLER(b);
2054 why = WHY_NOT;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002055 Py_DECREF(status);
2056 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002057 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002058 Py_DECREF(status);
2059 goto fast_block_end;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002060 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002061 else if (PyExceptionClass_Check(status)) {
2062 PyObject *exc = POP();
2063 PyObject *tb = POP();
2064 PyErr_Restore(status, exc, tb);
2065 why = WHY_EXCEPTION;
2066 goto fast_block_end;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002067 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002068 else if (status != Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002069 PyErr_SetString(PyExc_SystemError,
2070 "'finally' pops bad exception");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002071 Py_DECREF(status);
2072 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002073 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002074 Py_DECREF(status);
2075 DISPATCH();
2076 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002077
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002078 TARGET(LOAD_BUILD_CLASS) {
Victor Stinner3c1e4812012-03-26 22:10:51 +02002079 _Py_IDENTIFIER(__build_class__);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002080
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002081 PyObject *bc;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002082 if (PyDict_CheckExact(f->f_builtins)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002083 bc = _PyDict_GetItemId(f->f_builtins, &PyId___build_class__);
2084 if (bc == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002085 PyErr_SetString(PyExc_NameError,
2086 "__build_class__ not found");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002087 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002088 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002089 Py_INCREF(bc);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002090 }
2091 else {
2092 PyObject *build_class_str = _PyUnicode_FromId(&PyId___build_class__);
2093 if (build_class_str == NULL)
Serhiy Storchaka70b72f02016-11-08 23:12:46 +02002094 goto error;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002095 bc = PyObject_GetItem(f->f_builtins, build_class_str);
2096 if (bc == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002097 if (PyErr_ExceptionMatches(PyExc_KeyError))
2098 PyErr_SetString(PyExc_NameError,
2099 "__build_class__ not found");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002100 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002101 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002102 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002103 PUSH(bc);
Benjamin Peterson00f86f22012-10-10 14:10:33 -04002104 DISPATCH();
Victor Stinner3c1e4812012-03-26 22:10:51 +02002105 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002106
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002107 TARGET(STORE_NAME) {
2108 PyObject *name = GETITEM(names, oparg);
2109 PyObject *v = POP();
2110 PyObject *ns = f->f_locals;
2111 int err;
2112 if (ns == NULL) {
2113 PyErr_Format(PyExc_SystemError,
2114 "no locals found when storing %R", name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002115 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002116 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002117 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002118 if (PyDict_CheckExact(ns))
2119 err = PyDict_SetItem(ns, name, v);
2120 else
2121 err = PyObject_SetItem(ns, name, v);
2122 Py_DECREF(v);
2123 if (err != 0)
2124 goto error;
2125 DISPATCH();
2126 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002127
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002128 TARGET(DELETE_NAME) {
2129 PyObject *name = GETITEM(names, oparg);
2130 PyObject *ns = f->f_locals;
2131 int err;
2132 if (ns == NULL) {
2133 PyErr_Format(PyExc_SystemError,
2134 "no locals when deleting %R", name);
2135 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002136 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002137 err = PyObject_DelItem(ns, name);
2138 if (err != 0) {
2139 format_exc_check_arg(PyExc_NameError,
2140 NAME_ERROR_MSG,
2141 name);
2142 goto error;
2143 }
2144 DISPATCH();
2145 }
Guido van Rossum04691fc1992-08-12 15:35:34 +00002146
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03002147 PREDICTED(UNPACK_SEQUENCE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002148 TARGET(UNPACK_SEQUENCE) {
2149 PyObject *seq = POP(), *item, **items;
2150 if (PyTuple_CheckExact(seq) &&
2151 PyTuple_GET_SIZE(seq) == oparg) {
2152 items = ((PyTupleObject *)seq)->ob_item;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002153 while (oparg--) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002154 item = items[oparg];
2155 Py_INCREF(item);
2156 PUSH(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002157 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002158 } else if (PyList_CheckExact(seq) &&
2159 PyList_GET_SIZE(seq) == oparg) {
2160 items = ((PyListObject *)seq)->ob_item;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002161 while (oparg--) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002162 item = items[oparg];
2163 Py_INCREF(item);
2164 PUSH(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002165 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002166 } else if (unpack_iterable(seq, oparg, -1,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002167 stack_pointer + oparg)) {
2168 STACKADJ(oparg);
2169 } else {
2170 /* unpack_iterable() raised an exception */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002171 Py_DECREF(seq);
2172 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002173 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002174 Py_DECREF(seq);
Benjamin Peterson00f86f22012-10-10 14:10:33 -04002175 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002176 }
Guido van Rossum0368b722007-05-11 16:50:42 +00002177
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002178 TARGET(UNPACK_EX) {
2179 int totalargs = 1 + (oparg & 0xFF) + (oparg >> 8);
2180 PyObject *seq = POP();
2181
2182 if (unpack_iterable(seq, oparg & 0xFF, oparg >> 8,
2183 stack_pointer + totalargs)) {
2184 stack_pointer += totalargs;
2185 } else {
2186 Py_DECREF(seq);
2187 goto error;
2188 }
2189 Py_DECREF(seq);
2190 DISPATCH();
2191 }
2192
2193 TARGET(STORE_ATTR) {
2194 PyObject *name = GETITEM(names, oparg);
2195 PyObject *owner = TOP();
2196 PyObject *v = SECOND();
2197 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002198 STACKADJ(-2);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002199 err = PyObject_SetAttr(owner, name, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002200 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002201 Py_DECREF(owner);
2202 if (err != 0)
2203 goto error;
2204 DISPATCH();
2205 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002206
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002207 TARGET(DELETE_ATTR) {
2208 PyObject *name = GETITEM(names, oparg);
2209 PyObject *owner = POP();
2210 int err;
2211 err = PyObject_SetAttr(owner, name, (PyObject *)NULL);
2212 Py_DECREF(owner);
2213 if (err != 0)
2214 goto error;
2215 DISPATCH();
2216 }
2217
2218 TARGET(STORE_GLOBAL) {
2219 PyObject *name = GETITEM(names, oparg);
2220 PyObject *v = POP();
2221 int err;
2222 err = PyDict_SetItem(f->f_globals, name, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002223 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002224 if (err != 0)
2225 goto error;
2226 DISPATCH();
2227 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002228
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002229 TARGET(DELETE_GLOBAL) {
2230 PyObject *name = GETITEM(names, oparg);
2231 int err;
2232 err = PyDict_DelItem(f->f_globals, name);
2233 if (err != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002234 format_exc_check_arg(
Ezio Melotti04a29552013-03-03 15:12:44 +02002235 PyExc_NameError, NAME_ERROR_MSG, name);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002236 goto error;
Benjamin Peterson00f86f22012-10-10 14:10:33 -04002237 }
2238 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002239 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002240
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002241 TARGET(LOAD_NAME) {
2242 PyObject *name = GETITEM(names, oparg);
2243 PyObject *locals = f->f_locals;
2244 PyObject *v;
2245 if (locals == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002246 PyErr_Format(PyExc_SystemError,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002247 "no locals when loading %R", name);
2248 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002249 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002250 if (PyDict_CheckExact(locals)) {
2251 v = PyDict_GetItem(locals, name);
2252 Py_XINCREF(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002253 }
2254 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002255 v = PyObject_GetItem(locals, name);
Victor Stinnere20310f2015-11-05 13:56:58 +01002256 if (v == NULL) {
Benjamin Peterson92722792012-12-15 12:51:05 -05002257 if (!PyErr_ExceptionMatches(PyExc_KeyError))
2258 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002259 PyErr_Clear();
2260 }
2261 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002262 if (v == NULL) {
2263 v = PyDict_GetItem(f->f_globals, name);
2264 Py_XINCREF(v);
2265 if (v == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002266 if (PyDict_CheckExact(f->f_builtins)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002267 v = PyDict_GetItem(f->f_builtins, name);
2268 if (v == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002269 format_exc_check_arg(
2270 PyExc_NameError,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002271 NAME_ERROR_MSG, name);
2272 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002273 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002274 Py_INCREF(v);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002275 }
2276 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002277 v = PyObject_GetItem(f->f_builtins, name);
2278 if (v == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002279 if (PyErr_ExceptionMatches(PyExc_KeyError))
2280 format_exc_check_arg(
2281 PyExc_NameError,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002282 NAME_ERROR_MSG, name);
2283 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002284 }
Benjamin Peterson20f9c3c2010-07-20 22:39:34 +00002285 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002286 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002287 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002288 PUSH(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002289 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002290 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002291
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002292 TARGET(LOAD_GLOBAL) {
2293 PyObject *name = GETITEM(names, oparg);
2294 PyObject *v;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002295 if (PyDict_CheckExact(f->f_globals)
Victor Stinnerb4efc962015-11-20 09:24:02 +01002296 && PyDict_CheckExact(f->f_builtins))
2297 {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002298 v = _PyDict_LoadGlobal((PyDictObject *)f->f_globals,
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002299 (PyDictObject *)f->f_builtins,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002300 name);
2301 if (v == NULL) {
Victor Stinnerb4efc962015-11-20 09:24:02 +01002302 if (!_PyErr_OCCURRED()) {
2303 /* _PyDict_LoadGlobal() returns NULL without raising
2304 * an exception if the key doesn't exist */
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002305 format_exc_check_arg(PyExc_NameError,
Ezio Melotti04a29552013-03-03 15:12:44 +02002306 NAME_ERROR_MSG, name);
Victor Stinnerb4efc962015-11-20 09:24:02 +01002307 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002308 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002309 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002310 Py_INCREF(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002311 }
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002312 else {
2313 /* Slow-path if globals or builtins is not a dict */
Victor Stinnerb4efc962015-11-20 09:24:02 +01002314
2315 /* namespace 1: globals */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002316 v = PyObject_GetItem(f->f_globals, name);
2317 if (v == NULL) {
Victor Stinner60a1d3c2015-11-05 13:55:20 +01002318 if (!PyErr_ExceptionMatches(PyExc_KeyError))
2319 goto error;
2320 PyErr_Clear();
2321
Victor Stinnerb4efc962015-11-20 09:24:02 +01002322 /* namespace 2: builtins */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002323 v = PyObject_GetItem(f->f_builtins, name);
2324 if (v == NULL) {
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002325 if (PyErr_ExceptionMatches(PyExc_KeyError))
2326 format_exc_check_arg(
2327 PyExc_NameError,
Ezio Melotti04a29552013-03-03 15:12:44 +02002328 NAME_ERROR_MSG, name);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002329 goto error;
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002330 }
2331 }
2332 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002333 PUSH(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002334 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002335 }
Guido van Rossum681d79a1995-07-18 14:51:37 +00002336
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002337 TARGET(DELETE_FAST) {
2338 PyObject *v = GETLOCAL(oparg);
2339 if (v != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002340 SETLOCAL(oparg, NULL);
2341 DISPATCH();
2342 }
2343 format_exc_check_arg(
2344 PyExc_UnboundLocalError,
2345 UNBOUNDLOCAL_ERROR_MSG,
2346 PyTuple_GetItem(co->co_varnames, oparg)
2347 );
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002348 goto error;
2349 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002350
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002351 TARGET(DELETE_DEREF) {
2352 PyObject *cell = freevars[oparg];
Raymond Hettingerc32f9db2016-11-12 04:10:35 -05002353 PyObject *oldobj = PyCell_GET(cell);
2354 if (oldobj != NULL) {
2355 PyCell_SET(cell, NULL);
2356 Py_DECREF(oldobj);
Benjamin Peterson00ebe2c2010-09-10 22:02:31 +00002357 DISPATCH();
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002358 }
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002359 format_exc_unbound(co, oparg);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002360 goto error;
2361 }
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002362
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002363 TARGET(LOAD_CLOSURE) {
2364 PyObject *cell = freevars[oparg];
2365 Py_INCREF(cell);
2366 PUSH(cell);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002367 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002368 }
Jeremy Hylton64949cb2001-01-25 20:06:59 +00002369
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04002370 TARGET(LOAD_CLASSDEREF) {
2371 PyObject *name, *value, *locals = f->f_locals;
Victor Stinnerd3dfd0e2013-05-16 23:48:01 +02002372 Py_ssize_t idx;
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04002373 assert(locals);
2374 assert(oparg >= PyTuple_GET_SIZE(co->co_cellvars));
2375 idx = oparg - PyTuple_GET_SIZE(co->co_cellvars);
2376 assert(idx >= 0 && idx < PyTuple_GET_SIZE(co->co_freevars));
2377 name = PyTuple_GET_ITEM(co->co_freevars, idx);
2378 if (PyDict_CheckExact(locals)) {
2379 value = PyDict_GetItem(locals, name);
2380 Py_XINCREF(value);
2381 }
2382 else {
2383 value = PyObject_GetItem(locals, name);
Victor Stinnere20310f2015-11-05 13:56:58 +01002384 if (value == NULL) {
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04002385 if (!PyErr_ExceptionMatches(PyExc_KeyError))
2386 goto error;
2387 PyErr_Clear();
2388 }
2389 }
2390 if (!value) {
2391 PyObject *cell = freevars[oparg];
2392 value = PyCell_GET(cell);
2393 if (value == NULL) {
2394 format_exc_unbound(co, oparg);
2395 goto error;
2396 }
2397 Py_INCREF(value);
2398 }
2399 PUSH(value);
2400 DISPATCH();
2401 }
2402
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002403 TARGET(LOAD_DEREF) {
2404 PyObject *cell = freevars[oparg];
2405 PyObject *value = PyCell_GET(cell);
2406 if (value == NULL) {
2407 format_exc_unbound(co, oparg);
2408 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002409 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002410 Py_INCREF(value);
2411 PUSH(value);
2412 DISPATCH();
2413 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002414
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002415 TARGET(STORE_DEREF) {
2416 PyObject *v = POP();
2417 PyObject *cell = freevars[oparg];
Raymond Hettingerb2b15432016-11-11 04:32:11 -08002418 PyObject *oldobj = PyCell_GET(cell);
2419 PyCell_SET(cell, v);
2420 Py_XDECREF(oldobj);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002421 DISPATCH();
2422 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002423
Serhiy Storchakaea525a22016-09-06 22:07:53 +03002424 TARGET(BUILD_STRING) {
2425 PyObject *str;
2426 PyObject *empty = PyUnicode_New(0, 0);
2427 if (empty == NULL) {
2428 goto error;
2429 }
2430 str = _PyUnicode_JoinArray(empty, stack_pointer - oparg, oparg);
2431 Py_DECREF(empty);
2432 if (str == NULL)
2433 goto error;
2434 while (--oparg >= 0) {
2435 PyObject *item = POP();
2436 Py_DECREF(item);
2437 }
2438 PUSH(str);
2439 DISPATCH();
2440 }
2441
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002442 TARGET(BUILD_TUPLE) {
2443 PyObject *tup = PyTuple_New(oparg);
2444 if (tup == NULL)
2445 goto error;
2446 while (--oparg >= 0) {
2447 PyObject *item = POP();
2448 PyTuple_SET_ITEM(tup, oparg, item);
2449 }
2450 PUSH(tup);
2451 DISPATCH();
2452 }
2453
2454 TARGET(BUILD_LIST) {
2455 PyObject *list = PyList_New(oparg);
2456 if (list == NULL)
2457 goto error;
2458 while (--oparg >= 0) {
2459 PyObject *item = POP();
2460 PyList_SET_ITEM(list, oparg, item);
2461 }
2462 PUSH(list);
2463 DISPATCH();
2464 }
2465
Serhiy Storchaka73442852016-10-02 10:33:46 +03002466 TARGET(BUILD_TUPLE_UNPACK_WITH_CALL)
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03002467 TARGET(BUILD_TUPLE_UNPACK)
2468 TARGET(BUILD_LIST_UNPACK) {
Serhiy Storchaka73442852016-10-02 10:33:46 +03002469 int convert_to_tuple = opcode != BUILD_LIST_UNPACK;
Victor Stinner74319ae2016-08-25 00:04:09 +02002470 Py_ssize_t i;
Serhiy Storchakab7281052016-09-12 00:52:40 +03002471 PyObject *sum = PyList_New(0);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002472 PyObject *return_value;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07002473
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002474 if (sum == NULL)
2475 goto error;
2476
2477 for (i = oparg; i > 0; i--) {
2478 PyObject *none_val;
2479
2480 none_val = _PyList_Extend((PyListObject *)sum, PEEK(i));
2481 if (none_val == NULL) {
Serhiy Storchaka73442852016-10-02 10:33:46 +03002482 if (opcode == BUILD_TUPLE_UNPACK_WITH_CALL &&
2483 PyErr_ExceptionMatches(PyExc_TypeError)) {
2484 PyObject *func = PEEK(1 + oparg);
2485 PyErr_Format(PyExc_TypeError,
2486 "%.200s%.200s argument after * "
2487 "must be an iterable, not %.200s",
2488 PyEval_GetFuncName(func),
2489 PyEval_GetFuncDesc(func),
2490 PEEK(i)->ob_type->tp_name);
2491 }
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002492 Py_DECREF(sum);
2493 goto error;
2494 }
2495 Py_DECREF(none_val);
2496 }
2497
2498 if (convert_to_tuple) {
2499 return_value = PyList_AsTuple(sum);
2500 Py_DECREF(sum);
2501 if (return_value == NULL)
2502 goto error;
2503 }
2504 else {
2505 return_value = sum;
2506 }
2507
2508 while (oparg--)
2509 Py_DECREF(POP());
2510 PUSH(return_value);
2511 DISPATCH();
2512 }
2513
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002514 TARGET(BUILD_SET) {
2515 PyObject *set = PySet_New(NULL);
2516 int err = 0;
Raymond Hettinger4c483ad2016-09-08 14:45:40 -07002517 int i;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002518 if (set == NULL)
2519 goto error;
Raymond Hettinger4c483ad2016-09-08 14:45:40 -07002520 for (i = oparg; i > 0; i--) {
2521 PyObject *item = PEEK(i);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002522 if (err == 0)
2523 err = PySet_Add(set, item);
2524 Py_DECREF(item);
2525 }
Raymond Hettinger4c483ad2016-09-08 14:45:40 -07002526 STACKADJ(-oparg);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002527 if (err != 0) {
2528 Py_DECREF(set);
2529 goto error;
2530 }
2531 PUSH(set);
2532 DISPATCH();
2533 }
2534
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002535 TARGET(BUILD_SET_UNPACK) {
Victor Stinner74319ae2016-08-25 00:04:09 +02002536 Py_ssize_t i;
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002537 PyObject *sum = PySet_New(NULL);
2538 if (sum == NULL)
2539 goto error;
2540
2541 for (i = oparg; i > 0; i--) {
2542 if (_PySet_Update(sum, PEEK(i)) < 0) {
2543 Py_DECREF(sum);
2544 goto error;
2545 }
2546 }
2547
2548 while (oparg--)
2549 Py_DECREF(POP());
2550 PUSH(sum);
2551 DISPATCH();
2552 }
2553
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002554 TARGET(BUILD_MAP) {
Victor Stinner74319ae2016-08-25 00:04:09 +02002555 Py_ssize_t i;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002556 PyObject *map = _PyDict_NewPresized((Py_ssize_t)oparg);
2557 if (map == NULL)
2558 goto error;
Benjamin Petersond5d77aa2015-07-05 10:37:25 -05002559 for (i = oparg; i > 0; i--) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002560 int err;
Benjamin Petersond5d77aa2015-07-05 10:37:25 -05002561 PyObject *key = PEEK(2*i);
2562 PyObject *value = PEEK(2*i - 1);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002563 err = PyDict_SetItem(map, key, value);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002564 if (err != 0) {
2565 Py_DECREF(map);
2566 goto error;
2567 }
2568 }
Benjamin Petersond5d77aa2015-07-05 10:37:25 -05002569
2570 while (oparg--) {
2571 Py_DECREF(POP());
2572 Py_DECREF(POP());
2573 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002574 PUSH(map);
2575 DISPATCH();
2576 }
2577
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07002578 TARGET(SETUP_ANNOTATIONS) {
2579 _Py_IDENTIFIER(__annotations__);
2580 int err;
2581 PyObject *ann_dict;
2582 if (f->f_locals == NULL) {
2583 PyErr_Format(PyExc_SystemError,
2584 "no locals found when setting up annotations");
2585 goto error;
2586 }
2587 /* check if __annotations__ in locals()... */
2588 if (PyDict_CheckExact(f->f_locals)) {
2589 ann_dict = _PyDict_GetItemId(f->f_locals,
2590 &PyId___annotations__);
2591 if (ann_dict == NULL) {
2592 /* ...if not, create a new one */
2593 ann_dict = PyDict_New();
2594 if (ann_dict == NULL) {
2595 goto error;
2596 }
2597 err = _PyDict_SetItemId(f->f_locals,
2598 &PyId___annotations__, ann_dict);
2599 Py_DECREF(ann_dict);
2600 if (err != 0) {
2601 goto error;
2602 }
2603 }
2604 }
2605 else {
2606 /* do the same if locals() is not a dict */
2607 PyObject *ann_str = _PyUnicode_FromId(&PyId___annotations__);
2608 if (ann_str == NULL) {
Serhiy Storchaka4678b2f2016-11-08 23:13:36 +02002609 goto error;
Yury Selivanovf8cb8a12016-09-08 20:50:03 -07002610 }
2611 ann_dict = PyObject_GetItem(f->f_locals, ann_str);
2612 if (ann_dict == NULL) {
2613 if (!PyErr_ExceptionMatches(PyExc_KeyError)) {
2614 goto error;
2615 }
2616 PyErr_Clear();
2617 ann_dict = PyDict_New();
2618 if (ann_dict == NULL) {
2619 goto error;
2620 }
2621 err = PyObject_SetItem(f->f_locals, ann_str, ann_dict);
2622 Py_DECREF(ann_dict);
2623 if (err != 0) {
2624 goto error;
2625 }
2626 }
2627 else {
2628 Py_DECREF(ann_dict);
2629 }
2630 }
2631 DISPATCH();
2632 }
2633
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03002634 TARGET(BUILD_CONST_KEY_MAP) {
Victor Stinner74319ae2016-08-25 00:04:09 +02002635 Py_ssize_t i;
Serhiy Storchaka6a7506a2016-06-12 00:39:41 +03002636 PyObject *map;
2637 PyObject *keys = TOP();
2638 if (!PyTuple_CheckExact(keys) ||
2639 PyTuple_GET_SIZE(keys) != (Py_ssize_t)oparg) {
2640 PyErr_SetString(PyExc_SystemError,
2641 "bad BUILD_CONST_KEY_MAP keys argument");
2642 goto error;
2643 }
2644 map = _PyDict_NewPresized((Py_ssize_t)oparg);
2645 if (map == NULL) {
2646 goto error;
2647 }
2648 for (i = oparg; i > 0; i--) {
2649 int err;
2650 PyObject *key = PyTuple_GET_ITEM(keys, oparg - i);
2651 PyObject *value = PEEK(i + 1);
2652 err = PyDict_SetItem(map, key, value);
2653 if (err != 0) {
2654 Py_DECREF(map);
2655 goto error;
2656 }
2657 }
2658
2659 Py_DECREF(POP());
2660 while (oparg--) {
2661 Py_DECREF(POP());
2662 }
2663 PUSH(map);
2664 DISPATCH();
2665 }
2666
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03002667 TARGET(BUILD_MAP_UNPACK) {
Victor Stinner74319ae2016-08-25 00:04:09 +02002668 Py_ssize_t i;
Serhiy Storchakab7281052016-09-12 00:52:40 +03002669 PyObject *sum = PyDict_New();
Victor Stinnerf9b760f2016-09-09 10:17:08 -07002670 if (sum == NULL)
2671 goto error;
2672
2673 for (i = oparg; i > 0; i--) {
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002674 PyObject *arg = PEEK(i);
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002675 if (PyDict_Update(sum, arg) < 0) {
2676 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
2677 PyErr_Format(PyExc_TypeError,
Berker Peksag8e9045d2016-10-02 13:08:25 +03002678 "'%.200s' object is not a mapping",
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002679 arg->ob_type->tp_name);
2680 }
2681 Py_DECREF(sum);
2682 goto error;
2683 }
2684 }
2685
Victor Stinnerf9b760f2016-09-09 10:17:08 -07002686 while (oparg--)
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04002687 Py_DECREF(POP());
2688 PUSH(sum);
2689 DISPATCH();
2690 }
2691
Serhiy Storchakae036ef82016-10-02 11:06:43 +03002692 TARGET(BUILD_MAP_UNPACK_WITH_CALL) {
2693 Py_ssize_t i;
2694 PyObject *sum = PyDict_New();
2695 if (sum == NULL)
2696 goto error;
2697
2698 for (i = oparg; i > 0; i--) {
2699 PyObject *arg = PEEK(i);
2700 if (_PyDict_MergeEx(sum, arg, 2) < 0) {
2701 PyObject *func = PEEK(2 + oparg);
2702 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
2703 PyErr_Format(PyExc_TypeError,
2704 "%.200s%.200s argument after ** "
2705 "must be a mapping, not %.200s",
2706 PyEval_GetFuncName(func),
2707 PyEval_GetFuncDesc(func),
2708 arg->ob_type->tp_name);
2709 }
2710 else if (PyErr_ExceptionMatches(PyExc_KeyError)) {
2711 PyObject *exc, *val, *tb;
2712 PyErr_Fetch(&exc, &val, &tb);
2713 if (val && PyTuple_Check(val) && PyTuple_GET_SIZE(val) == 1) {
2714 PyObject *key = PyTuple_GET_ITEM(val, 0);
2715 if (!PyUnicode_Check(key)) {
2716 PyErr_Format(PyExc_TypeError,
2717 "%.200s%.200s keywords must be strings",
2718 PyEval_GetFuncName(func),
2719 PyEval_GetFuncDesc(func));
2720 } else {
2721 PyErr_Format(PyExc_TypeError,
2722 "%.200s%.200s got multiple "
2723 "values for keyword argument '%U'",
2724 PyEval_GetFuncName(func),
2725 PyEval_GetFuncDesc(func),
2726 key);
2727 }
2728 Py_XDECREF(exc);
2729 Py_XDECREF(val);
2730 Py_XDECREF(tb);
2731 }
2732 else {
2733 PyErr_Restore(exc, val, tb);
2734 }
2735 }
2736 Py_DECREF(sum);
2737 goto error;
2738 }
2739 }
2740
2741 while (oparg--)
2742 Py_DECREF(POP());
2743 PUSH(sum);
2744 DISPATCH();
2745 }
2746
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002747 TARGET(MAP_ADD) {
2748 PyObject *key = TOP();
2749 PyObject *value = SECOND();
2750 PyObject *map;
2751 int err;
2752 STACKADJ(-2);
Raymond Hettinger41862222016-10-15 19:03:06 -07002753 map = PEEK(oparg); /* dict */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002754 assert(PyDict_CheckExact(map));
Martin Panter95f53c12016-07-18 08:23:26 +00002755 err = PyDict_SetItem(map, key, value); /* map[key] = value */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002756 Py_DECREF(value);
2757 Py_DECREF(key);
2758 if (err != 0)
2759 goto error;
2760 PREDICT(JUMP_ABSOLUTE);
2761 DISPATCH();
2762 }
2763
2764 TARGET(LOAD_ATTR) {
2765 PyObject *name = GETITEM(names, oparg);
2766 PyObject *owner = TOP();
2767 PyObject *res = PyObject_GetAttr(owner, name);
2768 Py_DECREF(owner);
2769 SET_TOP(res);
2770 if (res == NULL)
2771 goto error;
2772 DISPATCH();
2773 }
2774
2775 TARGET(COMPARE_OP) {
2776 PyObject *right = POP();
2777 PyObject *left = TOP();
2778 PyObject *res = cmp_outcome(oparg, left, right);
2779 Py_DECREF(left);
2780 Py_DECREF(right);
2781 SET_TOP(res);
2782 if (res == NULL)
2783 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002784 PREDICT(POP_JUMP_IF_FALSE);
2785 PREDICT(POP_JUMP_IF_TRUE);
2786 DISPATCH();
Victor Stinner3c1e4812012-03-26 22:10:51 +02002787 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002788
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002789 TARGET(IMPORT_NAME) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002790 PyObject *name = GETITEM(names, oparg);
Serhiy Storchaka133138a2016-08-02 22:51:21 +03002791 PyObject *fromlist = POP();
2792 PyObject *level = TOP();
2793 PyObject *res;
Serhiy Storchaka133138a2016-08-02 22:51:21 +03002794 res = import_name(f, name, fromlist, level);
2795 Py_DECREF(level);
2796 Py_DECREF(fromlist);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002797 SET_TOP(res);
2798 if (res == NULL)
2799 goto error;
2800 DISPATCH();
2801 }
2802
2803 TARGET(IMPORT_STAR) {
2804 PyObject *from = POP(), *locals;
2805 int err;
Matthias Bussonnier160edb42017-02-25 21:58:05 -08002806 if (PyFrame_FastToLocalsWithError(f) < 0) {
2807 Py_DECREF(from);
Victor Stinner41bb43a2013-10-29 01:19:37 +01002808 goto error;
Matthias Bussonnier160edb42017-02-25 21:58:05 -08002809 }
Victor Stinner41bb43a2013-10-29 01:19:37 +01002810
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002811 locals = f->f_locals;
2812 if (locals == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002813 PyErr_SetString(PyExc_SystemError,
2814 "no locals found during 'import *'");
Matthias Bussonnier160edb42017-02-25 21:58:05 -08002815 Py_DECREF(from);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002816 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002817 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002818 err = import_all_from(locals, from);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002819 PyFrame_LocalsToFast(f, 0);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002820 Py_DECREF(from);
2821 if (err != 0)
2822 goto error;
2823 DISPATCH();
2824 }
Guido van Rossum25831651993-05-19 14:50:45 +00002825
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002826 TARGET(IMPORT_FROM) {
2827 PyObject *name = GETITEM(names, oparg);
2828 PyObject *from = TOP();
2829 PyObject *res;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002830 res = import_from(from, name);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002831 PUSH(res);
2832 if (res == NULL)
2833 goto error;
2834 DISPATCH();
2835 }
Thomas Wouters52152252000-08-17 22:55:00 +00002836
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002837 TARGET(JUMP_FORWARD) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002838 JUMPBY(oparg);
2839 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002840 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002841
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03002842 PREDICTED(POP_JUMP_IF_FALSE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002843 TARGET(POP_JUMP_IF_FALSE) {
2844 PyObject *cond = POP();
2845 int err;
2846 if (cond == Py_True) {
2847 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002848 FAST_DISPATCH();
2849 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002850 if (cond == Py_False) {
2851 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002852 JUMPTO(oparg);
2853 FAST_DISPATCH();
2854 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002855 err = PyObject_IsTrue(cond);
2856 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002857 if (err > 0)
2858 err = 0;
2859 else if (err == 0)
2860 JUMPTO(oparg);
2861 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002862 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002863 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002864 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002865
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03002866 PREDICTED(POP_JUMP_IF_TRUE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002867 TARGET(POP_JUMP_IF_TRUE) {
2868 PyObject *cond = POP();
2869 int err;
2870 if (cond == Py_False) {
2871 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002872 FAST_DISPATCH();
2873 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002874 if (cond == Py_True) {
2875 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002876 JUMPTO(oparg);
2877 FAST_DISPATCH();
2878 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002879 err = PyObject_IsTrue(cond);
2880 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002881 if (err > 0) {
2882 err = 0;
2883 JUMPTO(oparg);
2884 }
2885 else if (err == 0)
2886 ;
2887 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002888 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002889 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002890 }
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002891
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002892 TARGET(JUMP_IF_FALSE_OR_POP) {
2893 PyObject *cond = TOP();
2894 int err;
2895 if (cond == Py_True) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002896 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002897 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002898 FAST_DISPATCH();
2899 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002900 if (cond == Py_False) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002901 JUMPTO(oparg);
2902 FAST_DISPATCH();
2903 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002904 err = PyObject_IsTrue(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002905 if (err > 0) {
2906 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002907 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002908 err = 0;
2909 }
2910 else if (err == 0)
2911 JUMPTO(oparg);
2912 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002913 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002914 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002915 }
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002916
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002917 TARGET(JUMP_IF_TRUE_OR_POP) {
2918 PyObject *cond = TOP();
2919 int err;
2920 if (cond == Py_False) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002921 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002922 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002923 FAST_DISPATCH();
2924 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002925 if (cond == Py_True) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002926 JUMPTO(oparg);
2927 FAST_DISPATCH();
2928 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002929 err = PyObject_IsTrue(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002930 if (err > 0) {
2931 err = 0;
2932 JUMPTO(oparg);
2933 }
2934 else if (err == 0) {
2935 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002936 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002937 }
2938 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002939 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002940 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002941 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002942
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03002943 PREDICTED(JUMP_ABSOLUTE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002944 TARGET(JUMP_ABSOLUTE) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002945 JUMPTO(oparg);
Guido van Rossum58da9312007-11-10 23:39:45 +00002946#if FAST_LOOPS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002947 /* Enabling this path speeds-up all while and for-loops by bypassing
2948 the per-loop checks for signals. By default, this should be turned-off
2949 because it prevents detection of a control-break in tight loops like
2950 "while 1: pass". Compile with this option turned-on when you need
2951 the speed-up and do not need break checking inside tight loops (ones
2952 that contain only instructions ending with FAST_DISPATCH).
2953 */
2954 FAST_DISPATCH();
Guido van Rossum58da9312007-11-10 23:39:45 +00002955#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002956 DISPATCH();
Guido van Rossum58da9312007-11-10 23:39:45 +00002957#endif
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002958 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002959
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002960 TARGET(GET_ITER) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002961 /* before: [obj]; after [getiter(obj)] */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002962 PyObject *iterable = TOP();
Yury Selivanov5376ba92015-06-22 12:19:30 -04002963 PyObject *iter = PyObject_GetIter(iterable);
2964 Py_DECREF(iterable);
2965 SET_TOP(iter);
2966 if (iter == NULL)
2967 goto error;
2968 PREDICT(FOR_ITER);
Serhiy Storchakada9c5132016-06-27 18:58:57 +03002969 PREDICT(CALL_FUNCTION);
Yury Selivanov5376ba92015-06-22 12:19:30 -04002970 DISPATCH();
2971 }
2972
2973 TARGET(GET_YIELD_FROM_ITER) {
2974 /* before: [obj]; after [getiter(obj)] */
2975 PyObject *iterable = TOP();
Yury Selivanov75445082015-05-11 22:57:16 -04002976 PyObject *iter;
Yury Selivanov5376ba92015-06-22 12:19:30 -04002977 if (PyCoro_CheckExact(iterable)) {
2978 /* `iterable` is a coroutine */
2979 if (!(co->co_flags & (CO_COROUTINE | CO_ITERABLE_COROUTINE))) {
2980 /* and it is used in a 'yield from' expression of a
2981 regular generator. */
2982 Py_DECREF(iterable);
2983 SET_TOP(NULL);
2984 PyErr_SetString(PyExc_TypeError,
2985 "cannot 'yield from' a coroutine object "
2986 "in a non-coroutine generator");
2987 goto error;
2988 }
2989 }
2990 else if (!PyGen_CheckExact(iterable)) {
Yury Selivanov75445082015-05-11 22:57:16 -04002991 /* `iterable` is not a generator. */
2992 iter = PyObject_GetIter(iterable);
2993 Py_DECREF(iterable);
2994 SET_TOP(iter);
2995 if (iter == NULL)
2996 goto error;
2997 }
Serhiy Storchakada9c5132016-06-27 18:58:57 +03002998 PREDICT(LOAD_CONST);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002999 DISPATCH();
3000 }
Guido van Rossum59d1d2b2001-04-20 19:13:02 +00003001
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03003002 PREDICTED(FOR_ITER);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003003 TARGET(FOR_ITER) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003004 /* before: [iter]; after: [iter, iter()] *or* [] */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003005 PyObject *iter = TOP();
3006 PyObject *next = (*iter->ob_type->tp_iternext)(iter);
3007 if (next != NULL) {
3008 PUSH(next);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003009 PREDICT(STORE_FAST);
3010 PREDICT(UNPACK_SEQUENCE);
3011 DISPATCH();
3012 }
3013 if (PyErr_Occurred()) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003014 if (!PyErr_ExceptionMatches(PyExc_StopIteration))
3015 goto error;
Guido van Rossum8820c232013-11-21 11:30:06 -08003016 else if (tstate->c_tracefunc != NULL)
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003017 call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003018 PyErr_Clear();
3019 }
3020 /* iterator ended normally */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003021 STACKADJ(-1);
3022 Py_DECREF(iter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003023 JUMPBY(oparg);
Serhiy Storchakada9c5132016-06-27 18:58:57 +03003024 PREDICT(POP_BLOCK);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003025 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003026 }
Guido van Rossum59d1d2b2001-04-20 19:13:02 +00003027
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003028 TARGET(BREAK_LOOP) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003029 why = WHY_BREAK;
3030 goto fast_block_end;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003031 }
Raymond Hettinger2d783e92004-03-12 09:12:22 +00003032
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003033 TARGET(CONTINUE_LOOP) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003034 retval = PyLong_FromLong(oparg);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003035 if (retval == NULL)
3036 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003037 why = WHY_CONTINUE;
3038 goto fast_block_end;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003039 }
Raymond Hettinger2d783e92004-03-12 09:12:22 +00003040
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03003041 TARGET(SETUP_LOOP)
3042 TARGET(SETUP_EXCEPT)
3043 TARGET(SETUP_FINALLY) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003044 /* NOTE: If you add any new block-setup opcodes that
3045 are not try/except/finally handlers, you may need
3046 to update the PyGen_NeedsFinalizing() function.
3047 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003048
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003049 PyFrame_BlockSetup(f, opcode, INSTR_OFFSET() + oparg,
3050 STACK_LEVEL());
3051 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003052 }
Guido van Rossumac7be682001-01-17 15:42:30 +00003053
Yury Selivanov75445082015-05-11 22:57:16 -04003054 TARGET(BEFORE_ASYNC_WITH) {
3055 _Py_IDENTIFIER(__aexit__);
3056 _Py_IDENTIFIER(__aenter__);
3057
3058 PyObject *mgr = TOP();
3059 PyObject *exit = special_lookup(mgr, &PyId___aexit__),
3060 *enter;
3061 PyObject *res;
3062 if (exit == NULL)
3063 goto error;
3064 SET_TOP(exit);
3065 enter = special_lookup(mgr, &PyId___aenter__);
3066 Py_DECREF(mgr);
3067 if (enter == NULL)
3068 goto error;
Victor Stinnerf17c3de2016-12-06 18:46:19 +01003069 res = _PyObject_CallNoArg(enter);
Yury Selivanov75445082015-05-11 22:57:16 -04003070 Py_DECREF(enter);
3071 if (res == NULL)
3072 goto error;
3073 PUSH(res);
Serhiy Storchakada9c5132016-06-27 18:58:57 +03003074 PREDICT(GET_AWAITABLE);
Yury Selivanov75445082015-05-11 22:57:16 -04003075 DISPATCH();
3076 }
3077
3078 TARGET(SETUP_ASYNC_WITH) {
3079 PyObject *res = POP();
3080 /* Setup the finally block before pushing the result
3081 of __aenter__ on the stack. */
3082 PyFrame_BlockSetup(f, SETUP_FINALLY, INSTR_OFFSET() + oparg,
3083 STACK_LEVEL());
3084 PUSH(res);
3085 DISPATCH();
3086 }
3087
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003088 TARGET(SETUP_WITH) {
Benjamin Petersonce798522012-01-22 11:24:29 -05003089 _Py_IDENTIFIER(__exit__);
3090 _Py_IDENTIFIER(__enter__);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003091 PyObject *mgr = TOP();
Raymond Hettingera3fec152016-11-21 17:24:23 -08003092 PyObject *enter = special_lookup(mgr, &PyId___enter__), *exit;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003093 PyObject *res;
Raymond Hettingera3fec152016-11-21 17:24:23 -08003094 if (enter == NULL)
3095 goto error;
3096 exit = special_lookup(mgr, &PyId___exit__);
Raymond Hettinger64e2f9a2016-11-22 11:50:40 -08003097 if (exit == NULL) {
3098 Py_DECREF(enter);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003099 goto error;
Raymond Hettinger64e2f9a2016-11-22 11:50:40 -08003100 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003101 SET_TOP(exit);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003102 Py_DECREF(mgr);
Victor Stinnerf17c3de2016-12-06 18:46:19 +01003103 res = _PyObject_CallNoArg(enter);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003104 Py_DECREF(enter);
3105 if (res == NULL)
3106 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003107 /* Setup the finally block before pushing the result
3108 of __enter__ on the stack. */
3109 PyFrame_BlockSetup(f, SETUP_FINALLY, INSTR_OFFSET() + oparg,
3110 STACK_LEVEL());
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003111
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003112 PUSH(res);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003113 DISPATCH();
3114 }
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003115
Yury Selivanov75445082015-05-11 22:57:16 -04003116 TARGET(WITH_CLEANUP_START) {
Benjamin Peterson8f169482013-10-29 22:25:06 -04003117 /* At the top of the stack are 1-6 values indicating
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003118 how/why we entered the finally clause:
3119 - TOP = None
3120 - (TOP, SECOND) = (WHY_{RETURN,CONTINUE}), retval
3121 - TOP = WHY_*; no retval below it
3122 - (TOP, SECOND, THIRD) = exc_info()
3123 (FOURTH, FITH, SIXTH) = previous exception for EXCEPT_HANDLER
3124 Below them is EXIT, the context.__exit__ bound method.
3125 In the last case, we must call
3126 EXIT(TOP, SECOND, THIRD)
3127 otherwise we must call
3128 EXIT(None, None, None)
Christian Heimesdd15f6c2008-03-16 00:07:10 +00003129
Benjamin Peterson8f169482013-10-29 22:25:06 -04003130 In the first three cases, we remove EXIT from the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003131 stack, leaving the rest in the same order. In the
Benjamin Peterson8f169482013-10-29 22:25:06 -04003132 fourth case, we shift the bottom 3 values of the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003133 stack down, and replace the empty spot with NULL.
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00003134
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003135 In addition, if the stack represents an exception,
3136 *and* the function call returns a 'true' value, we
3137 push WHY_SILENCED onto the stack. END_FINALLY will
3138 then not re-raise the exception. (But non-local
3139 gotos should still be resumed.)
3140 */
Thomas Wouters477c8d52006-05-27 19:21:47 +00003141
Victor Stinner842cfff2016-12-01 14:45:31 +01003142 PyObject* stack[3];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003143 PyObject *exit_func;
Victor Stinner842cfff2016-12-01 14:45:31 +01003144 PyObject *exc, *val, *tb, *res;
3145
3146 val = tb = Py_None;
3147 exc = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003148 if (exc == Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003149 (void)POP();
3150 exit_func = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003151 SET_TOP(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003152 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003153 else if (PyLong_Check(exc)) {
3154 STACKADJ(-1);
3155 switch (PyLong_AsLong(exc)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003156 case WHY_RETURN:
3157 case WHY_CONTINUE:
3158 /* Retval in TOP. */
3159 exit_func = SECOND();
3160 SET_SECOND(TOP());
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003161 SET_TOP(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003162 break;
3163 default:
3164 exit_func = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003165 SET_TOP(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003166 break;
3167 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003168 exc = Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003169 }
3170 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003171 PyObject *tp2, *exc2, *tb2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003172 PyTryBlock *block;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003173 val = SECOND();
3174 tb = THIRD();
3175 tp2 = FOURTH();
3176 exc2 = PEEK(5);
3177 tb2 = PEEK(6);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003178 exit_func = PEEK(7);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003179 SET_VALUE(7, tb2);
3180 SET_VALUE(6, exc2);
3181 SET_VALUE(5, tp2);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003182 /* UNWIND_EXCEPT_HANDLER will pop this off. */
3183 SET_FOURTH(NULL);
3184 /* We just shifted the stack down, so we have
3185 to tell the except handler block that the
3186 values are lower than it expects. */
3187 block = &f->f_blockstack[f->f_iblock - 1];
3188 assert(block->b_type == EXCEPT_HANDLER);
3189 block->b_level--;
3190 }
Victor Stinner842cfff2016-12-01 14:45:31 +01003191
3192 stack[0] = exc;
3193 stack[1] = val;
3194 stack[2] = tb;
3195 res = _PyObject_FastCall(exit_func, stack, 3);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003196 Py_DECREF(exit_func);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003197 if (res == NULL)
3198 goto error;
Amaury Forgeot d'Arc10b24e82008-12-10 23:49:33 +00003199
Nick Coghlanbaaadbf2015-05-13 15:54:02 +10003200 Py_INCREF(exc); /* Duplicating the exception on the stack */
Yury Selivanov75445082015-05-11 22:57:16 -04003201 PUSH(exc);
3202 PUSH(res);
3203 PREDICT(WITH_CLEANUP_FINISH);
3204 DISPATCH();
3205 }
3206
3207 PREDICTED(WITH_CLEANUP_FINISH);
3208 TARGET(WITH_CLEANUP_FINISH) {
3209 PyObject *res = POP();
3210 PyObject *exc = POP();
3211 int err;
3212
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003213 if (exc != Py_None)
3214 err = PyObject_IsTrue(res);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003215 else
3216 err = 0;
Yury Selivanov75445082015-05-11 22:57:16 -04003217
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003218 Py_DECREF(res);
Nick Coghlanbaaadbf2015-05-13 15:54:02 +10003219 Py_DECREF(exc);
Amaury Forgeot d'Arc10b24e82008-12-10 23:49:33 +00003220
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003221 if (err < 0)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003222 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003223 else if (err > 0) {
3224 err = 0;
3225 /* There was an exception and a True return */
3226 PUSH(PyLong_FromLong((long) WHY_SILENCED));
3227 }
3228 PREDICT(END_FINALLY);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003229 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003230 }
Guido van Rossumc2e20742006-02-27 22:32:47 +00003231
Yury Selivanovf2392132016-12-13 19:03:51 -05003232 TARGET(LOAD_METHOD) {
3233 /* Designed to work in tamdem with CALL_METHOD. */
3234 PyObject *name = GETITEM(names, oparg);
3235 PyObject *obj = TOP();
3236 PyObject *meth = NULL;
3237
3238 int meth_found = _PyObject_GetMethod(obj, name, &meth);
3239
Yury Selivanovf2392132016-12-13 19:03:51 -05003240 if (meth == NULL) {
3241 /* Most likely attribute wasn't found. */
Yury Selivanovf2392132016-12-13 19:03:51 -05003242 goto error;
3243 }
3244
3245 if (meth_found) {
INADA Naoki015bce62017-01-16 17:23:30 +09003246 /* We can bypass temporary bound method object.
3247 meth is unbound method and obj is self.
Victor Stinnera8cb5152017-01-18 14:12:51 +01003248
INADA Naoki015bce62017-01-16 17:23:30 +09003249 meth | self | arg1 | ... | argN
3250 */
3251 SET_TOP(meth);
3252 PUSH(obj); // self
Yury Selivanovf2392132016-12-13 19:03:51 -05003253 }
3254 else {
INADA Naoki015bce62017-01-16 17:23:30 +09003255 /* meth is not an unbound method (but a regular attr, or
3256 something was returned by a descriptor protocol). Set
3257 the second element of the stack to NULL, to signal
Yury Selivanovf2392132016-12-13 19:03:51 -05003258 CALL_METHOD that it's not a method call.
INADA Naoki015bce62017-01-16 17:23:30 +09003259
3260 NULL | meth | arg1 | ... | argN
Yury Selivanovf2392132016-12-13 19:03:51 -05003261 */
INADA Naoki015bce62017-01-16 17:23:30 +09003262 SET_TOP(NULL);
Yury Selivanovf2392132016-12-13 19:03:51 -05003263 Py_DECREF(obj);
INADA Naoki015bce62017-01-16 17:23:30 +09003264 PUSH(meth);
Yury Selivanovf2392132016-12-13 19:03:51 -05003265 }
3266 DISPATCH();
3267 }
3268
3269 TARGET(CALL_METHOD) {
3270 /* Designed to work in tamdem with LOAD_METHOD. */
INADA Naoki015bce62017-01-16 17:23:30 +09003271 PyObject **sp, *res, *meth;
Yury Selivanovf2392132016-12-13 19:03:51 -05003272
3273 sp = stack_pointer;
3274
INADA Naoki015bce62017-01-16 17:23:30 +09003275 meth = PEEK(oparg + 2);
3276 if (meth == NULL) {
3277 /* `meth` is NULL when LOAD_METHOD thinks that it's not
3278 a method call.
Yury Selivanovf2392132016-12-13 19:03:51 -05003279
3280 Stack layout:
3281
INADA Naoki015bce62017-01-16 17:23:30 +09003282 ... | NULL | callable | arg1 | ... | argN
3283 ^- TOP()
3284 ^- (-oparg)
3285 ^- (-oparg-1)
3286 ^- (-oparg-2)
Yury Selivanovf2392132016-12-13 19:03:51 -05003287
INADA Naoki015bce62017-01-16 17:23:30 +09003288 `callable` will be POPed by call_funtion.
3289 NULL will will be POPed manually later.
Yury Selivanovf2392132016-12-13 19:03:51 -05003290 */
Yury Selivanovf2392132016-12-13 19:03:51 -05003291 res = call_function(&sp, oparg, NULL);
3292 stack_pointer = sp;
INADA Naoki015bce62017-01-16 17:23:30 +09003293 (void)POP(); /* POP the NULL. */
Yury Selivanovf2392132016-12-13 19:03:51 -05003294 }
3295 else {
3296 /* This is a method call. Stack layout:
3297
INADA Naoki015bce62017-01-16 17:23:30 +09003298 ... | method | self | arg1 | ... | argN
Yury Selivanovf2392132016-12-13 19:03:51 -05003299 ^- TOP()
3300 ^- (-oparg)
INADA Naoki015bce62017-01-16 17:23:30 +09003301 ^- (-oparg-1)
3302 ^- (-oparg-2)
Yury Selivanovf2392132016-12-13 19:03:51 -05003303
INADA Naoki015bce62017-01-16 17:23:30 +09003304 `self` and `method` will be POPed by call_function.
Yury Selivanovf2392132016-12-13 19:03:51 -05003305 We'll be passing `oparg + 1` to call_function, to
INADA Naoki015bce62017-01-16 17:23:30 +09003306 make it accept the `self` as a first argument.
Yury Selivanovf2392132016-12-13 19:03:51 -05003307 */
3308 res = call_function(&sp, oparg + 1, NULL);
3309 stack_pointer = sp;
3310 }
3311
3312 PUSH(res);
3313 if (res == NULL)
3314 goto error;
3315 DISPATCH();
3316 }
3317
Serhiy Storchakada9c5132016-06-27 18:58:57 +03003318 PREDICTED(CALL_FUNCTION);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003319 TARGET(CALL_FUNCTION) {
3320 PyObject **sp, *res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003321 sp = stack_pointer;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003322 res = call_function(&sp, oparg, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003323 stack_pointer = sp;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003324 PUSH(res);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003325 if (res == NULL) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003326 goto error;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003327 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003328 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003329 }
Guido van Rossumac7be682001-01-17 15:42:30 +00003330
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003331 TARGET(CALL_FUNCTION_KW) {
3332 PyObject **sp, *res, *names;
3333
3334 names = POP();
3335 assert(PyTuple_CheckExact(names) && PyTuple_GET_SIZE(names) <= oparg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003336 sp = stack_pointer;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003337 res = call_function(&sp, oparg, names);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003338 stack_pointer = sp;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003339 PUSH(res);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003340 Py_DECREF(names);
3341
3342 if (res == NULL) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003343 goto error;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003344 }
3345 DISPATCH();
3346 }
3347
3348 TARGET(CALL_FUNCTION_EX) {
3349 PyObject *func, *callargs, *kwargs = NULL, *result;
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003350 if (oparg & 0x01) {
3351 kwargs = POP();
Serhiy Storchakab7281052016-09-12 00:52:40 +03003352 if (!PyDict_CheckExact(kwargs)) {
3353 PyObject *d = PyDict_New();
3354 if (d == NULL)
3355 goto error;
3356 if (PyDict_Update(d, kwargs) != 0) {
3357 Py_DECREF(d);
3358 /* PyDict_Update raises attribute
3359 * error (percolated from an attempt
3360 * to get 'keys' attribute) instead of
3361 * a type error if its second argument
3362 * is not a mapping.
3363 */
3364 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
3365 func = SECOND();
3366 PyErr_Format(PyExc_TypeError,
3367 "%.200s%.200s argument after ** "
3368 "must be a mapping, not %.200s",
3369 PyEval_GetFuncName(func),
3370 PyEval_GetFuncDesc(func),
3371 kwargs->ob_type->tp_name);
3372 }
Victor Stinnereece2222016-09-12 11:16:37 +02003373 Py_DECREF(kwargs);
Serhiy Storchakab7281052016-09-12 00:52:40 +03003374 goto error;
3375 }
3376 Py_DECREF(kwargs);
3377 kwargs = d;
3378 }
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003379 assert(PyDict_CheckExact(kwargs));
3380 }
3381 callargs = POP();
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003382 func = TOP();
Serhiy Storchaka63dc5482016-09-22 19:41:20 +03003383 if (!PyTuple_CheckExact(callargs)) {
Serhiy Storchakab7281052016-09-12 00:52:40 +03003384 if (Py_TYPE(callargs)->tp_iter == NULL &&
3385 !PySequence_Check(callargs)) {
3386 PyErr_Format(PyExc_TypeError,
3387 "%.200s%.200s argument after * "
3388 "must be an iterable, not %.200s",
3389 PyEval_GetFuncName(func),
3390 PyEval_GetFuncDesc(func),
3391 callargs->ob_type->tp_name);
Victor Stinnereece2222016-09-12 11:16:37 +02003392 Py_DECREF(callargs);
Serhiy Storchakab7281052016-09-12 00:52:40 +03003393 goto error;
3394 }
3395 Py_SETREF(callargs, PySequence_Tuple(callargs));
3396 if (callargs == NULL) {
3397 goto error;
3398 }
3399 }
Serhiy Storchaka63dc5482016-09-22 19:41:20 +03003400 assert(PyTuple_CheckExact(callargs));
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003401
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003402 result = do_call_core(func, callargs, kwargs);
Victor Stinnerf9b760f2016-09-09 10:17:08 -07003403 Py_DECREF(func);
3404 Py_DECREF(callargs);
3405 Py_XDECREF(kwargs);
3406
3407 SET_TOP(result);
3408 if (result == NULL) {
3409 goto error;
3410 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003411 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003412 }
Guido van Rossumac7be682001-01-17 15:42:30 +00003413
Serhiy Storchakab0f80b02016-05-24 09:15:14 +03003414 TARGET(MAKE_FUNCTION) {
Serhiy Storchaka64204de2016-06-12 17:36:24 +03003415 PyObject *qualname = POP();
3416 PyObject *codeobj = POP();
3417 PyFunctionObject *func = (PyFunctionObject *)
3418 PyFunction_NewWithQualName(codeobj, f->f_globals, qualname);
Guido van Rossum4f72a782006-10-27 23:31:49 +00003419
Serhiy Storchaka64204de2016-06-12 17:36:24 +03003420 Py_DECREF(codeobj);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003421 Py_DECREF(qualname);
Serhiy Storchaka64204de2016-06-12 17:36:24 +03003422 if (func == NULL) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003423 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003424 }
Neal Norwitzc1505362006-12-28 06:47:50 +00003425
Serhiy Storchaka64204de2016-06-12 17:36:24 +03003426 if (oparg & 0x08) {
3427 assert(PyTuple_CheckExact(TOP()));
3428 func ->func_closure = POP();
3429 }
3430 if (oparg & 0x04) {
3431 assert(PyDict_CheckExact(TOP()));
3432 func->func_annotations = POP();
3433 }
3434 if (oparg & 0x02) {
3435 assert(PyDict_CheckExact(TOP()));
3436 func->func_kwdefaults = POP();
3437 }
3438 if (oparg & 0x01) {
3439 assert(PyTuple_CheckExact(TOP()));
3440 func->func_defaults = POP();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003441 }
Neal Norwitzc1505362006-12-28 06:47:50 +00003442
Serhiy Storchaka64204de2016-06-12 17:36:24 +03003443 PUSH((PyObject *)func);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003444 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003445 }
Guido van Rossum8861b741996-07-30 16:49:37 +00003446
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003447 TARGET(BUILD_SLICE) {
3448 PyObject *start, *stop, *step, *slice;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003449 if (oparg == 3)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003450 step = POP();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003451 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003452 step = NULL;
3453 stop = POP();
3454 start = TOP();
3455 slice = PySlice_New(start, stop, step);
3456 Py_DECREF(start);
3457 Py_DECREF(stop);
3458 Py_XDECREF(step);
3459 SET_TOP(slice);
3460 if (slice == NULL)
3461 goto error;
3462 DISPATCH();
3463 }
Guido van Rossum8861b741996-07-30 16:49:37 +00003464
Eric V. Smitha78c7952015-11-03 12:45:05 -05003465 TARGET(FORMAT_VALUE) {
3466 /* Handles f-string value formatting. */
3467 PyObject *result;
3468 PyObject *fmt_spec;
3469 PyObject *value;
3470 PyObject *(*conv_fn)(PyObject *);
3471 int which_conversion = oparg & FVC_MASK;
3472 int have_fmt_spec = (oparg & FVS_MASK) == FVS_HAVE_SPEC;
3473
3474 fmt_spec = have_fmt_spec ? POP() : NULL;
Eric V. Smith135d5f42016-02-05 18:23:08 -05003475 value = POP();
Eric V. Smitha78c7952015-11-03 12:45:05 -05003476
3477 /* See if any conversion is specified. */
3478 switch (which_conversion) {
3479 case FVC_STR: conv_fn = PyObject_Str; break;
3480 case FVC_REPR: conv_fn = PyObject_Repr; break;
3481 case FVC_ASCII: conv_fn = PyObject_ASCII; break;
3482
3483 /* Must be 0 (meaning no conversion), since only four
3484 values are allowed by (oparg & FVC_MASK). */
3485 default: conv_fn = NULL; break;
3486 }
3487
3488 /* If there's a conversion function, call it and replace
3489 value with that result. Otherwise, just use value,
3490 without conversion. */
Eric V. Smitheb588a12016-02-05 18:26:20 -05003491 if (conv_fn != NULL) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003492 result = conv_fn(value);
3493 Py_DECREF(value);
Eric V. Smitheb588a12016-02-05 18:26:20 -05003494 if (result == NULL) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003495 Py_XDECREF(fmt_spec);
3496 goto error;
3497 }
3498 value = result;
3499 }
3500
3501 /* If value is a unicode object, and there's no fmt_spec,
3502 then we know the result of format(value) is value
3503 itself. In that case, skip calling format(). I plan to
3504 move this optimization in to PyObject_Format()
3505 itself. */
3506 if (PyUnicode_CheckExact(value) && fmt_spec == NULL) {
3507 /* Do nothing, just transfer ownership to result. */
3508 result = value;
3509 } else {
3510 /* Actually call format(). */
3511 result = PyObject_Format(value, fmt_spec);
3512 Py_DECREF(value);
3513 Py_XDECREF(fmt_spec);
Eric V. Smitheb588a12016-02-05 18:26:20 -05003514 if (result == NULL) {
Eric V. Smitha78c7952015-11-03 12:45:05 -05003515 goto error;
Eric V. Smitheb588a12016-02-05 18:26:20 -05003516 }
Eric V. Smitha78c7952015-11-03 12:45:05 -05003517 }
3518
Eric V. Smith135d5f42016-02-05 18:23:08 -05003519 PUSH(result);
Eric V. Smitha78c7952015-11-03 12:45:05 -05003520 DISPATCH();
3521 }
3522
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003523 TARGET(EXTENDED_ARG) {
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +03003524 int oldoparg = oparg;
3525 NEXTOPARG();
3526 oparg |= oldoparg << 8;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003527 goto dispatch_opcode;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003528 }
Guido van Rossum8861b741996-07-30 16:49:37 +00003529
Benjamin Peterson025e9eb2015-05-05 20:16:41 -04003530
Antoine Pitrou042b1282010-08-13 21:15:58 +00003531#if USE_COMPUTED_GOTOS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003532 _unknown_opcode:
Antoine Pitroub52ec782009-01-25 16:34:23 +00003533#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003534 default:
3535 fprintf(stderr,
3536 "XXX lineno: %d, opcode: %d\n",
3537 PyFrame_GetLineNumber(f),
3538 opcode);
3539 PyErr_SetString(PyExc_SystemError, "unknown opcode");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003540 goto error;
Guido van Rossum04691fc1992-08-12 15:35:34 +00003541
3542#ifdef CASE_TOO_BIG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003543 }
Guido van Rossum04691fc1992-08-12 15:35:34 +00003544#endif
3545
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003546 } /* switch */
Guido van Rossum374a9221991-04-04 10:40:29 +00003547
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003548 /* This should never be reached. Every opcode should end with DISPATCH()
3549 or goto error. */
3550 assert(0);
Guido van Rossumac7be682001-01-17 15:42:30 +00003551
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003552error:
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00003553
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003554 assert(why == WHY_NOT);
3555 why = WHY_EXCEPTION;
Guido van Rossumac7be682001-01-17 15:42:30 +00003556
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003557 /* Double-check exception status. */
Victor Stinner365b6932013-07-12 00:11:58 +02003558#ifdef NDEBUG
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003559 if (!PyErr_Occurred())
3560 PyErr_SetString(PyExc_SystemError,
3561 "error return without exception set");
Victor Stinner365b6932013-07-12 00:11:58 +02003562#else
3563 assert(PyErr_Occurred());
3564#endif
Guido van Rossum374a9221991-04-04 10:40:29 +00003565
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003566 /* Log traceback info. */
3567 PyTraceBack_Here(f);
Guido van Rossumac7be682001-01-17 15:42:30 +00003568
Benjamin Peterson51f46162013-01-23 08:38:47 -05003569 if (tstate->c_tracefunc != NULL)
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003570 call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj,
3571 tstate, f);
Guido van Rossumac7be682001-01-17 15:42:30 +00003572
Raymond Hettinger1dd83092004-02-06 18:32:33 +00003573fast_block_end:
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003574 assert(why != WHY_NOT);
3575
3576 /* Unwind stacks if a (pseudo) exception occurred */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003577 while (why != WHY_NOT && f->f_iblock > 0) {
3578 /* Peek at the current block. */
3579 PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1];
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00003580
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003581 assert(why != WHY_YIELD);
3582 if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) {
3583 why = WHY_NOT;
3584 JUMPTO(PyLong_AS_LONG(retval));
3585 Py_DECREF(retval);
3586 break;
3587 }
3588 /* Now we have to pop the block. */
3589 f->f_iblock--;
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00003590
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003591 if (b->b_type == EXCEPT_HANDLER) {
3592 UNWIND_EXCEPT_HANDLER(b);
3593 continue;
3594 }
3595 UNWIND_BLOCK(b);
3596 if (b->b_type == SETUP_LOOP && why == WHY_BREAK) {
3597 why = WHY_NOT;
3598 JUMPTO(b->b_handler);
3599 break;
3600 }
3601 if (why == WHY_EXCEPTION && (b->b_type == SETUP_EXCEPT
3602 || b->b_type == SETUP_FINALLY)) {
3603 PyObject *exc, *val, *tb;
3604 int handler = b->b_handler;
3605 /* Beware, this invalidates all b->b_* fields */
3606 PyFrame_BlockSetup(f, EXCEPT_HANDLER, -1, STACK_LEVEL());
3607 PUSH(tstate->exc_traceback);
3608 PUSH(tstate->exc_value);
3609 if (tstate->exc_type != NULL) {
3610 PUSH(tstate->exc_type);
3611 }
3612 else {
3613 Py_INCREF(Py_None);
3614 PUSH(Py_None);
3615 }
3616 PyErr_Fetch(&exc, &val, &tb);
3617 /* Make the raw exception data
3618 available to the handler,
3619 so a program can emulate the
3620 Python main loop. */
3621 PyErr_NormalizeException(
3622 &exc, &val, &tb);
Victor Stinner7eab0d02013-07-15 21:16:27 +02003623 if (tb != NULL)
3624 PyException_SetTraceback(val, tb);
3625 else
3626 PyException_SetTraceback(val, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003627 Py_INCREF(exc);
3628 tstate->exc_type = exc;
3629 Py_INCREF(val);
3630 tstate->exc_value = val;
3631 tstate->exc_traceback = tb;
3632 if (tb == NULL)
3633 tb = Py_None;
3634 Py_INCREF(tb);
3635 PUSH(tb);
3636 PUSH(val);
3637 PUSH(exc);
3638 why = WHY_NOT;
3639 JUMPTO(handler);
3640 break;
3641 }
3642 if (b->b_type == SETUP_FINALLY) {
3643 if (why & (WHY_RETURN | WHY_CONTINUE))
3644 PUSH(retval);
3645 PUSH(PyLong_FromLong((long)why));
3646 why = WHY_NOT;
3647 JUMPTO(b->b_handler);
3648 break;
3649 }
3650 } /* unwind stack */
Guido van Rossum374a9221991-04-04 10:40:29 +00003651
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003652 /* End the loop if we still have an error (or return) */
Guido van Rossumac7be682001-01-17 15:42:30 +00003653
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003654 if (why != WHY_NOT)
3655 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00003656
Victor Stinnerace47d72013-07-18 01:41:08 +02003657 assert(!PyErr_Occurred());
3658
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003659 } /* main loop */
Guido van Rossumac7be682001-01-17 15:42:30 +00003660
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003661 assert(why != WHY_YIELD);
3662 /* Pop remaining stack entries. */
3663 while (!EMPTY()) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003664 PyObject *o = POP();
3665 Py_XDECREF(o);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003666 }
Guido van Rossum35974fb2001-12-06 21:28:18 +00003667
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003668 if (why != WHY_RETURN)
3669 retval = NULL;
Guido van Rossumac7be682001-01-17 15:42:30 +00003670
Victor Stinner4a7cc882015-03-06 23:35:27 +01003671 assert((retval != NULL) ^ (PyErr_Occurred() != NULL));
Victor Stinnerace47d72013-07-18 01:41:08 +02003672
Raymond Hettinger1dd83092004-02-06 18:32:33 +00003673fast_yield:
Yury Selivanoveb636452016-09-08 22:01:51 -07003674 if (co->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR)) {
Victor Stinner26f7b8a2015-01-31 10:29:47 +01003675
Benjamin Petersonac913412011-07-03 16:25:11 -05003676 /* The purpose of this block is to put aside the generator's exception
3677 state and restore that of the calling frame. If the current
3678 exception state is from the caller, we clear the exception values
3679 on the generator frame, so they are not swapped back in latter. The
3680 origin of the current exception state is determined by checking for
3681 except handler blocks, which we must be in iff a new exception
3682 state came into existence in this frame. (An uncaught exception
3683 would have why == WHY_EXCEPTION, and we wouldn't be here). */
3684 int i;
Victor Stinner74319ae2016-08-25 00:04:09 +02003685 for (i = 0; i < f->f_iblock; i++) {
3686 if (f->f_blockstack[i].b_type == EXCEPT_HANDLER) {
Benjamin Petersonac913412011-07-03 16:25:11 -05003687 break;
Victor Stinner74319ae2016-08-25 00:04:09 +02003688 }
3689 }
Benjamin Petersonac913412011-07-03 16:25:11 -05003690 if (i == f->f_iblock)
3691 /* We did not create this exception. */
Benjamin Peterson87880242011-07-03 16:48:31 -05003692 restore_and_clear_exc_state(tstate, f);
Benjamin Petersonac913412011-07-03 16:25:11 -05003693 else
Benjamin Peterson87880242011-07-03 16:48:31 -05003694 swap_exc_state(tstate, f);
Benjamin Petersonac913412011-07-03 16:25:11 -05003695 }
Benjamin Peterson83195c32011-07-03 13:44:00 -05003696
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003697 if (tstate->use_tracing) {
Benjamin Peterson51f46162013-01-23 08:38:47 -05003698 if (tstate->c_tracefunc) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003699 if (why == WHY_RETURN || why == WHY_YIELD) {
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003700 if (call_trace(tstate->c_tracefunc, tstate->c_traceobj,
3701 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003702 PyTrace_RETURN, retval)) {
Serhiy Storchaka505ff752014-02-09 13:33:53 +02003703 Py_CLEAR(retval);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003704 why = WHY_EXCEPTION;
3705 }
3706 }
3707 else if (why == WHY_EXCEPTION) {
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003708 call_trace_protected(tstate->c_tracefunc, tstate->c_traceobj,
3709 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003710 PyTrace_RETURN, NULL);
3711 }
3712 }
3713 if (tstate->c_profilefunc) {
3714 if (why == WHY_EXCEPTION)
3715 call_trace_protected(tstate->c_profilefunc,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003716 tstate->c_profileobj,
3717 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003718 PyTrace_RETURN, NULL);
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003719 else if (call_trace(tstate->c_profilefunc, tstate->c_profileobj,
3720 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003721 PyTrace_RETURN, retval)) {
Serhiy Storchaka505ff752014-02-09 13:33:53 +02003722 Py_CLEAR(retval);
Brett Cannonb94767f2011-02-22 20:15:44 +00003723 /* why = WHY_EXCEPTION; */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003724 }
3725 }
3726 }
Guido van Rossuma4240131997-01-21 21:18:36 +00003727
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003728 /* pop frame */
Thomas Woutersce272b62007-09-19 21:19:28 +00003729exit_eval_frame:
Łukasz Langaa785c872016-09-09 17:37:37 -07003730 if (PyDTrace_FUNCTION_RETURN_ENABLED())
3731 dtrace_function_return(f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003732 Py_LeaveRecursiveCall();
Antoine Pitrou58720d62013-08-05 23:26:40 +02003733 f->f_executing = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003734 tstate->frame = f->f_back;
Guido van Rossumac7be682001-01-17 15:42:30 +00003735
Victor Stinnerefde1462015-03-21 15:04:43 +01003736 return _Py_CheckFunctionResult(NULL, retval, "PyEval_EvalFrameEx");
Guido van Rossum374a9221991-04-04 10:40:29 +00003737}
3738
Benjamin Petersonb204a422011-06-05 22:04:07 -05003739static void
Benjamin Petersone109c702011-06-24 09:37:26 -05003740format_missing(const char *kind, PyCodeObject *co, PyObject *names)
3741{
3742 int err;
3743 Py_ssize_t len = PyList_GET_SIZE(names);
3744 PyObject *name_str, *comma, *tail, *tmp;
3745
3746 assert(PyList_CheckExact(names));
3747 assert(len >= 1);
3748 /* Deal with the joys of natural language. */
3749 switch (len) {
3750 case 1:
3751 name_str = PyList_GET_ITEM(names, 0);
3752 Py_INCREF(name_str);
3753 break;
3754 case 2:
3755 name_str = PyUnicode_FromFormat("%U and %U",
3756 PyList_GET_ITEM(names, len - 2),
3757 PyList_GET_ITEM(names, len - 1));
3758 break;
3759 default:
3760 tail = PyUnicode_FromFormat(", %U, and %U",
3761 PyList_GET_ITEM(names, len - 2),
3762 PyList_GET_ITEM(names, len - 1));
Benjamin Petersond1ab6082012-06-01 11:18:22 -07003763 if (tail == NULL)
3764 return;
Benjamin Petersone109c702011-06-24 09:37:26 -05003765 /* Chop off the last two objects in the list. This shouldn't actually
3766 fail, but we can't be too careful. */
3767 err = PyList_SetSlice(names, len - 2, len, NULL);
3768 if (err == -1) {
3769 Py_DECREF(tail);
3770 return;
3771 }
3772 /* Stitch everything up into a nice comma-separated list. */
3773 comma = PyUnicode_FromString(", ");
3774 if (comma == NULL) {
3775 Py_DECREF(tail);
3776 return;
3777 }
3778 tmp = PyUnicode_Join(comma, names);
3779 Py_DECREF(comma);
3780 if (tmp == NULL) {
3781 Py_DECREF(tail);
3782 return;
3783 }
3784 name_str = PyUnicode_Concat(tmp, tail);
3785 Py_DECREF(tmp);
3786 Py_DECREF(tail);
3787 break;
3788 }
3789 if (name_str == NULL)
3790 return;
3791 PyErr_Format(PyExc_TypeError,
3792 "%U() missing %i required %s argument%s: %U",
3793 co->co_name,
3794 len,
3795 kind,
3796 len == 1 ? "" : "s",
3797 name_str);
3798 Py_DECREF(name_str);
3799}
3800
3801static void
Victor Stinner74319ae2016-08-25 00:04:09 +02003802missing_arguments(PyCodeObject *co, Py_ssize_t missing, Py_ssize_t defcount,
Benjamin Petersone109c702011-06-24 09:37:26 -05003803 PyObject **fastlocals)
3804{
Victor Stinner74319ae2016-08-25 00:04:09 +02003805 Py_ssize_t i, j = 0;
3806 Py_ssize_t start, end;
3807 int positional = (defcount != -1);
Benjamin Petersone109c702011-06-24 09:37:26 -05003808 const char *kind = positional ? "positional" : "keyword-only";
3809 PyObject *missing_names;
3810
3811 /* Compute the names of the arguments that are missing. */
3812 missing_names = PyList_New(missing);
3813 if (missing_names == NULL)
3814 return;
3815 if (positional) {
3816 start = 0;
3817 end = co->co_argcount - defcount;
3818 }
3819 else {
3820 start = co->co_argcount;
3821 end = start + co->co_kwonlyargcount;
3822 }
3823 for (i = start; i < end; i++) {
3824 if (GETLOCAL(i) == NULL) {
3825 PyObject *raw = PyTuple_GET_ITEM(co->co_varnames, i);
3826 PyObject *name = PyObject_Repr(raw);
3827 if (name == NULL) {
3828 Py_DECREF(missing_names);
3829 return;
3830 }
3831 PyList_SET_ITEM(missing_names, j++, name);
3832 }
3833 }
3834 assert(j == missing);
3835 format_missing(kind, co, missing_names);
3836 Py_DECREF(missing_names);
3837}
3838
3839static void
Victor Stinner74319ae2016-08-25 00:04:09 +02003840too_many_positional(PyCodeObject *co, Py_ssize_t given, Py_ssize_t defcount,
3841 PyObject **fastlocals)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003842{
3843 int plural;
Victor Stinner74319ae2016-08-25 00:04:09 +02003844 Py_ssize_t kwonly_given = 0;
3845 Py_ssize_t i;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003846 PyObject *sig, *kwonly_sig;
Victor Stinner74319ae2016-08-25 00:04:09 +02003847 Py_ssize_t co_argcount = co->co_argcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003848
Benjamin Petersone109c702011-06-24 09:37:26 -05003849 assert((co->co_flags & CO_VARARGS) == 0);
3850 /* Count missing keyword-only args. */
Victor Stinner74319ae2016-08-25 00:04:09 +02003851 for (i = co_argcount; i < co_argcount + co->co_kwonlyargcount; i++) {
3852 if (GETLOCAL(i) != NULL) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05003853 kwonly_given++;
Victor Stinner74319ae2016-08-25 00:04:09 +02003854 }
3855 }
Benjamin Petersone109c702011-06-24 09:37:26 -05003856 if (defcount) {
Victor Stinner74319ae2016-08-25 00:04:09 +02003857 Py_ssize_t atleast = co_argcount - defcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003858 plural = 1;
Victor Stinner74319ae2016-08-25 00:04:09 +02003859 sig = PyUnicode_FromFormat("from %zd to %zd", atleast, co_argcount);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003860 }
3861 else {
Victor Stinner74319ae2016-08-25 00:04:09 +02003862 plural = (co_argcount != 1);
3863 sig = PyUnicode_FromFormat("%zd", co_argcount);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003864 }
3865 if (sig == NULL)
3866 return;
3867 if (kwonly_given) {
Victor Stinner74319ae2016-08-25 00:04:09 +02003868 const char *format = " positional argument%s (and %zd keyword-only argument%s)";
3869 kwonly_sig = PyUnicode_FromFormat(format,
3870 given != 1 ? "s" : "",
3871 kwonly_given,
3872 kwonly_given != 1 ? "s" : "");
Benjamin Petersonb204a422011-06-05 22:04:07 -05003873 if (kwonly_sig == NULL) {
3874 Py_DECREF(sig);
3875 return;
3876 }
3877 }
3878 else {
3879 /* This will not fail. */
3880 kwonly_sig = PyUnicode_FromString("");
Benjamin Petersone109c702011-06-24 09:37:26 -05003881 assert(kwonly_sig != NULL);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003882 }
3883 PyErr_Format(PyExc_TypeError,
Victor Stinner74319ae2016-08-25 00:04:09 +02003884 "%U() takes %U positional argument%s but %zd%U %s given",
Benjamin Petersonb204a422011-06-05 22:04:07 -05003885 co->co_name,
3886 sig,
3887 plural ? "s" : "",
3888 given,
3889 kwonly_sig,
3890 given == 1 && !kwonly_given ? "was" : "were");
3891 Py_DECREF(sig);
3892 Py_DECREF(kwonly_sig);
3893}
3894
Guido van Rossumc2e20742006-02-27 22:32:47 +00003895/* This is gonna seem *real weird*, but if you put some other code between
Martin v. Löwis8d97e332004-06-27 15:43:12 +00003896 PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
Guido van Rossumc2e20742006-02-27 22:32:47 +00003897 the test in the if statements in Misc/gdbinit (pystack and pystackv). */
Skip Montanaro786ea6b2004-03-01 15:44:05 +00003898
Victor Stinnerc22bfaa2017-02-12 19:27:05 +01003899PyObject *
Victor Stinner40ee3012014-06-16 15:59:28 +02003900_PyEval_EvalCodeWithName(PyObject *_co, PyObject *globals, PyObject *locals,
Victor Stinner74319ae2016-08-25 00:04:09 +02003901 PyObject **args, Py_ssize_t argcount,
Serhiy Storchakab7281052016-09-12 00:52:40 +03003902 PyObject **kwnames, PyObject **kwargs,
3903 Py_ssize_t kwcount, int kwstep,
Victor Stinner74319ae2016-08-25 00:04:09 +02003904 PyObject **defs, Py_ssize_t defcount,
3905 PyObject *kwdefs, PyObject *closure,
Victor Stinner40ee3012014-06-16 15:59:28 +02003906 PyObject *name, PyObject *qualname)
Tim Peters5ca576e2001-06-18 22:08:13 +00003907{
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003908 PyCodeObject* co = (PyCodeObject*)_co;
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02003909 PyFrameObject *f;
3910 PyObject *retval = NULL;
3911 PyObject **fastlocals, **freevars;
Victor Stinnerc7020012016-08-16 23:40:29 +02003912 PyThreadState *tstate;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003913 PyObject *x, *u;
Victor Stinner17061a92016-08-16 23:39:42 +02003914 const Py_ssize_t total_args = co->co_argcount + co->co_kwonlyargcount;
3915 Py_ssize_t i, n;
Victor Stinnerc7020012016-08-16 23:40:29 +02003916 PyObject *kwdict;
Tim Peters5ca576e2001-06-18 22:08:13 +00003917
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003918 if (globals == NULL) {
3919 PyErr_SetString(PyExc_SystemError,
3920 "PyEval_EvalCodeEx: NULL globals");
3921 return NULL;
3922 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003923
Victor Stinnerc7020012016-08-16 23:40:29 +02003924 /* Create the frame */
3925 tstate = PyThreadState_GET();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003926 assert(tstate != NULL);
INADA Naoki5a625d02016-12-24 20:19:08 +09003927 f = _PyFrame_New_NoTrack(tstate, co, globals, locals);
Victor Stinnerc7020012016-08-16 23:40:29 +02003928 if (f == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003929 return NULL;
Victor Stinnerc7020012016-08-16 23:40:29 +02003930 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003931 fastlocals = f->f_localsplus;
3932 freevars = f->f_localsplus + co->co_nlocals;
Tim Peters5ca576e2001-06-18 22:08:13 +00003933
Victor Stinnerc7020012016-08-16 23:40:29 +02003934 /* Create a dictionary for keyword parameters (**kwags) */
Benjamin Petersonb204a422011-06-05 22:04:07 -05003935 if (co->co_flags & CO_VARKEYWORDS) {
3936 kwdict = PyDict_New();
3937 if (kwdict == NULL)
3938 goto fail;
3939 i = total_args;
Victor Stinnerc7020012016-08-16 23:40:29 +02003940 if (co->co_flags & CO_VARARGS) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05003941 i++;
Victor Stinnerc7020012016-08-16 23:40:29 +02003942 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003943 SETLOCAL(i, kwdict);
3944 }
Victor Stinnerc7020012016-08-16 23:40:29 +02003945 else {
3946 kwdict = NULL;
3947 }
3948
3949 /* Copy positional arguments into local variables */
3950 if (argcount > co->co_argcount) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05003951 n = co->co_argcount;
Victor Stinnerc7020012016-08-16 23:40:29 +02003952 }
3953 else {
3954 n = argcount;
3955 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003956 for (i = 0; i < n; i++) {
3957 x = args[i];
3958 Py_INCREF(x);
3959 SETLOCAL(i, x);
3960 }
Victor Stinnerc7020012016-08-16 23:40:29 +02003961
3962 /* Pack other positional arguments into the *args argument */
Benjamin Petersonb204a422011-06-05 22:04:07 -05003963 if (co->co_flags & CO_VARARGS) {
3964 u = PyTuple_New(argcount - n);
Victor Stinnerc7020012016-08-16 23:40:29 +02003965 if (u == NULL) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05003966 goto fail;
Victor Stinnerc7020012016-08-16 23:40:29 +02003967 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003968 SETLOCAL(total_args, u);
3969 for (i = n; i < argcount; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003970 x = args[i];
3971 Py_INCREF(x);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003972 PyTuple_SET_ITEM(u, i-n, x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003973 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003974 }
Victor Stinnerc7020012016-08-16 23:40:29 +02003975
Serhiy Storchakab7281052016-09-12 00:52:40 +03003976 /* Handle keyword arguments passed as two strided arrays */
3977 kwcount *= kwstep;
3978 for (i = 0; i < kwcount; i += kwstep) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05003979 PyObject **co_varnames;
Serhiy Storchakab7281052016-09-12 00:52:40 +03003980 PyObject *keyword = kwnames[i];
3981 PyObject *value = kwargs[i];
Victor Stinner17061a92016-08-16 23:39:42 +02003982 Py_ssize_t j;
Victor Stinnerc7020012016-08-16 23:40:29 +02003983
Benjamin Petersonb204a422011-06-05 22:04:07 -05003984 if (keyword == NULL || !PyUnicode_Check(keyword)) {
3985 PyErr_Format(PyExc_TypeError,
3986 "%U() keywords must be strings",
3987 co->co_name);
3988 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003989 }
Victor Stinnerc7020012016-08-16 23:40:29 +02003990
Benjamin Petersonb204a422011-06-05 22:04:07 -05003991 /* Speed hack: do raw pointer compares. As names are
3992 normally interned this should almost always hit. */
3993 co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item;
3994 for (j = 0; j < total_args; j++) {
Victor Stinner6fea7f72016-08-22 23:17:30 +02003995 PyObject *name = co_varnames[j];
3996 if (name == keyword) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05003997 goto kw_found;
Victor Stinner6fea7f72016-08-22 23:17:30 +02003998 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003999 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004000
Benjamin Petersonb204a422011-06-05 22:04:07 -05004001 /* Slow fallback, just in case */
4002 for (j = 0; j < total_args; j++) {
Victor Stinner6fea7f72016-08-22 23:17:30 +02004003 PyObject *name = co_varnames[j];
4004 int cmp = PyObject_RichCompareBool( keyword, name, Py_EQ);
4005 if (cmp > 0) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05004006 goto kw_found;
Victor Stinner6fea7f72016-08-22 23:17:30 +02004007 }
4008 else if (cmp < 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004009 goto fail;
Victor Stinner6fea7f72016-08-22 23:17:30 +02004010 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05004011 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004012
Victor Stinner231d1f32017-01-11 02:12:06 +01004013 assert(j >= total_args);
4014 if (kwdict == NULL) {
Benjamin Petersonb204a422011-06-05 22:04:07 -05004015 PyErr_Format(PyExc_TypeError,
Victor Stinner6fea7f72016-08-22 23:17:30 +02004016 "%U() got an unexpected keyword argument '%S'",
4017 co->co_name, keyword);
Benjamin Petersonb204a422011-06-05 22:04:07 -05004018 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004019 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004020
Christian Heimes0bd447f2013-07-20 14:48:10 +02004021 if (PyDict_SetItem(kwdict, keyword, value) == -1) {
4022 goto fail;
4023 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05004024 continue;
Victor Stinnerc7020012016-08-16 23:40:29 +02004025
Benjamin Petersonb204a422011-06-05 22:04:07 -05004026 kw_found:
4027 if (GETLOCAL(j) != NULL) {
4028 PyErr_Format(PyExc_TypeError,
Victor Stinner6fea7f72016-08-22 23:17:30 +02004029 "%U() got multiple values for argument '%S'",
4030 co->co_name, keyword);
Benjamin Petersonb204a422011-06-05 22:04:07 -05004031 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004032 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05004033 Py_INCREF(value);
4034 SETLOCAL(j, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004035 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004036
4037 /* Check the number of positional arguments */
Benjamin Petersonb204a422011-06-05 22:04:07 -05004038 if (argcount > co->co_argcount && !(co->co_flags & CO_VARARGS)) {
Benjamin Petersone109c702011-06-24 09:37:26 -05004039 too_many_positional(co, argcount, defcount, fastlocals);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004040 goto fail;
4041 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004042
4043 /* Add missing positional arguments (copy default values from defs) */
Benjamin Petersonb204a422011-06-05 22:04:07 -05004044 if (argcount < co->co_argcount) {
Victor Stinner17061a92016-08-16 23:39:42 +02004045 Py_ssize_t m = co->co_argcount - defcount;
4046 Py_ssize_t missing = 0;
4047 for (i = argcount; i < m; i++) {
4048 if (GETLOCAL(i) == NULL) {
Benjamin Petersone109c702011-06-24 09:37:26 -05004049 missing++;
Victor Stinner17061a92016-08-16 23:39:42 +02004050 }
4051 }
Benjamin Petersone109c702011-06-24 09:37:26 -05004052 if (missing) {
4053 missing_arguments(co, missing, defcount, fastlocals);
4054 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05004055 }
4056 if (n > m)
4057 i = n - m;
4058 else
4059 i = 0;
4060 for (; i < defcount; i++) {
4061 if (GETLOCAL(m+i) == NULL) {
4062 PyObject *def = defs[i];
4063 Py_INCREF(def);
4064 SETLOCAL(m+i, def);
4065 }
4066 }
4067 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004068
4069 /* Add missing keyword arguments (copy default values from kwdefs) */
Benjamin Petersonb204a422011-06-05 22:04:07 -05004070 if (co->co_kwonlyargcount > 0) {
Victor Stinner17061a92016-08-16 23:39:42 +02004071 Py_ssize_t missing = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05004072 for (i = co->co_argcount; i < total_args; i++) {
4073 PyObject *name;
4074 if (GETLOCAL(i) != NULL)
4075 continue;
4076 name = PyTuple_GET_ITEM(co->co_varnames, i);
4077 if (kwdefs != NULL) {
4078 PyObject *def = PyDict_GetItem(kwdefs, name);
4079 if (def) {
4080 Py_INCREF(def);
4081 SETLOCAL(i, def);
4082 continue;
4083 }
4084 }
Benjamin Petersone109c702011-06-24 09:37:26 -05004085 missing++;
4086 }
4087 if (missing) {
4088 missing_arguments(co, missing, -1, fastlocals);
Benjamin Petersonb204a422011-06-05 22:04:07 -05004089 goto fail;
4090 }
4091 }
4092
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004093 /* Allocate and initialize storage for cell vars, and copy free
Benjamin Peterson90037602011-06-25 22:54:45 -05004094 vars into frame. */
4095 for (i = 0; i < PyTuple_GET_SIZE(co->co_cellvars); ++i) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004096 PyObject *c;
Serhiy Storchaka5bb8b912016-12-16 19:19:02 +02004097 Py_ssize_t arg;
Benjamin Peterson90037602011-06-25 22:54:45 -05004098 /* Possibly account for the cell variable being an argument. */
4099 if (co->co_cell2arg != NULL &&
Guido van Rossum6832c812013-05-10 08:47:42 -07004100 (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG) {
Benjamin Peterson90037602011-06-25 22:54:45 -05004101 c = PyCell_New(GETLOCAL(arg));
Benjamin Peterson159ae412013-05-12 18:16:06 -05004102 /* Clear the local copy. */
4103 SETLOCAL(arg, NULL);
Guido van Rossum6832c812013-05-10 08:47:42 -07004104 }
4105 else {
Benjamin Peterson90037602011-06-25 22:54:45 -05004106 c = PyCell_New(NULL);
Guido van Rossum6832c812013-05-10 08:47:42 -07004107 }
Benjamin Peterson159ae412013-05-12 18:16:06 -05004108 if (c == NULL)
4109 goto fail;
Benjamin Peterson90037602011-06-25 22:54:45 -05004110 SETLOCAL(co->co_nlocals + i, c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004111 }
Victor Stinnerc7020012016-08-16 23:40:29 +02004112
4113 /* Copy closure variables to free variables */
Benjamin Peterson90037602011-06-25 22:54:45 -05004114 for (i = 0; i < PyTuple_GET_SIZE(co->co_freevars); ++i) {
4115 PyObject *o = PyTuple_GET_ITEM(closure, i);
4116 Py_INCREF(o);
4117 freevars[PyTuple_GET_SIZE(co->co_cellvars) + i] = o;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004118 }
Tim Peters5ca576e2001-06-18 22:08:13 +00004119
Yury Selivanoveb636452016-09-08 22:01:51 -07004120 /* Handle generator/coroutine/asynchronous generator */
4121 if (co->co_flags & (CO_GENERATOR | CO_COROUTINE | CO_ASYNC_GENERATOR)) {
Yury Selivanov75445082015-05-11 22:57:16 -04004122 PyObject *gen;
Yury Selivanov94c22632015-06-04 10:16:51 -04004123 PyObject *coro_wrapper = tstate->coroutine_wrapper;
Yury Selivanov5376ba92015-06-22 12:19:30 -04004124 int is_coro = co->co_flags & CO_COROUTINE;
Yury Selivanov94c22632015-06-04 10:16:51 -04004125
4126 if (is_coro && tstate->in_coroutine_wrapper) {
4127 assert(coro_wrapper != NULL);
4128 PyErr_Format(PyExc_RuntimeError,
4129 "coroutine wrapper %.200R attempted "
4130 "to recursively wrap %.200R",
4131 coro_wrapper,
4132 co);
4133 goto fail;
4134 }
Yury Selivanov75445082015-05-11 22:57:16 -04004135
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004136 /* Don't need to keep the reference to f_back, it will be set
4137 * when the generator is resumed. */
Serhiy Storchaka505ff752014-02-09 13:33:53 +02004138 Py_CLEAR(f->f_back);
Neil Schemenauer2b13ce82001-06-21 02:41:10 +00004139
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004140 /* Create a new generator that owns the ready to run frame
4141 * and return that as the value. */
Yury Selivanov5376ba92015-06-22 12:19:30 -04004142 if (is_coro) {
4143 gen = PyCoro_New(f, name, qualname);
Yury Selivanoveb636452016-09-08 22:01:51 -07004144 } else if (co->co_flags & CO_ASYNC_GENERATOR) {
4145 gen = PyAsyncGen_New(f, name, qualname);
Yury Selivanov5376ba92015-06-22 12:19:30 -04004146 } else {
4147 gen = PyGen_NewWithQualName(f, name, qualname);
4148 }
INADA Naoki6a3cedf2016-12-26 18:01:46 +09004149 if (gen == NULL) {
Yury Selivanov75445082015-05-11 22:57:16 -04004150 return NULL;
INADA Naoki6a3cedf2016-12-26 18:01:46 +09004151 }
INADA Naoki9c157762016-12-26 18:52:46 +09004152
INADA Naoki6a3cedf2016-12-26 18:01:46 +09004153 _PyObject_GC_TRACK(f);
Yury Selivanov75445082015-05-11 22:57:16 -04004154
Yury Selivanov94c22632015-06-04 10:16:51 -04004155 if (is_coro && coro_wrapper != NULL) {
4156 PyObject *wrapped;
4157 tstate->in_coroutine_wrapper = 1;
4158 wrapped = PyObject_CallFunction(coro_wrapper, "N", gen);
4159 tstate->in_coroutine_wrapper = 0;
4160 return wrapped;
4161 }
Yury Selivanovaab3c4a2015-06-02 18:43:51 -04004162
Yury Selivanov75445082015-05-11 22:57:16 -04004163 return gen;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004164 }
Tim Peters5ca576e2001-06-18 22:08:13 +00004165
Victor Stinner59a73272016-12-09 18:51:13 +01004166 retval = PyEval_EvalFrameEx(f,0);
Tim Peters5ca576e2001-06-18 22:08:13 +00004167
Thomas Woutersce272b62007-09-19 21:19:28 +00004168fail: /* Jump here from prelude on failure */
Tim Peters5ca576e2001-06-18 22:08:13 +00004169
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004170 /* decref'ing the frame can cause __del__ methods to get invoked,
4171 which can call back into Python. While we're done with the
4172 current Python frame (f), the associated C stack is still in use,
4173 so recursion_depth must be boosted for the duration.
4174 */
4175 assert(tstate != NULL);
INADA Naoki5a625d02016-12-24 20:19:08 +09004176 if (Py_REFCNT(f) > 1) {
4177 Py_DECREF(f);
4178 _PyObject_GC_TRACK(f);
4179 }
4180 else {
4181 ++tstate->recursion_depth;
4182 Py_DECREF(f);
4183 --tstate->recursion_depth;
4184 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004185 return retval;
Tim Peters5ca576e2001-06-18 22:08:13 +00004186}
4187
Victor Stinner40ee3012014-06-16 15:59:28 +02004188PyObject *
4189PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals,
4190 PyObject **args, int argcount, PyObject **kws, int kwcount,
4191 PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure)
4192{
4193 return _PyEval_EvalCodeWithName(_co, globals, locals,
Victor Stinner9be7e7b2016-08-19 16:11:43 +02004194 args, argcount,
Serhiy Storchakab7281052016-09-12 00:52:40 +03004195 kws, kws + 1, kwcount, 2,
Victor Stinner9be7e7b2016-08-19 16:11:43 +02004196 defs, defcount,
4197 kwdefs, closure,
Victor Stinner40ee3012014-06-16 15:59:28 +02004198 NULL, NULL);
4199}
Tim Peters5ca576e2001-06-18 22:08:13 +00004200
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004201static PyObject *
Benjamin Petersonce798522012-01-22 11:24:29 -05004202special_lookup(PyObject *o, _Py_Identifier *id)
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004203{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004204 PyObject *res;
Benjamin Petersonce798522012-01-22 11:24:29 -05004205 res = _PyObject_LookupSpecial(o, id);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004206 if (res == NULL && !PyErr_Occurred()) {
Benjamin Petersonce798522012-01-22 11:24:29 -05004207 PyErr_SetObject(PyExc_AttributeError, id->object);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004208 return NULL;
4209 }
4210 return res;
Benjamin Peterson876b2f22009-06-28 03:18:59 +00004211}
4212
4213
Benjamin Peterson87880242011-07-03 16:48:31 -05004214/* These 3 functions deal with the exception state of generators. */
4215
4216static void
4217save_exc_state(PyThreadState *tstate, PyFrameObject *f)
4218{
4219 PyObject *type, *value, *traceback;
4220 Py_XINCREF(tstate->exc_type);
4221 Py_XINCREF(tstate->exc_value);
4222 Py_XINCREF(tstate->exc_traceback);
4223 type = f->f_exc_type;
4224 value = f->f_exc_value;
4225 traceback = f->f_exc_traceback;
4226 f->f_exc_type = tstate->exc_type;
4227 f->f_exc_value = tstate->exc_value;
4228 f->f_exc_traceback = tstate->exc_traceback;
4229 Py_XDECREF(type);
4230 Py_XDECREF(value);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02004231 Py_XDECREF(traceback);
Benjamin Peterson87880242011-07-03 16:48:31 -05004232}
4233
4234static void
4235swap_exc_state(PyThreadState *tstate, PyFrameObject *f)
4236{
4237 PyObject *tmp;
4238 tmp = tstate->exc_type;
4239 tstate->exc_type = f->f_exc_type;
4240 f->f_exc_type = tmp;
4241 tmp = tstate->exc_value;
4242 tstate->exc_value = f->f_exc_value;
4243 f->f_exc_value = tmp;
4244 tmp = tstate->exc_traceback;
4245 tstate->exc_traceback = f->f_exc_traceback;
4246 f->f_exc_traceback = tmp;
4247}
4248
4249static void
4250restore_and_clear_exc_state(PyThreadState *tstate, PyFrameObject *f)
4251{
4252 PyObject *type, *value, *tb;
4253 type = tstate->exc_type;
4254 value = tstate->exc_value;
4255 tb = tstate->exc_traceback;
4256 tstate->exc_type = f->f_exc_type;
4257 tstate->exc_value = f->f_exc_value;
4258 tstate->exc_traceback = f->f_exc_traceback;
4259 f->f_exc_type = NULL;
4260 f->f_exc_value = NULL;
4261 f->f_exc_traceback = NULL;
4262 Py_XDECREF(type);
4263 Py_XDECREF(value);
4264 Py_XDECREF(tb);
4265}
4266
4267
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00004268/* Logic for the raise statement (too complicated for inlining).
4269 This *consumes* a reference count to each of its arguments. */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04004270static int
Collin Winter828f04a2007-08-31 00:04:24 +00004271do_raise(PyObject *exc, PyObject *cause)
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00004272{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004273 PyObject *type = NULL, *value = NULL;
Collin Winter828f04a2007-08-31 00:04:24 +00004274
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004275 if (exc == NULL) {
4276 /* Reraise */
4277 PyThreadState *tstate = PyThreadState_GET();
4278 PyObject *tb;
4279 type = tstate->exc_type;
4280 value = tstate->exc_value;
4281 tb = tstate->exc_traceback;
Victor Stinnereec93312016-08-18 18:13:10 +02004282 if (type == Py_None || type == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004283 PyErr_SetString(PyExc_RuntimeError,
4284 "No active exception to reraise");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04004285 return 0;
4286 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004287 Py_XINCREF(type);
4288 Py_XINCREF(value);
4289 Py_XINCREF(tb);
4290 PyErr_Restore(type, value, tb);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04004291 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004292 }
Guido van Rossumac7be682001-01-17 15:42:30 +00004293
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004294 /* We support the following forms of raise:
4295 raise
Collin Winter828f04a2007-08-31 00:04:24 +00004296 raise <instance>
4297 raise <type> */
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00004298
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004299 if (PyExceptionClass_Check(exc)) {
4300 type = exc;
Victor Stinnera5ed5f02016-12-06 18:45:50 +01004301 value = _PyObject_CallNoArg(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004302 if (value == NULL)
4303 goto raise_error;
Benjamin Peterson5afa03a2011-07-15 14:09:26 -05004304 if (!PyExceptionInstance_Check(value)) {
4305 PyErr_Format(PyExc_TypeError,
4306 "calling %R should have returned an instance of "
4307 "BaseException, not %R",
4308 type, Py_TYPE(value));
4309 goto raise_error;
4310 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004311 }
4312 else if (PyExceptionInstance_Check(exc)) {
4313 value = exc;
4314 type = PyExceptionInstance_Class(exc);
4315 Py_INCREF(type);
4316 }
4317 else {
4318 /* Not something you can raise. You get an exception
4319 anyway, just not what you specified :-) */
4320 Py_DECREF(exc);
4321 PyErr_SetString(PyExc_TypeError,
4322 "exceptions must derive from BaseException");
4323 goto raise_error;
4324 }
Collin Winter828f04a2007-08-31 00:04:24 +00004325
Serhiy Storchakac0191582016-09-27 11:37:10 +03004326 assert(type != NULL);
4327 assert(value != NULL);
4328
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004329 if (cause) {
4330 PyObject *fixed_cause;
4331 if (PyExceptionClass_Check(cause)) {
Victor Stinnera5ed5f02016-12-06 18:45:50 +01004332 fixed_cause = _PyObject_CallNoArg(cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004333 if (fixed_cause == NULL)
4334 goto raise_error;
Benjamin Petersond5a1c442012-05-14 22:09:31 -07004335 Py_DECREF(cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004336 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07004337 else if (PyExceptionInstance_Check(cause)) {
4338 fixed_cause = cause;
4339 }
4340 else if (cause == Py_None) {
4341 Py_DECREF(cause);
4342 fixed_cause = NULL;
4343 }
4344 else {
4345 PyErr_SetString(PyExc_TypeError,
4346 "exception causes must derive from "
4347 "BaseException");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004348 goto raise_error;
4349 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07004350 PyException_SetCause(value, fixed_cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004351 }
Collin Winter828f04a2007-08-31 00:04:24 +00004352
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004353 PyErr_SetObject(type, value);
4354 /* PyErr_SetObject incref's its arguments */
Serhiy Storchakac0191582016-09-27 11:37:10 +03004355 Py_DECREF(value);
4356 Py_DECREF(type);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04004357 return 0;
Collin Winter828f04a2007-08-31 00:04:24 +00004358
4359raise_error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004360 Py_XDECREF(value);
4361 Py_XDECREF(type);
4362 Py_XDECREF(cause);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04004363 return 0;
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00004364}
4365
Tim Petersd6d010b2001-06-21 02:49:55 +00004366/* Iterate v argcnt times and store the results on the stack (via decreasing
Guido van Rossum0368b722007-05-11 16:50:42 +00004367 sp). Return 1 for success, 0 if error.
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00004368
Guido van Rossum0368b722007-05-11 16:50:42 +00004369 If argcntafter == -1, do a simple unpack. If it is >= 0, do an unpack
4370 with a variable target.
4371*/
Tim Petersd6d010b2001-06-21 02:49:55 +00004372
Barry Warsawe42b18f1997-08-25 22:13:04 +00004373static int
Guido van Rossum0368b722007-05-11 16:50:42 +00004374unpack_iterable(PyObject *v, int argcnt, int argcntafter, PyObject **sp)
Barry Warsawe42b18f1997-08-25 22:13:04 +00004375{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004376 int i = 0, j = 0;
4377 Py_ssize_t ll = 0;
4378 PyObject *it; /* iter(v) */
4379 PyObject *w;
4380 PyObject *l = NULL; /* variable list */
Guido van Rossumac7be682001-01-17 15:42:30 +00004381
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004382 assert(v != NULL);
Tim Petersd6d010b2001-06-21 02:49:55 +00004383
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004384 it = PyObject_GetIter(v);
4385 if (it == NULL)
4386 goto Error;
Tim Petersd6d010b2001-06-21 02:49:55 +00004387
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004388 for (; i < argcnt; i++) {
4389 w = PyIter_Next(it);
4390 if (w == NULL) {
4391 /* Iterator done, via error or exhaustion. */
4392 if (!PyErr_Occurred()) {
R David Murray4171bbe2015-04-15 17:08:45 -04004393 if (argcntafter == -1) {
4394 PyErr_Format(PyExc_ValueError,
4395 "not enough values to unpack (expected %d, got %d)",
4396 argcnt, i);
4397 }
4398 else {
4399 PyErr_Format(PyExc_ValueError,
4400 "not enough values to unpack "
4401 "(expected at least %d, got %d)",
4402 argcnt + argcntafter, i);
4403 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004404 }
4405 goto Error;
4406 }
4407 *--sp = w;
4408 }
Tim Petersd6d010b2001-06-21 02:49:55 +00004409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004410 if (argcntafter == -1) {
4411 /* We better have exhausted the iterator now. */
4412 w = PyIter_Next(it);
4413 if (w == NULL) {
4414 if (PyErr_Occurred())
4415 goto Error;
4416 Py_DECREF(it);
4417 return 1;
4418 }
4419 Py_DECREF(w);
R David Murray4171bbe2015-04-15 17:08:45 -04004420 PyErr_Format(PyExc_ValueError,
4421 "too many values to unpack (expected %d)",
4422 argcnt);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004423 goto Error;
4424 }
Guido van Rossum0368b722007-05-11 16:50:42 +00004425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004426 l = PySequence_List(it);
4427 if (l == NULL)
4428 goto Error;
4429 *--sp = l;
4430 i++;
Guido van Rossum0368b722007-05-11 16:50:42 +00004431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004432 ll = PyList_GET_SIZE(l);
4433 if (ll < argcntafter) {
R David Murray4171bbe2015-04-15 17:08:45 -04004434 PyErr_Format(PyExc_ValueError,
4435 "not enough values to unpack (expected at least %d, got %zd)",
4436 argcnt + argcntafter, argcnt + ll);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004437 goto Error;
4438 }
Guido van Rossum0368b722007-05-11 16:50:42 +00004439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004440 /* Pop the "after-variable" args off the list. */
4441 for (j = argcntafter; j > 0; j--, i++) {
4442 *--sp = PyList_GET_ITEM(l, ll - j);
4443 }
4444 /* Resize the list. */
4445 Py_SIZE(l) = ll - argcntafter;
4446 Py_DECREF(it);
4447 return 1;
Guido van Rossum0368b722007-05-11 16:50:42 +00004448
Tim Petersd6d010b2001-06-21 02:49:55 +00004449Error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004450 for (; i > 0; i--, sp++)
4451 Py_DECREF(*sp);
4452 Py_XDECREF(it);
4453 return 0;
Barry Warsawe42b18f1997-08-25 22:13:04 +00004454}
4455
4456
Guido van Rossum96a42c81992-01-12 02:29:51 +00004457#ifdef LLTRACE
Guido van Rossum3f5da241990-12-20 15:06:42 +00004458static int
Serhiy Storchakaef1585e2015-12-25 20:01:53 +02004459prtrace(PyObject *v, const char *str)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004460{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004461 printf("%s ", str);
4462 if (PyObject_Print(v, stdout, 0) != 0)
4463 PyErr_Clear(); /* Don't know what else to do */
4464 printf("\n");
4465 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004466}
Guido van Rossum3f5da241990-12-20 15:06:42 +00004467#endif
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004468
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00004469static void
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004470call_exc_trace(Py_tracefunc func, PyObject *self,
4471 PyThreadState *tstate, PyFrameObject *f)
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00004472{
Victor Stinneraaa8ed82013-07-10 13:57:55 +02004473 PyObject *type, *value, *traceback, *orig_traceback, *arg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004474 int err;
Antoine Pitrou89335212013-11-23 14:05:23 +01004475 PyErr_Fetch(&type, &value, &orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004476 if (value == NULL) {
4477 value = Py_None;
4478 Py_INCREF(value);
4479 }
Antoine Pitrou89335212013-11-23 14:05:23 +01004480 PyErr_NormalizeException(&type, &value, &orig_traceback);
4481 traceback = (orig_traceback != NULL) ? orig_traceback : Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004482 arg = PyTuple_Pack(3, type, value, traceback);
4483 if (arg == NULL) {
Antoine Pitrou89335212013-11-23 14:05:23 +01004484 PyErr_Restore(type, value, orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004485 return;
4486 }
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004487 err = call_trace(func, self, tstate, f, PyTrace_EXCEPTION, arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004488 Py_DECREF(arg);
4489 if (err == 0)
Victor Stinneraaa8ed82013-07-10 13:57:55 +02004490 PyErr_Restore(type, value, orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004491 else {
4492 Py_XDECREF(type);
4493 Py_XDECREF(value);
Victor Stinneraaa8ed82013-07-10 13:57:55 +02004494 Py_XDECREF(orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004495 }
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00004496}
4497
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +00004498static int
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004499call_trace_protected(Py_tracefunc func, PyObject *obj,
4500 PyThreadState *tstate, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004501 int what, PyObject *arg)
Fred Drake4ec5d562001-10-04 19:26:43 +00004502{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004503 PyObject *type, *value, *traceback;
4504 int err;
4505 PyErr_Fetch(&type, &value, &traceback);
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004506 err = call_trace(func, obj, tstate, frame, what, arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004507 if (err == 0)
4508 {
4509 PyErr_Restore(type, value, traceback);
4510 return 0;
4511 }
4512 else {
4513 Py_XDECREF(type);
4514 Py_XDECREF(value);
4515 Py_XDECREF(traceback);
4516 return -1;
4517 }
Fred Drake4ec5d562001-10-04 19:26:43 +00004518}
4519
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00004520static int
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004521call_trace(Py_tracefunc func, PyObject *obj,
4522 PyThreadState *tstate, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004523 int what, PyObject *arg)
Guido van Rossum96a42c81992-01-12 02:29:51 +00004524{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004525 int result;
4526 if (tstate->tracing)
4527 return 0;
4528 tstate->tracing++;
4529 tstate->use_tracing = 0;
4530 result = func(obj, frame, what, arg);
4531 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
4532 || (tstate->c_profilefunc != NULL));
4533 tstate->tracing--;
4534 return result;
Guido van Rossum96a42c81992-01-12 02:29:51 +00004535}
4536
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00004537PyObject *
4538_PyEval_CallTracing(PyObject *func, PyObject *args)
4539{
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004540 PyThreadState *tstate = PyThreadState_GET();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004541 int save_tracing = tstate->tracing;
4542 int save_use_tracing = tstate->use_tracing;
4543 PyObject *result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00004544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004545 tstate->tracing = 0;
4546 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
4547 || (tstate->c_profilefunc != NULL));
4548 result = PyObject_Call(func, args, NULL);
4549 tstate->tracing = save_tracing;
4550 tstate->use_tracing = save_use_tracing;
4551 return result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00004552}
4553
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +00004554/* See Objects/lnotab_notes.txt for a description of how tracing works. */
Michael W. Hudson006c7522002-11-08 13:08:46 +00004555static int
Tim Peters8a5c3c72004-04-05 19:36:21 +00004556maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004557 PyThreadState *tstate, PyFrameObject *frame,
4558 int *instr_lb, int *instr_ub, int *instr_prev)
Michael W. Hudsondd32a912002-08-15 14:59:02 +00004559{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004560 int result = 0;
4561 int line = frame->f_lineno;
Michael W. Hudson006c7522002-11-08 13:08:46 +00004562
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004563 /* If the last instruction executed isn't in the current
4564 instruction window, reset the window.
4565 */
4566 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) {
4567 PyAddrPair bounds;
4568 line = _PyCode_CheckLineNumber(frame->f_code, frame->f_lasti,
4569 &bounds);
4570 *instr_lb = bounds.ap_lower;
4571 *instr_ub = bounds.ap_upper;
4572 }
4573 /* If the last instruction falls at the start of a line or if
4574 it represents a jump backwards, update the frame's line
4575 number and call the trace function. */
4576 if (frame->f_lasti == *instr_lb || frame->f_lasti < *instr_prev) {
4577 frame->f_lineno = line;
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004578 result = call_trace(func, obj, tstate, frame, PyTrace_LINE, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004579 }
4580 *instr_prev = frame->f_lasti;
4581 return result;
Michael W. Hudsondd32a912002-08-15 14:59:02 +00004582}
4583
Fred Drake5755ce62001-06-27 19:19:46 +00004584void
4585PyEval_SetProfile(Py_tracefunc func, PyObject *arg)
Fred Draked0838392001-06-16 21:02:31 +00004586{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004587 PyThreadState *tstate = PyThreadState_GET();
4588 PyObject *temp = tstate->c_profileobj;
4589 Py_XINCREF(arg);
4590 tstate->c_profilefunc = NULL;
4591 tstate->c_profileobj = NULL;
4592 /* Must make sure that tracing is not ignored if 'temp' is freed */
4593 tstate->use_tracing = tstate->c_tracefunc != NULL;
4594 Py_XDECREF(temp);
4595 tstate->c_profilefunc = func;
4596 tstate->c_profileobj = arg;
4597 /* Flag that tracing or profiling is turned on */
4598 tstate->use_tracing = (func != NULL) || (tstate->c_tracefunc != NULL);
Fred Drake5755ce62001-06-27 19:19:46 +00004599}
4600
4601void
4602PyEval_SetTrace(Py_tracefunc func, PyObject *arg)
4603{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004604 PyThreadState *tstate = PyThreadState_GET();
4605 PyObject *temp = tstate->c_traceobj;
4606 _Py_TracingPossible += (func != NULL) - (tstate->c_tracefunc != NULL);
4607 Py_XINCREF(arg);
4608 tstate->c_tracefunc = NULL;
4609 tstate->c_traceobj = NULL;
4610 /* Must make sure that profiling is not ignored if 'temp' is freed */
4611 tstate->use_tracing = tstate->c_profilefunc != NULL;
4612 Py_XDECREF(temp);
4613 tstate->c_tracefunc = func;
4614 tstate->c_traceobj = arg;
4615 /* Flag that tracing or profiling is turned on */
4616 tstate->use_tracing = ((func != NULL)
4617 || (tstate->c_profilefunc != NULL));
Fred Draked0838392001-06-16 21:02:31 +00004618}
4619
Yury Selivanov75445082015-05-11 22:57:16 -04004620void
Yury Selivanovd8cf3822015-06-01 12:15:23 -04004621_PyEval_SetCoroutineWrapper(PyObject *wrapper)
Yury Selivanov75445082015-05-11 22:57:16 -04004622{
4623 PyThreadState *tstate = PyThreadState_GET();
4624
Yury Selivanov75445082015-05-11 22:57:16 -04004625 Py_XINCREF(wrapper);
Serhiy Storchaka48842712016-04-06 09:45:48 +03004626 Py_XSETREF(tstate->coroutine_wrapper, wrapper);
Yury Selivanov75445082015-05-11 22:57:16 -04004627}
4628
4629PyObject *
Yury Selivanovd8cf3822015-06-01 12:15:23 -04004630_PyEval_GetCoroutineWrapper(void)
Yury Selivanov75445082015-05-11 22:57:16 -04004631{
4632 PyThreadState *tstate = PyThreadState_GET();
4633 return tstate->coroutine_wrapper;
4634}
4635
Yury Selivanoveb636452016-09-08 22:01:51 -07004636void
4637_PyEval_SetAsyncGenFirstiter(PyObject *firstiter)
4638{
4639 PyThreadState *tstate = PyThreadState_GET();
4640
4641 Py_XINCREF(firstiter);
4642 Py_XSETREF(tstate->async_gen_firstiter, firstiter);
4643}
4644
4645PyObject *
4646_PyEval_GetAsyncGenFirstiter(void)
4647{
4648 PyThreadState *tstate = PyThreadState_GET();
4649 return tstate->async_gen_firstiter;
4650}
4651
4652void
4653_PyEval_SetAsyncGenFinalizer(PyObject *finalizer)
4654{
4655 PyThreadState *tstate = PyThreadState_GET();
4656
4657 Py_XINCREF(finalizer);
4658 Py_XSETREF(tstate->async_gen_finalizer, finalizer);
4659}
4660
4661PyObject *
4662_PyEval_GetAsyncGenFinalizer(void)
4663{
4664 PyThreadState *tstate = PyThreadState_GET();
4665 return tstate->async_gen_finalizer;
4666}
4667
Guido van Rossumb209a111997-04-29 18:18:01 +00004668PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004669PyEval_GetBuiltins(void)
Guido van Rossum6135a871995-01-09 17:53:26 +00004670{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004671 PyFrameObject *current_frame = PyEval_GetFrame();
4672 if (current_frame == NULL)
4673 return PyThreadState_GET()->interp->builtins;
4674 else
4675 return current_frame->f_builtins;
Guido van Rossum6135a871995-01-09 17:53:26 +00004676}
4677
Guido van Rossumb209a111997-04-29 18:18:01 +00004678PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004679PyEval_GetLocals(void)
Guido van Rossum5b722181993-03-30 17:46:03 +00004680{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004681 PyFrameObject *current_frame = PyEval_GetFrame();
Victor Stinner41bb43a2013-10-29 01:19:37 +01004682 if (current_frame == NULL) {
4683 PyErr_SetString(PyExc_SystemError, "frame does not exist");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004684 return NULL;
Victor Stinner41bb43a2013-10-29 01:19:37 +01004685 }
4686
4687 if (PyFrame_FastToLocalsWithError(current_frame) < 0)
4688 return NULL;
4689
4690 assert(current_frame->f_locals != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004691 return current_frame->f_locals;
Guido van Rossum5b722181993-03-30 17:46:03 +00004692}
4693
Guido van Rossumb209a111997-04-29 18:18:01 +00004694PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004695PyEval_GetGlobals(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +00004696{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004697 PyFrameObject *current_frame = PyEval_GetFrame();
4698 if (current_frame == NULL)
4699 return NULL;
Victor Stinner41bb43a2013-10-29 01:19:37 +01004700
4701 assert(current_frame->f_globals != NULL);
4702 return current_frame->f_globals;
Guido van Rossum3f5da241990-12-20 15:06:42 +00004703}
4704
Guido van Rossum6297a7a2003-02-19 15:53:17 +00004705PyFrameObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004706PyEval_GetFrame(void)
Guido van Rossume59214e1994-08-30 08:01:59 +00004707{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004708 PyThreadState *tstate = PyThreadState_GET();
4709 return _PyThreadState_GetFrame(tstate);
Guido van Rossume59214e1994-08-30 08:01:59 +00004710}
4711
Guido van Rossum6135a871995-01-09 17:53:26 +00004712int
Tim Peters5ba58662001-07-16 02:29:45 +00004713PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
Jeremy Hylton061d1062001-03-22 02:32:48 +00004714{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004715 PyFrameObject *current_frame = PyEval_GetFrame();
4716 int result = cf->cf_flags != 0;
Tim Peters5ba58662001-07-16 02:29:45 +00004717
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004718 if (current_frame != NULL) {
4719 const int codeflags = current_frame->f_code->co_flags;
4720 const int compilerflags = codeflags & PyCF_MASK;
4721 if (compilerflags) {
4722 result = 1;
4723 cf->cf_flags |= compilerflags;
4724 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00004725#if 0 /* future keyword */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004726 if (codeflags & CO_GENERATOR_ALLOWED) {
4727 result = 1;
4728 cf->cf_flags |= CO_GENERATOR_ALLOWED;
4729 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00004730#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004731 }
4732 return result;
Jeremy Hylton061d1062001-03-22 02:32:48 +00004733}
4734
Guido van Rossum3f5da241990-12-20 15:06:42 +00004735
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00004736const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00004737PyEval_GetFuncName(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00004738{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004739 if (PyMethod_Check(func))
4740 return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func));
4741 else if (PyFunction_Check(func))
Serhiy Storchaka06515832016-11-20 09:13:07 +02004742 return PyUnicode_AsUTF8(((PyFunctionObject*)func)->func_name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004743 else if (PyCFunction_Check(func))
4744 return ((PyCFunctionObject*)func)->m_ml->ml_name;
4745 else
4746 return func->ob_type->tp_name;
Jeremy Hylton512a2372001-04-11 13:52:29 +00004747}
4748
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00004749const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00004750PyEval_GetFuncDesc(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00004751{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004752 if (PyMethod_Check(func))
4753 return "()";
4754 else if (PyFunction_Check(func))
4755 return "()";
4756 else if (PyCFunction_Check(func))
4757 return "()";
4758 else
4759 return " object";
Jeremy Hylton512a2372001-04-11 13:52:29 +00004760}
4761
Armin Rigo1c2d7e52005-09-20 18:34:01 +00004762#define C_TRACE(x, call) \
Nicholas Bastind858a772004-06-25 23:31:06 +00004763if (tstate->use_tracing && tstate->c_profilefunc) { \
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004764 if (call_trace(tstate->c_profilefunc, tstate->c_profileobj, \
4765 tstate, tstate->frame, \
4766 PyTrace_C_CALL, func)) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004767 x = NULL; \
4768 } \
4769 else { \
4770 x = call; \
4771 if (tstate->c_profilefunc != NULL) { \
4772 if (x == NULL) { \
4773 call_trace_protected(tstate->c_profilefunc, \
4774 tstate->c_profileobj, \
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004775 tstate, tstate->frame, \
4776 PyTrace_C_EXCEPTION, func); \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004777 /* XXX should pass (type, value, tb) */ \
4778 } else { \
4779 if (call_trace(tstate->c_profilefunc, \
4780 tstate->c_profileobj, \
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004781 tstate, tstate->frame, \
4782 PyTrace_C_RETURN, func)) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004783 Py_DECREF(x); \
4784 x = NULL; \
4785 } \
4786 } \
4787 } \
4788 } \
Nicholas Bastind858a772004-06-25 23:31:06 +00004789} else { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004790 x = call; \
4791 }
Nicholas Bastinc69ebe82004-03-24 21:57:10 +00004792
Victor Stinner415c5102017-01-11 00:54:57 +01004793/* Issue #29227: Inline call_function() into _PyEval_EvalFrameDefault()
4794 to reduce the stack consumption. */
4795Py_LOCAL_INLINE(PyObject *) _Py_HOT_FUNCTION
Benjamin Peterson4fd64b92016-09-09 14:57:58 -07004796call_function(PyObject ***pp_stack, Py_ssize_t oparg, PyObject *kwnames)
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004797{
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004798 PyObject **pfunc = (*pp_stack) - oparg - 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004799 PyObject *func = *pfunc;
4800 PyObject *x, *w;
Victor Stinnerd8735722016-09-09 12:36:44 -07004801 Py_ssize_t nkwargs = (kwnames == NULL) ? 0 : PyTuple_GET_SIZE(kwnames);
4802 Py_ssize_t nargs = oparg - nkwargs;
INADA Naoki5566bbb2017-02-03 07:43:03 +09004803 PyObject **stack = (*pp_stack) - nargs - nkwargs;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004804
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004805 /* Always dispatch PyCFunction first, because these are
4806 presumed to be the most frequent callable object.
4807 */
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004808 if (PyCFunction_Check(func)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004809 PyThreadState *tstate = PyThreadState_GET();
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004810 C_TRACE(x, _PyCFunction_FastCallKeywords(func, stack, nargs, kwnames));
Victor Stinner4a7cc882015-03-06 23:35:27 +01004811 }
INADA Naoki5566bbb2017-02-03 07:43:03 +09004812 else if (Py_TYPE(func) == &PyMethodDescr_Type) {
4813 PyThreadState *tstate = PyThreadState_GET();
INADA Naoki93fac8d2017-03-07 14:24:37 +09004814 if (tstate->use_tracing && tstate->c_profilefunc) {
4815 // We need to create PyCFunctionObject for tracing.
4816 PyMethodDescrObject *descr = (PyMethodDescrObject*)func;
4817 func = PyCFunction_NewEx(descr->d_method, stack[0], NULL);
4818 if (func == NULL) {
4819 return NULL;
4820 }
4821 C_TRACE(x, _PyCFunction_FastCallKeywords(func, stack+1, nargs-1,
4822 kwnames));
4823 Py_DECREF(func);
4824 }
4825 else {
4826 x = _PyMethodDescr_FastCallKeywords(func, stack, nargs, kwnames);
4827 }
INADA Naoki5566bbb2017-02-03 07:43:03 +09004828 }
Victor Stinner4a7cc882015-03-06 23:35:27 +01004829 else {
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004830 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) {
Victor Stinnerb69ee8c2016-11-28 18:32:31 +01004831 /* Optimize access to bound methods. Reuse the Python stack
4832 to pass 'self' as the first argument, replace 'func'
4833 with 'self'. It avoids the creation of a new temporary tuple
4834 for arguments (to replace func with self) when the method uses
4835 FASTCALL. */
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004836 PyObject *self = PyMethod_GET_SELF(func);
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004837 Py_INCREF(self);
4838 func = PyMethod_GET_FUNCTION(func);
4839 Py_INCREF(func);
4840 Py_SETREF(*pfunc, self);
4841 nargs++;
INADA Naoki5566bbb2017-02-03 07:43:03 +09004842 stack--;
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004843 }
4844 else {
4845 Py_INCREF(func);
4846 }
Victor Stinnerd8735722016-09-09 12:36:44 -07004847
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004848 if (PyFunction_Check(func)) {
Victor Stinnerc22bfaa2017-02-12 19:27:05 +01004849 x = _PyFunction_FastCallKeywords(func, stack, nargs, kwnames);
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004850 }
4851 else {
4852 x = _PyObject_FastCallKeywords(func, stack, nargs, kwnames);
4853 }
Victor Stinnerae8b69c2016-09-09 14:07:44 -07004854 Py_DECREF(func);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004855 }
Tim Peters8a5c3c72004-04-05 19:36:21 +00004856
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004857 assert((x != NULL) ^ (PyErr_Occurred() != NULL));
4858
Victor Stinnerc22bfaa2017-02-12 19:27:05 +01004859 /* Clear the stack of the function object. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004860 while ((*pp_stack) > pfunc) {
4861 w = EXT_POP(*pp_stack);
4862 Py_DECREF(w);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004863 }
Victor Stinnerace47d72013-07-18 01:41:08 +02004864
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004865 return x;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004866}
4867
Jeremy Hylton52820442001-01-03 23:52:36 +00004868static PyObject *
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004869do_call_core(PyObject *func, PyObject *callargs, PyObject *kwdict)
Jeremy Hylton52820442001-01-03 23:52:36 +00004870{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004871 if (PyCFunction_Check(func)) {
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004872 PyObject *result;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004873 PyThreadState *tstate = PyThreadState_GET();
4874 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004875 return result;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004876 }
Victor Stinner74319ae2016-08-25 00:04:09 +02004877 else {
Victor Stinnerf9b760f2016-09-09 10:17:08 -07004878 return PyObject_Call(func, callargs, kwdict);
Victor Stinner74319ae2016-08-25 00:04:09 +02004879 }
Jeremy Hylton52820442001-01-03 23:52:36 +00004880}
4881
Serhiy Storchaka483405b2015-02-17 10:14:30 +02004882/* Extract a slice index from a PyLong or an object with the
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004883 nb_index slot defined, and store in *pi.
4884 Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
Xiang Zhang2ddf5a12017-05-10 18:19:41 +08004885 and silently boost values less than PY_SSIZE_T_MIN to PY_SSIZE_T_MIN.
Martin v. Löwisdde99d22006-02-17 15:57:41 +00004886 Return 0 on error, 1 on success.
Tim Peterscb479e72001-12-16 19:11:44 +00004887*/
Guido van Rossum20c6add2000-05-08 14:06:50 +00004888int
Martin v. Löwis18e16552006-02-15 17:27:45 +00004889_PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004890{
Serhiy Storchakad4edfc92017-03-30 18:29:23 +03004891 if (v != Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004892 Py_ssize_t x;
4893 if (PyIndex_Check(v)) {
4894 x = PyNumber_AsSsize_t(v, NULL);
4895 if (x == -1 && PyErr_Occurred())
4896 return 0;
4897 }
4898 else {
4899 PyErr_SetString(PyExc_TypeError,
4900 "slice indices must be integers or "
4901 "None or have an __index__ method");
4902 return 0;
4903 }
4904 *pi = x;
4905 }
4906 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004907}
4908
Serhiy Storchaka80ec8362017-03-19 19:37:40 +02004909int
Serhiy Storchakad4edfc92017-03-30 18:29:23 +03004910_PyEval_SliceIndexNotNone(PyObject *v, Py_ssize_t *pi)
Serhiy Storchaka80ec8362017-03-19 19:37:40 +02004911{
Serhiy Storchakad4edfc92017-03-30 18:29:23 +03004912 Py_ssize_t x;
4913 if (PyIndex_Check(v)) {
4914 x = PyNumber_AsSsize_t(v, NULL);
4915 if (x == -1 && PyErr_Occurred())
4916 return 0;
4917 }
4918 else {
4919 PyErr_SetString(PyExc_TypeError,
4920 "slice indices must be integers or "
4921 "have an __index__ method");
4922 return 0;
4923 }
4924 *pi = x;
4925 return 1;
Serhiy Storchaka80ec8362017-03-19 19:37:40 +02004926}
4927
4928
Guido van Rossum486364b2007-06-30 05:01:58 +00004929#define CANNOT_CATCH_MSG "catching classes that do not inherit from "\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004930 "BaseException is not allowed"
Brett Cannonf74225d2007-02-26 21:10:16 +00004931
Guido van Rossumb209a111997-04-29 18:18:01 +00004932static PyObject *
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02004933cmp_outcome(int op, PyObject *v, PyObject *w)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004934{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004935 int res = 0;
4936 switch (op) {
4937 case PyCmp_IS:
4938 res = (v == w);
4939 break;
4940 case PyCmp_IS_NOT:
4941 res = (v != w);
4942 break;
4943 case PyCmp_IN:
4944 res = PySequence_Contains(w, v);
4945 if (res < 0)
4946 return NULL;
4947 break;
4948 case PyCmp_NOT_IN:
4949 res = PySequence_Contains(w, v);
4950 if (res < 0)
4951 return NULL;
4952 res = !res;
4953 break;
4954 case PyCmp_EXC_MATCH:
4955 if (PyTuple_Check(w)) {
4956 Py_ssize_t i, length;
4957 length = PyTuple_Size(w);
4958 for (i = 0; i < length; i += 1) {
4959 PyObject *exc = PyTuple_GET_ITEM(w, i);
4960 if (!PyExceptionClass_Check(exc)) {
4961 PyErr_SetString(PyExc_TypeError,
4962 CANNOT_CATCH_MSG);
4963 return NULL;
4964 }
4965 }
4966 }
4967 else {
4968 if (!PyExceptionClass_Check(w)) {
4969 PyErr_SetString(PyExc_TypeError,
4970 CANNOT_CATCH_MSG);
4971 return NULL;
4972 }
4973 }
4974 res = PyErr_GivenExceptionMatches(v, w);
4975 break;
4976 default:
4977 return PyObject_RichCompare(v, w, op);
4978 }
4979 v = res ? Py_True : Py_False;
4980 Py_INCREF(v);
4981 return v;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004982}
4983
Thomas Wouters52152252000-08-17 22:55:00 +00004984static PyObject *
Serhiy Storchaka133138a2016-08-02 22:51:21 +03004985import_name(PyFrameObject *f, PyObject *name, PyObject *fromlist, PyObject *level)
4986{
4987 _Py_IDENTIFIER(__import__);
Victor Stinnerdf142fd2016-08-20 00:44:42 +02004988 PyObject *import_func, *res;
4989 PyObject* stack[5];
Serhiy Storchaka133138a2016-08-02 22:51:21 +03004990
4991 import_func = _PyDict_GetItemId(f->f_builtins, &PyId___import__);
4992 if (import_func == NULL) {
4993 PyErr_SetString(PyExc_ImportError, "__import__ not found");
4994 return NULL;
4995 }
4996
4997 /* Fast path for not overloaded __import__. */
4998 if (import_func == PyThreadState_GET()->interp->import_func) {
4999 int ilevel = _PyLong_AsInt(level);
5000 if (ilevel == -1 && PyErr_Occurred()) {
5001 return NULL;
5002 }
5003 res = PyImport_ImportModuleLevelObject(
5004 name,
5005 f->f_globals,
5006 f->f_locals == NULL ? Py_None : f->f_locals,
5007 fromlist,
5008 ilevel);
5009 return res;
5010 }
5011
5012 Py_INCREF(import_func);
Victor Stinnerdf142fd2016-08-20 00:44:42 +02005013
5014 stack[0] = name;
5015 stack[1] = f->f_globals;
5016 stack[2] = f->f_locals == NULL ? Py_None : f->f_locals;
5017 stack[3] = fromlist;
5018 stack[4] = level;
Victor Stinner559bb6a2016-08-22 22:48:54 +02005019 res = _PyObject_FastCall(import_func, stack, 5);
Serhiy Storchaka133138a2016-08-02 22:51:21 +03005020 Py_DECREF(import_func);
5021 return res;
5022}
5023
5024static PyObject *
Thomas Wouters52152252000-08-17 22:55:00 +00005025import_from(PyObject *v, PyObject *name)
Guido van Rossume9736fc1990-11-18 17:33:06 +00005026{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005027 PyObject *x;
Antoine Pitrou0373a102014-10-13 20:19:45 +02005028 _Py_IDENTIFIER(__name__);
Xiang Zhang4830f582017-03-21 11:13:42 +08005029 PyObject *fullmodname, *pkgname, *pkgpath, *pkgname_or_unknown, *errmsg;
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00005030
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005031 x = PyObject_GetAttr(v, name);
Antoine Pitrou0373a102014-10-13 20:19:45 +02005032 if (x != NULL || !PyErr_ExceptionMatches(PyExc_AttributeError))
5033 return x;
5034 /* Issue #17636: in case this failed because of a circular relative
5035 import, try to fallback on reading the module directly from
5036 sys.modules. */
5037 PyErr_Clear();
5038 pkgname = _PyObject_GetAttrId(v, &PyId___name__);
Brett Cannon3008bc02015-08-11 18:01:31 -07005039 if (pkgname == NULL) {
5040 goto error;
5041 }
Antoine Pitrou0373a102014-10-13 20:19:45 +02005042 fullmodname = PyUnicode_FromFormat("%U.%U", pkgname, name);
Brett Cannon3008bc02015-08-11 18:01:31 -07005043 if (fullmodname == NULL) {
Xiang Zhang4830f582017-03-21 11:13:42 +08005044 Py_DECREF(pkgname);
Antoine Pitrou0373a102014-10-13 20:19:45 +02005045 return NULL;
Brett Cannon3008bc02015-08-11 18:01:31 -07005046 }
Antoine Pitrou0373a102014-10-13 20:19:45 +02005047 x = PyDict_GetItem(PyImport_GetModuleDict(), fullmodname);
Antoine Pitrou0373a102014-10-13 20:19:45 +02005048 Py_DECREF(fullmodname);
Brett Cannon3008bc02015-08-11 18:01:31 -07005049 if (x == NULL) {
5050 goto error;
5051 }
Matthias Bussonnier1bc15642017-02-22 07:06:50 -08005052 Py_DECREF(pkgname);
Brett Cannon3008bc02015-08-11 18:01:31 -07005053 Py_INCREF(x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005054 return x;
Brett Cannon3008bc02015-08-11 18:01:31 -07005055 error:
Matthias Bussonnierbc4bed42017-02-14 16:05:25 -08005056 pkgpath = PyModule_GetFilenameObject(v);
Matthias Bussonnier1bc15642017-02-22 07:06:50 -08005057 if (pkgname == NULL) {
5058 pkgname_or_unknown = PyUnicode_FromString("<unknown module name>");
5059 if (pkgname_or_unknown == NULL) {
5060 Py_XDECREF(pkgpath);
5061 return NULL;
5062 }
5063 } else {
5064 pkgname_or_unknown = pkgname;
5065 }
Matthias Bussonnierbc4bed42017-02-14 16:05:25 -08005066
5067 if (pkgpath == NULL || !PyUnicode_Check(pkgpath)) {
5068 PyErr_Clear();
Xiang Zhang4830f582017-03-21 11:13:42 +08005069 errmsg = PyUnicode_FromFormat(
5070 "cannot import name %R from %R (unknown location)",
5071 name, pkgname_or_unknown
5072 );
5073 /* NULL check for errmsg done by PyErr_SetImportError. */
5074 PyErr_SetImportError(errmsg, pkgname, NULL);
5075 }
5076 else {
5077 errmsg = PyUnicode_FromFormat(
5078 "cannot import name %R from %R (%S)",
5079 name, pkgname_or_unknown, pkgpath
5080 );
5081 /* NULL check for errmsg done by PyErr_SetImportError. */
5082 PyErr_SetImportError(errmsg, pkgname, pkgpath);
Matthias Bussonnierbc4bed42017-02-14 16:05:25 -08005083 }
5084
Xiang Zhang4830f582017-03-21 11:13:42 +08005085 Py_XDECREF(errmsg);
Matthias Bussonnier1bc15642017-02-22 07:06:50 -08005086 Py_XDECREF(pkgname_or_unknown);
5087 Py_XDECREF(pkgpath);
Brett Cannon3008bc02015-08-11 18:01:31 -07005088 return NULL;
Thomas Wouters52152252000-08-17 22:55:00 +00005089}
Guido van Rossumac7be682001-01-17 15:42:30 +00005090
Thomas Wouters52152252000-08-17 22:55:00 +00005091static int
5092import_all_from(PyObject *locals, PyObject *v)
5093{
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02005094 _Py_IDENTIFIER(__all__);
5095 _Py_IDENTIFIER(__dict__);
5096 PyObject *all = _PyObject_GetAttrId(v, &PyId___all__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005097 PyObject *dict, *name, *value;
5098 int skip_leading_underscores = 0;
5099 int pos, err;
Thomas Wouters52152252000-08-17 22:55:00 +00005100
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005101 if (all == NULL) {
5102 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
5103 return -1; /* Unexpected error */
5104 PyErr_Clear();
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02005105 dict = _PyObject_GetAttrId(v, &PyId___dict__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005106 if (dict == NULL) {
5107 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
5108 return -1;
5109 PyErr_SetString(PyExc_ImportError,
5110 "from-import-* object has no __dict__ and no __all__");
5111 return -1;
5112 }
5113 all = PyMapping_Keys(dict);
5114 Py_DECREF(dict);
5115 if (all == NULL)
5116 return -1;
5117 skip_leading_underscores = 1;
5118 }
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00005119
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005120 for (pos = 0, err = 0; ; pos++) {
5121 name = PySequence_GetItem(all, pos);
5122 if (name == NULL) {
5123 if (!PyErr_ExceptionMatches(PyExc_IndexError))
5124 err = -1;
5125 else
5126 PyErr_Clear();
5127 break;
5128 }
5129 if (skip_leading_underscores &&
5130 PyUnicode_Check(name) &&
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02005131 PyUnicode_READY(name) != -1 &&
5132 PyUnicode_READ_CHAR(name, 0) == '_')
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005133 {
5134 Py_DECREF(name);
5135 continue;
5136 }
5137 value = PyObject_GetAttr(v, name);
5138 if (value == NULL)
5139 err = -1;
5140 else if (PyDict_CheckExact(locals))
5141 err = PyDict_SetItem(locals, name, value);
5142 else
5143 err = PyObject_SetItem(locals, name, value);
5144 Py_DECREF(name);
5145 Py_XDECREF(value);
5146 if (err != 0)
5147 break;
5148 }
5149 Py_DECREF(all);
5150 return err;
Guido van Rossume9736fc1990-11-18 17:33:06 +00005151}
5152
Guido van Rossumac7be682001-01-17 15:42:30 +00005153static void
Neal Norwitzda059e32007-08-26 05:33:45 +00005154format_exc_check_arg(PyObject *exc, const char *format_str, PyObject *obj)
Paul Prescode68140d2000-08-30 20:25:01 +00005155{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005156 const char *obj_str;
Paul Prescode68140d2000-08-30 20:25:01 +00005157
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005158 if (!obj)
5159 return;
Paul Prescode68140d2000-08-30 20:25:01 +00005160
Serhiy Storchaka06515832016-11-20 09:13:07 +02005161 obj_str = PyUnicode_AsUTF8(obj);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005162 if (!obj_str)
5163 return;
Paul Prescode68140d2000-08-30 20:25:01 +00005164
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005165 PyErr_Format(exc, format_str, obj_str);
Paul Prescode68140d2000-08-30 20:25:01 +00005166}
Guido van Rossum950361c1997-01-24 13:49:28 +00005167
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00005168static void
5169format_exc_unbound(PyCodeObject *co, int oparg)
5170{
5171 PyObject *name;
5172 /* Don't stomp existing exception */
5173 if (PyErr_Occurred())
5174 return;
5175 if (oparg < PyTuple_GET_SIZE(co->co_cellvars)) {
5176 name = PyTuple_GET_ITEM(co->co_cellvars,
5177 oparg);
5178 format_exc_check_arg(
5179 PyExc_UnboundLocalError,
5180 UNBOUNDLOCAL_ERROR_MSG,
5181 name);
5182 } else {
5183 name = PyTuple_GET_ITEM(co->co_freevars, oparg -
5184 PyTuple_GET_SIZE(co->co_cellvars));
5185 format_exc_check_arg(PyExc_NameError,
5186 UNBOUNDFREE_ERROR_MSG, name);
5187 }
5188}
5189
Victor Stinnerd2a915d2011-10-02 20:34:20 +02005190static PyObject *
5191unicode_concatenate(PyObject *v, PyObject *w,
Serhiy Storchakaab874002016-09-11 13:48:15 +03005192 PyFrameObject *f, const _Py_CODEUNIT *next_instr)
Victor Stinnerd2a915d2011-10-02 20:34:20 +02005193{
5194 PyObject *res;
5195 if (Py_REFCNT(v) == 2) {
5196 /* In the common case, there are 2 references to the value
5197 * stored in 'variable' when the += is performed: one on the
5198 * value stack (in 'v') and one still stored in the
5199 * 'variable'. We try to delete the variable now to reduce
5200 * the refcnt to 1.
5201 */
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +03005202 int opcode, oparg;
5203 NEXTOPARG();
5204 switch (opcode) {
Victor Stinnerd2a915d2011-10-02 20:34:20 +02005205 case STORE_FAST:
5206 {
Victor Stinnerd2a915d2011-10-02 20:34:20 +02005207 PyObject **fastlocals = f->f_localsplus;
5208 if (GETLOCAL(oparg) == v)
5209 SETLOCAL(oparg, NULL);
5210 break;
5211 }
5212 case STORE_DEREF:
5213 {
5214 PyObject **freevars = (f->f_localsplus +
5215 f->f_code->co_nlocals);
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +03005216 PyObject *c = freevars[oparg];
Raymond Hettingerc32f9db2016-11-12 04:10:35 -05005217 if (PyCell_GET(c) == v) {
5218 PyCell_SET(c, NULL);
5219 Py_DECREF(v);
5220 }
Victor Stinnerd2a915d2011-10-02 20:34:20 +02005221 break;
5222 }
5223 case STORE_NAME:
5224 {
5225 PyObject *names = f->f_code->co_names;
Serhiy Storchakaf60bf5f2016-05-25 20:02:01 +03005226 PyObject *name = GETITEM(names, oparg);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02005227 PyObject *locals = f->f_locals;
5228 if (PyDict_CheckExact(locals) &&
5229 PyDict_GetItem(locals, name) == v) {
5230 if (PyDict_DelItem(locals, name) != 0) {
5231 PyErr_Clear();
5232 }
5233 }
5234 break;
5235 }
5236 }
5237 }
5238 res = v;
5239 PyUnicode_Append(&res, w);
5240 return res;
5241}
5242
Guido van Rossum950361c1997-01-24 13:49:28 +00005243#ifdef DYNAMIC_EXECUTION_PROFILE
5244
Skip Montanarof118cb12001-10-15 20:51:38 +00005245static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00005246getarray(long a[256])
Guido van Rossum950361c1997-01-24 13:49:28 +00005247{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005248 int i;
5249 PyObject *l = PyList_New(256);
5250 if (l == NULL) return NULL;
5251 for (i = 0; i < 256; i++) {
5252 PyObject *x = PyLong_FromLong(a[i]);
5253 if (x == NULL) {
5254 Py_DECREF(l);
5255 return NULL;
5256 }
5257 PyList_SetItem(l, i, x);
5258 }
5259 for (i = 0; i < 256; i++)
5260 a[i] = 0;
5261 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00005262}
5263
5264PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00005265_Py_GetDXProfile(PyObject *self, PyObject *args)
Guido van Rossum950361c1997-01-24 13:49:28 +00005266{
5267#ifndef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005268 return getarray(dxp);
Guido van Rossum950361c1997-01-24 13:49:28 +00005269#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00005270 int i;
5271 PyObject *l = PyList_New(257);
5272 if (l == NULL) return NULL;
5273 for (i = 0; i < 257; i++) {
5274 PyObject *x = getarray(dxpairs[i]);
5275 if (x == NULL) {
5276 Py_DECREF(l);
5277 return NULL;
5278 }
5279 PyList_SetItem(l, i, x);
5280 }
5281 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00005282#endif
5283}
5284
5285#endif
Brett Cannon5c4de282016-09-07 11:16:41 -07005286
5287Py_ssize_t
5288_PyEval_RequestCodeExtraIndex(freefunc free)
5289{
Dino Viehlandf3cffd22017-06-21 14:44:36 -07005290 PyInterpreterState *interp = PyThreadState_Get()->interp;
Brett Cannon5c4de282016-09-07 11:16:41 -07005291 Py_ssize_t new_index;
5292
Dino Viehlandf3cffd22017-06-21 14:44:36 -07005293 if (interp->co_extra_user_count == MAX_CO_EXTRA_USERS - 1) {
Brett Cannon5c4de282016-09-07 11:16:41 -07005294 return -1;
5295 }
Dino Viehlandf3cffd22017-06-21 14:44:36 -07005296 new_index = interp->co_extra_user_count++;
5297 interp->co_extra_freefuncs[new_index] = free;
Brett Cannon5c4de282016-09-07 11:16:41 -07005298 return new_index;
5299}
Łukasz Langaa785c872016-09-09 17:37:37 -07005300
5301static void
5302dtrace_function_entry(PyFrameObject *f)
5303{
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +02005304 const char *filename;
5305 const char *funcname;
Łukasz Langaa785c872016-09-09 17:37:37 -07005306 int lineno;
5307
5308 filename = PyUnicode_AsUTF8(f->f_code->co_filename);
5309 funcname = PyUnicode_AsUTF8(f->f_code->co_name);
5310 lineno = PyCode_Addr2Line(f->f_code, f->f_lasti);
5311
5312 PyDTrace_FUNCTION_ENTRY(filename, funcname, lineno);
5313}
5314
5315static void
5316dtrace_function_return(PyFrameObject *f)
5317{
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +02005318 const char *filename;
5319 const char *funcname;
Łukasz Langaa785c872016-09-09 17:37:37 -07005320 int lineno;
5321
5322 filename = PyUnicode_AsUTF8(f->f_code->co_filename);
5323 funcname = PyUnicode_AsUTF8(f->f_code->co_name);
5324 lineno = PyCode_Addr2Line(f->f_code, f->f_lasti);
5325
5326 PyDTrace_FUNCTION_RETURN(filename, funcname, lineno);
5327}
5328
5329/* DTrace equivalent of maybe_call_line_trace. */
5330static void
5331maybe_dtrace_line(PyFrameObject *frame,
5332 int *instr_lb, int *instr_ub, int *instr_prev)
5333{
5334 int line = frame->f_lineno;
Serhiy Storchaka85b0f5b2016-11-20 10:16:47 +02005335 const char *co_filename, *co_name;
Łukasz Langaa785c872016-09-09 17:37:37 -07005336
5337 /* If the last instruction executed isn't in the current
5338 instruction window, reset the window.
5339 */
5340 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) {
5341 PyAddrPair bounds;
5342 line = _PyCode_CheckLineNumber(frame->f_code, frame->f_lasti,
5343 &bounds);
5344 *instr_lb = bounds.ap_lower;
5345 *instr_ub = bounds.ap_upper;
5346 }
5347 /* If the last instruction falls at the start of a line or if
5348 it represents a jump backwards, update the frame's line
5349 number and call the trace function. */
5350 if (frame->f_lasti == *instr_lb || frame->f_lasti < *instr_prev) {
5351 frame->f_lineno = line;
5352 co_filename = PyUnicode_AsUTF8(frame->f_code->co_filename);
5353 if (!co_filename)
5354 co_filename = "?";
5355 co_name = PyUnicode_AsUTF8(frame->f_code->co_name);
5356 if (!co_name)
5357 co_name = "?";
5358 PyDTrace_LINE(co_filename, co_name, line);
5359 }
5360 *instr_prev = frame->f_lasti;
5361}