blob: 82bfcc612856b99caf378198e0f6e6d13e519e3f [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)
Benjamin Petersonb37df512012-08-06 17:53:09 -07001846 retval = Py_TYPE(x)->tp_iternext(x);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001847 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);
Nick Coghlanc40bc092012-06-17 15:15:49 +10001855 err = _PyGen_FetchStopIterationValue(&val);
Benjamin Peterson2afe6ae2012-03-15 15:37:39 -05001856 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));
Benjamin Petersond1ab6082012-06-01 11:18:22 -07003110 if (tail == NULL)
3111 return;
Benjamin Petersone109c702011-06-24 09:37:26 -05003112 /* Chop off the last two objects in the list. This shouldn't actually
3113 fail, but we can't be too careful. */
3114 err = PyList_SetSlice(names, len - 2, len, NULL);
3115 if (err == -1) {
3116 Py_DECREF(tail);
3117 return;
3118 }
3119 /* Stitch everything up into a nice comma-separated list. */
3120 comma = PyUnicode_FromString(", ");
3121 if (comma == NULL) {
3122 Py_DECREF(tail);
3123 return;
3124 }
3125 tmp = PyUnicode_Join(comma, names);
3126 Py_DECREF(comma);
3127 if (tmp == NULL) {
3128 Py_DECREF(tail);
3129 return;
3130 }
3131 name_str = PyUnicode_Concat(tmp, tail);
3132 Py_DECREF(tmp);
3133 Py_DECREF(tail);
3134 break;
3135 }
3136 if (name_str == NULL)
3137 return;
3138 PyErr_Format(PyExc_TypeError,
3139 "%U() missing %i required %s argument%s: %U",
3140 co->co_name,
3141 len,
3142 kind,
3143 len == 1 ? "" : "s",
3144 name_str);
3145 Py_DECREF(name_str);
3146}
3147
3148static void
3149missing_arguments(PyCodeObject *co, int missing, int defcount,
3150 PyObject **fastlocals)
3151{
3152 int i, j = 0;
3153 int start, end;
3154 int positional = defcount != -1;
3155 const char *kind = positional ? "positional" : "keyword-only";
3156 PyObject *missing_names;
3157
3158 /* Compute the names of the arguments that are missing. */
3159 missing_names = PyList_New(missing);
3160 if (missing_names == NULL)
3161 return;
3162 if (positional) {
3163 start = 0;
3164 end = co->co_argcount - defcount;
3165 }
3166 else {
3167 start = co->co_argcount;
3168 end = start + co->co_kwonlyargcount;
3169 }
3170 for (i = start; i < end; i++) {
3171 if (GETLOCAL(i) == NULL) {
3172 PyObject *raw = PyTuple_GET_ITEM(co->co_varnames, i);
3173 PyObject *name = PyObject_Repr(raw);
3174 if (name == NULL) {
3175 Py_DECREF(missing_names);
3176 return;
3177 }
3178 PyList_SET_ITEM(missing_names, j++, name);
3179 }
3180 }
3181 assert(j == missing);
3182 format_missing(kind, co, missing_names);
3183 Py_DECREF(missing_names);
3184}
3185
3186static void
3187too_many_positional(PyCodeObject *co, int given, int defcount, PyObject **fastlocals)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003188{
3189 int plural;
3190 int kwonly_given = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003191 int i;
3192 PyObject *sig, *kwonly_sig;
3193
Benjamin Petersone109c702011-06-24 09:37:26 -05003194 assert((co->co_flags & CO_VARARGS) == 0);
3195 /* Count missing keyword-only args. */
Benjamin Petersonb204a422011-06-05 22:04:07 -05003196 for (i = co->co_argcount; i < co->co_argcount + co->co_kwonlyargcount; i++)
Benjamin Petersone109c702011-06-24 09:37:26 -05003197 if (GETLOCAL(i) != NULL)
Benjamin Petersonb204a422011-06-05 22:04:07 -05003198 kwonly_given++;
Benjamin Petersone109c702011-06-24 09:37:26 -05003199 if (defcount) {
3200 int atleast = co->co_argcount - defcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003201 plural = 1;
3202 sig = PyUnicode_FromFormat("from %d to %d", atleast, co->co_argcount);
3203 }
3204 else {
3205 plural = co->co_argcount != 1;
3206 sig = PyUnicode_FromFormat("%d", co->co_argcount);
3207 }
3208 if (sig == NULL)
3209 return;
3210 if (kwonly_given) {
3211 const char *format = " positional argument%s (and %d keyword-only argument%s)";
3212 kwonly_sig = PyUnicode_FromFormat(format, given != 1 ? "s" : "", kwonly_given,
3213 kwonly_given != 1 ? "s" : "");
3214 if (kwonly_sig == NULL) {
3215 Py_DECREF(sig);
3216 return;
3217 }
3218 }
3219 else {
3220 /* This will not fail. */
3221 kwonly_sig = PyUnicode_FromString("");
Benjamin Petersone109c702011-06-24 09:37:26 -05003222 assert(kwonly_sig != NULL);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003223 }
3224 PyErr_Format(PyExc_TypeError,
3225 "%U() takes %U positional argument%s but %d%U %s given",
3226 co->co_name,
3227 sig,
3228 plural ? "s" : "",
3229 given,
3230 kwonly_sig,
3231 given == 1 && !kwonly_given ? "was" : "were");
3232 Py_DECREF(sig);
3233 Py_DECREF(kwonly_sig);
3234}
3235
Guido van Rossumc2e20742006-02-27 22:32:47 +00003236/* This is gonna seem *real weird*, but if you put some other code between
Martin v. Löwis8d97e332004-06-27 15:43:12 +00003237 PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
Guido van Rossumc2e20742006-02-27 22:32:47 +00003238 the test in the if statements in Misc/gdbinit (pystack and pystackv). */
Skip Montanaro786ea6b2004-03-01 15:44:05 +00003239
Tim Peters6d6c1a32001-08-02 04:15:00 +00003240PyObject *
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003241PyEval_EvalCodeEx(PyObject *_co, PyObject *globals, PyObject *locals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003242 PyObject **args, int argcount, PyObject **kws, int kwcount,
3243 PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure)
Tim Peters5ca576e2001-06-18 22:08:13 +00003244{
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00003245 PyCodeObject* co = (PyCodeObject*)_co;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003246 register PyFrameObject *f;
3247 register PyObject *retval = NULL;
3248 register PyObject **fastlocals, **freevars;
3249 PyThreadState *tstate = PyThreadState_GET();
3250 PyObject *x, *u;
3251 int total_args = co->co_argcount + co->co_kwonlyargcount;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003252 int i;
3253 int n = argcount;
3254 PyObject *kwdict = NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00003255
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003256 if (globals == NULL) {
3257 PyErr_SetString(PyExc_SystemError,
3258 "PyEval_EvalCodeEx: NULL globals");
3259 return NULL;
3260 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003261
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003262 assert(tstate != NULL);
3263 assert(globals != NULL);
3264 f = PyFrame_New(tstate, co, globals, locals);
3265 if (f == NULL)
3266 return NULL;
Tim Peters5ca576e2001-06-18 22:08:13 +00003267
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003268 fastlocals = f->f_localsplus;
3269 freevars = f->f_localsplus + co->co_nlocals;
Tim Peters5ca576e2001-06-18 22:08:13 +00003270
Benjamin Petersonb204a422011-06-05 22:04:07 -05003271 /* Parse arguments. */
3272 if (co->co_flags & CO_VARKEYWORDS) {
3273 kwdict = PyDict_New();
3274 if (kwdict == NULL)
3275 goto fail;
3276 i = total_args;
3277 if (co->co_flags & CO_VARARGS)
3278 i++;
3279 SETLOCAL(i, kwdict);
3280 }
3281 if (argcount > co->co_argcount)
3282 n = co->co_argcount;
3283 for (i = 0; i < n; i++) {
3284 x = args[i];
3285 Py_INCREF(x);
3286 SETLOCAL(i, x);
3287 }
3288 if (co->co_flags & CO_VARARGS) {
3289 u = PyTuple_New(argcount - n);
3290 if (u == NULL)
3291 goto fail;
3292 SETLOCAL(total_args, u);
3293 for (i = n; i < argcount; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003294 x = args[i];
3295 Py_INCREF(x);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003296 PyTuple_SET_ITEM(u, i-n, x);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003297 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003298 }
3299 for (i = 0; i < kwcount; i++) {
3300 PyObject **co_varnames;
3301 PyObject *keyword = kws[2*i];
3302 PyObject *value = kws[2*i + 1];
3303 int j;
3304 if (keyword == NULL || !PyUnicode_Check(keyword)) {
3305 PyErr_Format(PyExc_TypeError,
3306 "%U() keywords must be strings",
3307 co->co_name);
3308 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003309 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003310 /* Speed hack: do raw pointer compares. As names are
3311 normally interned this should almost always hit. */
3312 co_varnames = ((PyTupleObject *)(co->co_varnames))->ob_item;
3313 for (j = 0; j < total_args; j++) {
3314 PyObject *nm = co_varnames[j];
3315 if (nm == keyword)
3316 goto kw_found;
3317 }
3318 /* Slow fallback, just in case */
3319 for (j = 0; j < total_args; j++) {
3320 PyObject *nm = co_varnames[j];
3321 int cmp = PyObject_RichCompareBool(
3322 keyword, nm, Py_EQ);
3323 if (cmp > 0)
3324 goto kw_found;
3325 else if (cmp < 0)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003326 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003327 }
3328 if (j >= total_args && kwdict == NULL) {
3329 PyErr_Format(PyExc_TypeError,
3330 "%U() got an unexpected "
3331 "keyword argument '%S'",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003332 co->co_name,
3333 keyword);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003334 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003335 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003336 PyDict_SetItem(kwdict, keyword, value);
3337 continue;
3338 kw_found:
3339 if (GETLOCAL(j) != NULL) {
3340 PyErr_Format(PyExc_TypeError,
3341 "%U() got multiple "
3342 "values for argument '%S'",
3343 co->co_name,
3344 keyword);
3345 goto fail;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003346 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003347 Py_INCREF(value);
3348 SETLOCAL(j, value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003349 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003350 if (argcount > co->co_argcount && !(co->co_flags & CO_VARARGS)) {
Benjamin Petersone109c702011-06-24 09:37:26 -05003351 too_many_positional(co, argcount, defcount, fastlocals);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003352 goto fail;
3353 }
Benjamin Petersonb204a422011-06-05 22:04:07 -05003354 if (argcount < co->co_argcount) {
3355 int m = co->co_argcount - defcount;
Benjamin Petersone109c702011-06-24 09:37:26 -05003356 int missing = 0;
3357 for (i = argcount; i < m; i++)
3358 if (GETLOCAL(i) == NULL)
3359 missing++;
3360 if (missing) {
3361 missing_arguments(co, missing, defcount, fastlocals);
3362 goto fail;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003363 }
3364 if (n > m)
3365 i = n - m;
3366 else
3367 i = 0;
3368 for (; i < defcount; i++) {
3369 if (GETLOCAL(m+i) == NULL) {
3370 PyObject *def = defs[i];
3371 Py_INCREF(def);
3372 SETLOCAL(m+i, def);
3373 }
3374 }
3375 }
3376 if (co->co_kwonlyargcount > 0) {
Benjamin Petersone109c702011-06-24 09:37:26 -05003377 int missing = 0;
Benjamin Petersonb204a422011-06-05 22:04:07 -05003378 for (i = co->co_argcount; i < total_args; i++) {
3379 PyObject *name;
3380 if (GETLOCAL(i) != NULL)
3381 continue;
3382 name = PyTuple_GET_ITEM(co->co_varnames, i);
3383 if (kwdefs != NULL) {
3384 PyObject *def = PyDict_GetItem(kwdefs, name);
3385 if (def) {
3386 Py_INCREF(def);
3387 SETLOCAL(i, def);
3388 continue;
3389 }
3390 }
Benjamin Petersone109c702011-06-24 09:37:26 -05003391 missing++;
3392 }
3393 if (missing) {
3394 missing_arguments(co, missing, -1, fastlocals);
Benjamin Petersonb204a422011-06-05 22:04:07 -05003395 goto fail;
3396 }
3397 }
3398
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003399 /* Allocate and initialize storage for cell vars, and copy free
Benjamin Peterson90037602011-06-25 22:54:45 -05003400 vars into frame. */
3401 for (i = 0; i < PyTuple_GET_SIZE(co->co_cellvars); ++i) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003402 PyObject *c;
Benjamin Peterson90037602011-06-25 22:54:45 -05003403 int arg;
3404 /* Possibly account for the cell variable being an argument. */
3405 if (co->co_cell2arg != NULL &&
3406 (arg = co->co_cell2arg[i]) != CO_CELL_NOT_AN_ARG)
3407 c = PyCell_New(GETLOCAL(arg));
3408 else
3409 c = PyCell_New(NULL);
3410 if (c == NULL)
3411 goto fail;
3412 SETLOCAL(co->co_nlocals + i, c);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003413 }
Benjamin Peterson90037602011-06-25 22:54:45 -05003414 for (i = 0; i < PyTuple_GET_SIZE(co->co_freevars); ++i) {
3415 PyObject *o = PyTuple_GET_ITEM(closure, i);
3416 Py_INCREF(o);
3417 freevars[PyTuple_GET_SIZE(co->co_cellvars) + i] = o;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003418 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003419
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003420 if (co->co_flags & CO_GENERATOR) {
3421 /* Don't need to keep the reference to f_back, it will be set
3422 * when the generator is resumed. */
3423 Py_XDECREF(f->f_back);
3424 f->f_back = NULL;
Neil Schemenauer2b13ce82001-06-21 02:41:10 +00003425
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003426 PCALL(PCALL_GENERATOR);
Jeremy Hylton985eba52003-02-05 23:13:00 +00003427
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003428 /* Create a new generator that owns the ready to run frame
3429 * and return that as the value. */
3430 return PyGen_New(f);
3431 }
Tim Peters5ca576e2001-06-18 22:08:13 +00003432
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003433 retval = PyEval_EvalFrameEx(f,0);
Tim Peters5ca576e2001-06-18 22:08:13 +00003434
Thomas Woutersce272b62007-09-19 21:19:28 +00003435fail: /* Jump here from prelude on failure */
Tim Peters5ca576e2001-06-18 22:08:13 +00003436
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003437 /* decref'ing the frame can cause __del__ methods to get invoked,
3438 which can call back into Python. While we're done with the
3439 current Python frame (f), the associated C stack is still in use,
3440 so recursion_depth must be boosted for the duration.
3441 */
3442 assert(tstate != NULL);
3443 ++tstate->recursion_depth;
3444 Py_DECREF(f);
3445 --tstate->recursion_depth;
3446 return retval;
Tim Peters5ca576e2001-06-18 22:08:13 +00003447}
3448
3449
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003450static PyObject *
Benjamin Petersonce798522012-01-22 11:24:29 -05003451special_lookup(PyObject *o, _Py_Identifier *id)
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003452{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003453 PyObject *res;
Benjamin Petersonce798522012-01-22 11:24:29 -05003454 res = _PyObject_LookupSpecial(o, id);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003455 if (res == NULL && !PyErr_Occurred()) {
Benjamin Petersonce798522012-01-22 11:24:29 -05003456 PyErr_SetObject(PyExc_AttributeError, id->object);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003457 return NULL;
3458 }
3459 return res;
Benjamin Peterson876b2f22009-06-28 03:18:59 +00003460}
3461
3462
Benjamin Peterson87880242011-07-03 16:48:31 -05003463/* These 3 functions deal with the exception state of generators. */
3464
3465static void
3466save_exc_state(PyThreadState *tstate, PyFrameObject *f)
3467{
3468 PyObject *type, *value, *traceback;
3469 Py_XINCREF(tstate->exc_type);
3470 Py_XINCREF(tstate->exc_value);
3471 Py_XINCREF(tstate->exc_traceback);
3472 type = f->f_exc_type;
3473 value = f->f_exc_value;
3474 traceback = f->f_exc_traceback;
3475 f->f_exc_type = tstate->exc_type;
3476 f->f_exc_value = tstate->exc_value;
3477 f->f_exc_traceback = tstate->exc_traceback;
3478 Py_XDECREF(type);
3479 Py_XDECREF(value);
Victor Stinnerd2a915d2011-10-02 20:34:20 +02003480 Py_XDECREF(traceback);
Benjamin Peterson87880242011-07-03 16:48:31 -05003481}
3482
3483static void
3484swap_exc_state(PyThreadState *tstate, PyFrameObject *f)
3485{
3486 PyObject *tmp;
3487 tmp = tstate->exc_type;
3488 tstate->exc_type = f->f_exc_type;
3489 f->f_exc_type = tmp;
3490 tmp = tstate->exc_value;
3491 tstate->exc_value = f->f_exc_value;
3492 f->f_exc_value = tmp;
3493 tmp = tstate->exc_traceback;
3494 tstate->exc_traceback = f->f_exc_traceback;
3495 f->f_exc_traceback = tmp;
3496}
3497
3498static void
3499restore_and_clear_exc_state(PyThreadState *tstate, PyFrameObject *f)
3500{
3501 PyObject *type, *value, *tb;
3502 type = tstate->exc_type;
3503 value = tstate->exc_value;
3504 tb = tstate->exc_traceback;
3505 tstate->exc_type = f->f_exc_type;
3506 tstate->exc_value = f->f_exc_value;
3507 tstate->exc_traceback = f->f_exc_traceback;
3508 f->f_exc_type = NULL;
3509 f->f_exc_value = NULL;
3510 f->f_exc_traceback = NULL;
3511 Py_XDECREF(type);
3512 Py_XDECREF(value);
3513 Py_XDECREF(tb);
3514}
3515
3516
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003517/* Logic for the raise statement (too complicated for inlining).
3518 This *consumes* a reference count to each of its arguments. */
Raymond Hettinger7c958652004-04-06 10:11:10 +00003519static enum why_code
Collin Winter828f04a2007-08-31 00:04:24 +00003520do_raise(PyObject *exc, PyObject *cause)
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003521{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003522 PyObject *type = NULL, *value = NULL;
Collin Winter828f04a2007-08-31 00:04:24 +00003523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003524 if (exc == NULL) {
3525 /* Reraise */
3526 PyThreadState *tstate = PyThreadState_GET();
3527 PyObject *tb;
3528 type = tstate->exc_type;
3529 value = tstate->exc_value;
3530 tb = tstate->exc_traceback;
3531 if (type == Py_None) {
3532 PyErr_SetString(PyExc_RuntimeError,
3533 "No active exception to reraise");
3534 return WHY_EXCEPTION;
3535 }
3536 Py_XINCREF(type);
3537 Py_XINCREF(value);
3538 Py_XINCREF(tb);
3539 PyErr_Restore(type, value, tb);
3540 return WHY_RERAISE;
3541 }
Guido van Rossumac7be682001-01-17 15:42:30 +00003542
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003543 /* We support the following forms of raise:
3544 raise
Collin Winter828f04a2007-08-31 00:04:24 +00003545 raise <instance>
3546 raise <type> */
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003547
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003548 if (PyExceptionClass_Check(exc)) {
3549 type = exc;
3550 value = PyObject_CallObject(exc, NULL);
3551 if (value == NULL)
3552 goto raise_error;
Benjamin Peterson5afa03a2011-07-15 14:09:26 -05003553 if (!PyExceptionInstance_Check(value)) {
3554 PyErr_Format(PyExc_TypeError,
3555 "calling %R should have returned an instance of "
3556 "BaseException, not %R",
3557 type, Py_TYPE(value));
3558 goto raise_error;
3559 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003560 }
3561 else if (PyExceptionInstance_Check(exc)) {
3562 value = exc;
3563 type = PyExceptionInstance_Class(exc);
3564 Py_INCREF(type);
3565 }
3566 else {
3567 /* Not something you can raise. You get an exception
3568 anyway, just not what you specified :-) */
3569 Py_DECREF(exc);
3570 PyErr_SetString(PyExc_TypeError,
3571 "exceptions must derive from BaseException");
3572 goto raise_error;
3573 }
Collin Winter828f04a2007-08-31 00:04:24 +00003574
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003575 if (cause) {
3576 PyObject *fixed_cause;
3577 if (PyExceptionClass_Check(cause)) {
3578 fixed_cause = PyObject_CallObject(cause, NULL);
3579 if (fixed_cause == NULL)
3580 goto raise_error;
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003581 Py_DECREF(cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003582 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003583 else if (PyExceptionInstance_Check(cause)) {
3584 fixed_cause = cause;
3585 }
3586 else if (cause == Py_None) {
3587 Py_DECREF(cause);
3588 fixed_cause = NULL;
3589 }
3590 else {
3591 PyErr_SetString(PyExc_TypeError,
3592 "exception causes must derive from "
3593 "BaseException");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003594 goto raise_error;
3595 }
Benjamin Petersond5a1c442012-05-14 22:09:31 -07003596 PyException_SetCause(value, fixed_cause);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003597 }
Collin Winter828f04a2007-08-31 00:04:24 +00003598
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003599 PyErr_SetObject(type, value);
3600 /* PyErr_SetObject incref's its arguments */
3601 Py_XDECREF(value);
3602 Py_XDECREF(type);
3603 return WHY_EXCEPTION;
Collin Winter828f04a2007-08-31 00:04:24 +00003604
3605raise_error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003606 Py_XDECREF(value);
3607 Py_XDECREF(type);
3608 Py_XDECREF(cause);
3609 return WHY_EXCEPTION;
Guido van Rossum0aa9ee61996-12-10 18:07:35 +00003610}
3611
Tim Petersd6d010b2001-06-21 02:49:55 +00003612/* Iterate v argcnt times and store the results on the stack (via decreasing
Guido van Rossum0368b722007-05-11 16:50:42 +00003613 sp). Return 1 for success, 0 if error.
Antoine Pitrou9a2310d2008-07-25 22:39:39 +00003614
Guido van Rossum0368b722007-05-11 16:50:42 +00003615 If argcntafter == -1, do a simple unpack. If it is >= 0, do an unpack
3616 with a variable target.
3617*/
Tim Petersd6d010b2001-06-21 02:49:55 +00003618
Barry Warsawe42b18f1997-08-25 22:13:04 +00003619static int
Guido van Rossum0368b722007-05-11 16:50:42 +00003620unpack_iterable(PyObject *v, int argcnt, int argcntafter, PyObject **sp)
Barry Warsawe42b18f1997-08-25 22:13:04 +00003621{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003622 int i = 0, j = 0;
3623 Py_ssize_t ll = 0;
3624 PyObject *it; /* iter(v) */
3625 PyObject *w;
3626 PyObject *l = NULL; /* variable list */
Guido van Rossumac7be682001-01-17 15:42:30 +00003627
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003628 assert(v != NULL);
Tim Petersd6d010b2001-06-21 02:49:55 +00003629
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003630 it = PyObject_GetIter(v);
3631 if (it == NULL)
3632 goto Error;
Tim Petersd6d010b2001-06-21 02:49:55 +00003633
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003634 for (; i < argcnt; i++) {
3635 w = PyIter_Next(it);
3636 if (w == NULL) {
3637 /* Iterator done, via error or exhaustion. */
3638 if (!PyErr_Occurred()) {
3639 PyErr_Format(PyExc_ValueError,
3640 "need more than %d value%s to unpack",
3641 i, i == 1 ? "" : "s");
3642 }
3643 goto Error;
3644 }
3645 *--sp = w;
3646 }
Tim Petersd6d010b2001-06-21 02:49:55 +00003647
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003648 if (argcntafter == -1) {
3649 /* We better have exhausted the iterator now. */
3650 w = PyIter_Next(it);
3651 if (w == NULL) {
3652 if (PyErr_Occurred())
3653 goto Error;
3654 Py_DECREF(it);
3655 return 1;
3656 }
3657 Py_DECREF(w);
Georg Brandl0310a832010-07-10 10:32:36 +00003658 PyErr_Format(PyExc_ValueError, "too many values to unpack "
3659 "(expected %d)", argcnt);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003660 goto Error;
3661 }
Guido van Rossum0368b722007-05-11 16:50:42 +00003662
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003663 l = PySequence_List(it);
3664 if (l == NULL)
3665 goto Error;
3666 *--sp = l;
3667 i++;
Guido van Rossum0368b722007-05-11 16:50:42 +00003668
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003669 ll = PyList_GET_SIZE(l);
3670 if (ll < argcntafter) {
3671 PyErr_Format(PyExc_ValueError, "need more than %zd values to unpack",
3672 argcnt + ll);
3673 goto Error;
3674 }
Guido van Rossum0368b722007-05-11 16:50:42 +00003675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003676 /* Pop the "after-variable" args off the list. */
3677 for (j = argcntafter; j > 0; j--, i++) {
3678 *--sp = PyList_GET_ITEM(l, ll - j);
3679 }
3680 /* Resize the list. */
3681 Py_SIZE(l) = ll - argcntafter;
3682 Py_DECREF(it);
3683 return 1;
Guido van Rossum0368b722007-05-11 16:50:42 +00003684
Tim Petersd6d010b2001-06-21 02:49:55 +00003685Error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003686 for (; i > 0; i--, sp++)
3687 Py_DECREF(*sp);
3688 Py_XDECREF(it);
3689 return 0;
Barry Warsawe42b18f1997-08-25 22:13:04 +00003690}
3691
3692
Guido van Rossum96a42c81992-01-12 02:29:51 +00003693#ifdef LLTRACE
Guido van Rossum3f5da241990-12-20 15:06:42 +00003694static int
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003695prtrace(PyObject *v, char *str)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003696{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003697 printf("%s ", str);
3698 if (PyObject_Print(v, stdout, 0) != 0)
3699 PyErr_Clear(); /* Don't know what else to do */
3700 printf("\n");
3701 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003702}
Guido van Rossum3f5da241990-12-20 15:06:42 +00003703#endif
Guido van Rossum10dc2e81990-11-18 17:27:39 +00003704
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003705static void
Fred Drake5755ce62001-06-27 19:19:46 +00003706call_exc_trace(Py_tracefunc func, PyObject *self, PyFrameObject *f)
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003707{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003708 PyObject *type, *value, *traceback, *arg;
3709 int err;
3710 PyErr_Fetch(&type, &value, &traceback);
3711 if (value == NULL) {
3712 value = Py_None;
3713 Py_INCREF(value);
3714 }
3715 arg = PyTuple_Pack(3, type, value, traceback);
3716 if (arg == NULL) {
3717 PyErr_Restore(type, value, traceback);
3718 return;
3719 }
3720 err = call_trace(func, self, f, PyTrace_EXCEPTION, arg);
3721 Py_DECREF(arg);
3722 if (err == 0)
3723 PyErr_Restore(type, value, traceback);
3724 else {
3725 Py_XDECREF(type);
3726 Py_XDECREF(value);
3727 Py_XDECREF(traceback);
3728 }
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003729}
3730
Amaury Forgeot d'Arcf05149a2007-11-13 01:05:30 +00003731static int
Fred Drake4ec5d562001-10-04 19:26:43 +00003732call_trace_protected(Py_tracefunc func, PyObject *obj, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003733 int what, PyObject *arg)
Fred Drake4ec5d562001-10-04 19:26:43 +00003734{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003735 PyObject *type, *value, *traceback;
3736 int err;
3737 PyErr_Fetch(&type, &value, &traceback);
3738 err = call_trace(func, obj, frame, what, arg);
3739 if (err == 0)
3740 {
3741 PyErr_Restore(type, value, traceback);
3742 return 0;
3743 }
3744 else {
3745 Py_XDECREF(type);
3746 Py_XDECREF(value);
3747 Py_XDECREF(traceback);
3748 return -1;
3749 }
Fred Drake4ec5d562001-10-04 19:26:43 +00003750}
3751
Guido van Rossum9c8d70d1992-03-23 18:19:28 +00003752static int
Fred Drake5755ce62001-06-27 19:19:46 +00003753call_trace(Py_tracefunc func, PyObject *obj, PyFrameObject *frame,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003754 int what, PyObject *arg)
Guido van Rossum96a42c81992-01-12 02:29:51 +00003755{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003756 register PyThreadState *tstate = frame->f_tstate;
3757 int result;
3758 if (tstate->tracing)
3759 return 0;
3760 tstate->tracing++;
3761 tstate->use_tracing = 0;
3762 result = func(obj, frame, what, arg);
3763 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
3764 || (tstate->c_profilefunc != NULL));
3765 tstate->tracing--;
3766 return result;
Guido van Rossum96a42c81992-01-12 02:29:51 +00003767}
3768
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003769PyObject *
3770_PyEval_CallTracing(PyObject *func, PyObject *args)
3771{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003772 PyFrameObject *frame = PyEval_GetFrame();
3773 PyThreadState *tstate = frame->f_tstate;
3774 int save_tracing = tstate->tracing;
3775 int save_use_tracing = tstate->use_tracing;
3776 PyObject *result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003777
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003778 tstate->tracing = 0;
3779 tstate->use_tracing = ((tstate->c_tracefunc != NULL)
3780 || (tstate->c_profilefunc != NULL));
3781 result = PyObject_Call(func, args, NULL);
3782 tstate->tracing = save_tracing;
3783 tstate->use_tracing = save_use_tracing;
3784 return result;
Guido van Rossuma12fe4e2003-04-09 19:06:21 +00003785}
3786
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +00003787/* See Objects/lnotab_notes.txt for a description of how tracing works. */
Michael W. Hudson006c7522002-11-08 13:08:46 +00003788static int
Tim Peters8a5c3c72004-04-05 19:36:21 +00003789maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003790 PyFrameObject *frame, int *instr_lb, int *instr_ub,
3791 int *instr_prev)
Michael W. Hudsondd32a912002-08-15 14:59:02 +00003792{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003793 int result = 0;
3794 int line = frame->f_lineno;
Michael W. Hudson006c7522002-11-08 13:08:46 +00003795
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003796 /* If the last instruction executed isn't in the current
3797 instruction window, reset the window.
3798 */
3799 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) {
3800 PyAddrPair bounds;
3801 line = _PyCode_CheckLineNumber(frame->f_code, frame->f_lasti,
3802 &bounds);
3803 *instr_lb = bounds.ap_lower;
3804 *instr_ub = bounds.ap_upper;
3805 }
3806 /* If the last instruction falls at the start of a line or if
3807 it represents a jump backwards, update the frame's line
3808 number and call the trace function. */
3809 if (frame->f_lasti == *instr_lb || frame->f_lasti < *instr_prev) {
3810 frame->f_lineno = line;
3811 result = call_trace(func, obj, frame, PyTrace_LINE, Py_None);
3812 }
3813 *instr_prev = frame->f_lasti;
3814 return result;
Michael W. Hudsondd32a912002-08-15 14:59:02 +00003815}
3816
Fred Drake5755ce62001-06-27 19:19:46 +00003817void
3818PyEval_SetProfile(Py_tracefunc func, PyObject *arg)
Fred Draked0838392001-06-16 21:02:31 +00003819{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003820 PyThreadState *tstate = PyThreadState_GET();
3821 PyObject *temp = tstate->c_profileobj;
3822 Py_XINCREF(arg);
3823 tstate->c_profilefunc = NULL;
3824 tstate->c_profileobj = NULL;
3825 /* Must make sure that tracing is not ignored if 'temp' is freed */
3826 tstate->use_tracing = tstate->c_tracefunc != NULL;
3827 Py_XDECREF(temp);
3828 tstate->c_profilefunc = func;
3829 tstate->c_profileobj = arg;
3830 /* Flag that tracing or profiling is turned on */
3831 tstate->use_tracing = (func != NULL) || (tstate->c_tracefunc != NULL);
Fred Drake5755ce62001-06-27 19:19:46 +00003832}
3833
3834void
3835PyEval_SetTrace(Py_tracefunc func, PyObject *arg)
3836{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003837 PyThreadState *tstate = PyThreadState_GET();
3838 PyObject *temp = tstate->c_traceobj;
3839 _Py_TracingPossible += (func != NULL) - (tstate->c_tracefunc != NULL);
3840 Py_XINCREF(arg);
3841 tstate->c_tracefunc = NULL;
3842 tstate->c_traceobj = NULL;
3843 /* Must make sure that profiling is not ignored if 'temp' is freed */
3844 tstate->use_tracing = tstate->c_profilefunc != NULL;
3845 Py_XDECREF(temp);
3846 tstate->c_tracefunc = func;
3847 tstate->c_traceobj = arg;
3848 /* Flag that tracing or profiling is turned on */
3849 tstate->use_tracing = ((func != NULL)
3850 || (tstate->c_profilefunc != NULL));
Fred Draked0838392001-06-16 21:02:31 +00003851}
3852
Guido van Rossumb209a111997-04-29 18:18:01 +00003853PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003854PyEval_GetBuiltins(void)
Guido van Rossum6135a871995-01-09 17:53:26 +00003855{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003856 PyFrameObject *current_frame = PyEval_GetFrame();
3857 if (current_frame == NULL)
3858 return PyThreadState_GET()->interp->builtins;
3859 else
3860 return current_frame->f_builtins;
Guido van Rossum6135a871995-01-09 17:53:26 +00003861}
3862
Guido van Rossumb209a111997-04-29 18:18:01 +00003863PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003864PyEval_GetLocals(void)
Guido van Rossum5b722181993-03-30 17:46:03 +00003865{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003866 PyFrameObject *current_frame = PyEval_GetFrame();
3867 if (current_frame == NULL)
3868 return NULL;
3869 PyFrame_FastToLocals(current_frame);
3870 return current_frame->f_locals;
Guido van Rossum5b722181993-03-30 17:46:03 +00003871}
3872
Guido van Rossumb209a111997-04-29 18:18:01 +00003873PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003874PyEval_GetGlobals(void)
Guido van Rossum3f5da241990-12-20 15:06:42 +00003875{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003876 PyFrameObject *current_frame = PyEval_GetFrame();
3877 if (current_frame == NULL)
3878 return NULL;
3879 else
3880 return current_frame->f_globals;
Guido van Rossum3f5da241990-12-20 15:06:42 +00003881}
3882
Guido van Rossum6297a7a2003-02-19 15:53:17 +00003883PyFrameObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003884PyEval_GetFrame(void)
Guido van Rossume59214e1994-08-30 08:01:59 +00003885{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003886 PyThreadState *tstate = PyThreadState_GET();
3887 return _PyThreadState_GetFrame(tstate);
Guido van Rossume59214e1994-08-30 08:01:59 +00003888}
3889
Guido van Rossum6135a871995-01-09 17:53:26 +00003890int
Tim Peters5ba58662001-07-16 02:29:45 +00003891PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
Jeremy Hylton061d1062001-03-22 02:32:48 +00003892{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003893 PyFrameObject *current_frame = PyEval_GetFrame();
3894 int result = cf->cf_flags != 0;
Tim Peters5ba58662001-07-16 02:29:45 +00003895
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003896 if (current_frame != NULL) {
3897 const int codeflags = current_frame->f_code->co_flags;
3898 const int compilerflags = codeflags & PyCF_MASK;
3899 if (compilerflags) {
3900 result = 1;
3901 cf->cf_flags |= compilerflags;
3902 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00003903#if 0 /* future keyword */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003904 if (codeflags & CO_GENERATOR_ALLOWED) {
3905 result = 1;
3906 cf->cf_flags |= CO_GENERATOR_ALLOWED;
3907 }
Neil Schemenauerc24ea082002-03-22 23:53:36 +00003908#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003909 }
3910 return result;
Jeremy Hylton061d1062001-03-22 02:32:48 +00003911}
3912
Guido van Rossum3f5da241990-12-20 15:06:42 +00003913
Guido van Rossum681d79a1995-07-18 14:51:37 +00003914/* External interface to call any callable object.
Antoine Pitrou8689a102010-04-01 16:53:15 +00003915 The arg must be a tuple or NULL. The kw must be a dict or NULL. */
Guido van Rossume59214e1994-08-30 08:01:59 +00003916
Guido van Rossumb209a111997-04-29 18:18:01 +00003917PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00003918PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw)
Guido van Rossum681d79a1995-07-18 14:51:37 +00003919{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003920 PyObject *result;
Guido van Rossum681d79a1995-07-18 14:51:37 +00003921
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003922 if (arg == NULL) {
3923 arg = PyTuple_New(0);
3924 if (arg == NULL)
3925 return NULL;
3926 }
3927 else if (!PyTuple_Check(arg)) {
3928 PyErr_SetString(PyExc_TypeError,
3929 "argument list must be a tuple");
3930 return NULL;
3931 }
3932 else
3933 Py_INCREF(arg);
Guido van Rossum681d79a1995-07-18 14:51:37 +00003934
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003935 if (kw != NULL && !PyDict_Check(kw)) {
3936 PyErr_SetString(PyExc_TypeError,
3937 "keyword list must be a dictionary");
3938 Py_DECREF(arg);
3939 return NULL;
3940 }
Guido van Rossume3e61c11995-08-04 04:14:47 +00003941
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003942 result = PyObject_Call(func, arg, kw);
3943 Py_DECREF(arg);
3944 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00003945}
3946
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00003947const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003948PyEval_GetFuncName(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00003949{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003950 if (PyMethod_Check(func))
3951 return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func));
3952 else if (PyFunction_Check(func))
3953 return _PyUnicode_AsString(((PyFunctionObject*)func)->func_name);
3954 else if (PyCFunction_Check(func))
3955 return ((PyCFunctionObject*)func)->m_ml->ml_name;
3956 else
3957 return func->ob_type->tp_name;
Jeremy Hylton512a2372001-04-11 13:52:29 +00003958}
3959
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00003960const char *
Tim Peters6d6c1a32001-08-02 04:15:00 +00003961PyEval_GetFuncDesc(PyObject *func)
Jeremy Hylton512a2372001-04-11 13:52:29 +00003962{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003963 if (PyMethod_Check(func))
3964 return "()";
3965 else if (PyFunction_Check(func))
3966 return "()";
3967 else if (PyCFunction_Check(func))
3968 return "()";
3969 else
3970 return " object";
Jeremy Hylton512a2372001-04-11 13:52:29 +00003971}
3972
Neal Norwitzaddfe0c2002-11-10 14:33:26 +00003973static void
Jeremy Hylton192690e2002-08-16 18:36:11 +00003974err_args(PyObject *func, int flags, int nargs)
3975{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003976 if (flags & METH_NOARGS)
3977 PyErr_Format(PyExc_TypeError,
3978 "%.200s() takes no arguments (%d given)",
3979 ((PyCFunctionObject *)func)->m_ml->ml_name,
3980 nargs);
3981 else
3982 PyErr_Format(PyExc_TypeError,
3983 "%.200s() takes exactly one argument (%d given)",
3984 ((PyCFunctionObject *)func)->m_ml->ml_name,
3985 nargs);
Jeremy Hylton192690e2002-08-16 18:36:11 +00003986}
3987
Armin Rigo1c2d7e52005-09-20 18:34:01 +00003988#define C_TRACE(x, call) \
Nicholas Bastind858a772004-06-25 23:31:06 +00003989if (tstate->use_tracing && tstate->c_profilefunc) { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00003990 if (call_trace(tstate->c_profilefunc, \
3991 tstate->c_profileobj, \
3992 tstate->frame, PyTrace_C_CALL, \
3993 func)) { \
3994 x = NULL; \
3995 } \
3996 else { \
3997 x = call; \
3998 if (tstate->c_profilefunc != NULL) { \
3999 if (x == NULL) { \
4000 call_trace_protected(tstate->c_profilefunc, \
4001 tstate->c_profileobj, \
4002 tstate->frame, PyTrace_C_EXCEPTION, \
4003 func); \
4004 /* XXX should pass (type, value, tb) */ \
4005 } else { \
4006 if (call_trace(tstate->c_profilefunc, \
4007 tstate->c_profileobj, \
4008 tstate->frame, PyTrace_C_RETURN, \
4009 func)) { \
4010 Py_DECREF(x); \
4011 x = NULL; \
4012 } \
4013 } \
4014 } \
4015 } \
Nicholas Bastind858a772004-06-25 23:31:06 +00004016} else { \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004017 x = call; \
4018 }
Nicholas Bastinc69ebe82004-03-24 21:57:10 +00004019
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004020static PyObject *
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00004021call_function(PyObject ***pp_stack, int oparg
4022#ifdef WITH_TSC
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004023 , uint64* pintr0, uint64* pintr1
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00004024#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004025 )
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004026{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004027 int na = oparg & 0xff;
4028 int nk = (oparg>>8) & 0xff;
4029 int n = na + 2 * nk;
4030 PyObject **pfunc = (*pp_stack) - n - 1;
4031 PyObject *func = *pfunc;
4032 PyObject *x, *w;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004033
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004034 /* Always dispatch PyCFunction first, because these are
4035 presumed to be the most frequent callable object.
4036 */
4037 if (PyCFunction_Check(func) && nk == 0) {
4038 int flags = PyCFunction_GET_FLAGS(func);
4039 PyThreadState *tstate = PyThreadState_GET();
Raymond Hettingera7f56bc2004-06-26 04:34:33 +00004040
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004041 PCALL(PCALL_CFUNCTION);
4042 if (flags & (METH_NOARGS | METH_O)) {
4043 PyCFunction meth = PyCFunction_GET_FUNCTION(func);
4044 PyObject *self = PyCFunction_GET_SELF(func);
4045 if (flags & METH_NOARGS && na == 0) {
4046 C_TRACE(x, (*meth)(self,NULL));
4047 }
4048 else if (flags & METH_O && na == 1) {
4049 PyObject *arg = EXT_POP(*pp_stack);
4050 C_TRACE(x, (*meth)(self,arg));
4051 Py_DECREF(arg);
4052 }
4053 else {
4054 err_args(func, flags, na);
4055 x = NULL;
4056 }
4057 }
4058 else {
4059 PyObject *callargs;
4060 callargs = load_args(pp_stack, na);
4061 READ_TIMESTAMP(*pintr0);
4062 C_TRACE(x, PyCFunction_Call(func,callargs,NULL));
4063 READ_TIMESTAMP(*pintr1);
4064 Py_XDECREF(callargs);
4065 }
4066 } else {
4067 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) {
4068 /* optimize access to bound methods */
4069 PyObject *self = PyMethod_GET_SELF(func);
4070 PCALL(PCALL_METHOD);
4071 PCALL(PCALL_BOUND_METHOD);
4072 Py_INCREF(self);
4073 func = PyMethod_GET_FUNCTION(func);
4074 Py_INCREF(func);
4075 Py_DECREF(*pfunc);
4076 *pfunc = self;
4077 na++;
4078 n++;
4079 } else
4080 Py_INCREF(func);
4081 READ_TIMESTAMP(*pintr0);
4082 if (PyFunction_Check(func))
4083 x = fast_function(func, pp_stack, n, na, nk);
4084 else
4085 x = do_call(func, pp_stack, na, nk);
4086 READ_TIMESTAMP(*pintr1);
4087 Py_DECREF(func);
4088 }
Tim Peters8a5c3c72004-04-05 19:36:21 +00004089
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004090 /* Clear the stack of the function object. Also removes
4091 the arguments in case they weren't consumed already
4092 (fast_function() and err_args() leave them on the stack).
4093 */
4094 while ((*pp_stack) > pfunc) {
4095 w = EXT_POP(*pp_stack);
4096 Py_DECREF(w);
4097 PCALL(PCALL_POP);
4098 }
4099 return x;
Jeremy Hyltone8c04322002-08-16 17:47:26 +00004100}
4101
Jeremy Hylton192690e2002-08-16 18:36:11 +00004102/* The fast_function() function optimize calls for which no argument
Jeremy Hylton52820442001-01-03 23:52:36 +00004103 tuple is necessary; the objects are passed directly from the stack.
Jeremy Hylton985eba52003-02-05 23:13:00 +00004104 For the simplest case -- a function that takes only positional
4105 arguments and is called with only positional arguments -- it
4106 inlines the most primitive frame setup code from
4107 PyEval_EvalCodeEx(), which vastly reduces the checks that must be
4108 done before evaluating the frame.
Jeremy Hylton52820442001-01-03 23:52:36 +00004109*/
4110
4111static PyObject *
Guido van Rossumac7be682001-01-17 15:42:30 +00004112fast_function(PyObject *func, PyObject ***pp_stack, int n, int na, int nk)
Jeremy Hylton52820442001-01-03 23:52:36 +00004113{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004114 PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func);
4115 PyObject *globals = PyFunction_GET_GLOBALS(func);
4116 PyObject *argdefs = PyFunction_GET_DEFAULTS(func);
4117 PyObject *kwdefs = PyFunction_GET_KW_DEFAULTS(func);
4118 PyObject **d = NULL;
4119 int nd = 0;
Jeremy Hylton52820442001-01-03 23:52:36 +00004120
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004121 PCALL(PCALL_FUNCTION);
4122 PCALL(PCALL_FAST_FUNCTION);
4123 if (argdefs == NULL && co->co_argcount == n &&
4124 co->co_kwonlyargcount == 0 && nk==0 &&
4125 co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) {
4126 PyFrameObject *f;
4127 PyObject *retval = NULL;
4128 PyThreadState *tstate = PyThreadState_GET();
4129 PyObject **fastlocals, **stack;
4130 int i;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004131
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004132 PCALL(PCALL_FASTER_FUNCTION);
4133 assert(globals != NULL);
4134 /* XXX Perhaps we should create a specialized
4135 PyFrame_New() that doesn't take locals, but does
4136 take builtins without sanity checking them.
4137 */
4138 assert(tstate != NULL);
4139 f = PyFrame_New(tstate, co, globals, NULL);
4140 if (f == NULL)
4141 return NULL;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004142
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004143 fastlocals = f->f_localsplus;
4144 stack = (*pp_stack) - n;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004145
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004146 for (i = 0; i < n; i++) {
4147 Py_INCREF(*stack);
4148 fastlocals[i] = *stack++;
4149 }
4150 retval = PyEval_EvalFrameEx(f,0);
4151 ++tstate->recursion_depth;
4152 Py_DECREF(f);
4153 --tstate->recursion_depth;
4154 return retval;
4155 }
4156 if (argdefs != NULL) {
4157 d = &PyTuple_GET_ITEM(argdefs, 0);
4158 nd = Py_SIZE(argdefs);
4159 }
Martin v. Löwis4d0d4712010-12-03 20:14:31 +00004160 return PyEval_EvalCodeEx((PyObject*)co, globals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004161 (PyObject *)NULL, (*pp_stack)-n, na,
4162 (*pp_stack)-2*nk, nk, d, nd, kwdefs,
4163 PyFunction_GET_CLOSURE(func));
Jeremy Hylton52820442001-01-03 23:52:36 +00004164}
4165
4166static PyObject *
Ka-Ping Yee20579702001-01-15 22:14:16 +00004167update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack,
4168 PyObject *func)
Jeremy Hylton52820442001-01-03 23:52:36 +00004169{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004170 PyObject *kwdict = NULL;
4171 if (orig_kwdict == NULL)
4172 kwdict = PyDict_New();
4173 else {
4174 kwdict = PyDict_Copy(orig_kwdict);
4175 Py_DECREF(orig_kwdict);
4176 }
4177 if (kwdict == NULL)
4178 return NULL;
4179 while (--nk >= 0) {
4180 int err;
4181 PyObject *value = EXT_POP(*pp_stack);
4182 PyObject *key = EXT_POP(*pp_stack);
4183 if (PyDict_GetItem(kwdict, key) != NULL) {
4184 PyErr_Format(PyExc_TypeError,
4185 "%.200s%s got multiple values "
4186 "for keyword argument '%U'",
4187 PyEval_GetFuncName(func),
4188 PyEval_GetFuncDesc(func),
4189 key);
4190 Py_DECREF(key);
4191 Py_DECREF(value);
4192 Py_DECREF(kwdict);
4193 return NULL;
4194 }
4195 err = PyDict_SetItem(kwdict, key, value);
4196 Py_DECREF(key);
4197 Py_DECREF(value);
4198 if (err) {
4199 Py_DECREF(kwdict);
4200 return NULL;
4201 }
4202 }
4203 return kwdict;
Jeremy Hylton52820442001-01-03 23:52:36 +00004204}
4205
4206static PyObject *
4207update_star_args(int nstack, int nstar, PyObject *stararg,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004208 PyObject ***pp_stack)
Jeremy Hylton52820442001-01-03 23:52:36 +00004209{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004210 PyObject *callargs, *w;
Jeremy Hylton52820442001-01-03 23:52:36 +00004211
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004212 callargs = PyTuple_New(nstack + nstar);
4213 if (callargs == NULL) {
4214 return NULL;
4215 }
4216 if (nstar) {
4217 int i;
4218 for (i = 0; i < nstar; i++) {
4219 PyObject *a = PyTuple_GET_ITEM(stararg, i);
4220 Py_INCREF(a);
4221 PyTuple_SET_ITEM(callargs, nstack + i, a);
4222 }
4223 }
4224 while (--nstack >= 0) {
4225 w = EXT_POP(*pp_stack);
4226 PyTuple_SET_ITEM(callargs, nstack, w);
4227 }
4228 return callargs;
Jeremy Hylton52820442001-01-03 23:52:36 +00004229}
4230
4231static PyObject *
4232load_args(PyObject ***pp_stack, int na)
4233{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004234 PyObject *args = PyTuple_New(na);
4235 PyObject *w;
Jeremy Hylton52820442001-01-03 23:52:36 +00004236
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004237 if (args == NULL)
4238 return NULL;
4239 while (--na >= 0) {
4240 w = EXT_POP(*pp_stack);
4241 PyTuple_SET_ITEM(args, na, w);
4242 }
4243 return args;
Jeremy Hylton52820442001-01-03 23:52:36 +00004244}
4245
4246static PyObject *
4247do_call(PyObject *func, PyObject ***pp_stack, int na, int nk)
4248{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004249 PyObject *callargs = NULL;
4250 PyObject *kwdict = NULL;
4251 PyObject *result = NULL;
Jeremy Hylton52820442001-01-03 23:52:36 +00004252
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004253 if (nk > 0) {
4254 kwdict = update_keyword_args(NULL, nk, pp_stack, func);
4255 if (kwdict == NULL)
4256 goto call_fail;
4257 }
4258 callargs = load_args(pp_stack, na);
4259 if (callargs == NULL)
4260 goto call_fail;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004261#ifdef CALL_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004262 /* At this point, we have to look at the type of func to
4263 update the call stats properly. Do it here so as to avoid
4264 exposing the call stats machinery outside ceval.c
4265 */
4266 if (PyFunction_Check(func))
4267 PCALL(PCALL_FUNCTION);
4268 else if (PyMethod_Check(func))
4269 PCALL(PCALL_METHOD);
4270 else if (PyType_Check(func))
4271 PCALL(PCALL_TYPE);
4272 else if (PyCFunction_Check(func))
4273 PCALL(PCALL_CFUNCTION);
4274 else
4275 PCALL(PCALL_OTHER);
Jeremy Hylton985eba52003-02-05 23:13:00 +00004276#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004277 if (PyCFunction_Check(func)) {
4278 PyThreadState *tstate = PyThreadState_GET();
4279 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
4280 }
4281 else
4282 result = PyObject_Call(func, callargs, kwdict);
Thomas Wouters7ce29ca2007-09-19 21:56:32 +00004283call_fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004284 Py_XDECREF(callargs);
4285 Py_XDECREF(kwdict);
4286 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004287}
4288
4289static PyObject *
4290ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
4291{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004292 int nstar = 0;
4293 PyObject *callargs = NULL;
4294 PyObject *stararg = NULL;
4295 PyObject *kwdict = NULL;
4296 PyObject *result = NULL;
Jeremy Hylton52820442001-01-03 23:52:36 +00004297
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004298 if (flags & CALL_FLAG_KW) {
4299 kwdict = EXT_POP(*pp_stack);
4300 if (!PyDict_Check(kwdict)) {
4301 PyObject *d;
4302 d = PyDict_New();
4303 if (d == NULL)
4304 goto ext_call_fail;
4305 if (PyDict_Update(d, kwdict) != 0) {
4306 Py_DECREF(d);
4307 /* PyDict_Update raises attribute
4308 * error (percolated from an attempt
4309 * to get 'keys' attribute) instead of
4310 * a type error if its second argument
4311 * is not a mapping.
4312 */
4313 if (PyErr_ExceptionMatches(PyExc_AttributeError)) {
4314 PyErr_Format(PyExc_TypeError,
4315 "%.200s%.200s argument after ** "
4316 "must be a mapping, not %.200s",
4317 PyEval_GetFuncName(func),
4318 PyEval_GetFuncDesc(func),
4319 kwdict->ob_type->tp_name);
4320 }
4321 goto ext_call_fail;
4322 }
4323 Py_DECREF(kwdict);
4324 kwdict = d;
4325 }
4326 }
4327 if (flags & CALL_FLAG_VAR) {
4328 stararg = EXT_POP(*pp_stack);
4329 if (!PyTuple_Check(stararg)) {
4330 PyObject *t = NULL;
4331 t = PySequence_Tuple(stararg);
4332 if (t == NULL) {
4333 if (PyErr_ExceptionMatches(PyExc_TypeError)) {
4334 PyErr_Format(PyExc_TypeError,
4335 "%.200s%.200s argument after * "
Victor Stinner0a5f65a2011-03-22 01:09:21 +01004336 "must be a sequence, not %.200s",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004337 PyEval_GetFuncName(func),
4338 PyEval_GetFuncDesc(func),
4339 stararg->ob_type->tp_name);
4340 }
4341 goto ext_call_fail;
4342 }
4343 Py_DECREF(stararg);
4344 stararg = t;
4345 }
4346 nstar = PyTuple_GET_SIZE(stararg);
4347 }
4348 if (nk > 0) {
4349 kwdict = update_keyword_args(kwdict, nk, pp_stack, func);
4350 if (kwdict == NULL)
4351 goto ext_call_fail;
4352 }
4353 callargs = update_star_args(na, nstar, stararg, pp_stack);
4354 if (callargs == NULL)
4355 goto ext_call_fail;
Jeremy Hylton985eba52003-02-05 23:13:00 +00004356#ifdef CALL_PROFILE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004357 /* At this point, we have to look at the type of func to
4358 update the call stats properly. Do it here so as to avoid
4359 exposing the call stats machinery outside ceval.c
4360 */
4361 if (PyFunction_Check(func))
4362 PCALL(PCALL_FUNCTION);
4363 else if (PyMethod_Check(func))
4364 PCALL(PCALL_METHOD);
4365 else if (PyType_Check(func))
4366 PCALL(PCALL_TYPE);
4367 else if (PyCFunction_Check(func))
4368 PCALL(PCALL_CFUNCTION);
4369 else
4370 PCALL(PCALL_OTHER);
Jeremy Hylton985eba52003-02-05 23:13:00 +00004371#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004372 if (PyCFunction_Check(func)) {
4373 PyThreadState *tstate = PyThreadState_GET();
4374 C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
4375 }
4376 else
4377 result = PyObject_Call(func, callargs, kwdict);
Thomas Woutersce272b62007-09-19 21:19:28 +00004378ext_call_fail:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004379 Py_XDECREF(callargs);
4380 Py_XDECREF(kwdict);
4381 Py_XDECREF(stararg);
4382 return result;
Jeremy Hylton52820442001-01-03 23:52:36 +00004383}
4384
Guido van Rossum38fff8c2006-03-07 18:50:55 +00004385/* Extract a slice index from a PyInt or PyLong or an object with the
4386 nb_index slot defined, and store in *pi.
4387 Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
4388 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 +00004389 Return 0 on error, 1 on success.
Tim Peterscb479e72001-12-16 19:11:44 +00004390*/
Tim Petersb5196382001-12-16 19:44:20 +00004391/* Note: If v is NULL, return success without storing into *pi. This
4392 is because_PyEval_SliceIndex() is called by apply_slice(), which can be
4393 called by the SLICE opcode with v and/or w equal to NULL.
Tim Peterscb479e72001-12-16 19:11:44 +00004394*/
Guido van Rossum20c6add2000-05-08 14:06:50 +00004395int
Martin v. Löwis18e16552006-02-15 17:27:45 +00004396_PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004397{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004398 if (v != NULL) {
4399 Py_ssize_t x;
4400 if (PyIndex_Check(v)) {
4401 x = PyNumber_AsSsize_t(v, NULL);
4402 if (x == -1 && PyErr_Occurred())
4403 return 0;
4404 }
4405 else {
4406 PyErr_SetString(PyExc_TypeError,
4407 "slice indices must be integers or "
4408 "None or have an __index__ method");
4409 return 0;
4410 }
4411 *pi = x;
4412 }
4413 return 1;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004414}
4415
Guido van Rossum486364b2007-06-30 05:01:58 +00004416#define CANNOT_CATCH_MSG "catching classes that do not inherit from "\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004417 "BaseException is not allowed"
Brett Cannonf74225d2007-02-26 21:10:16 +00004418
Guido van Rossumb209a111997-04-29 18:18:01 +00004419static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004420cmp_outcome(int op, register PyObject *v, register PyObject *w)
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004421{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004422 int res = 0;
4423 switch (op) {
4424 case PyCmp_IS:
4425 res = (v == w);
4426 break;
4427 case PyCmp_IS_NOT:
4428 res = (v != w);
4429 break;
4430 case PyCmp_IN:
4431 res = PySequence_Contains(w, v);
4432 if (res < 0)
4433 return NULL;
4434 break;
4435 case PyCmp_NOT_IN:
4436 res = PySequence_Contains(w, v);
4437 if (res < 0)
4438 return NULL;
4439 res = !res;
4440 break;
4441 case PyCmp_EXC_MATCH:
4442 if (PyTuple_Check(w)) {
4443 Py_ssize_t i, length;
4444 length = PyTuple_Size(w);
4445 for (i = 0; i < length; i += 1) {
4446 PyObject *exc = PyTuple_GET_ITEM(w, i);
4447 if (!PyExceptionClass_Check(exc)) {
4448 PyErr_SetString(PyExc_TypeError,
4449 CANNOT_CATCH_MSG);
4450 return NULL;
4451 }
4452 }
4453 }
4454 else {
4455 if (!PyExceptionClass_Check(w)) {
4456 PyErr_SetString(PyExc_TypeError,
4457 CANNOT_CATCH_MSG);
4458 return NULL;
4459 }
4460 }
4461 res = PyErr_GivenExceptionMatches(v, w);
4462 break;
4463 default:
4464 return PyObject_RichCompare(v, w, op);
4465 }
4466 v = res ? Py_True : Py_False;
4467 Py_INCREF(v);
4468 return v;
Guido van Rossum10dc2e81990-11-18 17:27:39 +00004469}
4470
Thomas Wouters52152252000-08-17 22:55:00 +00004471static PyObject *
4472import_from(PyObject *v, PyObject *name)
Guido van Rossume9736fc1990-11-18 17:33:06 +00004473{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004474 PyObject *x;
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00004475
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004476 x = PyObject_GetAttr(v, name);
4477 if (x == NULL && PyErr_ExceptionMatches(PyExc_AttributeError)) {
4478 PyErr_Format(PyExc_ImportError, "cannot import name %S", name);
4479 }
4480 return x;
Thomas Wouters52152252000-08-17 22:55:00 +00004481}
Guido van Rossumac7be682001-01-17 15:42:30 +00004482
Thomas Wouters52152252000-08-17 22:55:00 +00004483static int
4484import_all_from(PyObject *locals, PyObject *v)
4485{
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02004486 _Py_IDENTIFIER(__all__);
4487 _Py_IDENTIFIER(__dict__);
4488 PyObject *all = _PyObject_GetAttrId(v, &PyId___all__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004489 PyObject *dict, *name, *value;
4490 int skip_leading_underscores = 0;
4491 int pos, err;
Thomas Wouters52152252000-08-17 22:55:00 +00004492
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004493 if (all == NULL) {
4494 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
4495 return -1; /* Unexpected error */
4496 PyErr_Clear();
Martin v. Löwis1c67dd92011-10-14 15:16:45 +02004497 dict = _PyObject_GetAttrId(v, &PyId___dict__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004498 if (dict == NULL) {
4499 if (!PyErr_ExceptionMatches(PyExc_AttributeError))
4500 return -1;
4501 PyErr_SetString(PyExc_ImportError,
4502 "from-import-* object has no __dict__ and no __all__");
4503 return -1;
4504 }
4505 all = PyMapping_Keys(dict);
4506 Py_DECREF(dict);
4507 if (all == NULL)
4508 return -1;
4509 skip_leading_underscores = 1;
4510 }
Guido van Rossum18d4d8f2001-01-12 16:24:03 +00004511
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004512 for (pos = 0, err = 0; ; pos++) {
4513 name = PySequence_GetItem(all, pos);
4514 if (name == NULL) {
4515 if (!PyErr_ExceptionMatches(PyExc_IndexError))
4516 err = -1;
4517 else
4518 PyErr_Clear();
4519 break;
4520 }
4521 if (skip_leading_underscores &&
4522 PyUnicode_Check(name) &&
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004523 PyUnicode_READY(name) != -1 &&
4524 PyUnicode_READ_CHAR(name, 0) == '_')
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004525 {
4526 Py_DECREF(name);
4527 continue;
4528 }
4529 value = PyObject_GetAttr(v, name);
4530 if (value == NULL)
4531 err = -1;
4532 else if (PyDict_CheckExact(locals))
4533 err = PyDict_SetItem(locals, name, value);
4534 else
4535 err = PyObject_SetItem(locals, name, value);
4536 Py_DECREF(name);
4537 Py_XDECREF(value);
4538 if (err != 0)
4539 break;
4540 }
4541 Py_DECREF(all);
4542 return err;
Guido van Rossume9736fc1990-11-18 17:33:06 +00004543}
4544
Guido van Rossumac7be682001-01-17 15:42:30 +00004545static void
Neal Norwitzda059e32007-08-26 05:33:45 +00004546format_exc_check_arg(PyObject *exc, const char *format_str, PyObject *obj)
Paul Prescode68140d2000-08-30 20:25:01 +00004547{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004548 const char *obj_str;
Paul Prescode68140d2000-08-30 20:25:01 +00004549
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004550 if (!obj)
4551 return;
Paul Prescode68140d2000-08-30 20:25:01 +00004552
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004553 obj_str = _PyUnicode_AsString(obj);
4554 if (!obj_str)
4555 return;
Paul Prescode68140d2000-08-30 20:25:01 +00004556
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004557 PyErr_Format(exc, format_str, obj_str);
Paul Prescode68140d2000-08-30 20:25:01 +00004558}
Guido van Rossum950361c1997-01-24 13:49:28 +00004559
Amaury Forgeot d'Arcba117ef2010-09-10 21:39:53 +00004560static void
4561format_exc_unbound(PyCodeObject *co, int oparg)
4562{
4563 PyObject *name;
4564 /* Don't stomp existing exception */
4565 if (PyErr_Occurred())
4566 return;
4567 if (oparg < PyTuple_GET_SIZE(co->co_cellvars)) {
4568 name = PyTuple_GET_ITEM(co->co_cellvars,
4569 oparg);
4570 format_exc_check_arg(
4571 PyExc_UnboundLocalError,
4572 UNBOUNDLOCAL_ERROR_MSG,
4573 name);
4574 } else {
4575 name = PyTuple_GET_ITEM(co->co_freevars, oparg -
4576 PyTuple_GET_SIZE(co->co_cellvars));
4577 format_exc_check_arg(PyExc_NameError,
4578 UNBOUNDFREE_ERROR_MSG, name);
4579 }
4580}
4581
Victor Stinnerd2a915d2011-10-02 20:34:20 +02004582static PyObject *
4583unicode_concatenate(PyObject *v, PyObject *w,
4584 PyFrameObject *f, unsigned char *next_instr)
4585{
4586 PyObject *res;
4587 if (Py_REFCNT(v) == 2) {
4588 /* In the common case, there are 2 references to the value
4589 * stored in 'variable' when the += is performed: one on the
4590 * value stack (in 'v') and one still stored in the
4591 * 'variable'. We try to delete the variable now to reduce
4592 * the refcnt to 1.
4593 */
4594 switch (*next_instr) {
4595 case STORE_FAST:
4596 {
4597 int oparg = PEEKARG();
4598 PyObject **fastlocals = f->f_localsplus;
4599 if (GETLOCAL(oparg) == v)
4600 SETLOCAL(oparg, NULL);
4601 break;
4602 }
4603 case STORE_DEREF:
4604 {
4605 PyObject **freevars = (f->f_localsplus +
4606 f->f_code->co_nlocals);
4607 PyObject *c = freevars[PEEKARG()];
4608 if (PyCell_GET(c) == v)
4609 PyCell_Set(c, NULL);
4610 break;
4611 }
4612 case STORE_NAME:
4613 {
4614 PyObject *names = f->f_code->co_names;
4615 PyObject *name = GETITEM(names, PEEKARG());
4616 PyObject *locals = f->f_locals;
4617 if (PyDict_CheckExact(locals) &&
4618 PyDict_GetItem(locals, name) == v) {
4619 if (PyDict_DelItem(locals, name) != 0) {
4620 PyErr_Clear();
4621 }
4622 }
4623 break;
4624 }
4625 }
4626 }
4627 res = v;
4628 PyUnicode_Append(&res, w);
4629 return res;
4630}
4631
Guido van Rossum950361c1997-01-24 13:49:28 +00004632#ifdef DYNAMIC_EXECUTION_PROFILE
4633
Skip Montanarof118cb12001-10-15 20:51:38 +00004634static PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004635getarray(long a[256])
Guido van Rossum950361c1997-01-24 13:49:28 +00004636{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004637 int i;
4638 PyObject *l = PyList_New(256);
4639 if (l == NULL) return NULL;
4640 for (i = 0; i < 256; i++) {
4641 PyObject *x = PyLong_FromLong(a[i]);
4642 if (x == NULL) {
4643 Py_DECREF(l);
4644 return NULL;
4645 }
4646 PyList_SetItem(l, i, x);
4647 }
4648 for (i = 0; i < 256; i++)
4649 a[i] = 0;
4650 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00004651}
4652
4653PyObject *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +00004654_Py_GetDXProfile(PyObject *self, PyObject *args)
Guido van Rossum950361c1997-01-24 13:49:28 +00004655{
4656#ifndef DXPAIRS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004657 return getarray(dxp);
Guido van Rossum950361c1997-01-24 13:49:28 +00004658#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00004659 int i;
4660 PyObject *l = PyList_New(257);
4661 if (l == NULL) return NULL;
4662 for (i = 0; i < 257; i++) {
4663 PyObject *x = getarray(dxpairs[i]);
4664 if (x == NULL) {
4665 Py_DECREF(l);
4666 return NULL;
4667 }
4668 PyList_SetItem(l, i, x);
4669 }
4670 return l;
Guido van Rossum950361c1997-01-24 13:49:28 +00004671#endif
4672}
4673
4674#endif