blob: e14e77270cae3e2bc109adc2def21207a7ef826e [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"
Guido van Rossum3f5da241990-12-20 15:06:42 +000015#include "frameobject.h"
Guido van Rossum10dc2e81990-11-18 17:27:39 +000016#include "opcode.h"
Tim Peters6d6c1a32001-08-02 04:15:00 +000017#include "structmember.h"
Guido van Rossum10dc2e81990-11-18 17:27:39 +000018
Guido van Rossumc6004111993-11-05 10:22:19 +000019#include <ctype.h>
20
Thomas Wouters477c8d52006-05-27 19:21:47 +000021#ifndef WITH_TSC
Michael W. Hudson75eabd22005-01-18 15:56:11 +000022
23#define READ_TIMESTAMP(var)
24
25#else
Martin v. Löwisf30d60e2004-06-08 08:17:44 +000026
27typedef unsigned long long uint64;
28
Ezio Melotti13925002011-03-16 11:05:33 +020029/* PowerPC support.
David Malcolmf1397ad2011-01-06 17:01:36 +000030 "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas
31 "__powerpc__" appears to be the correct one for Linux with GCC
32*/
33#if defined(__ppc__) || defined (__powerpc__)
Michael W. Hudson800ba232004-08-12 18:19:17 +000034
Michael W. Hudson75eabd22005-01-18 15:56:11 +000035#define READ_TIMESTAMP(var) ppc_getcounter(&var)
Michael W. Hudson800ba232004-08-12 18:19:17 +000036
37static void
38ppc_getcounter(uint64 *v)
39{
Antoine Pitrou9ed5f272013-08-13 20:18:52 +020040 unsigned long tbu, tb, tbu2;
Michael W. Hudson800ba232004-08-12 18:19:17 +000041
42 loop:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000043 asm volatile ("mftbu %0" : "=r" (tbu) );
44 asm volatile ("mftb %0" : "=r" (tb) );
45 asm volatile ("mftbu %0" : "=r" (tbu2));
46 if (__builtin_expect(tbu != tbu2, 0)) goto loop;
Michael W. Hudson800ba232004-08-12 18:19:17 +000047
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000048 /* The slightly peculiar way of writing the next lines is
49 compiled better by GCC than any other way I tried. */
50 ((long*)(v))[0] = tbu;
51 ((long*)(v))[1] = tb;
Michael W. Hudson800ba232004-08-12 18:19:17 +000052}
53
Mark Dickinsona25b1312009-10-31 10:18:44 +000054#elif defined(__i386__)
55
56/* this is for linux/x86 (and probably any other GCC/x86 combo) */
Michael W. Hudson800ba232004-08-12 18:19:17 +000057
Michael W. Hudson75eabd22005-01-18 15:56:11 +000058#define READ_TIMESTAMP(val) \
59 __asm__ __volatile__("rdtsc" : "=A" (val))
Michael W. Hudson800ba232004-08-12 18:19:17 +000060
Mark Dickinsona25b1312009-10-31 10:18:44 +000061#elif defined(__x86_64__)
62
63/* for gcc/x86_64, the "A" constraint in DI mode means *either* rax *or* rdx;
64 not edx:eax as it does for i386. Since rdtsc puts its result in edx:eax
65 even in 64-bit mode, we need to use "a" and "d" for the lower and upper
66 32-bit pieces of the result. */
67
68#define READ_TIMESTAMP(val) \
69 __asm__ __volatile__("rdtsc" : \
70 "=a" (((int*)&(val))[0]), "=d" (((int*)&(val))[1]));
71
72
73#else
74
75#error "Don't know how to implement timestamp counter for this architecture"
76
Michael W. Hudson800ba232004-08-12 18:19:17 +000077#endif
78
Thomas Wouters477c8d52006-05-27 19:21:47 +000079void dump_tsc(int opcode, int ticked, uint64 inst0, uint64 inst1,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000080 uint64 loop0, uint64 loop1, uint64 intr0, uint64 intr1)
Martin v. Löwisf30d60e2004-06-08 08:17:44 +000081{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000082 uint64 intr, inst, loop;
83 PyThreadState *tstate = PyThreadState_Get();
84 if (!tstate->interp->tscdump)
85 return;
86 intr = intr1 - intr0;
87 inst = inst1 - inst0 - intr;
88 loop = loop1 - loop0 - intr;
89 fprintf(stderr, "opcode=%03d t=%d inst=%06lld loop=%06lld\n",
Stefan Krahb7e10102010-06-23 18:42:39 +000090 opcode, ticked, inst, loop);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +000091}
Michael W. Hudson800ba232004-08-12 18:19:17 +000092
Martin v. Löwisf30d60e2004-06-08 08:17:44 +000093#endif
94
Guido van Rossum04691fc1992-08-12 15:35:34 +000095/* Turn this on if your compiler chokes on the big switch: */
Guido van Rossum1ae940a1995-01-02 19:04:15 +000096/* #define CASE_TOO_BIG 1 */
Guido van Rossum04691fc1992-08-12 15:35:34 +000097
Guido van Rossum408027e1996-12-30 16:17:54 +000098#ifdef Py_DEBUG
Guido van Rossum96a42c81992-01-12 02:29:51 +000099/* For debugging the interpreter: */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000100#define LLTRACE 1 /* Low-level trace feature */
101#define CHECKEXC 1 /* Double-check exception checking */
Guido van Rossum10dc2e81990-11-18 17:27:39 +0000102#endif
103
Jeremy Hylton52820442001-01-03 23:52:36 +0000104typedef PyObject *(*callproc)(PyObject *, PyObject *, PyObject *);
Guido van Rossum5b722181993-03-30 17:46:03 +0000105
Guido van Rossum374a9221991-04-04 10:40:29 +0000106/* Forward declarations */
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000107#ifdef WITH_TSC
Thomas Wouters477c8d52006-05-27 19:21:47 +0000108static PyObject * call_function(PyObject ***, int, uint64*, uint64*);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000109#else
Thomas Wouters477c8d52006-05-27 19:21:47 +0000110static PyObject * call_function(PyObject ***, int);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000111#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +0000112static PyObject * fast_function(PyObject *, PyObject ***, int, int, int);
113static PyObject * do_call(PyObject *, PyObject ***, int, int);
114static PyObject * ext_do_call(PyObject *, PyObject ***, int, int, int);
Thomas Wouters8ce81f72007-09-20 18:22:40 +0000115static PyObject * update_keyword_args(PyObject *, int, PyObject ***,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 PyObject *);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000117static PyObject * update_star_args(int, int, PyObject *, PyObject ***);
118static PyObject * load_args(PyObject ***, int);
Jeremy Hylton52820442001-01-03 23:52:36 +0000119#define CALL_FLAG_VAR 1
120#define CALL_FLAG_KW 2
121
Guido van Rossum0a066c01992-03-27 17:29:15 +0000122#ifdef LLTRACE
Guido van Rossumc2e20742006-02-27 22:32:47 +0000123static int lltrace;
Tim Petersdbd9ba62000-07-09 03:09:57 +0000124static int prtrace(PyObject *, char *);
Guido van Rossum0a066c01992-03-27 17:29:15 +0000125#endif
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100126static int call_trace(Py_tracefunc, PyObject *,
127 PyThreadState *, PyFrameObject *,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000128 int, PyObject *);
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +0000129static int call_trace_protected(Py_tracefunc, PyObject *,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100130 PyThreadState *, PyFrameObject *,
131 int, PyObject *);
132static void call_exc_trace(Py_tracefunc, PyObject *,
133 PyThreadState *, PyFrameObject *);
Tim Peters8a5c3c72004-04-05 19:36:21 +0000134static int maybe_call_line_trace(Py_tracefunc, PyObject *,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +0100135 PyThreadState *, PyFrameObject *, int *, int *, int *);
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000136
Thomas Wouters477c8d52006-05-27 19:21:47 +0000137static PyObject * cmp_outcome(int, PyObject *, PyObject *);
138static PyObject * import_from(PyObject *, PyObject *);
Thomas Wouters52152252000-08-17 22:55:00 +0000139static int import_all_from(PyObject *, PyObject *);
Neal Norwitzda059e32007-08-26 05:33:45 +0000140static void format_exc_check_arg(PyObject *, const char *, PyObject *);
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +0000141static void format_exc_unbound(PyCodeObject *co, int oparg);
Victor Stinnerd2a915d2011-10-02 20:34:20 +0200142static PyObject * unicode_concatenate(PyObject *, PyObject *,
143 PyFrameObject *, unsigned char *);
Benjamin Petersonce798522012-01-22 11:24:29 -0500144static PyObject * special_lookup(PyObject *, _Py_Identifier *);
Guido van Rossum374a9221991-04-04 10:40:29 +0000145
Paul Prescode68140d2000-08-30 20:25:01 +0000146#define NAME_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000147 "name '%.200s' is not defined"
Paul Prescode68140d2000-08-30 20:25:01 +0000148#define UNBOUNDLOCAL_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 "local variable '%.200s' referenced before assignment"
Jeremy Hyltonc76770c2001-04-13 16:51:46 +0000150#define UNBOUNDFREE_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000151 "free variable '%.200s' referenced before assignment" \
152 " in enclosing scope"
Guido van Rossum374a9221991-04-04 10:40:29 +0000153
Guido van Rossum950361c1997-01-24 13:49:28 +0000154/* Dynamic execution profile */
155#ifdef DYNAMIC_EXECUTION_PROFILE
156#ifdef DXPAIRS
157static long dxpairs[257][256];
158#define dxp dxpairs[256]
159#else
160static long dxp[256];
161#endif
162#endif
163
Jeremy Hylton985eba52003-02-05 23:13:00 +0000164/* Function call profile */
165#ifdef CALL_PROFILE
166#define PCALL_NUM 11
167static int pcall[PCALL_NUM];
168
169#define PCALL_ALL 0
170#define PCALL_FUNCTION 1
171#define PCALL_FAST_FUNCTION 2
172#define PCALL_FASTER_FUNCTION 3
173#define PCALL_METHOD 4
174#define PCALL_BOUND_METHOD 5
175#define PCALL_CFUNCTION 6
176#define PCALL_TYPE 7
177#define PCALL_GENERATOR 8
178#define PCALL_OTHER 9
179#define PCALL_POP 10
180
181/* Notes about the statistics
182
183 PCALL_FAST stats
184
185 FAST_FUNCTION means no argument tuple needs to be created.
186 FASTER_FUNCTION means that the fast-path frame setup code is used.
187
188 If there is a method call where the call can be optimized by changing
189 the argument tuple and calling the function directly, it gets recorded
190 twice.
191
192 As a result, the relationship among the statistics appears to be
193 PCALL_ALL == PCALL_FUNCTION + PCALL_METHOD - PCALL_BOUND_METHOD +
194 PCALL_CFUNCTION + PCALL_TYPE + PCALL_GENERATOR + PCALL_OTHER
195 PCALL_FUNCTION > PCALL_FAST_FUNCTION > PCALL_FASTER_FUNCTION
196 PCALL_METHOD > PCALL_BOUND_METHOD
197*/
198
199#define PCALL(POS) pcall[POS]++
200
201PyObject *
202PyEval_GetCallStats(PyObject *self)
203{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 return Py_BuildValue("iiiiiiiiiii",
205 pcall[0], pcall[1], pcall[2], pcall[3],
206 pcall[4], pcall[5], pcall[6], pcall[7],
207 pcall[8], pcall[9], pcall[10]);
Jeremy Hylton985eba52003-02-05 23:13:00 +0000208}
209#else
210#define PCALL(O)
211
212PyObject *
213PyEval_GetCallStats(PyObject *self)
214{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000215 Py_INCREF(Py_None);
216 return Py_None;
Jeremy Hylton985eba52003-02-05 23:13:00 +0000217}
218#endif
219
Tim Peters5ca576e2001-06-18 22:08:13 +0000220
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000221#ifdef WITH_THREAD
222#define GIL_REQUEST _Py_atomic_load_relaxed(&gil_drop_request)
223#else
224#define GIL_REQUEST 0
225#endif
226
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000227/* This can set eval_breaker to 0 even though gil_drop_request became
228 1. We believe this is all right because the eval loop will release
229 the GIL eventually anyway. */
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000230#define COMPUTE_EVAL_BREAKER() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 _Py_atomic_store_relaxed( \
232 &eval_breaker, \
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000233 GIL_REQUEST | \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000234 _Py_atomic_load_relaxed(&pendingcalls_to_do) | \
235 pending_async_exc)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000236
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000237#ifdef WITH_THREAD
238
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000239#define SET_GIL_DROP_REQUEST() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000240 do { \
241 _Py_atomic_store_relaxed(&gil_drop_request, 1); \
242 _Py_atomic_store_relaxed(&eval_breaker, 1); \
243 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000244
245#define RESET_GIL_DROP_REQUEST() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000246 do { \
247 _Py_atomic_store_relaxed(&gil_drop_request, 0); \
248 COMPUTE_EVAL_BREAKER(); \
249 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000250
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000251#endif
252
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000253/* Pending calls are only modified under pending_lock */
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000254#define SIGNAL_PENDING_CALLS() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000255 do { \
256 _Py_atomic_store_relaxed(&pendingcalls_to_do, 1); \
257 _Py_atomic_store_relaxed(&eval_breaker, 1); \
258 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000259
260#define UNSIGNAL_PENDING_CALLS() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000261 do { \
262 _Py_atomic_store_relaxed(&pendingcalls_to_do, 0); \
263 COMPUTE_EVAL_BREAKER(); \
264 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000265
266#define SIGNAL_ASYNC_EXC() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000267 do { \
268 pending_async_exc = 1; \
269 _Py_atomic_store_relaxed(&eval_breaker, 1); \
270 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000271
272#define UNSIGNAL_ASYNC_EXC() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273 do { pending_async_exc = 0; COMPUTE_EVAL_BREAKER(); } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000274
275
Guido van Rossume59214e1994-08-30 08:01:59 +0000276#ifdef WITH_THREAD
Guido van Rossumff4949e1992-08-05 19:58:53 +0000277
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000278#ifdef HAVE_ERRNO_H
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000279#include <errno.h>
Guido van Rossum2571cc81999-04-07 16:07:23 +0000280#endif
Guido van Rossum49b56061998-10-01 20:42:43 +0000281#include "pythread.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +0000282
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000283static PyThread_type_lock pending_lock = 0; /* for pending calls */
Guido van Rossuma9672091994-09-14 13:31:22 +0000284static long main_thread = 0;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000285/* This single variable consolidates all requests to break out of the fast path
286 in the eval loop. */
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000287static _Py_atomic_int eval_breaker = {0};
288/* Request for dropping the GIL */
289static _Py_atomic_int gil_drop_request = {0};
290/* Request for running pending calls. */
291static _Py_atomic_int pendingcalls_to_do = {0};
292/* Request for looking at the `async_exc` field of the current thread state.
293 Guarded by the GIL. */
294static int pending_async_exc = 0;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000295
296#include "ceval_gil.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000297
Tim Peters7f468f22004-10-11 02:40:51 +0000298int
299PyEval_ThreadsInitialized(void)
300{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000301 return gil_created();
Tim Peters7f468f22004-10-11 02:40:51 +0000302}
303
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000304void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000305PyEval_InitThreads(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000306{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000307 if (gil_created())
308 return;
309 create_gil();
310 take_gil(PyThreadState_GET());
311 main_thread = PyThread_get_thread_ident();
312 if (!pending_lock)
313 pending_lock = PyThread_allocate_lock();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000314}
Guido van Rossumff4949e1992-08-05 19:58:53 +0000315
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000316void
Antoine Pitrou1df15362010-09-13 14:16:46 +0000317_PyEval_FiniThreads(void)
318{
319 if (!gil_created())
320 return;
321 destroy_gil();
322 assert(!gil_created());
323}
324
325void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000326PyEval_AcquireLock(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000327{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000328 PyThreadState *tstate = PyThreadState_GET();
329 if (tstate == NULL)
330 Py_FatalError("PyEval_AcquireLock: current thread state is NULL");
331 take_gil(tstate);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000332}
333
334void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000335PyEval_ReleaseLock(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000336{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000337 /* This function must succeed when the current thread state is NULL.
338 We therefore avoid PyThreadState_GET() which dumps a fatal error
339 in debug mode.
340 */
341 drop_gil((PyThreadState*)_Py_atomic_load_relaxed(
342 &_PyThreadState_Current));
Guido van Rossum25ce5661997-08-02 03:10:38 +0000343}
344
345void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000346PyEval_AcquireThread(PyThreadState *tstate)
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000347{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000348 if (tstate == NULL)
349 Py_FatalError("PyEval_AcquireThread: NULL new thread state");
350 /* Check someone has called PyEval_InitThreads() to create the lock */
351 assert(gil_created());
352 take_gil(tstate);
353 if (PyThreadState_Swap(tstate) != NULL)
354 Py_FatalError(
355 "PyEval_AcquireThread: non-NULL old thread state");
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000356}
357
358void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000359PyEval_ReleaseThread(PyThreadState *tstate)
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000360{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000361 if (tstate == NULL)
362 Py_FatalError("PyEval_ReleaseThread: NULL thread state");
363 if (PyThreadState_Swap(NULL) != tstate)
364 Py_FatalError("PyEval_ReleaseThread: wrong thread state");
365 drop_gil(tstate);
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000366}
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000367
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200368/* This function is called from PyOS_AfterFork to destroy all threads which are
369 * not running in the child process, and clear internal locks which might be
370 * held by those threads. (This could also be done using pthread_atfork
371 * mechanism, at least for the pthreads implementation.) */
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000372
373void
374PyEval_ReInitThreads(void)
375{
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200376 _Py_IDENTIFIER(_after_fork);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000377 PyObject *threading, *result;
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200378 PyThreadState *current_tstate = PyThreadState_GET();
Jesse Nollera8513972008-07-17 16:49:17 +0000379
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 if (!gil_created())
381 return;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000382 recreate_gil();
383 pending_lock = PyThread_allocate_lock();
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200384 take_gil(current_tstate);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000385 main_thread = PyThread_get_thread_ident();
Jesse Nollera8513972008-07-17 16:49:17 +0000386
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 /* Update the threading module with the new state.
388 */
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200389 threading = PyMapping_GetItemString(current_tstate->interp->modules,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000390 "threading");
391 if (threading == NULL) {
392 /* threading not imported */
393 PyErr_Clear();
394 return;
395 }
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200396 result = _PyObject_CallMethodId(threading, &PyId__after_fork, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 if (result == NULL)
398 PyErr_WriteUnraisable(threading);
399 else
400 Py_DECREF(result);
401 Py_DECREF(threading);
Antoine Pitrou8408cea2013-05-05 23:47:09 +0200402
403 /* Destroy all threads except the current one */
404 _PyThreadState_DeleteExcept(current_tstate);
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000405}
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000406
407#else
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000408static _Py_atomic_int eval_breaker = {0};
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000409static int pending_async_exc = 0;
410#endif /* WITH_THREAD */
411
412/* This function is used to signal that async exceptions are waiting to be
413 raised, therefore it is also useful in non-threaded builds. */
414
415void
416_PyEval_SignalAsyncExc(void)
417{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000418 SIGNAL_ASYNC_EXC();
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000419}
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000420
Guido van Rossumff4949e1992-08-05 19:58:53 +0000421/* Functions save_thread and restore_thread are always defined so
422 dynamically loaded modules needn't be compiled separately for use
423 with and without threads: */
424
Guido van Rossum2fca21f71997-07-18 23:56:58 +0000425PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000426PyEval_SaveThread(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000427{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000428 PyThreadState *tstate = PyThreadState_Swap(NULL);
429 if (tstate == NULL)
430 Py_FatalError("PyEval_SaveThread: NULL tstate");
Guido van Rossume59214e1994-08-30 08:01:59 +0000431#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 if (gil_created())
433 drop_gil(tstate);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000434#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000435 return tstate;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000436}
437
438void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000439PyEval_RestoreThread(PyThreadState *tstate)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000440{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 if (tstate == NULL)
442 Py_FatalError("PyEval_RestoreThread: NULL tstate");
Guido van Rossume59214e1994-08-30 08:01:59 +0000443#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 if (gil_created()) {
445 int err = errno;
446 take_gil(tstate);
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200447 /* _Py_Finalizing is protected by the GIL */
448 if (_Py_Finalizing && tstate != _Py_Finalizing) {
449 drop_gil(tstate);
450 PyThread_exit_thread();
451 assert(0); /* unreachable */
452 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000453 errno = err;
454 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000455#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 PyThreadState_Swap(tstate);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000457}
458
459
Guido van Rossuma9672091994-09-14 13:31:22 +0000460/* Mechanism whereby asynchronously executing callbacks (e.g. UNIX
461 signal handlers or Mac I/O completion routines) can schedule calls
462 to a function to be called synchronously.
463 The synchronous function is called with one void* argument.
464 It should return 0 for success or -1 for failure -- failure should
465 be accompanied by an exception.
466
467 If registry succeeds, the registry function returns 0; if it fails
468 (e.g. due to too many pending calls) it returns -1 (without setting
469 an exception condition).
470
471 Note that because registry may occur from within signal handlers,
472 or other asynchronous events, calling malloc() is unsafe!
473
474#ifdef WITH_THREAD
475 Any thread can schedule pending calls, but only the main thread
476 will execute them.
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000477 There is no facility to schedule calls to a particular thread, but
478 that should be easy to change, should that ever be required. In
479 that case, the static variables here should go into the python
480 threadstate.
Guido van Rossuma9672091994-09-14 13:31:22 +0000481#endif
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000482*/
Guido van Rossuma9672091994-09-14 13:31:22 +0000483
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000484#ifdef WITH_THREAD
485
486/* The WITH_THREAD implementation is thread-safe. It allows
487 scheduling to be made from any thread, and even from an executing
488 callback.
489 */
490
491#define NPENDINGCALLS 32
492static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000493 int (*func)(void *);
494 void *arg;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000495} pendingcalls[NPENDINGCALLS];
496static int pendingfirst = 0;
497static int pendinglast = 0;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000498
499int
500Py_AddPendingCall(int (*func)(void *), void *arg)
501{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 int i, j, result=0;
503 PyThread_type_lock lock = pending_lock;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000504
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000505 /* try a few times for the lock. Since this mechanism is used
506 * for signal handling (on the main thread), there is a (slim)
507 * chance that a signal is delivered on the same thread while we
508 * hold the lock during the Py_MakePendingCalls() function.
509 * This avoids a deadlock in that case.
510 * Note that signals can be delivered on any thread. In particular,
511 * on Windows, a SIGINT is delivered on a system-created worker
512 * thread.
513 * We also check for lock being NULL, in the unlikely case that
514 * this function is called before any bytecode evaluation takes place.
515 */
516 if (lock != NULL) {
517 for (i = 0; i<100; i++) {
518 if (PyThread_acquire_lock(lock, NOWAIT_LOCK))
519 break;
520 }
521 if (i == 100)
522 return -1;
523 }
524
525 i = pendinglast;
526 j = (i + 1) % NPENDINGCALLS;
527 if (j == pendingfirst) {
528 result = -1; /* Queue full */
529 } else {
530 pendingcalls[i].func = func;
531 pendingcalls[i].arg = arg;
532 pendinglast = j;
533 }
534 /* signal main loop */
535 SIGNAL_PENDING_CALLS();
536 if (lock != NULL)
537 PyThread_release_lock(lock);
538 return result;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000539}
540
541int
542Py_MakePendingCalls(void)
543{
Charles-François Natalif23339a2011-07-23 18:15:43 +0200544 static int busy = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545 int i;
546 int r = 0;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000547
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000548 if (!pending_lock) {
549 /* initial allocation of the lock */
550 pending_lock = PyThread_allocate_lock();
551 if (pending_lock == NULL)
552 return -1;
553 }
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000554
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000555 /* only service pending calls on main thread */
556 if (main_thread && PyThread_get_thread_ident() != main_thread)
557 return 0;
558 /* don't perform recursive pending calls */
Charles-François Natalif23339a2011-07-23 18:15:43 +0200559 if (busy)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 return 0;
Charles-François Natalif23339a2011-07-23 18:15:43 +0200561 busy = 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000562 /* perform a bounded number of calls, in case of recursion */
563 for (i=0; i<NPENDINGCALLS; i++) {
564 int j;
565 int (*func)(void *);
566 void *arg = NULL;
567
568 /* pop one item off the queue while holding the lock */
569 PyThread_acquire_lock(pending_lock, WAIT_LOCK);
570 j = pendingfirst;
571 if (j == pendinglast) {
572 func = NULL; /* Queue empty */
573 } else {
574 func = pendingcalls[j].func;
575 arg = pendingcalls[j].arg;
576 pendingfirst = (j + 1) % NPENDINGCALLS;
577 }
578 if (pendingfirst != pendinglast)
579 SIGNAL_PENDING_CALLS();
580 else
581 UNSIGNAL_PENDING_CALLS();
582 PyThread_release_lock(pending_lock);
583 /* having released the lock, perform the callback */
584 if (func == NULL)
585 break;
586 r = func(arg);
587 if (r)
588 break;
589 }
Charles-François Natalif23339a2011-07-23 18:15:43 +0200590 busy = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000591 return r;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000592}
593
594#else /* if ! defined WITH_THREAD */
595
596/*
597 WARNING! ASYNCHRONOUSLY EXECUTING CODE!
598 This code is used for signal handling in python that isn't built
599 with WITH_THREAD.
600 Don't use this implementation when Py_AddPendingCalls() can happen
601 on a different thread!
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000602
Guido van Rossuma9672091994-09-14 13:31:22 +0000603 There are two possible race conditions:
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000604 (1) nested asynchronous calls to Py_AddPendingCall()
605 (2) AddPendingCall() calls made while pending calls are being processed.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000606
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000607 (1) is very unlikely because typically signal delivery
608 is blocked during signal handling. So it should be impossible.
609 (2) is a real possibility.
Guido van Rossuma9672091994-09-14 13:31:22 +0000610 The current code is safe against (2), but not against (1).
611 The safety against (2) is derived from the fact that only one
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000612 thread is present, interrupted by signals, and that the critical
613 section is protected with the "busy" variable. On Windows, which
614 delivers SIGINT on a system thread, this does not hold and therefore
615 Windows really shouldn't use this version.
616 The two threads could theoretically wiggle around the "busy" variable.
Guido van Rossuma027efa1997-05-05 20:56:21 +0000617*/
Guido van Rossum8861b741996-07-30 16:49:37 +0000618
Guido van Rossuma9672091994-09-14 13:31:22 +0000619#define NPENDINGCALLS 32
620static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000621 int (*func)(void *);
622 void *arg;
Guido van Rossuma9672091994-09-14 13:31:22 +0000623} pendingcalls[NPENDINGCALLS];
624static volatile int pendingfirst = 0;
625static volatile int pendinglast = 0;
Benjamin Peterson08ec84c2010-05-30 14:49:32 +0000626static _Py_atomic_int pendingcalls_to_do = {0};
Guido van Rossuma9672091994-09-14 13:31:22 +0000627
628int
Thomas Wouters334fb892000-07-25 12:56:38 +0000629Py_AddPendingCall(int (*func)(void *), void *arg)
Guido van Rossuma9672091994-09-14 13:31:22 +0000630{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000631 static volatile int busy = 0;
632 int i, j;
633 /* XXX Begin critical section */
634 if (busy)
635 return -1;
636 busy = 1;
637 i = pendinglast;
638 j = (i + 1) % NPENDINGCALLS;
639 if (j == pendingfirst) {
640 busy = 0;
641 return -1; /* Queue full */
642 }
643 pendingcalls[i].func = func;
644 pendingcalls[i].arg = arg;
645 pendinglast = j;
Skip Montanarod581d772002-09-03 20:10:45 +0000646
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000647 SIGNAL_PENDING_CALLS();
648 busy = 0;
649 /* XXX End critical section */
650 return 0;
Guido van Rossuma9672091994-09-14 13:31:22 +0000651}
652
Guido van Rossum180d7b41994-09-29 09:45:57 +0000653int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000654Py_MakePendingCalls(void)
Guido van Rossuma9672091994-09-14 13:31:22 +0000655{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000656 static int busy = 0;
657 if (busy)
658 return 0;
659 busy = 1;
660 UNSIGNAL_PENDING_CALLS();
661 for (;;) {
662 int i;
663 int (*func)(void *);
664 void *arg;
665 i = pendingfirst;
666 if (i == pendinglast)
667 break; /* Queue empty */
668 func = pendingcalls[i].func;
669 arg = pendingcalls[i].arg;
670 pendingfirst = (i + 1) % NPENDINGCALLS;
671 if (func(arg) < 0) {
672 busy = 0;
673 SIGNAL_PENDING_CALLS(); /* We're not done yet */
674 return -1;
675 }
676 }
677 busy = 0;
678 return 0;
Guido van Rossuma9672091994-09-14 13:31:22 +0000679}
680
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000681#endif /* WITH_THREAD */
682
Guido van Rossuma9672091994-09-14 13:31:22 +0000683
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000684/* The interpreter's recursion limit */
685
Hye-Shik Changb6fa2812005-04-04 15:49:02 +0000686#ifndef Py_DEFAULT_RECURSION_LIMIT
687#define Py_DEFAULT_RECURSION_LIMIT 1000
688#endif
689static int recursion_limit = Py_DEFAULT_RECURSION_LIMIT;
690int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000691
Vladimir Marangozov7bd25be2000-09-01 11:07:19 +0000692int
693Py_GetRecursionLimit(void)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000694{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000695 return recursion_limit;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000696}
697
Vladimir Marangozov7bd25be2000-09-01 11:07:19 +0000698void
699Py_SetRecursionLimit(int new_limit)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000700{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000701 recursion_limit = new_limit;
702 _Py_CheckRecursionLimit = recursion_limit;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000703}
704
Armin Rigo2b3eb402003-10-28 12:05:48 +0000705/* the macro Py_EnterRecursiveCall() only calls _Py_CheckRecursiveCall()
706 if the recursion_depth reaches _Py_CheckRecursionLimit.
707 If USE_STACKCHECK, the macro decrements _Py_CheckRecursionLimit
708 to guarantee that _Py_CheckRecursiveCall() is regularly called.
709 Without USE_STACKCHECK, there is no need for this. */
710int
711_Py_CheckRecursiveCall(char *where)
712{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000713 PyThreadState *tstate = PyThreadState_GET();
Armin Rigo2b3eb402003-10-28 12:05:48 +0000714
715#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000716 if (PyOS_CheckStack()) {
717 --tstate->recursion_depth;
718 PyErr_SetString(PyExc_MemoryError, "Stack overflow");
719 return -1;
720 }
Armin Rigo2b3eb402003-10-28 12:05:48 +0000721#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000722 _Py_CheckRecursionLimit = recursion_limit;
723 if (tstate->recursion_critical)
724 /* Somebody asked that we don't check for recursion. */
725 return 0;
726 if (tstate->overflowed) {
727 if (tstate->recursion_depth > recursion_limit + 50) {
728 /* Overflowing while handling an overflow. Give up. */
729 Py_FatalError("Cannot recover from stack overflow.");
730 }
731 return 0;
732 }
733 if (tstate->recursion_depth > recursion_limit) {
734 --tstate->recursion_depth;
735 tstate->overflowed = 1;
736 PyErr_Format(PyExc_RuntimeError,
737 "maximum recursion depth exceeded%s",
738 where);
739 return -1;
740 }
741 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000742}
743
Guido van Rossum374a9221991-04-04 10:40:29 +0000744/* Status code for main loop (reason for stack unwind) */
Raymond Hettinger7c958652004-04-06 10:11:10 +0000745enum why_code {
Stefan Krahb7e10102010-06-23 18:42:39 +0000746 WHY_NOT = 0x0001, /* No error */
747 WHY_EXCEPTION = 0x0002, /* Exception occurred */
Stefan Krahb7e10102010-06-23 18:42:39 +0000748 WHY_RETURN = 0x0008, /* 'return' statement */
749 WHY_BREAK = 0x0010, /* 'break' statement */
750 WHY_CONTINUE = 0x0020, /* 'continue' statement */
751 WHY_YIELD = 0x0040, /* 'yield' operator */
752 WHY_SILENCED = 0x0080 /* Exception silenced by 'with' */
Raymond Hettinger7c958652004-04-06 10:11:10 +0000753};
Guido van Rossum374a9221991-04-04 10:40:29 +0000754
Benjamin Peterson87880242011-07-03 16:48:31 -0500755static void save_exc_state(PyThreadState *, PyFrameObject *);
756static void swap_exc_state(PyThreadState *, PyFrameObject *);
757static void restore_and_clear_exc_state(PyThreadState *, PyFrameObject *);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -0400758static int do_raise(PyObject *, PyObject *);
Guido van Rossum0368b722007-05-11 16:50:42 +0000759static int unpack_iterable(PyObject *, int, int, PyObject **);
Guido van Rossum1aa14831997-01-21 05:34:20 +0000760
Jeffrey Yasskin008d8ef2008-12-06 17:09:27 +0000761/* Records whether tracing is on for any thread. Counts the number of
762 threads for which tstate->c_tracefunc is non-NULL, so if the value
763 is 0, we know we don't have to check this thread's c_tracefunc.
764 This speeds up the if statement in PyEval_EvalFrameEx() after
765 fast_next_opcode*/
766static int _Py_TracingPossible = 0;
767
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000768
Guido van Rossum374a9221991-04-04 10:40:29 +0000769
Guido van Rossumb209a111997-04-29 18:18:01 +0000770PyObject *
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000771PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals)
Guido van Rossum681d79a1995-07-18 14:51:37 +0000772{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000773 return PyEval_EvalCodeEx(co,
774 globals, locals,
775 (PyObject **)NULL, 0,
776 (PyObject **)NULL, 0,
777 (PyObject **)NULL, 0,
778 NULL, NULL);
Guido van Rossum681d79a1995-07-18 14:51:37 +0000779}
780
781
782/* Interpreter main loop */
783
Martin v. Löwis8d97e332004-06-27 15:43:12 +0000784PyObject *
Phillip J. Eby0d6615f2005-08-02 00:46:46 +0000785PyEval_EvalFrame(PyFrameObject *f) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000786 /* This is for backward compatibility with extension modules that
787 used this API; core interpreter code should call
788 PyEval_EvalFrameEx() */
789 return PyEval_EvalFrameEx(f, 0);
Phillip J. Eby0d6615f2005-08-02 00:46:46 +0000790}
791
792PyObject *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000793PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Guido van Rossum374a9221991-04-04 10:40:29 +0000794{
Guido van Rossum950361c1997-01-24 13:49:28 +0000795#ifdef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 int lastopcode = 0;
Guido van Rossum950361c1997-01-24 13:49:28 +0000797#endif
Antoine Pitrou9ed5f272013-08-13 20:18:52 +0200798 PyObject **stack_pointer; /* Next free slot in value stack */
799 unsigned char *next_instr;
800 int opcode; /* Current opcode */
801 int oparg; /* Current opcode argument, if any */
802 enum why_code why; /* Reason for block stack unwind */
803 PyObject **fastlocals, **freevars;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000804 PyObject *retval = NULL; /* Return value */
805 PyThreadState *tstate = PyThreadState_GET();
806 PyCodeObject *co;
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000807
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000808 /* when tracing we set things up so that
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000809
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000810 not (instr_lb <= current_bytecode_offset < instr_ub)
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000811
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000812 is true when the line being executed has changed. The
813 initial values are such as to make this false the first
814 time it is tested. */
815 int instr_ub = -1, instr_lb = 0, instr_prev = -1;
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000816
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000817 unsigned char *first_instr;
818 PyObject *names;
819 PyObject *consts;
Guido van Rossum374a9221991-04-04 10:40:29 +0000820
Brett Cannon368b4b72012-04-02 12:17:59 -0400821#ifdef LLTRACE
Victor Stinner3c1e4812012-03-26 22:10:51 +0200822 _Py_IDENTIFIER(__ltrace__);
Brett Cannon368b4b72012-04-02 12:17:59 -0400823#endif
Victor Stinner3c1e4812012-03-26 22:10:51 +0200824
Antoine Pitroub52ec782009-01-25 16:34:23 +0000825/* Computed GOTOs, or
826 the-optimization-commonly-but-improperly-known-as-"threaded code"
827 using gcc's labels-as-values extension
828 (http://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html).
829
830 The traditional bytecode evaluation loop uses a "switch" statement, which
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000831 decent compilers will optimize as a single indirect branch instruction
Antoine Pitroub52ec782009-01-25 16:34:23 +0000832 combined with a lookup table of jump addresses. However, since the
833 indirect jump instruction is shared by all opcodes, the CPU will have a
834 hard time making the right prediction for where to jump next (actually,
835 it will be always wrong except in the uncommon case of a sequence of
836 several identical opcodes).
837
838 "Threaded code" in contrast, uses an explicit jump table and an explicit
839 indirect jump instruction at the end of each opcode. Since the jump
840 instruction is at a different address for each opcode, the CPU will make a
841 separate prediction for each of these instructions, which is equivalent to
842 predicting the second opcode of each opcode pair. These predictions have
843 a much better chance to turn out valid, especially in small bytecode loops.
844
845 A mispredicted branch on a modern CPU flushes the whole pipeline and
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000846 can cost several CPU cycles (depending on the pipeline depth),
Antoine Pitroub52ec782009-01-25 16:34:23 +0000847 and potentially many more instructions (depending on the pipeline width).
848 A correctly predicted branch, however, is nearly free.
849
850 At the time of this writing, the "threaded code" version is up to 15-20%
851 faster than the normal "switch" version, depending on the compiler and the
852 CPU architecture.
853
854 We disable the optimization if DYNAMIC_EXECUTION_PROFILE is defined,
855 because it would render the measurements invalid.
856
857
858 NOTE: care must be taken that the compiler doesn't try to "optimize" the
859 indirect jumps by sharing them between all opcodes. Such optimizations
860 can be disabled on gcc by using the -fno-gcse flag (or possibly
861 -fno-crossjumping).
862*/
863
Antoine Pitrou042b1282010-08-13 21:15:58 +0000864#ifdef DYNAMIC_EXECUTION_PROFILE
Antoine Pitroub52ec782009-01-25 16:34:23 +0000865#undef USE_COMPUTED_GOTOS
Antoine Pitrou042b1282010-08-13 21:15:58 +0000866#define USE_COMPUTED_GOTOS 0
Antoine Pitroub52ec782009-01-25 16:34:23 +0000867#endif
868
Antoine Pitrou042b1282010-08-13 21:15:58 +0000869#ifdef HAVE_COMPUTED_GOTOS
870 #ifndef USE_COMPUTED_GOTOS
871 #define USE_COMPUTED_GOTOS 1
872 #endif
873#else
874 #if defined(USE_COMPUTED_GOTOS) && USE_COMPUTED_GOTOS
875 #error "Computed gotos are not supported on this compiler."
876 #endif
877 #undef USE_COMPUTED_GOTOS
878 #define USE_COMPUTED_GOTOS 0
879#endif
880
881#if USE_COMPUTED_GOTOS
Antoine Pitroub52ec782009-01-25 16:34:23 +0000882/* Import the static jump table */
883#include "opcode_targets.h"
884
885/* This macro is used when several opcodes defer to the same implementation
886 (e.g. SETUP_LOOP, SETUP_FINALLY) */
887#define TARGET_WITH_IMPL(op, impl) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000888 TARGET_##op: \
889 opcode = op; \
890 if (HAS_ARG(op)) \
891 oparg = NEXTARG(); \
892 case op: \
893 goto impl; \
Antoine Pitroub52ec782009-01-25 16:34:23 +0000894
895#define TARGET(op) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000896 TARGET_##op: \
897 opcode = op; \
898 if (HAS_ARG(op)) \
899 oparg = NEXTARG(); \
900 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000901
902
903#define DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000904 { \
905 if (!_Py_atomic_load_relaxed(&eval_breaker)) { \
906 FAST_DISPATCH(); \
907 } \
908 continue; \
909 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000910
911#ifdef LLTRACE
912#define FAST_DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000913 { \
914 if (!lltrace && !_Py_TracingPossible) { \
915 f->f_lasti = INSTR_OFFSET(); \
916 goto *opcode_targets[*next_instr++]; \
917 } \
918 goto fast_next_opcode; \
919 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000920#else
921#define FAST_DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000922 { \
923 if (!_Py_TracingPossible) { \
924 f->f_lasti = INSTR_OFFSET(); \
925 goto *opcode_targets[*next_instr++]; \
926 } \
927 goto fast_next_opcode; \
928 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000929#endif
930
931#else
932#define TARGET(op) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000933 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000934#define TARGET_WITH_IMPL(op, impl) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000935 /* silence compiler warnings about `impl` unused */ \
936 if (0) goto impl; \
937 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000938#define DISPATCH() continue
939#define FAST_DISPATCH() goto fast_next_opcode
940#endif
941
942
Neal Norwitza81d2202002-07-14 00:27:26 +0000943/* Tuple access macros */
944
945#ifndef Py_DEBUG
946#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
947#else
948#define GETITEM(v, i) PyTuple_GetItem((v), (i))
949#endif
950
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000951#ifdef WITH_TSC
952/* Use Pentium timestamp counter to mark certain events:
953 inst0 -- beginning of switch statement for opcode dispatch
954 inst1 -- end of switch statement (may be skipped)
955 loop0 -- the top of the mainloop
Thomas Wouters477c8d52006-05-27 19:21:47 +0000956 loop1 -- place where control returns again to top of mainloop
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000957 (may be skipped)
958 intr1 -- beginning of long interruption
959 intr2 -- end of long interruption
960
961 Many opcodes call out to helper C functions. In some cases, the
962 time in those functions should be counted towards the time for the
963 opcode, but not in all cases. For example, a CALL_FUNCTION opcode
964 calls another Python function; there's no point in charge all the
965 bytecode executed by the called function to the caller.
966
967 It's hard to make a useful judgement statically. In the presence
968 of operator overloading, it's impossible to tell if a call will
969 execute new Python code or not.
970
971 It's a case-by-case judgement. I'll use intr1 for the following
972 cases:
973
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000974 IMPORT_STAR
975 IMPORT_FROM
976 CALL_FUNCTION (and friends)
977
978 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000979 uint64 inst0, inst1, loop0, loop1, intr0 = 0, intr1 = 0;
980 int ticked = 0;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000981
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000982 READ_TIMESTAMP(inst0);
983 READ_TIMESTAMP(inst1);
984 READ_TIMESTAMP(loop0);
985 READ_TIMESTAMP(loop1);
Michael W. Hudson800ba232004-08-12 18:19:17 +0000986
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000987 /* shut up the compiler */
988 opcode = 0;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000989#endif
990
Guido van Rossum374a9221991-04-04 10:40:29 +0000991/* Code access macros */
992
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000993#define INSTR_OFFSET() ((int)(next_instr - first_instr))
994#define NEXTOP() (*next_instr++)
995#define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
996#define PEEKARG() ((next_instr[2]<<8) + next_instr[1])
997#define JUMPTO(x) (next_instr = first_instr + (x))
998#define JUMPBY(x) (next_instr += (x))
Guido van Rossum374a9221991-04-04 10:40:29 +0000999
Raymond Hettingerf606f872003-03-16 03:11:04 +00001000/* OpCode prediction macros
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001001 Some opcodes tend to come in pairs thus making it possible to
1002 predict the second code when the first is run. For example,
1003 COMPARE_OP is often followed by JUMP_IF_FALSE or JUMP_IF_TRUE. And,
1004 those opcodes are often followed by a POP_TOP.
Raymond Hettingerf606f872003-03-16 03:11:04 +00001005
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001006 Verifying the prediction costs a single high-speed test of a register
1007 variable against a constant. If the pairing was good, then the
1008 processor's own internal branch predication has a high likelihood of
1009 success, resulting in a nearly zero-overhead transition to the
1010 next opcode. A successful prediction saves a trip through the eval-loop
1011 including its two unpredictable branches, the HAS_ARG test and the
1012 switch-case. Combined with the processor's internal branch prediction,
1013 a successful PREDICT has the effect of making the two opcodes run as if
1014 they were a single new opcode with the bodies combined.
Raymond Hettingerf606f872003-03-16 03:11:04 +00001015
Georg Brandl86b2fb92008-07-16 03:43:04 +00001016 If collecting opcode statistics, your choices are to either keep the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001017 predictions turned-on and interpret the results as if some opcodes
1018 had been combined or turn-off predictions so that the opcode frequency
1019 counter updates for both opcodes.
Antoine Pitroub52ec782009-01-25 16:34:23 +00001020
1021 Opcode prediction is disabled with threaded code, since the latter allows
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001022 the CPU to record separate branch prediction information for each
1023 opcode.
Antoine Pitroub52ec782009-01-25 16:34:23 +00001024
Raymond Hettingerf606f872003-03-16 03:11:04 +00001025*/
1026
Antoine Pitrou042b1282010-08-13 21:15:58 +00001027#if defined(DYNAMIC_EXECUTION_PROFILE) || USE_COMPUTED_GOTOS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001028#define PREDICT(op) if (0) goto PRED_##op
1029#define PREDICTED(op) PRED_##op:
1030#define PREDICTED_WITH_ARG(op) PRED_##op:
Raymond Hettingera7216982004-02-08 19:59:27 +00001031#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001032#define PREDICT(op) if (*next_instr == op) goto PRED_##op
1033#define PREDICTED(op) PRED_##op: next_instr++
1034#define PREDICTED_WITH_ARG(op) PRED_##op: oparg = PEEKARG(); next_instr += 3
Antoine Pitroub52ec782009-01-25 16:34:23 +00001035#endif
1036
Raymond Hettingerf606f872003-03-16 03:11:04 +00001037
Guido van Rossum374a9221991-04-04 10:40:29 +00001038/* Stack manipulation macros */
1039
Martin v. Löwis18e16552006-02-15 17:27:45 +00001040/* The stack can grow at most MAXINT deep, as co_nlocals and
1041 co_stacksize are ints. */
Stefan Krahb7e10102010-06-23 18:42:39 +00001042#define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack))
1043#define EMPTY() (STACK_LEVEL() == 0)
1044#define TOP() (stack_pointer[-1])
1045#define SECOND() (stack_pointer[-2])
1046#define THIRD() (stack_pointer[-3])
1047#define FOURTH() (stack_pointer[-4])
1048#define PEEK(n) (stack_pointer[-(n)])
1049#define SET_TOP(v) (stack_pointer[-1] = (v))
1050#define SET_SECOND(v) (stack_pointer[-2] = (v))
1051#define SET_THIRD(v) (stack_pointer[-3] = (v))
1052#define SET_FOURTH(v) (stack_pointer[-4] = (v))
1053#define SET_VALUE(n, v) (stack_pointer[-(n)] = (v))
1054#define BASIC_STACKADJ(n) (stack_pointer += n)
1055#define BASIC_PUSH(v) (*stack_pointer++ = (v))
1056#define BASIC_POP() (*--stack_pointer)
Guido van Rossum374a9221991-04-04 10:40:29 +00001057
Guido van Rossum96a42c81992-01-12 02:29:51 +00001058#ifdef LLTRACE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001059#define PUSH(v) { (void)(BASIC_PUSH(v), \
Stefan Krahb7e10102010-06-23 18:42:39 +00001060 lltrace && prtrace(TOP(), "push")); \
1061 assert(STACK_LEVEL() <= co->co_stacksize); }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001062#define POP() ((void)(lltrace && prtrace(TOP(), "pop")), \
Stefan Krahb7e10102010-06-23 18:42:39 +00001063 BASIC_POP())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001064#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
Stefan Krahb7e10102010-06-23 18:42:39 +00001065 lltrace && prtrace(TOP(), "stackadj")); \
1066 assert(STACK_LEVEL() <= co->co_stacksize); }
Christian Heimes0449f632007-12-15 01:27:15 +00001067#define EXT_POP(STACK_POINTER) ((void)(lltrace && \
Stefan Krahb7e10102010-06-23 18:42:39 +00001068 prtrace((STACK_POINTER)[-1], "ext_pop")), \
1069 *--(STACK_POINTER))
Guido van Rossum374a9221991-04-04 10:40:29 +00001070#else
Stefan Krahb7e10102010-06-23 18:42:39 +00001071#define PUSH(v) BASIC_PUSH(v)
1072#define POP() BASIC_POP()
1073#define STACKADJ(n) BASIC_STACKADJ(n)
Guido van Rossumc2e20742006-02-27 22:32:47 +00001074#define EXT_POP(STACK_POINTER) (*--(STACK_POINTER))
Guido van Rossum374a9221991-04-04 10:40:29 +00001075#endif
1076
Guido van Rossum681d79a1995-07-18 14:51:37 +00001077/* Local variable macros */
1078
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001079#define GETLOCAL(i) (fastlocals[i])
Guido van Rossumcfbf1a32002-03-28 20:17:52 +00001080
1081/* The SETLOCAL() macro must not DECREF the local variable in-place and
1082 then store the new value; it must copy the old value to a temporary
1083 value, then store the new value, and then DECREF the temporary value.
1084 This is because it is possible that during the DECREF the frame is
1085 accessed by other code (e.g. a __del__ method or gc.collect()) and the
1086 variable would be pointing to already-freed memory. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001087#define SETLOCAL(i, value) do { PyObject *tmp = GETLOCAL(i); \
Stefan Krahb7e10102010-06-23 18:42:39 +00001088 GETLOCAL(i) = value; \
1089 Py_XDECREF(tmp); } while (0)
Guido van Rossum681d79a1995-07-18 14:51:37 +00001090
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001091
1092#define UNWIND_BLOCK(b) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001093 while (STACK_LEVEL() > (b)->b_level) { \
1094 PyObject *v = POP(); \
1095 Py_XDECREF(v); \
1096 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001097
1098#define UNWIND_EXCEPT_HANDLER(b) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001099 { \
1100 PyObject *type, *value, *traceback; \
1101 assert(STACK_LEVEL() >= (b)->b_level + 3); \
1102 while (STACK_LEVEL() > (b)->b_level + 3) { \
1103 value = POP(); \
1104 Py_XDECREF(value); \
1105 } \
1106 type = tstate->exc_type; \
1107 value = tstate->exc_value; \
1108 traceback = tstate->exc_traceback; \
1109 tstate->exc_type = POP(); \
1110 tstate->exc_value = POP(); \
1111 tstate->exc_traceback = POP(); \
1112 Py_XDECREF(type); \
1113 Py_XDECREF(value); \
1114 Py_XDECREF(traceback); \
1115 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001116
Guido van Rossuma027efa1997-05-05 20:56:21 +00001117/* Start of code */
1118
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001119 /* push frame */
1120 if (Py_EnterRecursiveCall(""))
1121 return NULL;
Guido van Rossum8861b741996-07-30 16:49:37 +00001122
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001123 tstate->frame = f;
Tim Peters5ca576e2001-06-18 22:08:13 +00001124
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001125 if (tstate->use_tracing) {
1126 if (tstate->c_tracefunc != NULL) {
1127 /* tstate->c_tracefunc, if defined, is a
1128 function that will be called on *every* entry
1129 to a code block. Its return value, if not
1130 None, is a function that will be called at
1131 the start of each executed line of code.
1132 (Actually, the function must return itself
1133 in order to continue tracing.) The trace
1134 functions are called with three arguments:
1135 a pointer to the current frame, a string
1136 indicating why the function is called, and
1137 an argument which depends on the situation.
1138 The global trace function is also called
1139 whenever an exception is detected. */
1140 if (call_trace_protected(tstate->c_tracefunc,
1141 tstate->c_traceobj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01001142 tstate, f, PyTrace_CALL, Py_None)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001143 /* Trace function raised an error */
1144 goto exit_eval_frame;
1145 }
1146 }
1147 if (tstate->c_profilefunc != NULL) {
1148 /* Similar for c_profilefunc, except it needn't
1149 return itself and isn't called for "line" events */
1150 if (call_trace_protected(tstate->c_profilefunc,
1151 tstate->c_profileobj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01001152 tstate, f, PyTrace_CALL, Py_None)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001153 /* Profile function raised an error */
1154 goto exit_eval_frame;
1155 }
1156 }
1157 }
Neil Schemenauer6c0f2002001-09-04 19:03:35 +00001158
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001159 co = f->f_code;
1160 names = co->co_names;
1161 consts = co->co_consts;
1162 fastlocals = f->f_localsplus;
1163 freevars = f->f_localsplus + co->co_nlocals;
1164 first_instr = (unsigned char*) PyBytes_AS_STRING(co->co_code);
1165 /* An explanation is in order for the next line.
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001166
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001167 f->f_lasti now refers to the index of the last instruction
1168 executed. You might think this was obvious from the name, but
1169 this wasn't always true before 2.3! PyFrame_New now sets
1170 f->f_lasti to -1 (i.e. the index *before* the first instruction)
1171 and YIELD_VALUE doesn't fiddle with f_lasti any more. So this
1172 does work. Promise.
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001173 YIELD_FROM sets f_lasti to itself, in order to repeated yield
1174 multiple values.
Thomas Wouters902d6eb2007-01-09 23:18:33 +00001175
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001176 When the PREDICT() macros are enabled, some opcode pairs follow in
1177 direct succession without updating f->f_lasti. A successful
1178 prediction effectively links the two codes together as if they
1179 were a single new opcode; accordingly,f->f_lasti will point to
1180 the first code in the pair (for instance, GET_ITER followed by
1181 FOR_ITER is effectively a single opcode and f->f_lasti will point
1182 at to the beginning of the combined pair.)
1183 */
1184 next_instr = first_instr + f->f_lasti + 1;
1185 stack_pointer = f->f_stacktop;
1186 assert(stack_pointer != NULL);
1187 f->f_stacktop = NULL; /* remains NULL unless yield suspends frame */
Antoine Pitrou58720d62013-08-05 23:26:40 +02001188 f->f_executing = 1;
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001189
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001190 if (co->co_flags & CO_GENERATOR && !throwflag) {
1191 if (f->f_exc_type != NULL && f->f_exc_type != Py_None) {
1192 /* We were in an except handler when we left,
1193 restore the exception state which was put aside
1194 (see YIELD_VALUE). */
Benjamin Peterson87880242011-07-03 16:48:31 -05001195 swap_exc_state(tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001196 }
Benjamin Peterson87880242011-07-03 16:48:31 -05001197 else
1198 save_exc_state(tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001199 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001200
Tim Peters5ca576e2001-06-18 22:08:13 +00001201#ifdef LLTRACE
Victor Stinner3c1e4812012-03-26 22:10:51 +02001202 lltrace = _PyDict_GetItemId(f->f_globals, &PyId___ltrace__) != NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00001203#endif
Guido van Rossumac7be682001-01-17 15:42:30 +00001204
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001205 why = WHY_NOT;
Guido van Rossumac7be682001-01-17 15:42:30 +00001206
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001207 if (throwflag) /* support for generator.throw() */
1208 goto error;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001209
Victor Stinnerace47d72013-07-18 01:41:08 +02001210#ifdef Py_DEBUG
1211 /* PyEval_EvalFrameEx() must not be called with an exception set,
1212 because it may clear it (directly or indirectly) and so the
1213 caller looses its exception */
1214 assert(!PyErr_Occurred());
1215#endif
1216
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001217 for (;;) {
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001218#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001219 if (inst1 == 0) {
1220 /* Almost surely, the opcode executed a break
1221 or a continue, preventing inst1 from being set
1222 on the way out of the loop.
1223 */
1224 READ_TIMESTAMP(inst1);
1225 loop1 = inst1;
1226 }
1227 dump_tsc(opcode, ticked, inst0, inst1, loop0, loop1,
1228 intr0, intr1);
1229 ticked = 0;
1230 inst1 = 0;
1231 intr0 = 0;
1232 intr1 = 0;
1233 READ_TIMESTAMP(loop0);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001234#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001235 assert(stack_pointer >= f->f_valuestack); /* else underflow */
1236 assert(STACK_LEVEL() <= co->co_stacksize); /* else overflow */
Victor Stinnerace47d72013-07-18 01:41:08 +02001237 assert(!PyErr_Occurred());
Michael W. Hudsondd32a912002-08-15 14:59:02 +00001238
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001239 /* Do periodic things. Doing this every time through
1240 the loop would add too much overhead, so we do it
1241 only every Nth instruction. We also do it if
1242 ``pendingcalls_to_do'' is set, i.e. when an asynchronous
1243 event needs attention (e.g. a signal handler or
1244 async I/O handler); see Py_AddPendingCall() and
1245 Py_MakePendingCalls() above. */
Guido van Rossumac7be682001-01-17 15:42:30 +00001246
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001247 if (_Py_atomic_load_relaxed(&eval_breaker)) {
1248 if (*next_instr == SETUP_FINALLY) {
1249 /* Make the last opcode before
Ezio Melotti13925002011-03-16 11:05:33 +02001250 a try: finally: block uninterruptible. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001251 goto fast_next_opcode;
1252 }
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001253#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001254 ticked = 1;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001255#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001256 if (_Py_atomic_load_relaxed(&pendingcalls_to_do)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001257 if (Py_MakePendingCalls() < 0)
1258 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001259 }
Guido van Rossume59214e1994-08-30 08:01:59 +00001260#ifdef WITH_THREAD
Benjamin Petersond2be5b42010-09-10 22:47:02 +00001261 if (_Py_atomic_load_relaxed(&gil_drop_request)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001262 /* Give another thread a chance */
1263 if (PyThreadState_Swap(NULL) != tstate)
1264 Py_FatalError("ceval: tstate mix-up");
1265 drop_gil(tstate);
1266
1267 /* Other threads may run now */
1268
1269 take_gil(tstate);
1270 if (PyThreadState_Swap(tstate) != NULL)
1271 Py_FatalError("ceval: orphan tstate");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001272 }
Benjamin Petersond2be5b42010-09-10 22:47:02 +00001273#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001274 /* Check for asynchronous exceptions. */
1275 if (tstate->async_exc != NULL) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001276 PyObject *exc = tstate->async_exc;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001277 tstate->async_exc = NULL;
1278 UNSIGNAL_ASYNC_EXC();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001279 PyErr_SetNone(exc);
1280 Py_DECREF(exc);
1281 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001282 }
1283 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001284
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001285 fast_next_opcode:
1286 f->f_lasti = INSTR_OFFSET();
Guido van Rossumac7be682001-01-17 15:42:30 +00001287
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001288 /* line-by-line tracing support */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001289
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001290 if (_Py_TracingPossible &&
Benjamin Peterson51f46162013-01-23 08:38:47 -05001291 tstate->c_tracefunc != NULL && !tstate->tracing) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001292 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001293 /* see maybe_call_line_trace
1294 for expository comments */
1295 f->f_stacktop = stack_pointer;
Tim Peters8a5c3c72004-04-05 19:36:21 +00001296
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001297 err = maybe_call_line_trace(tstate->c_tracefunc,
1298 tstate->c_traceobj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01001299 tstate, f,
1300 &instr_lb, &instr_ub, &instr_prev);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001301 /* Reload possibly changed frame fields */
1302 JUMPTO(f->f_lasti);
1303 if (f->f_stacktop != NULL) {
1304 stack_pointer = f->f_stacktop;
1305 f->f_stacktop = NULL;
1306 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001307 if (err)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001308 /* trace function raised an exception */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001309 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001310 }
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001311
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001312 /* Extract opcode and argument */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001313
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001314 opcode = NEXTOP();
1315 oparg = 0; /* allows oparg to be stored in a register because
1316 it doesn't have to be remembered across a full loop */
1317 if (HAS_ARG(opcode))
1318 oparg = NEXTARG();
Stefan Krahb7e10102010-06-23 18:42:39 +00001319 dispatch_opcode:
Guido van Rossum950361c1997-01-24 13:49:28 +00001320#ifdef DYNAMIC_EXECUTION_PROFILE
1321#ifdef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001322 dxpairs[lastopcode][opcode]++;
1323 lastopcode = opcode;
Guido van Rossum950361c1997-01-24 13:49:28 +00001324#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001325 dxp[opcode]++;
Guido van Rossum950361c1997-01-24 13:49:28 +00001326#endif
Guido van Rossum374a9221991-04-04 10:40:29 +00001327
Guido van Rossum96a42c81992-01-12 02:29:51 +00001328#ifdef LLTRACE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001329 /* Instruction tracing */
Guido van Rossumac7be682001-01-17 15:42:30 +00001330
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001331 if (lltrace) {
1332 if (HAS_ARG(opcode)) {
1333 printf("%d: %d, %d\n",
1334 f->f_lasti, opcode, oparg);
1335 }
1336 else {
1337 printf("%d: %d\n",
1338 f->f_lasti, opcode);
1339 }
1340 }
Guido van Rossum374a9221991-04-04 10:40:29 +00001341#endif
Michael W. Hudsondd32a912002-08-15 14:59:02 +00001342
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001343 /* Main switch on opcode */
1344 READ_TIMESTAMP(inst0);
Jeremy Hylton52820442001-01-03 23:52:36 +00001345
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001346 switch (opcode) {
Guido van Rossumac7be682001-01-17 15:42:30 +00001347
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001348 /* BEWARE!
1349 It is essential that any operation that fails sets either
1350 x to NULL, err to nonzero, or why to anything but WHY_NOT,
1351 and that no operation that succeeds does this! */
Guido van Rossumac7be682001-01-17 15:42:30 +00001352
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001353 TARGET(NOP)
1354 FAST_DISPATCH();
Raymond Hettinger9c18e812004-06-21 16:31:15 +00001355
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001356 TARGET(LOAD_FAST) {
1357 PyObject *value = GETLOCAL(oparg);
1358 if (value == NULL) {
1359 format_exc_check_arg(PyExc_UnboundLocalError,
1360 UNBOUNDLOCAL_ERROR_MSG,
1361 PyTuple_GetItem(co->co_varnames, oparg));
1362 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001363 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001364 Py_INCREF(value);
1365 PUSH(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001366 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001367 }
1368
1369 TARGET(LOAD_CONST) {
1370 PyObject *value = GETITEM(consts, oparg);
1371 Py_INCREF(value);
1372 PUSH(value);
1373 FAST_DISPATCH();
1374 }
Neil Schemenauer63543862002-02-17 19:10:14 +00001375
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001376 PREDICTED_WITH_ARG(STORE_FAST);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001377 TARGET(STORE_FAST) {
1378 PyObject *value = POP();
1379 SETLOCAL(oparg, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001380 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001381 }
Neil Schemenauer63543862002-02-17 19:10:14 +00001382
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001383 TARGET(POP_TOP) {
1384 PyObject *value = POP();
1385 Py_DECREF(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001386 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001387 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001388
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001389 TARGET(ROT_TWO) {
1390 PyObject *top = TOP();
1391 PyObject *second = SECOND();
1392 SET_TOP(second);
1393 SET_SECOND(top);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001394 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001395 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001396
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001397 TARGET(ROT_THREE) {
1398 PyObject *top = TOP();
1399 PyObject *second = SECOND();
1400 PyObject *third = THIRD();
1401 SET_TOP(second);
1402 SET_SECOND(third);
1403 SET_THIRD(top);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001404 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001405 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001406
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001407 TARGET(DUP_TOP) {
1408 PyObject *top = TOP();
1409 Py_INCREF(top);
1410 PUSH(top);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001411 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001412 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001413
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001414 TARGET(DUP_TOP_TWO) {
1415 PyObject *top = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001416 PyObject *second = SECOND();
Benjamin Petersonf208df32012-10-12 11:37:56 -04001417 Py_INCREF(top);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001418 Py_INCREF(second);
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00001419 STACKADJ(2);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001420 SET_TOP(top);
1421 SET_SECOND(second);
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00001422 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001423 }
Thomas Wouters434d0822000-08-24 20:11:32 +00001424
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001425 TARGET(UNARY_POSITIVE) {
1426 PyObject *value = TOP();
1427 PyObject *res = PyNumber_Positive(value);
1428 Py_DECREF(value);
1429 SET_TOP(res);
1430 if (res == NULL)
1431 goto error;
1432 DISPATCH();
1433 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001434
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001435 TARGET(UNARY_NEGATIVE) {
1436 PyObject *value = TOP();
1437 PyObject *res = PyNumber_Negative(value);
1438 Py_DECREF(value);
1439 SET_TOP(res);
1440 if (res == NULL)
1441 goto error;
1442 DISPATCH();
1443 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001444
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001445 TARGET(UNARY_NOT) {
1446 PyObject *value = TOP();
1447 int err = PyObject_IsTrue(value);
1448 Py_DECREF(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001449 if (err == 0) {
1450 Py_INCREF(Py_True);
1451 SET_TOP(Py_True);
1452 DISPATCH();
1453 }
1454 else if (err > 0) {
1455 Py_INCREF(Py_False);
1456 SET_TOP(Py_False);
1457 err = 0;
1458 DISPATCH();
1459 }
1460 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001461 goto error;
1462 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001463
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001464 TARGET(UNARY_INVERT) {
1465 PyObject *value = TOP();
1466 PyObject *res = PyNumber_Invert(value);
1467 Py_DECREF(value);
1468 SET_TOP(res);
1469 if (res == NULL)
1470 goto error;
1471 DISPATCH();
1472 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001473
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001474 TARGET(BINARY_POWER) {
1475 PyObject *exp = POP();
1476 PyObject *base = TOP();
1477 PyObject *res = PyNumber_Power(base, exp, Py_None);
1478 Py_DECREF(base);
1479 Py_DECREF(exp);
1480 SET_TOP(res);
1481 if (res == NULL)
1482 goto error;
1483 DISPATCH();
1484 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001485
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001486 TARGET(BINARY_MULTIPLY) {
1487 PyObject *right = POP();
1488 PyObject *left = TOP();
1489 PyObject *res = PyNumber_Multiply(left, right);
1490 Py_DECREF(left);
1491 Py_DECREF(right);
1492 SET_TOP(res);
1493 if (res == NULL)
1494 goto error;
1495 DISPATCH();
1496 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001497
Benjamin Petersond51374e2014-04-09 23:55:56 -04001498 TARGET(BINARY_MATRIX_MULTIPLY) {
1499 PyObject *right = POP();
1500 PyObject *left = TOP();
1501 PyObject *res = PyNumber_MatrixMultiply(left, right);
1502 Py_DECREF(left);
1503 Py_DECREF(right);
1504 SET_TOP(res);
1505 if (res == NULL)
1506 goto error;
1507 DISPATCH();
1508 }
1509
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001510 TARGET(BINARY_TRUE_DIVIDE) {
1511 PyObject *divisor = POP();
1512 PyObject *dividend = TOP();
1513 PyObject *quotient = PyNumber_TrueDivide(dividend, divisor);
1514 Py_DECREF(dividend);
1515 Py_DECREF(divisor);
1516 SET_TOP(quotient);
1517 if (quotient == NULL)
1518 goto error;
1519 DISPATCH();
1520 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001521
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001522 TARGET(BINARY_FLOOR_DIVIDE) {
1523 PyObject *divisor = POP();
1524 PyObject *dividend = TOP();
1525 PyObject *quotient = PyNumber_FloorDivide(dividend, divisor);
1526 Py_DECREF(dividend);
1527 Py_DECREF(divisor);
1528 SET_TOP(quotient);
1529 if (quotient == NULL)
1530 goto error;
1531 DISPATCH();
1532 }
Guido van Rossum4668b002001-08-08 05:00:18 +00001533
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001534 TARGET(BINARY_MODULO) {
1535 PyObject *divisor = POP();
1536 PyObject *dividend = TOP();
1537 PyObject *res = PyUnicode_CheckExact(dividend) ?
1538 PyUnicode_Format(dividend, divisor) :
1539 PyNumber_Remainder(dividend, divisor);
1540 Py_DECREF(divisor);
1541 Py_DECREF(dividend);
1542 SET_TOP(res);
1543 if (res == NULL)
1544 goto error;
1545 DISPATCH();
1546 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001547
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001548 TARGET(BINARY_ADD) {
1549 PyObject *right = POP();
1550 PyObject *left = TOP();
1551 PyObject *sum;
1552 if (PyUnicode_CheckExact(left) &&
1553 PyUnicode_CheckExact(right)) {
1554 sum = unicode_concatenate(left, right, f, next_instr);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001555 /* unicode_concatenate consumed the ref to v */
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001556 }
1557 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001558 sum = PyNumber_Add(left, right);
1559 Py_DECREF(left);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001560 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001561 Py_DECREF(right);
1562 SET_TOP(sum);
1563 if (sum == NULL)
1564 goto error;
1565 DISPATCH();
1566 }
1567
1568 TARGET(BINARY_SUBTRACT) {
1569 PyObject *right = POP();
1570 PyObject *left = TOP();
1571 PyObject *diff = PyNumber_Subtract(left, right);
1572 Py_DECREF(right);
1573 Py_DECREF(left);
1574 SET_TOP(diff);
1575 if (diff == NULL)
1576 goto error;
1577 DISPATCH();
1578 }
1579
1580 TARGET(BINARY_SUBSCR) {
1581 PyObject *sub = POP();
1582 PyObject *container = TOP();
1583 PyObject *res = PyObject_GetItem(container, sub);
1584 Py_DECREF(container);
1585 Py_DECREF(sub);
1586 SET_TOP(res);
1587 if (res == NULL)
1588 goto error;
1589 DISPATCH();
1590 }
1591
1592 TARGET(BINARY_LSHIFT) {
1593 PyObject *right = POP();
1594 PyObject *left = TOP();
1595 PyObject *res = PyNumber_Lshift(left, right);
1596 Py_DECREF(left);
1597 Py_DECREF(right);
1598 SET_TOP(res);
1599 if (res == NULL)
1600 goto error;
1601 DISPATCH();
1602 }
1603
1604 TARGET(BINARY_RSHIFT) {
1605 PyObject *right = POP();
1606 PyObject *left = TOP();
1607 PyObject *res = PyNumber_Rshift(left, right);
1608 Py_DECREF(left);
1609 Py_DECREF(right);
1610 SET_TOP(res);
1611 if (res == NULL)
1612 goto error;
1613 DISPATCH();
1614 }
1615
1616 TARGET(BINARY_AND) {
1617 PyObject *right = POP();
1618 PyObject *left = TOP();
1619 PyObject *res = PyNumber_And(left, right);
1620 Py_DECREF(left);
1621 Py_DECREF(right);
1622 SET_TOP(res);
1623 if (res == NULL)
1624 goto error;
1625 DISPATCH();
1626 }
1627
1628 TARGET(BINARY_XOR) {
1629 PyObject *right = POP();
1630 PyObject *left = TOP();
1631 PyObject *res = PyNumber_Xor(left, right);
1632 Py_DECREF(left);
1633 Py_DECREF(right);
1634 SET_TOP(res);
1635 if (res == NULL)
1636 goto error;
1637 DISPATCH();
1638 }
1639
1640 TARGET(BINARY_OR) {
1641 PyObject *right = POP();
1642 PyObject *left = TOP();
1643 PyObject *res = PyNumber_Or(left, right);
1644 Py_DECREF(left);
1645 Py_DECREF(right);
1646 SET_TOP(res);
1647 if (res == NULL)
1648 goto error;
1649 DISPATCH();
1650 }
1651
1652 TARGET(LIST_APPEND) {
1653 PyObject *v = POP();
1654 PyObject *list = PEEK(oparg);
1655 int err;
1656 err = PyList_Append(list, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001657 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001658 if (err != 0)
1659 goto error;
1660 PREDICT(JUMP_ABSOLUTE);
1661 DISPATCH();
1662 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001663
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001664 TARGET(SET_ADD) {
1665 PyObject *v = POP();
1666 PyObject *set = stack_pointer[-oparg];
1667 int err;
1668 err = PySet_Add(set, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001669 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001670 if (err != 0)
1671 goto error;
1672 PREDICT(JUMP_ABSOLUTE);
1673 DISPATCH();
1674 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001675
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001676 TARGET(INPLACE_POWER) {
1677 PyObject *exp = POP();
1678 PyObject *base = TOP();
1679 PyObject *res = PyNumber_InPlacePower(base, exp, Py_None);
1680 Py_DECREF(base);
1681 Py_DECREF(exp);
1682 SET_TOP(res);
1683 if (res == NULL)
1684 goto error;
1685 DISPATCH();
1686 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001687
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001688 TARGET(INPLACE_MULTIPLY) {
1689 PyObject *right = POP();
1690 PyObject *left = TOP();
1691 PyObject *res = PyNumber_InPlaceMultiply(left, right);
1692 Py_DECREF(left);
1693 Py_DECREF(right);
1694 SET_TOP(res);
1695 if (res == NULL)
1696 goto error;
1697 DISPATCH();
1698 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001699
Benjamin Petersond51374e2014-04-09 23:55:56 -04001700 TARGET(INPLACE_MATRIX_MULTIPLY) {
1701 PyObject *right = POP();
1702 PyObject *left = TOP();
1703 PyObject *res = PyNumber_InPlaceMatrixMultiply(left, right);
1704 Py_DECREF(left);
1705 Py_DECREF(right);
1706 SET_TOP(res);
1707 if (res == NULL)
1708 goto error;
1709 DISPATCH();
1710 }
1711
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001712 TARGET(INPLACE_TRUE_DIVIDE) {
1713 PyObject *divisor = POP();
1714 PyObject *dividend = TOP();
1715 PyObject *quotient = PyNumber_InPlaceTrueDivide(dividend, divisor);
1716 Py_DECREF(dividend);
1717 Py_DECREF(divisor);
1718 SET_TOP(quotient);
1719 if (quotient == NULL)
1720 goto error;
1721 DISPATCH();
1722 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001723
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001724 TARGET(INPLACE_FLOOR_DIVIDE) {
1725 PyObject *divisor = POP();
1726 PyObject *dividend = TOP();
1727 PyObject *quotient = PyNumber_InPlaceFloorDivide(dividend, divisor);
1728 Py_DECREF(dividend);
1729 Py_DECREF(divisor);
1730 SET_TOP(quotient);
1731 if (quotient == NULL)
1732 goto error;
1733 DISPATCH();
1734 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001735
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001736 TARGET(INPLACE_MODULO) {
1737 PyObject *right = POP();
1738 PyObject *left = TOP();
1739 PyObject *mod = PyNumber_InPlaceRemainder(left, right);
1740 Py_DECREF(left);
1741 Py_DECREF(right);
1742 SET_TOP(mod);
1743 if (mod == NULL)
1744 goto error;
1745 DISPATCH();
1746 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001747
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001748 TARGET(INPLACE_ADD) {
1749 PyObject *right = POP();
1750 PyObject *left = TOP();
1751 PyObject *sum;
1752 if (PyUnicode_CheckExact(left) && PyUnicode_CheckExact(right)) {
1753 sum = unicode_concatenate(left, right, f, next_instr);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001754 /* unicode_concatenate consumed the ref to v */
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001755 }
1756 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001757 sum = PyNumber_InPlaceAdd(left, right);
1758 Py_DECREF(left);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001759 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001760 Py_DECREF(right);
1761 SET_TOP(sum);
1762 if (sum == NULL)
1763 goto error;
1764 DISPATCH();
1765 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001766
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001767 TARGET(INPLACE_SUBTRACT) {
1768 PyObject *right = POP();
1769 PyObject *left = TOP();
1770 PyObject *diff = PyNumber_InPlaceSubtract(left, right);
1771 Py_DECREF(left);
1772 Py_DECREF(right);
1773 SET_TOP(diff);
1774 if (diff == NULL)
1775 goto error;
1776 DISPATCH();
1777 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001778
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001779 TARGET(INPLACE_LSHIFT) {
1780 PyObject *right = POP();
1781 PyObject *left = TOP();
1782 PyObject *res = PyNumber_InPlaceLshift(left, right);
1783 Py_DECREF(left);
1784 Py_DECREF(right);
1785 SET_TOP(res);
1786 if (res == NULL)
1787 goto error;
1788 DISPATCH();
1789 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001790
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001791 TARGET(INPLACE_RSHIFT) {
1792 PyObject *right = POP();
1793 PyObject *left = TOP();
1794 PyObject *res = PyNumber_InPlaceRshift(left, right);
1795 Py_DECREF(left);
1796 Py_DECREF(right);
1797 SET_TOP(res);
1798 if (res == NULL)
1799 goto error;
1800 DISPATCH();
1801 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001802
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001803 TARGET(INPLACE_AND) {
1804 PyObject *right = POP();
1805 PyObject *left = TOP();
1806 PyObject *res = PyNumber_InPlaceAnd(left, right);
1807 Py_DECREF(left);
1808 Py_DECREF(right);
1809 SET_TOP(res);
1810 if (res == NULL)
1811 goto error;
1812 DISPATCH();
1813 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001814
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001815 TARGET(INPLACE_XOR) {
1816 PyObject *right = POP();
1817 PyObject *left = TOP();
1818 PyObject *res = PyNumber_InPlaceXor(left, right);
1819 Py_DECREF(left);
1820 Py_DECREF(right);
1821 SET_TOP(res);
1822 if (res == NULL)
1823 goto error;
1824 DISPATCH();
1825 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001826
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001827 TARGET(INPLACE_OR) {
1828 PyObject *right = POP();
1829 PyObject *left = TOP();
1830 PyObject *res = PyNumber_InPlaceOr(left, right);
1831 Py_DECREF(left);
1832 Py_DECREF(right);
1833 SET_TOP(res);
1834 if (res == NULL)
1835 goto error;
1836 DISPATCH();
1837 }
Thomas Wouters434d0822000-08-24 20:11:32 +00001838
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001839 TARGET(STORE_SUBSCR) {
1840 PyObject *sub = TOP();
1841 PyObject *container = SECOND();
1842 PyObject *v = THIRD();
1843 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001844 STACKADJ(-3);
1845 /* v[w] = u */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001846 err = PyObject_SetItem(container, sub, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001847 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001848 Py_DECREF(container);
1849 Py_DECREF(sub);
1850 if (err != 0)
1851 goto error;
1852 DISPATCH();
1853 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001854
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001855 TARGET(DELETE_SUBSCR) {
1856 PyObject *sub = TOP();
1857 PyObject *container = SECOND();
1858 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001859 STACKADJ(-2);
1860 /* del v[w] */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001861 err = PyObject_DelItem(container, sub);
1862 Py_DECREF(container);
1863 Py_DECREF(sub);
1864 if (err != 0)
1865 goto error;
1866 DISPATCH();
1867 }
Barry Warsaw23c9ec82000-08-21 15:44:01 +00001868
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001869 TARGET(PRINT_EXPR) {
Victor Stinnercab75e32013-11-06 22:38:37 +01001870 _Py_IDENTIFIER(displayhook);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001871 PyObject *value = POP();
Victor Stinnercab75e32013-11-06 22:38:37 +01001872 PyObject *hook = _PySys_GetObjectId(&PyId_displayhook);
Benjamin Petersonfe1bcb62012-10-12 11:40:01 -04001873 PyObject *res;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001874 if (hook == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001875 PyErr_SetString(PyExc_RuntimeError,
1876 "lost sys.displayhook");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001877 Py_DECREF(value);
1878 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001879 }
Benjamin Petersonfe1bcb62012-10-12 11:40:01 -04001880 res = PyObject_CallFunctionObjArgs(hook, value, NULL);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001881 Py_DECREF(value);
1882 if (res == NULL)
1883 goto error;
1884 Py_DECREF(res);
1885 DISPATCH();
1886 }
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +00001887
Thomas Wouters434d0822000-08-24 20:11:32 +00001888#ifdef CASE_TOO_BIG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001889 default: switch (opcode) {
Thomas Wouters434d0822000-08-24 20:11:32 +00001890#endif
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001891 TARGET(RAISE_VARARGS) {
1892 PyObject *cause = NULL, *exc = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001893 switch (oparg) {
1894 case 2:
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001895 cause = POP(); /* cause */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001896 case 1:
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001897 exc = POP(); /* exc */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001898 case 0: /* Fallthrough */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001899 if (do_raise(exc, cause)) {
1900 why = WHY_EXCEPTION;
1901 goto fast_block_end;
1902 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001903 break;
1904 default:
1905 PyErr_SetString(PyExc_SystemError,
1906 "bad RAISE_VARARGS oparg");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001907 break;
1908 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001909 goto error;
1910 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001911
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001912 TARGET(RETURN_VALUE) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001913 retval = POP();
1914 why = WHY_RETURN;
1915 goto fast_block_end;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001916 }
Guido van Rossumdb3165e1993-10-18 17:06:59 +00001917
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001918 TARGET(YIELD_FROM) {
1919 PyObject *v = POP();
1920 PyObject *reciever = TOP();
1921 int err;
1922 if (PyGen_CheckExact(reciever)) {
1923 retval = _PyGen_Send((PyGenObject *)reciever, v);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001924 } else {
Benjamin Peterson302e7902012-03-20 23:17:04 -04001925 _Py_IDENTIFIER(send);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001926 if (v == Py_None)
1927 retval = Py_TYPE(reciever)->tp_iternext(reciever);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001928 else
Benjamin Petersonf6e50b42014-04-13 23:52:01 -04001929 retval = _PyObject_CallMethodIdObjArgs(reciever, &PyId_send, v, NULL);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001930 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001931 Py_DECREF(v);
1932 if (retval == NULL) {
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001933 PyObject *val;
Guido van Rossum8820c232013-11-21 11:30:06 -08001934 if (tstate->c_tracefunc != NULL
1935 && PyErr_ExceptionMatches(PyExc_StopIteration))
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01001936 call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, f);
Nick Coghlanc40bc092012-06-17 15:15:49 +10001937 err = _PyGen_FetchStopIterationValue(&val);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001938 if (err < 0)
1939 goto error;
1940 Py_DECREF(reciever);
1941 SET_TOP(val);
1942 DISPATCH();
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001943 }
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001944 /* x remains on stack, retval is value to be yielded */
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001945 f->f_stacktop = stack_pointer;
1946 why = WHY_YIELD;
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001947 /* and repeat... */
1948 f->f_lasti--;
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001949 goto fast_yield;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001950 }
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001951
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001952 TARGET(YIELD_VALUE) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001953 retval = POP();
1954 f->f_stacktop = stack_pointer;
1955 why = WHY_YIELD;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001956 goto fast_yield;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001957 }
Tim Peters5ca576e2001-06-18 22:08:13 +00001958
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001959 TARGET(POP_EXCEPT) {
1960 PyTryBlock *b = PyFrame_BlockPop(f);
1961 if (b->b_type != EXCEPT_HANDLER) {
1962 PyErr_SetString(PyExc_SystemError,
1963 "popped block is not an except handler");
1964 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001965 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001966 UNWIND_EXCEPT_HANDLER(b);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001967 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001968 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001969
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001970 TARGET(POP_BLOCK) {
1971 PyTryBlock *b = PyFrame_BlockPop(f);
1972 UNWIND_BLOCK(b);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001973 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001974 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001975
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001976 PREDICTED(END_FINALLY);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001977 TARGET(END_FINALLY) {
1978 PyObject *status = POP();
1979 if (PyLong_Check(status)) {
1980 why = (enum why_code) PyLong_AS_LONG(status);
1981 assert(why != WHY_YIELD && why != WHY_EXCEPTION);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001982 if (why == WHY_RETURN ||
1983 why == WHY_CONTINUE)
1984 retval = POP();
1985 if (why == WHY_SILENCED) {
1986 /* An exception was silenced by 'with', we must
1987 manually unwind the EXCEPT_HANDLER block which was
1988 created when the exception was caught, otherwise
1989 the stack will be in an inconsistent state. */
1990 PyTryBlock *b = PyFrame_BlockPop(f);
1991 assert(b->b_type == EXCEPT_HANDLER);
1992 UNWIND_EXCEPT_HANDLER(b);
1993 why = WHY_NOT;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001994 Py_DECREF(status);
1995 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001996 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04001997 Py_DECREF(status);
1998 goto fast_block_end;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001999 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002000 else if (PyExceptionClass_Check(status)) {
2001 PyObject *exc = POP();
2002 PyObject *tb = POP();
2003 PyErr_Restore(status, exc, tb);
2004 why = WHY_EXCEPTION;
2005 goto fast_block_end;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002006 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002007 else if (status != Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002008 PyErr_SetString(PyExc_SystemError,
2009 "'finally' pops bad exception");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002010 Py_DECREF(status);
2011 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002012 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002013 Py_DECREF(status);
2014 DISPATCH();
2015 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002016
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002017 TARGET(LOAD_BUILD_CLASS) {
Victor Stinner3c1e4812012-03-26 22:10:51 +02002018 _Py_IDENTIFIER(__build_class__);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002019
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002020 PyObject *bc;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002021 if (PyDict_CheckExact(f->f_builtins)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002022 bc = _PyDict_GetItemId(f->f_builtins, &PyId___build_class__);
2023 if (bc == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002024 PyErr_SetString(PyExc_NameError,
2025 "__build_class__ not found");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002026 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002027 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002028 Py_INCREF(bc);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002029 }
2030 else {
2031 PyObject *build_class_str = _PyUnicode_FromId(&PyId___build_class__);
2032 if (build_class_str == NULL)
2033 break;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002034 bc = PyObject_GetItem(f->f_builtins, build_class_str);
2035 if (bc == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002036 if (PyErr_ExceptionMatches(PyExc_KeyError))
2037 PyErr_SetString(PyExc_NameError,
2038 "__build_class__ not found");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002039 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002040 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002041 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002042 PUSH(bc);
Benjamin Peterson00f86f22012-10-10 14:10:33 -04002043 DISPATCH();
Victor Stinner3c1e4812012-03-26 22:10:51 +02002044 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002045
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002046 TARGET(STORE_NAME) {
2047 PyObject *name = GETITEM(names, oparg);
2048 PyObject *v = POP();
2049 PyObject *ns = f->f_locals;
2050 int err;
2051 if (ns == NULL) {
2052 PyErr_Format(PyExc_SystemError,
2053 "no locals found when storing %R", name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002054 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002055 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002056 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002057 if (PyDict_CheckExact(ns))
2058 err = PyDict_SetItem(ns, name, v);
2059 else
2060 err = PyObject_SetItem(ns, name, v);
2061 Py_DECREF(v);
2062 if (err != 0)
2063 goto error;
2064 DISPATCH();
2065 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002066
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002067 TARGET(DELETE_NAME) {
2068 PyObject *name = GETITEM(names, oparg);
2069 PyObject *ns = f->f_locals;
2070 int err;
2071 if (ns == NULL) {
2072 PyErr_Format(PyExc_SystemError,
2073 "no locals when deleting %R", name);
2074 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002075 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002076 err = PyObject_DelItem(ns, name);
2077 if (err != 0) {
2078 format_exc_check_arg(PyExc_NameError,
2079 NAME_ERROR_MSG,
2080 name);
2081 goto error;
2082 }
2083 DISPATCH();
2084 }
Guido van Rossum04691fc1992-08-12 15:35:34 +00002085
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002086 PREDICTED_WITH_ARG(UNPACK_SEQUENCE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002087 TARGET(UNPACK_SEQUENCE) {
2088 PyObject *seq = POP(), *item, **items;
2089 if (PyTuple_CheckExact(seq) &&
2090 PyTuple_GET_SIZE(seq) == oparg) {
2091 items = ((PyTupleObject *)seq)->ob_item;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002092 while (oparg--) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002093 item = items[oparg];
2094 Py_INCREF(item);
2095 PUSH(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002096 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002097 } else if (PyList_CheckExact(seq) &&
2098 PyList_GET_SIZE(seq) == oparg) {
2099 items = ((PyListObject *)seq)->ob_item;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002100 while (oparg--) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002101 item = items[oparg];
2102 Py_INCREF(item);
2103 PUSH(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002104 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002105 } else if (unpack_iterable(seq, oparg, -1,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002106 stack_pointer + oparg)) {
2107 STACKADJ(oparg);
2108 } else {
2109 /* unpack_iterable() raised an exception */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002110 Py_DECREF(seq);
2111 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002112 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002113 Py_DECREF(seq);
Benjamin Peterson00f86f22012-10-10 14:10:33 -04002114 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002115 }
Guido van Rossum0368b722007-05-11 16:50:42 +00002116
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002117 TARGET(UNPACK_EX) {
2118 int totalargs = 1 + (oparg & 0xFF) + (oparg >> 8);
2119 PyObject *seq = POP();
2120
2121 if (unpack_iterable(seq, oparg & 0xFF, oparg >> 8,
2122 stack_pointer + totalargs)) {
2123 stack_pointer += totalargs;
2124 } else {
2125 Py_DECREF(seq);
2126 goto error;
2127 }
2128 Py_DECREF(seq);
2129 DISPATCH();
2130 }
2131
2132 TARGET(STORE_ATTR) {
2133 PyObject *name = GETITEM(names, oparg);
2134 PyObject *owner = TOP();
2135 PyObject *v = SECOND();
2136 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002137 STACKADJ(-2);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002138 err = PyObject_SetAttr(owner, name, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002139 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002140 Py_DECREF(owner);
2141 if (err != 0)
2142 goto error;
2143 DISPATCH();
2144 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002145
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002146 TARGET(DELETE_ATTR) {
2147 PyObject *name = GETITEM(names, oparg);
2148 PyObject *owner = POP();
2149 int err;
2150 err = PyObject_SetAttr(owner, name, (PyObject *)NULL);
2151 Py_DECREF(owner);
2152 if (err != 0)
2153 goto error;
2154 DISPATCH();
2155 }
2156
2157 TARGET(STORE_GLOBAL) {
2158 PyObject *name = GETITEM(names, oparg);
2159 PyObject *v = POP();
2160 int err;
2161 err = PyDict_SetItem(f->f_globals, name, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002162 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002163 if (err != 0)
2164 goto error;
2165 DISPATCH();
2166 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002167
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002168 TARGET(DELETE_GLOBAL) {
2169 PyObject *name = GETITEM(names, oparg);
2170 int err;
2171 err = PyDict_DelItem(f->f_globals, name);
2172 if (err != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002173 format_exc_check_arg(
Ezio Melotti04a29552013-03-03 15:12:44 +02002174 PyExc_NameError, NAME_ERROR_MSG, name);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002175 goto error;
Benjamin Peterson00f86f22012-10-10 14:10:33 -04002176 }
2177 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002178 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002179
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002180 TARGET(LOAD_NAME) {
2181 PyObject *name = GETITEM(names, oparg);
2182 PyObject *locals = f->f_locals;
2183 PyObject *v;
2184 if (locals == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002185 PyErr_Format(PyExc_SystemError,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002186 "no locals when loading %R", name);
2187 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002188 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002189 if (PyDict_CheckExact(locals)) {
2190 v = PyDict_GetItem(locals, name);
2191 Py_XINCREF(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002192 }
2193 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002194 v = PyObject_GetItem(locals, name);
Antoine Pitrou1cfa0ba2013-10-07 20:40:59 +02002195 if (v == NULL && _PyErr_OCCURRED()) {
Benjamin Peterson92722792012-12-15 12:51:05 -05002196 if (!PyErr_ExceptionMatches(PyExc_KeyError))
2197 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002198 PyErr_Clear();
2199 }
2200 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002201 if (v == NULL) {
2202 v = PyDict_GetItem(f->f_globals, name);
2203 Py_XINCREF(v);
2204 if (v == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002205 if (PyDict_CheckExact(f->f_builtins)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002206 v = PyDict_GetItem(f->f_builtins, name);
2207 if (v == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002208 format_exc_check_arg(
2209 PyExc_NameError,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002210 NAME_ERROR_MSG, name);
2211 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002212 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002213 Py_INCREF(v);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002214 }
2215 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002216 v = PyObject_GetItem(f->f_builtins, name);
2217 if (v == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002218 if (PyErr_ExceptionMatches(PyExc_KeyError))
2219 format_exc_check_arg(
2220 PyExc_NameError,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002221 NAME_ERROR_MSG, name);
2222 goto error;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002223 }
Benjamin Peterson20f9c3c2010-07-20 22:39:34 +00002224 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002225 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002226 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002227 PUSH(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002228 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002229 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002230
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002231 TARGET(LOAD_GLOBAL) {
2232 PyObject *name = GETITEM(names, oparg);
2233 PyObject *v;
Victor Stinnerb0b22422012-04-19 00:57:45 +02002234 if (PyDict_CheckExact(f->f_globals)
2235 && PyDict_CheckExact(f->f_builtins)) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002236 v = _PyDict_LoadGlobal((PyDictObject *)f->f_globals,
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002237 (PyDictObject *)f->f_builtins,
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002238 name);
2239 if (v == NULL) {
Antoine Pitrou59c900d2013-10-07 20:38:51 +02002240 if (!_PyErr_OCCURRED())
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002241 format_exc_check_arg(PyExc_NameError,
Ezio Melotti04a29552013-03-03 15:12:44 +02002242 NAME_ERROR_MSG, name);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002243 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002244 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002245 Py_INCREF(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002246 }
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002247 else {
2248 /* Slow-path if globals or builtins is not a dict */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002249 v = PyObject_GetItem(f->f_globals, name);
2250 if (v == NULL) {
2251 v = PyObject_GetItem(f->f_builtins, name);
2252 if (v == NULL) {
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002253 if (PyErr_ExceptionMatches(PyExc_KeyError))
2254 format_exc_check_arg(
2255 PyExc_NameError,
Ezio Melotti04a29552013-03-03 15:12:44 +02002256 NAME_ERROR_MSG, name);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002257 goto error;
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002258 }
2259 }
2260 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002261 PUSH(v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002262 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002263 }
Guido van Rossum681d79a1995-07-18 14:51:37 +00002264
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002265 TARGET(DELETE_FAST) {
2266 PyObject *v = GETLOCAL(oparg);
2267 if (v != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002268 SETLOCAL(oparg, NULL);
2269 DISPATCH();
2270 }
2271 format_exc_check_arg(
2272 PyExc_UnboundLocalError,
2273 UNBOUNDLOCAL_ERROR_MSG,
2274 PyTuple_GetItem(co->co_varnames, oparg)
2275 );
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002276 goto error;
2277 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002278
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002279 TARGET(DELETE_DEREF) {
2280 PyObject *cell = freevars[oparg];
2281 if (PyCell_GET(cell) != NULL) {
2282 PyCell_Set(cell, NULL);
Benjamin Peterson00ebe2c2010-09-10 22:02:31 +00002283 DISPATCH();
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002284 }
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002285 format_exc_unbound(co, oparg);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002286 goto error;
2287 }
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002288
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002289 TARGET(LOAD_CLOSURE) {
2290 PyObject *cell = freevars[oparg];
2291 Py_INCREF(cell);
2292 PUSH(cell);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002293 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002294 }
Jeremy Hylton64949cb2001-01-25 20:06:59 +00002295
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04002296 TARGET(LOAD_CLASSDEREF) {
2297 PyObject *name, *value, *locals = f->f_locals;
Victor Stinnerd3dfd0e2013-05-16 23:48:01 +02002298 Py_ssize_t idx;
Benjamin Peterson3b0431d2013-04-30 09:41:40 -04002299 assert(locals);
2300 assert(oparg >= PyTuple_GET_SIZE(co->co_cellvars));
2301 idx = oparg - PyTuple_GET_SIZE(co->co_cellvars);
2302 assert(idx >= 0 && idx < PyTuple_GET_SIZE(co->co_freevars));
2303 name = PyTuple_GET_ITEM(co->co_freevars, idx);
2304 if (PyDict_CheckExact(locals)) {
2305 value = PyDict_GetItem(locals, name);
2306 Py_XINCREF(value);
2307 }
2308 else {
2309 value = PyObject_GetItem(locals, name);
2310 if (value == NULL && PyErr_Occurred()) {
2311 if (!PyErr_ExceptionMatches(PyExc_KeyError))
2312 goto error;
2313 PyErr_Clear();
2314 }
2315 }
2316 if (!value) {
2317 PyObject *cell = freevars[oparg];
2318 value = PyCell_GET(cell);
2319 if (value == NULL) {
2320 format_exc_unbound(co, oparg);
2321 goto error;
2322 }
2323 Py_INCREF(value);
2324 }
2325 PUSH(value);
2326 DISPATCH();
2327 }
2328
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002329 TARGET(LOAD_DEREF) {
2330 PyObject *cell = freevars[oparg];
2331 PyObject *value = PyCell_GET(cell);
2332 if (value == NULL) {
2333 format_exc_unbound(co, oparg);
2334 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002335 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002336 Py_INCREF(value);
2337 PUSH(value);
2338 DISPATCH();
2339 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002340
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002341 TARGET(STORE_DEREF) {
2342 PyObject *v = POP();
2343 PyObject *cell = freevars[oparg];
2344 PyCell_Set(cell, v);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002345 Py_DECREF(v);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002346 DISPATCH();
2347 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002348
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002349 TARGET(BUILD_TUPLE) {
2350 PyObject *tup = PyTuple_New(oparg);
2351 if (tup == NULL)
2352 goto error;
2353 while (--oparg >= 0) {
2354 PyObject *item = POP();
2355 PyTuple_SET_ITEM(tup, oparg, item);
2356 }
2357 PUSH(tup);
2358 DISPATCH();
2359 }
2360
2361 TARGET(BUILD_LIST) {
2362 PyObject *list = PyList_New(oparg);
2363 if (list == NULL)
2364 goto error;
2365 while (--oparg >= 0) {
2366 PyObject *item = POP();
2367 PyList_SET_ITEM(list, oparg, item);
2368 }
2369 PUSH(list);
2370 DISPATCH();
2371 }
2372
2373 TARGET(BUILD_SET) {
2374 PyObject *set = PySet_New(NULL);
2375 int err = 0;
2376 if (set == NULL)
2377 goto error;
2378 while (--oparg >= 0) {
2379 PyObject *item = POP();
2380 if (err == 0)
2381 err = PySet_Add(set, item);
2382 Py_DECREF(item);
2383 }
2384 if (err != 0) {
2385 Py_DECREF(set);
2386 goto error;
2387 }
2388 PUSH(set);
2389 DISPATCH();
2390 }
2391
2392 TARGET(BUILD_MAP) {
2393 PyObject *map = _PyDict_NewPresized((Py_ssize_t)oparg);
2394 if (map == NULL)
2395 goto error;
2396 PUSH(map);
2397 DISPATCH();
2398 }
2399
2400 TARGET(STORE_MAP) {
2401 PyObject *key = TOP();
2402 PyObject *value = SECOND();
2403 PyObject *map = THIRD();
2404 int err;
2405 STACKADJ(-2);
2406 assert(PyDict_CheckExact(map));
2407 err = PyDict_SetItem(map, key, value);
2408 Py_DECREF(value);
2409 Py_DECREF(key);
2410 if (err != 0)
2411 goto error;
2412 DISPATCH();
2413 }
2414
2415 TARGET(MAP_ADD) {
2416 PyObject *key = TOP();
2417 PyObject *value = SECOND();
2418 PyObject *map;
2419 int err;
2420 STACKADJ(-2);
2421 map = stack_pointer[-oparg]; /* dict */
2422 assert(PyDict_CheckExact(map));
2423 err = PyDict_SetItem(map, key, value); /* v[w] = u */
2424 Py_DECREF(value);
2425 Py_DECREF(key);
2426 if (err != 0)
2427 goto error;
2428 PREDICT(JUMP_ABSOLUTE);
2429 DISPATCH();
2430 }
2431
2432 TARGET(LOAD_ATTR) {
2433 PyObject *name = GETITEM(names, oparg);
2434 PyObject *owner = TOP();
2435 PyObject *res = PyObject_GetAttr(owner, name);
2436 Py_DECREF(owner);
2437 SET_TOP(res);
2438 if (res == NULL)
2439 goto error;
2440 DISPATCH();
2441 }
2442
2443 TARGET(COMPARE_OP) {
2444 PyObject *right = POP();
2445 PyObject *left = TOP();
2446 PyObject *res = cmp_outcome(oparg, left, right);
2447 Py_DECREF(left);
2448 Py_DECREF(right);
2449 SET_TOP(res);
2450 if (res == NULL)
2451 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002452 PREDICT(POP_JUMP_IF_FALSE);
2453 PREDICT(POP_JUMP_IF_TRUE);
2454 DISPATCH();
Victor Stinner3c1e4812012-03-26 22:10:51 +02002455 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002456
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002457 TARGET(IMPORT_NAME) {
2458 _Py_IDENTIFIER(__import__);
2459 PyObject *name = GETITEM(names, oparg);
2460 PyObject *func = _PyDict_GetItemId(f->f_builtins, &PyId___import__);
Benjamin Petersonfe1bcb62012-10-12 11:40:01 -04002461 PyObject *from, *level, *args, *res;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002462 if (func == NULL) {
2463 PyErr_SetString(PyExc_ImportError,
2464 "__import__ not found");
2465 goto error;
2466 }
2467 Py_INCREF(func);
2468 from = POP();
2469 level = TOP();
2470 if (PyLong_AsLong(level) != -1 || PyErr_Occurred())
2471 args = PyTuple_Pack(5,
2472 name,
2473 f->f_globals,
2474 f->f_locals == NULL ?
2475 Py_None : f->f_locals,
2476 from,
2477 level);
2478 else
2479 args = PyTuple_Pack(4,
2480 name,
2481 f->f_globals,
2482 f->f_locals == NULL ?
2483 Py_None : f->f_locals,
2484 from);
2485 Py_DECREF(level);
2486 Py_DECREF(from);
2487 if (args == NULL) {
2488 Py_DECREF(func);
2489 STACKADJ(-1);
2490 goto error;
2491 }
2492 READ_TIMESTAMP(intr0);
Benjamin Petersonfe1bcb62012-10-12 11:40:01 -04002493 res = PyEval_CallObject(func, args);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002494 READ_TIMESTAMP(intr1);
2495 Py_DECREF(args);
2496 Py_DECREF(func);
2497 SET_TOP(res);
2498 if (res == NULL)
2499 goto error;
2500 DISPATCH();
2501 }
2502
2503 TARGET(IMPORT_STAR) {
2504 PyObject *from = POP(), *locals;
2505 int err;
Victor Stinner41bb43a2013-10-29 01:19:37 +01002506 if (PyFrame_FastToLocalsWithError(f) < 0)
2507 goto error;
2508
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002509 locals = f->f_locals;
2510 if (locals == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002511 PyErr_SetString(PyExc_SystemError,
2512 "no locals found during 'import *'");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002513 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002514 }
2515 READ_TIMESTAMP(intr0);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002516 err = import_all_from(locals, from);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002517 READ_TIMESTAMP(intr1);
2518 PyFrame_LocalsToFast(f, 0);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002519 Py_DECREF(from);
2520 if (err != 0)
2521 goto error;
2522 DISPATCH();
2523 }
Guido van Rossum25831651993-05-19 14:50:45 +00002524
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002525 TARGET(IMPORT_FROM) {
2526 PyObject *name = GETITEM(names, oparg);
2527 PyObject *from = TOP();
2528 PyObject *res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002529 READ_TIMESTAMP(intr0);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002530 res = import_from(from, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002531 READ_TIMESTAMP(intr1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002532 PUSH(res);
2533 if (res == NULL)
2534 goto error;
2535 DISPATCH();
2536 }
Thomas Wouters52152252000-08-17 22:55:00 +00002537
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002538 TARGET(JUMP_FORWARD) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002539 JUMPBY(oparg);
2540 FAST_DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002541 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002542
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002543 PREDICTED_WITH_ARG(POP_JUMP_IF_FALSE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002544 TARGET(POP_JUMP_IF_FALSE) {
2545 PyObject *cond = POP();
2546 int err;
2547 if (cond == Py_True) {
2548 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002549 FAST_DISPATCH();
2550 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002551 if (cond == Py_False) {
2552 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002553 JUMPTO(oparg);
2554 FAST_DISPATCH();
2555 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002556 err = PyObject_IsTrue(cond);
2557 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002558 if (err > 0)
2559 err = 0;
2560 else if (err == 0)
2561 JUMPTO(oparg);
2562 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002563 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002564 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002565 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002566
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002567 PREDICTED_WITH_ARG(POP_JUMP_IF_TRUE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002568 TARGET(POP_JUMP_IF_TRUE) {
2569 PyObject *cond = POP();
2570 int err;
2571 if (cond == Py_False) {
2572 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002573 FAST_DISPATCH();
2574 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002575 if (cond == Py_True) {
2576 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002577 JUMPTO(oparg);
2578 FAST_DISPATCH();
2579 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002580 err = PyObject_IsTrue(cond);
2581 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002582 if (err > 0) {
2583 err = 0;
2584 JUMPTO(oparg);
2585 }
2586 else if (err == 0)
2587 ;
2588 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002589 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002590 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002591 }
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002592
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002593 TARGET(JUMP_IF_FALSE_OR_POP) {
2594 PyObject *cond = TOP();
2595 int err;
2596 if (cond == Py_True) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002597 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002598 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002599 FAST_DISPATCH();
2600 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002601 if (cond == Py_False) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002602 JUMPTO(oparg);
2603 FAST_DISPATCH();
2604 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002605 err = PyObject_IsTrue(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002606 if (err > 0) {
2607 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002608 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002609 err = 0;
2610 }
2611 else if (err == 0)
2612 JUMPTO(oparg);
2613 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002614 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002615 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002616 }
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002617
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002618 TARGET(JUMP_IF_TRUE_OR_POP) {
2619 PyObject *cond = TOP();
2620 int err;
2621 if (cond == Py_False) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002622 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002623 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002624 FAST_DISPATCH();
2625 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002626 if (cond == Py_True) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002627 JUMPTO(oparg);
2628 FAST_DISPATCH();
2629 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002630 err = PyObject_IsTrue(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002631 if (err > 0) {
2632 err = 0;
2633 JUMPTO(oparg);
2634 }
2635 else if (err == 0) {
2636 STACKADJ(-1);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002637 Py_DECREF(cond);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002638 }
2639 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002640 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002641 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002642 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002643
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002644 PREDICTED_WITH_ARG(JUMP_ABSOLUTE);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002645 TARGET(JUMP_ABSOLUTE) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002646 JUMPTO(oparg);
Guido van Rossum58da9312007-11-10 23:39:45 +00002647#if FAST_LOOPS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002648 /* Enabling this path speeds-up all while and for-loops by bypassing
2649 the per-loop checks for signals. By default, this should be turned-off
2650 because it prevents detection of a control-break in tight loops like
2651 "while 1: pass". Compile with this option turned-on when you need
2652 the speed-up and do not need break checking inside tight loops (ones
2653 that contain only instructions ending with FAST_DISPATCH).
2654 */
2655 FAST_DISPATCH();
Guido van Rossum58da9312007-11-10 23:39:45 +00002656#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002657 DISPATCH();
Guido van Rossum58da9312007-11-10 23:39:45 +00002658#endif
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002659 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002660
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002661 TARGET(GET_ITER) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002662 /* before: [obj]; after [getiter(obj)] */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002663 PyObject *iterable = TOP();
2664 PyObject *iter = PyObject_GetIter(iterable);
2665 Py_DECREF(iterable);
2666 SET_TOP(iter);
2667 if (iter == NULL)
2668 goto error;
2669 PREDICT(FOR_ITER);
2670 DISPATCH();
2671 }
Guido van Rossum59d1d2b2001-04-20 19:13:02 +00002672
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002673 PREDICTED_WITH_ARG(FOR_ITER);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002674 TARGET(FOR_ITER) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002675 /* before: [iter]; after: [iter, iter()] *or* [] */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002676 PyObject *iter = TOP();
2677 PyObject *next = (*iter->ob_type->tp_iternext)(iter);
2678 if (next != NULL) {
2679 PUSH(next);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002680 PREDICT(STORE_FAST);
2681 PREDICT(UNPACK_SEQUENCE);
2682 DISPATCH();
2683 }
2684 if (PyErr_Occurred()) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002685 if (!PyErr_ExceptionMatches(PyExc_StopIteration))
2686 goto error;
Guido van Rossum8820c232013-11-21 11:30:06 -08002687 else if (tstate->c_tracefunc != NULL)
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01002688 call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj, tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002689 PyErr_Clear();
2690 }
2691 /* iterator ended normally */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002692 STACKADJ(-1);
2693 Py_DECREF(iter);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002694 JUMPBY(oparg);
2695 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002696 }
Guido van Rossum59d1d2b2001-04-20 19:13:02 +00002697
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002698 TARGET(BREAK_LOOP) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002699 why = WHY_BREAK;
2700 goto fast_block_end;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002701 }
Raymond Hettinger2d783e92004-03-12 09:12:22 +00002702
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002703 TARGET(CONTINUE_LOOP) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002704 retval = PyLong_FromLong(oparg);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002705 if (retval == NULL)
2706 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002707 why = WHY_CONTINUE;
2708 goto fast_block_end;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002709 }
Raymond Hettinger2d783e92004-03-12 09:12:22 +00002710
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002711 TARGET_WITH_IMPL(SETUP_LOOP, _setup_finally)
2712 TARGET_WITH_IMPL(SETUP_EXCEPT, _setup_finally)
2713 TARGET(SETUP_FINALLY)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002714 _setup_finally: {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002715 /* NOTE: If you add any new block-setup opcodes that
2716 are not try/except/finally handlers, you may need
2717 to update the PyGen_NeedsFinalizing() function.
2718 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002719
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002720 PyFrame_BlockSetup(f, opcode, INSTR_OFFSET() + oparg,
2721 STACK_LEVEL());
2722 DISPATCH();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002723 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002724
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002725 TARGET(SETUP_WITH) {
Benjamin Petersonce798522012-01-22 11:24:29 -05002726 _Py_IDENTIFIER(__exit__);
2727 _Py_IDENTIFIER(__enter__);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002728 PyObject *mgr = TOP();
2729 PyObject *exit = special_lookup(mgr, &PyId___exit__), *enter;
2730 PyObject *res;
2731 if (exit == NULL)
2732 goto error;
2733 SET_TOP(exit);
2734 enter = special_lookup(mgr, &PyId___enter__);
2735 Py_DECREF(mgr);
2736 if (enter == NULL)
2737 goto error;
2738 res = PyObject_CallFunctionObjArgs(enter, NULL);
2739 Py_DECREF(enter);
2740 if (res == NULL)
2741 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002742 /* Setup the finally block before pushing the result
2743 of __enter__ on the stack. */
2744 PyFrame_BlockSetup(f, SETUP_FINALLY, INSTR_OFFSET() + oparg,
2745 STACK_LEVEL());
Benjamin Peterson876b2f22009-06-28 03:18:59 +00002746
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002747 PUSH(res);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002748 DISPATCH();
2749 }
Benjamin Peterson876b2f22009-06-28 03:18:59 +00002750
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002751 TARGET(WITH_CLEANUP) {
Benjamin Peterson8f169482013-10-29 22:25:06 -04002752 /* At the top of the stack are 1-6 values indicating
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002753 how/why we entered the finally clause:
2754 - TOP = None
2755 - (TOP, SECOND) = (WHY_{RETURN,CONTINUE}), retval
2756 - TOP = WHY_*; no retval below it
2757 - (TOP, SECOND, THIRD) = exc_info()
2758 (FOURTH, FITH, SIXTH) = previous exception for EXCEPT_HANDLER
2759 Below them is EXIT, the context.__exit__ bound method.
2760 In the last case, we must call
2761 EXIT(TOP, SECOND, THIRD)
2762 otherwise we must call
2763 EXIT(None, None, None)
Christian Heimesdd15f6c2008-03-16 00:07:10 +00002764
Benjamin Peterson8f169482013-10-29 22:25:06 -04002765 In the first three cases, we remove EXIT from the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002766 stack, leaving the rest in the same order. In the
Benjamin Peterson8f169482013-10-29 22:25:06 -04002767 fourth case, we shift the bottom 3 values of the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002768 stack down, and replace the empty spot with NULL.
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00002769
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002770 In addition, if the stack represents an exception,
2771 *and* the function call returns a 'true' value, we
2772 push WHY_SILENCED onto the stack. END_FINALLY will
2773 then not re-raise the exception. (But non-local
2774 gotos should still be resumed.)
2775 */
Thomas Wouters477c8d52006-05-27 19:21:47 +00002776
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002777 PyObject *exit_func;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002778 PyObject *exc = TOP(), *val = Py_None, *tb = Py_None, *res;
2779 int err;
2780 if (exc == Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002781 (void)POP();
2782 exit_func = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002783 SET_TOP(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002784 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002785 else if (PyLong_Check(exc)) {
2786 STACKADJ(-1);
2787 switch (PyLong_AsLong(exc)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002788 case WHY_RETURN:
2789 case WHY_CONTINUE:
2790 /* Retval in TOP. */
2791 exit_func = SECOND();
2792 SET_SECOND(TOP());
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002793 SET_TOP(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002794 break;
2795 default:
2796 exit_func = TOP();
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002797 SET_TOP(exc);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002798 break;
2799 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002800 exc = Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002801 }
2802 else {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002803 PyObject *tp2, *exc2, *tb2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002804 PyTryBlock *block;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002805 val = SECOND();
2806 tb = THIRD();
2807 tp2 = FOURTH();
2808 exc2 = PEEK(5);
2809 tb2 = PEEK(6);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002810 exit_func = PEEK(7);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002811 SET_VALUE(7, tb2);
2812 SET_VALUE(6, exc2);
2813 SET_VALUE(5, tp2);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002814 /* UNWIND_EXCEPT_HANDLER will pop this off. */
2815 SET_FOURTH(NULL);
2816 /* We just shifted the stack down, so we have
2817 to tell the except handler block that the
2818 values are lower than it expects. */
2819 block = &f->f_blockstack[f->f_iblock - 1];
2820 assert(block->b_type == EXCEPT_HANDLER);
2821 block->b_level--;
2822 }
2823 /* XXX Not the fastest way to call it... */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002824 res = PyObject_CallFunctionObjArgs(exit_func, exc, val, tb, NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002825 Py_DECREF(exit_func);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002826 if (res == NULL)
2827 goto error;
Amaury Forgeot d'Arc10b24e82008-12-10 23:49:33 +00002828
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002829 if (exc != Py_None)
2830 err = PyObject_IsTrue(res);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002831 else
2832 err = 0;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002833 Py_DECREF(res);
Amaury Forgeot d'Arc10b24e82008-12-10 23:49:33 +00002834
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002835 if (err < 0)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002836 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002837 else if (err > 0) {
2838 err = 0;
2839 /* There was an exception and a True return */
2840 PUSH(PyLong_FromLong((long) WHY_SILENCED));
2841 }
2842 PREDICT(END_FINALLY);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002843 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002844 }
Guido van Rossumc2e20742006-02-27 22:32:47 +00002845
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002846 TARGET(CALL_FUNCTION) {
2847 PyObject **sp, *res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002848 PCALL(PCALL_ALL);
2849 sp = stack_pointer;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002850#ifdef WITH_TSC
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002851 res = call_function(&sp, oparg, &intr0, &intr1);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002852#else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002853 res = call_function(&sp, oparg);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002854#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002855 stack_pointer = sp;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002856 PUSH(res);
2857 if (res == NULL)
2858 goto error;
2859 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002860 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002861
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002862 TARGET_WITH_IMPL(CALL_FUNCTION_VAR, _call_function_var_kw)
2863 TARGET_WITH_IMPL(CALL_FUNCTION_KW, _call_function_var_kw)
2864 TARGET(CALL_FUNCTION_VAR_KW)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002865 _call_function_var_kw: {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002866 int na = oparg & 0xff;
2867 int nk = (oparg>>8) & 0xff;
2868 int flags = (opcode - CALL_FUNCTION) & 3;
2869 int n = na + 2 * nk;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002870 PyObject **pfunc, *func, **sp, *res;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002871 PCALL(PCALL_ALL);
2872 if (flags & CALL_FLAG_VAR)
2873 n++;
2874 if (flags & CALL_FLAG_KW)
2875 n++;
2876 pfunc = stack_pointer - n - 1;
2877 func = *pfunc;
Jeremy Hylton52820442001-01-03 23:52:36 +00002878
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002879 if (PyMethod_Check(func)
Stefan Krahb7e10102010-06-23 18:42:39 +00002880 && PyMethod_GET_SELF(func) != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002881 PyObject *self = PyMethod_GET_SELF(func);
2882 Py_INCREF(self);
2883 func = PyMethod_GET_FUNCTION(func);
2884 Py_INCREF(func);
2885 Py_DECREF(*pfunc);
2886 *pfunc = self;
2887 na++;
Brett Cannonb94767f2011-02-22 20:15:44 +00002888 /* n++; */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002889 } else
2890 Py_INCREF(func);
2891 sp = stack_pointer;
2892 READ_TIMESTAMP(intr0);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002893 res = ext_do_call(func, &sp, flags, na, nk);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002894 READ_TIMESTAMP(intr1);
2895 stack_pointer = sp;
2896 Py_DECREF(func);
Jeremy Hylton52820442001-01-03 23:52:36 +00002897
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002898 while (stack_pointer > pfunc) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002899 PyObject *o = POP();
2900 Py_DECREF(o);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002901 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002902 PUSH(res);
2903 if (res == NULL)
2904 goto error;
2905 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002906 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002907
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002908 TARGET_WITH_IMPL(MAKE_CLOSURE, _make_function)
2909 TARGET(MAKE_FUNCTION)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002910 _make_function: {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002911 int posdefaults = oparg & 0xff;
2912 int kwdefaults = (oparg>>8) & 0xff;
2913 int num_annotations = (oparg >> 16) & 0x7fff;
Guido van Rossum4f72a782006-10-27 23:31:49 +00002914
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002915 PyObject *qualname = POP(); /* qualname */
2916 PyObject *code = POP(); /* code object */
2917 PyObject *func = PyFunction_NewWithQualName(code, f->f_globals, qualname);
2918 Py_DECREF(code);
2919 Py_DECREF(qualname);
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00002920
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002921 if (func == NULL)
2922 goto error;
2923
2924 if (opcode == MAKE_CLOSURE) {
2925 PyObject *closure = POP();
2926 if (PyFunction_SetClosure(func, closure) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002927 /* Can't happen unless bytecode is corrupt. */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002928 Py_DECREF(func);
2929 Py_DECREF(closure);
2930 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002931 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002932 Py_DECREF(closure);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002933 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002934
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002935 if (num_annotations > 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002936 Py_ssize_t name_ix;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002937 PyObject *names = POP(); /* names of args with annotations */
2938 PyObject *anns = PyDict_New();
2939 if (anns == NULL) {
2940 Py_DECREF(func);
2941 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002942 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002943 name_ix = PyTuple_Size(names);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002944 assert(num_annotations == name_ix+1);
2945 while (name_ix > 0) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002946 PyObject *name, *value;
2947 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002948 --name_ix;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002949 name = PyTuple_GET_ITEM(names, name_ix);
2950 value = POP();
2951 err = PyDict_SetItem(anns, name, value);
2952 Py_DECREF(value);
2953 if (err != 0) {
2954 Py_DECREF(anns);
2955 Py_DECREF(func);
2956 goto error;
2957 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002958 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002959
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002960 if (PyFunction_SetAnnotations(func, anns) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002961 /* Can't happen unless
2962 PyFunction_SetAnnotations changes. */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002963 Py_DECREF(anns);
2964 Py_DECREF(func);
2965 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002966 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002967 Py_DECREF(anns);
2968 Py_DECREF(names);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002969 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002970
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002971 /* XXX Maybe this should be a separate opcode? */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002972 if (kwdefaults > 0) {
2973 PyObject *defs = PyDict_New();
2974 if (defs == NULL) {
2975 Py_DECREF(func);
2976 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002977 }
2978 while (--kwdefaults >= 0) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002979 PyObject *v = POP(); /* default value */
2980 PyObject *key = POP(); /* kw only arg name */
2981 int err = PyDict_SetItem(defs, key, v);
2982 Py_DECREF(v);
2983 Py_DECREF(key);
2984 if (err != 0) {
2985 Py_DECREF(defs);
2986 Py_DECREF(func);
2987 goto error;
2988 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002989 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002990 if (PyFunction_SetKwDefaults(func, defs) != 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002991 /* Can't happen unless
2992 PyFunction_SetKwDefaults changes. */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002993 Py_DECREF(func);
2994 Py_DECREF(defs);
2995 goto error;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002996 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04002997 Py_DECREF(defs);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002998 }
Benjamin Peterson1ef876c2013-02-10 09:29:59 -05002999 if (posdefaults > 0) {
3000 PyObject *defs = PyTuple_New(posdefaults);
3001 if (defs == NULL) {
3002 Py_DECREF(func);
3003 goto error;
3004 }
3005 while (--posdefaults >= 0)
3006 PyTuple_SET_ITEM(defs, posdefaults, POP());
3007 if (PyFunction_SetDefaults(func, defs) != 0) {
3008 /* Can't happen unless
3009 PyFunction_SetDefaults changes. */
3010 Py_DECREF(defs);
3011 Py_DECREF(func);
3012 goto error;
3013 }
3014 Py_DECREF(defs);
3015 }
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003016 PUSH(func);
3017 DISPATCH();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003018 }
Guido van Rossum8861b741996-07-30 16:49:37 +00003019
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003020 TARGET(BUILD_SLICE) {
3021 PyObject *start, *stop, *step, *slice;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003022 if (oparg == 3)
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003023 step = POP();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003024 else
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003025 step = NULL;
3026 stop = POP();
3027 start = TOP();
3028 slice = PySlice_New(start, stop, step);
3029 Py_DECREF(start);
3030 Py_DECREF(stop);
3031 Py_XDECREF(step);
3032 SET_TOP(slice);
3033 if (slice == NULL)
3034 goto error;
3035 DISPATCH();
3036 }
Guido van Rossum8861b741996-07-30 16:49:37 +00003037
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003038 TARGET(EXTENDED_ARG) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003039 opcode = NEXTOP();
3040 oparg = oparg<<16 | NEXTARG();
3041 goto dispatch_opcode;
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003042 }
Guido van Rossum8861b741996-07-30 16:49:37 +00003043
Antoine Pitrou042b1282010-08-13 21:15:58 +00003044#if USE_COMPUTED_GOTOS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003045 _unknown_opcode:
Antoine Pitroub52ec782009-01-25 16:34:23 +00003046#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003047 default:
3048 fprintf(stderr,
3049 "XXX lineno: %d, opcode: %d\n",
3050 PyFrame_GetLineNumber(f),
3051 opcode);
3052 PyErr_SetString(PyExc_SystemError, "unknown opcode");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003053 goto error;
Guido van Rossum04691fc1992-08-12 15:35:34 +00003054
3055#ifdef CASE_TOO_BIG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003056 }
Guido van Rossum04691fc1992-08-12 15:35:34 +00003057#endif
3058
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003059 } /* switch */
Guido van Rossum374a9221991-04-04 10:40:29 +00003060
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003061 /* This should never be reached. Every opcode should end with DISPATCH()
3062 or goto error. */
3063 assert(0);
Guido van Rossumac7be682001-01-17 15:42:30 +00003064
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003065error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003066 READ_TIMESTAMP(inst1);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00003067
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003068 assert(why == WHY_NOT);
3069 why = WHY_EXCEPTION;
Guido van Rossumac7be682001-01-17 15:42:30 +00003070
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003071 /* Double-check exception status. */
Victor Stinner365b6932013-07-12 00:11:58 +02003072#ifdef NDEBUG
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003073 if (!PyErr_Occurred())
3074 PyErr_SetString(PyExc_SystemError,
3075 "error return without exception set");
Victor Stinner365b6932013-07-12 00:11:58 +02003076#else
3077 assert(PyErr_Occurred());
3078#endif
Guido van Rossum374a9221991-04-04 10:40:29 +00003079
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003080 /* Log traceback info. */
3081 PyTraceBack_Here(f);
Guido van Rossumac7be682001-01-17 15:42:30 +00003082
Benjamin Peterson51f46162013-01-23 08:38:47 -05003083 if (tstate->c_tracefunc != NULL)
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003084 call_exc_trace(tstate->c_tracefunc, tstate->c_traceobj,
3085 tstate, f);
Guido van Rossumac7be682001-01-17 15:42:30 +00003086
Raymond Hettinger1dd83092004-02-06 18:32:33 +00003087fast_block_end:
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003088 assert(why != WHY_NOT);
3089
3090 /* Unwind stacks if a (pseudo) exception occurred */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003091 while (why != WHY_NOT && f->f_iblock > 0) {
3092 /* Peek at the current block. */
3093 PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1];
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00003094
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003095 assert(why != WHY_YIELD);
3096 if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) {
3097 why = WHY_NOT;
3098 JUMPTO(PyLong_AS_LONG(retval));
3099 Py_DECREF(retval);
3100 break;
3101 }
3102 /* Now we have to pop the block. */
3103 f->f_iblock--;
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00003104
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003105 if (b->b_type == EXCEPT_HANDLER) {
3106 UNWIND_EXCEPT_HANDLER(b);
3107 continue;
3108 }
3109 UNWIND_BLOCK(b);
3110 if (b->b_type == SETUP_LOOP && why == WHY_BREAK) {
3111 why = WHY_NOT;
3112 JUMPTO(b->b_handler);
3113 break;
3114 }
3115 if (why == WHY_EXCEPTION && (b->b_type == SETUP_EXCEPT
3116 || b->b_type == SETUP_FINALLY)) {
3117 PyObject *exc, *val, *tb;
3118 int handler = b->b_handler;
3119 /* Beware, this invalidates all b->b_* fields */
3120 PyFrame_BlockSetup(f, EXCEPT_HANDLER, -1, STACK_LEVEL());
3121 PUSH(tstate->exc_traceback);
3122 PUSH(tstate->exc_value);
3123 if (tstate->exc_type != NULL) {
3124 PUSH(tstate->exc_type);
3125 }
3126 else {
3127 Py_INCREF(Py_None);
3128 PUSH(Py_None);
3129 }
3130 PyErr_Fetch(&exc, &val, &tb);
3131 /* Make the raw exception data
3132 available to the handler,
3133 so a program can emulate the
3134 Python main loop. */
3135 PyErr_NormalizeException(
3136 &exc, &val, &tb);
Victor Stinner7eab0d02013-07-15 21:16:27 +02003137 if (tb != NULL)
3138 PyException_SetTraceback(val, tb);
3139 else
3140 PyException_SetTraceback(val, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003141 Py_INCREF(exc);
3142 tstate->exc_type = exc;
3143 Py_INCREF(val);
3144 tstate->exc_value = val;
3145 tstate->exc_traceback = tb;
3146 if (tb == NULL)
3147 tb = Py_None;
3148 Py_INCREF(tb);
3149 PUSH(tb);
3150 PUSH(val);
3151 PUSH(exc);
3152 why = WHY_NOT;
3153 JUMPTO(handler);
3154 break;
3155 }
3156 if (b->b_type == SETUP_FINALLY) {
3157 if (why & (WHY_RETURN | WHY_CONTINUE))
3158 PUSH(retval);
3159 PUSH(PyLong_FromLong((long)why));
3160 why = WHY_NOT;
3161 JUMPTO(b->b_handler);
3162 break;
3163 }
3164 } /* unwind stack */
Guido van Rossum374a9221991-04-04 10:40:29 +00003165
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003166 /* End the loop if we still have an error (or return) */
Guido van Rossumac7be682001-01-17 15:42:30 +00003167
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003168 if (why != WHY_NOT)
3169 break;
3170 READ_TIMESTAMP(loop1);
Guido van Rossumac7be682001-01-17 15:42:30 +00003171
Victor Stinnerace47d72013-07-18 01:41:08 +02003172 assert(!PyErr_Occurred());
3173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003174 } /* main loop */
Guido van Rossumac7be682001-01-17 15:42:30 +00003175
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003176 assert(why != WHY_YIELD);
3177 /* Pop remaining stack entries. */
3178 while (!EMPTY()) {
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003179 PyObject *o = POP();
3180 Py_XDECREF(o);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003181 }
Guido van Rossum35974fb2001-12-06 21:28:18 +00003182
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003183 if (why != WHY_RETURN)
3184 retval = NULL;
Guido van Rossumac7be682001-01-17 15:42:30 +00003185
Victor Stinnerace47d72013-07-18 01:41:08 +02003186 assert((retval != NULL && !PyErr_Occurred())
3187 || (retval == NULL && PyErr_Occurred()));
3188
Raymond Hettinger1dd83092004-02-06 18:32:33 +00003189fast_yield:
Benjamin Petersonac913412011-07-03 16:25:11 -05003190 if (co->co_flags & CO_GENERATOR && (why == WHY_YIELD || why == WHY_RETURN)) {
3191 /* The purpose of this block is to put aside the generator's exception
3192 state and restore that of the calling frame. If the current
3193 exception state is from the caller, we clear the exception values
3194 on the generator frame, so they are not swapped back in latter. The
3195 origin of the current exception state is determined by checking for
3196 except handler blocks, which we must be in iff a new exception
3197 state came into existence in this frame. (An uncaught exception
3198 would have why == WHY_EXCEPTION, and we wouldn't be here). */
3199 int i;
3200 for (i = 0; i < f->f_iblock; i++)
3201 if (f->f_blockstack[i].b_type == EXCEPT_HANDLER)
3202 break;
3203 if (i == f->f_iblock)
3204 /* We did not create this exception. */
Benjamin Peterson87880242011-07-03 16:48:31 -05003205 restore_and_clear_exc_state(tstate, f);
Benjamin Petersonac913412011-07-03 16:25:11 -05003206 else
Benjamin Peterson87880242011-07-03 16:48:31 -05003207 swap_exc_state(tstate, f);
Benjamin Petersonac913412011-07-03 16:25:11 -05003208 }
Benjamin Peterson83195c32011-07-03 13:44:00 -05003209
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003210 if (tstate->use_tracing) {
Benjamin Peterson51f46162013-01-23 08:38:47 -05003211 if (tstate->c_tracefunc) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003212 if (why == WHY_RETURN || why == WHY_YIELD) {
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003213 if (call_trace(tstate->c_tracefunc, tstate->c_traceobj,
3214 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003215 PyTrace_RETURN, retval)) {
Serhiy Storchaka505ff752014-02-09 13:33:53 +02003216 Py_CLEAR(retval);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003217 why = WHY_EXCEPTION;
3218 }
3219 }
3220 else if (why == WHY_EXCEPTION) {
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003221 call_trace_protected(tstate->c_tracefunc, tstate->c_traceobj,
3222 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003223 PyTrace_RETURN, NULL);
3224 }
3225 }
3226 if (tstate->c_profilefunc) {
3227 if (why == WHY_EXCEPTION)
3228 call_trace_protected(tstate->c_profilefunc,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003229 tstate->c_profileobj,
3230 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003231 PyTrace_RETURN, NULL);
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003232 else if (call_trace(tstate->c_profilefunc, tstate->c_profileobj,
3233 tstate, f,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003234 PyTrace_RETURN, retval)) {
Serhiy Storchaka505ff752014-02-09 13:33:53 +02003235 Py_CLEAR(retval);
Brett Cannonb94767f2011-02-22 20:15:44 +00003236 /* why = WHY_EXCEPTION; */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003237 }
3238 }
3239 }
Guido van Rossuma4240131997-01-21 21:18:36 +00003240
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003241 /* pop frame */
Thomas Woutersce272b62007-09-19 21:19:28 +00003242exit_eval_frame:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003243 Py_LeaveRecursiveCall();
Antoine Pitrou58720d62013-08-05 23:26:40 +02003244 f->f_executing = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003245 tstate->frame = f->f_back;
Guido van Rossumac7be682001-01-17 15:42:30 +00003246
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003247 return retval;
Guido van Rossum374a9221991-04-04 10:40:29 +00003248}
3249
Benjamin Petersonb204a422011-06-05 22:04:07 -05003250static void
Benjamin Petersone109c702011-06-24 09:37:26 -05003251format_missing(const char *kind, PyCodeObject *co, PyObject *names)
3252{
3253 int err;
3254 Py_ssize_t len = PyList_GET_SIZE(names);
3255 PyObject *name_str, *comma, *tail, *tmp;
3256
3257 assert(PyList_CheckExact(names));
3258 assert(len >= 1);
3259 /* Deal with the joys of natural language. */
3260 switch (len) {
3261 case 1:
3262 name_str = PyList_GET_ITEM(names, 0);
3263 Py_INCREF(name_str);
3264 break;
3265 case 2:
3266 name_str = PyUnicode_FromFormat("%U and %U",
3267 PyList_GET_ITEM(names, len - 2),
3268 PyList_GET_ITEM(names, len - 1));
3269 break;
3270 default:
3271 tail = PyUnicode_FromFormat(", %U, and %U",
3272 PyList_GET_ITEM(names, len - 2),
3273 PyList_GET_ITEM(names, len - 1));
Benjamin Petersond1ab6082012-06-01 11:18:22 -07003274 if (tail == NULL)
3275 return;
Benjamin Petersone109c702011-06-24 09:37:26 -05003276 /* Chop off the last two objects in the list. This shouldn't actually
3277 fail, but we can't be too careful. */
3278 err = PyList_SetSlice(names, len - 2, len, NULL);
3279 if (err == -1) {
3280 Py_DECREF(tail);
3281 return;
3282 }
3283 /* Stitch everything up into a nice comma-separated list. */
3284 comma = PyUnicode_FromString(", ");
3285 if (comma == NULL) {
3286 Py_DECREF(tail);
3287 return;
3288 }
3289 tmp = PyUnicode_Join(comma, names);
3290 Py_DECREF(comma);
3291 if (tmp == NULL) {
3292 Py_DECREF(tail);
3293 return;
3294 }
3295 name_str = PyUnicode_Concat(tmp, tail);
3296 Py_DECREF(tmp);
3297 Py_DECREF(tail);
3298 break;
3299 }
3300 if (name_str == NULL)
3301 return;
3302 PyErr_Format(PyExc_TypeError,
3303 "%U() missing %i required %s argument%s: %U",
3304 co->co_name,
3305 len,
3306 kind,
3307 len == 1 ? "" : "s",
3308 name_str);
3309 Py_DECREF(name_str);
3310}
3311
3312static void
3313missing_arguments(PyCodeObject *co, int missing, int defcount,
3314 PyObject **fastlocals)
3315{
3316 int i, j = 0;
3317 int start, end;
3318 int positional = defcount != -1;
3319 const char *kind = positional ? "positional" : "keyword-only";
3320 PyObject *missing_names;
3321
3322 /* Compute the names of the arguments that are missing. */
3323 missing_names = PyList_New(missing);
3324 if (missing_names == NULL)
3325 return;
3326 if (positional) {
3327 start = 0;
3328 end = co->co_argcount - defcount;
3329 }
3330 else {
3331 start = co->co_argcount;
3332 end = start + co->co_kwonlyargcount;
3333 }
3334 for (i = start; i < end; i++) {
3335 if (GETLOCAL(i) == NULL) {
3336 PyObject *raw = PyTuple_GET_ITEM(co->co_varnames, i);
3337 PyObject *name = PyObject_Repr(raw);
3338 if (name == NULL) {
3339 Py_DECREF(missing_names);
3340 return;
3341 }
3342 PyList_SET_ITEM(missing_names, j++, name);
3343 }
3344 }
3345 assert(j == missing);
3346 format_missing(kind, co, missing_names);
3347 Py_DECREF(missing_names);
3348}
3349
3350static void
3351too_many_positional(PyCodeObject *co, int given, int defcount, PyObject **fastlocals)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003352{
3353 int plural;
3354 int kwonly_given = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003355 int i;
3356 PyObject *sig, *kwonly_sig;
3357
Benjamin Petersone109c702011-06-24 09:37:26 -05003358 assert((co->co_flags & CO_VARARGS) == 0);
3359 /* Count missing keyword-only args. */
Benjamin Petersonb204a422011-06-05 22:04:07 -05003360 for (i = co->co_argcount; i < co->co_argcount + co->co_kwonlyargcount; i++)
Benjamin Petersone109c702011-06-24 09:37:26 -05003361 if (GETLOCAL(i) != NULL)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003362 kwonly_given++;
Benjamin Petersone109c702011-06-24 09:37:26 -05003363 if (defcount) {
3364 int atleast = co->co_argcount - defcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003365 plural = 1;
3366 sig = PyUnicode_FromFormat("from %d to %d", atleast, co->co_argcount);
3367 }
3368 else {
3369 plural = co->co_argcount != 1;
3370 sig = PyUnicode_FromFormat("%d", co->co_argcount);
3371 }
3372 if (sig == NULL)
3373 return;
3374 if (kwonly_given) {
3375 const char *format = " positional argument%s (and %d keyword-only argument%s)";
3376 kwonly_sig = PyUnicode_FromFormat(format, given != 1 ? "s" : "", kwonly_given,
3377 kwonly_given != 1 ? "s" : "");
3378 if (kwonly_sig == NULL) {
3379 Py_DECREF(sig);
3380 return;
3381 }
3382 }
3383 else {
3384 /* This will not fail. */
3385 kwonly_sig = PyUnicode_FromString("");
Benjamin Petersone109c702011-06-24 09:37:26 -05003386 assert(kwonly_sig != NULL);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003387 }
3388 PyErr_Format(PyExc_TypeError,
3389 "%U() takes %U positional argument%s but %d%U %s given",
3390 co->co_name,
3391 sig,
3392 plural ? "s" : "",
3393 given,
3394 kwonly_sig,
3395 given == 1 && !kwonly_given ? "was" : "were");
3396 Py_DECREF(sig);
3397 Py_DECREF(kwonly_sig);
3398}
3399
Guido van Rossumc2e20742006-02-27 22:32:47 +00003400/* This is gonna seem *real weird*, but if you put some other code between
Martin v. Löwis8d97e332004-06-27 15:43:12 +00003401 PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
Guido van Rossumc2e20742006-02-27 22:32:47 +00003402 the test in the if statements in Misc/gdbinit (pystack and pystackv). */
Skip Montanaro786ea6b2004-03-01 15:44:05 +00003403
Tim Peters6d6c1a32001-08-02 04:15:00 +00003404PyObject *
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003405PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003406 PyObject **args, int argcount, PyObject **kws, int kwcount,
3407 PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure)
Tim Peters5ca576e2001-06-18 22:08:13 +00003408{
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003409 PyCodeObject* co = (PyCodeObject*)_co;
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02003410 PyFrameObject *f;
3411 PyObject *retval = NULL;
3412 PyObject **fastlocals, **freevars;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003413 PyThreadState *tstate = PyThreadState_GET();
3414 PyObject *x, *u;
3415 int total_args = co->co_argcount + co->co_kwonlyargcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003416 int i;
3417 int n = argcount;
3418 PyObject *kwdict = NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00003419
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003420 if (globals == NULL) {
3421 PyErr_SetString(PyExc_SystemError,
3422 "PyEval_EvalCodeEx: NULL globals");
3423 return NULL;
3424 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003426 assert(tstate != NULL);
3427 assert(globals != NULL);
3428 f = PyFrame_New(tstate, co, globals, locals);
3429 if (f == NULL)
3430 return NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00003431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003432 fastlocals = f->f_localsplus;
3433 freevars = f->f_localsplus + co->co_nlocals;
Tim Peters5ca576e2001-06-18 22:08:13 +00003434
Benjamin Petersonb204a422011-06-05 22:04:07 -05003435 /* Parse arguments. */
3436 if (co->co_flags & CO_VARKEYWORDS) {
3437 kwdict = PyDict_New();
3438 if (kwdict == NULL)
3439 goto fail;
3440 i = total_args;
3441 if (co->co_flags & CO_VARARGS)
3442 i++;
3443 SETLOCAL(i, kwdict);
3444 }
3445 if (argcount > co->co_argcount)
3446 n = co->co_argcount;
3447 for (i = 0; i < n; i++) {
3448 x = args[i];
3449 Py_INCREF(x);
3450 SETLOCAL(i, x);
3451 }
3452 if (co->co_flags & CO_VARARGS) {
3453 u = PyTuple_New(argcount - n);
3454 if (u == NULL)
3455 goto fail;
3456 SETLOCAL(total_args, u);
3457 for (i = n; i < argcount; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003458 x = args[i];
3459 Py_INCREF(x);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003460 PyTuple_SET_ITEM(u, i-n, x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003461 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003462 }
3463 for (i = 0; i < kwcount; i++) {
3464 PyObject **co_varnames;
3465 PyObject *keyword = kws[2*i];
3466 PyObject *value = kws[2*i + 1];
3467 int j;
3468 if (keyword == NULL || !PyUnicode_Check(keyword)) {
3469 PyErr_Format(PyExc_TypeError,
3470 "%U() keywords must be strings",
3471 co->co_name);
3472 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003473 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003474 /* Speed hack: do raw pointer compares. As names are
3475 normally interned this should almost always hit. */
3476 co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item;
3477 for (j = 0; j < total_args; j++) {
3478 PyObject *nm = co_varnames[j];
3479 if (nm == keyword)
3480 goto kw_found;
3481 }
3482 /* Slow fallback, just in case */
3483 for (j = 0; j < total_args; j++) {
3484 PyObject *nm = co_varnames[j];
3485 int cmp = PyObject_RichCompareBool(
3486 keyword, nm, Py_EQ);
3487 if (cmp > 0)
3488 goto kw_found;
3489 else if (cmp < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003490 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003491 }
3492 if (j >= total_args && kwdict == NULL) {
3493 PyErr_Format(PyExc_TypeError,
3494 "%U() got an unexpected "
3495 "keyword argument '%S'",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003496 co->co_name,
3497 keyword);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003498 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003499 }
Christian Heimes0bd447f2013-07-20 14:48:10 +02003500 if (PyDict_SetItem(kwdict, keyword, value) == -1) {
3501 goto fail;
3502 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003503 continue;
3504 kw_found:
3505 if (GETLOCAL(j) != NULL) {
3506 PyErr_Format(PyExc_TypeError,
3507 "%U() got multiple "
3508 "values for argument '%S'",
3509 co->co_name,
3510 keyword);
3511 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003512 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003513 Py_INCREF(value);
3514 SETLOCAL(j, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003515 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003516 if (argcount > co->co_argcount && !(co->co_flags & CO_VARARGS)) {
Benjamin Petersone109c702011-06-24 09:37:26 -05003517 too_many_positional(co, argcount, defcount, fastlocals);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003518 goto fail;
3519 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003520 if (argcount < co->co_argcount) {
3521 int m = co->co_argcount - defcount;
Benjamin Petersone109c702011-06-24 09:37:26 -05003522 int missing = 0;
3523 for (i = argcount; i < m; i++)
3524 if (GETLOCAL(i) == NULL)
3525 missing++;
3526 if (missing) {
3527 missing_arguments(co, missing, defcount, fastlocals);
3528 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003529 }
3530 if (n > m)
3531 i = n - m;
3532 else
3533 i = 0;
3534 for (; i < defcount; i++) {
3535 if (GETLOCAL(m+i) == NULL) {
3536 PyObject *def = defs[i];
3537 Py_INCREF(def);
3538 SETLOCAL(m+i, def);
3539 }
3540 }
3541 }
3542 if (co->co_kwonlyargcount > 0) {
Benjamin Petersone109c702011-06-24 09:37:26 -05003543 int missing = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003544 for (i = co->co_argcount; i < total_args; i++) {
3545 PyObject *name;
3546 if (GETLOCAL(i) != NULL)
3547 continue;
3548 name = PyTuple_GET_ITEM(co->co_varnames, i);
3549 if (kwdefs != NULL) {
3550 PyObject *def = PyDict_GetItem(kwdefs, name);
3551 if (def) {
3552 Py_INCREF(def);
3553 SETLOCAL(i, def);
3554 continue;
3555 }
3556 }
Benjamin Petersone109c702011-06-24 09:37:26 -05003557 missing++;
3558 }
3559 if (missing) {
3560 missing_arguments(co, missing, -1, fastlocals);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003561 goto fail;
3562 }
3563 }
3564
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003565 /* Allocate and initialize storage for cell vars, and copy free
Benjamin Peterson90037602011-06-25 22:54:45 -05003566 vars into frame. */
3567 for (i = 0; i < PyTuple_GET_SIZE(co->co_cellvars); ++i) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003568 PyObject *c;
Benjamin Peterson90037602011-06-25 22:54:45 -05003569 int arg;
3570 /* Possibly account for the cell variable being an argument. */
3571 if (co->co_cell2arg != NULL &&
Guido van Rossum6832c812013-05-10 08:47:42 -07003572 (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG) {
Benjamin Peterson90037602011-06-25 22:54:45 -05003573 c = PyCell_New(GETLOCAL(arg));
Benjamin Peterson159ae412013-05-12 18:16:06 -05003574 /* Clear the local copy. */
3575 SETLOCAL(arg, NULL);
Guido van Rossum6832c812013-05-10 08:47:42 -07003576 }
3577 else {
Benjamin Peterson90037602011-06-25 22:54:45 -05003578 c = PyCell_New(NULL);
Guido van Rossum6832c812013-05-10 08:47:42 -07003579 }
Benjamin Peterson159ae412013-05-12 18:16:06 -05003580 if (c == NULL)
3581 goto fail;
Benjamin Peterson90037602011-06-25 22:54:45 -05003582 SETLOCAL(co->co_nlocals + i, c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003583 }
Benjamin Peterson90037602011-06-25 22:54:45 -05003584 for (i = 0; i < PyTuple_GET_SIZE(co->co_freevars); ++i) {
3585 PyObject *o = PyTuple_GET_ITEM(closure, i);
3586 Py_INCREF(o);
3587 freevars[PyTuple_GET_SIZE(co->co_cellvars) + i] = o;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003588 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003589
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003590 if (co->co_flags & CO_GENERATOR) {
3591 /* Don't need to keep the reference to f_back, it will be set
3592 * when the generator is resumed. */
Serhiy Storchaka505ff752014-02-09 13:33:53 +02003593 Py_CLEAR(f->f_back);
Neil Schemenauer2b13ce82001-06-21 02:41:10 +00003594
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003595 PCALL(PCALL_GENERATOR);
Jeremy Hylton985eba52003-02-05 23:13:00 +00003596
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003597 /* Create a new generator that owns the ready to run frame
3598 * and return that as the value. */
3599 return PyGen_New(f);
3600 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003601
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003602 retval = PyEval_EvalFrameEx(f,0);
Tim Peters5ca576e2001-06-18 22:08:13 +00003603
Thomas Woutersce272b62007-09-19 21:19:28 +00003604fail: /* Jump here from prelude on failure */
Tim Peters5ca576e2001-06-18 22:08:13 +00003605
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003606 /* decref'ing the frame can cause __del__ methods to get invoked,
3607 which can call back into Python. While we're done with the
3608 current Python frame (f), the associated C stack is still in use,
3609 so recursion_depth must be boosted for the duration.
3610 */
3611 assert(tstate != NULL);
3612 ++tstate->recursion_depth;
3613 Py_DECREF(f);
3614 --tstate->recursion_depth;
3615 return retval;
Tim Peters5ca576e2001-06-18 22:08:13 +00003616}
3617
3618
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003619static PyObject *
Benjamin Petersonce798522012-01-22 11:24:29 -05003620special_lookup(PyObject *o, _Py_Identifier *id)
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003621{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003622 PyObject *res;
Benjamin Petersonce798522012-01-22 11:24:29 -05003623 res = _PyObject_LookupSpecial(o, id);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003624 if (res == NULL && !PyErr_Occurred()) {
Benjamin Petersonce798522012-01-22 11:24:29 -05003625 PyErr_SetObject(PyExc_AttributeError, id->object);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003626 return NULL;
3627 }
3628 return res;
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003629}
3630
3631
Benjamin Peterson87880242011-07-03 16:48:31 -05003632/* These 3 functions deal with the exception state of generators. */
3633
3634static void
3635save_exc_state(PyThreadState *tstate, PyFrameObject *f)
3636{
3637 PyObject *type, *value, *traceback;
3638 Py_XINCREF(tstate->exc_type);
3639 Py_XINCREF(tstate->exc_value);
3640 Py_XINCREF(tstate->exc_traceback);
3641 type = f->f_exc_type;
3642 value = f->f_exc_value;
3643 traceback = f->f_exc_traceback;
3644 f->f_exc_type = tstate->exc_type;
3645 f->f_exc_value = tstate->exc_value;
3646 f->f_exc_traceback = tstate->exc_traceback;
3647 Py_XDECREF(type);
3648 Py_XDECREF(value);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02003649 Py_XDECREF(traceback);
Benjamin Peterson87880242011-07-03 16:48:31 -05003650}
3651
3652static void
3653swap_exc_state(PyThreadState *tstate, PyFrameObject *f)
3654{
3655 PyObject *tmp;
3656 tmp = tstate->exc_type;
3657 tstate->exc_type = f->f_exc_type;
3658 f->f_exc_type = tmp;
3659 tmp = tstate->exc_value;
3660 tstate->exc_value = f->f_exc_value;
3661 f->f_exc_value = tmp;
3662 tmp = tstate->exc_traceback;
3663 tstate->exc_traceback = f->f_exc_traceback;
3664 f->f_exc_traceback = tmp;
3665}
3666
3667static void
3668restore_and_clear_exc_state(PyThreadState *tstate, PyFrameObject *f)
3669{
3670 PyObject *type, *value, *tb;
3671 type = tstate->exc_type;
3672 value = tstate->exc_value;
3673 tb = tstate->exc_traceback;
3674 tstate->exc_type = f->f_exc_type;
3675 tstate->exc_value = f->f_exc_value;
3676 tstate->exc_traceback = f->f_exc_traceback;
3677 f->f_exc_type = NULL;
3678 f->f_exc_value = NULL;
3679 f->f_exc_traceback = NULL;
3680 Py_XDECREF(type);
3681 Py_XDECREF(value);
3682 Py_XDECREF(tb);
3683}
3684
3685
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003686/* Logic for the raise statement (too complicated for inlining).
3687 This *consumes* a reference count to each of its arguments. */
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003688static int
Collin Winter828f04a2007-08-31 00:04:24 +00003689do_raise(PyObject *exc, PyObject *cause)
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003690{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003691 PyObject *type = NULL, *value = NULL;
Collin Winter828f04a2007-08-31 00:04:24 +00003692
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003693 if (exc == NULL) {
3694 /* Reraise */
3695 PyThreadState *tstate = PyThreadState_GET();
3696 PyObject *tb;
3697 type = tstate->exc_type;
3698 value = tstate->exc_value;
3699 tb = tstate->exc_traceback;
3700 if (type == Py_None) {
3701 PyErr_SetString(PyExc_RuntimeError,
3702 "No active exception to reraise");
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003703 return 0;
3704 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003705 Py_XINCREF(type);
3706 Py_XINCREF(value);
3707 Py_XINCREF(tb);
3708 PyErr_Restore(type, value, tb);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003709 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003710 }
Guido van Rossumac7be682001-01-17 15:42:30 +00003711
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003712 /* We support the following forms of raise:
3713 raise
Collin Winter828f04a2007-08-31 00:04:24 +00003714 raise <instance>
3715 raise <type> */
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003716
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003717 if (PyExceptionClass_Check(exc)) {
3718 type = exc;
3719 value = PyObject_CallObject(exc, NULL);
3720 if (value == NULL)
3721 goto raise_error;
Benjamin Peterson5afa03a2011-07-15 14:09:26 -05003722 if (!PyExceptionInstance_Check(value)) {
3723 PyErr_Format(PyExc_TypeError,
3724 "calling %R should have returned an instance of "
3725 "BaseException, not %R",
3726 type, Py_TYPE(value));
3727 goto raise_error;
3728 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003729 }
3730 else if (PyExceptionInstance_Check(exc)) {
3731 value = exc;
3732 type = PyExceptionInstance_Class(exc);
3733 Py_INCREF(type);
3734 }
3735 else {
3736 /* Not something you can raise. You get an exception
3737 anyway, just not what you specified :-) */
3738 Py_DECREF(exc);
3739 PyErr_SetString(PyExc_TypeError,
3740 "exceptions must derive from BaseException");
3741 goto raise_error;
3742 }
Collin Winter828f04a2007-08-31 00:04:24 +00003743
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003744 if (cause) {
3745 PyObject *fixed_cause;
3746 if (PyExceptionClass_Check(cause)) {
3747 fixed_cause = PyObject_CallObject(cause, NULL);
3748 if (fixed_cause == NULL)
3749 goto raise_error;
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003750 Py_DECREF(cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003751 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003752 else if (PyExceptionInstance_Check(cause)) {
3753 fixed_cause = cause;
3754 }
3755 else if (cause == Py_None) {
3756 Py_DECREF(cause);
3757 fixed_cause = NULL;
3758 }
3759 else {
3760 PyErr_SetString(PyExc_TypeError,
3761 "exception causes must derive from "
3762 "BaseException");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003763 goto raise_error;
3764 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003765 PyException_SetCause(value, fixed_cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003766 }
Collin Winter828f04a2007-08-31 00:04:24 +00003767
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003768 PyErr_SetObject(type, value);
3769 /* PyErr_SetObject incref's its arguments */
3770 Py_XDECREF(value);
3771 Py_XDECREF(type);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003772 return 0;
Collin Winter828f04a2007-08-31 00:04:24 +00003773
3774raise_error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003775 Py_XDECREF(value);
3776 Py_XDECREF(type);
3777 Py_XDECREF(cause);
Benjamin Peterson31a58ff2012-10-12 11:34:51 -04003778 return 0;
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003779}
3780
Tim Petersd6d010b2001-06-21 02:49:55 +00003781/* Iterate v argcnt times and store the results on the stack (via decreasing
Guido van Rossum0368b722007-05-11 16:50:42 +00003782 sp). Return 1 for success, 0 if error.
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00003783
Guido van Rossum0368b722007-05-11 16:50:42 +00003784 If argcntafter == -1, do a simple unpack. If it is >= 0, do an unpack
3785 with a variable target.
3786*/
Tim Petersd6d010b2001-06-21 02:49:55 +00003787
Barry Warsawe42b18f1997-08-25 22:13:04 +00003788static int
Guido van Rossum0368b722007-05-11 16:50:42 +00003789unpack_iterable(PyObject *v, int argcnt, int argcntafter, PyObject **sp)
Barry Warsawe42b18f1997-08-25 22:13:04 +00003790{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003791 int i = 0, j = 0;
3792 Py_ssize_t ll = 0;
3793 PyObject *it; /* iter(v) */
3794 PyObject *w;
3795 PyObject *l = NULL; /* variable list */
Guido van Rossumac7be682001-01-17 15:42:30 +00003796
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003797 assert(v != NULL);
Tim Petersd6d010b2001-06-21 02:49:55 +00003798
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003799 it = PyObject_GetIter(v);
3800 if (it == NULL)
3801 goto Error;
Tim Petersd6d010b2001-06-21 02:49:55 +00003802
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003803 for (; i < argcnt; i++) {
3804 w = PyIter_Next(it);
3805 if (w == NULL) {
3806 /* Iterator done, via error or exhaustion. */
3807 if (!PyErr_Occurred()) {
3808 PyErr_Format(PyExc_ValueError,
3809 "need more than %d value%s to unpack",
3810 i, i == 1 ? "" : "s");
3811 }
3812 goto Error;
3813 }
3814 *--sp = w;
3815 }
Tim Petersd6d010b2001-06-21 02:49:55 +00003816
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003817 if (argcntafter == -1) {
3818 /* We better have exhausted the iterator now. */
3819 w = PyIter_Next(it);
3820 if (w == NULL) {
3821 if (PyErr_Occurred())
3822 goto Error;
3823 Py_DECREF(it);
3824 return 1;
3825 }
3826 Py_DECREF(w);
Georg Brandl0310a832010-07-10 10:32:36 +00003827 PyErr_Format(PyExc_ValueError, "too many values to unpack "
3828 "(expected %d)", argcnt);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003829 goto Error;
3830 }
Guido van Rossum0368b722007-05-11 16:50:42 +00003831
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003832 l = PySequence_List(it);
3833 if (l == NULL)
3834 goto Error;
3835 *--sp = l;
3836 i++;
Guido van Rossum0368b722007-05-11 16:50:42 +00003837
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003838 ll = PyList_GET_SIZE(l);
3839 if (ll < argcntafter) {
3840 PyErr_Format(PyExc_ValueError, "need more than %zd values to unpack",
3841 argcnt + ll);
3842 goto Error;
3843 }
Guido van Rossum0368b722007-05-11 16:50:42 +00003844
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003845 /* Pop the "after-variable" args off the list. */
3846 for (j = argcntafter; j > 0; j--, i++) {
3847 *--sp = PyList_GET_ITEM(l, ll - j);
3848 }
3849 /* Resize the list. */
3850 Py_SIZE(l) = ll - argcntafter;
3851 Py_DECREF(it);
3852 return 1;
Guido van Rossum0368b722007-05-11 16:50:42 +00003853
Tim Petersd6d010b2001-06-21 02:49:55 +00003854Error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003855 for (; i > 0; i--, sp++)
3856 Py_DECREF(*sp);
3857 Py_XDECREF(it);
3858 return 0;
Barry Warsawe42b18f1997-08-25 22:13:04 +00003859}
3860
3861
Guido van Rossum96a42c81992-01-12 02:29:51 +00003862#ifdef LLTRACE
Guido van Rossum3f5da241990-12-20 15:06:42 +00003863static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003864prtrace(PyObject *v, char *str)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003865{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003866 printf("%s ", str);
3867 if (PyObject_Print(v, stdout, 0) != 0)
3868 PyErr_Clear(); /* Don't know what else to do */
3869 printf("\n");
3870 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003871}
Guido van Rossum3f5da241990-12-20 15:06:42 +00003872#endif
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003873
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003874static void
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003875call_exc_trace(Py_tracefunc func, PyObject *self,
3876 PyThreadState *tstate, PyFrameObject *f)
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003877{
Victor Stinneraaa8ed82013-07-10 13:57:55 +02003878 PyObject *type, *value, *traceback, *orig_traceback, *arg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003879 int err;
Antoine Pitrou89335212013-11-23 14:05:23 +01003880 PyErr_Fetch(&type, &value, &orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003881 if (value == NULL) {
3882 value = Py_None;
3883 Py_INCREF(value);
3884 }
Antoine Pitrou89335212013-11-23 14:05:23 +01003885 PyErr_NormalizeException(&type, &value, &orig_traceback);
3886 traceback = (orig_traceback != NULL) ? orig_traceback : Py_None;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003887 arg = PyTuple_Pack(3, type, value, traceback);
3888 if (arg == NULL) {
Antoine Pitrou89335212013-11-23 14:05:23 +01003889 PyErr_Restore(type, value, orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003890 return;
3891 }
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003892 err = call_trace(func, self, tstate, f, PyTrace_EXCEPTION, arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003893 Py_DECREF(arg);
3894 if (err == 0)
Victor Stinneraaa8ed82013-07-10 13:57:55 +02003895 PyErr_Restore(type, value, orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003896 else {
3897 Py_XDECREF(type);
3898 Py_XDECREF(value);
Victor Stinneraaa8ed82013-07-10 13:57:55 +02003899 Py_XDECREF(orig_traceback);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003900 }
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003901}
3902
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +00003903static int
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003904call_trace_protected(Py_tracefunc func, PyObject *obj,
3905 PyThreadState *tstate, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003906 int what, PyObject *arg)
Fred Drake4ec5d562001-10-04 19:26:43 +00003907{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003908 PyObject *type, *value, *traceback;
3909 int err;
3910 PyErr_Fetch(&type, &value, &traceback);
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003911 err = call_trace(func, obj, tstate, frame, what, arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003912 if (err == 0)
3913 {
3914 PyErr_Restore(type, value, traceback);
3915 return 0;
3916 }
3917 else {
3918 Py_XDECREF(type);
3919 Py_XDECREF(value);
3920 Py_XDECREF(traceback);
3921 return -1;
3922 }
Fred Drake4ec5d562001-10-04 19:26:43 +00003923}
3924
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003925static int
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003926call_trace(Py_tracefunc func, PyObject *obj,
3927 PyThreadState *tstate, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003928 int what, PyObject *arg)
Guido van Rossum96a42c81992-01-12 02:29:51 +00003929{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003930 int result;
3931 if (tstate->tracing)
3932 return 0;
3933 tstate->tracing++;
3934 tstate->use_tracing = 0;
3935 result = func(obj, frame, what, arg);
3936 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
3937 || (tstate->c_profilefunc != NULL));
3938 tstate->tracing--;
3939 return result;
Guido van Rossum96a42c81992-01-12 02:29:51 +00003940}
3941
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003942PyObject *
3943_PyEval_CallTracing(PyObject *func, PyObject *args)
3944{
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003945 PyThreadState *tstate = PyThreadState_GET();
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003946 int save_tracing = tstate->tracing;
3947 int save_use_tracing = tstate->use_tracing;
3948 PyObject *result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003949
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003950 tstate->tracing = 0;
3951 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
3952 || (tstate->c_profilefunc != NULL));
3953 result = PyObject_Call(func, args, NULL);
3954 tstate->tracing = save_tracing;
3955 tstate->use_tracing = save_use_tracing;
3956 return result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003957}
3958
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +00003959/* See Objects/lnotab_notes.txt for a description of how tracing works. */
Michael W. Hudson006c7522002-11-08 13:08:46 +00003960static int
Tim Peters8a5c3c72004-04-05 19:36:21 +00003961maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003962 PyThreadState *tstate, PyFrameObject *frame,
3963 int *instr_lb, int *instr_ub, int *instr_prev)
Michael W. Hudsondd32a912002-08-15 14:59:02 +00003964{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003965 int result = 0;
3966 int line = frame->f_lineno;
Michael W. Hudson006c7522002-11-08 13:08:46 +00003967
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003968 /* If the last instruction executed isn't in the current
3969 instruction window, reset the window.
3970 */
3971 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) {
3972 PyAddrPair bounds;
3973 line = _PyCode_CheckLineNumber(frame->f_code, frame->f_lasti,
3974 &bounds);
3975 *instr_lb = bounds.ap_lower;
3976 *instr_ub = bounds.ap_upper;
3977 }
3978 /* If the last instruction falls at the start of a line or if
3979 it represents a jump backwards, update the frame's line
3980 number and call the trace function. */
3981 if (frame->f_lasti == *instr_lb || frame->f_lasti < *instr_prev) {
3982 frame->f_lineno = line;
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01003983 result = call_trace(func, obj, tstate, frame, PyTrace_LINE, Py_None);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003984 }
3985 *instr_prev = frame->f_lasti;
3986 return result;
Michael W. Hudsondd32a912002-08-15 14:59:02 +00003987}
3988
Fred Drake5755ce62001-06-27 19:19:46 +00003989void
3990PyEval_SetProfile(Py_tracefunc func, PyObject *arg)
Fred Draked0838392001-06-16 21:02:31 +00003991{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003992 PyThreadState *tstate = PyThreadState_GET();
3993 PyObject *temp = tstate->c_profileobj;
3994 Py_XINCREF(arg);
3995 tstate->c_profilefunc = NULL;
3996 tstate->c_profileobj = NULL;
3997 /* Must make sure that tracing is not ignored if 'temp' is freed */
3998 tstate->use_tracing = tstate->c_tracefunc != NULL;
3999 Py_XDECREF(temp);
4000 tstate->c_profilefunc = func;
4001 tstate->c_profileobj = arg;
4002 /* Flag that tracing or profiling is turned on */
4003 tstate->use_tracing = (func != NULL) || (tstate->c_tracefunc != NULL);
Fred Drake5755ce62001-06-27 19:19:46 +00004004}
4005
4006void
4007PyEval_SetTrace(Py_tracefunc func, PyObject *arg)
4008{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004009 PyThreadState *tstate = PyThreadState_GET();
4010 PyObject *temp = tstate->c_traceobj;
4011 _Py_TracingPossible += (func != NULL) - (tstate->c_tracefunc != NULL);
4012 Py_XINCREF(arg);
4013 tstate->c_tracefunc = NULL;
4014 tstate->c_traceobj = NULL;
4015 /* Must make sure that profiling is not ignored if 'temp' is freed */
4016 tstate->use_tracing = tstate->c_profilefunc != NULL;
4017 Py_XDECREF(temp);
4018 tstate->c_tracefunc = func;
4019 tstate->c_traceobj = arg;
4020 /* Flag that tracing or profiling is turned on */
4021 tstate->use_tracing = ((func != NULL)
4022 || (tstate->c_profilefunc != NULL));
Fred Draked0838392001-06-16 21:02:31 +00004023}
4024
Guido van Rossumb209a111997-04-29 18:18:01 +00004025PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004026PyEval_GetBuiltins(void)
Guido van Rossum6135a871995-01-09 17:53:26 +00004027{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004028 PyFrameObject *current_frame = PyEval_GetFrame();
4029 if (current_frame == NULL)
4030 return PyThreadState_GET()->interp->builtins;
4031 else
4032 return current_frame->f_builtins;
Guido van Rossum6135a871995-01-09 17:53:26 +00004033}
4034
Guido van Rossumb209a111997-04-29 18:18:01 +00004035PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004036PyEval_GetLocals(void)
Guido van Rossum5b722181993-03-30 17:46:03 +00004037{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004038 PyFrameObject *current_frame = PyEval_GetFrame();
Victor Stinner41bb43a2013-10-29 01:19:37 +01004039 if (current_frame == NULL) {
4040 PyErr_SetString(PyExc_SystemError, "frame does not exist");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004041 return NULL;
Victor Stinner41bb43a2013-10-29 01:19:37 +01004042 }
4043
4044 if (PyFrame_FastToLocalsWithError(current_frame) < 0)
4045 return NULL;
4046
4047 assert(current_frame->f_locals != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004048 return current_frame->f_locals;
Guido van Rossum5b722181993-03-30 17:46:03 +00004049}
4050
Guido van Rossumb209a111997-04-29 18:18:01 +00004051PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004052PyEval_GetGlobals(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +00004053{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004054 PyFrameObject *current_frame = PyEval_GetFrame();
4055 if (current_frame == NULL)
4056 return NULL;
Victor Stinner41bb43a2013-10-29 01:19:37 +01004057
4058 assert(current_frame->f_globals != NULL);
4059 return current_frame->f_globals;
Guido van Rossum3f5da241990-12-20 15:06:42 +00004060}
4061
Guido van Rossum6297a7a2003-02-19 15:53:17 +00004062PyFrameObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004063PyEval_GetFrame(void)
Guido van Rossume59214e1994-08-30 08:01:59 +00004064{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004065 PyThreadState *tstate = PyThreadState_GET();
4066 return _PyThreadState_GetFrame(tstate);
Guido van Rossume59214e1994-08-30 08:01:59 +00004067}
4068
Guido van Rossum6135a871995-01-09 17:53:26 +00004069int
Tim Peters5ba58662001-07-16 02:29:45 +00004070PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
Jeremy Hylton061d1062001-03-22 02:32:48 +00004071{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004072 PyFrameObject *current_frame = PyEval_GetFrame();
4073 int result = cf->cf_flags != 0;
Tim Peters5ba58662001-07-16 02:29:45 +00004074
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004075 if (current_frame != NULL) {
4076 const int codeflags = current_frame->f_code->co_flags;
4077 const int compilerflags = codeflags & PyCF_MASK;
4078 if (compilerflags) {
4079 result = 1;
4080 cf->cf_flags |= compilerflags;
4081 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00004082#if 0 /* future keyword */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004083 if (codeflags & CO_GENERATOR_ALLOWED) {
4084 result = 1;
4085 cf->cf_flags |= CO_GENERATOR_ALLOWED;
4086 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00004087#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004088 }
4089 return result;
Jeremy Hylton061d1062001-03-22 02:32:48 +00004090}
4091
Guido van Rossum3f5da241990-12-20 15:06:42 +00004092
Guido van Rossum681d79a1995-07-18 14:51:37 +00004093/* External interface to call any callable object.
Antoine Pitrou8689a102010-04-01 16:53:15 +00004094 The arg must be a tuple or NULL. The kw must be a dict or NULL. */
Guido van Rossume59214e1994-08-30 08:01:59 +00004095
Guido van Rossumb209a111997-04-29 18:18:01 +00004096PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004097PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw)
Guido van Rossum681d79a1995-07-18 14:51:37 +00004098{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004099 PyObject *result;
Guido van Rossum681d79a1995-07-18 14:51:37 +00004100
Victor Stinnerace47d72013-07-18 01:41:08 +02004101#ifdef Py_DEBUG
4102 /* PyEval_CallObjectWithKeywords() must not be called with an exception
4103 set, because it may clear it (directly or indirectly)
4104 and so the caller looses its exception */
4105 assert(!PyErr_Occurred());
4106#endif
4107
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004108 if (arg == NULL) {
4109 arg = PyTuple_New(0);
4110 if (arg == NULL)
4111 return NULL;
4112 }
4113 else if (!PyTuple_Check(arg)) {
4114 PyErr_SetString(PyExc_TypeError,
4115 "argument list must be a tuple");
4116 return NULL;
4117 }
4118 else
4119 Py_INCREF(arg);
Guido van Rossum681d79a1995-07-18 14:51:37 +00004120
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004121 if (kw != NULL && !PyDict_Check(kw)) {
4122 PyErr_SetString(PyExc_TypeError,
4123 "keyword list must be a dictionary");
4124 Py_DECREF(arg);
4125 return NULL;
4126 }
Guido van Rossume3e61c11995-08-04 04:14:47 +00004127
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004128 result = PyObject_Call(func, arg, kw);
4129 Py_DECREF(arg);
Victor Stinnerace47d72013-07-18 01:41:08 +02004130
4131 assert((result != NULL && !PyErr_Occurred())
4132 || (result == NULL && PyErr_Occurred()));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004133 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004134}
4135
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00004136const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00004137PyEval_GetFuncName(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00004138{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004139 if (PyMethod_Check(func))
4140 return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func));
4141 else if (PyFunction_Check(func))
4142 return _PyUnicode_AsString(((PyFunctionObject*)func)->func_name);
4143 else if (PyCFunction_Check(func))
4144 return ((PyCFunctionObject*)func)->m_ml->ml_name;
4145 else
4146 return func->ob_type->tp_name;
Jeremy Hylton512a2372001-04-11 13:52:29 +00004147}
4148
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00004149const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00004150PyEval_GetFuncDesc(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00004151{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004152 if (PyMethod_Check(func))
4153 return "()";
4154 else if (PyFunction_Check(func))
4155 return "()";
4156 else if (PyCFunction_Check(func))
4157 return "()";
4158 else
4159 return " object";
Jeremy Hylton512a2372001-04-11 13:52:29 +00004160}
4161
Neal Norwitzaddfe0c2002-11-10 14:33:26 +00004162static void
Jeremy Hylton192690e2002-08-16 18:36:11 +00004163err_args(PyObject *func, int flags, int nargs)
4164{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004165 if (flags & METH_NOARGS)
4166 PyErr_Format(PyExc_TypeError,
4167 "%.200s() takes no arguments (%d given)",
4168 ((PyCFunctionObject *)func)->m_ml->ml_name,
4169 nargs);
4170 else
4171 PyErr_Format(PyExc_TypeError,
4172 "%.200s() takes exactly one argument (%d given)",
4173 ((PyCFunctionObject *)func)->m_ml->ml_name,
4174 nargs);
Jeremy Hylton192690e2002-08-16 18:36:11 +00004175}
4176
Armin Rigo1c2d7e52005-09-20 18:34:01 +00004177#define C_TRACE(x, call) \
Nicholas Bastind858a772004-06-25 23:31:06 +00004178if (tstate->use_tracing && tstate->c_profilefunc) { \
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004179 if (call_trace(tstate->c_profilefunc, tstate->c_profileobj, \
4180 tstate, tstate->frame, \
4181 PyTrace_C_CALL, func)) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004182 x = NULL; \
4183 } \
4184 else { \
4185 x = call; \
4186 if (tstate->c_profilefunc != NULL) { \
4187 if (x == NULL) { \
4188 call_trace_protected(tstate->c_profilefunc, \
4189 tstate->c_profileobj, \
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004190 tstate, tstate->frame, \
4191 PyTrace_C_EXCEPTION, func); \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004192 /* XXX should pass (type, value, tb) */ \
4193 } else { \
4194 if (call_trace(tstate->c_profilefunc, \
4195 tstate->c_profileobj, \
Victor Stinnerfdeb6ec2013-12-13 02:01:38 +01004196 tstate, tstate->frame, \
4197 PyTrace_C_RETURN, func)) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004198 Py_DECREF(x); \
4199 x = NULL; \
4200 } \
4201 } \
4202 } \
4203 } \
Nicholas Bastind858a772004-06-25 23:31:06 +00004204} else { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004205 x = call; \
4206 }
Nicholas Bastinc69ebe82004-03-24 21:57:10 +00004207
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004208static PyObject *
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00004209call_function(PyObject ***pp_stack, int oparg
4210#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004211 , uint64* pintr0, uint64* pintr1
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00004212#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004213 )
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004214{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004215 int na = oparg & 0xff;
4216 int nk = (oparg>>8) & 0xff;
4217 int n = na + 2 * nk;
4218 PyObject **pfunc = (*pp_stack) - n - 1;
4219 PyObject *func = *pfunc;
4220 PyObject *x, *w;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004221
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004222 /* Always dispatch PyCFunction first, because these are
4223 presumed to be the most frequent callable object.
4224 */
4225 if (PyCFunction_Check(func) && nk == 0) {
4226 int flags = PyCFunction_GET_FLAGS(func);
4227 PyThreadState *tstate = PyThreadState_GET();
Raymond Hettingera7f56bc2004-06-26 04:34:33 +00004228
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004229 PCALL(PCALL_CFUNCTION);
4230 if (flags & (METH_NOARGS | METH_O)) {
4231 PyCFunction meth = PyCFunction_GET_FUNCTION(func);
4232 PyObject *self = PyCFunction_GET_SELF(func);
4233 if (flags & METH_NOARGS && na == 0) {
4234 C_TRACE(x, (*meth)(self,NULL));
4235 }
4236 else if (flags & METH_O && na == 1) {
4237 PyObject *arg = EXT_POP(*pp_stack);
4238 C_TRACE(x, (*meth)(self,arg));
4239 Py_DECREF(arg);
4240 }
4241 else {
4242 err_args(func, flags, na);
4243 x = NULL;
4244 }
4245 }
4246 else {
4247 PyObject *callargs;
4248 callargs = load_args(pp_stack, na);
Victor Stinner0ff0f542013-07-08 22:27:42 +02004249 if (callargs != NULL) {
4250 READ_TIMESTAMP(*pintr0);
4251 C_TRACE(x, PyCFunction_Call(func,callargs,NULL));
4252 READ_TIMESTAMP(*pintr1);
4253 Py_XDECREF(callargs);
4254 }
4255 else {
4256 x = NULL;
4257 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004258 }
4259 } else {
4260 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) {
4261 /* optimize access to bound methods */
4262 PyObject *self = PyMethod_GET_SELF(func);
4263 PCALL(PCALL_METHOD);
4264 PCALL(PCALL_BOUND_METHOD);
4265 Py_INCREF(self);
4266 func = PyMethod_GET_FUNCTION(func);
4267 Py_INCREF(func);
4268 Py_DECREF(*pfunc);
4269 *pfunc = self;
4270 na++;
4271 n++;
4272 } else
4273 Py_INCREF(func);
4274 READ_TIMESTAMP(*pintr0);
4275 if (PyFunction_Check(func))
4276 x = fast_function(func, pp_stack, n, na, nk);
4277 else
4278 x = do_call(func, pp_stack, na, nk);
4279 READ_TIMESTAMP(*pintr1);
4280 Py_DECREF(func);
4281 }
Victor Stinnerf243ee42013-07-16 01:02:12 +02004282 assert((x != NULL && !PyErr_Occurred())
4283 || (x == NULL && PyErr_Occurred()));
Tim Peters8a5c3c72004-04-05 19:36:21 +00004284
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004285 /* Clear the stack of the function object. Also removes
4286 the arguments in case they weren't consumed already
4287 (fast_function() and err_args() leave them on the stack).
4288 */
4289 while ((*pp_stack) > pfunc) {
4290 w = EXT_POP(*pp_stack);
4291 Py_DECREF(w);
4292 PCALL(PCALL_POP);
4293 }
Victor Stinnerace47d72013-07-18 01:41:08 +02004294
4295 assert((x != NULL && !PyErr_Occurred())
4296 || (x == NULL && PyErr_Occurred()));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004297 return x;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004298}
4299
Jeremy Hylton192690e2002-08-16 18:36:11 +00004300/* The fast_function() function optimize calls for which no argument
Jeremy Hylton52820442001-01-03 23:52:36 +00004301 tuple is necessary; the objects are passed directly from the stack.
Jeremy Hylton985eba52003-02-05 23:13:00 +00004302 For the simplest case -- a function that takes only positional
4303 arguments and is called with only positional arguments -- it
4304 inlines the most primitive frame setup code from
4305 PyEval_EvalCodeEx(), which vastly reduces the checks that must be
4306 done before evaluating the frame.
Jeremy Hylton52820442001-01-03 23:52:36 +00004307*/
4308
4309static PyObject *
Guido van Rossumac7be682001-01-17 15:42:30 +00004310fast_function(PyObject *func, PyObject ***pp_stack, int n, int na, int nk)
Jeremy Hylton52820442001-01-03 23:52:36 +00004311{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004312 PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func);
4313 PyObject *globals = PyFunction_GET_GLOBALS(func);
4314 PyObject *argdefs = PyFunction_GET_DEFAULTS(func);
4315 PyObject *kwdefs = PyFunction_GET_KW_DEFAULTS(func);
4316 PyObject **d = NULL;
4317 int nd = 0;
Jeremy Hylton52820442001-01-03 23:52:36 +00004318
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004319 PCALL(PCALL_FUNCTION);
4320 PCALL(PCALL_FAST_FUNCTION);
4321 if (argdefs == NULL && co->co_argcount == n &&
4322 co->co_kwonlyargcount == 0 && nk==0 &&
4323 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) {
4324 PyFrameObject *f;
4325 PyObject *retval = NULL;
4326 PyThreadState *tstate = PyThreadState_GET();
4327 PyObject **fastlocals, **stack;
4328 int i;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004329
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004330 PCALL(PCALL_FASTER_FUNCTION);
4331 assert(globals != NULL);
4332 /* XXX Perhaps we should create a specialized
4333 PyFrame_New() that doesn't take locals, but does
4334 take builtins without sanity checking them.
4335 */
4336 assert(tstate != NULL);
4337 f = PyFrame_New(tstate, co, globals, NULL);
4338 if (f == NULL)
4339 return NULL;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004340
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004341 fastlocals = f->f_localsplus;
4342 stack = (*pp_stack) - n;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004343
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004344 for (i = 0; i < n; i++) {
4345 Py_INCREF(*stack);
4346 fastlocals[i] = *stack++;
4347 }
4348 retval = PyEval_EvalFrameEx(f,0);
4349 ++tstate->recursion_depth;
4350 Py_DECREF(f);
4351 --tstate->recursion_depth;
4352 return retval;
4353 }
4354 if (argdefs != NULL) {
4355 d = &PyTuple_GET_ITEM(argdefs, 0);
4356 nd = Py_SIZE(argdefs);
4357 }
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00004358 return PyEval_EvalCodeEx((PyObject*)co, globals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004359 (PyObject *)NULL, (*pp_stack)-n, na,
4360 (*pp_stack)-2*nk, nk, d, nd, kwdefs,
4361 PyFunction_GET_CLOSURE(func));
Jeremy Hylton52820442001-01-03 23:52:36 +00004362}
4363
4364static PyObject *
Ka-Ping Yee20579702001-01-15 22:14:16 +00004365update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack,
4366 PyObject *func)
Jeremy Hylton52820442001-01-03 23:52:36 +00004367{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004368 PyObject *kwdict = NULL;
4369 if (orig_kwdict == NULL)
4370 kwdict = PyDict_New();
4371 else {
4372 kwdict = PyDict_Copy(orig_kwdict);
4373 Py_DECREF(orig_kwdict);
4374 }
4375 if (kwdict == NULL)
4376 return NULL;
4377 while (--nk >= 0) {
4378 int err;
4379 PyObject *value = EXT_POP(*pp_stack);
4380 PyObject *key = EXT_POP(*pp_stack);
4381 if (PyDict_GetItem(kwdict, key) != NULL) {
4382 PyErr_Format(PyExc_TypeError,
4383 "%.200s%s got multiple values "
4384 "for keyword argument '%U'",
4385 PyEval_GetFuncName(func),
4386 PyEval_GetFuncDesc(func),
4387 key);
4388 Py_DECREF(key);
4389 Py_DECREF(value);
4390 Py_DECREF(kwdict);
4391 return NULL;
4392 }
4393 err = PyDict_SetItem(kwdict, key, value);
4394 Py_DECREF(key);
4395 Py_DECREF(value);
4396 if (err) {
4397 Py_DECREF(kwdict);
4398 return NULL;
4399 }
4400 }
4401 return kwdict;
Jeremy Hylton52820442001-01-03 23:52:36 +00004402}
4403
4404static PyObject *
4405update_star_args(int nstack, int nstar, PyObject *stararg,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004406 PyObject ***pp_stack)
Jeremy Hylton52820442001-01-03 23:52:36 +00004407{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004408 PyObject *callargs, *w;
Jeremy Hylton52820442001-01-03 23:52:36 +00004409
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004410 callargs = PyTuple_New(nstack + nstar);
4411 if (callargs == NULL) {
4412 return NULL;
4413 }
4414 if (nstar) {
4415 int i;
4416 for (i = 0; i < nstar; i++) {
4417 PyObject *a = PyTuple_GET_ITEM(stararg, i);
4418 Py_INCREF(a);
4419 PyTuple_SET_ITEM(callargs, nstack + i, a);
4420 }
4421 }
4422 while (--nstack >= 0) {
4423 w = EXT_POP(*pp_stack);
4424 PyTuple_SET_ITEM(callargs, nstack, w);
4425 }
4426 return callargs;
Jeremy Hylton52820442001-01-03 23:52:36 +00004427}
4428
4429static PyObject *
4430load_args(PyObject ***pp_stack, int na)
4431{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004432 PyObject *args = PyTuple_New(na);
4433 PyObject *w;
Jeremy Hylton52820442001-01-03 23:52:36 +00004434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004435 if (args == NULL)
4436 return NULL;
4437 while (--na >= 0) {
4438 w = EXT_POP(*pp_stack);
4439 PyTuple_SET_ITEM(args, na, w);
4440 }
4441 return args;
Jeremy Hylton52820442001-01-03 23:52:36 +00004442}
4443
4444static PyObject *
4445do_call(PyObject *func, PyObject ***pp_stack, int na, int nk)
4446{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004447 PyObject *callargs = NULL;
4448 PyObject *kwdict = NULL;
4449 PyObject *result = NULL;
Jeremy Hylton52820442001-01-03 23:52:36 +00004450
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004451 if (nk > 0) {
4452 kwdict = update_keyword_args(NULL, nk, pp_stack, func);
4453 if (kwdict == NULL)
4454 goto call_fail;
4455 }
4456 callargs = load_args(pp_stack, na);
4457 if (callargs == NULL)
4458 goto call_fail;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004459#ifdef CALL_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004460 /* At this point, we have to look at the type of func to
4461 update the call stats properly. Do it here so as to avoid
4462 exposing the call stats machinery outside ceval.c
4463 */
4464 if (PyFunction_Check(func))
4465 PCALL(PCALL_FUNCTION);
4466 else if (PyMethod_Check(func))
4467 PCALL(PCALL_METHOD);
4468 else if (PyType_Check(func))
4469 PCALL(PCALL_TYPE);
4470 else if (PyCFunction_Check(func))
4471 PCALL(PCALL_CFUNCTION);
4472 else
4473 PCALL(PCALL_OTHER);
Jeremy Hylton985eba52003-02-05 23:13:00 +00004474#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004475 if (PyCFunction_Check(func)) {
4476 PyThreadState *tstate = PyThreadState_GET();
4477 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
4478 }
4479 else
4480 result = PyObject_Call(func, callargs, kwdict);
Thomas Wouters7ce29ca2007-09-19 21:56:32 +00004481call_fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004482 Py_XDECREF(callargs);
4483 Py_XDECREF(kwdict);
4484 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004485}
4486
4487static PyObject *
4488ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
4489{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004490 int nstar = 0;
4491 PyObject *callargs = NULL;
4492 PyObject *stararg = NULL;
4493 PyObject *kwdict = NULL;
4494 PyObject *result = NULL;
Jeremy Hylton52820442001-01-03 23:52:36 +00004495
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004496 if (flags & CALL_FLAG_KW) {
4497 kwdict = EXT_POP(*pp_stack);
4498 if (!PyDict_Check(kwdict)) {
4499 PyObject *d;
4500 d = PyDict_New();
4501 if (d == NULL)
4502 goto ext_call_fail;
4503 if (PyDict_Update(d, kwdict) != 0) {
4504 Py_DECREF(d);
4505 /* PyDict_Update raises attribute
4506 * error (percolated from an attempt
4507 * to get 'keys' attribute) instead of
4508 * a type error if its second argument
4509 * is not a mapping.
4510 */
4511 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
4512 PyErr_Format(PyExc_TypeError,
4513 "%.200s%.200s argument after ** "
4514 "must be a mapping, not %.200s",
4515 PyEval_GetFuncName(func),
4516 PyEval_GetFuncDesc(func),
4517 kwdict->ob_type->tp_name);
4518 }
4519 goto ext_call_fail;
4520 }
4521 Py_DECREF(kwdict);
4522 kwdict = d;
4523 }
4524 }
4525 if (flags & CALL_FLAG_VAR) {
4526 stararg = EXT_POP(*pp_stack);
4527 if (!PyTuple_Check(stararg)) {
4528 PyObject *t = NULL;
4529 t = PySequence_Tuple(stararg);
4530 if (t == NULL) {
4531 if (PyErr_ExceptionMatches(PyExc_TypeError)) {
4532 PyErr_Format(PyExc_TypeError,
4533 "%.200s%.200s argument after * "
Victor Stinner0a5f65a2011-03-22 01:09:21 +01004534 "must be a sequence, not %.200s",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004535 PyEval_GetFuncName(func),
4536 PyEval_GetFuncDesc(func),
4537 stararg->ob_type->tp_name);
4538 }
4539 goto ext_call_fail;
4540 }
4541 Py_DECREF(stararg);
4542 stararg = t;
4543 }
4544 nstar = PyTuple_GET_SIZE(stararg);
4545 }
4546 if (nk > 0) {
4547 kwdict = update_keyword_args(kwdict, nk, pp_stack, func);
4548 if (kwdict == NULL)
4549 goto ext_call_fail;
4550 }
4551 callargs = update_star_args(na, nstar, stararg, pp_stack);
4552 if (callargs == NULL)
4553 goto ext_call_fail;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004554#ifdef CALL_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004555 /* At this point, we have to look at the type of func to
4556 update the call stats properly. Do it here so as to avoid
4557 exposing the call stats machinery outside ceval.c
4558 */
4559 if (PyFunction_Check(func))
4560 PCALL(PCALL_FUNCTION);
4561 else if (PyMethod_Check(func))
4562 PCALL(PCALL_METHOD);
4563 else if (PyType_Check(func))
4564 PCALL(PCALL_TYPE);
4565 else if (PyCFunction_Check(func))
4566 PCALL(PCALL_CFUNCTION);
4567 else
4568 PCALL(PCALL_OTHER);
Jeremy Hylton985eba52003-02-05 23:13:00 +00004569#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004570 if (PyCFunction_Check(func)) {
4571 PyThreadState *tstate = PyThreadState_GET();
4572 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
4573 }
4574 else
4575 result = PyObject_Call(func, callargs, kwdict);
Thomas Woutersce272b62007-09-19 21:19:28 +00004576ext_call_fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004577 Py_XDECREF(callargs);
4578 Py_XDECREF(kwdict);
4579 Py_XDECREF(stararg);
Victor Stinnerf243ee42013-07-16 01:02:12 +02004580 assert((result != NULL && !PyErr_Occurred())
4581 || (result == NULL && PyErr_Occurred()));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004582 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004583}
4584
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004585/* Extract a slice index from a PyInt or PyLong or an object with the
4586 nb_index slot defined, and store in *pi.
4587 Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
4588 and silently boost values less than -PY_SSIZE_T_MAX-1 to -PY_SSIZE_T_MAX-1.
Martin v. Löwisdde99d22006-02-17 15:57:41 +00004589 Return 0 on error, 1 on success.
Tim Peterscb479e72001-12-16 19:11:44 +00004590*/
Tim Petersb5196382001-12-16 19:44:20 +00004591/* Note: If v is NULL, return success without storing into *pi. This
4592 is because_PyEval_SliceIndex() is called by apply_slice(), which can be
4593 called by the SLICE opcode with v and/or w equal to NULL.
Tim Peterscb479e72001-12-16 19:11:44 +00004594*/
Guido van Rossum20c6add2000-05-08 14:06:50 +00004595int
Martin v. Löwis18e16552006-02-15 17:27:45 +00004596_PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004597{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004598 if (v != NULL) {
4599 Py_ssize_t x;
4600 if (PyIndex_Check(v)) {
4601 x = PyNumber_AsSsize_t(v, NULL);
4602 if (x == -1 && PyErr_Occurred())
4603 return 0;
4604 }
4605 else {
4606 PyErr_SetString(PyExc_TypeError,
4607 "slice indices must be integers or "
4608 "None or have an __index__ method");
4609 return 0;
4610 }
4611 *pi = x;
4612 }
4613 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004614}
4615
Guido van Rossum486364b2007-06-30 05:01:58 +00004616#define CANNOT_CATCH_MSG "catching classes that do not inherit from "\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004617 "BaseException is not allowed"
Brett Cannonf74225d2007-02-26 21:10:16 +00004618
Guido van Rossumb209a111997-04-29 18:18:01 +00004619static PyObject *
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02004620cmp_outcome(int op, PyObject *v, PyObject *w)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004621{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004622 int res = 0;
4623 switch (op) {
4624 case PyCmp_IS:
4625 res = (v == w);
4626 break;
4627 case PyCmp_IS_NOT:
4628 res = (v != w);
4629 break;
4630 case PyCmp_IN:
4631 res = PySequence_Contains(w, v);
4632 if (res < 0)
4633 return NULL;
4634 break;
4635 case PyCmp_NOT_IN:
4636 res = PySequence_Contains(w, v);
4637 if (res < 0)
4638 return NULL;
4639 res = !res;
4640 break;
4641 case PyCmp_EXC_MATCH:
4642 if (PyTuple_Check(w)) {
4643 Py_ssize_t i, length;
4644 length = PyTuple_Size(w);
4645 for (i = 0; i < length; i += 1) {
4646 PyObject *exc = PyTuple_GET_ITEM(w, i);
4647 if (!PyExceptionClass_Check(exc)) {
4648 PyErr_SetString(PyExc_TypeError,
4649 CANNOT_CATCH_MSG);
4650 return NULL;
4651 }
4652 }
4653 }
4654 else {
4655 if (!PyExceptionClass_Check(w)) {
4656 PyErr_SetString(PyExc_TypeError,
4657 CANNOT_CATCH_MSG);
4658 return NULL;
4659 }
4660 }
4661 res = PyErr_GivenExceptionMatches(v, w);
4662 break;
4663 default:
4664 return PyObject_RichCompare(v, w, op);
4665 }
4666 v = res ? Py_True : Py_False;
4667 Py_INCREF(v);
4668 return v;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004669}
4670
Thomas Wouters52152252000-08-17 22:55:00 +00004671static PyObject *
4672import_from(PyObject *v, PyObject *name)
Guido van Rossume9736fc1990-11-18 17:33:06 +00004673{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004674 PyObject *x;
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00004675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004676 x = PyObject_GetAttr(v, name);
4677 if (x == NULL && PyErr_ExceptionMatches(PyExc_AttributeError)) {
Brett Cannona79e4fb2013-07-12 11:22:26 -04004678 PyErr_Format(PyExc_ImportError, "cannot import name %R", name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004679 }
4680 return x;
Thomas Wouters52152252000-08-17 22:55:00 +00004681}
Guido van Rossumac7be682001-01-17 15:42:30 +00004682
Thomas Wouters52152252000-08-17 22:55:00 +00004683static int
4684import_all_from(PyObject *locals, PyObject *v)
4685{
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02004686 _Py_IDENTIFIER(__all__);
4687 _Py_IDENTIFIER(__dict__);
4688 PyObject *all = _PyObject_GetAttrId(v, &PyId___all__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004689 PyObject *dict, *name, *value;
4690 int skip_leading_underscores = 0;
4691 int pos, err;
Thomas Wouters52152252000-08-17 22:55:00 +00004692
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004693 if (all == NULL) {
4694 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
4695 return -1; /* Unexpected error */
4696 PyErr_Clear();
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02004697 dict = _PyObject_GetAttrId(v, &PyId___dict__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004698 if (dict == NULL) {
4699 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
4700 return -1;
4701 PyErr_SetString(PyExc_ImportError,
4702 "from-import-* object has no __dict__ and no __all__");
4703 return -1;
4704 }
4705 all = PyMapping_Keys(dict);
4706 Py_DECREF(dict);
4707 if (all == NULL)
4708 return -1;
4709 skip_leading_underscores = 1;
4710 }
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00004711
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004712 for (pos = 0, err = 0; ; pos++) {
4713 name = PySequence_GetItem(all, pos);
4714 if (name == NULL) {
4715 if (!PyErr_ExceptionMatches(PyExc_IndexError))
4716 err = -1;
4717 else
4718 PyErr_Clear();
4719 break;
4720 }
4721 if (skip_leading_underscores &&
4722 PyUnicode_Check(name) &&
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004723 PyUnicode_READY(name) != -1 &&
4724 PyUnicode_READ_CHAR(name, 0) == '_')
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004725 {
4726 Py_DECREF(name);
4727 continue;
4728 }
4729 value = PyObject_GetAttr(v, name);
4730 if (value == NULL)
4731 err = -1;
4732 else if (PyDict_CheckExact(locals))
4733 err = PyDict_SetItem(locals, name, value);
4734 else
4735 err = PyObject_SetItem(locals, name, value);
4736 Py_DECREF(name);
4737 Py_XDECREF(value);
4738 if (err != 0)
4739 break;
4740 }
4741 Py_DECREF(all);
4742 return err;
Guido van Rossume9736fc1990-11-18 17:33:06 +00004743}
4744
Guido van Rossumac7be682001-01-17 15:42:30 +00004745static void
Neal Norwitzda059e32007-08-26 05:33:45 +00004746format_exc_check_arg(PyObject *exc, const char *format_str, PyObject *obj)
Paul Prescode68140d2000-08-30 20:25:01 +00004747{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004748 const char *obj_str;
Paul Prescode68140d2000-08-30 20:25:01 +00004749
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004750 if (!obj)
4751 return;
Paul Prescode68140d2000-08-30 20:25:01 +00004752
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004753 obj_str = _PyUnicode_AsString(obj);
4754 if (!obj_str)
4755 return;
Paul Prescode68140d2000-08-30 20:25:01 +00004756
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004757 PyErr_Format(exc, format_str, obj_str);
Paul Prescode68140d2000-08-30 20:25:01 +00004758}
Guido van Rossum950361c1997-01-24 13:49:28 +00004759
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00004760static void
4761format_exc_unbound(PyCodeObject *co, int oparg)
4762{
4763 PyObject *name;
4764 /* Don't stomp existing exception */
4765 if (PyErr_Occurred())
4766 return;
4767 if (oparg < PyTuple_GET_SIZE(co->co_cellvars)) {
4768 name = PyTuple_GET_ITEM(co->co_cellvars,
4769 oparg);
4770 format_exc_check_arg(
4771 PyExc_UnboundLocalError,
4772 UNBOUNDLOCAL_ERROR_MSG,
4773 name);
4774 } else {
4775 name = PyTuple_GET_ITEM(co->co_freevars, oparg -
4776 PyTuple_GET_SIZE(co->co_cellvars));
4777 format_exc_check_arg(PyExc_NameError,
4778 UNBOUNDFREE_ERROR_MSG, name);
4779 }
4780}
4781
Victor Stinnerd2a915d2011-10-02 20:34:20 +02004782static PyObject *
4783unicode_concatenate(PyObject *v, PyObject *w,
4784 PyFrameObject *f, unsigned char *next_instr)
4785{
4786 PyObject *res;
4787 if (Py_REFCNT(v) == 2) {
4788 /* In the common case, there are 2 references to the value
4789 * stored in 'variable' when the += is performed: one on the
4790 * value stack (in 'v') and one still stored in the
4791 * 'variable'. We try to delete the variable now to reduce
4792 * the refcnt to 1.
4793 */
4794 switch (*next_instr) {
4795 case STORE_FAST:
4796 {
4797 int oparg = PEEKARG();
4798 PyObject **fastlocals = f->f_localsplus;
4799 if (GETLOCAL(oparg) == v)
4800 SETLOCAL(oparg, NULL);
4801 break;
4802 }
4803 case STORE_DEREF:
4804 {
4805 PyObject **freevars = (f->f_localsplus +
4806 f->f_code->co_nlocals);
4807 PyObject *c = freevars[PEEKARG()];
4808 if (PyCell_GET(c) == v)
4809 PyCell_Set(c, NULL);
4810 break;
4811 }
4812 case STORE_NAME:
4813 {
4814 PyObject *names = f->f_code->co_names;
4815 PyObject *name = GETITEM(names, PEEKARG());
4816 PyObject *locals = f->f_locals;
4817 if (PyDict_CheckExact(locals) &&
4818 PyDict_GetItem(locals, name) == v) {
4819 if (PyDict_DelItem(locals, name) != 0) {
4820 PyErr_Clear();
4821 }
4822 }
4823 break;
4824 }
4825 }
4826 }
4827 res = v;
4828 PyUnicode_Append(&res, w);
4829 return res;
4830}
4831
Guido van Rossum950361c1997-01-24 13:49:28 +00004832#ifdef DYNAMIC_EXECUTION_PROFILE
4833
Skip Montanarof118cb12001-10-15 20:51:38 +00004834static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004835getarray(long a[256])
Guido van Rossum950361c1997-01-24 13:49:28 +00004836{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004837 int i;
4838 PyObject *l = PyList_New(256);
4839 if (l == NULL) return NULL;
4840 for (i = 0; i < 256; i++) {
4841 PyObject *x = PyLong_FromLong(a[i]);
4842 if (x == NULL) {
4843 Py_DECREF(l);
4844 return NULL;
4845 }
4846 PyList_SetItem(l, i, x);
4847 }
4848 for (i = 0; i < 256; i++)
4849 a[i] = 0;
4850 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00004851}
4852
4853PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004854_Py_GetDXProfile(PyObject *self, PyObject *args)
Guido van Rossum950361c1997-01-24 13:49:28 +00004855{
4856#ifndef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004857 return getarray(dxp);
Guido van Rossum950361c1997-01-24 13:49:28 +00004858#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004859 int i;
4860 PyObject *l = PyList_New(257);
4861 if (l == NULL) return NULL;
4862 for (i = 0; i < 257; i++) {
4863 PyObject *x = getarray(dxpairs[i]);
4864 if (x == NULL) {
4865 Py_DECREF(l);
4866 return NULL;
4867 }
4868 PyList_SetItem(l, i, x);
4869 }
4870 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00004871#endif
4872}
4873
4874#endif