blob: 718bb32b5623569649355600734ebe66c3e0f352 [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 Pitrouf95a1b32010-05-09 15:52:27 +000040 register 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
Fred Drake5755ce62001-06-27 19:19:46 +0000126static int call_trace(Py_tracefunc, PyObject *, PyFrameObject *,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000127 int, PyObject *);
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +0000128static int call_trace_protected(Py_tracefunc, PyObject *,
Stefan Krahb7e10102010-06-23 18:42:39 +0000129 PyFrameObject *, int, PyObject *);
Fred Drake5755ce62001-06-27 19:19:46 +0000130static void call_exc_trace(Py_tracefunc, PyObject *, PyFrameObject *);
Tim Peters8a5c3c72004-04-05 19:36:21 +0000131static int maybe_call_line_trace(Py_tracefunc, PyObject *,
Stefan Krahb7e10102010-06-23 18:42:39 +0000132 PyFrameObject *, int *, int *, int *);
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000133
Thomas Wouters477c8d52006-05-27 19:21:47 +0000134static PyObject * cmp_outcome(int, PyObject *, PyObject *);
135static PyObject * import_from(PyObject *, PyObject *);
Thomas Wouters52152252000-08-17 22:55:00 +0000136static int import_all_from(PyObject *, PyObject *);
Neal Norwitzda059e32007-08-26 05:33:45 +0000137static void format_exc_check_arg(PyObject *, const char *, PyObject *);
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +0000138static void format_exc_unbound(PyCodeObject *co, int oparg);
Victor Stinnerd2a915d2011-10-02 20:34:20 +0200139static PyObject * unicode_concatenate(PyObject *, PyObject *,
140 PyFrameObject *, unsigned char *);
Benjamin Petersonce798522012-01-22 11:24:29 -0500141static PyObject * special_lookup(PyObject *, _Py_Identifier *);
Guido van Rossum374a9221991-04-04 10:40:29 +0000142
Paul Prescode68140d2000-08-30 20:25:01 +0000143#define NAME_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000144 "name '%.200s' is not defined"
Jeremy Hylton64949cb2001-01-25 20:06:59 +0000145#define GLOBAL_NAME_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000146 "global name '%.200s' is not defined"
Paul Prescode68140d2000-08-30 20:25:01 +0000147#define UNBOUNDLOCAL_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000148 "local variable '%.200s' referenced before assignment"
Jeremy Hyltonc76770c2001-04-13 16:51:46 +0000149#define UNBOUNDFREE_ERROR_MSG \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000150 "free variable '%.200s' referenced before assignment" \
151 " in enclosing scope"
Guido van Rossum374a9221991-04-04 10:40:29 +0000152
Guido van Rossum950361c1997-01-24 13:49:28 +0000153/* Dynamic execution profile */
154#ifdef DYNAMIC_EXECUTION_PROFILE
155#ifdef DXPAIRS
156static long dxpairs[257][256];
157#define dxp dxpairs[256]
158#else
159static long dxp[256];
160#endif
161#endif
162
Jeremy Hylton985eba52003-02-05 23:13:00 +0000163/* Function call profile */
164#ifdef CALL_PROFILE
165#define PCALL_NUM 11
166static int pcall[PCALL_NUM];
167
168#define PCALL_ALL 0
169#define PCALL_FUNCTION 1
170#define PCALL_FAST_FUNCTION 2
171#define PCALL_FASTER_FUNCTION 3
172#define PCALL_METHOD 4
173#define PCALL_BOUND_METHOD 5
174#define PCALL_CFUNCTION 6
175#define PCALL_TYPE 7
176#define PCALL_GENERATOR 8
177#define PCALL_OTHER 9
178#define PCALL_POP 10
179
180/* Notes about the statistics
181
182 PCALL_FAST stats
183
184 FAST_FUNCTION means no argument tuple needs to be created.
185 FASTER_FUNCTION means that the fast-path frame setup code is used.
186
187 If there is a method call where the call can be optimized by changing
188 the argument tuple and calling the function directly, it gets recorded
189 twice.
190
191 As a result, the relationship among the statistics appears to be
192 PCALL_ALL == PCALL_FUNCTION + PCALL_METHOD - PCALL_BOUND_METHOD +
193 PCALL_CFUNCTION + PCALL_TYPE + PCALL_GENERATOR + PCALL_OTHER
194 PCALL_FUNCTION > PCALL_FAST_FUNCTION > PCALL_FASTER_FUNCTION
195 PCALL_METHOD > PCALL_BOUND_METHOD
196*/
197
198#define PCALL(POS) pcall[POS]++
199
200PyObject *
201PyEval_GetCallStats(PyObject *self)
202{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000203 return Py_BuildValue("iiiiiiiiiii",
204 pcall[0], pcall[1], pcall[2], pcall[3],
205 pcall[4], pcall[5], pcall[6], pcall[7],
206 pcall[8], pcall[9], pcall[10]);
Jeremy Hylton985eba52003-02-05 23:13:00 +0000207}
208#else
209#define PCALL(O)
210
211PyObject *
212PyEval_GetCallStats(PyObject *self)
213{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000214 Py_INCREF(Py_None);
215 return Py_None;
Jeremy Hylton985eba52003-02-05 23:13:00 +0000216}
217#endif
218
Tim Peters5ca576e2001-06-18 22:08:13 +0000219
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000220#ifdef WITH_THREAD
221#define GIL_REQUEST _Py_atomic_load_relaxed(&gil_drop_request)
222#else
223#define GIL_REQUEST 0
224#endif
225
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000226/* This can set eval_breaker to 0 even though gil_drop_request became
227 1. We believe this is all right because the eval loop will release
228 the GIL eventually anyway. */
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000229#define COMPUTE_EVAL_BREAKER() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000230 _Py_atomic_store_relaxed( \
231 &eval_breaker, \
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000232 GIL_REQUEST | \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000233 _Py_atomic_load_relaxed(&pendingcalls_to_do) | \
234 pending_async_exc)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000235
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000236#ifdef WITH_THREAD
237
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000238#define SET_GIL_DROP_REQUEST() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000239 do { \
240 _Py_atomic_store_relaxed(&gil_drop_request, 1); \
241 _Py_atomic_store_relaxed(&eval_breaker, 1); \
242 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000243
244#define RESET_GIL_DROP_REQUEST() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000245 do { \
246 _Py_atomic_store_relaxed(&gil_drop_request, 0); \
247 COMPUTE_EVAL_BREAKER(); \
248 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000249
Benjamin Petersond2be5b42010-09-10 22:47:02 +0000250#endif
251
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000252/* Pending calls are only modified under pending_lock */
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000253#define SIGNAL_PENDING_CALLS() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000254 do { \
255 _Py_atomic_store_relaxed(&pendingcalls_to_do, 1); \
256 _Py_atomic_store_relaxed(&eval_breaker, 1); \
257 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000258
259#define UNSIGNAL_PENDING_CALLS() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000260 do { \
261 _Py_atomic_store_relaxed(&pendingcalls_to_do, 0); \
262 COMPUTE_EVAL_BREAKER(); \
263 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000264
265#define SIGNAL_ASYNC_EXC() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000266 do { \
267 pending_async_exc = 1; \
268 _Py_atomic_store_relaxed(&eval_breaker, 1); \
269 } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000270
271#define UNSIGNAL_ASYNC_EXC() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000272 do { pending_async_exc = 0; COMPUTE_EVAL_BREAKER(); } while (0)
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000273
274
Guido van Rossume59214e1994-08-30 08:01:59 +0000275#ifdef WITH_THREAD
Guido van Rossumff4949e1992-08-05 19:58:53 +0000276
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000277#ifdef HAVE_ERRNO_H
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000278#include <errno.h>
Guido van Rossum2571cc81999-04-07 16:07:23 +0000279#endif
Guido van Rossum49b56061998-10-01 20:42:43 +0000280#include "pythread.h"
Guido van Rossumff4949e1992-08-05 19:58:53 +0000281
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000282static PyThread_type_lock pending_lock = 0; /* for pending calls */
Guido van Rossuma9672091994-09-14 13:31:22 +0000283static long main_thread = 0;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000284/* This single variable consolidates all requests to break out of the fast path
285 in the eval loop. */
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000286static _Py_atomic_int eval_breaker = {0};
287/* Request for dropping the GIL */
288static _Py_atomic_int gil_drop_request = {0};
289/* Request for running pending calls. */
290static _Py_atomic_int pendingcalls_to_do = {0};
291/* Request for looking at the `async_exc` field of the current thread state.
292 Guarded by the GIL. */
293static int pending_async_exc = 0;
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000294
295#include "ceval_gil.h"
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000296
Tim Peters7f468f22004-10-11 02:40:51 +0000297int
298PyEval_ThreadsInitialized(void)
299{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000300 return gil_created();
Tim Peters7f468f22004-10-11 02:40:51 +0000301}
302
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000303void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000304PyEval_InitThreads(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000305{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000306 if (gil_created())
307 return;
308 create_gil();
309 take_gil(PyThreadState_GET());
310 main_thread = PyThread_get_thread_ident();
311 if (!pending_lock)
312 pending_lock = PyThread_allocate_lock();
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000313}
Guido van Rossumff4949e1992-08-05 19:58:53 +0000314
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000315void
Antoine Pitrou1df15362010-09-13 14:16:46 +0000316_PyEval_FiniThreads(void)
317{
318 if (!gil_created())
319 return;
320 destroy_gil();
321 assert(!gil_created());
322}
323
324void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000325PyEval_AcquireLock(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000326{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000327 PyThreadState *tstate = PyThreadState_GET();
328 if (tstate == NULL)
329 Py_FatalError("PyEval_AcquireLock: current thread state is NULL");
330 take_gil(tstate);
Guido van Rossum25ce5661997-08-02 03:10:38 +0000331}
332
333void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000334PyEval_ReleaseLock(void)
Guido van Rossum25ce5661997-08-02 03:10:38 +0000335{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 /* This function must succeed when the current thread state is NULL.
337 We therefore avoid PyThreadState_GET() which dumps a fatal error
338 in debug mode.
339 */
340 drop_gil((PyThreadState*)_Py_atomic_load_relaxed(
341 &_PyThreadState_Current));
Guido van Rossum25ce5661997-08-02 03:10:38 +0000342}
343
344void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000345PyEval_AcquireThread(PyThreadState *tstate)
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000346{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000347 if (tstate == NULL)
348 Py_FatalError("PyEval_AcquireThread: NULL new thread state");
349 /* Check someone has called PyEval_InitThreads() to create the lock */
350 assert(gil_created());
351 take_gil(tstate);
352 if (PyThreadState_Swap(tstate) != NULL)
353 Py_FatalError(
354 "PyEval_AcquireThread: non-NULL old thread state");
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000355}
356
357void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000358PyEval_ReleaseThread(PyThreadState *tstate)
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000359{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 if (tstate == NULL)
361 Py_FatalError("PyEval_ReleaseThread: NULL thread state");
362 if (PyThreadState_Swap(NULL) != tstate)
363 Py_FatalError("PyEval_ReleaseThread: wrong thread state");
364 drop_gil(tstate);
Guido van Rossum9cc8a201997-07-19 19:55:50 +0000365}
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000366
367/* This function is called from PyOS_AfterFork to ensure that newly
368 created child processes don't hold locks referring to threads which
369 are not running in the child process. (This could also be done using
370 pthread_atfork mechanism, at least for the pthreads implementation.) */
371
372void
373PyEval_ReInitThreads(void)
374{
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200375 _Py_IDENTIFIER(_after_fork);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 PyObject *threading, *result;
377 PyThreadState *tstate = PyThreadState_GET();
Jesse Nollera8513972008-07-17 16:49:17 +0000378
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000379 if (!gil_created())
380 return;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000381 recreate_gil();
382 pending_lock = PyThread_allocate_lock();
383 take_gil(tstate);
384 main_thread = PyThread_get_thread_ident();
Jesse Nollera8513972008-07-17 16:49:17 +0000385
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000386 /* Update the threading module with the new state.
387 */
388 tstate = PyThreadState_GET();
389 threading = PyMapping_GetItemString(tstate->interp->modules,
390 "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);
Guido van Rossumfee3a2d2000-08-27 17:34:07 +0000402}
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000403
404#else
Jeffrey Yasskin39370832010-05-03 19:29:34 +0000405static _Py_atomic_int eval_breaker = {0};
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000406static int pending_async_exc = 0;
407#endif /* WITH_THREAD */
408
409/* This function is used to signal that async exceptions are waiting to be
410 raised, therefore it is also useful in non-threaded builds. */
411
412void
413_PyEval_SignalAsyncExc(void)
414{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415 SIGNAL_ASYNC_EXC();
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000416}
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000417
Guido van Rossumff4949e1992-08-05 19:58:53 +0000418/* Functions save_thread and restore_thread are always defined so
419 dynamically loaded modules needn't be compiled separately for use
420 with and without threads: */
421
Guido van Rossum2fca21f71997-07-18 23:56:58 +0000422PyThreadState *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000423PyEval_SaveThread(void)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000424{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000425 PyThreadState *tstate = PyThreadState_Swap(NULL);
426 if (tstate == NULL)
427 Py_FatalError("PyEval_SaveThread: NULL tstate");
Guido van Rossume59214e1994-08-30 08:01:59 +0000428#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 if (gil_created())
430 drop_gil(tstate);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000431#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 return tstate;
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000433}
434
435void
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000436PyEval_RestoreThread(PyThreadState *tstate)
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000437{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000438 if (tstate == NULL)
439 Py_FatalError("PyEval_RestoreThread: NULL tstate");
Guido van Rossume59214e1994-08-30 08:01:59 +0000440#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000441 if (gil_created()) {
442 int err = errno;
443 take_gil(tstate);
Antoine Pitrou0d5e52d2011-05-04 20:02:30 +0200444 /* _Py_Finalizing is protected by the GIL */
445 if (_Py_Finalizing && tstate != _Py_Finalizing) {
446 drop_gil(tstate);
447 PyThread_exit_thread();
448 assert(0); /* unreachable */
449 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 errno = err;
451 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000452#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000453 PyThreadState_Swap(tstate);
Guido van Rossum1984f1e1992-08-04 12:41:02 +0000454}
455
456
Guido van Rossuma9672091994-09-14 13:31:22 +0000457/* Mechanism whereby asynchronously executing callbacks (e.g. UNIX
458 signal handlers or Mac I/O completion routines) can schedule calls
459 to a function to be called synchronously.
460 The synchronous function is called with one void* argument.
461 It should return 0 for success or -1 for failure -- failure should
462 be accompanied by an exception.
463
464 If registry succeeds, the registry function returns 0; if it fails
465 (e.g. due to too many pending calls) it returns -1 (without setting
466 an exception condition).
467
468 Note that because registry may occur from within signal handlers,
469 or other asynchronous events, calling malloc() is unsafe!
470
471#ifdef WITH_THREAD
472 Any thread can schedule pending calls, but only the main thread
473 will execute them.
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000474 There is no facility to schedule calls to a particular thread, but
475 that should be easy to change, should that ever be required. In
476 that case, the static variables here should go into the python
477 threadstate.
Guido van Rossuma9672091994-09-14 13:31:22 +0000478#endif
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000479*/
Guido van Rossuma9672091994-09-14 13:31:22 +0000480
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000481#ifdef WITH_THREAD
482
483/* The WITH_THREAD implementation is thread-safe. It allows
484 scheduling to be made from any thread, and even from an executing
485 callback.
486 */
487
488#define NPENDINGCALLS 32
489static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000490 int (*func)(void *);
491 void *arg;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000492} pendingcalls[NPENDINGCALLS];
493static int pendingfirst = 0;
494static int pendinglast = 0;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000495
496int
497Py_AddPendingCall(int (*func)(void *), void *arg)
498{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000499 int i, j, result=0;
500 PyThread_type_lock lock = pending_lock;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000501
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 /* try a few times for the lock. Since this mechanism is used
503 * for signal handling (on the main thread), there is a (slim)
504 * chance that a signal is delivered on the same thread while we
505 * hold the lock during the Py_MakePendingCalls() function.
506 * This avoids a deadlock in that case.
507 * Note that signals can be delivered on any thread. In particular,
508 * on Windows, a SIGINT is delivered on a system-created worker
509 * thread.
510 * We also check for lock being NULL, in the unlikely case that
511 * this function is called before any bytecode evaluation takes place.
512 */
513 if (lock != NULL) {
514 for (i = 0; i<100; i++) {
515 if (PyThread_acquire_lock(lock, NOWAIT_LOCK))
516 break;
517 }
518 if (i == 100)
519 return -1;
520 }
521
522 i = pendinglast;
523 j = (i + 1) % NPENDINGCALLS;
524 if (j == pendingfirst) {
525 result = -1; /* Queue full */
526 } else {
527 pendingcalls[i].func = func;
528 pendingcalls[i].arg = arg;
529 pendinglast = j;
530 }
531 /* signal main loop */
532 SIGNAL_PENDING_CALLS();
533 if (lock != NULL)
534 PyThread_release_lock(lock);
535 return result;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000536}
537
538int
539Py_MakePendingCalls(void)
540{
Charles-François Natalif23339a2011-07-23 18:15:43 +0200541 static int busy = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000542 int i;
543 int r = 0;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545 if (!pending_lock) {
546 /* initial allocation of the lock */
547 pending_lock = PyThread_allocate_lock();
548 if (pending_lock == NULL)
549 return -1;
550 }
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000551
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000552 /* only service pending calls on main thread */
553 if (main_thread && PyThread_get_thread_ident() != main_thread)
554 return 0;
555 /* don't perform recursive pending calls */
Charles-François Natalif23339a2011-07-23 18:15:43 +0200556 if (busy)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000557 return 0;
Charles-François Natalif23339a2011-07-23 18:15:43 +0200558 busy = 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000559 /* perform a bounded number of calls, in case of recursion */
560 for (i=0; i<NPENDINGCALLS; i++) {
561 int j;
562 int (*func)(void *);
563 void *arg = NULL;
564
565 /* pop one item off the queue while holding the lock */
566 PyThread_acquire_lock(pending_lock, WAIT_LOCK);
567 j = pendingfirst;
568 if (j == pendinglast) {
569 func = NULL; /* Queue empty */
570 } else {
571 func = pendingcalls[j].func;
572 arg = pendingcalls[j].arg;
573 pendingfirst = (j + 1) % NPENDINGCALLS;
574 }
575 if (pendingfirst != pendinglast)
576 SIGNAL_PENDING_CALLS();
577 else
578 UNSIGNAL_PENDING_CALLS();
579 PyThread_release_lock(pending_lock);
580 /* having released the lock, perform the callback */
581 if (func == NULL)
582 break;
583 r = func(arg);
584 if (r)
585 break;
586 }
Charles-François Natalif23339a2011-07-23 18:15:43 +0200587 busy = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000588 return r;
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000589}
590
591#else /* if ! defined WITH_THREAD */
592
593/*
594 WARNING! ASYNCHRONOUSLY EXECUTING CODE!
595 This code is used for signal handling in python that isn't built
596 with WITH_THREAD.
597 Don't use this implementation when Py_AddPendingCalls() can happen
598 on a different thread!
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000599
Guido van Rossuma9672091994-09-14 13:31:22 +0000600 There are two possible race conditions:
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000601 (1) nested asynchronous calls to Py_AddPendingCall()
602 (2) AddPendingCall() calls made while pending calls are being processed.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000603
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000604 (1) is very unlikely because typically signal delivery
605 is blocked during signal handling. So it should be impossible.
606 (2) is a real possibility.
Guido van Rossuma9672091994-09-14 13:31:22 +0000607 The current code is safe against (2), but not against (1).
608 The safety against (2) is derived from the fact that only one
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000609 thread is present, interrupted by signals, and that the critical
610 section is protected with the "busy" variable. On Windows, which
611 delivers SIGINT on a system thread, this does not hold and therefore
612 Windows really shouldn't use this version.
613 The two threads could theoretically wiggle around the "busy" variable.
Guido van Rossuma027efa1997-05-05 20:56:21 +0000614*/
Guido van Rossum8861b741996-07-30 16:49:37 +0000615
Guido van Rossuma9672091994-09-14 13:31:22 +0000616#define NPENDINGCALLS 32
617static struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000618 int (*func)(void *);
619 void *arg;
Guido van Rossuma9672091994-09-14 13:31:22 +0000620} pendingcalls[NPENDINGCALLS];
621static volatile int pendingfirst = 0;
622static volatile int pendinglast = 0;
Benjamin Peterson08ec84c2010-05-30 14:49:32 +0000623static _Py_atomic_int pendingcalls_to_do = {0};
Guido van Rossuma9672091994-09-14 13:31:22 +0000624
625int
Thomas Wouters334fb892000-07-25 12:56:38 +0000626Py_AddPendingCall(int (*func)(void *), void *arg)
Guido van Rossuma9672091994-09-14 13:31:22 +0000627{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000628 static volatile int busy = 0;
629 int i, j;
630 /* XXX Begin critical section */
631 if (busy)
632 return -1;
633 busy = 1;
634 i = pendinglast;
635 j = (i + 1) % NPENDINGCALLS;
636 if (j == pendingfirst) {
637 busy = 0;
638 return -1; /* Queue full */
639 }
640 pendingcalls[i].func = func;
641 pendingcalls[i].arg = arg;
642 pendinglast = j;
Skip Montanarod581d772002-09-03 20:10:45 +0000643
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000644 SIGNAL_PENDING_CALLS();
645 busy = 0;
646 /* XXX End critical section */
647 return 0;
Guido van Rossuma9672091994-09-14 13:31:22 +0000648}
649
Guido van Rossum180d7b41994-09-29 09:45:57 +0000650int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000651Py_MakePendingCalls(void)
Guido van Rossuma9672091994-09-14 13:31:22 +0000652{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000653 static int busy = 0;
654 if (busy)
655 return 0;
656 busy = 1;
657 UNSIGNAL_PENDING_CALLS();
658 for (;;) {
659 int i;
660 int (*func)(void *);
661 void *arg;
662 i = pendingfirst;
663 if (i == pendinglast)
664 break; /* Queue empty */
665 func = pendingcalls[i].func;
666 arg = pendingcalls[i].arg;
667 pendingfirst = (i + 1) % NPENDINGCALLS;
668 if (func(arg) < 0) {
669 busy = 0;
670 SIGNAL_PENDING_CALLS(); /* We're not done yet */
671 return -1;
672 }
673 }
674 busy = 0;
675 return 0;
Guido van Rossuma9672091994-09-14 13:31:22 +0000676}
677
Benjamin Petersone5bf3832009-01-17 23:43:58 +0000678#endif /* WITH_THREAD */
679
Guido van Rossuma9672091994-09-14 13:31:22 +0000680
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000681/* The interpreter's recursion limit */
682
Hye-Shik Changb6fa2812005-04-04 15:49:02 +0000683#ifndef Py_DEFAULT_RECURSION_LIMIT
684#define Py_DEFAULT_RECURSION_LIMIT 1000
685#endif
686static int recursion_limit = Py_DEFAULT_RECURSION_LIMIT;
687int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000688
Vladimir Marangozov7bd25be2000-09-01 11:07:19 +0000689int
690Py_GetRecursionLimit(void)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000691{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 return recursion_limit;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000693}
694
Vladimir Marangozov7bd25be2000-09-01 11:07:19 +0000695void
696Py_SetRecursionLimit(int new_limit)
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000697{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000698 recursion_limit = new_limit;
699 _Py_CheckRecursionLimit = recursion_limit;
Jeremy Hyltonee5adfb2000-08-31 19:23:01 +0000700}
701
Armin Rigo2b3eb402003-10-28 12:05:48 +0000702/* the macro Py_EnterRecursiveCall() only calls _Py_CheckRecursiveCall()
703 if the recursion_depth reaches _Py_CheckRecursionLimit.
704 If USE_STACKCHECK, the macro decrements _Py_CheckRecursionLimit
705 to guarantee that _Py_CheckRecursiveCall() is regularly called.
706 Without USE_STACKCHECK, there is no need for this. */
707int
708_Py_CheckRecursiveCall(char *where)
709{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000710 PyThreadState *tstate = PyThreadState_GET();
Armin Rigo2b3eb402003-10-28 12:05:48 +0000711
712#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000713 if (PyOS_CheckStack()) {
714 --tstate->recursion_depth;
715 PyErr_SetString(PyExc_MemoryError, "Stack overflow");
716 return -1;
717 }
Armin Rigo2b3eb402003-10-28 12:05:48 +0000718#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000719 _Py_CheckRecursionLimit = recursion_limit;
720 if (tstate->recursion_critical)
721 /* Somebody asked that we don't check for recursion. */
722 return 0;
723 if (tstate->overflowed) {
724 if (tstate->recursion_depth > recursion_limit + 50) {
725 /* Overflowing while handling an overflow. Give up. */
726 Py_FatalError("Cannot recover from stack overflow.");
727 }
728 return 0;
729 }
730 if (tstate->recursion_depth > recursion_limit) {
731 --tstate->recursion_depth;
732 tstate->overflowed = 1;
733 PyErr_Format(PyExc_RuntimeError,
734 "maximum recursion depth exceeded%s",
735 where);
736 return -1;
737 }
738 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000739}
740
Guido van Rossum374a9221991-04-04 10:40:29 +0000741/* Status code for main loop (reason for stack unwind) */
Raymond Hettinger7c958652004-04-06 10:11:10 +0000742enum why_code {
Stefan Krahb7e10102010-06-23 18:42:39 +0000743 WHY_NOT = 0x0001, /* No error */
744 WHY_EXCEPTION = 0x0002, /* Exception occurred */
745 WHY_RERAISE = 0x0004, /* Exception re-raised by 'finally' */
746 WHY_RETURN = 0x0008, /* 'return' statement */
747 WHY_BREAK = 0x0010, /* 'break' statement */
748 WHY_CONTINUE = 0x0020, /* 'continue' statement */
749 WHY_YIELD = 0x0040, /* 'yield' operator */
750 WHY_SILENCED = 0x0080 /* Exception silenced by 'with' */
Raymond Hettinger7c958652004-04-06 10:11:10 +0000751};
Guido van Rossum374a9221991-04-04 10:40:29 +0000752
Benjamin Peterson87880242011-07-03 16:48:31 -0500753static void save_exc_state(PyThreadState *, PyFrameObject *);
754static void swap_exc_state(PyThreadState *, PyFrameObject *);
755static void restore_and_clear_exc_state(PyThreadState *, PyFrameObject *);
Collin Winter828f04a2007-08-31 00:04:24 +0000756static enum why_code do_raise(PyObject *, PyObject *);
Guido van Rossum0368b722007-05-11 16:50:42 +0000757static int unpack_iterable(PyObject *, int, int, PyObject **);
Guido van Rossum1aa14831997-01-21 05:34:20 +0000758
Jeffrey Yasskin008d8ef2008-12-06 17:09:27 +0000759/* Records whether tracing is on for any thread. Counts the number of
760 threads for which tstate->c_tracefunc is non-NULL, so if the value
761 is 0, we know we don't have to check this thread's c_tracefunc.
762 This speeds up the if statement in PyEval_EvalFrameEx() after
763 fast_next_opcode*/
764static int _Py_TracingPossible = 0;
765
Antoine Pitrou074e5ed2009-11-10 19:50:40 +0000766
Guido van Rossum374a9221991-04-04 10:40:29 +0000767
Guido van Rossumb209a111997-04-29 18:18:01 +0000768PyObject *
Martin v. Löwis4d0d4712010-12-03 20:14:31 +0000769PyEval_EvalCode(PyObject *co, PyObject *globals, PyObject *locals)
Guido van Rossum681d79a1995-07-18 14:51:37 +0000770{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000771 return PyEval_EvalCodeEx(co,
772 globals, locals,
773 (PyObject **)NULL, 0,
774 (PyObject **)NULL, 0,
775 (PyObject **)NULL, 0,
776 NULL, NULL);
Guido van Rossum681d79a1995-07-18 14:51:37 +0000777}
778
779
780/* Interpreter main loop */
781
Martin v. Löwis8d97e332004-06-27 15:43:12 +0000782PyObject *
Phillip J. Eby0d6615f2005-08-02 00:46:46 +0000783PyEval_EvalFrame(PyFrameObject *f) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000784 /* This is for backward compatibility with extension modules that
785 used this API; core interpreter code should call
786 PyEval_EvalFrameEx() */
787 return PyEval_EvalFrameEx(f, 0);
Phillip J. Eby0d6615f2005-08-02 00:46:46 +0000788}
789
790PyObject *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000791PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
Guido van Rossum374a9221991-04-04 10:40:29 +0000792{
Guido van Rossum950361c1997-01-24 13:49:28 +0000793#ifdef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000794 int lastopcode = 0;
Guido van Rossum950361c1997-01-24 13:49:28 +0000795#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 register PyObject **stack_pointer; /* Next free slot in value stack */
797 register unsigned char *next_instr;
798 register int opcode; /* Current opcode */
799 register int oparg; /* Current opcode argument, if any */
800 register enum why_code why; /* Reason for block stack unwind */
801 register int err; /* Error status -- nonzero if error */
802 register PyObject *x; /* Result object -- NULL if error */
803 register PyObject *v; /* Temporary objects popped off stack */
804 register PyObject *w;
805 register PyObject *u;
806 register PyObject *t;
807 register PyObject **fastlocals, **freevars;
808 PyObject *retval = NULL; /* Return value */
809 PyThreadState *tstate = PyThreadState_GET();
810 PyCodeObject *co;
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000811
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000812 /* when tracing we set things up so that
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000813
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000814 not (instr_lb <= current_bytecode_offset < instr_ub)
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000815
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000816 is true when the line being executed has changed. The
817 initial values are such as to make this false the first
818 time it is tested. */
819 int instr_ub = -1, instr_lb = 0, instr_prev = -1;
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000820
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000821 unsigned char *first_instr;
822 PyObject *names;
823 PyObject *consts;
Guido van Rossum374a9221991-04-04 10:40:29 +0000824
Brett Cannon368b4b72012-04-02 12:17:59 -0400825#ifdef LLTRACE
Victor Stinner3c1e4812012-03-26 22:10:51 +0200826 _Py_IDENTIFIER(__ltrace__);
Brett Cannon368b4b72012-04-02 12:17:59 -0400827#endif
Victor Stinner3c1e4812012-03-26 22:10:51 +0200828
Antoine Pitroub52ec782009-01-25 16:34:23 +0000829/* Computed GOTOs, or
830 the-optimization-commonly-but-improperly-known-as-"threaded code"
831 using gcc's labels-as-values extension
832 (http://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html).
833
834 The traditional bytecode evaluation loop uses a "switch" statement, which
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000835 decent compilers will optimize as a single indirect branch instruction
Antoine Pitroub52ec782009-01-25 16:34:23 +0000836 combined with a lookup table of jump addresses. However, since the
837 indirect jump instruction is shared by all opcodes, the CPU will have a
838 hard time making the right prediction for where to jump next (actually,
839 it will be always wrong except in the uncommon case of a sequence of
840 several identical opcodes).
841
842 "Threaded code" in contrast, uses an explicit jump table and an explicit
843 indirect jump instruction at the end of each opcode. Since the jump
844 instruction is at a different address for each opcode, the CPU will make a
845 separate prediction for each of these instructions, which is equivalent to
846 predicting the second opcode of each opcode pair. These predictions have
847 a much better chance to turn out valid, especially in small bytecode loops.
848
849 A mispredicted branch on a modern CPU flushes the whole pipeline and
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000850 can cost several CPU cycles (depending on the pipeline depth),
Antoine Pitroub52ec782009-01-25 16:34:23 +0000851 and potentially many more instructions (depending on the pipeline width).
852 A correctly predicted branch, however, is nearly free.
853
854 At the time of this writing, the "threaded code" version is up to 15-20%
855 faster than the normal "switch" version, depending on the compiler and the
856 CPU architecture.
857
858 We disable the optimization if DYNAMIC_EXECUTION_PROFILE is defined,
859 because it would render the measurements invalid.
860
861
862 NOTE: care must be taken that the compiler doesn't try to "optimize" the
863 indirect jumps by sharing them between all opcodes. Such optimizations
864 can be disabled on gcc by using the -fno-gcse flag (or possibly
865 -fno-crossjumping).
866*/
867
Antoine Pitrou042b1282010-08-13 21:15:58 +0000868#ifdef DYNAMIC_EXECUTION_PROFILE
Antoine Pitroub52ec782009-01-25 16:34:23 +0000869#undef USE_COMPUTED_GOTOS
Antoine Pitrou042b1282010-08-13 21:15:58 +0000870#define USE_COMPUTED_GOTOS 0
Antoine Pitroub52ec782009-01-25 16:34:23 +0000871#endif
872
Antoine Pitrou042b1282010-08-13 21:15:58 +0000873#ifdef HAVE_COMPUTED_GOTOS
874 #ifndef USE_COMPUTED_GOTOS
875 #define USE_COMPUTED_GOTOS 1
876 #endif
877#else
878 #if defined(USE_COMPUTED_GOTOS) && USE_COMPUTED_GOTOS
879 #error "Computed gotos are not supported on this compiler."
880 #endif
881 #undef USE_COMPUTED_GOTOS
882 #define USE_COMPUTED_GOTOS 0
883#endif
884
885#if USE_COMPUTED_GOTOS
Antoine Pitroub52ec782009-01-25 16:34:23 +0000886/* Import the static jump table */
887#include "opcode_targets.h"
888
889/* This macro is used when several opcodes defer to the same implementation
890 (e.g. SETUP_LOOP, SETUP_FINALLY) */
891#define TARGET_WITH_IMPL(op, impl) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000892 TARGET_##op: \
893 opcode = op; \
894 if (HAS_ARG(op)) \
895 oparg = NEXTARG(); \
896 case op: \
897 goto impl; \
Antoine Pitroub52ec782009-01-25 16:34:23 +0000898
899#define TARGET(op) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000900 TARGET_##op: \
901 opcode = op; \
902 if (HAS_ARG(op)) \
903 oparg = NEXTARG(); \
904 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000905
906
907#define DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000908 { \
909 if (!_Py_atomic_load_relaxed(&eval_breaker)) { \
910 FAST_DISPATCH(); \
911 } \
912 continue; \
913 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000914
915#ifdef LLTRACE
916#define FAST_DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000917 { \
918 if (!lltrace && !_Py_TracingPossible) { \
919 f->f_lasti = INSTR_OFFSET(); \
920 goto *opcode_targets[*next_instr++]; \
921 } \
922 goto fast_next_opcode; \
923 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000924#else
925#define FAST_DISPATCH() \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000926 { \
927 if (!_Py_TracingPossible) { \
928 f->f_lasti = INSTR_OFFSET(); \
929 goto *opcode_targets[*next_instr++]; \
930 } \
931 goto fast_next_opcode; \
932 }
Antoine Pitroub52ec782009-01-25 16:34:23 +0000933#endif
934
935#else
936#define TARGET(op) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000937 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000938#define TARGET_WITH_IMPL(op, impl) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000939 /* silence compiler warnings about `impl` unused */ \
940 if (0) goto impl; \
941 case op:
Antoine Pitroub52ec782009-01-25 16:34:23 +0000942#define DISPATCH() continue
943#define FAST_DISPATCH() goto fast_next_opcode
944#endif
945
946
Neal Norwitza81d2202002-07-14 00:27:26 +0000947/* Tuple access macros */
948
949#ifndef Py_DEBUG
950#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
951#else
952#define GETITEM(v, i) PyTuple_GetItem((v), (i))
953#endif
954
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000955#ifdef WITH_TSC
956/* Use Pentium timestamp counter to mark certain events:
957 inst0 -- beginning of switch statement for opcode dispatch
958 inst1 -- end of switch statement (may be skipped)
959 loop0 -- the top of the mainloop
Thomas Wouters477c8d52006-05-27 19:21:47 +0000960 loop1 -- place where control returns again to top of mainloop
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000961 (may be skipped)
962 intr1 -- beginning of long interruption
963 intr2 -- end of long interruption
964
965 Many opcodes call out to helper C functions. In some cases, the
966 time in those functions should be counted towards the time for the
967 opcode, but not in all cases. For example, a CALL_FUNCTION opcode
968 calls another Python function; there's no point in charge all the
969 bytecode executed by the called function to the caller.
970
971 It's hard to make a useful judgement statically. In the presence
972 of operator overloading, it's impossible to tell if a call will
973 execute new Python code or not.
974
975 It's a case-by-case judgement. I'll use intr1 for the following
976 cases:
977
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000978 IMPORT_STAR
979 IMPORT_FROM
980 CALL_FUNCTION (and friends)
981
982 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000983 uint64 inst0, inst1, loop0, loop1, intr0 = 0, intr1 = 0;
984 int ticked = 0;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000985
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000986 READ_TIMESTAMP(inst0);
987 READ_TIMESTAMP(inst1);
988 READ_TIMESTAMP(loop0);
989 READ_TIMESTAMP(loop1);
Michael W. Hudson800ba232004-08-12 18:19:17 +0000990
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000991 /* shut up the compiler */
992 opcode = 0;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +0000993#endif
994
Guido van Rossum374a9221991-04-04 10:40:29 +0000995/* Code access macros */
996
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000997#define INSTR_OFFSET() ((int)(next_instr - first_instr))
998#define NEXTOP() (*next_instr++)
999#define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
1000#define PEEKARG() ((next_instr[2]<<8) + next_instr[1])
1001#define JUMPTO(x) (next_instr = first_instr + (x))
1002#define JUMPBY(x) (next_instr += (x))
Guido van Rossum374a9221991-04-04 10:40:29 +00001003
Raymond Hettingerf606f872003-03-16 03:11:04 +00001004/* OpCode prediction macros
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001005 Some opcodes tend to come in pairs thus making it possible to
1006 predict the second code when the first is run. For example,
1007 COMPARE_OP is often followed by JUMP_IF_FALSE or JUMP_IF_TRUE. And,
1008 those opcodes are often followed by a POP_TOP.
Raymond Hettingerf606f872003-03-16 03:11:04 +00001009
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001010 Verifying the prediction costs a single high-speed test of a register
1011 variable against a constant. If the pairing was good, then the
1012 processor's own internal branch predication has a high likelihood of
1013 success, resulting in a nearly zero-overhead transition to the
1014 next opcode. A successful prediction saves a trip through the eval-loop
1015 including its two unpredictable branches, the HAS_ARG test and the
1016 switch-case. Combined with the processor's internal branch prediction,
1017 a successful PREDICT has the effect of making the two opcodes run as if
1018 they were a single new opcode with the bodies combined.
Raymond Hettingerf606f872003-03-16 03:11:04 +00001019
Georg Brandl86b2fb92008-07-16 03:43:04 +00001020 If collecting opcode statistics, your choices are to either keep the
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001021 predictions turned-on and interpret the results as if some opcodes
1022 had been combined or turn-off predictions so that the opcode frequency
1023 counter updates for both opcodes.
Antoine Pitroub52ec782009-01-25 16:34:23 +00001024
1025 Opcode prediction is disabled with threaded code, since the latter allows
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001026 the CPU to record separate branch prediction information for each
1027 opcode.
Antoine Pitroub52ec782009-01-25 16:34:23 +00001028
Raymond Hettingerf606f872003-03-16 03:11:04 +00001029*/
1030
Antoine Pitrou042b1282010-08-13 21:15:58 +00001031#if defined(DYNAMIC_EXECUTION_PROFILE) || USE_COMPUTED_GOTOS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001032#define PREDICT(op) if (0) goto PRED_##op
1033#define PREDICTED(op) PRED_##op:
1034#define PREDICTED_WITH_ARG(op) PRED_##op:
Raymond Hettingera7216982004-02-08 19:59:27 +00001035#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001036#define PREDICT(op) if (*next_instr == op) goto PRED_##op
1037#define PREDICTED(op) PRED_##op: next_instr++
1038#define PREDICTED_WITH_ARG(op) PRED_##op: oparg = PEEKARG(); next_instr += 3
Antoine Pitroub52ec782009-01-25 16:34:23 +00001039#endif
1040
Raymond Hettingerf606f872003-03-16 03:11:04 +00001041
Guido van Rossum374a9221991-04-04 10:40:29 +00001042/* Stack manipulation macros */
1043
Martin v. Löwis18e16552006-02-15 17:27:45 +00001044/* The stack can grow at most MAXINT deep, as co_nlocals and
1045 co_stacksize are ints. */
Stefan Krahb7e10102010-06-23 18:42:39 +00001046#define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack))
1047#define EMPTY() (STACK_LEVEL() == 0)
1048#define TOP() (stack_pointer[-1])
1049#define SECOND() (stack_pointer[-2])
1050#define THIRD() (stack_pointer[-3])
1051#define FOURTH() (stack_pointer[-4])
1052#define PEEK(n) (stack_pointer[-(n)])
1053#define SET_TOP(v) (stack_pointer[-1] = (v))
1054#define SET_SECOND(v) (stack_pointer[-2] = (v))
1055#define SET_THIRD(v) (stack_pointer[-3] = (v))
1056#define SET_FOURTH(v) (stack_pointer[-4] = (v))
1057#define SET_VALUE(n, v) (stack_pointer[-(n)] = (v))
1058#define BASIC_STACKADJ(n) (stack_pointer += n)
1059#define BASIC_PUSH(v) (*stack_pointer++ = (v))
1060#define BASIC_POP() (*--stack_pointer)
Guido van Rossum374a9221991-04-04 10:40:29 +00001061
Guido van Rossum96a42c81992-01-12 02:29:51 +00001062#ifdef LLTRACE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001063#define PUSH(v) { (void)(BASIC_PUSH(v), \
Stefan Krahb7e10102010-06-23 18:42:39 +00001064 lltrace && prtrace(TOP(), "push")); \
1065 assert(STACK_LEVEL() <= co->co_stacksize); }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001066#define POP() ((void)(lltrace && prtrace(TOP(), "pop")), \
Stefan Krahb7e10102010-06-23 18:42:39 +00001067 BASIC_POP())
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001068#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
Stefan Krahb7e10102010-06-23 18:42:39 +00001069 lltrace && prtrace(TOP(), "stackadj")); \
1070 assert(STACK_LEVEL() <= co->co_stacksize); }
Christian Heimes0449f632007-12-15 01:27:15 +00001071#define EXT_POP(STACK_POINTER) ((void)(lltrace && \
Stefan Krahb7e10102010-06-23 18:42:39 +00001072 prtrace((STACK_POINTER)[-1], "ext_pop")), \
1073 *--(STACK_POINTER))
Guido van Rossum374a9221991-04-04 10:40:29 +00001074#else
Stefan Krahb7e10102010-06-23 18:42:39 +00001075#define PUSH(v) BASIC_PUSH(v)
1076#define POP() BASIC_POP()
1077#define STACKADJ(n) BASIC_STACKADJ(n)
Guido van Rossumc2e20742006-02-27 22:32:47 +00001078#define EXT_POP(STACK_POINTER) (*--(STACK_POINTER))
Guido van Rossum374a9221991-04-04 10:40:29 +00001079#endif
1080
Guido van Rossum681d79a1995-07-18 14:51:37 +00001081/* Local variable macros */
1082
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001083#define GETLOCAL(i) (fastlocals[i])
Guido van Rossumcfbf1a32002-03-28 20:17:52 +00001084
1085/* The SETLOCAL() macro must not DECREF the local variable in-place and
1086 then store the new value; it must copy the old value to a temporary
1087 value, then store the new value, and then DECREF the temporary value.
1088 This is because it is possible that during the DECREF the frame is
1089 accessed by other code (e.g. a __del__ method or gc.collect()) and the
1090 variable would be pointing to already-freed memory. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001091#define SETLOCAL(i, value) do { PyObject *tmp = GETLOCAL(i); \
Stefan Krahb7e10102010-06-23 18:42:39 +00001092 GETLOCAL(i) = value; \
1093 Py_XDECREF(tmp); } while (0)
Guido van Rossum681d79a1995-07-18 14:51:37 +00001094
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001095
1096#define UNWIND_BLOCK(b) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001097 while (STACK_LEVEL() > (b)->b_level) { \
1098 PyObject *v = POP(); \
1099 Py_XDECREF(v); \
1100 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001101
1102#define UNWIND_EXCEPT_HANDLER(b) \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001103 { \
1104 PyObject *type, *value, *traceback; \
1105 assert(STACK_LEVEL() >= (b)->b_level + 3); \
1106 while (STACK_LEVEL() > (b)->b_level + 3) { \
1107 value = POP(); \
1108 Py_XDECREF(value); \
1109 } \
1110 type = tstate->exc_type; \
1111 value = tstate->exc_value; \
1112 traceback = tstate->exc_traceback; \
1113 tstate->exc_type = POP(); \
1114 tstate->exc_value = POP(); \
1115 tstate->exc_traceback = POP(); \
1116 Py_XDECREF(type); \
1117 Py_XDECREF(value); \
1118 Py_XDECREF(traceback); \
1119 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001120
Guido van Rossuma027efa1997-05-05 20:56:21 +00001121/* Start of code */
1122
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001123 /* push frame */
1124 if (Py_EnterRecursiveCall(""))
1125 return NULL;
Guido van Rossum8861b741996-07-30 16:49:37 +00001126
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001127 tstate->frame = f;
Tim Peters5ca576e2001-06-18 22:08:13 +00001128
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 if (tstate->use_tracing) {
1130 if (tstate->c_tracefunc != NULL) {
1131 /* tstate->c_tracefunc, if defined, is a
1132 function that will be called on *every* entry
1133 to a code block. Its return value, if not
1134 None, is a function that will be called at
1135 the start of each executed line of code.
1136 (Actually, the function must return itself
1137 in order to continue tracing.) The trace
1138 functions are called with three arguments:
1139 a pointer to the current frame, a string
1140 indicating why the function is called, and
1141 an argument which depends on the situation.
1142 The global trace function is also called
1143 whenever an exception is detected. */
1144 if (call_trace_protected(tstate->c_tracefunc,
1145 tstate->c_traceobj,
1146 f, PyTrace_CALL, Py_None)) {
1147 /* Trace function raised an error */
1148 goto exit_eval_frame;
1149 }
1150 }
1151 if (tstate->c_profilefunc != NULL) {
1152 /* Similar for c_profilefunc, except it needn't
1153 return itself and isn't called for "line" events */
1154 if (call_trace_protected(tstate->c_profilefunc,
1155 tstate->c_profileobj,
1156 f, PyTrace_CALL, Py_None)) {
1157 /* Profile function raised an error */
1158 goto exit_eval_frame;
1159 }
1160 }
1161 }
Neil Schemenauer6c0f2002001-09-04 19:03:35 +00001162
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001163 co = f->f_code;
1164 names = co->co_names;
1165 consts = co->co_consts;
1166 fastlocals = f->f_localsplus;
1167 freevars = f->f_localsplus + co->co_nlocals;
1168 first_instr = (unsigned char*) PyBytes_AS_STRING(co->co_code);
1169 /* An explanation is in order for the next line.
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001170
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001171 f->f_lasti now refers to the index of the last instruction
1172 executed. You might think this was obvious from the name, but
1173 this wasn't always true before 2.3! PyFrame_New now sets
1174 f->f_lasti to -1 (i.e. the index *before* the first instruction)
1175 and YIELD_VALUE doesn't fiddle with f_lasti any more. So this
1176 does work. Promise.
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001177 YIELD_FROM sets f_lasti to itself, in order to repeated yield
1178 multiple values.
Thomas Wouters902d6eb2007-01-09 23:18:33 +00001179
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001180 When the PREDICT() macros are enabled, some opcode pairs follow in
1181 direct succession without updating f->f_lasti. A successful
1182 prediction effectively links the two codes together as if they
1183 were a single new opcode; accordingly,f->f_lasti will point to
1184 the first code in the pair (for instance, GET_ITER followed by
1185 FOR_ITER is effectively a single opcode and f->f_lasti will point
1186 at to the beginning of the combined pair.)
1187 */
1188 next_instr = first_instr + f->f_lasti + 1;
1189 stack_pointer = f->f_stacktop;
1190 assert(stack_pointer != NULL);
1191 f->f_stacktop = NULL; /* remains NULL unless yield suspends frame */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001192
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001193 if (co->co_flags & CO_GENERATOR && !throwflag) {
1194 if (f->f_exc_type != NULL && f->f_exc_type != Py_None) {
1195 /* We were in an except handler when we left,
1196 restore the exception state which was put aside
1197 (see YIELD_VALUE). */
Benjamin Peterson87880242011-07-03 16:48:31 -05001198 swap_exc_state(tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001199 }
Benjamin Peterson87880242011-07-03 16:48:31 -05001200 else
1201 save_exc_state(tstate, f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001202 }
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001203
Tim Peters5ca576e2001-06-18 22:08:13 +00001204#ifdef LLTRACE
Victor Stinner3c1e4812012-03-26 22:10:51 +02001205 lltrace = _PyDict_GetItemId(f->f_globals, &PyId___ltrace__) != NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00001206#endif
Guido van Rossumac7be682001-01-17 15:42:30 +00001207
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001208 why = WHY_NOT;
1209 err = 0;
1210 x = Py_None; /* Not a reference, just anything non-NULL */
1211 w = NULL;
Guido van Rossumac7be682001-01-17 15:42:30 +00001212
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001213 if (throwflag) { /* support for generator.throw() */
1214 why = WHY_EXCEPTION;
1215 goto on_error;
1216 }
Thomas Wouters477c8d52006-05-27 19:21:47 +00001217
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001218 for (;;) {
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001219#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001220 if (inst1 == 0) {
1221 /* Almost surely, the opcode executed a break
1222 or a continue, preventing inst1 from being set
1223 on the way out of the loop.
1224 */
1225 READ_TIMESTAMP(inst1);
1226 loop1 = inst1;
1227 }
1228 dump_tsc(opcode, ticked, inst0, inst1, loop0, loop1,
1229 intr0, intr1);
1230 ticked = 0;
1231 inst1 = 0;
1232 intr0 = 0;
1233 intr1 = 0;
1234 READ_TIMESTAMP(loop0);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001235#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001236 assert(stack_pointer >= f->f_valuestack); /* else underflow */
1237 assert(STACK_LEVEL() <= co->co_stacksize); /* else overflow */
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 }
1253 tstate->tick_counter++;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001254#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001255 ticked = 1;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00001256#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001257 if (_Py_atomic_load_relaxed(&pendingcalls_to_do)) {
1258 if (Py_MakePendingCalls() < 0) {
1259 why = WHY_EXCEPTION;
1260 goto on_error;
1261 }
1262 }
Guido van Rossume59214e1994-08-30 08:01:59 +00001263#ifdef WITH_THREAD
Benjamin Petersond2be5b42010-09-10 22:47:02 +00001264 if (_Py_atomic_load_relaxed(&gil_drop_request)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001265 /* Give another thread a chance */
1266 if (PyThreadState_Swap(NULL) != tstate)
1267 Py_FatalError("ceval: tstate mix-up");
1268 drop_gil(tstate);
1269
1270 /* Other threads may run now */
1271
1272 take_gil(tstate);
1273 if (PyThreadState_Swap(tstate) != NULL)
1274 Py_FatalError("ceval: orphan tstate");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001275 }
Benjamin Petersond2be5b42010-09-10 22:47:02 +00001276#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001277 /* Check for asynchronous exceptions. */
1278 if (tstate->async_exc != NULL) {
1279 x = tstate->async_exc;
1280 tstate->async_exc = NULL;
1281 UNSIGNAL_ASYNC_EXC();
1282 PyErr_SetNone(x);
1283 Py_DECREF(x);
1284 why = WHY_EXCEPTION;
1285 goto on_error;
1286 }
1287 }
Guido van Rossum1984f1e1992-08-04 12:41:02 +00001288
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001289 fast_next_opcode:
1290 f->f_lasti = INSTR_OFFSET();
Guido van Rossumac7be682001-01-17 15:42:30 +00001291
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001292 /* line-by-line tracing support */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001293
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001294 if (_Py_TracingPossible &&
1295 tstate->c_tracefunc != NULL && !tstate->tracing) {
1296 /* see maybe_call_line_trace
1297 for expository comments */
1298 f->f_stacktop = stack_pointer;
Tim Peters8a5c3c72004-04-05 19:36:21 +00001299
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001300 err = maybe_call_line_trace(tstate->c_tracefunc,
1301 tstate->c_traceobj,
1302 f, &instr_lb, &instr_ub,
1303 &instr_prev);
1304 /* Reload possibly changed frame fields */
1305 JUMPTO(f->f_lasti);
1306 if (f->f_stacktop != NULL) {
1307 stack_pointer = f->f_stacktop;
1308 f->f_stacktop = NULL;
1309 }
1310 if (err) {
1311 /* trace function raised an exception */
1312 goto on_error;
1313 }
1314 }
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001315
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001316 /* Extract opcode and argument */
Michael W. Hudson019a78e2002-11-08 12:53:11 +00001317
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001318 opcode = NEXTOP();
1319 oparg = 0; /* allows oparg to be stored in a register because
1320 it doesn't have to be remembered across a full loop */
1321 if (HAS_ARG(opcode))
1322 oparg = NEXTARG();
Stefan Krahb7e10102010-06-23 18:42:39 +00001323 dispatch_opcode:
Guido van Rossum950361c1997-01-24 13:49:28 +00001324#ifdef DYNAMIC_EXECUTION_PROFILE
1325#ifdef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001326 dxpairs[lastopcode][opcode]++;
1327 lastopcode = opcode;
Guido van Rossum950361c1997-01-24 13:49:28 +00001328#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001329 dxp[opcode]++;
Guido van Rossum950361c1997-01-24 13:49:28 +00001330#endif
Guido van Rossum374a9221991-04-04 10:40:29 +00001331
Guido van Rossum96a42c81992-01-12 02:29:51 +00001332#ifdef LLTRACE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001333 /* Instruction tracing */
Guido van Rossumac7be682001-01-17 15:42:30 +00001334
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001335 if (lltrace) {
1336 if (HAS_ARG(opcode)) {
1337 printf("%d: %d, %d\n",
1338 f->f_lasti, opcode, oparg);
1339 }
1340 else {
1341 printf("%d: %d\n",
1342 f->f_lasti, opcode);
1343 }
1344 }
Guido van Rossum374a9221991-04-04 10:40:29 +00001345#endif
Michael W. Hudsondd32a912002-08-15 14:59:02 +00001346
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001347 /* Main switch on opcode */
1348 READ_TIMESTAMP(inst0);
Jeremy Hylton52820442001-01-03 23:52:36 +00001349
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001350 switch (opcode) {
Guido van Rossumac7be682001-01-17 15:42:30 +00001351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001352 /* BEWARE!
1353 It is essential that any operation that fails sets either
1354 x to NULL, err to nonzero, or why to anything but WHY_NOT,
1355 and that no operation that succeeds does this! */
Guido van Rossumac7be682001-01-17 15:42:30 +00001356
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001357 TARGET(NOP)
1358 FAST_DISPATCH();
Raymond Hettinger9c18e812004-06-21 16:31:15 +00001359
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001360 TARGET(LOAD_FAST)
1361 x = GETLOCAL(oparg);
1362 if (x != NULL) {
1363 Py_INCREF(x);
1364 PUSH(x);
1365 FAST_DISPATCH();
1366 }
1367 format_exc_check_arg(PyExc_UnboundLocalError,
1368 UNBOUNDLOCAL_ERROR_MSG,
1369 PyTuple_GetItem(co->co_varnames, oparg));
1370 break;
Neil Schemenauer63543862002-02-17 19:10:14 +00001371
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001372 TARGET(LOAD_CONST)
1373 x = GETITEM(consts, oparg);
1374 Py_INCREF(x);
1375 PUSH(x);
1376 FAST_DISPATCH();
Neil Schemenauer63543862002-02-17 19:10:14 +00001377
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001378 PREDICTED_WITH_ARG(STORE_FAST);
1379 TARGET(STORE_FAST)
1380 v = POP();
1381 SETLOCAL(oparg, v);
1382 FAST_DISPATCH();
Neil Schemenauer63543862002-02-17 19:10:14 +00001383
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001384 TARGET(POP_TOP)
1385 v = POP();
1386 Py_DECREF(v);
1387 FAST_DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00001388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001389 TARGET(ROT_TWO)
1390 v = TOP();
1391 w = SECOND();
1392 SET_TOP(w);
1393 SET_SECOND(v);
1394 FAST_DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00001395
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001396 TARGET(ROT_THREE)
1397 v = TOP();
1398 w = SECOND();
1399 x = THIRD();
1400 SET_TOP(w);
1401 SET_SECOND(x);
1402 SET_THIRD(v);
1403 FAST_DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00001404
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001405 TARGET(DUP_TOP)
1406 v = TOP();
1407 Py_INCREF(v);
1408 PUSH(v);
1409 FAST_DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00001410
Antoine Pitrou74a69fa2010-09-04 18:43:52 +00001411 TARGET(DUP_TOP_TWO)
1412 x = TOP();
1413 Py_INCREF(x);
1414 w = SECOND();
1415 Py_INCREF(w);
1416 STACKADJ(2);
1417 SET_TOP(x);
1418 SET_SECOND(w);
1419 FAST_DISPATCH();
Thomas Wouters434d0822000-08-24 20:11:32 +00001420
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001421 TARGET(UNARY_POSITIVE)
1422 v = TOP();
1423 x = PyNumber_Positive(v);
1424 Py_DECREF(v);
1425 SET_TOP(x);
1426 if (x != NULL) DISPATCH();
1427 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001428
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001429 TARGET(UNARY_NEGATIVE)
1430 v = TOP();
1431 x = PyNumber_Negative(v);
1432 Py_DECREF(v);
1433 SET_TOP(x);
1434 if (x != NULL) DISPATCH();
1435 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001436
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001437 TARGET(UNARY_NOT)
1438 v = TOP();
1439 err = PyObject_IsTrue(v);
1440 Py_DECREF(v);
1441 if (err == 0) {
1442 Py_INCREF(Py_True);
1443 SET_TOP(Py_True);
1444 DISPATCH();
1445 }
1446 else if (err > 0) {
1447 Py_INCREF(Py_False);
1448 SET_TOP(Py_False);
1449 err = 0;
1450 DISPATCH();
1451 }
1452 STACKADJ(-1);
1453 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001454
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001455 TARGET(UNARY_INVERT)
1456 v = TOP();
1457 x = PyNumber_Invert(v);
1458 Py_DECREF(v);
1459 SET_TOP(x);
1460 if (x != NULL) DISPATCH();
1461 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001462
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001463 TARGET(BINARY_POWER)
1464 w = POP();
1465 v = TOP();
1466 x = PyNumber_Power(v, w, Py_None);
1467 Py_DECREF(v);
1468 Py_DECREF(w);
1469 SET_TOP(x);
1470 if (x != NULL) DISPATCH();
1471 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001473 TARGET(BINARY_MULTIPLY)
1474 w = POP();
1475 v = TOP();
1476 x = PyNumber_Multiply(v, w);
1477 Py_DECREF(v);
1478 Py_DECREF(w);
1479 SET_TOP(x);
1480 if (x != NULL) DISPATCH();
1481 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001482
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001483 TARGET(BINARY_TRUE_DIVIDE)
1484 w = POP();
1485 v = TOP();
1486 x = PyNumber_TrueDivide(v, w);
1487 Py_DECREF(v);
1488 Py_DECREF(w);
1489 SET_TOP(x);
1490 if (x != NULL) DISPATCH();
1491 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001492
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001493 TARGET(BINARY_FLOOR_DIVIDE)
1494 w = POP();
1495 v = TOP();
1496 x = PyNumber_FloorDivide(v, w);
1497 Py_DECREF(v);
1498 Py_DECREF(w);
1499 SET_TOP(x);
1500 if (x != NULL) DISPATCH();
1501 break;
Guido van Rossum4668b002001-08-08 05:00:18 +00001502
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001503 TARGET(BINARY_MODULO)
1504 w = POP();
1505 v = TOP();
1506 if (PyUnicode_CheckExact(v))
1507 x = PyUnicode_Format(v, w);
1508 else
1509 x = PyNumber_Remainder(v, w);
1510 Py_DECREF(v);
1511 Py_DECREF(w);
1512 SET_TOP(x);
1513 if (x != NULL) DISPATCH();
1514 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001515
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001516 TARGET(BINARY_ADD)
1517 w = POP();
1518 v = TOP();
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001519 if (PyUnicode_CheckExact(v) &&
1520 PyUnicode_CheckExact(w)) {
1521 x = unicode_concatenate(v, w, f, next_instr);
1522 /* unicode_concatenate consumed the ref to v */
1523 goto skip_decref_vx;
1524 }
1525 else {
1526 x = PyNumber_Add(v, w);
1527 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001528 Py_DECREF(v);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001529 skip_decref_vx:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001530 Py_DECREF(w);
1531 SET_TOP(x);
1532 if (x != NULL) DISPATCH();
1533 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001534
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001535 TARGET(BINARY_SUBTRACT)
1536 w = POP();
1537 v = TOP();
1538 x = PyNumber_Subtract(v, w);
1539 Py_DECREF(v);
1540 Py_DECREF(w);
1541 SET_TOP(x);
1542 if (x != NULL) DISPATCH();
1543 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001545 TARGET(BINARY_SUBSCR)
1546 w = POP();
1547 v = TOP();
1548 x = PyObject_GetItem(v, w);
1549 Py_DECREF(v);
1550 Py_DECREF(w);
1551 SET_TOP(x);
1552 if (x != NULL) DISPATCH();
1553 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001554
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001555 TARGET(BINARY_LSHIFT)
1556 w = POP();
1557 v = TOP();
1558 x = PyNumber_Lshift(v, w);
1559 Py_DECREF(v);
1560 Py_DECREF(w);
1561 SET_TOP(x);
1562 if (x != NULL) DISPATCH();
1563 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001564
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001565 TARGET(BINARY_RSHIFT)
1566 w = POP();
1567 v = TOP();
1568 x = PyNumber_Rshift(v, w);
1569 Py_DECREF(v);
1570 Py_DECREF(w);
1571 SET_TOP(x);
1572 if (x != NULL) DISPATCH();
1573 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001574
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001575 TARGET(BINARY_AND)
1576 w = POP();
1577 v = TOP();
1578 x = PyNumber_And(v, w);
1579 Py_DECREF(v);
1580 Py_DECREF(w);
1581 SET_TOP(x);
1582 if (x != NULL) DISPATCH();
1583 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001584
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001585 TARGET(BINARY_XOR)
1586 w = POP();
1587 v = TOP();
1588 x = PyNumber_Xor(v, w);
1589 Py_DECREF(v);
1590 Py_DECREF(w);
1591 SET_TOP(x);
1592 if (x != NULL) DISPATCH();
1593 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001594
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001595 TARGET(BINARY_OR)
1596 w = POP();
1597 v = TOP();
1598 x = PyNumber_Or(v, w);
1599 Py_DECREF(v);
1600 Py_DECREF(w);
1601 SET_TOP(x);
1602 if (x != NULL) DISPATCH();
1603 break;
Thomas Wouters434d0822000-08-24 20:11:32 +00001604
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001605 TARGET(LIST_APPEND)
1606 w = POP();
1607 v = PEEK(oparg);
1608 err = PyList_Append(v, w);
1609 Py_DECREF(w);
1610 if (err == 0) {
1611 PREDICT(JUMP_ABSOLUTE);
1612 DISPATCH();
1613 }
1614 break;
Raymond Hettingerdd80f762004-03-07 07:31:06 +00001615
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001616 TARGET(SET_ADD)
1617 w = POP();
1618 v = stack_pointer[-oparg];
1619 err = PySet_Add(v, w);
1620 Py_DECREF(w);
1621 if (err == 0) {
1622 PREDICT(JUMP_ABSOLUTE);
1623 DISPATCH();
1624 }
1625 break;
Nick Coghlan650f0d02007-04-15 12:05:43 +00001626
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001627 TARGET(INPLACE_POWER)
1628 w = POP();
1629 v = TOP();
1630 x = PyNumber_InPlacePower(v, w, Py_None);
1631 Py_DECREF(v);
1632 Py_DECREF(w);
1633 SET_TOP(x);
1634 if (x != NULL) DISPATCH();
1635 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001636
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001637 TARGET(INPLACE_MULTIPLY)
1638 w = POP();
1639 v = TOP();
1640 x = PyNumber_InPlaceMultiply(v, w);
1641 Py_DECREF(v);
1642 Py_DECREF(w);
1643 SET_TOP(x);
1644 if (x != NULL) DISPATCH();
1645 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001646
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001647 TARGET(INPLACE_TRUE_DIVIDE)
1648 w = POP();
1649 v = TOP();
1650 x = PyNumber_InPlaceTrueDivide(v, w);
1651 Py_DECREF(v);
1652 Py_DECREF(w);
1653 SET_TOP(x);
1654 if (x != NULL) DISPATCH();
1655 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001656
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001657 TARGET(INPLACE_FLOOR_DIVIDE)
1658 w = POP();
1659 v = TOP();
1660 x = PyNumber_InPlaceFloorDivide(v, w);
1661 Py_DECREF(v);
1662 Py_DECREF(w);
1663 SET_TOP(x);
1664 if (x != NULL) DISPATCH();
1665 break;
Guido van Rossum4668b002001-08-08 05:00:18 +00001666
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001667 TARGET(INPLACE_MODULO)
1668 w = POP();
1669 v = TOP();
1670 x = PyNumber_InPlaceRemainder(v, w);
1671 Py_DECREF(v);
1672 Py_DECREF(w);
1673 SET_TOP(x);
1674 if (x != NULL) DISPATCH();
1675 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001676
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001677 TARGET(INPLACE_ADD)
1678 w = POP();
1679 v = TOP();
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001680 if (PyUnicode_CheckExact(v) &&
1681 PyUnicode_CheckExact(w)) {
1682 x = unicode_concatenate(v, w, f, next_instr);
1683 /* unicode_concatenate consumed the ref to v */
1684 goto skip_decref_v;
1685 }
1686 else {
1687 x = PyNumber_InPlaceAdd(v, w);
1688 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001689 Py_DECREF(v);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02001690 skip_decref_v:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001691 Py_DECREF(w);
1692 SET_TOP(x);
1693 if (x != NULL) DISPATCH();
1694 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001695
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001696 TARGET(INPLACE_SUBTRACT)
1697 w = POP();
1698 v = TOP();
1699 x = PyNumber_InPlaceSubtract(v, w);
1700 Py_DECREF(v);
1701 Py_DECREF(w);
1702 SET_TOP(x);
1703 if (x != NULL) DISPATCH();
1704 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001705
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001706 TARGET(INPLACE_LSHIFT)
1707 w = POP();
1708 v = TOP();
1709 x = PyNumber_InPlaceLshift(v, w);
1710 Py_DECREF(v);
1711 Py_DECREF(w);
1712 SET_TOP(x);
1713 if (x != NULL) DISPATCH();
1714 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001715
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001716 TARGET(INPLACE_RSHIFT)
1717 w = POP();
1718 v = TOP();
1719 x = PyNumber_InPlaceRshift(v, w);
1720 Py_DECREF(v);
1721 Py_DECREF(w);
1722 SET_TOP(x);
1723 if (x != NULL) DISPATCH();
1724 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001725
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001726 TARGET(INPLACE_AND)
1727 w = POP();
1728 v = TOP();
1729 x = PyNumber_InPlaceAnd(v, w);
1730 Py_DECREF(v);
1731 Py_DECREF(w);
1732 SET_TOP(x);
1733 if (x != NULL) DISPATCH();
1734 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001735
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001736 TARGET(INPLACE_XOR)
1737 w = POP();
1738 v = TOP();
1739 x = PyNumber_InPlaceXor(v, w);
1740 Py_DECREF(v);
1741 Py_DECREF(w);
1742 SET_TOP(x);
1743 if (x != NULL) DISPATCH();
1744 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001745
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001746 TARGET(INPLACE_OR)
1747 w = POP();
1748 v = TOP();
1749 x = PyNumber_InPlaceOr(v, w);
1750 Py_DECREF(v);
1751 Py_DECREF(w);
1752 SET_TOP(x);
1753 if (x != NULL) DISPATCH();
1754 break;
Thomas Wouters434d0822000-08-24 20:11:32 +00001755
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001756 TARGET(STORE_SUBSCR)
1757 w = TOP();
1758 v = SECOND();
1759 u = THIRD();
1760 STACKADJ(-3);
1761 /* v[w] = u */
1762 err = PyObject_SetItem(v, w, u);
1763 Py_DECREF(u);
1764 Py_DECREF(v);
1765 Py_DECREF(w);
1766 if (err == 0) DISPATCH();
1767 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001768
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001769 TARGET(DELETE_SUBSCR)
1770 w = TOP();
1771 v = SECOND();
1772 STACKADJ(-2);
1773 /* del v[w] */
1774 err = PyObject_DelItem(v, w);
1775 Py_DECREF(v);
1776 Py_DECREF(w);
1777 if (err == 0) DISPATCH();
1778 break;
Barry Warsaw23c9ec82000-08-21 15:44:01 +00001779
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001780 TARGET(PRINT_EXPR)
1781 v = POP();
1782 w = PySys_GetObject("displayhook");
1783 if (w == NULL) {
1784 PyErr_SetString(PyExc_RuntimeError,
1785 "lost sys.displayhook");
1786 err = -1;
1787 x = NULL;
1788 }
1789 if (err == 0) {
1790 x = PyTuple_Pack(1, v);
1791 if (x == NULL)
1792 err = -1;
1793 }
1794 if (err == 0) {
1795 w = PyEval_CallObject(w, x);
1796 Py_XDECREF(w);
1797 if (w == NULL)
1798 err = -1;
1799 }
1800 Py_DECREF(v);
1801 Py_XDECREF(x);
1802 break;
Moshe Zadkaf68f2fe2001-01-11 05:41:27 +00001803
Thomas Wouters434d0822000-08-24 20:11:32 +00001804#ifdef CASE_TOO_BIG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001805 default: switch (opcode) {
Thomas Wouters434d0822000-08-24 20:11:32 +00001806#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001807 TARGET(RAISE_VARARGS)
1808 v = w = NULL;
1809 switch (oparg) {
1810 case 2:
1811 v = POP(); /* cause */
1812 case 1:
1813 w = POP(); /* exc */
1814 case 0: /* Fallthrough */
1815 why = do_raise(w, v);
1816 break;
1817 default:
1818 PyErr_SetString(PyExc_SystemError,
1819 "bad RAISE_VARARGS oparg");
1820 why = WHY_EXCEPTION;
1821 break;
1822 }
1823 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001824
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001825 TARGET(STORE_LOCALS)
1826 x = POP();
1827 v = f->f_locals;
1828 Py_XDECREF(v);
1829 f->f_locals = x;
1830 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00001831
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001832 TARGET(RETURN_VALUE)
1833 retval = POP();
1834 why = WHY_RETURN;
1835 goto fast_block_end;
Guido van Rossumdb3165e1993-10-18 17:06:59 +00001836
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001837 TARGET(YIELD_FROM)
1838 u = POP();
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001839 x = TOP();
1840 /* send u to x */
1841 if (PyGen_CheckExact(x)) {
1842 retval = _PyGen_Send((PyGenObject *)x, u);
1843 } else {
Benjamin Peterson302e7902012-03-20 23:17:04 -04001844 _Py_IDENTIFIER(send);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001845 if (u == Py_None)
1846 retval = PyIter_Next(x);
1847 else
Benjamin Peterson302e7902012-03-20 23:17:04 -04001848 retval = _PyObject_CallMethodId(x, &PyId_send, "O", u);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001849 }
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001850 Py_DECREF(u);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001851 if (!retval) {
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001852 PyObject *val;
1853 x = POP(); /* Remove iter from stack */
1854 Py_DECREF(x);
1855 err = PyGen_FetchStopIterationValue(&val);
1856 if (err < 0) {
1857 x = NULL;
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001858 break;
1859 }
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001860 x = val;
1861 PUSH(x);
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001862 continue;
1863 }
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001864 /* x remains on stack, retval is value to be yielded */
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001865 f->f_stacktop = stack_pointer;
1866 why = WHY_YIELD;
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001867 /* and repeat... */
1868 f->f_lasti--;
Nick Coghlan1f7ce622012-01-13 21:43:40 +10001869 goto fast_yield;
1870
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001871 TARGET(YIELD_VALUE)
1872 retval = POP();
1873 f->f_stacktop = stack_pointer;
1874 why = WHY_YIELD;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001875 goto fast_yield;
Tim Peters5ca576e2001-06-18 22:08:13 +00001876
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001877 TARGET(POP_EXCEPT)
1878 {
1879 PyTryBlock *b = PyFrame_BlockPop(f);
1880 if (b->b_type != EXCEPT_HANDLER) {
1881 PyErr_SetString(PyExc_SystemError,
1882 "popped block is not an except handler");
1883 why = WHY_EXCEPTION;
1884 break;
1885 }
1886 UNWIND_EXCEPT_HANDLER(b);
1887 }
1888 DISPATCH();
Benjamin Petersoneec3d712008-06-11 15:59:43 +00001889
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001890 TARGET(POP_BLOCK)
1891 {
1892 PyTryBlock *b = PyFrame_BlockPop(f);
1893 UNWIND_BLOCK(b);
1894 }
1895 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00001896
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001897 PREDICTED(END_FINALLY);
1898 TARGET(END_FINALLY)
1899 v = POP();
1900 if (PyLong_Check(v)) {
1901 why = (enum why_code) PyLong_AS_LONG(v);
1902 assert(why != WHY_YIELD);
1903 if (why == WHY_RETURN ||
1904 why == WHY_CONTINUE)
1905 retval = POP();
1906 if (why == WHY_SILENCED) {
1907 /* An exception was silenced by 'with', we must
1908 manually unwind the EXCEPT_HANDLER block which was
1909 created when the exception was caught, otherwise
1910 the stack will be in an inconsistent state. */
1911 PyTryBlock *b = PyFrame_BlockPop(f);
1912 assert(b->b_type == EXCEPT_HANDLER);
1913 UNWIND_EXCEPT_HANDLER(b);
1914 why = WHY_NOT;
1915 }
1916 }
1917 else if (PyExceptionClass_Check(v)) {
1918 w = POP();
1919 u = POP();
1920 PyErr_Restore(v, w, u);
1921 why = WHY_RERAISE;
1922 break;
1923 }
1924 else if (v != Py_None) {
1925 PyErr_SetString(PyExc_SystemError,
1926 "'finally' pops bad exception");
1927 why = WHY_EXCEPTION;
1928 }
1929 Py_DECREF(v);
1930 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001931
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001932 TARGET(LOAD_BUILD_CLASS)
Victor Stinner3c1e4812012-03-26 22:10:51 +02001933 {
1934 _Py_IDENTIFIER(__build_class__);
Victor Stinnerb0b22422012-04-19 00:57:45 +02001935
1936 if (PyDict_CheckExact(f->f_builtins)) {
1937 x = _PyDict_GetItemId(f->f_builtins, &PyId___build_class__);
1938 if (x == NULL) {
1939 PyErr_SetString(PyExc_NameError,
1940 "__build_class__ not found");
1941 break;
1942 }
Antoine Pitroubf35c152012-04-19 18:21:04 +02001943 Py_INCREF(x);
Victor Stinnerb0b22422012-04-19 00:57:45 +02001944 }
1945 else {
1946 PyObject *build_class_str = _PyUnicode_FromId(&PyId___build_class__);
1947 if (build_class_str == NULL)
1948 break;
1949 x = PyObject_GetItem(f->f_builtins, build_class_str);
1950 if (x == NULL) {
1951 if (PyErr_ExceptionMatches(PyExc_KeyError))
1952 PyErr_SetString(PyExc_NameError,
1953 "__build_class__ not found");
1954 break;
1955 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001956 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001957 PUSH(x);
1958 break;
Victor Stinner3c1e4812012-03-26 22:10:51 +02001959 }
Guido van Rossumac7be682001-01-17 15:42:30 +00001960
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001961 TARGET(STORE_NAME)
1962 w = GETITEM(names, oparg);
1963 v = POP();
1964 if ((x = f->f_locals) != NULL) {
1965 if (PyDict_CheckExact(x))
1966 err = PyDict_SetItem(x, w, v);
1967 else
1968 err = PyObject_SetItem(x, w, v);
1969 Py_DECREF(v);
1970 if (err == 0) DISPATCH();
1971 break;
1972 }
1973 PyErr_Format(PyExc_SystemError,
1974 "no locals found when storing %R", w);
1975 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00001976
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001977 TARGET(DELETE_NAME)
1978 w = GETITEM(names, oparg);
1979 if ((x = f->f_locals) != NULL) {
1980 if ((err = PyObject_DelItem(x, w)) != 0)
1981 format_exc_check_arg(PyExc_NameError,
1982 NAME_ERROR_MSG,
1983 w);
1984 break;
1985 }
1986 PyErr_Format(PyExc_SystemError,
1987 "no locals when deleting %R", w);
1988 break;
Guido van Rossum04691fc1992-08-12 15:35:34 +00001989
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001990 PREDICTED_WITH_ARG(UNPACK_SEQUENCE);
1991 TARGET(UNPACK_SEQUENCE)
1992 v = POP();
1993 if (PyTuple_CheckExact(v) &&
1994 PyTuple_GET_SIZE(v) == oparg) {
1995 PyObject **items = \
1996 ((PyTupleObject *)v)->ob_item;
1997 while (oparg--) {
1998 w = items[oparg];
1999 Py_INCREF(w);
2000 PUSH(w);
2001 }
2002 Py_DECREF(v);
2003 DISPATCH();
2004 } else if (PyList_CheckExact(v) &&
2005 PyList_GET_SIZE(v) == oparg) {
2006 PyObject **items = \
2007 ((PyListObject *)v)->ob_item;
2008 while (oparg--) {
2009 w = items[oparg];
2010 Py_INCREF(w);
2011 PUSH(w);
2012 }
2013 } else if (unpack_iterable(v, oparg, -1,
2014 stack_pointer + oparg)) {
2015 STACKADJ(oparg);
2016 } else {
2017 /* unpack_iterable() raised an exception */
2018 why = WHY_EXCEPTION;
2019 }
2020 Py_DECREF(v);
2021 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002022
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002023 TARGET(UNPACK_EX)
2024 {
2025 int totalargs = 1 + (oparg & 0xFF) + (oparg >> 8);
2026 v = POP();
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00002027
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002028 if (unpack_iterable(v, oparg & 0xFF, oparg >> 8,
2029 stack_pointer + totalargs)) {
2030 stack_pointer += totalargs;
2031 } else {
2032 why = WHY_EXCEPTION;
2033 }
2034 Py_DECREF(v);
2035 break;
2036 }
Guido van Rossum0368b722007-05-11 16:50:42 +00002037
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002038 TARGET(STORE_ATTR)
2039 w = GETITEM(names, oparg);
2040 v = TOP();
2041 u = SECOND();
2042 STACKADJ(-2);
2043 err = PyObject_SetAttr(v, w, u); /* v.w = u */
2044 Py_DECREF(v);
2045 Py_DECREF(u);
2046 if (err == 0) DISPATCH();
2047 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002048
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002049 TARGET(DELETE_ATTR)
2050 w = GETITEM(names, oparg);
2051 v = POP();
2052 err = PyObject_SetAttr(v, w, (PyObject *)NULL);
2053 /* del v.w */
2054 Py_DECREF(v);
2055 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002056
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002057 TARGET(STORE_GLOBAL)
2058 w = GETITEM(names, oparg);
2059 v = POP();
2060 err = PyDict_SetItem(f->f_globals, w, v);
2061 Py_DECREF(v);
2062 if (err == 0) DISPATCH();
2063 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002064
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002065 TARGET(DELETE_GLOBAL)
2066 w = GETITEM(names, oparg);
2067 if ((err = PyDict_DelItem(f->f_globals, w)) != 0)
2068 format_exc_check_arg(
2069 PyExc_NameError, GLOBAL_NAME_ERROR_MSG, w);
2070 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002071
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002072 TARGET(LOAD_NAME)
2073 w = GETITEM(names, oparg);
2074 if ((v = f->f_locals) == NULL) {
2075 PyErr_Format(PyExc_SystemError,
2076 "no locals when loading %R", w);
2077 why = WHY_EXCEPTION;
2078 break;
2079 }
2080 if (PyDict_CheckExact(v)) {
2081 x = PyDict_GetItem(v, w);
2082 Py_XINCREF(x);
2083 }
2084 else {
2085 x = PyObject_GetItem(v, w);
2086 if (x == NULL && PyErr_Occurred()) {
2087 if (!PyErr_ExceptionMatches(
2088 PyExc_KeyError))
2089 break;
2090 PyErr_Clear();
2091 }
2092 }
2093 if (x == NULL) {
Benjamin Peterson20f9c3c2010-07-20 22:39:34 +00002094 x = PyDict_GetItem(f->f_globals, w);
Antoine Pitroubf35c152012-04-19 18:21:04 +02002095 Py_XINCREF(x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002096 if (x == NULL) {
Victor Stinnerb0b22422012-04-19 00:57:45 +02002097 if (PyDict_CheckExact(f->f_builtins)) {
2098 x = PyDict_GetItem(f->f_builtins, w);
2099 if (x == NULL) {
2100 format_exc_check_arg(
2101 PyExc_NameError,
2102 NAME_ERROR_MSG, w);
2103 break;
2104 }
Antoine Pitroubf35c152012-04-19 18:21:04 +02002105 Py_INCREF(x);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002106 }
2107 else {
2108 x = PyObject_GetItem(f->f_builtins, w);
2109 if (x == NULL) {
2110 if (PyErr_ExceptionMatches(PyExc_KeyError))
2111 format_exc_check_arg(
2112 PyExc_NameError,
2113 NAME_ERROR_MSG, w);
2114 break;
2115 }
Benjamin Peterson20f9c3c2010-07-20 22:39:34 +00002116 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002117 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002118 }
2119 PUSH(x);
2120 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00002121
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002122 TARGET(LOAD_GLOBAL)
2123 w = GETITEM(names, oparg);
Victor Stinnerb0b22422012-04-19 00:57:45 +02002124 if (PyDict_CheckExact(f->f_globals)
2125 && PyDict_CheckExact(f->f_builtins)) {
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002126 x = _PyDict_LoadGlobal((PyDictObject *)f->f_globals,
2127 (PyDictObject *)f->f_builtins,
2128 w);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002129 if (x == NULL) {
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002130 if (!PyErr_Occurred())
2131 format_exc_check_arg(PyExc_NameError,
2132 GLOBAL_NAME_ERROR_MSG, w);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002133 break;
2134 }
Benjamin Peterson11389442012-04-26 00:26:37 -04002135 Py_INCREF(x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002136 }
Benjamin Peterson7d95e402012-04-23 11:24:50 -04002137 else {
2138 /* Slow-path if globals or builtins is not a dict */
2139 x = PyObject_GetItem(f->f_globals, w);
2140 if (x == NULL) {
2141 x = PyObject_GetItem(f->f_builtins, w);
2142 if (x == NULL) {
2143 if (PyErr_ExceptionMatches(PyExc_KeyError))
2144 format_exc_check_arg(
2145 PyExc_NameError,
2146 GLOBAL_NAME_ERROR_MSG, w);
2147 break;
2148 }
2149 }
2150 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002151 PUSH(x);
2152 DISPATCH();
Guido van Rossum681d79a1995-07-18 14:51:37 +00002153
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002154 TARGET(DELETE_FAST)
2155 x = GETLOCAL(oparg);
2156 if (x != NULL) {
2157 SETLOCAL(oparg, NULL);
2158 DISPATCH();
2159 }
2160 format_exc_check_arg(
2161 PyExc_UnboundLocalError,
2162 UNBOUNDLOCAL_ERROR_MSG,
2163 PyTuple_GetItem(co->co_varnames, oparg)
2164 );
2165 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002166
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002167 TARGET(DELETE_DEREF)
2168 x = freevars[oparg];
2169 if (PyCell_GET(x) != NULL) {
2170 PyCell_Set(x, NULL);
Benjamin Peterson00ebe2c2010-09-10 22:02:31 +00002171 DISPATCH();
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002172 }
2173 err = -1;
2174 format_exc_unbound(co, oparg);
2175 break;
2176
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002177 TARGET(LOAD_CLOSURE)
2178 x = freevars[oparg];
2179 Py_INCREF(x);
2180 PUSH(x);
2181 if (x != NULL) DISPATCH();
2182 break;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00002183
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002184 TARGET(LOAD_DEREF)
2185 x = freevars[oparg];
2186 w = PyCell_Get(x);
2187 if (w != NULL) {
2188 PUSH(w);
2189 DISPATCH();
2190 }
2191 err = -1;
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00002192 format_exc_unbound(co, oparg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002193 break;
Jeremy Hylton64949cb2001-01-25 20:06:59 +00002194
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002195 TARGET(STORE_DEREF)
2196 w = POP();
2197 x = freevars[oparg];
2198 PyCell_Set(x, w);
2199 Py_DECREF(w);
2200 DISPATCH();
Jeremy Hylton64949cb2001-01-25 20:06:59 +00002201
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002202 TARGET(BUILD_TUPLE)
2203 x = PyTuple_New(oparg);
2204 if (x != NULL) {
2205 for (; --oparg >= 0;) {
2206 w = POP();
2207 PyTuple_SET_ITEM(x, oparg, w);
2208 }
2209 PUSH(x);
2210 DISPATCH();
2211 }
2212 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002213
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002214 TARGET(BUILD_LIST)
2215 x = PyList_New(oparg);
2216 if (x != NULL) {
2217 for (; --oparg >= 0;) {
2218 w = POP();
2219 PyList_SET_ITEM(x, oparg, w);
2220 }
2221 PUSH(x);
2222 DISPATCH();
2223 }
2224 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002225
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002226 TARGET(BUILD_SET)
2227 x = PySet_New(NULL);
2228 if (x != NULL) {
2229 for (; --oparg >= 0;) {
2230 w = POP();
2231 if (err == 0)
2232 err = PySet_Add(x, w);
2233 Py_DECREF(w);
2234 }
2235 if (err != 0) {
2236 Py_DECREF(x);
2237 break;
2238 }
2239 PUSH(x);
2240 DISPATCH();
2241 }
2242 break;
Guido van Rossum86e58e22006-08-28 15:27:34 +00002243
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002244 TARGET(BUILD_MAP)
2245 x = _PyDict_NewPresized((Py_ssize_t)oparg);
2246 PUSH(x);
2247 if (x != NULL) DISPATCH();
2248 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002249
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002250 TARGET(STORE_MAP)
2251 w = TOP(); /* key */
2252 u = SECOND(); /* value */
2253 v = THIRD(); /* dict */
2254 STACKADJ(-2);
2255 assert (PyDict_CheckExact(v));
2256 err = PyDict_SetItem(v, w, u); /* v[w] = u */
2257 Py_DECREF(u);
2258 Py_DECREF(w);
2259 if (err == 0) DISPATCH();
2260 break;
Christian Heimes99170a52007-12-19 02:07:34 +00002261
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002262 TARGET(MAP_ADD)
2263 w = TOP(); /* key */
2264 u = SECOND(); /* value */
2265 STACKADJ(-2);
2266 v = stack_pointer[-oparg]; /* dict */
2267 assert (PyDict_CheckExact(v));
2268 err = PyDict_SetItem(v, w, u); /* v[w] = u */
2269 Py_DECREF(u);
2270 Py_DECREF(w);
2271 if (err == 0) {
2272 PREDICT(JUMP_ABSOLUTE);
2273 DISPATCH();
2274 }
2275 break;
Antoine Pitrouf289ae62008-12-18 11:06:25 +00002276
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002277 TARGET(LOAD_ATTR)
2278 w = GETITEM(names, oparg);
2279 v = TOP();
2280 x = PyObject_GetAttr(v, w);
2281 Py_DECREF(v);
2282 SET_TOP(x);
2283 if (x != NULL) DISPATCH();
2284 break;
Guido van Rossumac7be682001-01-17 15:42:30 +00002285
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002286 TARGET(COMPARE_OP)
2287 w = POP();
2288 v = TOP();
2289 x = cmp_outcome(oparg, v, w);
2290 Py_DECREF(v);
2291 Py_DECREF(w);
2292 SET_TOP(x);
2293 if (x == NULL) break;
2294 PREDICT(POP_JUMP_IF_FALSE);
2295 PREDICT(POP_JUMP_IF_TRUE);
2296 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00002297
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002298 TARGET(IMPORT_NAME)
Victor Stinner3c1e4812012-03-26 22:10:51 +02002299 {
2300 _Py_IDENTIFIER(__import__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002301 w = GETITEM(names, oparg);
Victor Stinner3c1e4812012-03-26 22:10:51 +02002302 x = _PyDict_GetItemId(f->f_builtins, &PyId___import__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002303 if (x == NULL) {
2304 PyErr_SetString(PyExc_ImportError,
2305 "__import__ not found");
2306 break;
2307 }
2308 Py_INCREF(x);
2309 v = POP();
2310 u = TOP();
2311 if (PyLong_AsLong(u) != -1 || PyErr_Occurred())
2312 w = PyTuple_Pack(5,
2313 w,
2314 f->f_globals,
2315 f->f_locals == NULL ?
2316 Py_None : f->f_locals,
2317 v,
2318 u);
2319 else
2320 w = PyTuple_Pack(4,
2321 w,
2322 f->f_globals,
2323 f->f_locals == NULL ?
2324 Py_None : f->f_locals,
2325 v);
2326 Py_DECREF(v);
2327 Py_DECREF(u);
2328 if (w == NULL) {
2329 u = POP();
2330 Py_DECREF(x);
2331 x = NULL;
2332 break;
2333 }
2334 READ_TIMESTAMP(intr0);
2335 v = x;
2336 x = PyEval_CallObject(v, w);
2337 Py_DECREF(v);
2338 READ_TIMESTAMP(intr1);
2339 Py_DECREF(w);
2340 SET_TOP(x);
2341 if (x != NULL) DISPATCH();
2342 break;
Victor Stinner3c1e4812012-03-26 22:10:51 +02002343 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002344
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002345 TARGET(IMPORT_STAR)
2346 v = POP();
2347 PyFrame_FastToLocals(f);
2348 if ((x = f->f_locals) == NULL) {
2349 PyErr_SetString(PyExc_SystemError,
2350 "no locals found during 'import *'");
2351 break;
2352 }
2353 READ_TIMESTAMP(intr0);
2354 err = import_all_from(x, v);
2355 READ_TIMESTAMP(intr1);
2356 PyFrame_LocalsToFast(f, 0);
2357 Py_DECREF(v);
2358 if (err == 0) DISPATCH();
2359 break;
Guido van Rossum25831651993-05-19 14:50:45 +00002360
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002361 TARGET(IMPORT_FROM)
2362 w = GETITEM(names, oparg);
2363 v = TOP();
2364 READ_TIMESTAMP(intr0);
2365 x = import_from(v, w);
2366 READ_TIMESTAMP(intr1);
2367 PUSH(x);
2368 if (x != NULL) DISPATCH();
2369 break;
Thomas Wouters52152252000-08-17 22:55:00 +00002370
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002371 TARGET(JUMP_FORWARD)
2372 JUMPBY(oparg);
2373 FAST_DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00002374
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002375 PREDICTED_WITH_ARG(POP_JUMP_IF_FALSE);
2376 TARGET(POP_JUMP_IF_FALSE)
2377 w = POP();
2378 if (w == Py_True) {
2379 Py_DECREF(w);
2380 FAST_DISPATCH();
2381 }
2382 if (w == Py_False) {
2383 Py_DECREF(w);
2384 JUMPTO(oparg);
2385 FAST_DISPATCH();
2386 }
2387 err = PyObject_IsTrue(w);
2388 Py_DECREF(w);
2389 if (err > 0)
2390 err = 0;
2391 else if (err == 0)
2392 JUMPTO(oparg);
2393 else
2394 break;
2395 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00002396
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002397 PREDICTED_WITH_ARG(POP_JUMP_IF_TRUE);
2398 TARGET(POP_JUMP_IF_TRUE)
2399 w = POP();
2400 if (w == Py_False) {
2401 Py_DECREF(w);
2402 FAST_DISPATCH();
2403 }
2404 if (w == Py_True) {
2405 Py_DECREF(w);
2406 JUMPTO(oparg);
2407 FAST_DISPATCH();
2408 }
2409 err = PyObject_IsTrue(w);
2410 Py_DECREF(w);
2411 if (err > 0) {
2412 err = 0;
2413 JUMPTO(oparg);
2414 }
2415 else if (err == 0)
2416 ;
2417 else
2418 break;
2419 DISPATCH();
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002420
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002421 TARGET(JUMP_IF_FALSE_OR_POP)
2422 w = TOP();
2423 if (w == Py_True) {
2424 STACKADJ(-1);
2425 Py_DECREF(w);
2426 FAST_DISPATCH();
2427 }
2428 if (w == Py_False) {
2429 JUMPTO(oparg);
2430 FAST_DISPATCH();
2431 }
2432 err = PyObject_IsTrue(w);
2433 if (err > 0) {
2434 STACKADJ(-1);
2435 Py_DECREF(w);
2436 err = 0;
2437 }
2438 else if (err == 0)
2439 JUMPTO(oparg);
2440 else
2441 break;
2442 DISPATCH();
Jeffrey Yasskin9de7ec72009-02-25 02:25:04 +00002443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002444 TARGET(JUMP_IF_TRUE_OR_POP)
2445 w = TOP();
2446 if (w == Py_False) {
2447 STACKADJ(-1);
2448 Py_DECREF(w);
2449 FAST_DISPATCH();
2450 }
2451 if (w == Py_True) {
2452 JUMPTO(oparg);
2453 FAST_DISPATCH();
2454 }
2455 err = PyObject_IsTrue(w);
2456 if (err > 0) {
2457 err = 0;
2458 JUMPTO(oparg);
2459 }
2460 else if (err == 0) {
2461 STACKADJ(-1);
2462 Py_DECREF(w);
2463 }
2464 else
2465 break;
2466 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00002467
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002468 PREDICTED_WITH_ARG(JUMP_ABSOLUTE);
2469 TARGET(JUMP_ABSOLUTE)
2470 JUMPTO(oparg);
Guido van Rossum58da9312007-11-10 23:39:45 +00002471#if FAST_LOOPS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002472 /* Enabling this path speeds-up all while and for-loops by bypassing
2473 the per-loop checks for signals. By default, this should be turned-off
2474 because it prevents detection of a control-break in tight loops like
2475 "while 1: pass". Compile with this option turned-on when you need
2476 the speed-up and do not need break checking inside tight loops (ones
2477 that contain only instructions ending with FAST_DISPATCH).
2478 */
2479 FAST_DISPATCH();
Guido van Rossum58da9312007-11-10 23:39:45 +00002480#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002481 DISPATCH();
Guido van Rossum58da9312007-11-10 23:39:45 +00002482#endif
Guido van Rossumac7be682001-01-17 15:42:30 +00002483
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002484 TARGET(GET_ITER)
2485 /* before: [obj]; after [getiter(obj)] */
2486 v = TOP();
2487 x = PyObject_GetIter(v);
2488 Py_DECREF(v);
2489 if (x != NULL) {
2490 SET_TOP(x);
2491 PREDICT(FOR_ITER);
2492 DISPATCH();
2493 }
2494 STACKADJ(-1);
2495 break;
Guido van Rossum59d1d2b2001-04-20 19:13:02 +00002496
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002497 PREDICTED_WITH_ARG(FOR_ITER);
2498 TARGET(FOR_ITER)
2499 /* before: [iter]; after: [iter, iter()] *or* [] */
2500 v = TOP();
2501 x = (*v->ob_type->tp_iternext)(v);
2502 if (x != NULL) {
2503 PUSH(x);
2504 PREDICT(STORE_FAST);
2505 PREDICT(UNPACK_SEQUENCE);
2506 DISPATCH();
2507 }
2508 if (PyErr_Occurred()) {
2509 if (!PyErr_ExceptionMatches(
2510 PyExc_StopIteration))
2511 break;
2512 PyErr_Clear();
2513 }
2514 /* iterator ended normally */
2515 x = v = POP();
2516 Py_DECREF(v);
2517 JUMPBY(oparg);
2518 DISPATCH();
Guido van Rossum59d1d2b2001-04-20 19:13:02 +00002519
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002520 TARGET(BREAK_LOOP)
2521 why = WHY_BREAK;
2522 goto fast_block_end;
Raymond Hettinger2d783e92004-03-12 09:12:22 +00002523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002524 TARGET(CONTINUE_LOOP)
2525 retval = PyLong_FromLong(oparg);
2526 if (!retval) {
2527 x = NULL;
2528 break;
2529 }
2530 why = WHY_CONTINUE;
2531 goto fast_block_end;
Raymond Hettinger2d783e92004-03-12 09:12:22 +00002532
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002533 TARGET_WITH_IMPL(SETUP_LOOP, _setup_finally)
2534 TARGET_WITH_IMPL(SETUP_EXCEPT, _setup_finally)
2535 TARGET(SETUP_FINALLY)
2536 _setup_finally:
2537 /* NOTE: If you add any new block-setup opcodes that
2538 are not try/except/finally handlers, you may need
2539 to update the PyGen_NeedsFinalizing() function.
2540 */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002541
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002542 PyFrame_BlockSetup(f, opcode, INSTR_OFFSET() + oparg,
2543 STACK_LEVEL());
2544 DISPATCH();
Guido van Rossumac7be682001-01-17 15:42:30 +00002545
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002546 TARGET(SETUP_WITH)
2547 {
Benjamin Petersonce798522012-01-22 11:24:29 -05002548 _Py_IDENTIFIER(__exit__);
2549 _Py_IDENTIFIER(__enter__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002550 w = TOP();
Benjamin Petersonce798522012-01-22 11:24:29 -05002551 x = special_lookup(w, &PyId___exit__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002552 if (!x)
2553 break;
2554 SET_TOP(x);
Benjamin Petersonce798522012-01-22 11:24:29 -05002555 u = special_lookup(w, &PyId___enter__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002556 Py_DECREF(w);
2557 if (!u) {
2558 x = NULL;
2559 break;
2560 }
2561 x = PyObject_CallFunctionObjArgs(u, NULL);
2562 Py_DECREF(u);
2563 if (!x)
2564 break;
2565 /* Setup the finally block before pushing the result
2566 of __enter__ on the stack. */
2567 PyFrame_BlockSetup(f, SETUP_FINALLY, INSTR_OFFSET() + oparg,
2568 STACK_LEVEL());
Benjamin Peterson876b2f22009-06-28 03:18:59 +00002569
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002570 PUSH(x);
2571 DISPATCH();
2572 }
Benjamin Peterson876b2f22009-06-28 03:18:59 +00002573
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002574 TARGET(WITH_CLEANUP)
2575 {
2576 /* At the top of the stack are 1-3 values indicating
2577 how/why we entered the finally clause:
2578 - TOP = None
2579 - (TOP, SECOND) = (WHY_{RETURN,CONTINUE}), retval
2580 - TOP = WHY_*; no retval below it
2581 - (TOP, SECOND, THIRD) = exc_info()
2582 (FOURTH, FITH, SIXTH) = previous exception for EXCEPT_HANDLER
2583 Below them is EXIT, the context.__exit__ bound method.
2584 In the last case, we must call
2585 EXIT(TOP, SECOND, THIRD)
2586 otherwise we must call
2587 EXIT(None, None, None)
Christian Heimesdd15f6c2008-03-16 00:07:10 +00002588
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002589 In the first two cases, we remove EXIT from the
2590 stack, leaving the rest in the same order. In the
2591 third case, we shift the bottom 3 values of the
2592 stack down, and replace the empty spot with NULL.
Guido van Rossum1a5e21e2006-02-28 21:57:43 +00002593
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002594 In addition, if the stack represents an exception,
2595 *and* the function call returns a 'true' value, we
2596 push WHY_SILENCED onto the stack. END_FINALLY will
2597 then not re-raise the exception. (But non-local
2598 gotos should still be resumed.)
2599 */
Thomas Wouters477c8d52006-05-27 19:21:47 +00002600
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002601 PyObject *exit_func;
2602 u = TOP();
2603 if (u == Py_None) {
2604 (void)POP();
2605 exit_func = TOP();
2606 SET_TOP(u);
2607 v = w = Py_None;
2608 }
2609 else if (PyLong_Check(u)) {
2610 (void)POP();
2611 switch(PyLong_AsLong(u)) {
2612 case WHY_RETURN:
2613 case WHY_CONTINUE:
2614 /* Retval in TOP. */
2615 exit_func = SECOND();
2616 SET_SECOND(TOP());
2617 SET_TOP(u);
2618 break;
2619 default:
2620 exit_func = TOP();
2621 SET_TOP(u);
2622 break;
2623 }
2624 u = v = w = Py_None;
2625 }
2626 else {
2627 PyObject *tp, *exc, *tb;
2628 PyTryBlock *block;
2629 v = SECOND();
2630 w = THIRD();
2631 tp = FOURTH();
2632 exc = PEEK(5);
2633 tb = PEEK(6);
2634 exit_func = PEEK(7);
2635 SET_VALUE(7, tb);
2636 SET_VALUE(6, exc);
2637 SET_VALUE(5, tp);
2638 /* UNWIND_EXCEPT_HANDLER will pop this off. */
2639 SET_FOURTH(NULL);
2640 /* We just shifted the stack down, so we have
2641 to tell the except handler block that the
2642 values are lower than it expects. */
2643 block = &f->f_blockstack[f->f_iblock - 1];
2644 assert(block->b_type == EXCEPT_HANDLER);
2645 block->b_level--;
2646 }
2647 /* XXX Not the fastest way to call it... */
2648 x = PyObject_CallFunctionObjArgs(exit_func, u, v, w,
2649 NULL);
2650 Py_DECREF(exit_func);
2651 if (x == NULL)
2652 break; /* Go to error exit */
Amaury Forgeot d'Arc10b24e82008-12-10 23:49:33 +00002653
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002654 if (u != Py_None)
2655 err = PyObject_IsTrue(x);
2656 else
2657 err = 0;
2658 Py_DECREF(x);
Amaury Forgeot d'Arc10b24e82008-12-10 23:49:33 +00002659
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002660 if (err < 0)
2661 break; /* Go to error exit */
2662 else if (err > 0) {
2663 err = 0;
2664 /* There was an exception and a True return */
2665 PUSH(PyLong_FromLong((long) WHY_SILENCED));
2666 }
2667 PREDICT(END_FINALLY);
2668 break;
2669 }
Guido van Rossumc2e20742006-02-27 22:32:47 +00002670
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002671 TARGET(CALL_FUNCTION)
2672 {
2673 PyObject **sp;
2674 PCALL(PCALL_ALL);
2675 sp = stack_pointer;
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002676#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002677 x = call_function(&sp, oparg, &intr0, &intr1);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002678#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002679 x = call_function(&sp, oparg);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002680#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002681 stack_pointer = sp;
2682 PUSH(x);
2683 if (x != NULL)
2684 DISPATCH();
2685 break;
2686 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002687
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002688 TARGET_WITH_IMPL(CALL_FUNCTION_VAR, _call_function_var_kw)
2689 TARGET_WITH_IMPL(CALL_FUNCTION_KW, _call_function_var_kw)
2690 TARGET(CALL_FUNCTION_VAR_KW)
2691 _call_function_var_kw:
2692 {
2693 int na = oparg & 0xff;
2694 int nk = (oparg>>8) & 0xff;
2695 int flags = (opcode - CALL_FUNCTION) & 3;
2696 int n = na + 2 * nk;
2697 PyObject **pfunc, *func, **sp;
2698 PCALL(PCALL_ALL);
2699 if (flags & CALL_FLAG_VAR)
2700 n++;
2701 if (flags & CALL_FLAG_KW)
2702 n++;
2703 pfunc = stack_pointer - n - 1;
2704 func = *pfunc;
Jeremy Hylton52820442001-01-03 23:52:36 +00002705
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002706 if (PyMethod_Check(func)
Stefan Krahb7e10102010-06-23 18:42:39 +00002707 && PyMethod_GET_SELF(func) != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002708 PyObject *self = PyMethod_GET_SELF(func);
2709 Py_INCREF(self);
2710 func = PyMethod_GET_FUNCTION(func);
2711 Py_INCREF(func);
2712 Py_DECREF(*pfunc);
2713 *pfunc = self;
2714 na++;
Brett Cannonb94767f2011-02-22 20:15:44 +00002715 /* n++; */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002716 } else
2717 Py_INCREF(func);
2718 sp = stack_pointer;
2719 READ_TIMESTAMP(intr0);
2720 x = ext_do_call(func, &sp, flags, na, nk);
2721 READ_TIMESTAMP(intr1);
2722 stack_pointer = sp;
2723 Py_DECREF(func);
Jeremy Hylton52820442001-01-03 23:52:36 +00002724
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002725 while (stack_pointer > pfunc) {
2726 w = POP();
2727 Py_DECREF(w);
2728 }
2729 PUSH(x);
2730 if (x != NULL)
2731 DISPATCH();
2732 break;
2733 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002734
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002735 TARGET_WITH_IMPL(MAKE_CLOSURE, _make_function)
2736 TARGET(MAKE_FUNCTION)
2737 _make_function:
2738 {
2739 int posdefaults = oparg & 0xff;
2740 int kwdefaults = (oparg>>8) & 0xff;
2741 int num_annotations = (oparg >> 16) & 0x7fff;
Guido van Rossum4f72a782006-10-27 23:31:49 +00002742
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002743 w = POP(); /* qualname */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002744 v = POP(); /* code object */
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002745 x = PyFunction_NewWithQualName(v, f->f_globals, w);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002746 Py_DECREF(v);
Antoine Pitrou86a36b52011-11-25 18:56:07 +01002747 Py_DECREF(w);
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00002748
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002749 if (x != NULL && opcode == MAKE_CLOSURE) {
2750 v = POP();
2751 if (PyFunction_SetClosure(x, v) != 0) {
2752 /* Can't happen unless bytecode is corrupt. */
2753 why = WHY_EXCEPTION;
2754 }
2755 Py_DECREF(v);
2756 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002757
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002758 if (x != NULL && num_annotations > 0) {
2759 Py_ssize_t name_ix;
2760 u = POP(); /* names of args with annotations */
2761 v = PyDict_New();
2762 if (v == NULL) {
2763 Py_DECREF(x);
2764 x = NULL;
2765 break;
2766 }
2767 name_ix = PyTuple_Size(u);
2768 assert(num_annotations == name_ix+1);
2769 while (name_ix > 0) {
2770 --name_ix;
2771 t = PyTuple_GET_ITEM(u, name_ix);
2772 w = POP();
2773 /* XXX(nnorwitz): check for errors */
2774 PyDict_SetItem(v, t, w);
2775 Py_DECREF(w);
2776 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002777
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002778 if (PyFunction_SetAnnotations(x, v) != 0) {
2779 /* Can't happen unless
2780 PyFunction_SetAnnotations changes. */
2781 why = WHY_EXCEPTION;
2782 }
2783 Py_DECREF(v);
2784 Py_DECREF(u);
2785 }
Neal Norwitzc1505362006-12-28 06:47:50 +00002786
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002787 /* XXX Maybe this should be a separate opcode? */
2788 if (x != NULL && posdefaults > 0) {
2789 v = PyTuple_New(posdefaults);
2790 if (v == NULL) {
2791 Py_DECREF(x);
2792 x = NULL;
2793 break;
2794 }
2795 while (--posdefaults >= 0) {
2796 w = POP();
2797 PyTuple_SET_ITEM(v, posdefaults, w);
2798 }
2799 if (PyFunction_SetDefaults(x, v) != 0) {
2800 /* Can't happen unless
2801 PyFunction_SetDefaults changes. */
2802 why = WHY_EXCEPTION;
2803 }
2804 Py_DECREF(v);
2805 }
2806 if (x != NULL && kwdefaults > 0) {
2807 v = PyDict_New();
2808 if (v == NULL) {
2809 Py_DECREF(x);
2810 x = NULL;
2811 break;
2812 }
2813 while (--kwdefaults >= 0) {
2814 w = POP(); /* default value */
2815 u = POP(); /* kw only arg name */
2816 /* XXX(nnorwitz): check for errors */
2817 PyDict_SetItem(v, u, w);
2818 Py_DECREF(w);
2819 Py_DECREF(u);
2820 }
2821 if (PyFunction_SetKwDefaults(x, v) != 0) {
2822 /* Can't happen unless
2823 PyFunction_SetKwDefaults changes. */
2824 why = WHY_EXCEPTION;
2825 }
2826 Py_DECREF(v);
2827 }
2828 PUSH(x);
2829 break;
2830 }
Guido van Rossum8861b741996-07-30 16:49:37 +00002831
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002832 TARGET(BUILD_SLICE)
2833 if (oparg == 3)
2834 w = POP();
2835 else
2836 w = NULL;
2837 v = POP();
2838 u = TOP();
2839 x = PySlice_New(u, v, w);
2840 Py_DECREF(u);
2841 Py_DECREF(v);
2842 Py_XDECREF(w);
2843 SET_TOP(x);
2844 if (x != NULL) DISPATCH();
2845 break;
Guido van Rossum8861b741996-07-30 16:49:37 +00002846
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002847 TARGET(EXTENDED_ARG)
2848 opcode = NEXTOP();
2849 oparg = oparg<<16 | NEXTARG();
2850 goto dispatch_opcode;
Guido van Rossum8861b741996-07-30 16:49:37 +00002851
Antoine Pitrou042b1282010-08-13 21:15:58 +00002852#if USE_COMPUTED_GOTOS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002853 _unknown_opcode:
Antoine Pitroub52ec782009-01-25 16:34:23 +00002854#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002855 default:
2856 fprintf(stderr,
2857 "XXX lineno: %d, opcode: %d\n",
2858 PyFrame_GetLineNumber(f),
2859 opcode);
2860 PyErr_SetString(PyExc_SystemError, "unknown opcode");
2861 why = WHY_EXCEPTION;
2862 break;
Guido van Rossum04691fc1992-08-12 15:35:34 +00002863
2864#ifdef CASE_TOO_BIG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002865 }
Guido van Rossum04691fc1992-08-12 15:35:34 +00002866#endif
2867
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002868 } /* switch */
Guido van Rossum374a9221991-04-04 10:40:29 +00002869
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002870 on_error:
Guido van Rossumac7be682001-01-17 15:42:30 +00002871
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002872 READ_TIMESTAMP(inst1);
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002873
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002874 /* Quickly continue if no error occurred */
Guido van Rossumac7be682001-01-17 15:42:30 +00002875
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002876 if (why == WHY_NOT) {
2877 if (err == 0 && x != NULL) {
Guido van Rossum681d79a1995-07-18 14:51:37 +00002878#ifdef CHECKEXC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002879 /* This check is expensive! */
2880 if (PyErr_Occurred())
2881 fprintf(stderr,
2882 "XXX undetected error\n");
2883 else {
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002884#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002885 READ_TIMESTAMP(loop1);
2886 continue; /* Normal, fast path */
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002887#ifdef CHECKEXC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002888 }
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00002889#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002890 }
2891 why = WHY_EXCEPTION;
2892 x = Py_None;
2893 err = 0;
2894 }
Guido van Rossum374a9221991-04-04 10:40:29 +00002895
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002896 /* Double-check exception status */
Guido van Rossumac7be682001-01-17 15:42:30 +00002897
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002898 if (why == WHY_EXCEPTION || why == WHY_RERAISE) {
2899 if (!PyErr_Occurred()) {
2900 PyErr_SetString(PyExc_SystemError,
2901 "error return without exception set");
2902 why = WHY_EXCEPTION;
2903 }
2904 }
Guido van Rossumeb894eb1999-03-09 16:16:45 +00002905#ifdef CHECKEXC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002906 else {
2907 /* This check is expensive! */
2908 if (PyErr_Occurred()) {
2909 char buf[128];
2910 sprintf(buf, "Stack unwind with exception "
2911 "set and why=%d", why);
2912 Py_FatalError(buf);
2913 }
2914 }
Guido van Rossum374a9221991-04-04 10:40:29 +00002915#endif
2916
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002917 /* Log traceback info if this is a real exception */
Guido van Rossumac7be682001-01-17 15:42:30 +00002918
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002919 if (why == WHY_EXCEPTION) {
2920 PyTraceBack_Here(f);
Guido van Rossum96a42c81992-01-12 02:29:51 +00002921
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002922 if (tstate->c_tracefunc != NULL)
2923 call_exc_trace(tstate->c_tracefunc,
2924 tstate->c_traceobj, f);
2925 }
Guido van Rossumac7be682001-01-17 15:42:30 +00002926
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002927 /* For the rest, treat WHY_RERAISE as WHY_EXCEPTION */
Guido van Rossumac7be682001-01-17 15:42:30 +00002928
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002929 if (why == WHY_RERAISE)
2930 why = WHY_EXCEPTION;
Guido van Rossum374a9221991-04-04 10:40:29 +00002931
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002932 /* Unwind stacks if a (pseudo) exception occurred */
Guido van Rossumac7be682001-01-17 15:42:30 +00002933
Raymond Hettinger1dd83092004-02-06 18:32:33 +00002934fast_block_end:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002935 while (why != WHY_NOT && f->f_iblock > 0) {
2936 /* Peek at the current block. */
2937 PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1];
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00002938
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002939 assert(why != WHY_YIELD);
2940 if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) {
2941 why = WHY_NOT;
2942 JUMPTO(PyLong_AS_LONG(retval));
2943 Py_DECREF(retval);
2944 break;
2945 }
2946 /* Now we have to pop the block. */
2947 f->f_iblock--;
Jeremy Hylton3faa52e2001-02-01 22:48:12 +00002948
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00002949 if (b->b_type == EXCEPT_HANDLER) {
2950 UNWIND_EXCEPT_HANDLER(b);
2951 continue;
2952 }
2953 UNWIND_BLOCK(b);
2954 if (b->b_type == SETUP_LOOP && why == WHY_BREAK) {
2955 why = WHY_NOT;
2956 JUMPTO(b->b_handler);
2957 break;
2958 }
2959 if (why == WHY_EXCEPTION && (b->b_type == SETUP_EXCEPT
2960 || b->b_type == SETUP_FINALLY)) {
2961 PyObject *exc, *val, *tb;
2962 int handler = b->b_handler;
2963 /* Beware, this invalidates all b->b_* fields */
2964 PyFrame_BlockSetup(f, EXCEPT_HANDLER, -1, STACK_LEVEL());
2965 PUSH(tstate->exc_traceback);
2966 PUSH(tstate->exc_value);
2967 if (tstate->exc_type != NULL) {
2968 PUSH(tstate->exc_type);
2969 }
2970 else {
2971 Py_INCREF(Py_None);
2972 PUSH(Py_None);
2973 }
2974 PyErr_Fetch(&exc, &val, &tb);
2975 /* Make the raw exception data
2976 available to the handler,
2977 so a program can emulate the
2978 Python main loop. */
2979 PyErr_NormalizeException(
2980 &exc, &val, &tb);
2981 PyException_SetTraceback(val, tb);
2982 Py_INCREF(exc);
2983 tstate->exc_type = exc;
2984 Py_INCREF(val);
2985 tstate->exc_value = val;
2986 tstate->exc_traceback = tb;
2987 if (tb == NULL)
2988 tb = Py_None;
2989 Py_INCREF(tb);
2990 PUSH(tb);
2991 PUSH(val);
2992 PUSH(exc);
2993 why = WHY_NOT;
2994 JUMPTO(handler);
2995 break;
2996 }
2997 if (b->b_type == SETUP_FINALLY) {
2998 if (why & (WHY_RETURN | WHY_CONTINUE))
2999 PUSH(retval);
3000 PUSH(PyLong_FromLong((long)why));
3001 why = WHY_NOT;
3002 JUMPTO(b->b_handler);
3003 break;
3004 }
3005 } /* unwind stack */
Guido van Rossum374a9221991-04-04 10:40:29 +00003006
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003007 /* End the loop if we still have an error (or return) */
Guido van Rossumac7be682001-01-17 15:42:30 +00003008
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003009 if (why != WHY_NOT)
3010 break;
3011 READ_TIMESTAMP(loop1);
Guido van Rossumac7be682001-01-17 15:42:30 +00003012
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003013 } /* main loop */
Guido van Rossumac7be682001-01-17 15:42:30 +00003014
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003015 assert(why != WHY_YIELD);
3016 /* Pop remaining stack entries. */
3017 while (!EMPTY()) {
3018 v = POP();
3019 Py_XDECREF(v);
3020 }
Guido van Rossum35974fb2001-12-06 21:28:18 +00003021
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003022 if (why != WHY_RETURN)
3023 retval = NULL;
Guido van Rossumac7be682001-01-17 15:42:30 +00003024
Raymond Hettinger1dd83092004-02-06 18:32:33 +00003025fast_yield:
Benjamin Petersonac913412011-07-03 16:25:11 -05003026 if (co->co_flags & CO_GENERATOR && (why == WHY_YIELD || why == WHY_RETURN)) {
3027 /* The purpose of this block is to put aside the generator's exception
3028 state and restore that of the calling frame. If the current
3029 exception state is from the caller, we clear the exception values
3030 on the generator frame, so they are not swapped back in latter. The
3031 origin of the current exception state is determined by checking for
3032 except handler blocks, which we must be in iff a new exception
3033 state came into existence in this frame. (An uncaught exception
3034 would have why == WHY_EXCEPTION, and we wouldn't be here). */
3035 int i;
3036 for (i = 0; i < f->f_iblock; i++)
3037 if (f->f_blockstack[i].b_type == EXCEPT_HANDLER)
3038 break;
3039 if (i == f->f_iblock)
3040 /* We did not create this exception. */
Benjamin Peterson87880242011-07-03 16:48:31 -05003041 restore_and_clear_exc_state(tstate, f);
Benjamin Petersonac913412011-07-03 16:25:11 -05003042 else
Benjamin Peterson87880242011-07-03 16:48:31 -05003043 swap_exc_state(tstate, f);
Benjamin Petersonac913412011-07-03 16:25:11 -05003044 }
Benjamin Peterson83195c32011-07-03 13:44:00 -05003045
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003046 if (tstate->use_tracing) {
3047 if (tstate->c_tracefunc) {
3048 if (why == WHY_RETURN || why == WHY_YIELD) {
3049 if (call_trace(tstate->c_tracefunc,
3050 tstate->c_traceobj, f,
3051 PyTrace_RETURN, retval)) {
3052 Py_XDECREF(retval);
3053 retval = NULL;
3054 why = WHY_EXCEPTION;
3055 }
3056 }
3057 else if (why == WHY_EXCEPTION) {
3058 call_trace_protected(tstate->c_tracefunc,
3059 tstate->c_traceobj, f,
3060 PyTrace_RETURN, NULL);
3061 }
3062 }
3063 if (tstate->c_profilefunc) {
3064 if (why == WHY_EXCEPTION)
3065 call_trace_protected(tstate->c_profilefunc,
3066 tstate->c_profileobj, f,
3067 PyTrace_RETURN, NULL);
3068 else if (call_trace(tstate->c_profilefunc,
3069 tstate->c_profileobj, f,
3070 PyTrace_RETURN, retval)) {
3071 Py_XDECREF(retval);
3072 retval = NULL;
Brett Cannonb94767f2011-02-22 20:15:44 +00003073 /* why = WHY_EXCEPTION; */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003074 }
3075 }
3076 }
Guido van Rossuma4240131997-01-21 21:18:36 +00003077
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003078 /* pop frame */
Thomas Woutersce272b62007-09-19 21:19:28 +00003079exit_eval_frame:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003080 Py_LeaveRecursiveCall();
3081 tstate->frame = f->f_back;
Guido van Rossumac7be682001-01-17 15:42:30 +00003082
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003083 return retval;
Guido van Rossum374a9221991-04-04 10:40:29 +00003084}
3085
Benjamin Petersonb204a422011-06-05 22:04:07 -05003086static void
Benjamin Petersone109c702011-06-24 09:37:26 -05003087format_missing(const char *kind, PyCodeObject *co, PyObject *names)
3088{
3089 int err;
3090 Py_ssize_t len = PyList_GET_SIZE(names);
3091 PyObject *name_str, *comma, *tail, *tmp;
3092
3093 assert(PyList_CheckExact(names));
3094 assert(len >= 1);
3095 /* Deal with the joys of natural language. */
3096 switch (len) {
3097 case 1:
3098 name_str = PyList_GET_ITEM(names, 0);
3099 Py_INCREF(name_str);
3100 break;
3101 case 2:
3102 name_str = PyUnicode_FromFormat("%U and %U",
3103 PyList_GET_ITEM(names, len - 2),
3104 PyList_GET_ITEM(names, len - 1));
3105 break;
3106 default:
3107 tail = PyUnicode_FromFormat(", %U, and %U",
3108 PyList_GET_ITEM(names, len - 2),
3109 PyList_GET_ITEM(names, len - 1));
3110 /* Chop off the last two objects in the list. This shouldn't actually
3111 fail, but we can't be too careful. */
3112 err = PyList_SetSlice(names, len - 2, len, NULL);
3113 if (err == -1) {
3114 Py_DECREF(tail);
3115 return;
3116 }
3117 /* Stitch everything up into a nice comma-separated list. */
3118 comma = PyUnicode_FromString(", ");
3119 if (comma == NULL) {
3120 Py_DECREF(tail);
3121 return;
3122 }
3123 tmp = PyUnicode_Join(comma, names);
3124 Py_DECREF(comma);
3125 if (tmp == NULL) {
3126 Py_DECREF(tail);
3127 return;
3128 }
3129 name_str = PyUnicode_Concat(tmp, tail);
3130 Py_DECREF(tmp);
3131 Py_DECREF(tail);
3132 break;
3133 }
3134 if (name_str == NULL)
3135 return;
3136 PyErr_Format(PyExc_TypeError,
3137 "%U() missing %i required %s argument%s: %U",
3138 co->co_name,
3139 len,
3140 kind,
3141 len == 1 ? "" : "s",
3142 name_str);
3143 Py_DECREF(name_str);
3144}
3145
3146static void
3147missing_arguments(PyCodeObject *co, int missing, int defcount,
3148 PyObject **fastlocals)
3149{
3150 int i, j = 0;
3151 int start, end;
3152 int positional = defcount != -1;
3153 const char *kind = positional ? "positional" : "keyword-only";
3154 PyObject *missing_names;
3155
3156 /* Compute the names of the arguments that are missing. */
3157 missing_names = PyList_New(missing);
3158 if (missing_names == NULL)
3159 return;
3160 if (positional) {
3161 start = 0;
3162 end = co->co_argcount - defcount;
3163 }
3164 else {
3165 start = co->co_argcount;
3166 end = start + co->co_kwonlyargcount;
3167 }
3168 for (i = start; i < end; i++) {
3169 if (GETLOCAL(i) == NULL) {
3170 PyObject *raw = PyTuple_GET_ITEM(co->co_varnames, i);
3171 PyObject *name = PyObject_Repr(raw);
3172 if (name == NULL) {
3173 Py_DECREF(missing_names);
3174 return;
3175 }
3176 PyList_SET_ITEM(missing_names, j++, name);
3177 }
3178 }
3179 assert(j == missing);
3180 format_missing(kind, co, missing_names);
3181 Py_DECREF(missing_names);
3182}
3183
3184static void
3185too_many_positional(PyCodeObject *co, int given, int defcount, PyObject **fastlocals)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003186{
3187 int plural;
3188 int kwonly_given = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003189 int i;
3190 PyObject *sig, *kwonly_sig;
3191
Benjamin Petersone109c702011-06-24 09:37:26 -05003192 assert((co->co_flags & CO_VARARGS) == 0);
3193 /* Count missing keyword-only args. */
Benjamin Petersonb204a422011-06-05 22:04:07 -05003194 for (i = co->co_argcount; i < co->co_argcount + co->co_kwonlyargcount; i++)
Benjamin Petersone109c702011-06-24 09:37:26 -05003195 if (GETLOCAL(i) != NULL)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003196 kwonly_given++;
Benjamin Petersone109c702011-06-24 09:37:26 -05003197 if (defcount) {
3198 int atleast = co->co_argcount - defcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003199 plural = 1;
3200 sig = PyUnicode_FromFormat("from %d to %d", atleast, co->co_argcount);
3201 }
3202 else {
3203 plural = co->co_argcount != 1;
3204 sig = PyUnicode_FromFormat("%d", co->co_argcount);
3205 }
3206 if (sig == NULL)
3207 return;
3208 if (kwonly_given) {
3209 const char *format = " positional argument%s (and %d keyword-only argument%s)";
3210 kwonly_sig = PyUnicode_FromFormat(format, given != 1 ? "s" : "", kwonly_given,
3211 kwonly_given != 1 ? "s" : "");
3212 if (kwonly_sig == NULL) {
3213 Py_DECREF(sig);
3214 return;
3215 }
3216 }
3217 else {
3218 /* This will not fail. */
3219 kwonly_sig = PyUnicode_FromString("");
Benjamin Petersone109c702011-06-24 09:37:26 -05003220 assert(kwonly_sig != NULL);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003221 }
3222 PyErr_Format(PyExc_TypeError,
3223 "%U() takes %U positional argument%s but %d%U %s given",
3224 co->co_name,
3225 sig,
3226 plural ? "s" : "",
3227 given,
3228 kwonly_sig,
3229 given == 1 && !kwonly_given ? "was" : "were");
3230 Py_DECREF(sig);
3231 Py_DECREF(kwonly_sig);
3232}
3233
Guido van Rossumc2e20742006-02-27 22:32:47 +00003234/* This is gonna seem *real weird*, but if you put some other code between
Martin v. Löwis8d97e332004-06-27 15:43:12 +00003235 PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
Guido van Rossumc2e20742006-02-27 22:32:47 +00003236 the test in the if statements in Misc/gdbinit (pystack and pystackv). */
Skip Montanaro786ea6b2004-03-01 15:44:05 +00003237
Tim Peters6d6c1a32001-08-02 04:15:00 +00003238PyObject *
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003239PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003240 PyObject **args, int argcount, PyObject **kws, int kwcount,
3241 PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure)
Tim Peters5ca576e2001-06-18 22:08:13 +00003242{
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003243 PyCodeObject* co = (PyCodeObject*)_co;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003244 register PyFrameObject *f;
3245 register PyObject *retval = NULL;
3246 register PyObject **fastlocals, **freevars;
3247 PyThreadState *tstate = PyThreadState_GET();
3248 PyObject *x, *u;
3249 int total_args = co->co_argcount + co->co_kwonlyargcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003250 int i;
3251 int n = argcount;
3252 PyObject *kwdict = NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00003253
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003254 if (globals == NULL) {
3255 PyErr_SetString(PyExc_SystemError,
3256 "PyEval_EvalCodeEx: NULL globals");
3257 return NULL;
3258 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003259
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003260 assert(tstate != NULL);
3261 assert(globals != NULL);
3262 f = PyFrame_New(tstate, co, globals, locals);
3263 if (f == NULL)
3264 return NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00003265
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003266 fastlocals = f->f_localsplus;
3267 freevars = f->f_localsplus + co->co_nlocals;
Tim Peters5ca576e2001-06-18 22:08:13 +00003268
Benjamin Petersonb204a422011-06-05 22:04:07 -05003269 /* Parse arguments. */
3270 if (co->co_flags & CO_VARKEYWORDS) {
3271 kwdict = PyDict_New();
3272 if (kwdict == NULL)
3273 goto fail;
3274 i = total_args;
3275 if (co->co_flags & CO_VARARGS)
3276 i++;
3277 SETLOCAL(i, kwdict);
3278 }
3279 if (argcount > co->co_argcount)
3280 n = co->co_argcount;
3281 for (i = 0; i < n; i++) {
3282 x = args[i];
3283 Py_INCREF(x);
3284 SETLOCAL(i, x);
3285 }
3286 if (co->co_flags & CO_VARARGS) {
3287 u = PyTuple_New(argcount - n);
3288 if (u == NULL)
3289 goto fail;
3290 SETLOCAL(total_args, u);
3291 for (i = n; i < argcount; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003292 x = args[i];
3293 Py_INCREF(x);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003294 PyTuple_SET_ITEM(u, i-n, x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003295 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003296 }
3297 for (i = 0; i < kwcount; i++) {
3298 PyObject **co_varnames;
3299 PyObject *keyword = kws[2*i];
3300 PyObject *value = kws[2*i + 1];
3301 int j;
3302 if (keyword == NULL || !PyUnicode_Check(keyword)) {
3303 PyErr_Format(PyExc_TypeError,
3304 "%U() keywords must be strings",
3305 co->co_name);
3306 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003307 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003308 /* Speed hack: do raw pointer compares. As names are
3309 normally interned this should almost always hit. */
3310 co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item;
3311 for (j = 0; j < total_args; j++) {
3312 PyObject *nm = co_varnames[j];
3313 if (nm == keyword)
3314 goto kw_found;
3315 }
3316 /* Slow fallback, just in case */
3317 for (j = 0; j < total_args; j++) {
3318 PyObject *nm = co_varnames[j];
3319 int cmp = PyObject_RichCompareBool(
3320 keyword, nm, Py_EQ);
3321 if (cmp > 0)
3322 goto kw_found;
3323 else if (cmp < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003324 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003325 }
3326 if (j >= total_args && kwdict == NULL) {
3327 PyErr_Format(PyExc_TypeError,
3328 "%U() got an unexpected "
3329 "keyword argument '%S'",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003330 co->co_name,
3331 keyword);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003332 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003333 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003334 PyDict_SetItem(kwdict, keyword, value);
3335 continue;
3336 kw_found:
3337 if (GETLOCAL(j) != NULL) {
3338 PyErr_Format(PyExc_TypeError,
3339 "%U() got multiple "
3340 "values for argument '%S'",
3341 co->co_name,
3342 keyword);
3343 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003344 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003345 Py_INCREF(value);
3346 SETLOCAL(j, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003347 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003348 if (argcount > co->co_argcount && !(co->co_flags & CO_VARARGS)) {
Benjamin Petersone109c702011-06-24 09:37:26 -05003349 too_many_positional(co, argcount, defcount, fastlocals);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003350 goto fail;
3351 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003352 if (argcount < co->co_argcount) {
3353 int m = co->co_argcount - defcount;
Benjamin Petersone109c702011-06-24 09:37:26 -05003354 int missing = 0;
3355 for (i = argcount; i < m; i++)
3356 if (GETLOCAL(i) == NULL)
3357 missing++;
3358 if (missing) {
3359 missing_arguments(co, missing, defcount, fastlocals);
3360 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003361 }
3362 if (n > m)
3363 i = n - m;
3364 else
3365 i = 0;
3366 for (; i < defcount; i++) {
3367 if (GETLOCAL(m+i) == NULL) {
3368 PyObject *def = defs[i];
3369 Py_INCREF(def);
3370 SETLOCAL(m+i, def);
3371 }
3372 }
3373 }
3374 if (co->co_kwonlyargcount > 0) {
Benjamin Petersone109c702011-06-24 09:37:26 -05003375 int missing = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003376 for (i = co->co_argcount; i < total_args; i++) {
3377 PyObject *name;
3378 if (GETLOCAL(i) != NULL)
3379 continue;
3380 name = PyTuple_GET_ITEM(co->co_varnames, i);
3381 if (kwdefs != NULL) {
3382 PyObject *def = PyDict_GetItem(kwdefs, name);
3383 if (def) {
3384 Py_INCREF(def);
3385 SETLOCAL(i, def);
3386 continue;
3387 }
3388 }
Benjamin Petersone109c702011-06-24 09:37:26 -05003389 missing++;
3390 }
3391 if (missing) {
3392 missing_arguments(co, missing, -1, fastlocals);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003393 goto fail;
3394 }
3395 }
3396
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003397 /* Allocate and initialize storage for cell vars, and copy free
Benjamin Peterson90037602011-06-25 22:54:45 -05003398 vars into frame. */
3399 for (i = 0; i < PyTuple_GET_SIZE(co->co_cellvars); ++i) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003400 PyObject *c;
Benjamin Peterson90037602011-06-25 22:54:45 -05003401 int arg;
3402 /* Possibly account for the cell variable being an argument. */
3403 if (co->co_cell2arg != NULL &&
3404 (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG)
3405 c = PyCell_New(GETLOCAL(arg));
3406 else
3407 c = PyCell_New(NULL);
3408 if (c == NULL)
3409 goto fail;
3410 SETLOCAL(co->co_nlocals + i, c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003411 }
Benjamin Peterson90037602011-06-25 22:54:45 -05003412 for (i = 0; i < PyTuple_GET_SIZE(co->co_freevars); ++i) {
3413 PyObject *o = PyTuple_GET_ITEM(closure, i);
3414 Py_INCREF(o);
3415 freevars[PyTuple_GET_SIZE(co->co_cellvars) + i] = o;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003416 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003417
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003418 if (co->co_flags & CO_GENERATOR) {
3419 /* Don't need to keep the reference to f_back, it will be set
3420 * when the generator is resumed. */
3421 Py_XDECREF(f->f_back);
3422 f->f_back = NULL;
Neil Schemenauer2b13ce82001-06-21 02:41:10 +00003423
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003424 PCALL(PCALL_GENERATOR);
Jeremy Hylton985eba52003-02-05 23:13:00 +00003425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003426 /* Create a new generator that owns the ready to run frame
3427 * and return that as the value. */
3428 return PyGen_New(f);
3429 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003430
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003431 retval = PyEval_EvalFrameEx(f,0);
Tim Peters5ca576e2001-06-18 22:08:13 +00003432
Thomas Woutersce272b62007-09-19 21:19:28 +00003433fail: /* Jump here from prelude on failure */
Tim Peters5ca576e2001-06-18 22:08:13 +00003434
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003435 /* decref'ing the frame can cause __del__ methods to get invoked,
3436 which can call back into Python. While we're done with the
3437 current Python frame (f), the associated C stack is still in use,
3438 so recursion_depth must be boosted for the duration.
3439 */
3440 assert(tstate != NULL);
3441 ++tstate->recursion_depth;
3442 Py_DECREF(f);
3443 --tstate->recursion_depth;
3444 return retval;
Tim Peters5ca576e2001-06-18 22:08:13 +00003445}
3446
3447
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003448static PyObject *
Benjamin Petersonce798522012-01-22 11:24:29 -05003449special_lookup(PyObject *o, _Py_Identifier *id)
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003450{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003451 PyObject *res;
Benjamin Petersonce798522012-01-22 11:24:29 -05003452 res = _PyObject_LookupSpecial(o, id);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003453 if (res == NULL && !PyErr_Occurred()) {
Benjamin Petersonce798522012-01-22 11:24:29 -05003454 PyErr_SetObject(PyExc_AttributeError, id->object);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003455 return NULL;
3456 }
3457 return res;
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003458}
3459
3460
Benjamin Peterson87880242011-07-03 16:48:31 -05003461/* These 3 functions deal with the exception state of generators. */
3462
3463static void
3464save_exc_state(PyThreadState *tstate, PyFrameObject *f)
3465{
3466 PyObject *type, *value, *traceback;
3467 Py_XINCREF(tstate->exc_type);
3468 Py_XINCREF(tstate->exc_value);
3469 Py_XINCREF(tstate->exc_traceback);
3470 type = f->f_exc_type;
3471 value = f->f_exc_value;
3472 traceback = f->f_exc_traceback;
3473 f->f_exc_type = tstate->exc_type;
3474 f->f_exc_value = tstate->exc_value;
3475 f->f_exc_traceback = tstate->exc_traceback;
3476 Py_XDECREF(type);
3477 Py_XDECREF(value);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02003478 Py_XDECREF(traceback);
Benjamin Peterson87880242011-07-03 16:48:31 -05003479}
3480
3481static void
3482swap_exc_state(PyThreadState *tstate, PyFrameObject *f)
3483{
3484 PyObject *tmp;
3485 tmp = tstate->exc_type;
3486 tstate->exc_type = f->f_exc_type;
3487 f->f_exc_type = tmp;
3488 tmp = tstate->exc_value;
3489 tstate->exc_value = f->f_exc_value;
3490 f->f_exc_value = tmp;
3491 tmp = tstate->exc_traceback;
3492 tstate->exc_traceback = f->f_exc_traceback;
3493 f->f_exc_traceback = tmp;
3494}
3495
3496static void
3497restore_and_clear_exc_state(PyThreadState *tstate, PyFrameObject *f)
3498{
3499 PyObject *type, *value, *tb;
3500 type = tstate->exc_type;
3501 value = tstate->exc_value;
3502 tb = tstate->exc_traceback;
3503 tstate->exc_type = f->f_exc_type;
3504 tstate->exc_value = f->f_exc_value;
3505 tstate->exc_traceback = f->f_exc_traceback;
3506 f->f_exc_type = NULL;
3507 f->f_exc_value = NULL;
3508 f->f_exc_traceback = NULL;
3509 Py_XDECREF(type);
3510 Py_XDECREF(value);
3511 Py_XDECREF(tb);
3512}
3513
3514
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003515/* Logic for the raise statement (too complicated for inlining).
3516 This *consumes* a reference count to each of its arguments. */
Raymond Hettinger7c958652004-04-06 10:11:10 +00003517static enum why_code
Collin Winter828f04a2007-08-31 00:04:24 +00003518do_raise(PyObject *exc, PyObject *cause)
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003519{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003520 PyObject *type = NULL, *value = NULL;
Collin Winter828f04a2007-08-31 00:04:24 +00003521
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003522 if (exc == NULL) {
3523 /* Reraise */
3524 PyThreadState *tstate = PyThreadState_GET();
3525 PyObject *tb;
3526 type = tstate->exc_type;
3527 value = tstate->exc_value;
3528 tb = tstate->exc_traceback;
3529 if (type == Py_None) {
3530 PyErr_SetString(PyExc_RuntimeError,
3531 "No active exception to reraise");
3532 return WHY_EXCEPTION;
3533 }
3534 Py_XINCREF(type);
3535 Py_XINCREF(value);
3536 Py_XINCREF(tb);
3537 PyErr_Restore(type, value, tb);
3538 return WHY_RERAISE;
3539 }
Guido van Rossumac7be682001-01-17 15:42:30 +00003540
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003541 /* We support the following forms of raise:
3542 raise
Collin Winter828f04a2007-08-31 00:04:24 +00003543 raise <instance>
3544 raise <type> */
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003545
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003546 if (PyExceptionClass_Check(exc)) {
3547 type = exc;
3548 value = PyObject_CallObject(exc, NULL);
3549 if (value == NULL)
3550 goto raise_error;
Benjamin Peterson5afa03a2011-07-15 14:09:26 -05003551 if (!PyExceptionInstance_Check(value)) {
3552 PyErr_Format(PyExc_TypeError,
3553 "calling %R should have returned an instance of "
3554 "BaseException, not %R",
3555 type, Py_TYPE(value));
3556 goto raise_error;
3557 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003558 }
3559 else if (PyExceptionInstance_Check(exc)) {
3560 value = exc;
3561 type = PyExceptionInstance_Class(exc);
3562 Py_INCREF(type);
3563 }
3564 else {
3565 /* Not something you can raise. You get an exception
3566 anyway, just not what you specified :-) */
3567 Py_DECREF(exc);
3568 PyErr_SetString(PyExc_TypeError,
3569 "exceptions must derive from BaseException");
3570 goto raise_error;
3571 }
Collin Winter828f04a2007-08-31 00:04:24 +00003572
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003573 if (cause) {
3574 PyObject *fixed_cause;
3575 if (PyExceptionClass_Check(cause)) {
3576 fixed_cause = PyObject_CallObject(cause, NULL);
3577 if (fixed_cause == NULL)
3578 goto raise_error;
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003579 Py_DECREF(cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003580 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003581 else if (PyExceptionInstance_Check(cause)) {
3582 fixed_cause = cause;
3583 }
3584 else if (cause == Py_None) {
3585 Py_DECREF(cause);
3586 fixed_cause = NULL;
3587 }
3588 else {
3589 PyErr_SetString(PyExc_TypeError,
3590 "exception causes must derive from "
3591 "BaseException");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003592 goto raise_error;
3593 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003594 PyException_SetCause(value, fixed_cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003595 }
Collin Winter828f04a2007-08-31 00:04:24 +00003596
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003597 PyErr_SetObject(type, value);
3598 /* PyErr_SetObject incref's its arguments */
3599 Py_XDECREF(value);
3600 Py_XDECREF(type);
3601 return WHY_EXCEPTION;
Collin Winter828f04a2007-08-31 00:04:24 +00003602
3603raise_error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003604 Py_XDECREF(value);
3605 Py_XDECREF(type);
3606 Py_XDECREF(cause);
3607 return WHY_EXCEPTION;
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003608}
3609
Tim Petersd6d010b2001-06-21 02:49:55 +00003610/* Iterate v argcnt times and store the results on the stack (via decreasing
Guido van Rossum0368b722007-05-11 16:50:42 +00003611 sp). Return 1 for success, 0 if error.
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00003612
Guido van Rossum0368b722007-05-11 16:50:42 +00003613 If argcntafter == -1, do a simple unpack. If it is >= 0, do an unpack
3614 with a variable target.
3615*/
Tim Petersd6d010b2001-06-21 02:49:55 +00003616
Barry Warsawe42b18f1997-08-25 22:13:04 +00003617static int
Guido van Rossum0368b722007-05-11 16:50:42 +00003618unpack_iterable(PyObject *v, int argcnt, int argcntafter, PyObject **sp)
Barry Warsawe42b18f1997-08-25 22:13:04 +00003619{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003620 int i = 0, j = 0;
3621 Py_ssize_t ll = 0;
3622 PyObject *it; /* iter(v) */
3623 PyObject *w;
3624 PyObject *l = NULL; /* variable list */
Guido van Rossumac7be682001-01-17 15:42:30 +00003625
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003626 assert(v != NULL);
Tim Petersd6d010b2001-06-21 02:49:55 +00003627
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003628 it = PyObject_GetIter(v);
3629 if (it == NULL)
3630 goto Error;
Tim Petersd6d010b2001-06-21 02:49:55 +00003631
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003632 for (; i < argcnt; i++) {
3633 w = PyIter_Next(it);
3634 if (w == NULL) {
3635 /* Iterator done, via error or exhaustion. */
3636 if (!PyErr_Occurred()) {
3637 PyErr_Format(PyExc_ValueError,
3638 "need more than %d value%s to unpack",
3639 i, i == 1 ? "" : "s");
3640 }
3641 goto Error;
3642 }
3643 *--sp = w;
3644 }
Tim Petersd6d010b2001-06-21 02:49:55 +00003645
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003646 if (argcntafter == -1) {
3647 /* We better have exhausted the iterator now. */
3648 w = PyIter_Next(it);
3649 if (w == NULL) {
3650 if (PyErr_Occurred())
3651 goto Error;
3652 Py_DECREF(it);
3653 return 1;
3654 }
3655 Py_DECREF(w);
Georg Brandl0310a832010-07-10 10:32:36 +00003656 PyErr_Format(PyExc_ValueError, "too many values to unpack "
3657 "(expected %d)", argcnt);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003658 goto Error;
3659 }
Guido van Rossum0368b722007-05-11 16:50:42 +00003660
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003661 l = PySequence_List(it);
3662 if (l == NULL)
3663 goto Error;
3664 *--sp = l;
3665 i++;
Guido van Rossum0368b722007-05-11 16:50:42 +00003666
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003667 ll = PyList_GET_SIZE(l);
3668 if (ll < argcntafter) {
3669 PyErr_Format(PyExc_ValueError, "need more than %zd values to unpack",
3670 argcnt + ll);
3671 goto Error;
3672 }
Guido van Rossum0368b722007-05-11 16:50:42 +00003673
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003674 /* Pop the "after-variable" args off the list. */
3675 for (j = argcntafter; j > 0; j--, i++) {
3676 *--sp = PyList_GET_ITEM(l, ll - j);
3677 }
3678 /* Resize the list. */
3679 Py_SIZE(l) = ll - argcntafter;
3680 Py_DECREF(it);
3681 return 1;
Guido van Rossum0368b722007-05-11 16:50:42 +00003682
Tim Petersd6d010b2001-06-21 02:49:55 +00003683Error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003684 for (; i > 0; i--, sp++)
3685 Py_DECREF(*sp);
3686 Py_XDECREF(it);
3687 return 0;
Barry Warsawe42b18f1997-08-25 22:13:04 +00003688}
3689
3690
Guido van Rossum96a42c81992-01-12 02:29:51 +00003691#ifdef LLTRACE
Guido van Rossum3f5da241990-12-20 15:06:42 +00003692static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003693prtrace(PyObject *v, char *str)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003694{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003695 printf("%s ", str);
3696 if (PyObject_Print(v, stdout, 0) != 0)
3697 PyErr_Clear(); /* Don't know what else to do */
3698 printf("\n");
3699 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003700}
Guido van Rossum3f5da241990-12-20 15:06:42 +00003701#endif
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003702
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003703static void
Fred Drake5755ce62001-06-27 19:19:46 +00003704call_exc_trace(Py_tracefunc func, PyObject *self, PyFrameObject *f)
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003705{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003706 PyObject *type, *value, *traceback, *arg;
3707 int err;
3708 PyErr_Fetch(&type, &value, &traceback);
3709 if (value == NULL) {
3710 value = Py_None;
3711 Py_INCREF(value);
3712 }
3713 arg = PyTuple_Pack(3, type, value, traceback);
3714 if (arg == NULL) {
3715 PyErr_Restore(type, value, traceback);
3716 return;
3717 }
3718 err = call_trace(func, self, f, PyTrace_EXCEPTION, arg);
3719 Py_DECREF(arg);
3720 if (err == 0)
3721 PyErr_Restore(type, value, traceback);
3722 else {
3723 Py_XDECREF(type);
3724 Py_XDECREF(value);
3725 Py_XDECREF(traceback);
3726 }
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003727}
3728
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +00003729static int
Fred Drake4ec5d562001-10-04 19:26:43 +00003730call_trace_protected(Py_tracefunc func, PyObject *obj, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003731 int what, PyObject *arg)
Fred Drake4ec5d562001-10-04 19:26:43 +00003732{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003733 PyObject *type, *value, *traceback;
3734 int err;
3735 PyErr_Fetch(&type, &value, &traceback);
3736 err = call_trace(func, obj, frame, what, arg);
3737 if (err == 0)
3738 {
3739 PyErr_Restore(type, value, traceback);
3740 return 0;
3741 }
3742 else {
3743 Py_XDECREF(type);
3744 Py_XDECREF(value);
3745 Py_XDECREF(traceback);
3746 return -1;
3747 }
Fred Drake4ec5d562001-10-04 19:26:43 +00003748}
3749
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003750static int
Fred Drake5755ce62001-06-27 19:19:46 +00003751call_trace(Py_tracefunc func, PyObject *obj, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003752 int what, PyObject *arg)
Guido van Rossum96a42c81992-01-12 02:29:51 +00003753{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003754 register PyThreadState *tstate = frame->f_tstate;
3755 int result;
3756 if (tstate->tracing)
3757 return 0;
3758 tstate->tracing++;
3759 tstate->use_tracing = 0;
3760 result = func(obj, frame, what, arg);
3761 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
3762 || (tstate->c_profilefunc != NULL));
3763 tstate->tracing--;
3764 return result;
Guido van Rossum96a42c81992-01-12 02:29:51 +00003765}
3766
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003767PyObject *
3768_PyEval_CallTracing(PyObject *func, PyObject *args)
3769{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003770 PyFrameObject *frame = PyEval_GetFrame();
3771 PyThreadState *tstate = frame->f_tstate;
3772 int save_tracing = tstate->tracing;
3773 int save_use_tracing = tstate->use_tracing;
3774 PyObject *result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003775
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003776 tstate->tracing = 0;
3777 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
3778 || (tstate->c_profilefunc != NULL));
3779 result = PyObject_Call(func, args, NULL);
3780 tstate->tracing = save_tracing;
3781 tstate->use_tracing = save_use_tracing;
3782 return result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003783}
3784
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +00003785/* See Objects/lnotab_notes.txt for a description of how tracing works. */
Michael W. Hudson006c7522002-11-08 13:08:46 +00003786static int
Tim Peters8a5c3c72004-04-05 19:36:21 +00003787maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003788 PyFrameObject *frame, int *instr_lb, int *instr_ub,
3789 int *instr_prev)
Michael W. Hudsondd32a912002-08-15 14:59:02 +00003790{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003791 int result = 0;
3792 int line = frame->f_lineno;
Michael W. Hudson006c7522002-11-08 13:08:46 +00003793
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003794 /* If the last instruction executed isn't in the current
3795 instruction window, reset the window.
3796 */
3797 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) {
3798 PyAddrPair bounds;
3799 line = _PyCode_CheckLineNumber(frame->f_code, frame->f_lasti,
3800 &bounds);
3801 *instr_lb = bounds.ap_lower;
3802 *instr_ub = bounds.ap_upper;
3803 }
3804 /* If the last instruction falls at the start of a line or if
3805 it represents a jump backwards, update the frame's line
3806 number and call the trace function. */
3807 if (frame->f_lasti == *instr_lb || frame->f_lasti < *instr_prev) {
3808 frame->f_lineno = line;
3809 result = call_trace(func, obj, frame, PyTrace_LINE, Py_None);
3810 }
3811 *instr_prev = frame->f_lasti;
3812 return result;
Michael W. Hudsondd32a912002-08-15 14:59:02 +00003813}
3814
Fred Drake5755ce62001-06-27 19:19:46 +00003815void
3816PyEval_SetProfile(Py_tracefunc func, PyObject *arg)
Fred Draked0838392001-06-16 21:02:31 +00003817{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003818 PyThreadState *tstate = PyThreadState_GET();
3819 PyObject *temp = tstate->c_profileobj;
3820 Py_XINCREF(arg);
3821 tstate->c_profilefunc = NULL;
3822 tstate->c_profileobj = NULL;
3823 /* Must make sure that tracing is not ignored if 'temp' is freed */
3824 tstate->use_tracing = tstate->c_tracefunc != NULL;
3825 Py_XDECREF(temp);
3826 tstate->c_profilefunc = func;
3827 tstate->c_profileobj = arg;
3828 /* Flag that tracing or profiling is turned on */
3829 tstate->use_tracing = (func != NULL) || (tstate->c_tracefunc != NULL);
Fred Drake5755ce62001-06-27 19:19:46 +00003830}
3831
3832void
3833PyEval_SetTrace(Py_tracefunc func, PyObject *arg)
3834{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003835 PyThreadState *tstate = PyThreadState_GET();
3836 PyObject *temp = tstate->c_traceobj;
3837 _Py_TracingPossible += (func != NULL) - (tstate->c_tracefunc != NULL);
3838 Py_XINCREF(arg);
3839 tstate->c_tracefunc = NULL;
3840 tstate->c_traceobj = NULL;
3841 /* Must make sure that profiling is not ignored if 'temp' is freed */
3842 tstate->use_tracing = tstate->c_profilefunc != NULL;
3843 Py_XDECREF(temp);
3844 tstate->c_tracefunc = func;
3845 tstate->c_traceobj = arg;
3846 /* Flag that tracing or profiling is turned on */
3847 tstate->use_tracing = ((func != NULL)
3848 || (tstate->c_profilefunc != NULL));
Fred Draked0838392001-06-16 21:02:31 +00003849}
3850
Guido van Rossumb209a111997-04-29 18:18:01 +00003851PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003852PyEval_GetBuiltins(void)
Guido van Rossum6135a871995-01-09 17:53:26 +00003853{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003854 PyFrameObject *current_frame = PyEval_GetFrame();
3855 if (current_frame == NULL)
3856 return PyThreadState_GET()->interp->builtins;
3857 else
3858 return current_frame->f_builtins;
Guido van Rossum6135a871995-01-09 17:53:26 +00003859}
3860
Guido van Rossumb209a111997-04-29 18:18:01 +00003861PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003862PyEval_GetLocals(void)
Guido van Rossum5b722181993-03-30 17:46:03 +00003863{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003864 PyFrameObject *current_frame = PyEval_GetFrame();
3865 if (current_frame == NULL)
3866 return NULL;
3867 PyFrame_FastToLocals(current_frame);
3868 return current_frame->f_locals;
Guido van Rossum5b722181993-03-30 17:46:03 +00003869}
3870
Guido van Rossumb209a111997-04-29 18:18:01 +00003871PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003872PyEval_GetGlobals(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +00003873{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003874 PyFrameObject *current_frame = PyEval_GetFrame();
3875 if (current_frame == NULL)
3876 return NULL;
3877 else
3878 return current_frame->f_globals;
Guido van Rossum3f5da241990-12-20 15:06:42 +00003879}
3880
Guido van Rossum6297a7a2003-02-19 15:53:17 +00003881PyFrameObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003882PyEval_GetFrame(void)
Guido van Rossume59214e1994-08-30 08:01:59 +00003883{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003884 PyThreadState *tstate = PyThreadState_GET();
3885 return _PyThreadState_GetFrame(tstate);
Guido van Rossume59214e1994-08-30 08:01:59 +00003886}
3887
Guido van Rossum6135a871995-01-09 17:53:26 +00003888int
Tim Peters5ba58662001-07-16 02:29:45 +00003889PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
Jeremy Hylton061d1062001-03-22 02:32:48 +00003890{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003891 PyFrameObject *current_frame = PyEval_GetFrame();
3892 int result = cf->cf_flags != 0;
Tim Peters5ba58662001-07-16 02:29:45 +00003893
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003894 if (current_frame != NULL) {
3895 const int codeflags = current_frame->f_code->co_flags;
3896 const int compilerflags = codeflags & PyCF_MASK;
3897 if (compilerflags) {
3898 result = 1;
3899 cf->cf_flags |= compilerflags;
3900 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00003901#if 0 /* future keyword */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003902 if (codeflags & CO_GENERATOR_ALLOWED) {
3903 result = 1;
3904 cf->cf_flags |= CO_GENERATOR_ALLOWED;
3905 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00003906#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003907 }
3908 return result;
Jeremy Hylton061d1062001-03-22 02:32:48 +00003909}
3910
Guido van Rossum3f5da241990-12-20 15:06:42 +00003911
Guido van Rossum681d79a1995-07-18 14:51:37 +00003912/* External interface to call any callable object.
Antoine Pitrou8689a102010-04-01 16:53:15 +00003913 The arg must be a tuple or NULL. The kw must be a dict or NULL. */
Guido van Rossume59214e1994-08-30 08:01:59 +00003914
Guido van Rossumb209a111997-04-29 18:18:01 +00003915PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003916PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw)
Guido van Rossum681d79a1995-07-18 14:51:37 +00003917{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003918 PyObject *result;
Guido van Rossum681d79a1995-07-18 14:51:37 +00003919
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003920 if (arg == NULL) {
3921 arg = PyTuple_New(0);
3922 if (arg == NULL)
3923 return NULL;
3924 }
3925 else if (!PyTuple_Check(arg)) {
3926 PyErr_SetString(PyExc_TypeError,
3927 "argument list must be a tuple");
3928 return NULL;
3929 }
3930 else
3931 Py_INCREF(arg);
Guido van Rossum681d79a1995-07-18 14:51:37 +00003932
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003933 if (kw != NULL && !PyDict_Check(kw)) {
3934 PyErr_SetString(PyExc_TypeError,
3935 "keyword list must be a dictionary");
3936 Py_DECREF(arg);
3937 return NULL;
3938 }
Guido van Rossume3e61c11995-08-04 04:14:47 +00003939
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003940 result = PyObject_Call(func, arg, kw);
3941 Py_DECREF(arg);
3942 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00003943}
3944
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00003945const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003946PyEval_GetFuncName(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00003947{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003948 if (PyMethod_Check(func))
3949 return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func));
3950 else if (PyFunction_Check(func))
3951 return _PyUnicode_AsString(((PyFunctionObject*)func)->func_name);
3952 else if (PyCFunction_Check(func))
3953 return ((PyCFunctionObject*)func)->m_ml->ml_name;
3954 else
3955 return func->ob_type->tp_name;
Jeremy Hylton512a2372001-04-11 13:52:29 +00003956}
3957
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00003958const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003959PyEval_GetFuncDesc(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00003960{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003961 if (PyMethod_Check(func))
3962 return "()";
3963 else if (PyFunction_Check(func))
3964 return "()";
3965 else if (PyCFunction_Check(func))
3966 return "()";
3967 else
3968 return " object";
Jeremy Hylton512a2372001-04-11 13:52:29 +00003969}
3970
Neal Norwitzaddfe0c2002-11-10 14:33:26 +00003971static void
Jeremy Hylton192690e2002-08-16 18:36:11 +00003972err_args(PyObject *func, int flags, int nargs)
3973{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003974 if (flags & METH_NOARGS)
3975 PyErr_Format(PyExc_TypeError,
3976 "%.200s() takes no arguments (%d given)",
3977 ((PyCFunctionObject *)func)->m_ml->ml_name,
3978 nargs);
3979 else
3980 PyErr_Format(PyExc_TypeError,
3981 "%.200s() takes exactly one argument (%d given)",
3982 ((PyCFunctionObject *)func)->m_ml->ml_name,
3983 nargs);
Jeremy Hylton192690e2002-08-16 18:36:11 +00003984}
3985
Armin Rigo1c2d7e52005-09-20 18:34:01 +00003986#define C_TRACE(x, call) \
Nicholas Bastind858a772004-06-25 23:31:06 +00003987if (tstate->use_tracing && tstate->c_profilefunc) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003988 if (call_trace(tstate->c_profilefunc, \
3989 tstate->c_profileobj, \
3990 tstate->frame, PyTrace_C_CALL, \
3991 func)) { \
3992 x = NULL; \
3993 } \
3994 else { \
3995 x = call; \
3996 if (tstate->c_profilefunc != NULL) { \
3997 if (x == NULL) { \
3998 call_trace_protected(tstate->c_profilefunc, \
3999 tstate->c_profileobj, \
4000 tstate->frame, PyTrace_C_EXCEPTION, \
4001 func); \
4002 /* XXX should pass (type, value, tb) */ \
4003 } else { \
4004 if (call_trace(tstate->c_profilefunc, \
4005 tstate->c_profileobj, \
4006 tstate->frame, PyTrace_C_RETURN, \
4007 func)) { \
4008 Py_DECREF(x); \
4009 x = NULL; \
4010 } \
4011 } \
4012 } \
4013 } \
Nicholas Bastind858a772004-06-25 23:31:06 +00004014} else { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004015 x = call; \
4016 }
Nicholas Bastinc69ebe82004-03-24 21:57:10 +00004017
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004018static PyObject *
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00004019call_function(PyObject ***pp_stack, int oparg
4020#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004021 , uint64* pintr0, uint64* pintr1
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00004022#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004023 )
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004024{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004025 int na = oparg & 0xff;
4026 int nk = (oparg>>8) & 0xff;
4027 int n = na + 2 * nk;
4028 PyObject **pfunc = (*pp_stack) - n - 1;
4029 PyObject *func = *pfunc;
4030 PyObject *x, *w;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004031
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004032 /* Always dispatch PyCFunction first, because these are
4033 presumed to be the most frequent callable object.
4034 */
4035 if (PyCFunction_Check(func) && nk == 0) {
4036 int flags = PyCFunction_GET_FLAGS(func);
4037 PyThreadState *tstate = PyThreadState_GET();
Raymond Hettingera7f56bc2004-06-26 04:34:33 +00004038
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004039 PCALL(PCALL_CFUNCTION);
4040 if (flags & (METH_NOARGS | METH_O)) {
4041 PyCFunction meth = PyCFunction_GET_FUNCTION(func);
4042 PyObject *self = PyCFunction_GET_SELF(func);
4043 if (flags & METH_NOARGS && na == 0) {
4044 C_TRACE(x, (*meth)(self,NULL));
4045 }
4046 else if (flags & METH_O && na == 1) {
4047 PyObject *arg = EXT_POP(*pp_stack);
4048 C_TRACE(x, (*meth)(self,arg));
4049 Py_DECREF(arg);
4050 }
4051 else {
4052 err_args(func, flags, na);
4053 x = NULL;
4054 }
4055 }
4056 else {
4057 PyObject *callargs;
4058 callargs = load_args(pp_stack, na);
4059 READ_TIMESTAMP(*pintr0);
4060 C_TRACE(x, PyCFunction_Call(func,callargs,NULL));
4061 READ_TIMESTAMP(*pintr1);
4062 Py_XDECREF(callargs);
4063 }
4064 } else {
4065 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) {
4066 /* optimize access to bound methods */
4067 PyObject *self = PyMethod_GET_SELF(func);
4068 PCALL(PCALL_METHOD);
4069 PCALL(PCALL_BOUND_METHOD);
4070 Py_INCREF(self);
4071 func = PyMethod_GET_FUNCTION(func);
4072 Py_INCREF(func);
4073 Py_DECREF(*pfunc);
4074 *pfunc = self;
4075 na++;
4076 n++;
4077 } else
4078 Py_INCREF(func);
4079 READ_TIMESTAMP(*pintr0);
4080 if (PyFunction_Check(func))
4081 x = fast_function(func, pp_stack, n, na, nk);
4082 else
4083 x = do_call(func, pp_stack, na, nk);
4084 READ_TIMESTAMP(*pintr1);
4085 Py_DECREF(func);
4086 }
Tim Peters8a5c3c72004-04-05 19:36:21 +00004087
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004088 /* Clear the stack of the function object. Also removes
4089 the arguments in case they weren't consumed already
4090 (fast_function() and err_args() leave them on the stack).
4091 */
4092 while ((*pp_stack) > pfunc) {
4093 w = EXT_POP(*pp_stack);
4094 Py_DECREF(w);
4095 PCALL(PCALL_POP);
4096 }
4097 return x;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004098}
4099
Jeremy Hylton192690e2002-08-16 18:36:11 +00004100/* The fast_function() function optimize calls for which no argument
Jeremy Hylton52820442001-01-03 23:52:36 +00004101 tuple is necessary; the objects are passed directly from the stack.
Jeremy Hylton985eba52003-02-05 23:13:00 +00004102 For the simplest case -- a function that takes only positional
4103 arguments and is called with only positional arguments -- it
4104 inlines the most primitive frame setup code from
4105 PyEval_EvalCodeEx(), which vastly reduces the checks that must be
4106 done before evaluating the frame.
Jeremy Hylton52820442001-01-03 23:52:36 +00004107*/
4108
4109static PyObject *
Guido van Rossumac7be682001-01-17 15:42:30 +00004110fast_function(PyObject *func, PyObject ***pp_stack, int n, int na, int nk)
Jeremy Hylton52820442001-01-03 23:52:36 +00004111{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004112 PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func);
4113 PyObject *globals = PyFunction_GET_GLOBALS(func);
4114 PyObject *argdefs = PyFunction_GET_DEFAULTS(func);
4115 PyObject *kwdefs = PyFunction_GET_KW_DEFAULTS(func);
4116 PyObject **d = NULL;
4117 int nd = 0;
Jeremy Hylton52820442001-01-03 23:52:36 +00004118
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004119 PCALL(PCALL_FUNCTION);
4120 PCALL(PCALL_FAST_FUNCTION);
4121 if (argdefs == NULL && co->co_argcount == n &&
4122 co->co_kwonlyargcount == 0 && nk==0 &&
4123 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) {
4124 PyFrameObject *f;
4125 PyObject *retval = NULL;
4126 PyThreadState *tstate = PyThreadState_GET();
4127 PyObject **fastlocals, **stack;
4128 int i;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004129
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004130 PCALL(PCALL_FASTER_FUNCTION);
4131 assert(globals != NULL);
4132 /* XXX Perhaps we should create a specialized
4133 PyFrame_New() that doesn't take locals, but does
4134 take builtins without sanity checking them.
4135 */
4136 assert(tstate != NULL);
4137 f = PyFrame_New(tstate, co, globals, NULL);
4138 if (f == NULL)
4139 return NULL;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004140
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004141 fastlocals = f->f_localsplus;
4142 stack = (*pp_stack) - n;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004143
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004144 for (i = 0; i < n; i++) {
4145 Py_INCREF(*stack);
4146 fastlocals[i] = *stack++;
4147 }
4148 retval = PyEval_EvalFrameEx(f,0);
4149 ++tstate->recursion_depth;
4150 Py_DECREF(f);
4151 --tstate->recursion_depth;
4152 return retval;
4153 }
4154 if (argdefs != NULL) {
4155 d = &PyTuple_GET_ITEM(argdefs, 0);
4156 nd = Py_SIZE(argdefs);
4157 }
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00004158 return PyEval_EvalCodeEx((PyObject*)co, globals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004159 (PyObject *)NULL, (*pp_stack)-n, na,
4160 (*pp_stack)-2*nk, nk, d, nd, kwdefs,
4161 PyFunction_GET_CLOSURE(func));
Jeremy Hylton52820442001-01-03 23:52:36 +00004162}
4163
4164static PyObject *
Ka-Ping Yee20579702001-01-15 22:14:16 +00004165update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack,
4166 PyObject *func)
Jeremy Hylton52820442001-01-03 23:52:36 +00004167{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004168 PyObject *kwdict = NULL;
4169 if (orig_kwdict == NULL)
4170 kwdict = PyDict_New();
4171 else {
4172 kwdict = PyDict_Copy(orig_kwdict);
4173 Py_DECREF(orig_kwdict);
4174 }
4175 if (kwdict == NULL)
4176 return NULL;
4177 while (--nk >= 0) {
4178 int err;
4179 PyObject *value = EXT_POP(*pp_stack);
4180 PyObject *key = EXT_POP(*pp_stack);
4181 if (PyDict_GetItem(kwdict, key) != NULL) {
4182 PyErr_Format(PyExc_TypeError,
4183 "%.200s%s got multiple values "
4184 "for keyword argument '%U'",
4185 PyEval_GetFuncName(func),
4186 PyEval_GetFuncDesc(func),
4187 key);
4188 Py_DECREF(key);
4189 Py_DECREF(value);
4190 Py_DECREF(kwdict);
4191 return NULL;
4192 }
4193 err = PyDict_SetItem(kwdict, key, value);
4194 Py_DECREF(key);
4195 Py_DECREF(value);
4196 if (err) {
4197 Py_DECREF(kwdict);
4198 return NULL;
4199 }
4200 }
4201 return kwdict;
Jeremy Hylton52820442001-01-03 23:52:36 +00004202}
4203
4204static PyObject *
4205update_star_args(int nstack, int nstar, PyObject *stararg,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004206 PyObject ***pp_stack)
Jeremy Hylton52820442001-01-03 23:52:36 +00004207{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004208 PyObject *callargs, *w;
Jeremy Hylton52820442001-01-03 23:52:36 +00004209
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004210 callargs = PyTuple_New(nstack + nstar);
4211 if (callargs == NULL) {
4212 return NULL;
4213 }
4214 if (nstar) {
4215 int i;
4216 for (i = 0; i < nstar; i++) {
4217 PyObject *a = PyTuple_GET_ITEM(stararg, i);
4218 Py_INCREF(a);
4219 PyTuple_SET_ITEM(callargs, nstack + i, a);
4220 }
4221 }
4222 while (--nstack >= 0) {
4223 w = EXT_POP(*pp_stack);
4224 PyTuple_SET_ITEM(callargs, nstack, w);
4225 }
4226 return callargs;
Jeremy Hylton52820442001-01-03 23:52:36 +00004227}
4228
4229static PyObject *
4230load_args(PyObject ***pp_stack, int na)
4231{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004232 PyObject *args = PyTuple_New(na);
4233 PyObject *w;
Jeremy Hylton52820442001-01-03 23:52:36 +00004234
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004235 if (args == NULL)
4236 return NULL;
4237 while (--na >= 0) {
4238 w = EXT_POP(*pp_stack);
4239 PyTuple_SET_ITEM(args, na, w);
4240 }
4241 return args;
Jeremy Hylton52820442001-01-03 23:52:36 +00004242}
4243
4244static PyObject *
4245do_call(PyObject *func, PyObject ***pp_stack, int na, int nk)
4246{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004247 PyObject *callargs = NULL;
4248 PyObject *kwdict = NULL;
4249 PyObject *result = NULL;
Jeremy Hylton52820442001-01-03 23:52:36 +00004250
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004251 if (nk > 0) {
4252 kwdict = update_keyword_args(NULL, nk, pp_stack, func);
4253 if (kwdict == NULL)
4254 goto call_fail;
4255 }
4256 callargs = load_args(pp_stack, na);
4257 if (callargs == NULL)
4258 goto call_fail;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004259#ifdef CALL_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004260 /* At this point, we have to look at the type of func to
4261 update the call stats properly. Do it here so as to avoid
4262 exposing the call stats machinery outside ceval.c
4263 */
4264 if (PyFunction_Check(func))
4265 PCALL(PCALL_FUNCTION);
4266 else if (PyMethod_Check(func))
4267 PCALL(PCALL_METHOD);
4268 else if (PyType_Check(func))
4269 PCALL(PCALL_TYPE);
4270 else if (PyCFunction_Check(func))
4271 PCALL(PCALL_CFUNCTION);
4272 else
4273 PCALL(PCALL_OTHER);
Jeremy Hylton985eba52003-02-05 23:13:00 +00004274#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004275 if (PyCFunction_Check(func)) {
4276 PyThreadState *tstate = PyThreadState_GET();
4277 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
4278 }
4279 else
4280 result = PyObject_Call(func, callargs, kwdict);
Thomas Wouters7ce29ca2007-09-19 21:56:32 +00004281call_fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004282 Py_XDECREF(callargs);
4283 Py_XDECREF(kwdict);
4284 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004285}
4286
4287static PyObject *
4288ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
4289{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004290 int nstar = 0;
4291 PyObject *callargs = NULL;
4292 PyObject *stararg = NULL;
4293 PyObject *kwdict = NULL;
4294 PyObject *result = NULL;
Jeremy Hylton52820442001-01-03 23:52:36 +00004295
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004296 if (flags & CALL_FLAG_KW) {
4297 kwdict = EXT_POP(*pp_stack);
4298 if (!PyDict_Check(kwdict)) {
4299 PyObject *d;
4300 d = PyDict_New();
4301 if (d == NULL)
4302 goto ext_call_fail;
4303 if (PyDict_Update(d, kwdict) != 0) {
4304 Py_DECREF(d);
4305 /* PyDict_Update raises attribute
4306 * error (percolated from an attempt
4307 * to get 'keys' attribute) instead of
4308 * a type error if its second argument
4309 * is not a mapping.
4310 */
4311 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
4312 PyErr_Format(PyExc_TypeError,
4313 "%.200s%.200s argument after ** "
4314 "must be a mapping, not %.200s",
4315 PyEval_GetFuncName(func),
4316 PyEval_GetFuncDesc(func),
4317 kwdict->ob_type->tp_name);
4318 }
4319 goto ext_call_fail;
4320 }
4321 Py_DECREF(kwdict);
4322 kwdict = d;
4323 }
4324 }
4325 if (flags & CALL_FLAG_VAR) {
4326 stararg = EXT_POP(*pp_stack);
4327 if (!PyTuple_Check(stararg)) {
4328 PyObject *t = NULL;
4329 t = PySequence_Tuple(stararg);
4330 if (t == NULL) {
4331 if (PyErr_ExceptionMatches(PyExc_TypeError)) {
4332 PyErr_Format(PyExc_TypeError,
4333 "%.200s%.200s argument after * "
Victor Stinner0a5f65a2011-03-22 01:09:21 +01004334 "must be a sequence, not %.200s",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004335 PyEval_GetFuncName(func),
4336 PyEval_GetFuncDesc(func),
4337 stararg->ob_type->tp_name);
4338 }
4339 goto ext_call_fail;
4340 }
4341 Py_DECREF(stararg);
4342 stararg = t;
4343 }
4344 nstar = PyTuple_GET_SIZE(stararg);
4345 }
4346 if (nk > 0) {
4347 kwdict = update_keyword_args(kwdict, nk, pp_stack, func);
4348 if (kwdict == NULL)
4349 goto ext_call_fail;
4350 }
4351 callargs = update_star_args(na, nstar, stararg, pp_stack);
4352 if (callargs == NULL)
4353 goto ext_call_fail;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004354#ifdef CALL_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004355 /* At this point, we have to look at the type of func to
4356 update the call stats properly. Do it here so as to avoid
4357 exposing the call stats machinery outside ceval.c
4358 */
4359 if (PyFunction_Check(func))
4360 PCALL(PCALL_FUNCTION);
4361 else if (PyMethod_Check(func))
4362 PCALL(PCALL_METHOD);
4363 else if (PyType_Check(func))
4364 PCALL(PCALL_TYPE);
4365 else if (PyCFunction_Check(func))
4366 PCALL(PCALL_CFUNCTION);
4367 else
4368 PCALL(PCALL_OTHER);
Jeremy Hylton985eba52003-02-05 23:13:00 +00004369#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004370 if (PyCFunction_Check(func)) {
4371 PyThreadState *tstate = PyThreadState_GET();
4372 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
4373 }
4374 else
4375 result = PyObject_Call(func, callargs, kwdict);
Thomas Woutersce272b62007-09-19 21:19:28 +00004376ext_call_fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004377 Py_XDECREF(callargs);
4378 Py_XDECREF(kwdict);
4379 Py_XDECREF(stararg);
4380 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004381}
4382
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004383/* Extract a slice index from a PyInt or PyLong or an object with the
4384 nb_index slot defined, and store in *pi.
4385 Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
4386 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 +00004387 Return 0 on error, 1 on success.
Tim Peterscb479e72001-12-16 19:11:44 +00004388*/
Tim Petersb5196382001-12-16 19:44:20 +00004389/* Note: If v is NULL, return success without storing into *pi. This
4390 is because_PyEval_SliceIndex() is called by apply_slice(), which can be
4391 called by the SLICE opcode with v and/or w equal to NULL.
Tim Peterscb479e72001-12-16 19:11:44 +00004392*/
Guido van Rossum20c6add2000-05-08 14:06:50 +00004393int
Martin v. Löwis18e16552006-02-15 17:27:45 +00004394_PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004395{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004396 if (v != NULL) {
4397 Py_ssize_t x;
4398 if (PyIndex_Check(v)) {
4399 x = PyNumber_AsSsize_t(v, NULL);
4400 if (x == -1 && PyErr_Occurred())
4401 return 0;
4402 }
4403 else {
4404 PyErr_SetString(PyExc_TypeError,
4405 "slice indices must be integers or "
4406 "None or have an __index__ method");
4407 return 0;
4408 }
4409 *pi = x;
4410 }
4411 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004412}
4413
Guido van Rossum486364b2007-06-30 05:01:58 +00004414#define CANNOT_CATCH_MSG "catching classes that do not inherit from "\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004415 "BaseException is not allowed"
Brett Cannonf74225d2007-02-26 21:10:16 +00004416
Guido van Rossumb209a111997-04-29 18:18:01 +00004417static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004418cmp_outcome(int op, register PyObject *v, register PyObject *w)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004419{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004420 int res = 0;
4421 switch (op) {
4422 case PyCmp_IS:
4423 res = (v == w);
4424 break;
4425 case PyCmp_IS_NOT:
4426 res = (v != w);
4427 break;
4428 case PyCmp_IN:
4429 res = PySequence_Contains(w, v);
4430 if (res < 0)
4431 return NULL;
4432 break;
4433 case PyCmp_NOT_IN:
4434 res = PySequence_Contains(w, v);
4435 if (res < 0)
4436 return NULL;
4437 res = !res;
4438 break;
4439 case PyCmp_EXC_MATCH:
4440 if (PyTuple_Check(w)) {
4441 Py_ssize_t i, length;
4442 length = PyTuple_Size(w);
4443 for (i = 0; i < length; i += 1) {
4444 PyObject *exc = PyTuple_GET_ITEM(w, i);
4445 if (!PyExceptionClass_Check(exc)) {
4446 PyErr_SetString(PyExc_TypeError,
4447 CANNOT_CATCH_MSG);
4448 return NULL;
4449 }
4450 }
4451 }
4452 else {
4453 if (!PyExceptionClass_Check(w)) {
4454 PyErr_SetString(PyExc_TypeError,
4455 CANNOT_CATCH_MSG);
4456 return NULL;
4457 }
4458 }
4459 res = PyErr_GivenExceptionMatches(v, w);
4460 break;
4461 default:
4462 return PyObject_RichCompare(v, w, op);
4463 }
4464 v = res ? Py_True : Py_False;
4465 Py_INCREF(v);
4466 return v;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004467}
4468
Thomas Wouters52152252000-08-17 22:55:00 +00004469static PyObject *
4470import_from(PyObject *v, PyObject *name)
Guido van Rossume9736fc1990-11-18 17:33:06 +00004471{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004472 PyObject *x;
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00004473
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004474 x = PyObject_GetAttr(v, name);
4475 if (x == NULL && PyErr_ExceptionMatches(PyExc_AttributeError)) {
4476 PyErr_Format(PyExc_ImportError, "cannot import name %S", name);
4477 }
4478 return x;
Thomas Wouters52152252000-08-17 22:55:00 +00004479}
Guido van Rossumac7be682001-01-17 15:42:30 +00004480
Thomas Wouters52152252000-08-17 22:55:00 +00004481static int
4482import_all_from(PyObject *locals, PyObject *v)
4483{
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02004484 _Py_IDENTIFIER(__all__);
4485 _Py_IDENTIFIER(__dict__);
4486 PyObject *all = _PyObject_GetAttrId(v, &PyId___all__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004487 PyObject *dict, *name, *value;
4488 int skip_leading_underscores = 0;
4489 int pos, err;
Thomas Wouters52152252000-08-17 22:55:00 +00004490
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004491 if (all == NULL) {
4492 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
4493 return -1; /* Unexpected error */
4494 PyErr_Clear();
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02004495 dict = _PyObject_GetAttrId(v, &PyId___dict__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004496 if (dict == NULL) {
4497 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
4498 return -1;
4499 PyErr_SetString(PyExc_ImportError,
4500 "from-import-* object has no __dict__ and no __all__");
4501 return -1;
4502 }
4503 all = PyMapping_Keys(dict);
4504 Py_DECREF(dict);
4505 if (all == NULL)
4506 return -1;
4507 skip_leading_underscores = 1;
4508 }
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00004509
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004510 for (pos = 0, err = 0; ; pos++) {
4511 name = PySequence_GetItem(all, pos);
4512 if (name == NULL) {
4513 if (!PyErr_ExceptionMatches(PyExc_IndexError))
4514 err = -1;
4515 else
4516 PyErr_Clear();
4517 break;
4518 }
4519 if (skip_leading_underscores &&
4520 PyUnicode_Check(name) &&
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004521 PyUnicode_READY(name) != -1 &&
4522 PyUnicode_READ_CHAR(name, 0) == '_')
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004523 {
4524 Py_DECREF(name);
4525 continue;
4526 }
4527 value = PyObject_GetAttr(v, name);
4528 if (value == NULL)
4529 err = -1;
4530 else if (PyDict_CheckExact(locals))
4531 err = PyDict_SetItem(locals, name, value);
4532 else
4533 err = PyObject_SetItem(locals, name, value);
4534 Py_DECREF(name);
4535 Py_XDECREF(value);
4536 if (err != 0)
4537 break;
4538 }
4539 Py_DECREF(all);
4540 return err;
Guido van Rossume9736fc1990-11-18 17:33:06 +00004541}
4542
Guido van Rossumac7be682001-01-17 15:42:30 +00004543static void
Neal Norwitzda059e32007-08-26 05:33:45 +00004544format_exc_check_arg(PyObject *exc, const char *format_str, PyObject *obj)
Paul Prescode68140d2000-08-30 20:25:01 +00004545{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004546 const char *obj_str;
Paul Prescode68140d2000-08-30 20:25:01 +00004547
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004548 if (!obj)
4549 return;
Paul Prescode68140d2000-08-30 20:25:01 +00004550
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004551 obj_str = _PyUnicode_AsString(obj);
4552 if (!obj_str)
4553 return;
Paul Prescode68140d2000-08-30 20:25:01 +00004554
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004555 PyErr_Format(exc, format_str, obj_str);
Paul Prescode68140d2000-08-30 20:25:01 +00004556}
Guido van Rossum950361c1997-01-24 13:49:28 +00004557
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00004558static void
4559format_exc_unbound(PyCodeObject *co, int oparg)
4560{
4561 PyObject *name;
4562 /* Don't stomp existing exception */
4563 if (PyErr_Occurred())
4564 return;
4565 if (oparg < PyTuple_GET_SIZE(co->co_cellvars)) {
4566 name = PyTuple_GET_ITEM(co->co_cellvars,
4567 oparg);
4568 format_exc_check_arg(
4569 PyExc_UnboundLocalError,
4570 UNBOUNDLOCAL_ERROR_MSG,
4571 name);
4572 } else {
4573 name = PyTuple_GET_ITEM(co->co_freevars, oparg -
4574 PyTuple_GET_SIZE(co->co_cellvars));
4575 format_exc_check_arg(PyExc_NameError,
4576 UNBOUNDFREE_ERROR_MSG, name);
4577 }
4578}
4579
Victor Stinnerd2a915d2011-10-02 20:34:20 +02004580static PyObject *
4581unicode_concatenate(PyObject *v, PyObject *w,
4582 PyFrameObject *f, unsigned char *next_instr)
4583{
4584 PyObject *res;
4585 if (Py_REFCNT(v) == 2) {
4586 /* In the common case, there are 2 references to the value
4587 * stored in 'variable' when the += is performed: one on the
4588 * value stack (in 'v') and one still stored in the
4589 * 'variable'. We try to delete the variable now to reduce
4590 * the refcnt to 1.
4591 */
4592 switch (*next_instr) {
4593 case STORE_FAST:
4594 {
4595 int oparg = PEEKARG();
4596 PyObject **fastlocals = f->f_localsplus;
4597 if (GETLOCAL(oparg) == v)
4598 SETLOCAL(oparg, NULL);
4599 break;
4600 }
4601 case STORE_DEREF:
4602 {
4603 PyObject **freevars = (f->f_localsplus +
4604 f->f_code->co_nlocals);
4605 PyObject *c = freevars[PEEKARG()];
4606 if (PyCell_GET(c) == v)
4607 PyCell_Set(c, NULL);
4608 break;
4609 }
4610 case STORE_NAME:
4611 {
4612 PyObject *names = f->f_code->co_names;
4613 PyObject *name = GETITEM(names, PEEKARG());
4614 PyObject *locals = f->f_locals;
4615 if (PyDict_CheckExact(locals) &&
4616 PyDict_GetItem(locals, name) == v) {
4617 if (PyDict_DelItem(locals, name) != 0) {
4618 PyErr_Clear();
4619 }
4620 }
4621 break;
4622 }
4623 }
4624 }
4625 res = v;
4626 PyUnicode_Append(&res, w);
4627 return res;
4628}
4629
Guido van Rossum950361c1997-01-24 13:49:28 +00004630#ifdef DYNAMIC_EXECUTION_PROFILE
4631
Skip Montanarof118cb12001-10-15 20:51:38 +00004632static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004633getarray(long a[256])
Guido van Rossum950361c1997-01-24 13:49:28 +00004634{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004635 int i;
4636 PyObject *l = PyList_New(256);
4637 if (l == NULL) return NULL;
4638 for (i = 0; i < 256; i++) {
4639 PyObject *x = PyLong_FromLong(a[i]);
4640 if (x == NULL) {
4641 Py_DECREF(l);
4642 return NULL;
4643 }
4644 PyList_SetItem(l, i, x);
4645 }
4646 for (i = 0; i < 256; i++)
4647 a[i] = 0;
4648 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00004649}
4650
4651PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004652_Py_GetDXProfile(PyObject *self, PyObject *args)
Guido van Rossum950361c1997-01-24 13:49:28 +00004653{
4654#ifndef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004655 return getarray(dxp);
Guido van Rossum950361c1997-01-24 13:49:28 +00004656#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004657 int i;
4658 PyObject *l = PyList_New(257);
4659 if (l == NULL) return NULL;
4660 for (i = 0; i < 257; i++) {
4661 PyObject *x = getarray(dxpairs[i]);
4662 if (x == NULL) {
4663 Py_DECREF(l);
4664 return NULL;
4665 }
4666 PyList_SetItem(l, i, x);
4667 }
4668 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00004669#endif
4670}
4671
4672#endif