1991-02-19 12:39:46 +00:00
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
/* Execute compiled code */
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1995-07-18 14:51:37 +00:00
|
|
|
/* XXX TO DO:
|
|
|
|
XXX speed up searching for keywords by using a dictionary
|
|
|
|
XXX document it!
|
|
|
|
*/
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
#include "Python.h"
|
1990-11-18 17:27:39 +00:00
|
|
|
|
2005-10-20 19:59:25 +00:00
|
|
|
#include "code.h"
|
1990-12-20 15:06:42 +00:00
|
|
|
#include "frameobject.h"
|
1992-08-05 19:58:53 +00:00
|
|
|
#include "eval.h"
|
1990-11-18 17:27:39 +00:00
|
|
|
#include "opcode.h"
|
2001-08-02 04:15:00 +00:00
|
|
|
#include "structmember.h"
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1993-11-05 10:22:19 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
|
2004-08-29 15:51:52 +00:00
|
|
|
#ifndef WITH_TSC
|
2005-01-18 15:56:11 +00:00
|
|
|
|
|
|
|
#define READ_TIMESTAMP(var)
|
|
|
|
|
|
|
|
#else
|
2004-06-08 08:17:44 +00:00
|
|
|
|
|
|
|
typedef unsigned long long uint64;
|
|
|
|
|
2004-08-12 18:19:17 +00:00
|
|
|
#if defined(__ppc__) /* <- Don't know if this is the correct symbol; this
|
|
|
|
section should work for GCC on any PowerPC platform,
|
|
|
|
irrespective of OS. POWER? Who knows :-) */
|
|
|
|
|
2005-01-18 15:56:11 +00:00
|
|
|
#define READ_TIMESTAMP(var) ppc_getcounter(&var)
|
2004-08-12 18:19:17 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
ppc_getcounter(uint64 *v)
|
|
|
|
{
|
|
|
|
register unsigned long tbu, tb, tbu2;
|
|
|
|
|
|
|
|
loop:
|
|
|
|
asm volatile ("mftbu %0" : "=r" (tbu) );
|
|
|
|
asm volatile ("mftb %0" : "=r" (tb) );
|
|
|
|
asm volatile ("mftbu %0" : "=r" (tbu2));
|
|
|
|
if (__builtin_expect(tbu != tbu2, 0)) goto loop;
|
|
|
|
|
|
|
|
/* The slightly peculiar way of writing the next lines is
|
|
|
|
compiled better by GCC than any other way I tried. */
|
|
|
|
((long*)(v))[0] = tbu;
|
|
|
|
((long*)(v))[1] = tb;
|
|
|
|
}
|
|
|
|
|
2005-01-18 15:56:11 +00:00
|
|
|
#else /* this is for linux/x86 (and probably any other GCC/x86 combo) */
|
2004-08-12 18:19:17 +00:00
|
|
|
|
2005-01-18 15:56:11 +00:00
|
|
|
#define READ_TIMESTAMP(val) \
|
|
|
|
__asm__ __volatile__("rdtsc" : "=A" (val))
|
2004-08-12 18:19:17 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-06-08 08:17:44 +00:00
|
|
|
void dump_tsc(int opcode, int ticked, uint64 inst0, uint64 inst1,
|
|
|
|
uint64 loop0, uint64 loop1, uint64 intr0, uint64 intr1)
|
|
|
|
{
|
|
|
|
uint64 intr, inst, loop;
|
|
|
|
PyThreadState *tstate = PyThreadState_Get();
|
|
|
|
if (!tstate->interp->tscdump)
|
|
|
|
return;
|
|
|
|
intr = intr1 - intr0;
|
|
|
|
inst = inst1 - inst0 - intr;
|
|
|
|
loop = loop1 - loop0 - intr;
|
|
|
|
fprintf(stderr, "opcode=%03d t=%d inst=%06lld loop=%06lld\n",
|
|
|
|
opcode, ticked, inst, loop);
|
|
|
|
}
|
2004-08-12 18:19:17 +00:00
|
|
|
|
2004-06-08 08:17:44 +00:00
|
|
|
#endif
|
|
|
|
|
1992-08-12 15:35:34 +00:00
|
|
|
/* Turn this on if your compiler chokes on the big switch: */
|
1995-01-02 19:04:15 +00:00
|
|
|
/* #define CASE_TOO_BIG 1 */
|
1992-08-12 15:35:34 +00:00
|
|
|
|
1996-12-30 16:17:54 +00:00
|
|
|
#ifdef Py_DEBUG
|
1992-01-12 02:29:51 +00:00
|
|
|
/* For debugging the interpreter: */
|
|
|
|
#define LLTRACE 1 /* Low-level trace feature */
|
|
|
|
#define CHECKEXC 1 /* Double-check exception checking */
|
1990-11-18 17:27:39 +00:00
|
|
|
#endif
|
|
|
|
|
2001-01-03 23:52:36 +00:00
|
|
|
typedef PyObject *(*callproc)(PyObject *, PyObject *, PyObject *);
|
1993-03-30 17:46:03 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
/* Forward declarations */
|
2004-06-08 08:17:44 +00:00
|
|
|
#ifdef WITH_TSC
|
|
|
|
static PyObject *call_function(PyObject ***, int, uint64*, uint64*);
|
|
|
|
#else
|
2002-08-16 17:47:26 +00:00
|
|
|
static PyObject *call_function(PyObject ***, int);
|
2004-06-08 08:17:44 +00:00
|
|
|
#endif
|
2001-01-03 23:52:36 +00:00
|
|
|
static PyObject *fast_function(PyObject *, PyObject ***, int, int, int);
|
|
|
|
static PyObject *do_call(PyObject *, PyObject ***, int, int);
|
|
|
|
static PyObject *ext_do_call(PyObject *, PyObject ***, int, int, int);
|
2001-01-17 15:42:30 +00:00
|
|
|
static PyObject *update_keyword_args(PyObject *, int, PyObject ***,PyObject *);
|
2001-01-15 22:14:16 +00:00
|
|
|
static PyObject *update_star_args(int, int, PyObject *, PyObject ***);
|
2001-01-03 23:52:36 +00:00
|
|
|
static PyObject *load_args(PyObject ***, int);
|
|
|
|
#define CALL_FLAG_VAR 1
|
|
|
|
#define CALL_FLAG_KW 2
|
|
|
|
|
1992-03-27 17:29:15 +00:00
|
|
|
#ifdef LLTRACE
|
2006-02-27 22:32:47 +00:00
|
|
|
static int lltrace;
|
2000-07-09 03:09:57 +00:00
|
|
|
static int prtrace(PyObject *, char *);
|
1992-03-27 17:29:15 +00:00
|
|
|
#endif
|
2001-06-27 19:19:46 +00:00
|
|
|
static int call_trace(Py_tracefunc, PyObject *, PyFrameObject *,
|
|
|
|
int, PyObject *);
|
2001-10-04 19:26:43 +00:00
|
|
|
static void call_trace_protected(Py_tracefunc, PyObject *,
|
2005-09-20 18:34:01 +00:00
|
|
|
PyFrameObject *, int, PyObject *);
|
2001-06-27 19:19:46 +00:00
|
|
|
static void call_exc_trace(Py_tracefunc, PyObject *, PyFrameObject *);
|
2004-04-05 19:36:21 +00:00
|
|
|
static int maybe_call_line_trace(Py_tracefunc, PyObject *,
|
2004-03-22 19:24:58 +00:00
|
|
|
PyFrameObject *, int *, int *, int *);
|
2002-08-15 14:59:02 +00:00
|
|
|
|
2000-07-09 03:09:57 +00:00
|
|
|
static PyObject *apply_slice(PyObject *, PyObject *, PyObject *);
|
|
|
|
static int assign_slice(PyObject *, PyObject *,
|
|
|
|
PyObject *, PyObject *);
|
|
|
|
static PyObject *cmp_outcome(int, PyObject *, PyObject *);
|
2000-08-17 22:55:00 +00:00
|
|
|
static PyObject *import_from(PyObject *, PyObject *);
|
|
|
|
static int import_all_from(PyObject *, PyObject *);
|
2000-07-09 03:09:57 +00:00
|
|
|
static PyObject *build_class(PyObject *, PyObject *, PyObject *);
|
|
|
|
static int exec_statement(PyFrameObject *,
|
|
|
|
PyObject *, PyObject *, PyObject *);
|
|
|
|
static void set_exc_info(PyThreadState *, PyObject *, PyObject *, PyObject *);
|
|
|
|
static void reset_exc_info(PyThreadState *);
|
2000-08-30 20:25:01 +00:00
|
|
|
static void format_exc_check_arg(PyObject *, char *, PyObject *);
|
2004-08-06 18:43:09 +00:00
|
|
|
static PyObject *string_concatenate(PyObject *, PyObject *,
|
|
|
|
PyFrameObject *, unsigned char *);
|
1992-03-27 17:29:15 +00:00
|
|
|
|
2000-08-30 20:25:01 +00:00
|
|
|
#define NAME_ERROR_MSG \
|
2000-10-24 19:57:45 +00:00
|
|
|
"name '%.200s' is not defined"
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
#define GLOBAL_NAME_ERROR_MSG \
|
|
|
|
"global name '%.200s' is not defined"
|
2000-08-30 20:25:01 +00:00
|
|
|
#define UNBOUNDLOCAL_ERROR_MSG \
|
2000-10-24 19:57:45 +00:00
|
|
|
"local variable '%.200s' referenced before assignment"
|
2001-04-13 16:51:46 +00:00
|
|
|
#define UNBOUNDFREE_ERROR_MSG \
|
|
|
|
"free variable '%.200s' referenced before assignment" \
|
|
|
|
" in enclosing scope"
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1997-01-24 13:49:28 +00:00
|
|
|
/* Dynamic execution profile */
|
|
|
|
#ifdef DYNAMIC_EXECUTION_PROFILE
|
|
|
|
#ifdef DXPAIRS
|
|
|
|
static long dxpairs[257][256];
|
|
|
|
#define dxp dxpairs[256]
|
|
|
|
#else
|
|
|
|
static long dxp[256];
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-02-05 23:13:00 +00:00
|
|
|
/* Function call profile */
|
|
|
|
#ifdef CALL_PROFILE
|
|
|
|
#define PCALL_NUM 11
|
|
|
|
static int pcall[PCALL_NUM];
|
|
|
|
|
|
|
|
#define PCALL_ALL 0
|
|
|
|
#define PCALL_FUNCTION 1
|
|
|
|
#define PCALL_FAST_FUNCTION 2
|
|
|
|
#define PCALL_FASTER_FUNCTION 3
|
|
|
|
#define PCALL_METHOD 4
|
|
|
|
#define PCALL_BOUND_METHOD 5
|
|
|
|
#define PCALL_CFUNCTION 6
|
|
|
|
#define PCALL_TYPE 7
|
|
|
|
#define PCALL_GENERATOR 8
|
|
|
|
#define PCALL_OTHER 9
|
|
|
|
#define PCALL_POP 10
|
|
|
|
|
|
|
|
/* Notes about the statistics
|
|
|
|
|
|
|
|
PCALL_FAST stats
|
|
|
|
|
|
|
|
FAST_FUNCTION means no argument tuple needs to be created.
|
|
|
|
FASTER_FUNCTION means that the fast-path frame setup code is used.
|
|
|
|
|
|
|
|
If there is a method call where the call can be optimized by changing
|
|
|
|
the argument tuple and calling the function directly, it gets recorded
|
|
|
|
twice.
|
|
|
|
|
|
|
|
As a result, the relationship among the statistics appears to be
|
|
|
|
PCALL_ALL == PCALL_FUNCTION + PCALL_METHOD - PCALL_BOUND_METHOD +
|
|
|
|
PCALL_CFUNCTION + PCALL_TYPE + PCALL_GENERATOR + PCALL_OTHER
|
|
|
|
PCALL_FUNCTION > PCALL_FAST_FUNCTION > PCALL_FASTER_FUNCTION
|
|
|
|
PCALL_METHOD > PCALL_BOUND_METHOD
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define PCALL(POS) pcall[POS]++
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyEval_GetCallStats(PyObject *self)
|
|
|
|
{
|
2004-04-05 19:36:21 +00:00
|
|
|
return Py_BuildValue("iiiiiiiiii",
|
2003-02-05 23:13:00 +00:00
|
|
|
pcall[0], pcall[1], pcall[2], pcall[3],
|
|
|
|
pcall[4], pcall[5], pcall[6], pcall[7],
|
|
|
|
pcall[8], pcall[9]);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define PCALL(O)
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyEval_GetCallStats(PyObject *self)
|
|
|
|
{
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
return Py_None;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
|
1994-08-30 08:01:59 +00:00
|
|
|
#ifdef WITH_THREAD
|
1992-08-05 19:58:53 +00:00
|
|
|
|
1999-04-07 16:07:23 +00:00
|
|
|
#ifndef DONT_HAVE_ERRNO_H
|
1992-08-04 12:41:02 +00:00
|
|
|
#include <errno.h>
|
1999-04-07 16:07:23 +00:00
|
|
|
#endif
|
1998-10-01 20:42:43 +00:00
|
|
|
#include "pythread.h"
|
1992-08-05 19:58:53 +00:00
|
|
|
|
2003-06-28 21:53:52 +00:00
|
|
|
static PyThread_type_lock interpreter_lock = 0; /* This is the GIL */
|
1994-09-14 13:31:22 +00:00
|
|
|
static long main_thread = 0;
|
1992-08-04 12:41:02 +00:00
|
|
|
|
2004-10-11 02:40:51 +00:00
|
|
|
int
|
|
|
|
PyEval_ThreadsInitialized(void)
|
|
|
|
{
|
|
|
|
return interpreter_lock != 0;
|
|
|
|
}
|
|
|
|
|
1992-08-04 12:41:02 +00:00
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_InitThreads(void)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
|
|
|
if (interpreter_lock)
|
1993-01-06 13:36:38 +00:00
|
|
|
return;
|
1998-12-21 19:32:43 +00:00
|
|
|
interpreter_lock = PyThread_allocate_lock();
|
|
|
|
PyThread_acquire_lock(interpreter_lock, 1);
|
|
|
|
main_thread = PyThread_get_thread_ident();
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
1992-08-05 19:58:53 +00:00
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_AcquireLock(void)
|
1997-08-02 03:10:38 +00:00
|
|
|
{
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_acquire_lock(interpreter_lock, 1);
|
1997-08-02 03:10:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_ReleaseLock(void)
|
1997-08-02 03:10:38 +00:00
|
|
|
{
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_release_lock(interpreter_lock);
|
1997-08-02 03:10:38 +00:00
|
|
|
}
|
|
|
|
|
1997-07-19 19:55:50 +00:00
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_AcquireThread(PyThreadState *tstate)
|
1997-07-19 19:55:50 +00:00
|
|
|
{
|
|
|
|
if (tstate == NULL)
|
|
|
|
Py_FatalError("PyEval_AcquireThread: NULL new thread state");
|
2003-04-19 15:41:53 +00:00
|
|
|
/* Check someone has called PyEval_InitThreads() to create the lock */
|
|
|
|
assert(interpreter_lock);
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_acquire_lock(interpreter_lock, 1);
|
1997-07-19 19:55:50 +00:00
|
|
|
if (PyThreadState_Swap(tstate) != NULL)
|
|
|
|
Py_FatalError(
|
|
|
|
"PyEval_AcquireThread: non-NULL old thread state");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_ReleaseThread(PyThreadState *tstate)
|
1997-07-19 19:55:50 +00:00
|
|
|
{
|
|
|
|
if (tstate == NULL)
|
|
|
|
Py_FatalError("PyEval_ReleaseThread: NULL thread state");
|
|
|
|
if (PyThreadState_Swap(NULL) != tstate)
|
|
|
|
Py_FatalError("PyEval_ReleaseThread: wrong thread state");
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_release_lock(interpreter_lock);
|
1997-07-19 19:55:50 +00:00
|
|
|
}
|
2000-08-27 17:34:07 +00:00
|
|
|
|
|
|
|
/* This function is called from PyOS_AfterFork to ensure that newly
|
|
|
|
created child processes don't hold locks referring to threads which
|
|
|
|
are not running in the child process. (This could also be done using
|
|
|
|
pthread_atfork mechanism, at least for the pthreads implementation.) */
|
|
|
|
|
|
|
|
void
|
|
|
|
PyEval_ReInitThreads(void)
|
|
|
|
{
|
|
|
|
if (!interpreter_lock)
|
|
|
|
return;
|
|
|
|
/*XXX Can't use PyThread_free_lock here because it does too
|
|
|
|
much error-checking. Doing this cleanly would require
|
|
|
|
adding a new function to each thread_*.h. Instead, just
|
|
|
|
create a new lock and waste a little bit of memory */
|
|
|
|
interpreter_lock = PyThread_allocate_lock();
|
|
|
|
PyThread_acquire_lock(interpreter_lock, 1);
|
|
|
|
main_thread = PyThread_get_thread_ident();
|
|
|
|
}
|
1992-08-04 12:41:02 +00:00
|
|
|
#endif
|
|
|
|
|
1992-08-05 19:58:53 +00:00
|
|
|
/* Functions save_thread and restore_thread are always defined so
|
|
|
|
dynamically loaded modules needn't be compiled separately for use
|
|
|
|
with and without threads: */
|
|
|
|
|
1997-07-18 23:56:58 +00:00
|
|
|
PyThreadState *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_SaveThread(void)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-09-30 22:03:16 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_Swap(NULL);
|
|
|
|
if (tstate == NULL)
|
|
|
|
Py_FatalError("PyEval_SaveThread: NULL tstate");
|
1994-08-30 08:01:59 +00:00
|
|
|
#ifdef WITH_THREAD
|
1997-09-30 22:03:16 +00:00
|
|
|
if (interpreter_lock)
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_release_lock(interpreter_lock);
|
1992-08-04 12:41:02 +00:00
|
|
|
#endif
|
1997-09-30 22:03:16 +00:00
|
|
|
return tstate;
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_RestoreThread(PyThreadState *tstate)
|
1992-08-04 12:41:02 +00:00
|
|
|
{
|
1997-09-30 22:03:16 +00:00
|
|
|
if (tstate == NULL)
|
|
|
|
Py_FatalError("PyEval_RestoreThread: NULL tstate");
|
1994-08-30 08:01:59 +00:00
|
|
|
#ifdef WITH_THREAD
|
1992-08-04 12:41:02 +00:00
|
|
|
if (interpreter_lock) {
|
1997-09-30 22:03:16 +00:00
|
|
|
int err = errno;
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_acquire_lock(interpreter_lock, 1);
|
1992-08-04 12:41:02 +00:00
|
|
|
errno = err;
|
|
|
|
}
|
|
|
|
#endif
|
1997-09-30 22:03:16 +00:00
|
|
|
PyThreadState_Swap(tstate);
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-09-14 13:31:22 +00:00
|
|
|
/* Mechanism whereby asynchronously executing callbacks (e.g. UNIX
|
|
|
|
signal handlers or Mac I/O completion routines) can schedule calls
|
|
|
|
to a function to be called synchronously.
|
|
|
|
The synchronous function is called with one void* argument.
|
|
|
|
It should return 0 for success or -1 for failure -- failure should
|
|
|
|
be accompanied by an exception.
|
|
|
|
|
|
|
|
If registry succeeds, the registry function returns 0; if it fails
|
|
|
|
(e.g. due to too many pending calls) it returns -1 (without setting
|
|
|
|
an exception condition).
|
|
|
|
|
|
|
|
Note that because registry may occur from within signal handlers,
|
|
|
|
or other asynchronous events, calling malloc() is unsafe!
|
|
|
|
|
|
|
|
#ifdef WITH_THREAD
|
|
|
|
Any thread can schedule pending calls, but only the main thread
|
|
|
|
will execute them.
|
|
|
|
#endif
|
|
|
|
|
|
|
|
XXX WARNING! ASYNCHRONOUSLY EXECUTING CODE!
|
|
|
|
There are two possible race conditions:
|
|
|
|
(1) nested asynchronous registry calls;
|
|
|
|
(2) registry calls made while pending calls are being processed.
|
|
|
|
While (1) is very unlikely, (2) is a real possibility.
|
|
|
|
The current code is safe against (2), but not against (1).
|
|
|
|
The safety against (2) is derived from the fact that only one
|
|
|
|
thread (the main thread) ever takes things out of the queue.
|
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
XXX Darn! With the advent of thread state, we should have an array
|
|
|
|
of pending calls per thread in the thread state! Later...
|
|
|
|
*/
|
1996-07-30 16:49:37 +00:00
|
|
|
|
1994-09-14 13:31:22 +00:00
|
|
|
#define NPENDINGCALLS 32
|
|
|
|
static struct {
|
2000-07-25 12:56:38 +00:00
|
|
|
int (*func)(void *);
|
|
|
|
void *arg;
|
1994-09-14 13:31:22 +00:00
|
|
|
} pendingcalls[NPENDINGCALLS];
|
|
|
|
static volatile int pendingfirst = 0;
|
|
|
|
static volatile int pendinglast = 0;
|
1997-05-05 20:56:21 +00:00
|
|
|
static volatile int things_to_do = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
|
|
|
|
int
|
2000-07-25 12:56:38 +00:00
|
|
|
Py_AddPendingCall(int (*func)(void *), void *arg)
|
1994-09-14 13:31:22 +00:00
|
|
|
{
|
2004-07-07 17:44:12 +00:00
|
|
|
static volatile int busy = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
int i, j;
|
|
|
|
/* XXX Begin critical section */
|
|
|
|
/* XXX If you want this to be safe against nested
|
|
|
|
XXX asynchronous calls, you'll have to work harder! */
|
1994-09-29 09:45:57 +00:00
|
|
|
if (busy)
|
|
|
|
return -1;
|
|
|
|
busy = 1;
|
1994-09-14 13:31:22 +00:00
|
|
|
i = pendinglast;
|
|
|
|
j = (i + 1) % NPENDINGCALLS;
|
2002-07-17 16:57:13 +00:00
|
|
|
if (j == pendingfirst) {
|
|
|
|
busy = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
return -1; /* Queue full */
|
2002-07-17 16:57:13 +00:00
|
|
|
}
|
1994-09-14 13:31:22 +00:00
|
|
|
pendingcalls[i].func = func;
|
|
|
|
pendingcalls[i].arg = arg;
|
|
|
|
pendinglast = j;
|
2002-09-03 20:10:45 +00:00
|
|
|
|
|
|
|
_Py_Ticker = 0;
|
1997-05-05 20:56:21 +00:00
|
|
|
things_to_do = 1; /* Signal main loop */
|
1994-09-29 09:45:57 +00:00
|
|
|
busy = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
/* XXX End critical section */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1994-09-29 09:45:57 +00:00
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_MakePendingCalls(void)
|
1994-09-14 13:31:22 +00:00
|
|
|
{
|
1994-09-29 09:45:57 +00:00
|
|
|
static int busy = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
#ifdef WITH_THREAD
|
1998-12-21 19:32:43 +00:00
|
|
|
if (main_thread && PyThread_get_thread_ident() != main_thread)
|
1994-09-14 13:31:22 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
1997-05-05 20:56:21 +00:00
|
|
|
if (busy)
|
1994-09-29 09:45:57 +00:00
|
|
|
return 0;
|
|
|
|
busy = 1;
|
1997-05-05 20:56:21 +00:00
|
|
|
things_to_do = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
for (;;) {
|
|
|
|
int i;
|
2000-07-25 12:56:38 +00:00
|
|
|
int (*func)(void *);
|
|
|
|
void *arg;
|
1994-09-14 13:31:22 +00:00
|
|
|
i = pendingfirst;
|
|
|
|
if (i == pendinglast)
|
|
|
|
break; /* Queue empty */
|
|
|
|
func = pendingcalls[i].func;
|
|
|
|
arg = pendingcalls[i].arg;
|
|
|
|
pendingfirst = (i + 1) % NPENDINGCALLS;
|
1994-09-29 09:45:57 +00:00
|
|
|
if (func(arg) < 0) {
|
|
|
|
busy = 0;
|
1997-05-05 20:56:21 +00:00
|
|
|
things_to_do = 1; /* We're not done yet */
|
1994-09-14 13:31:22 +00:00
|
|
|
return -1;
|
1994-09-29 09:45:57 +00:00
|
|
|
}
|
1994-09-14 13:31:22 +00:00
|
|
|
}
|
1994-09-29 09:45:57 +00:00
|
|
|
busy = 0;
|
1994-09-14 13:31:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-31 19:23:01 +00:00
|
|
|
/* The interpreter's recursion limit */
|
|
|
|
|
2005-04-04 15:49:02 +00:00
|
|
|
#ifndef Py_DEFAULT_RECURSION_LIMIT
|
|
|
|
#define Py_DEFAULT_RECURSION_LIMIT 1000
|
|
|
|
#endif
|
|
|
|
static int recursion_limit = Py_DEFAULT_RECURSION_LIMIT;
|
|
|
|
int _Py_CheckRecursionLimit = Py_DEFAULT_RECURSION_LIMIT;
|
2000-08-31 19:23:01 +00:00
|
|
|
|
2000-09-01 11:07:19 +00:00
|
|
|
int
|
|
|
|
Py_GetRecursionLimit(void)
|
2000-08-31 19:23:01 +00:00
|
|
|
{
|
|
|
|
return recursion_limit;
|
|
|
|
}
|
|
|
|
|
2000-09-01 11:07:19 +00:00
|
|
|
void
|
|
|
|
Py_SetRecursionLimit(int new_limit)
|
2000-08-31 19:23:01 +00:00
|
|
|
{
|
|
|
|
recursion_limit = new_limit;
|
2003-10-28 12:05:48 +00:00
|
|
|
_Py_CheckRecursionLimit = recursion_limit;
|
2000-08-31 19:23:01 +00:00
|
|
|
}
|
|
|
|
|
2003-10-28 12:05:48 +00:00
|
|
|
/* the macro Py_EnterRecursiveCall() only calls _Py_CheckRecursiveCall()
|
|
|
|
if the recursion_depth reaches _Py_CheckRecursionLimit.
|
|
|
|
If USE_STACKCHECK, the macro decrements _Py_CheckRecursionLimit
|
|
|
|
to guarantee that _Py_CheckRecursiveCall() is regularly called.
|
|
|
|
Without USE_STACKCHECK, there is no need for this. */
|
|
|
|
int
|
|
|
|
_Py_CheckRecursiveCall(char *where)
|
|
|
|
{
|
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
|
|
|
|
|
|
|
#ifdef USE_STACKCHECK
|
|
|
|
if (PyOS_CheckStack()) {
|
|
|
|
--tstate->recursion_depth;
|
|
|
|
PyErr_SetString(PyExc_MemoryError, "Stack overflow");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (tstate->recursion_depth > recursion_limit) {
|
|
|
|
--tstate->recursion_depth;
|
|
|
|
PyErr_Format(PyExc_RuntimeError,
|
|
|
|
"maximum recursion depth exceeded%s",
|
|
|
|
where);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
_Py_CheckRecursionLimit = recursion_limit;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
/* Status code for main loop (reason for stack unwind) */
|
2004-04-06 10:11:10 +00:00
|
|
|
enum why_code {
|
|
|
|
WHY_NOT = 0x0001, /* No error */
|
|
|
|
WHY_EXCEPTION = 0x0002, /* Exception occurred */
|
|
|
|
WHY_RERAISE = 0x0004, /* Exception re-raised by 'finally' */
|
|
|
|
WHY_RETURN = 0x0008, /* 'return' statement */
|
|
|
|
WHY_BREAK = 0x0010, /* 'break' statement */
|
|
|
|
WHY_CONTINUE = 0x0020, /* 'continue' statement */
|
|
|
|
WHY_YIELD = 0x0040 /* 'yield' operator */
|
|
|
|
};
|
|
|
|
|
|
|
|
static enum why_code do_raise(PyObject *, PyObject *, PyObject *);
|
2001-06-21 02:49:55 +00:00
|
|
|
static int unpack_iterable(PyObject *, int, PyObject **);
|
1997-01-21 05:34:20 +00:00
|
|
|
|
2002-09-03 20:10:45 +00:00
|
|
|
/* for manipulating the thread switch and periodic "stuff" - used to be
|
|
|
|
per thread, now just a pair o' globals */
|
2002-09-03 20:19:06 +00:00
|
|
|
int _Py_CheckInterval = 100;
|
|
|
|
volatile int _Py_Ticker = 100;
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_EvalCode(PyCodeObject *co, PyObject *globals, PyObject *locals)
|
1995-07-18 14:51:37 +00:00
|
|
|
{
|
2003-02-05 23:13:00 +00:00
|
|
|
/* XXX raise SystemError if globals is NULL */
|
2001-08-02 04:15:00 +00:00
|
|
|
return PyEval_EvalCodeEx(co,
|
1995-07-18 14:51:37 +00:00
|
|
|
globals, locals,
|
1997-04-29 18:18:01 +00:00
|
|
|
(PyObject **)NULL, 0,
|
|
|
|
(PyObject **)NULL, 0,
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
(PyObject **)NULL, 0,
|
|
|
|
NULL);
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Interpreter main loop */
|
|
|
|
|
2004-06-27 15:43:12 +00:00
|
|
|
PyObject *
|
2005-08-02 00:46:46 +00:00
|
|
|
PyEval_EvalFrame(PyFrameObject *f) {
|
|
|
|
/* This is for backward compatibility with extension modules that
|
|
|
|
used this API; core interpreter code should call PyEval_EvalFrameEx() */
|
|
|
|
return PyEval_EvalFrameEx(f, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
|
|
|
PyEval_EvalFrameEx(PyFrameObject *f, int throw)
|
1990-11-18 17:27:39 +00:00
|
|
|
{
|
1997-01-24 13:49:28 +00:00
|
|
|
#ifdef DXPAIRS
|
|
|
|
int lastopcode = 0;
|
|
|
|
#endif
|
2004-06-17 10:22:40 +00:00
|
|
|
register PyObject **stack_pointer; /* Next free slot in value stack */
|
1991-04-04 10:40:29 +00:00
|
|
|
register unsigned char *next_instr;
|
2004-06-17 10:22:40 +00:00
|
|
|
register int opcode; /* Current opcode */
|
|
|
|
register int oparg; /* Current opcode argument, if any */
|
2004-04-06 10:11:10 +00:00
|
|
|
register enum why_code why; /* Reason for block stack unwind */
|
1991-04-04 10:40:29 +00:00
|
|
|
register int err; /* Error status -- nonzero if error */
|
1997-04-29 18:18:01 +00:00
|
|
|
register PyObject *x; /* Result object -- NULL if error */
|
|
|
|
register PyObject *v; /* Temporary objects popped off stack */
|
|
|
|
register PyObject *w;
|
|
|
|
register PyObject *u;
|
|
|
|
register PyObject *t;
|
2000-08-21 15:44:01 +00:00
|
|
|
register PyObject *stream = NULL; /* for PRINT opcodes */
|
2001-01-29 22:51:52 +00:00
|
|
|
register PyObject **fastlocals, **freevars;
|
1998-11-23 21:09:51 +00:00
|
|
|
PyObject *retval = NULL; /* Return value */
|
1998-12-21 18:33:30 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
2001-06-18 22:08:13 +00:00
|
|
|
PyCodeObject *co;
|
2002-08-15 14:59:02 +00:00
|
|
|
|
2004-04-05 19:36:21 +00:00
|
|
|
/* when tracing we set things up so that
|
2002-08-15 14:59:02 +00:00
|
|
|
|
|
|
|
not (instr_lb <= current_bytecode_offset < instr_ub)
|
|
|
|
|
2004-04-05 19:36:21 +00:00
|
|
|
is true when the line being executed has changed. The
|
2002-08-15 14:59:02 +00:00
|
|
|
initial values are such as to make this false the first
|
|
|
|
time it is tested. */
|
2004-03-22 19:24:58 +00:00
|
|
|
int instr_ub = -1, instr_lb = 0, instr_prev = -1;
|
2002-08-15 14:59:02 +00:00
|
|
|
|
1998-10-07 19:42:25 +00:00
|
|
|
unsigned char *first_instr;
|
2002-08-04 21:03:35 +00:00
|
|
|
PyObject *names;
|
|
|
|
PyObject *consts;
|
2005-10-21 04:28:38 +00:00
|
|
|
#if defined(Py_DEBUG) || defined(LLTRACE)
|
1995-07-18 14:51:37 +00:00
|
|
|
/* Make it easier to find out where we are with a debugger */
|
2001-06-18 22:08:13 +00:00
|
|
|
char *filename;
|
1992-09-03 20:29:45 +00:00
|
|
|
#endif
|
1990-11-18 17:27:39 +00:00
|
|
|
|
2002-07-14 00:27:26 +00:00
|
|
|
/* Tuple access macros */
|
|
|
|
|
|
|
|
#ifndef Py_DEBUG
|
|
|
|
#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
|
|
|
|
#else
|
|
|
|
#define GETITEM(v, i) PyTuple_GetItem((v), (i))
|
|
|
|
#endif
|
|
|
|
|
2004-06-08 08:17:44 +00:00
|
|
|
#ifdef WITH_TSC
|
|
|
|
/* Use Pentium timestamp counter to mark certain events:
|
|
|
|
inst0 -- beginning of switch statement for opcode dispatch
|
|
|
|
inst1 -- end of switch statement (may be skipped)
|
|
|
|
loop0 -- the top of the mainloop
|
|
|
|
loop1 -- place where control returns again to top of mainloop
|
|
|
|
(may be skipped)
|
|
|
|
intr1 -- beginning of long interruption
|
|
|
|
intr2 -- end of long interruption
|
|
|
|
|
|
|
|
Many opcodes call out to helper C functions. In some cases, the
|
|
|
|
time in those functions should be counted towards the time for the
|
|
|
|
opcode, but not in all cases. For example, a CALL_FUNCTION opcode
|
|
|
|
calls another Python function; there's no point in charge all the
|
|
|
|
bytecode executed by the called function to the caller.
|
|
|
|
|
|
|
|
It's hard to make a useful judgement statically. In the presence
|
|
|
|
of operator overloading, it's impossible to tell if a call will
|
|
|
|
execute new Python code or not.
|
|
|
|
|
|
|
|
It's a case-by-case judgement. I'll use intr1 for the following
|
|
|
|
cases:
|
|
|
|
|
|
|
|
EXEC_STMT
|
|
|
|
IMPORT_STAR
|
|
|
|
IMPORT_FROM
|
|
|
|
CALL_FUNCTION (and friends)
|
|
|
|
|
|
|
|
*/
|
|
|
|
uint64 inst0, inst1, loop0, loop1, intr0 = 0, intr1 = 0;
|
|
|
|
int ticked = 0;
|
|
|
|
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(inst0);
|
|
|
|
READ_TIMESTAMP(inst1);
|
|
|
|
READ_TIMESTAMP(loop0);
|
|
|
|
READ_TIMESTAMP(loop1);
|
2004-08-12 18:19:17 +00:00
|
|
|
|
|
|
|
/* shut up the compiler */
|
|
|
|
opcode = 0;
|
2004-06-08 08:17:44 +00:00
|
|
|
#endif
|
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
/* Code access macros */
|
1990-12-20 15:06:42 +00:00
|
|
|
|
2006-02-15 17:27:45 +00:00
|
|
|
#define INSTR_OFFSET() ((int)(next_instr - first_instr))
|
1991-04-04 10:40:29 +00:00
|
|
|
#define NEXTOP() (*next_instr++)
|
2004-04-10 23:34:17 +00:00
|
|
|
#define NEXTARG() (next_instr += 2, (next_instr[-1]<<8) + next_instr[-2])
|
2004-08-06 18:43:09 +00:00
|
|
|
#define PEEKARG() ((next_instr[2]<<8) + next_instr[1])
|
1998-10-07 19:42:25 +00:00
|
|
|
#define JUMPTO(x) (next_instr = first_instr + (x))
|
1991-04-04 10:40:29 +00:00
|
|
|
#define JUMPBY(x) (next_instr += (x))
|
1990-12-20 15:06:42 +00:00
|
|
|
|
2003-03-16 03:11:04 +00:00
|
|
|
/* OpCode prediction macros
|
|
|
|
Some opcodes tend to come in pairs thus making it possible to predict
|
|
|
|
the second code when the first is run. For example, COMPARE_OP is often
|
|
|
|
followed by JUMP_IF_FALSE or JUMP_IF_TRUE. And, those opcodes are often
|
|
|
|
followed by a POP_TOP.
|
|
|
|
|
|
|
|
Verifying the prediction costs a single high-speed test of register
|
2003-03-16 15:41:11 +00:00
|
|
|
variable against a constant. If the pairing was good, then the
|
2003-03-16 03:11:04 +00:00
|
|
|
processor has a high likelihood of making its own successful branch
|
|
|
|
prediction which results in a nearly zero overhead transition to the
|
|
|
|
next opcode.
|
|
|
|
|
|
|
|
A successful prediction saves a trip through the eval-loop including
|
|
|
|
its two unpredictable branches, the HASARG test and the switch-case.
|
2004-02-08 19:59:27 +00:00
|
|
|
|
2004-04-05 19:36:21 +00:00
|
|
|
If collecting opcode statistics, turn off prediction so that
|
|
|
|
statistics are accurately maintained (the predictions bypass
|
2004-02-08 19:59:27 +00:00
|
|
|
the opcode frequency counter updates).
|
2003-03-16 03:11:04 +00:00
|
|
|
*/
|
|
|
|
|
2004-02-08 19:59:27 +00:00
|
|
|
#ifdef DYNAMIC_EXECUTION_PROFILE
|
|
|
|
#define PREDICT(op) if (0) goto PRED_##op
|
|
|
|
#else
|
2003-03-16 15:41:11 +00:00
|
|
|
#define PREDICT(op) if (*next_instr == op) goto PRED_##op
|
2004-02-08 19:59:27 +00:00
|
|
|
#endif
|
|
|
|
|
2003-03-16 03:11:04 +00:00
|
|
|
#define PREDICTED(op) PRED_##op: next_instr++
|
2004-08-06 18:43:09 +00:00
|
|
|
#define PREDICTED_WITH_ARG(op) PRED_##op: oparg = PEEKARG(); next_instr += 3
|
2003-03-16 03:11:04 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
/* Stack manipulation macros */
|
1990-11-18 17:27:39 +00:00
|
|
|
|
2006-02-15 17:27:45 +00:00
|
|
|
/* The stack can grow at most MAXINT deep, as co_nlocals and
|
|
|
|
co_stacksize are ints. */
|
|
|
|
#define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack))
|
1991-04-04 10:40:29 +00:00
|
|
|
#define EMPTY() (STACK_LEVEL() == 0)
|
|
|
|
#define TOP() (stack_pointer[-1])
|
2003-01-09 15:24:30 +00:00
|
|
|
#define SECOND() (stack_pointer[-2])
|
|
|
|
#define THIRD() (stack_pointer[-3])
|
|
|
|
#define FOURTH() (stack_pointer[-4])
|
|
|
|
#define SET_TOP(v) (stack_pointer[-1] = (v))
|
|
|
|
#define SET_SECOND(v) (stack_pointer[-2] = (v))
|
|
|
|
#define SET_THIRD(v) (stack_pointer[-3] = (v))
|
|
|
|
#define SET_FOURTH(v) (stack_pointer[-4] = (v))
|
|
|
|
#define BASIC_STACKADJ(n) (stack_pointer += n)
|
1991-04-04 10:40:29 +00:00
|
|
|
#define BASIC_PUSH(v) (*stack_pointer++ = (v))
|
|
|
|
#define BASIC_POP() (*--stack_pointer)
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1992-01-12 02:29:51 +00:00
|
|
|
#ifdef LLTRACE
|
2001-10-17 13:29:30 +00:00
|
|
|
#define PUSH(v) { (void)(BASIC_PUSH(v), \
|
|
|
|
lltrace && prtrace(TOP(), "push")); \
|
|
|
|
assert(STACK_LEVEL() <= f->f_stacksize); }
|
2001-10-13 06:11:28 +00:00
|
|
|
#define POP() ((void)(lltrace && prtrace(TOP(), "pop")), BASIC_POP())
|
2003-01-09 15:24:30 +00:00
|
|
|
#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
|
|
|
|
lltrace && prtrace(TOP(), "stackadj")); \
|
|
|
|
assert(STACK_LEVEL() <= f->f_stacksize); }
|
2006-02-27 22:32:47 +00:00
|
|
|
#define EXT_POP(STACK_POINTER) (lltrace && prtrace(*(STACK_POINTER), "ext_pop"), *--(STACK_POINTER))
|
1991-04-04 10:40:29 +00:00
|
|
|
#else
|
|
|
|
#define PUSH(v) BASIC_PUSH(v)
|
|
|
|
#define POP() BASIC_POP()
|
2003-01-09 15:24:30 +00:00
|
|
|
#define STACKADJ(n) BASIC_STACKADJ(n)
|
2006-02-27 22:32:47 +00:00
|
|
|
#define EXT_POP(STACK_POINTER) (*--(STACK_POINTER))
|
1991-04-04 10:40:29 +00:00
|
|
|
#endif
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1995-07-18 14:51:37 +00:00
|
|
|
/* Local variable macros */
|
|
|
|
|
|
|
|
#define GETLOCAL(i) (fastlocals[i])
|
2002-03-28 20:17:52 +00:00
|
|
|
|
|
|
|
/* The SETLOCAL() macro must not DECREF the local variable in-place and
|
|
|
|
then store the new value; it must copy the old value to a temporary
|
|
|
|
value, then store the new value, and then DECREF the temporary value.
|
|
|
|
This is because it is possible that during the DECREF the frame is
|
|
|
|
accessed by other code (e.g. a __del__ method or gc.collect()) and the
|
|
|
|
variable would be pointing to already-freed memory. */
|
|
|
|
#define SETLOCAL(i, value) do { PyObject *tmp = GETLOCAL(i); \
|
|
|
|
GETLOCAL(i) = value; \
|
|
|
|
Py_XDECREF(tmp); } while (0)
|
1995-07-18 14:51:37 +00:00
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
/* Start of code */
|
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* push frame */
|
2003-10-28 12:05:48 +00:00
|
|
|
if (Py_EnterRecursiveCall(""))
|
1996-07-30 16:49:37 +00:00
|
|
|
return NULL;
|
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
tstate->frame = f;
|
|
|
|
|
2001-09-04 19:03:35 +00:00
|
|
|
if (tstate->use_tracing) {
|
|
|
|
if (tstate->c_tracefunc != NULL) {
|
|
|
|
/* tstate->c_tracefunc, if defined, is a
|
|
|
|
function that will be called on *every* entry
|
|
|
|
to a code block. Its return value, if not
|
|
|
|
None, is a function that will be called at
|
|
|
|
the start of each executed line of code.
|
|
|
|
(Actually, the function must return itself
|
|
|
|
in order to continue tracing.) The trace
|
|
|
|
functions are called with three arguments:
|
|
|
|
a pointer to the current frame, a string
|
|
|
|
indicating why the function is called, and
|
|
|
|
an argument which depends on the situation.
|
|
|
|
The global trace function is also called
|
|
|
|
whenever an exception is detected. */
|
|
|
|
if (call_trace(tstate->c_tracefunc, tstate->c_traceobj,
|
|
|
|
f, PyTrace_CALL, Py_None)) {
|
|
|
|
/* Trace function raised an error */
|
2003-10-28 12:05:48 +00:00
|
|
|
goto exit_eval_frame;
|
2001-09-04 19:03:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tstate->c_profilefunc != NULL) {
|
|
|
|
/* Similar for c_profilefunc, except it needn't
|
|
|
|
return itself and isn't called for "line" events */
|
|
|
|
if (call_trace(tstate->c_profilefunc,
|
|
|
|
tstate->c_profileobj,
|
|
|
|
f, PyTrace_CALL, Py_None)) {
|
|
|
|
/* Profile function raised an error */
|
2003-10-28 12:05:48 +00:00
|
|
|
goto exit_eval_frame;
|
2001-09-04 19:03:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-08 12:53:11 +00:00
|
|
|
co = f->f_code;
|
|
|
|
names = co->co_names;
|
|
|
|
consts = co->co_consts;
|
|
|
|
fastlocals = f->f_localsplus;
|
|
|
|
freevars = f->f_localsplus + f->f_nlocals;
|
2005-06-25 08:23:41 +00:00
|
|
|
first_instr = (unsigned char*) PyString_AS_STRING(co->co_code);
|
2002-11-08 12:53:11 +00:00
|
|
|
/* An explanation is in order for the next line.
|
|
|
|
|
|
|
|
f->f_lasti now refers to the index of the last instruction
|
|
|
|
executed. You might think this was obvious from the name, but
|
|
|
|
this wasn't always true before 2.3! PyFrame_New now sets
|
|
|
|
f->f_lasti to -1 (i.e. the index *before* the first instruction)
|
|
|
|
and YIELD_VALUE doesn't fiddle with f_lasti any more. So this
|
|
|
|
does work. Promise. */
|
|
|
|
next_instr = first_instr + f->f_lasti + 1;
|
|
|
|
stack_pointer = f->f_stacktop;
|
|
|
|
assert(stack_pointer != NULL);
|
|
|
|
f->f_stacktop = NULL; /* remains NULL unless yield suspends frame */
|
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
#ifdef LLTRACE
|
2005-10-20 19:59:25 +00:00
|
|
|
lltrace = PyDict_GetItemString(f->f_globals, "__lltrace__") != NULL;
|
2001-06-18 22:08:13 +00:00
|
|
|
#endif
|
2005-10-21 04:28:38 +00:00
|
|
|
#if defined(Py_DEBUG) || defined(LLTRACE)
|
2001-06-18 22:08:13 +00:00
|
|
|
filename = PyString_AsString(co->co_filename);
|
|
|
|
#endif
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
why = WHY_NOT;
|
|
|
|
err = 0;
|
1997-04-29 18:18:01 +00:00
|
|
|
x = Py_None; /* Not a reference, just anything non-NULL */
|
2000-10-11 13:54:07 +00:00
|
|
|
w = NULL;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2005-08-02 00:46:46 +00:00
|
|
|
if (throw) { /* support for generator.throw() */
|
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
goto on_error;
|
|
|
|
}
|
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
for (;;) {
|
2004-06-08 08:17:44 +00:00
|
|
|
#ifdef WITH_TSC
|
|
|
|
if (inst1 == 0) {
|
|
|
|
/* Almost surely, the opcode executed a break
|
|
|
|
or a continue, preventing inst1 from being set
|
|
|
|
on the way out of the loop.
|
|
|
|
*/
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(inst1);
|
2004-06-08 08:17:44 +00:00
|
|
|
loop1 = inst1;
|
|
|
|
}
|
|
|
|
dump_tsc(opcode, ticked, inst0, inst1, loop0, loop1,
|
|
|
|
intr0, intr1);
|
|
|
|
ticked = 0;
|
|
|
|
inst1 = 0;
|
|
|
|
intr0 = 0;
|
|
|
|
intr1 = 0;
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(loop0);
|
2004-06-08 08:17:44 +00:00
|
|
|
#endif
|
2002-08-15 14:59:02 +00:00
|
|
|
assert(stack_pointer >= f->f_valuestack); /* else underflow */
|
|
|
|
assert(STACK_LEVEL() <= f->f_stacksize); /* else overflow */
|
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
/* Do periodic things. Doing this every time through
|
|
|
|
the loop would add too much overhead, so we do it
|
|
|
|
only every Nth instruction. We also do it if
|
|
|
|
``things_to_do'' is set, i.e. when an asynchronous
|
|
|
|
event needs attention (e.g. a signal handler or
|
|
|
|
async I/O handler); see Py_AddPendingCall() and
|
|
|
|
Py_MakePendingCalls() above. */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2002-09-03 20:10:45 +00:00
|
|
|
if (--_Py_Ticker < 0) {
|
2003-06-28 21:53:52 +00:00
|
|
|
if (*next_instr == SETUP_FINALLY) {
|
|
|
|
/* Make the last opcode before
|
|
|
|
a try: finally: block uninterruptable. */
|
|
|
|
goto fast_next_opcode;
|
|
|
|
}
|
2002-09-03 20:10:45 +00:00
|
|
|
_Py_Ticker = _Py_CheckInterval;
|
2002-11-08 12:53:11 +00:00
|
|
|
tstate->tick_counter++;
|
2004-06-08 08:17:44 +00:00
|
|
|
#ifdef WITH_TSC
|
|
|
|
ticked = 1;
|
|
|
|
#endif
|
1997-05-05 20:56:21 +00:00
|
|
|
if (things_to_do) {
|
1996-07-30 16:49:37 +00:00
|
|
|
if (Py_MakePendingCalls() < 0) {
|
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
goto on_error;
|
|
|
|
}
|
2004-11-23 18:06:08 +00:00
|
|
|
if (things_to_do)
|
|
|
|
/* MakePendingCalls() didn't succeed.
|
|
|
|
Force early re-execution of this
|
|
|
|
"periodic" code, possibly after
|
|
|
|
a thread switch */
|
|
|
|
_Py_Ticker = 0;
|
1996-07-30 16:49:37 +00:00
|
|
|
}
|
1994-08-30 08:01:59 +00:00
|
|
|
#ifdef WITH_THREAD
|
1992-08-04 12:41:02 +00:00
|
|
|
if (interpreter_lock) {
|
|
|
|
/* Give another thread a chance */
|
|
|
|
|
1997-08-02 03:10:38 +00:00
|
|
|
if (PyThreadState_Swap(NULL) != tstate)
|
|
|
|
Py_FatalError("ceval: tstate mix-up");
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_release_lock(interpreter_lock);
|
1992-08-04 12:41:02 +00:00
|
|
|
|
|
|
|
/* Other threads may run now */
|
|
|
|
|
1998-12-21 19:32:43 +00:00
|
|
|
PyThread_acquire_lock(interpreter_lock, 1);
|
1997-08-02 03:10:38 +00:00
|
|
|
if (PyThreadState_Swap(tstate) != NULL)
|
|
|
|
Py_FatalError("ceval: orphan tstate");
|
2003-06-28 21:53:52 +00:00
|
|
|
|
|
|
|
/* Check for thread interrupts */
|
|
|
|
|
|
|
|
if (tstate->async_exc != NULL) {
|
|
|
|
x = tstate->async_exc;
|
|
|
|
tstate->async_exc = NULL;
|
|
|
|
PyErr_SetNone(x);
|
|
|
|
Py_DECREF(x);
|
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
goto on_error;
|
|
|
|
}
|
1992-08-04 12:41:02 +00:00
|
|
|
}
|
|
|
|
#endif
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
1992-08-04 12:41:02 +00:00
|
|
|
|
2002-02-17 19:10:14 +00:00
|
|
|
fast_next_opcode:
|
1992-09-03 20:29:45 +00:00
|
|
|
f->f_lasti = INSTR_OFFSET();
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2002-11-08 12:53:11 +00:00
|
|
|
/* line-by-line tracing support */
|
|
|
|
|
|
|
|
if (tstate->c_tracefunc != NULL && !tstate->tracing) {
|
|
|
|
/* see maybe_call_line_trace
|
|
|
|
for expository comments */
|
|
|
|
f->f_stacktop = stack_pointer;
|
2004-04-05 19:36:21 +00:00
|
|
|
|
2003-04-29 16:18:47 +00:00
|
|
|
err = maybe_call_line_trace(tstate->c_tracefunc,
|
|
|
|
tstate->c_traceobj,
|
2004-03-22 19:24:58 +00:00
|
|
|
f, &instr_lb, &instr_ub,
|
|
|
|
&instr_prev);
|
2003-04-29 16:18:47 +00:00
|
|
|
/* Reload possibly changed frame fields */
|
|
|
|
JUMPTO(f->f_lasti);
|
|
|
|
if (f->f_stacktop != NULL) {
|
|
|
|
stack_pointer = f->f_stacktop;
|
|
|
|
f->f_stacktop = NULL;
|
|
|
|
}
|
|
|
|
if (err) {
|
2002-11-08 13:08:46 +00:00
|
|
|
/* trace function raised an exception */
|
|
|
|
goto on_error;
|
|
|
|
}
|
2002-11-08 12:53:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Extract opcode and argument */
|
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
opcode = NEXTOP();
|
2004-06-17 10:22:40 +00:00
|
|
|
oparg = 0; /* allows oparg to be stored in a register because
|
|
|
|
it doesn't have to be remembered across a full loop */
|
2004-04-10 23:34:17 +00:00
|
|
|
if (HAS_ARG(opcode))
|
|
|
|
oparg = NEXTARG();
|
2000-08-24 00:32:09 +00:00
|
|
|
dispatch_opcode:
|
1997-01-24 13:49:28 +00:00
|
|
|
#ifdef DYNAMIC_EXECUTION_PROFILE
|
|
|
|
#ifdef DXPAIRS
|
|
|
|
dxpairs[lastopcode][opcode]++;
|
|
|
|
lastopcode = opcode;
|
|
|
|
#endif
|
|
|
|
dxp[opcode]++;
|
|
|
|
#endif
|
1990-11-18 17:27:39 +00:00
|
|
|
|
1992-01-12 02:29:51 +00:00
|
|
|
#ifdef LLTRACE
|
1991-04-04 10:40:29 +00:00
|
|
|
/* Instruction tracing */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1992-01-12 02:29:51 +00:00
|
|
|
if (lltrace) {
|
1991-04-04 10:40:29 +00:00
|
|
|
if (HAS_ARG(opcode)) {
|
|
|
|
printf("%d: %d, %d\n",
|
2002-08-15 14:59:02 +00:00
|
|
|
f->f_lasti, opcode, oparg);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
printf("%d: %d\n",
|
2002-08-15 14:59:02 +00:00
|
|
|
f->f_lasti, opcode);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2002-08-15 14:59:02 +00:00
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
/* Main switch on opcode */
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(inst0);
|
2001-01-03 23:52:36 +00:00
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
switch (opcode) {
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
/* BEWARE!
|
|
|
|
It is essential that any operation that fails sets either
|
|
|
|
x to NULL, err to nonzero, or why to anything but WHY_NOT,
|
|
|
|
and that no operation that succeeds does this! */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
/* case STOP_CODE: this is an error! */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2004-06-21 16:31:15 +00:00
|
|
|
case NOP:
|
|
|
|
goto fast_next_opcode;
|
|
|
|
|
2002-02-17 19:10:14 +00:00
|
|
|
case LOAD_FAST:
|
|
|
|
x = GETLOCAL(oparg);
|
|
|
|
if (x != NULL) {
|
|
|
|
Py_INCREF(x);
|
|
|
|
PUSH(x);
|
|
|
|
goto fast_next_opcode;
|
|
|
|
}
|
|
|
|
format_exc_check_arg(PyExc_UnboundLocalError,
|
|
|
|
UNBOUNDLOCAL_ERROR_MSG,
|
|
|
|
PyTuple_GetItem(co->co_varnames, oparg));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOAD_CONST:
|
2002-08-04 21:03:35 +00:00
|
|
|
x = GETITEM(consts, oparg);
|
2002-02-17 19:10:14 +00:00
|
|
|
Py_INCREF(x);
|
|
|
|
PUSH(x);
|
|
|
|
goto fast_next_opcode;
|
|
|
|
|
2003-03-16 20:14:44 +00:00
|
|
|
PREDICTED_WITH_ARG(STORE_FAST);
|
2002-02-17 19:10:14 +00:00
|
|
|
case STORE_FAST:
|
|
|
|
v = POP();
|
|
|
|
SETLOCAL(oparg, v);
|
|
|
|
goto fast_next_opcode;
|
|
|
|
|
2003-03-16 03:11:04 +00:00
|
|
|
PREDICTED(POP_TOP);
|
1990-11-18 17:27:39 +00:00
|
|
|
case POP_TOP:
|
|
|
|
v = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
2002-02-17 19:10:14 +00:00
|
|
|
goto fast_next_opcode;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case ROT_TWO:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
|
|
|
w = SECOND();
|
|
|
|
SET_TOP(w);
|
|
|
|
SET_SECOND(v);
|
2003-03-14 01:37:42 +00:00
|
|
|
goto fast_next_opcode;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case ROT_THREE:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
|
|
|
w = SECOND();
|
|
|
|
x = THIRD();
|
|
|
|
SET_TOP(w);
|
|
|
|
SET_SECOND(x);
|
|
|
|
SET_THIRD(v);
|
2003-03-14 01:37:42 +00:00
|
|
|
goto fast_next_opcode;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case ROT_FOUR:
|
2003-01-09 15:24:30 +00:00
|
|
|
u = TOP();
|
|
|
|
v = SECOND();
|
|
|
|
w = THIRD();
|
|
|
|
x = FOURTH();
|
|
|
|
SET_TOP(v);
|
|
|
|
SET_SECOND(w);
|
|
|
|
SET_THIRD(x);
|
|
|
|
SET_FOURTH(u);
|
2003-03-14 01:37:42 +00:00
|
|
|
goto fast_next_opcode;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
case DUP_TOP:
|
|
|
|
v = TOP();
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_INCREF(v);
|
1990-12-20 15:06:42 +00:00
|
|
|
PUSH(v);
|
2003-03-14 01:37:42 +00:00
|
|
|
goto fast_next_opcode;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case DUP_TOPX:
|
2003-01-19 05:08:13 +00:00
|
|
|
if (oparg == 2) {
|
2003-01-09 15:24:30 +00:00
|
|
|
x = TOP();
|
2000-10-11 07:04:49 +00:00
|
|
|
Py_INCREF(x);
|
2003-01-09 15:24:30 +00:00
|
|
|
w = SECOND();
|
2000-10-11 07:04:49 +00:00
|
|
|
Py_INCREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
STACKADJ(2);
|
|
|
|
SET_TOP(x);
|
|
|
|
SET_SECOND(w);
|
2003-03-16 03:11:04 +00:00
|
|
|
goto fast_next_opcode;
|
2003-01-19 05:08:13 +00:00
|
|
|
} else if (oparg == 3) {
|
2003-01-09 15:24:30 +00:00
|
|
|
x = TOP();
|
2000-10-11 07:04:49 +00:00
|
|
|
Py_INCREF(x);
|
2003-01-09 15:24:30 +00:00
|
|
|
w = SECOND();
|
2000-10-11 07:04:49 +00:00
|
|
|
Py_INCREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
v = THIRD();
|
2000-10-11 07:04:49 +00:00
|
|
|
Py_INCREF(v);
|
2003-01-09 15:24:30 +00:00
|
|
|
STACKADJ(3);
|
|
|
|
SET_TOP(x);
|
|
|
|
SET_SECOND(w);
|
|
|
|
SET_THIRD(v);
|
2003-03-16 03:11:04 +00:00
|
|
|
goto fast_next_opcode;
|
2000-08-24 20:11:32 +00:00
|
|
|
}
|
2003-01-19 05:08:13 +00:00
|
|
|
Py_FatalError("invalid argument to DUP_TOPX"
|
|
|
|
" (bytecode corruption?)");
|
2000-10-11 07:04:49 +00:00
|
|
|
break;
|
2000-08-24 20:11:32 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case UNARY_POSITIVE:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Positive(v);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case UNARY_NEGATIVE:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Negative(v);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case UNARY_NOT:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
err = PyObject_IsTrue(v);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1997-05-06 15:06:49 +00:00
|
|
|
if (err == 0) {
|
|
|
|
Py_INCREF(Py_True);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(Py_True);
|
1997-05-06 15:06:49 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (err > 0) {
|
|
|
|
Py_INCREF(Py_False);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(Py_False);
|
1997-05-06 15:06:49 +00:00
|
|
|
err = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2003-01-14 12:43:10 +00:00
|
|
|
STACKADJ(-1);
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case UNARY_CONVERT:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyObject_Repr(v);
|
|
|
|
Py_DECREF(v);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-10-24 14:59:31 +00:00
|
|
|
case UNARY_INVERT:
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Invert(v);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1991-10-24 14:59:31 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1996-01-12 01:13:16 +00:00
|
|
|
case BINARY_POWER:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Power(v, w, Py_None);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1996-01-12 01:13:16 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BINARY_MULTIPLY:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Multiply(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BINARY_DIVIDE:
|
2001-12-06 06:23:26 +00:00
|
|
|
if (!_Py_QnewFlag) {
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-12-06 06:23:26 +00:00
|
|
|
x = PyNumber_Divide(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2001-12-06 06:23:26 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
|
|
|
}
|
2003-01-09 15:24:30 +00:00
|
|
|
/* -Qnew is in effect: fall through to
|
2001-12-06 06:23:26 +00:00
|
|
|
BINARY_TRUE_DIVIDE */
|
|
|
|
case BINARY_TRUE_DIVIDE:
|
1990-11-18 17:27:39 +00:00
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-12-06 06:23:26 +00:00
|
|
|
x = PyNumber_TrueDivide(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2001-08-08 05:00:18 +00:00
|
|
|
case BINARY_FLOOR_DIVIDE:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-08-08 05:00:18 +00:00
|
|
|
x = PyNumber_FloorDivide(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2001-08-08 05:00:18 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BINARY_MODULO:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Remainder(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BINARY_ADD:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-10-05 20:21:03 +00:00
|
|
|
if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) {
|
1997-07-17 23:12:42 +00:00
|
|
|
/* INLINE: int + int */
|
|
|
|
register long a, b, i;
|
1998-12-04 18:51:36 +00:00
|
|
|
a = PyInt_AS_LONG(v);
|
|
|
|
b = PyInt_AS_LONG(w);
|
1997-07-17 23:12:42 +00:00
|
|
|
i = a + b;
|
2001-08-23 02:58:07 +00:00
|
|
|
if ((i^a) < 0 && (i^b) < 0)
|
|
|
|
goto slow_add;
|
|
|
|
x = PyInt_FromLong(i);
|
1997-07-17 23:12:42 +00:00
|
|
|
}
|
2004-08-06 18:43:09 +00:00
|
|
|
else if (PyString_CheckExact(v) &&
|
|
|
|
PyString_CheckExact(w)) {
|
|
|
|
x = string_concatenate(v, w, f, next_instr);
|
|
|
|
/* string_concatenate consumed the ref to v */
|
|
|
|
goto skip_decref_vx;
|
|
|
|
}
|
2001-08-23 02:58:07 +00:00
|
|
|
else {
|
|
|
|
slow_add:
|
1997-07-17 23:12:42 +00:00
|
|
|
x = PyNumber_Add(v, w);
|
2001-08-23 02:58:07 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
2004-08-06 18:43:09 +00:00
|
|
|
skip_decref_vx:
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BINARY_SUBTRACT:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-10-05 20:21:03 +00:00
|
|
|
if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) {
|
1997-07-17 23:12:42 +00:00
|
|
|
/* INLINE: int - int */
|
|
|
|
register long a, b, i;
|
1998-12-04 18:51:36 +00:00
|
|
|
a = PyInt_AS_LONG(v);
|
|
|
|
b = PyInt_AS_LONG(w);
|
1997-07-17 23:12:42 +00:00
|
|
|
i = a - b;
|
2001-08-23 02:58:07 +00:00
|
|
|
if ((i^a) < 0 && (i^~b) < 0)
|
|
|
|
goto slow_sub;
|
|
|
|
x = PyInt_FromLong(i);
|
1997-07-17 23:12:42 +00:00
|
|
|
}
|
2001-08-23 02:58:07 +00:00
|
|
|
else {
|
|
|
|
slow_sub:
|
1997-07-17 23:12:42 +00:00
|
|
|
x = PyNumber_Subtract(v, w);
|
2001-08-23 02:58:07 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BINARY_SUBSCR:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-10-05 20:41:38 +00:00
|
|
|
if (PyList_CheckExact(v) && PyInt_CheckExact(w)) {
|
1997-07-17 23:12:42 +00:00
|
|
|
/* INLINE: list[int] */
|
2006-03-02 07:54:28 +00:00
|
|
|
Py_ssize_t i = PyInt_AsSsize_t(w);
|
1997-07-17 23:12:42 +00:00
|
|
|
if (i < 0)
|
1998-07-08 15:02:37 +00:00
|
|
|
i += PyList_GET_SIZE(v);
|
2004-04-07 11:39:21 +00:00
|
|
|
if (i >= 0 && i < PyList_GET_SIZE(v)) {
|
1998-07-08 15:02:37 +00:00
|
|
|
x = PyList_GET_ITEM(v, i);
|
1997-07-17 23:12:42 +00:00
|
|
|
Py_INCREF(x);
|
|
|
|
}
|
2004-04-07 11:39:21 +00:00
|
|
|
else
|
|
|
|
goto slow_get;
|
1997-07-17 23:12:42 +00:00
|
|
|
}
|
|
|
|
else
|
2004-04-07 11:39:21 +00:00
|
|
|
slow_get:
|
1997-07-17 23:12:42 +00:00
|
|
|
x = PyObject_GetItem(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-10-24 14:59:31 +00:00
|
|
|
case BINARY_LSHIFT:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Lshift(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1991-10-24 14:59:31 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-10-24 14:59:31 +00:00
|
|
|
case BINARY_RSHIFT:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Rshift(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1991-10-24 14:59:31 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-10-24 14:59:31 +00:00
|
|
|
case BINARY_AND:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_And(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1991-10-24 14:59:31 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-10-24 14:59:31 +00:00
|
|
|
case BINARY_XOR:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Xor(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1991-10-24 14:59:31 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-10-24 14:59:31 +00:00
|
|
|
case BINARY_OR:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-05-06 15:06:49 +00:00
|
|
|
x = PyNumber_Or(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1991-10-24 14:59:31 +00:00
|
|
|
break;
|
2000-08-24 20:11:32 +00:00
|
|
|
|
2004-03-07 07:31:06 +00:00
|
|
|
case LIST_APPEND:
|
|
|
|
w = POP();
|
|
|
|
v = POP();
|
|
|
|
err = PyList_Append(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2004-03-12 16:33:17 +00:00
|
|
|
if (err == 0) {
|
|
|
|
PREDICT(JUMP_ABSOLUTE);
|
|
|
|
continue;
|
|
|
|
}
|
2004-03-07 07:31:06 +00:00
|
|
|
break;
|
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_POWER:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlacePower(v, w, Py_None);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_MULTIPLY:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceMultiply(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_DIVIDE:
|
2001-12-25 18:49:11 +00:00
|
|
|
if (!_Py_QnewFlag) {
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-12-25 18:49:11 +00:00
|
|
|
x = PyNumber_InPlaceDivide(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2001-12-25 18:49:11 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
|
|
|
}
|
2003-01-09 15:24:30 +00:00
|
|
|
/* -Qnew is in effect: fall through to
|
2001-12-25 18:49:11 +00:00
|
|
|
INPLACE_TRUE_DIVIDE */
|
|
|
|
case INPLACE_TRUE_DIVIDE:
|
2000-08-24 20:11:32 +00:00
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-12-25 18:49:11 +00:00
|
|
|
x = PyNumber_InPlaceTrueDivide(v, w);
|
2000-08-24 20:11:32 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2001-08-08 05:00:18 +00:00
|
|
|
case INPLACE_FLOOR_DIVIDE:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-08-08 05:00:18 +00:00
|
|
|
x = PyNumber_InPlaceFloorDivide(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2001-08-08 05:00:18 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_MODULO:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceRemainder(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_ADD:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-10-05 20:21:03 +00:00
|
|
|
if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) {
|
2000-08-24 20:11:32 +00:00
|
|
|
/* INLINE: int + int */
|
|
|
|
register long a, b, i;
|
|
|
|
a = PyInt_AS_LONG(v);
|
|
|
|
b = PyInt_AS_LONG(w);
|
|
|
|
i = a + b;
|
2001-08-23 02:58:07 +00:00
|
|
|
if ((i^a) < 0 && (i^b) < 0)
|
|
|
|
goto slow_iadd;
|
|
|
|
x = PyInt_FromLong(i);
|
2000-08-24 20:11:32 +00:00
|
|
|
}
|
2004-08-06 18:43:09 +00:00
|
|
|
else if (PyString_CheckExact(v) &&
|
|
|
|
PyString_CheckExact(w)) {
|
|
|
|
x = string_concatenate(v, w, f, next_instr);
|
|
|
|
/* string_concatenate consumed the ref to v */
|
|
|
|
goto skip_decref_v;
|
|
|
|
}
|
2001-08-23 02:58:07 +00:00
|
|
|
else {
|
|
|
|
slow_iadd:
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceAdd(v, w);
|
2001-08-23 02:58:07 +00:00
|
|
|
}
|
2000-08-24 20:11:32 +00:00
|
|
|
Py_DECREF(v);
|
2004-08-06 18:43:09 +00:00
|
|
|
skip_decref_v:
|
2000-08-24 20:11:32 +00:00
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_SUBTRACT:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-10-05 20:21:03 +00:00
|
|
|
if (PyInt_CheckExact(v) && PyInt_CheckExact(w)) {
|
2000-08-24 20:11:32 +00:00
|
|
|
/* INLINE: int - int */
|
|
|
|
register long a, b, i;
|
|
|
|
a = PyInt_AS_LONG(v);
|
|
|
|
b = PyInt_AS_LONG(w);
|
|
|
|
i = a - b;
|
2001-08-23 02:58:07 +00:00
|
|
|
if ((i^a) < 0 && (i^~b) < 0)
|
|
|
|
goto slow_isub;
|
|
|
|
x = PyInt_FromLong(i);
|
2000-08-24 20:11:32 +00:00
|
|
|
}
|
2001-08-23 02:58:07 +00:00
|
|
|
else {
|
|
|
|
slow_isub:
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceSubtract(v, w);
|
2001-08-23 02:58:07 +00:00
|
|
|
}
|
2000-08-24 20:11:32 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_LSHIFT:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceLshift(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_RSHIFT:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceRshift(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_AND:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceAnd(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_XOR:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceXor(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
case INPLACE_OR:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2000-08-24 20:11:32 +00:00
|
|
|
x = PyNumber_InPlaceOr(v, w);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2000-08-24 20:11:32 +00:00
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
|
|
|
|
1990-11-18 17:33:06 +00:00
|
|
|
case SLICE+0:
|
1990-11-18 17:27:39 +00:00
|
|
|
case SLICE+1:
|
|
|
|
case SLICE+2:
|
|
|
|
case SLICE+3:
|
1990-12-20 15:06:42 +00:00
|
|
|
if ((opcode-SLICE) & 2)
|
1990-11-18 17:33:06 +00:00
|
|
|
w = POP();
|
|
|
|
else
|
|
|
|
w = NULL;
|
1990-12-20 15:06:42 +00:00
|
|
|
if ((opcode-SLICE) & 1)
|
1990-11-18 17:33:06 +00:00
|
|
|
v = POP();
|
|
|
|
else
|
|
|
|
v = NULL;
|
2003-01-09 15:24:30 +00:00
|
|
|
u = TOP();
|
1990-12-20 15:06:42 +00:00
|
|
|
x = apply_slice(u, v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:33:06 +00:00
|
|
|
case STORE_SLICE+0:
|
1990-11-18 17:27:39 +00:00
|
|
|
case STORE_SLICE+1:
|
|
|
|
case STORE_SLICE+2:
|
|
|
|
case STORE_SLICE+3:
|
1990-12-20 15:06:42 +00:00
|
|
|
if ((opcode-STORE_SLICE) & 2)
|
1990-11-18 17:33:06 +00:00
|
|
|
w = POP();
|
|
|
|
else
|
|
|
|
w = NULL;
|
1990-12-20 15:06:42 +00:00
|
|
|
if ((opcode-STORE_SLICE) & 1)
|
1990-11-18 17:33:06 +00:00
|
|
|
v = POP();
|
|
|
|
else
|
|
|
|
v = NULL;
|
1990-11-18 17:27:39 +00:00
|
|
|
u = POP();
|
1990-12-20 15:06:42 +00:00
|
|
|
t = POP();
|
|
|
|
err = assign_slice(u, v, w, t); /* u[v:w] = t */
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(t);
|
|
|
|
Py_DECREF(u);
|
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(w);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (err == 0) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:33:06 +00:00
|
|
|
case DELETE_SLICE+0:
|
1990-11-18 17:27:39 +00:00
|
|
|
case DELETE_SLICE+1:
|
|
|
|
case DELETE_SLICE+2:
|
|
|
|
case DELETE_SLICE+3:
|
1990-12-20 15:06:42 +00:00
|
|
|
if ((opcode-DELETE_SLICE) & 2)
|
1990-11-18 17:33:06 +00:00
|
|
|
w = POP();
|
|
|
|
else
|
|
|
|
w = NULL;
|
1990-12-20 15:06:42 +00:00
|
|
|
if ((opcode-DELETE_SLICE) & 1)
|
1990-11-18 17:33:06 +00:00
|
|
|
v = POP();
|
|
|
|
else
|
|
|
|
v = NULL;
|
1990-11-18 17:27:39 +00:00
|
|
|
u = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
err = assign_slice(u, v, w, (PyObject *)NULL);
|
1990-12-20 15:06:42 +00:00
|
|
|
/* del u[v:w] */
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
|
|
|
Py_XDECREF(v);
|
|
|
|
Py_XDECREF(w);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (err == 0) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case STORE_SUBSCR:
|
2003-01-09 15:24:30 +00:00
|
|
|
w = TOP();
|
|
|
|
v = SECOND();
|
|
|
|
u = THIRD();
|
|
|
|
STACKADJ(-3);
|
1990-11-18 17:27:39 +00:00
|
|
|
/* v[w] = u */
|
1997-05-06 15:06:49 +00:00
|
|
|
err = PyObject_SetItem(v, w, u);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (err == 0) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case DELETE_SUBSCR:
|
2003-01-09 15:24:30 +00:00
|
|
|
w = TOP();
|
|
|
|
v = SECOND();
|
|
|
|
STACKADJ(-2);
|
1990-11-18 17:27:39 +00:00
|
|
|
/* del v[w] */
|
1997-05-06 15:06:49 +00:00
|
|
|
err = PyObject_DelItem(v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (err == 0) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2000-08-21 15:44:01 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case PRINT_EXPR:
|
|
|
|
v = POP();
|
2001-01-11 05:41:27 +00:00
|
|
|
w = PySys_GetObject("displayhook");
|
|
|
|
if (w == NULL) {
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
|
|
|
"lost sys.displayhook");
|
|
|
|
err = -1;
|
2001-01-11 11:55:37 +00:00
|
|
|
x = NULL;
|
2001-01-11 05:41:27 +00:00
|
|
|
}
|
|
|
|
if (err == 0) {
|
2003-10-12 19:09:37 +00:00
|
|
|
x = PyTuple_Pack(1, v);
|
2001-01-11 05:41:27 +00:00
|
|
|
if (x == NULL)
|
|
|
|
err = -1;
|
|
|
|
}
|
|
|
|
if (err == 0) {
|
|
|
|
w = PyEval_CallObject(w, x);
|
2001-01-11 11:55:37 +00:00
|
|
|
Py_XDECREF(w);
|
2001-01-11 05:41:27 +00:00
|
|
|
if (w == NULL)
|
|
|
|
err = -1;
|
1997-04-29 18:18:01 +00:00
|
|
|
}
|
|
|
|
Py_DECREF(v);
|
2001-01-11 05:41:27 +00:00
|
|
|
Py_XDECREF(x);
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-11 05:41:27 +00:00
|
|
|
|
2000-08-21 15:44:01 +00:00
|
|
|
case PRINT_ITEM_TO:
|
|
|
|
w = stream = POP();
|
|
|
|
/* fall through to PRINT_ITEM */
|
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case PRINT_ITEM:
|
|
|
|
v = POP();
|
2000-08-29 04:56:13 +00:00
|
|
|
if (stream == NULL || stream == Py_None) {
|
2000-08-21 15:44:01 +00:00
|
|
|
w = PySys_GetObject("stdout");
|
|
|
|
if (w == NULL) {
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
|
|
|
"lost sys.stdout");
|
|
|
|
err = -1;
|
|
|
|
}
|
1997-12-31 05:53:15 +00:00
|
|
|
}
|
2003-06-29 14:48:32 +00:00
|
|
|
/* PyFile_SoftSpace() can exececute arbitrary code
|
|
|
|
if sys.stdout is an instance with a __getattr__.
|
|
|
|
If __getattr__ raises an exception, w will
|
|
|
|
be freed, so we need to prevent that temporarily. */
|
|
|
|
Py_XINCREF(w);
|
2002-03-24 19:25:00 +00:00
|
|
|
if (w != NULL && PyFile_SoftSpace(w, 0))
|
1997-05-22 22:26:18 +00:00
|
|
|
err = PyFile_WriteString(" ", w);
|
|
|
|
if (err == 0)
|
|
|
|
err = PyFile_WriteObject(v, w, Py_PRINT_RAW);
|
2001-11-20 15:17:25 +00:00
|
|
|
if (err == 0) {
|
2002-03-24 19:25:00 +00:00
|
|
|
/* XXX move into writeobject() ? */
|
2001-11-20 15:17:25 +00:00
|
|
|
if (PyString_Check(v)) {
|
|
|
|
char *s = PyString_AS_STRING(v);
|
|
|
|
int len = PyString_GET_SIZE(v);
|
2002-03-24 19:25:00 +00:00
|
|
|
if (len == 0 ||
|
|
|
|
!isspace(Py_CHARMASK(s[len-1])) ||
|
|
|
|
s[len-1] == ' ')
|
|
|
|
PyFile_SoftSpace(w, 1);
|
2004-04-05 19:36:21 +00:00
|
|
|
}
|
2001-12-18 22:36:40 +00:00
|
|
|
#ifdef Py_USING_UNICODE
|
2001-11-20 15:17:25 +00:00
|
|
|
else if (PyUnicode_Check(v)) {
|
|
|
|
Py_UNICODE *s = PyUnicode_AS_UNICODE(v);
|
|
|
|
int len = PyUnicode_GET_SIZE(v);
|
2002-03-24 19:25:00 +00:00
|
|
|
if (len == 0 ||
|
|
|
|
!Py_UNICODE_ISSPACE(s[len-1]) ||
|
|
|
|
s[len-1] == ' ')
|
|
|
|
PyFile_SoftSpace(w, 1);
|
2001-11-20 15:17:25 +00:00
|
|
|
}
|
2002-05-20 13:56:11 +00:00
|
|
|
#endif
|
2002-03-24 19:25:00 +00:00
|
|
|
else
|
|
|
|
PyFile_SoftSpace(w, 1);
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
2003-06-29 14:48:32 +00:00
|
|
|
Py_XDECREF(w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
2000-08-21 15:44:01 +00:00
|
|
|
Py_XDECREF(stream);
|
|
|
|
stream = NULL;
|
|
|
|
if (err == 0)
|
|
|
|
continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-21 15:44:01 +00:00
|
|
|
case PRINT_NEWLINE_TO:
|
|
|
|
w = stream = POP();
|
|
|
|
/* fall through to PRINT_NEWLINE */
|
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case PRINT_NEWLINE:
|
2000-08-29 04:56:13 +00:00
|
|
|
if (stream == NULL || stream == Py_None) {
|
2000-08-21 15:44:01 +00:00
|
|
|
w = PySys_GetObject("stdout");
|
|
|
|
if (w == NULL)
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,
|
|
|
|
"lost sys.stdout");
|
|
|
|
}
|
|
|
|
if (w != NULL) {
|
|
|
|
err = PyFile_WriteString("\n", w);
|
1997-05-22 22:26:18 +00:00
|
|
|
if (err == 0)
|
2000-08-21 15:44:01 +00:00
|
|
|
PyFile_SoftSpace(w, 0);
|
1992-09-25 21:59:05 +00:00
|
|
|
}
|
2000-08-21 15:44:01 +00:00
|
|
|
Py_XDECREF(stream);
|
|
|
|
stream = NULL;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-24 20:11:32 +00:00
|
|
|
|
|
|
|
#ifdef CASE_TOO_BIG
|
|
|
|
default: switch (opcode) {
|
|
|
|
#endif
|
1995-07-07 22:53:21 +00:00
|
|
|
case RAISE_VARARGS:
|
|
|
|
u = v = w = NULL;
|
|
|
|
switch (oparg) {
|
|
|
|
case 3:
|
|
|
|
u = POP(); /* traceback */
|
|
|
|
/* Fallthrough */
|
|
|
|
case 2:
|
|
|
|
v = POP(); /* value */
|
|
|
|
/* Fallthrough */
|
|
|
|
case 1:
|
|
|
|
w = POP(); /* exc */
|
1998-04-09 21:39:57 +00:00
|
|
|
case 0: /* Fallthrough */
|
1996-12-10 18:07:35 +00:00
|
|
|
why = do_raise(w, v, u);
|
1995-07-07 22:53:21 +00:00
|
|
|
break;
|
|
|
|
default:
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
1995-07-07 22:53:21 +00:00
|
|
|
"bad RAISE_VARARGS oparg");
|
|
|
|
why = WHY_EXCEPTION;
|
1996-12-10 18:07:35 +00:00
|
|
|
break;
|
|
|
|
}
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:33:06 +00:00
|
|
|
case LOAD_LOCALS:
|
2004-04-07 11:39:21 +00:00
|
|
|
if ((x = f->f_locals) != NULL) {
|
|
|
|
Py_INCREF(x);
|
|
|
|
PUSH(x);
|
|
|
|
continue;
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
2004-04-07 11:39:21 +00:00
|
|
|
PyErr_SetString(PyExc_SystemError, "no locals");
|
1990-11-18 17:33:06 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case RETURN_VALUE:
|
1990-12-20 15:06:42 +00:00
|
|
|
retval = POP();
|
|
|
|
why = WHY_RETURN;
|
2004-02-06 18:32:33 +00:00
|
|
|
goto fast_block_end;
|
1993-10-18 17:06:59 +00:00
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
case YIELD_VALUE:
|
|
|
|
retval = POP();
|
2001-06-23 05:26:56 +00:00
|
|
|
f->f_stacktop = stack_pointer;
|
2001-06-18 22:08:13 +00:00
|
|
|
why = WHY_YIELD;
|
2004-02-06 18:32:33 +00:00
|
|
|
goto fast_yield;
|
2001-06-18 22:08:13 +00:00
|
|
|
|
1993-10-18 17:06:59 +00:00
|
|
|
case EXEC_STMT:
|
2003-01-09 15:24:30 +00:00
|
|
|
w = TOP();
|
|
|
|
v = SECOND();
|
|
|
|
u = THIRD();
|
|
|
|
STACKADJ(-3);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr0);
|
1997-05-05 20:56:21 +00:00
|
|
|
err = exec_statement(f, u, v, w);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr1);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
1993-10-18 17:06:59 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case POP_BLOCK:
|
1990-12-20 15:06:42 +00:00
|
|
|
{
|
1997-04-29 18:18:01 +00:00
|
|
|
PyTryBlock *b = PyFrame_BlockPop(f);
|
1990-12-20 15:06:42 +00:00
|
|
|
while (STACK_LEVEL() > b->b_level) {
|
|
|
|
v = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1990-12-20 15:06:42 +00:00
|
|
|
}
|
|
|
|
}
|
2004-04-07 14:38:08 +00:00
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case END_FINALLY:
|
|
|
|
v = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyInt_Check(v)) {
|
2004-04-06 10:11:10 +00:00
|
|
|
why = (enum why_code) PyInt_AS_LONG(v);
|
2004-04-05 19:36:21 +00:00
|
|
|
assert(why != WHY_YIELD);
|
2004-04-11 14:59:33 +00:00
|
|
|
if (why == WHY_RETURN ||
|
|
|
|
why == WHY_CONTINUE)
|
1990-12-20 15:06:42 +00:00
|
|
|
retval = POP();
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
2006-03-01 04:25:17 +00:00
|
|
|
else if (PyExceptionClass_Check(v) || PyString_Check(v)) {
|
1990-12-20 15:06:42 +00:00
|
|
|
w = POP();
|
1995-07-07 22:53:21 +00:00
|
|
|
u = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_Restore(v, w, u);
|
1990-12-20 15:06:42 +00:00
|
|
|
why = WHY_RERAISE;
|
1995-07-28 23:06:00 +00:00
|
|
|
break;
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
else if (v != Py_None) {
|
|
|
|
PyErr_SetString(PyExc_SystemError,
|
1990-12-20 15:06:42 +00:00
|
|
|
"'finally' pops bad exception");
|
|
|
|
why = WHY_EXCEPTION;
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:33:06 +00:00
|
|
|
case BUILD_CLASS:
|
2003-01-09 15:24:30 +00:00
|
|
|
u = TOP();
|
|
|
|
v = SECOND();
|
|
|
|
w = THIRD();
|
|
|
|
STACKADJ(-2);
|
1993-05-19 14:50:45 +00:00
|
|
|
x = build_class(u, v, w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
1990-11-18 17:33:06 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case STORE_NAME:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
1990-11-18 17:27:39 +00:00
|
|
|
v = POP();
|
2004-04-07 11:39:21 +00:00
|
|
|
if ((x = f->f_locals) != NULL) {
|
2004-08-02 08:30:07 +00:00
|
|
|
if (PyDict_CheckExact(x))
|
2004-07-02 06:41:07 +00:00
|
|
|
err = PyDict_SetItem(x, w, v);
|
|
|
|
else
|
|
|
|
err = PyObject_SetItem(x, w, v);
|
2004-04-07 11:39:21 +00:00
|
|
|
Py_DECREF(v);
|
2004-04-07 14:38:08 +00:00
|
|
|
if (err == 0) continue;
|
1995-07-18 14:51:37 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-04-07 11:39:21 +00:00
|
|
|
PyErr_Format(PyExc_SystemError,
|
|
|
|
"no locals found when storing %s",
|
|
|
|
PyObject_REPR(w));
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case DELETE_NAME:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
2004-04-07 11:39:21 +00:00
|
|
|
if ((x = f->f_locals) != NULL) {
|
2004-07-02 06:41:07 +00:00
|
|
|
if ((err = PyObject_DelItem(x, w)) != 0)
|
2004-04-07 11:39:21 +00:00
|
|
|
format_exc_check_arg(PyExc_NameError,
|
|
|
|
NAME_ERROR_MSG ,w);
|
1995-07-18 14:51:37 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-04-07 11:39:21 +00:00
|
|
|
PyErr_Format(PyExc_SystemError,
|
|
|
|
"no locals when deleting %s",
|
|
|
|
PyObject_REPR(w));
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
1992-08-12 15:35:34 +00:00
|
|
|
|
2003-03-16 20:14:44 +00:00
|
|
|
PREDICTED_WITH_ARG(UNPACK_SEQUENCE);
|
2000-08-11 22:15:52 +00:00
|
|
|
case UNPACK_SEQUENCE:
|
1990-11-18 17:27:39 +00:00
|
|
|
v = POP();
|
2004-03-08 23:25:30 +00:00
|
|
|
if (PyTuple_CheckExact(v) && PyTuple_GET_SIZE(v) == oparg) {
|
|
|
|
PyObject **items = ((PyTupleObject *)v)->ob_item;
|
|
|
|
while (oparg--) {
|
|
|
|
w = items[oparg];
|
|
|
|
Py_INCREF(w);
|
|
|
|
PUSH(w);
|
1997-08-25 22:13:04 +00:00
|
|
|
}
|
2004-04-07 14:38:08 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
continue;
|
2004-03-08 23:25:30 +00:00
|
|
|
} else if (PyList_CheckExact(v) && PyList_GET_SIZE(v) == oparg) {
|
|
|
|
PyObject **items = ((PyListObject *)v)->ob_item;
|
|
|
|
while (oparg--) {
|
|
|
|
w = items[oparg];
|
|
|
|
Py_INCREF(w);
|
|
|
|
PUSH(w);
|
1997-08-25 22:13:04 +00:00
|
|
|
}
|
2004-03-08 23:25:30 +00:00
|
|
|
} else if (unpack_iterable(v, oparg,
|
2001-06-21 02:49:55 +00:00
|
|
|
stack_pointer + oparg))
|
|
|
|
stack_pointer += oparg;
|
2001-09-30 05:58:42 +00:00
|
|
|
else {
|
|
|
|
if (PyErr_ExceptionMatches(PyExc_TypeError))
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"unpack non-sequence");
|
1997-08-25 22:13:04 +00:00
|
|
|
why = WHY_EXCEPTION;
|
2001-09-30 05:58:42 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case STORE_ATTR:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
|
|
|
u = SECOND();
|
|
|
|
STACKADJ(-2);
|
1997-04-29 18:18:01 +00:00
|
|
|
err = PyObject_SetAttr(v, w, u); /* v.w = u */
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(u);
|
2004-04-07 14:38:08 +00:00
|
|
|
if (err == 0) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case DELETE_ATTR:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
1990-11-18 17:27:39 +00:00
|
|
|
v = POP();
|
1997-05-05 20:56:21 +00:00
|
|
|
err = PyObject_SetAttr(v, w, (PyObject *)NULL);
|
|
|
|
/* del v.w */
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-12-10 13:52:46 +00:00
|
|
|
case STORE_GLOBAL:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
1991-12-10 13:52:46 +00:00
|
|
|
v = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
err = PyDict_SetItem(f->f_globals, w, v);
|
|
|
|
Py_DECREF(v);
|
2004-04-07 14:38:08 +00:00
|
|
|
if (err == 0) continue;
|
1991-12-10 13:52:46 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-12-10 13:52:46 +00:00
|
|
|
case DELETE_GLOBAL:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
1997-04-29 18:18:01 +00:00
|
|
|
if ((err = PyDict_DelItem(f->f_globals, w)) != 0)
|
2000-08-30 20:25:01 +00:00
|
|
|
format_exc_check_arg(
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
PyExc_NameError, GLOBAL_NAME_ERROR_MSG, w);
|
1991-12-10 13:52:46 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case LOAD_NAME:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
2004-07-02 06:41:07 +00:00
|
|
|
if ((v = f->f_locals) == NULL) {
|
2001-01-19 03:25:05 +00:00
|
|
|
PyErr_Format(PyExc_SystemError,
|
|
|
|
"no locals when loading %s",
|
2001-02-01 20:20:45 +00:00
|
|
|
PyObject_REPR(w));
|
1995-07-18 14:51:37 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-08-02 14:50:43 +00:00
|
|
|
if (PyDict_CheckExact(v)) {
|
2004-07-02 06:41:07 +00:00
|
|
|
x = PyDict_GetItem(v, w);
|
2004-08-02 14:50:43 +00:00
|
|
|
Py_XINCREF(x);
|
|
|
|
}
|
2004-07-02 06:41:07 +00:00
|
|
|
else {
|
|
|
|
x = PyObject_GetItem(v, w);
|
|
|
|
if (x == NULL && PyErr_Occurred()) {
|
|
|
|
if (!PyErr_ExceptionMatches(PyExc_KeyError))
|
|
|
|
break;
|
|
|
|
PyErr_Clear();
|
|
|
|
}
|
|
|
|
}
|
1990-12-20 15:06:42 +00:00
|
|
|
if (x == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyDict_GetItem(f->f_globals, w);
|
1991-04-04 10:40:29 +00:00
|
|
|
if (x == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyDict_GetItem(f->f_builtins, w);
|
1991-04-04 10:40:29 +00:00
|
|
|
if (x == NULL) {
|
2000-08-30 20:25:01 +00:00
|
|
|
format_exc_check_arg(
|
2001-01-17 15:42:30 +00:00
|
|
|
PyExc_NameError,
|
2000-08-30 20:25:01 +00:00
|
|
|
NAME_ERROR_MSG ,w);
|
1991-04-04 10:40:29 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-08-02 14:50:43 +00:00
|
|
|
Py_INCREF(x);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
PUSH(x);
|
2004-04-07 11:39:21 +00:00
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
case LOAD_GLOBAL:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
2002-08-19 20:24:07 +00:00
|
|
|
if (PyString_CheckExact(w)) {
|
2002-08-19 21:17:53 +00:00
|
|
|
/* Inline the PyDict_GetItem() calls.
|
|
|
|
WARNING: this is an extreme speed hack.
|
|
|
|
Do not try this at home. */
|
2002-08-19 20:24:07 +00:00
|
|
|
long hash = ((PyStringObject *)w)->ob_shash;
|
|
|
|
if (hash != -1) {
|
|
|
|
PyDictObject *d;
|
|
|
|
d = (PyDictObject *)(f->f_globals);
|
|
|
|
x = d->ma_lookup(d, w, hash)->me_value;
|
|
|
|
if (x != NULL) {
|
|
|
|
Py_INCREF(x);
|
|
|
|
PUSH(x);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
d = (PyDictObject *)(f->f_builtins);
|
|
|
|
x = d->ma_lookup(d, w, hash)->me_value;
|
|
|
|
if (x != NULL) {
|
|
|
|
Py_INCREF(x);
|
|
|
|
PUSH(x);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
goto load_global_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* This is the un-inlined version of the code above */
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyDict_GetItem(f->f_globals, w);
|
1991-04-04 10:40:29 +00:00
|
|
|
if (x == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyDict_GetItem(f->f_builtins, w);
|
1991-04-04 10:40:29 +00:00
|
|
|
if (x == NULL) {
|
2002-08-19 20:24:07 +00:00
|
|
|
load_global_error:
|
2000-08-30 20:25:01 +00:00
|
|
|
format_exc_check_arg(
|
2001-01-17 15:42:30 +00:00
|
|
|
PyExc_NameError,
|
2002-08-19 20:24:07 +00:00
|
|
|
GLOBAL_NAME_ERROR_MSG, w);
|
1991-04-04 10:40:29 +00:00
|
|
|
break;
|
|
|
|
}
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_INCREF(x);
|
1990-12-20 15:06:42 +00:00
|
|
|
PUSH(x);
|
2004-04-07 14:38:08 +00:00
|
|
|
continue;
|
1993-03-29 10:43:31 +00:00
|
|
|
|
1993-03-30 13:18:41 +00:00
|
|
|
case DELETE_FAST:
|
1998-05-12 20:27:36 +00:00
|
|
|
x = GETLOCAL(oparg);
|
2004-04-07 11:39:21 +00:00
|
|
|
if (x != NULL) {
|
|
|
|
SETLOCAL(oparg, NULL);
|
|
|
|
continue;
|
1998-05-12 20:27:36 +00:00
|
|
|
}
|
2004-04-07 11:39:21 +00:00
|
|
|
format_exc_check_arg(
|
|
|
|
PyExc_UnboundLocalError,
|
|
|
|
UNBOUNDLOCAL_ERROR_MSG,
|
|
|
|
PyTuple_GetItem(co->co_varnames, oparg)
|
|
|
|
);
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
case LOAD_CLOSURE:
|
2001-01-29 22:51:52 +00:00
|
|
|
x = freevars[oparg];
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
Py_INCREF(x);
|
|
|
|
PUSH(x);
|
2004-04-07 14:38:08 +00:00
|
|
|
if (x != NULL) continue;
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LOAD_DEREF:
|
2001-01-29 22:51:52 +00:00
|
|
|
x = freevars[oparg];
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
w = PyCell_Get(x);
|
2004-04-07 11:39:21 +00:00
|
|
|
if (w != NULL) {
|
|
|
|
PUSH(w);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
err = -1;
|
|
|
|
/* Don't stomp existing exception */
|
|
|
|
if (PyErr_Occurred())
|
2001-02-05 17:23:16 +00:00
|
|
|
break;
|
2004-04-07 11:39:21 +00:00
|
|
|
if (oparg < f->f_ncells) {
|
|
|
|
v = PyTuple_GetItem(co->co_cellvars,
|
|
|
|
oparg);
|
|
|
|
format_exc_check_arg(
|
|
|
|
PyExc_UnboundLocalError,
|
|
|
|
UNBOUNDLOCAL_ERROR_MSG,
|
|
|
|
v);
|
|
|
|
} else {
|
|
|
|
v = PyTuple_GetItem(
|
|
|
|
co->co_freevars,
|
|
|
|
oparg - f->f_ncells);
|
|
|
|
format_exc_check_arg(
|
|
|
|
PyExc_NameError,
|
|
|
|
UNBOUNDFREE_ERROR_MSG,
|
|
|
|
v);
|
2001-02-05 17:23:16 +00:00
|
|
|
}
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case STORE_DEREF:
|
|
|
|
w = POP();
|
2001-01-29 22:51:52 +00:00
|
|
|
x = freevars[oparg];
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
PyCell_Set(x, w);
|
2001-03-13 01:58:22 +00:00
|
|
|
Py_DECREF(w);
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
continue;
|
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BUILD_TUPLE:
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyTuple_New(oparg);
|
1990-12-20 15:06:42 +00:00
|
|
|
if (x != NULL) {
|
2004-04-10 23:34:17 +00:00
|
|
|
for (; --oparg >= 0;) {
|
1990-11-18 17:27:39 +00:00
|
|
|
w = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
PyTuple_SET_ITEM(x, oparg, w);
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
1990-12-20 15:06:42 +00:00
|
|
|
PUSH(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BUILD_LIST:
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyList_New(oparg);
|
1990-12-20 15:06:42 +00:00
|
|
|
if (x != NULL) {
|
2004-04-10 23:34:17 +00:00
|
|
|
for (; --oparg >= 0;) {
|
1990-11-18 17:27:39 +00:00
|
|
|
w = POP();
|
1998-08-04 15:27:50 +00:00
|
|
|
PyList_SET_ITEM(x, oparg, w);
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
1990-12-20 15:06:42 +00:00
|
|
|
PUSH(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case BUILD_MAP:
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyDict_New();
|
1990-12-20 15:06:42 +00:00
|
|
|
PUSH(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case LOAD_ATTR:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyObject_GetAttr(v, w);
|
|
|
|
Py_DECREF(v);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case COMPARE_OP:
|
|
|
|
w = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2003-01-19 05:08:13 +00:00
|
|
|
if (PyInt_CheckExact(w) && PyInt_CheckExact(v)) {
|
1997-07-17 23:12:42 +00:00
|
|
|
/* INLINE: cmp(int, int) */
|
|
|
|
register long a, b;
|
|
|
|
register int res;
|
1998-12-04 18:51:36 +00:00
|
|
|
a = PyInt_AS_LONG(v);
|
|
|
|
b = PyInt_AS_LONG(w);
|
1997-07-17 23:12:42 +00:00
|
|
|
switch (oparg) {
|
2002-01-01 19:59:11 +00:00
|
|
|
case PyCmp_LT: res = a < b; break;
|
|
|
|
case PyCmp_LE: res = a <= b; break;
|
|
|
|
case PyCmp_EQ: res = a == b; break;
|
|
|
|
case PyCmp_NE: res = a != b; break;
|
|
|
|
case PyCmp_GT: res = a > b; break;
|
|
|
|
case PyCmp_GE: res = a >= b; break;
|
|
|
|
case PyCmp_IS: res = v == w; break;
|
|
|
|
case PyCmp_IS_NOT: res = v != w; break;
|
1997-07-17 23:12:42 +00:00
|
|
|
default: goto slow_compare;
|
|
|
|
}
|
|
|
|
x = res ? Py_True : Py_False;
|
|
|
|
Py_INCREF(x);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
slow_compare:
|
|
|
|
x = cmp_outcome(oparg, v, w);
|
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2003-03-16 03:11:04 +00:00
|
|
|
if (x == NULL) break;
|
|
|
|
PREDICT(JUMP_IF_FALSE);
|
|
|
|
PREDICT(JUMP_IF_TRUE);
|
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case IMPORT_NAME:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyDict_GetItemString(f->f_builtins, "__import__");
|
1995-01-02 19:04:15 +00:00
|
|
|
if (x == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_SetString(PyExc_ImportError,
|
1997-05-06 15:06:49 +00:00
|
|
|
"__import__ not found");
|
1995-01-02 19:04:15 +00:00
|
|
|
break;
|
|
|
|
}
|
2006-02-28 16:09:29 +00:00
|
|
|
v = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
u = TOP();
|
2006-02-28 16:09:29 +00:00
|
|
|
if (PyInt_AsLong(u) != -1 || PyErr_Occurred())
|
|
|
|
w = PyTuple_Pack(5,
|
|
|
|
w,
|
|
|
|
f->f_globals,
|
|
|
|
f->f_locals == NULL ?
|
|
|
|
Py_None : f->f_locals,
|
|
|
|
v,
|
|
|
|
u);
|
|
|
|
else
|
|
|
|
w = PyTuple_Pack(4,
|
|
|
|
w,
|
|
|
|
f->f_globals,
|
|
|
|
f->f_locals == NULL ?
|
|
|
|
Py_None : f->f_locals,
|
|
|
|
v);
|
|
|
|
Py_DECREF(v);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
1995-01-02 19:04:15 +00:00
|
|
|
if (w == NULL) {
|
2003-01-09 15:24:30 +00:00
|
|
|
u = POP();
|
1995-01-02 19:04:15 +00:00
|
|
|
x = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr0);
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyEval_CallObject(x, w);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr1);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-17 22:55:00 +00:00
|
|
|
case IMPORT_STAR:
|
|
|
|
v = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
PyFrame_FastToLocals(f);
|
1995-07-18 14:51:37 +00:00
|
|
|
if ((x = f->f_locals) == NULL) {
|
1997-05-05 20:56:21 +00:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
2001-01-19 03:25:05 +00:00
|
|
|
"no locals found during 'import *'");
|
1995-07-18 14:51:37 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr0);
|
2000-08-17 22:55:00 +00:00
|
|
|
err = import_all_from(x, v);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr1);
|
1997-04-29 18:18:01 +00:00
|
|
|
PyFrame_LocalsToFast(f, 0);
|
2000-08-17 22:55:00 +00:00
|
|
|
Py_DECREF(v);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (err == 0) continue;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
1993-05-19 14:50:45 +00:00
|
|
|
|
2000-08-17 22:55:00 +00:00
|
|
|
case IMPORT_FROM:
|
2002-08-06 17:47:40 +00:00
|
|
|
w = GETITEM(names, oparg);
|
2000-08-17 22:55:00 +00:00
|
|
|
v = TOP();
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr0);
|
2000-08-17 22:55:00 +00:00
|
|
|
x = import_from(v, w);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr1);
|
2000-08-17 22:55:00 +00:00
|
|
|
PUSH(x);
|
|
|
|
if (x != NULL) continue;
|
|
|
|
break;
|
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case JUMP_FORWARD:
|
1990-12-20 15:06:42 +00:00
|
|
|
JUMPBY(oparg);
|
2003-06-01 19:21:12 +00:00
|
|
|
goto fast_next_opcode;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2003-03-16 03:11:04 +00:00
|
|
|
PREDICTED_WITH_ARG(JUMP_IF_FALSE);
|
1990-11-18 17:27:39 +00:00
|
|
|
case JUMP_IF_FALSE:
|
2003-02-26 18:11:50 +00:00
|
|
|
w = TOP();
|
2003-03-16 03:11:04 +00:00
|
|
|
if (w == Py_True) {
|
|
|
|
PREDICT(POP_TOP);
|
2003-06-01 19:21:12 +00:00
|
|
|
goto fast_next_opcode;
|
2003-03-16 03:11:04 +00:00
|
|
|
}
|
2003-02-26 18:11:50 +00:00
|
|
|
if (w == Py_False) {
|
|
|
|
JUMPBY(oparg);
|
2003-06-01 19:21:12 +00:00
|
|
|
goto fast_next_opcode;
|
2003-02-26 18:11:50 +00:00
|
|
|
}
|
|
|
|
err = PyObject_IsTrue(w);
|
1992-08-12 15:35:34 +00:00
|
|
|
if (err > 0)
|
|
|
|
err = 0;
|
|
|
|
else if (err == 0)
|
1990-12-20 15:06:42 +00:00
|
|
|
JUMPBY(oparg);
|
1997-01-18 02:46:13 +00:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2003-03-16 03:11:04 +00:00
|
|
|
PREDICTED_WITH_ARG(JUMP_IF_TRUE);
|
1990-11-18 17:27:39 +00:00
|
|
|
case JUMP_IF_TRUE:
|
2003-02-26 18:11:50 +00:00
|
|
|
w = TOP();
|
2003-03-16 03:11:04 +00:00
|
|
|
if (w == Py_False) {
|
|
|
|
PREDICT(POP_TOP);
|
2003-06-01 19:21:12 +00:00
|
|
|
goto fast_next_opcode;
|
2003-03-16 03:11:04 +00:00
|
|
|
}
|
2003-02-26 18:11:50 +00:00
|
|
|
if (w == Py_True) {
|
|
|
|
JUMPBY(oparg);
|
2003-06-01 19:21:12 +00:00
|
|
|
goto fast_next_opcode;
|
2003-02-26 18:11:50 +00:00
|
|
|
}
|
|
|
|
err = PyObject_IsTrue(w);
|
1992-08-12 15:35:34 +00:00
|
|
|
if (err > 0) {
|
|
|
|
err = 0;
|
1990-12-20 15:06:42 +00:00
|
|
|
JUMPBY(oparg);
|
1992-08-12 15:35:34 +00:00
|
|
|
}
|
1997-01-18 02:46:13 +00:00
|
|
|
else if (err == 0)
|
|
|
|
;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2004-03-12 16:33:17 +00:00
|
|
|
PREDICTED_WITH_ARG(JUMP_ABSOLUTE);
|
1990-11-18 17:27:39 +00:00
|
|
|
case JUMP_ABSOLUTE:
|
1990-12-20 15:06:42 +00:00
|
|
|
JUMPTO(oparg);
|
2003-05-30 23:59:44 +00:00
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2001-04-20 19:13:02 +00:00
|
|
|
case GET_ITER:
|
|
|
|
/* before: [obj]; after [getiter(obj)] */
|
2003-01-09 15:24:30 +00:00
|
|
|
v = TOP();
|
2001-04-20 19:13:02 +00:00
|
|
|
x = PyObject_GetIter(v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
if (x != NULL) {
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
2003-03-16 20:14:44 +00:00
|
|
|
PREDICT(FOR_ITER);
|
2001-04-23 14:08:49 +00:00
|
|
|
continue;
|
2001-04-20 19:13:02 +00:00
|
|
|
}
|
2003-01-14 12:43:10 +00:00
|
|
|
STACKADJ(-1);
|
2001-04-20 19:13:02 +00:00
|
|
|
break;
|
|
|
|
|
2003-03-16 20:14:44 +00:00
|
|
|
PREDICTED_WITH_ARG(FOR_ITER);
|
2001-04-20 19:13:02 +00:00
|
|
|
case FOR_ITER:
|
|
|
|
/* before: [iter]; after: [iter, iter()] *or* [] */
|
|
|
|
v = TOP();
|
2004-03-12 08:41:36 +00:00
|
|
|
x = (*v->ob_type->tp_iternext)(v);
|
2001-04-23 14:08:49 +00:00
|
|
|
if (x != NULL) {
|
|
|
|
PUSH(x);
|
2003-03-16 20:14:44 +00:00
|
|
|
PREDICT(STORE_FAST);
|
|
|
|
PREDICT(UNPACK_SEQUENCE);
|
2001-04-23 14:08:49 +00:00
|
|
|
continue;
|
2001-04-20 19:13:02 +00:00
|
|
|
}
|
2004-03-12 08:41:36 +00:00
|
|
|
if (PyErr_Occurred()) {
|
|
|
|
if (!PyErr_ExceptionMatches(PyExc_StopIteration))
|
|
|
|
break;
|
|
|
|
PyErr_Clear();
|
2001-04-23 14:08:49 +00:00
|
|
|
}
|
2004-03-12 08:41:36 +00:00
|
|
|
/* iterator ended normally */
|
|
|
|
x = v = POP();
|
|
|
|
Py_DECREF(v);
|
|
|
|
JUMPBY(oparg);
|
|
|
|
continue;
|
2001-04-20 19:13:02 +00:00
|
|
|
|
2004-03-12 09:12:22 +00:00
|
|
|
case BREAK_LOOP:
|
|
|
|
why = WHY_BREAK;
|
|
|
|
goto fast_block_end;
|
|
|
|
|
|
|
|
case CONTINUE_LOOP:
|
|
|
|
retval = PyInt_FromLong(oparg);
|
|
|
|
why = WHY_CONTINUE;
|
|
|
|
goto fast_block_end;
|
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
case SETUP_LOOP:
|
|
|
|
case SETUP_EXCEPT:
|
1990-12-20 15:06:42 +00:00
|
|
|
case SETUP_FINALLY:
|
1997-04-29 18:18:01 +00:00
|
|
|
PyFrame_BlockSetup(f, opcode, INSTR_OFFSET() + oparg,
|
2001-02-01 22:48:12 +00:00
|
|
|
STACK_LEVEL());
|
1997-01-18 02:46:13 +00:00
|
|
|
continue;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2006-02-27 22:32:47 +00:00
|
|
|
case WITH_CLEANUP:
|
|
|
|
{
|
|
|
|
/* TOP is the context.__exit__ bound method.
|
|
|
|
Below that are 1-3 values indicating how/why
|
|
|
|
we entered the finally clause:
|
|
|
|
- SECOND = None
|
|
|
|
- (SECOND, THIRD) = (WHY_RETURN or WHY_CONTINUE), retval
|
|
|
|
- SECOND = WHY_*; no retval below it
|
|
|
|
- (SECOND, THIRD, FOURTH) = exc_info()
|
|
|
|
In the last case, we must call
|
|
|
|
TOP(SECOND, THIRD, FOURTH)
|
|
|
|
otherwise we must call
|
|
|
|
TOP(None, None, None)
|
|
|
|
but we must preserve the stack entries below TOP.
|
|
|
|
The code here just sets the stack up for the call;
|
|
|
|
separate CALL_FUNCTION(3) and POP_TOP opcodes are
|
|
|
|
emitted by the compiler.
|
2006-02-28 21:57:43 +00:00
|
|
|
|
|
|
|
In addition, if the stack represents an exception,
|
|
|
|
we "zap" this information; __exit__() should
|
|
|
|
re-raise the exception if it wants to, and if
|
|
|
|
__exit__() returns normally, END_FINALLY should
|
|
|
|
*not* re-raise the exception. (But non-local
|
|
|
|
gotos should still be resumed.)
|
2006-02-27 22:32:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
x = TOP();
|
|
|
|
u = SECOND();
|
|
|
|
if (PyInt_Check(u) || u == Py_None) {
|
|
|
|
u = v = w = Py_None;
|
2006-02-28 21:57:43 +00:00
|
|
|
Py_INCREF(u);
|
|
|
|
Py_INCREF(v);
|
|
|
|
Py_INCREF(w);
|
2006-02-27 22:32:47 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
v = THIRD();
|
|
|
|
w = FOURTH();
|
2006-02-28 21:57:43 +00:00
|
|
|
/* Zap the exception from the stack,
|
|
|
|
to fool END_FINALLY. */
|
|
|
|
STACKADJ(-2);
|
|
|
|
SET_TOP(x);
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
SET_SECOND(Py_None);
|
2006-02-27 22:32:47 +00:00
|
|
|
}
|
2006-02-28 21:57:43 +00:00
|
|
|
STACKADJ(3);
|
|
|
|
SET_THIRD(u);
|
|
|
|
SET_SECOND(v);
|
|
|
|
SET_TOP(w);
|
2006-02-27 22:32:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1995-07-07 22:53:21 +00:00
|
|
|
case CALL_FUNCTION:
|
2004-06-17 10:22:40 +00:00
|
|
|
{
|
|
|
|
PyObject **sp;
|
2003-02-05 23:13:00 +00:00
|
|
|
PCALL(PCALL_ALL);
|
2004-06-17 10:22:40 +00:00
|
|
|
sp = stack_pointer;
|
2004-06-08 08:17:44 +00:00
|
|
|
#ifdef WITH_TSC
|
2004-06-17 10:22:40 +00:00
|
|
|
x = call_function(&sp, oparg, &intr0, &intr1);
|
2004-06-08 08:17:44 +00:00
|
|
|
#else
|
2004-06-17 10:22:40 +00:00
|
|
|
x = call_function(&sp, oparg);
|
2004-06-08 08:17:44 +00:00
|
|
|
#endif
|
2004-06-17 10:22:40 +00:00
|
|
|
stack_pointer = sp;
|
2002-08-16 17:47:26 +00:00
|
|
|
PUSH(x);
|
|
|
|
if (x != NULL)
|
|
|
|
continue;
|
|
|
|
break;
|
2004-06-17 10:22:40 +00:00
|
|
|
}
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-03-28 23:49:17 +00:00
|
|
|
case CALL_FUNCTION_VAR:
|
|
|
|
case CALL_FUNCTION_KW:
|
|
|
|
case CALL_FUNCTION_VAR_KW:
|
1995-07-07 22:53:21 +00:00
|
|
|
{
|
2000-03-28 23:49:17 +00:00
|
|
|
int na = oparg & 0xff;
|
|
|
|
int nk = (oparg>>8) & 0xff;
|
|
|
|
int flags = (opcode - CALL_FUNCTION) & 3;
|
2001-01-03 23:52:36 +00:00
|
|
|
int n = na + 2 * nk;
|
2004-06-17 10:22:40 +00:00
|
|
|
PyObject **pfunc, *func, **sp;
|
2003-02-05 23:13:00 +00:00
|
|
|
PCALL(PCALL_ALL);
|
2001-01-03 23:52:36 +00:00
|
|
|
if (flags & CALL_FLAG_VAR)
|
|
|
|
n++;
|
|
|
|
if (flags & CALL_FLAG_KW)
|
|
|
|
n++;
|
|
|
|
pfunc = stack_pointer - n - 1;
|
|
|
|
func = *pfunc;
|
|
|
|
|
2001-01-17 15:42:30 +00:00
|
|
|
if (PyMethod_Check(func)
|
2001-01-03 23:52:36 +00:00
|
|
|
&& PyMethod_GET_SELF(func) != NULL) {
|
|
|
|
PyObject *self = PyMethod_GET_SELF(func);
|
2000-03-28 23:49:17 +00:00
|
|
|
Py_INCREF(self);
|
2001-01-03 23:52:36 +00:00
|
|
|
func = PyMethod_GET_FUNCTION(func);
|
|
|
|
Py_INCREF(func);
|
2000-03-28 23:49:17 +00:00
|
|
|
Py_DECREF(*pfunc);
|
|
|
|
*pfunc = self;
|
|
|
|
na++;
|
|
|
|
n++;
|
2001-01-17 15:42:30 +00:00
|
|
|
} else
|
2001-01-03 23:52:36 +00:00
|
|
|
Py_INCREF(func);
|
2004-06-17 10:22:40 +00:00
|
|
|
sp = stack_pointer;
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr0);
|
2004-06-17 10:22:40 +00:00
|
|
|
x = ext_do_call(func, &sp, flags, na, nk);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(intr1);
|
2004-06-17 10:22:40 +00:00
|
|
|
stack_pointer = sp;
|
2000-03-28 23:49:17 +00:00
|
|
|
Py_DECREF(func);
|
2001-01-03 23:52:36 +00:00
|
|
|
|
2000-03-28 23:49:17 +00:00
|
|
|
while (stack_pointer > pfunc) {
|
2001-01-03 23:52:36 +00:00
|
|
|
w = POP();
|
|
|
|
Py_DECREF(w);
|
2000-03-28 23:49:17 +00:00
|
|
|
}
|
|
|
|
PUSH(x);
|
2001-01-17 15:42:30 +00:00
|
|
|
if (x != NULL)
|
2001-01-03 23:52:36 +00:00
|
|
|
continue;
|
2000-03-28 23:49:17 +00:00
|
|
|
break;
|
1995-07-07 22:53:21 +00:00
|
|
|
}
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1995-07-18 14:51:37 +00:00
|
|
|
case MAKE_FUNCTION:
|
|
|
|
v = POP(); /* code object */
|
1997-04-29 18:18:01 +00:00
|
|
|
x = PyFunction_New(v, f->f_globals);
|
|
|
|
Py_DECREF(v);
|
1995-07-18 14:51:37 +00:00
|
|
|
/* XXX Maybe this should be a separate opcode? */
|
|
|
|
if (x != NULL && oparg > 0) {
|
1997-04-29 18:18:01 +00:00
|
|
|
v = PyTuple_New(oparg);
|
1995-07-18 14:51:37 +00:00
|
|
|
if (v == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(x);
|
1995-07-18 14:51:37 +00:00
|
|
|
x = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2004-04-10 23:34:17 +00:00
|
|
|
while (--oparg >= 0) {
|
1995-07-18 14:51:37 +00:00
|
|
|
w = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
PyTuple_SET_ITEM(v, oparg, w);
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
|
|
|
err = PyFunction_SetDefaults(x, v);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
|
|
|
PUSH(x);
|
|
|
|
break;
|
1996-07-30 16:49:37 +00:00
|
|
|
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
case MAKE_CLOSURE:
|
|
|
|
{
|
|
|
|
v = POP(); /* code object */
|
|
|
|
x = PyFunction_New(v, f->f_globals);
|
|
|
|
Py_DECREF(v);
|
2005-10-20 19:59:25 +00:00
|
|
|
if (x != NULL) {
|
|
|
|
v = POP();
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
err = PyFunction_SetClosure(x, v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
}
|
|
|
|
if (x != NULL && oparg > 0) {
|
|
|
|
v = PyTuple_New(oparg);
|
|
|
|
if (v == NULL) {
|
|
|
|
Py_DECREF(x);
|
|
|
|
x = NULL;
|
|
|
|
break;
|
|
|
|
}
|
2004-04-10 23:34:17 +00:00
|
|
|
while (--oparg >= 0) {
|
PEP 227 implementation
The majority of the changes are in the compiler. The mainloop changes
primarily to implement the new opcodes and to pass a function's
closure to eval_code2(). Frames and functions got new slots to hold
the closure.
Include/compile.h
Add co_freevars and co_cellvars slots to code objects.
Update PyCode_New() to take freevars and cellvars as arguments
Include/funcobject.h
Add func_closure slot to function objects.
Add GetClosure()/SetClosure() functions (and corresponding
macros) for getting at the closure.
Include/frameobject.h
PyFrame_New() now takes a closure.
Include/opcode.h
Add four new opcodes: MAKE_CLOSURE, LOAD_CLOSURE, LOAD_DEREF,
STORE_DEREF.
Remove comment about old requirement for opcodes to fit in 7
bits.
compile.c
Implement changes to code objects for co_freevars and co_cellvars.
Modify symbol table to use st_cur_name (string object for the name
of the current scope) and st_cur_children (list of nested blocks).
Also define st_nested, which might more properly be called
st_cur_nested. Add several DEF_XXX flags to track def-use
information for free variables.
New or modified functions of note:
com_make_closure(struct compiling *, PyCodeObject *)
Emit LOAD_CLOSURE opcodes as needed to pass cells for free
variables into nested scope.
com_addop_varname(struct compiling *, int, char *)
Emits opcodes for LOAD_DEREF and STORE_DEREF.
get_ref_type(struct compiling *, char *name)
Return NAME_CLOSURE if ref type is FREE or CELL
symtable_load_symbols(struct compiling *)
Decides what variables are cell or free based on def-use info.
Can now raise SyntaxError if nested scopes are mixed with
exec or from blah import *.
make_scope_info(PyObject *, PyObject *, int, int)
Helper functions for symtable scope stack.
symtable_update_free_vars(struct symtable *)
After a code block has been analyzed, it must check each of
its children for free variables that are not defined in the
block. If a variable is free in a child and not defined in
the parent, then it is defined by block the enclosing the
current one or it is a global. This does the right logic.
symtable_add_use() is now a macro for symtable_add_def()
symtable_assign(struct symtable *, node *)
Use goto instead of for (;;)
Fixed bug in symtable where name of keyword argument in function
call was treated as assignment in the scope of the call site. Ex:
def f():
g(a=2) # a was considered a local of f
ceval.c
eval_code2() now take one more argument, a closure.
Implement LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE>
Also: When name error occurs for global variable, report that the
name was global in the error mesage.
Objects/frameobject.c
Initialize f_closure to be a tuple containing space for cellvars
and freevars. f_closure is NULL if neither are present.
Objects/funcobject.c
Add support for func_closure.
Python/import.c
Change the magic number.
Python/marshal.c
Track changes to code objects.
2001-01-25 20:06:59 +00:00
|
|
|
w = POP();
|
|
|
|
PyTuple_SET_ITEM(v, oparg, w);
|
|
|
|
}
|
|
|
|
err = PyFunction_SetDefaults(x, v);
|
|
|
|
Py_DECREF(v);
|
|
|
|
}
|
|
|
|
PUSH(x);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1996-07-30 16:49:37 +00:00
|
|
|
case BUILD_SLICE:
|
|
|
|
if (oparg == 3)
|
|
|
|
w = POP();
|
|
|
|
else
|
|
|
|
w = NULL;
|
|
|
|
v = POP();
|
2003-01-09 15:24:30 +00:00
|
|
|
u = TOP();
|
1997-01-21 05:34:20 +00:00
|
|
|
x = PySlice_New(u, v, w);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(u);
|
|
|
|
Py_DECREF(v);
|
|
|
|
Py_XDECREF(w);
|
2003-01-09 15:24:30 +00:00
|
|
|
SET_TOP(x);
|
1997-01-18 02:46:13 +00:00
|
|
|
if (x != NULL) continue;
|
1996-07-30 16:49:37 +00:00
|
|
|
break;
|
|
|
|
|
2000-08-24 00:32:09 +00:00
|
|
|
case EXTENDED_ARG:
|
|
|
|
opcode = NEXTOP();
|
2004-04-10 23:34:17 +00:00
|
|
|
oparg = oparg<<16 | NEXTARG();
|
2000-08-24 00:32:09 +00:00
|
|
|
goto dispatch_opcode;
|
1996-07-30 16:49:37 +00:00
|
|
|
|
1990-11-18 17:27:39 +00:00
|
|
|
default:
|
1990-12-20 15:06:42 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"XXX lineno: %d, opcode: %d\n",
|
2002-08-15 14:59:02 +00:00
|
|
|
PyCode_Addr2Line(f->f_code, f->f_lasti),
|
|
|
|
opcode);
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_SetString(PyExc_SystemError, "unknown opcode");
|
1990-12-20 15:06:42 +00:00
|
|
|
why = WHY_EXCEPTION;
|
1990-11-18 17:27:39 +00:00
|
|
|
break;
|
1992-08-12 15:35:34 +00:00
|
|
|
|
|
|
|
#ifdef CASE_TOO_BIG
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1990-12-20 15:06:42 +00:00
|
|
|
} /* switch */
|
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
on_error:
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(inst1);
|
2004-06-08 08:17:44 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
/* Quickly continue if no error occurred */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
if (why == WHY_NOT) {
|
1995-07-18 14:51:37 +00:00
|
|
|
if (err == 0 && x != NULL) {
|
|
|
|
#ifdef CHECKEXC
|
1999-03-09 16:16:45 +00:00
|
|
|
/* This check is expensive! */
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyErr_Occurred())
|
1995-07-18 14:51:37 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"XXX undetected error\n");
|
2004-06-08 08:17:44 +00:00
|
|
|
else {
|
|
|
|
#endif
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(loop1);
|
1995-07-18 14:51:37 +00:00
|
|
|
continue; /* Normal, fast path */
|
2004-06-08 08:17:44 +00:00
|
|
|
#ifdef CHECKEXC
|
|
|
|
}
|
|
|
|
#endif
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
1991-04-04 10:40:29 +00:00
|
|
|
why = WHY_EXCEPTION;
|
1997-04-29 18:18:01 +00:00
|
|
|
x = Py_None;
|
1991-04-04 10:40:29 +00:00
|
|
|
err = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Double-check exception status */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2004-04-11 14:59:33 +00:00
|
|
|
if (why == WHY_EXCEPTION || why == WHY_RERAISE) {
|
1997-04-29 18:18:01 +00:00
|
|
|
if (!PyErr_Occurred()) {
|
1997-05-05 20:56:21 +00:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
1999-03-09 16:16:45 +00:00
|
|
|
"error return without exception set");
|
1991-04-04 10:40:29 +00:00
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
}
|
|
|
|
}
|
1999-03-09 16:16:45 +00:00
|
|
|
#ifdef CHECKEXC
|
1991-04-04 10:40:29 +00:00
|
|
|
else {
|
1999-03-09 16:16:45 +00:00
|
|
|
/* This check is expensive! */
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyErr_Occurred()) {
|
2003-11-05 17:29:35 +00:00
|
|
|
char buf[1024];
|
|
|
|
sprintf(buf, "Stack unwind with exception "
|
|
|
|
"set and why=%d", why);
|
|
|
|
Py_FatalError(buf);
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Log traceback info if this is a real exception */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
if (why == WHY_EXCEPTION) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyTraceBack_Here(f);
|
1992-01-12 02:29:51 +00:00
|
|
|
|
2001-10-04 14:48:42 +00:00
|
|
|
if (tstate->c_tracefunc != NULL)
|
|
|
|
call_exc_trace(tstate->c_tracefunc,
|
|
|
|
tstate->c_traceobj, f);
|
1998-11-23 21:09:51 +00:00
|
|
|
}
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
/* For the rest, treat WHY_RERAISE as WHY_EXCEPTION */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
if (why == WHY_RERAISE)
|
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
|
|
|
|
/* Unwind stacks if a (pseudo) exception occurred */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2004-02-06 18:32:33 +00:00
|
|
|
fast_block_end:
|
2004-04-05 19:36:21 +00:00
|
|
|
while (why != WHY_NOT && f->f_iblock > 0) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyTryBlock *b = PyFrame_BlockPop(f);
|
2001-02-01 22:48:12 +00:00
|
|
|
|
2004-04-05 19:36:21 +00:00
|
|
|
assert(why != WHY_YIELD);
|
2001-02-01 22:48:12 +00:00
|
|
|
if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) {
|
|
|
|
/* For a continue inside a try block,
|
|
|
|
don't pop the block for the loop. */
|
2001-09-24 19:32:01 +00:00
|
|
|
PyFrame_BlockSetup(f, b->b_type, b->b_handler,
|
|
|
|
b->b_level);
|
2001-02-01 22:48:12 +00:00
|
|
|
why = WHY_NOT;
|
|
|
|
JUMPTO(PyInt_AS_LONG(retval));
|
|
|
|
Py_DECREF(retval);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
while (STACK_LEVEL() > b->b_level) {
|
|
|
|
v = POP();
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_XDECREF(v);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
if (b->b_type == SETUP_LOOP && why == WHY_BREAK) {
|
|
|
|
why = WHY_NOT;
|
|
|
|
JUMPTO(b->b_handler);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (b->b_type == SETUP_FINALLY ||
|
1996-12-05 23:17:11 +00:00
|
|
|
(b->b_type == SETUP_EXCEPT &&
|
|
|
|
why == WHY_EXCEPTION)) {
|
1991-04-04 10:40:29 +00:00
|
|
|
if (why == WHY_EXCEPTION) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *exc, *val, *tb;
|
|
|
|
PyErr_Fetch(&exc, &val, &tb);
|
1991-04-04 10:40:29 +00:00
|
|
|
if (val == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
val = Py_None;
|
|
|
|
Py_INCREF(val);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
/* Make the raw exception data
|
|
|
|
available to the handler,
|
|
|
|
so a program can emulate the
|
|
|
|
Python main loop. Don't do
|
|
|
|
this for 'finally'. */
|
|
|
|
if (b->b_type == SETUP_EXCEPT) {
|
1997-08-28 22:36:40 +00:00
|
|
|
PyErr_NormalizeException(
|
|
|
|
&exc, &val, &tb);
|
1997-05-05 20:56:21 +00:00
|
|
|
set_exc_info(tstate,
|
|
|
|
exc, val, tb);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
2001-09-26 19:24:45 +00:00
|
|
|
if (tb == NULL) {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
PUSH(Py_None);
|
|
|
|
} else
|
|
|
|
PUSH(tb);
|
1991-04-04 10:40:29 +00:00
|
|
|
PUSH(val);
|
|
|
|
PUSH(exc);
|
|
|
|
}
|
|
|
|
else {
|
2004-04-06 09:37:35 +00:00
|
|
|
if (why & (WHY_RETURN | WHY_CONTINUE))
|
1991-04-04 10:40:29 +00:00
|
|
|
PUSH(retval);
|
1997-04-29 18:18:01 +00:00
|
|
|
v = PyInt_FromLong((long)why);
|
1991-04-04 10:40:29 +00:00
|
|
|
PUSH(v);
|
|
|
|
}
|
|
|
|
why = WHY_NOT;
|
|
|
|
JUMPTO(b->b_handler);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} /* unwind stack */
|
|
|
|
|
|
|
|
/* End the loop if we still have an error (or return) */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
if (why != WHY_NOT)
|
|
|
|
break;
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(loop1);
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1991-04-04 10:40:29 +00:00
|
|
|
} /* main loop */
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2004-04-05 19:36:21 +00:00
|
|
|
assert(why != WHY_YIELD);
|
|
|
|
/* Pop remaining stack entries. */
|
|
|
|
while (!EMPTY()) {
|
|
|
|
v = POP();
|
|
|
|
Py_XDECREF(v);
|
2001-12-06 21:28:18 +00:00
|
|
|
}
|
|
|
|
|
2004-04-05 19:36:21 +00:00
|
|
|
if (why != WHY_RETURN)
|
1992-01-12 02:29:51 +00:00
|
|
|
retval = NULL;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2004-02-06 18:32:33 +00:00
|
|
|
fast_yield:
|
2001-07-03 23:39:52 +00:00
|
|
|
if (tstate->use_tracing) {
|
2005-08-15 18:14:19 +00:00
|
|
|
if (tstate->c_tracefunc) {
|
|
|
|
if (why == WHY_RETURN || why == WHY_YIELD) {
|
|
|
|
if (call_trace(tstate->c_tracefunc,
|
|
|
|
tstate->c_traceobj, f,
|
|
|
|
PyTrace_RETURN, retval)) {
|
|
|
|
Py_XDECREF(retval);
|
|
|
|
retval = NULL;
|
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (why == WHY_EXCEPTION) {
|
|
|
|
call_trace_protected(tstate->c_tracefunc,
|
|
|
|
tstate->c_traceobj, f,
|
2005-09-20 18:34:01 +00:00
|
|
|
PyTrace_RETURN, NULL);
|
1992-01-12 02:29:51 +00:00
|
|
|
}
|
|
|
|
}
|
2001-10-04 14:48:42 +00:00
|
|
|
if (tstate->c_profilefunc) {
|
2001-10-04 19:26:43 +00:00
|
|
|
if (why == WHY_EXCEPTION)
|
|
|
|
call_trace_protected(tstate->c_profilefunc,
|
|
|
|
tstate->c_profileobj, f,
|
2005-09-20 18:34:01 +00:00
|
|
|
PyTrace_RETURN, NULL);
|
2001-10-04 19:26:43 +00:00
|
|
|
else if (call_trace(tstate->c_profilefunc,
|
|
|
|
tstate->c_profileobj, f,
|
|
|
|
PyTrace_RETURN, retval)) {
|
2001-07-03 23:39:52 +00:00
|
|
|
Py_XDECREF(retval);
|
|
|
|
retval = NULL;
|
|
|
|
why = WHY_EXCEPTION;
|
|
|
|
}
|
1992-03-23 18:19:28 +00:00
|
|
|
}
|
1992-01-12 02:29:51 +00:00
|
|
|
}
|
1997-01-21 21:18:36 +00:00
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
reset_exc_info(tstate);
|
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
/* pop frame */
|
2003-10-28 12:05:48 +00:00
|
|
|
exit_eval_frame:
|
|
|
|
Py_LeaveRecursiveCall();
|
2001-06-18 22:08:13 +00:00
|
|
|
tstate->frame = f->f_back;
|
1997-01-24 04:19:24 +00:00
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2006-02-27 22:32:47 +00:00
|
|
|
/* This is gonna seem *real weird*, but if you put some other code between
|
2004-06-27 15:43:12 +00:00
|
|
|
PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
|
2006-02-27 22:32:47 +00:00
|
|
|
the test in the if statements in Misc/gdbinit (pystack and pystackv). */
|
2004-03-01 15:44:05 +00:00
|
|
|
|
2001-08-02 04:15:00 +00:00
|
|
|
PyObject *
|
|
|
|
PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
|
2001-06-18 22:08:13 +00:00
|
|
|
PyObject **args, int argcount, PyObject **kws, int kwcount,
|
|
|
|
PyObject **defs, int defcount, PyObject *closure)
|
|
|
|
{
|
|
|
|
register PyFrameObject *f;
|
|
|
|
register PyObject *retval = NULL;
|
|
|
|
register PyObject **fastlocals, **freevars;
|
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
|
|
|
PyObject *x, *u;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
if (globals == NULL) {
|
2004-04-05 19:36:21 +00:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
2001-08-12 21:52:24 +00:00
|
|
|
"PyEval_EvalCodeEx: NULL globals");
|
2001-06-18 22:08:13 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
1995-07-18 14:51:37 +00:00
|
|
|
|
2003-02-05 23:13:00 +00:00
|
|
|
assert(globals != NULL);
|
|
|
|
f = PyFrame_New(tstate, co, globals, locals);
|
2001-06-18 22:08:13 +00:00
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
fastlocals = f->f_localsplus;
|
|
|
|
freevars = f->f_localsplus + f->f_nlocals;
|
|
|
|
|
|
|
|
if (co->co_argcount > 0 ||
|
|
|
|
co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) {
|
|
|
|
int i;
|
|
|
|
int n = argcount;
|
|
|
|
PyObject *kwdict = NULL;
|
|
|
|
if (co->co_flags & CO_VARKEYWORDS) {
|
|
|
|
kwdict = PyDict_New();
|
|
|
|
if (kwdict == NULL)
|
|
|
|
goto fail;
|
|
|
|
i = co->co_argcount;
|
|
|
|
if (co->co_flags & CO_VARARGS)
|
|
|
|
i++;
|
|
|
|
SETLOCAL(i, kwdict);
|
|
|
|
}
|
|
|
|
if (argcount > co->co_argcount) {
|
|
|
|
if (!(co->co_flags & CO_VARARGS)) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%.200s() takes %s %d "
|
|
|
|
"%sargument%s (%d given)",
|
|
|
|
PyString_AsString(co->co_name),
|
|
|
|
defcount ? "at most" : "exactly",
|
|
|
|
co->co_argcount,
|
|
|
|
kwcount ? "non-keyword " : "",
|
|
|
|
co->co_argcount == 1 ? "" : "s",
|
|
|
|
argcount);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
n = co->co_argcount;
|
|
|
|
}
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
x = args[i];
|
|
|
|
Py_INCREF(x);
|
|
|
|
SETLOCAL(i, x);
|
|
|
|
}
|
|
|
|
if (co->co_flags & CO_VARARGS) {
|
|
|
|
u = PyTuple_New(argcount - n);
|
|
|
|
if (u == NULL)
|
|
|
|
goto fail;
|
|
|
|
SETLOCAL(co->co_argcount, u);
|
|
|
|
for (i = n; i < argcount; i++) {
|
|
|
|
x = args[i];
|
|
|
|
Py_INCREF(x);
|
|
|
|
PyTuple_SET_ITEM(u, i-n, x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < kwcount; i++) {
|
|
|
|
PyObject *keyword = kws[2*i];
|
|
|
|
PyObject *value = kws[2*i + 1];
|
|
|
|
int j;
|
|
|
|
if (keyword == NULL || !PyString_Check(keyword)) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%.200s() keywords must be strings",
|
|
|
|
PyString_AsString(co->co_name));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
/* XXX slow -- speed up using dictionary? */
|
|
|
|
for (j = 0; j < co->co_argcount; j++) {
|
|
|
|
PyObject *nm = PyTuple_GET_ITEM(
|
|
|
|
co->co_varnames, j);
|
|
|
|
int cmp = PyObject_RichCompareBool(
|
|
|
|
keyword, nm, Py_EQ);
|
|
|
|
if (cmp > 0)
|
|
|
|
break;
|
|
|
|
else if (cmp < 0)
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
/* Check errors from Compare */
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
goto fail;
|
|
|
|
if (j >= co->co_argcount) {
|
|
|
|
if (kwdict == NULL) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%.200s() got an unexpected "
|
|
|
|
"keyword argument '%.400s'",
|
|
|
|
PyString_AsString(co->co_name),
|
|
|
|
PyString_AsString(keyword));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
PyDict_SetItem(kwdict, keyword, value);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (GETLOCAL(j) != NULL) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%.200s() got multiple "
|
|
|
|
"values for keyword "
|
|
|
|
"argument '%.400s'",
|
|
|
|
PyString_AsString(co->co_name),
|
|
|
|
PyString_AsString(keyword));
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
Py_INCREF(value);
|
|
|
|
SETLOCAL(j, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (argcount < co->co_argcount) {
|
|
|
|
int m = co->co_argcount - defcount;
|
|
|
|
for (i = argcount; i < m; i++) {
|
|
|
|
if (GETLOCAL(i) == NULL) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%.200s() takes %s %d "
|
|
|
|
"%sargument%s (%d given)",
|
|
|
|
PyString_AsString(co->co_name),
|
|
|
|
((co->co_flags & CO_VARARGS) ||
|
|
|
|
defcount) ? "at least"
|
|
|
|
: "exactly",
|
|
|
|
m, kwcount ? "non-keyword " : "",
|
|
|
|
m == 1 ? "" : "s", i);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (n > m)
|
|
|
|
i = n - m;
|
|
|
|
else
|
|
|
|
i = 0;
|
|
|
|
for (; i < defcount; i++) {
|
|
|
|
if (GETLOCAL(m+i) == NULL) {
|
|
|
|
PyObject *def = defs[i];
|
|
|
|
Py_INCREF(def);
|
|
|
|
SETLOCAL(m+i, def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (argcount > 0 || kwcount > 0) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%.200s() takes no arguments (%d given)",
|
|
|
|
PyString_AsString(co->co_name),
|
|
|
|
argcount + kwcount);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Allocate and initialize storage for cell vars, and copy free
|
|
|
|
vars into frame. This isn't too efficient right now. */
|
|
|
|
if (f->f_ncells) {
|
|
|
|
int i = 0, j = 0, nargs, found;
|
|
|
|
char *cellname, *argname;
|
|
|
|
PyObject *c;
|
|
|
|
|
|
|
|
nargs = co->co_argcount;
|
|
|
|
if (co->co_flags & CO_VARARGS)
|
|
|
|
nargs++;
|
|
|
|
if (co->co_flags & CO_VARKEYWORDS)
|
|
|
|
nargs++;
|
|
|
|
|
2005-10-20 19:59:25 +00:00
|
|
|
/* Initialize each cell var, taking into account
|
|
|
|
cell vars that are initialized from arguments.
|
|
|
|
|
|
|
|
Should arrange for the compiler to put cellvars
|
|
|
|
that are arguments at the beginning of the cellvars
|
|
|
|
list so that we can march over it more efficiently?
|
|
|
|
*/
|
|
|
|
for (i = 0; i < f->f_ncells; ++i) {
|
2001-06-18 22:08:13 +00:00
|
|
|
cellname = PyString_AS_STRING(
|
|
|
|
PyTuple_GET_ITEM(co->co_cellvars, i));
|
|
|
|
found = 0;
|
2005-10-20 19:59:25 +00:00
|
|
|
for (j = 0; j < nargs; j++) {
|
2001-06-18 22:08:13 +00:00
|
|
|
argname = PyString_AS_STRING(
|
|
|
|
PyTuple_GET_ITEM(co->co_varnames, j));
|
|
|
|
if (strcmp(cellname, argname) == 0) {
|
|
|
|
c = PyCell_New(GETLOCAL(j));
|
|
|
|
if (c == NULL)
|
|
|
|
goto fail;
|
|
|
|
GETLOCAL(f->f_nlocals + i) = c;
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found == 0) {
|
|
|
|
c = PyCell_New(NULL);
|
|
|
|
if (c == NULL)
|
|
|
|
goto fail;
|
|
|
|
SETLOCAL(f->f_nlocals + i, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (f->f_nfreevars) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < f->f_nfreevars; ++i) {
|
|
|
|
PyObject *o = PyTuple_GET_ITEM(closure, i);
|
|
|
|
Py_INCREF(o);
|
|
|
|
freevars[f->f_ncells + i] = o;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (co->co_flags & CO_GENERATOR) {
|
2001-06-21 02:41:10 +00:00
|
|
|
/* Don't need to keep the reference to f_back, it will be set
|
|
|
|
* when the generator is resumed. */
|
2001-07-16 02:29:45 +00:00
|
|
|
Py_XDECREF(f->f_back);
|
2001-06-21 02:41:10 +00:00
|
|
|
f->f_back = NULL;
|
|
|
|
|
2003-02-05 23:13:00 +00:00
|
|
|
PCALL(PCALL_GENERATOR);
|
|
|
|
|
2001-06-21 02:41:10 +00:00
|
|
|
/* Create a new generator that owns the ready to run frame
|
|
|
|
* and return that as the value. */
|
2004-06-01 15:22:42 +00:00
|
|
|
return PyGen_New(f);
|
2001-06-18 22:08:13 +00:00
|
|
|
}
|
|
|
|
|
2005-08-02 00:46:46 +00:00
|
|
|
retval = PyEval_EvalFrameEx(f,0);
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
fail: /* Jump here from prelude on failure */
|
|
|
|
|
2001-11-27 23:29:29 +00:00
|
|
|
/* decref'ing the frame can cause __del__ methods to get invoked,
|
|
|
|
which can call back into Python. While we're done with the
|
|
|
|
current Python frame (f), the associated C stack is still in use,
|
|
|
|
so recursion_depth must be boosted for the duration.
|
|
|
|
*/
|
|
|
|
assert(tstate != NULL);
|
|
|
|
++tstate->recursion_depth;
|
2001-06-18 22:08:13 +00:00
|
|
|
Py_DECREF(f);
|
2001-11-27 23:29:29 +00:00
|
|
|
--tstate->recursion_depth;
|
1992-01-12 02:29:51 +00:00
|
|
|
return retval;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2001-06-18 22:08:13 +00:00
|
|
|
|
2003-03-01 03:36:33 +00:00
|
|
|
/* Implementation notes for set_exc_info() and reset_exc_info():
|
|
|
|
|
|
|
|
- Below, 'exc_ZZZ' stands for 'exc_type', 'exc_value' and
|
|
|
|
'exc_traceback'. These always travel together.
|
|
|
|
|
|
|
|
- tstate->curexc_ZZZ is the "hot" exception that is set by
|
|
|
|
PyErr_SetString(), cleared by PyErr_Clear(), and so on.
|
|
|
|
|
|
|
|
- Once an exception is caught by an except clause, it is transferred
|
|
|
|
from tstate->curexc_ZZZ to tstate->exc_ZZZ, from which sys.exc_info()
|
|
|
|
can pick it up. This is the primary task of set_exc_info().
|
|
|
|
|
|
|
|
- Now let me explain the complicated dance with frame->f_exc_ZZZ.
|
|
|
|
|
|
|
|
Long ago, when none of this existed, there were just a few globals:
|
|
|
|
one set corresponding to the "hot" exception, and one set
|
|
|
|
corresponding to sys.exc_ZZZ. (Actually, the latter weren't C
|
|
|
|
globals; they were simply stored as sys.exc_ZZZ. For backwards
|
|
|
|
compatibility, they still are!) The problem was that in code like
|
|
|
|
this:
|
|
|
|
|
|
|
|
try:
|
|
|
|
"something that may fail"
|
|
|
|
except "some exception":
|
|
|
|
"do something else first"
|
|
|
|
"print the exception from sys.exc_ZZZ."
|
|
|
|
|
|
|
|
if "do something else first" invoked something that raised and caught
|
|
|
|
an exception, sys.exc_ZZZ were overwritten. That was a frequent
|
|
|
|
cause of subtle bugs. I fixed this by changing the semantics as
|
|
|
|
follows:
|
|
|
|
|
|
|
|
- Within one frame, sys.exc_ZZZ will hold the last exception caught
|
|
|
|
*in that frame*.
|
|
|
|
|
|
|
|
- But initially, and as long as no exception is caught in a given
|
|
|
|
frame, sys.exc_ZZZ will hold the last exception caught in the
|
|
|
|
previous frame (or the frame before that, etc.).
|
|
|
|
|
|
|
|
The first bullet fixed the bug in the above example. The second
|
|
|
|
bullet was for backwards compatibility: it was (and is) common to
|
|
|
|
have a function that is called when an exception is caught, and to
|
|
|
|
have that function access the caught exception via sys.exc_ZZZ.
|
|
|
|
(Example: traceback.print_exc()).
|
|
|
|
|
|
|
|
At the same time I fixed the problem that sys.exc_ZZZ weren't
|
|
|
|
thread-safe, by introducing sys.exc_info() which gets it from tstate;
|
|
|
|
but that's really a separate improvement.
|
|
|
|
|
|
|
|
The reset_exc_info() function in ceval.c restores the tstate->exc_ZZZ
|
|
|
|
variables to what they were before the current frame was called. The
|
|
|
|
set_exc_info() function saves them on the frame so that
|
|
|
|
reset_exc_info() can restore them. The invariant is that
|
|
|
|
frame->f_exc_ZZZ is NULL iff the current frame never caught an
|
|
|
|
exception (where "catching" an exception applies only to successful
|
|
|
|
except clauses); and if the current frame ever caught an exception,
|
|
|
|
frame->f_exc_ZZZ is the exception that was stored in tstate->exc_ZZZ
|
|
|
|
at the start of the current frame.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
static void
|
2001-01-17 15:42:30 +00:00
|
|
|
set_exc_info(PyThreadState *tstate,
|
|
|
|
PyObject *type, PyObject *value, PyObject *tb)
|
1997-05-05 20:56:21 +00:00
|
|
|
{
|
|
|
|
PyFrameObject *frame;
|
1997-05-20 17:06:11 +00:00
|
|
|
PyObject *tmp_type, *tmp_value, *tmp_tb;
|
1997-08-22 21:26:19 +00:00
|
|
|
|
1997-05-05 20:56:21 +00:00
|
|
|
frame = tstate->frame;
|
|
|
|
if (frame->f_exc_type == NULL) {
|
|
|
|
/* This frame didn't catch an exception before */
|
|
|
|
/* Save previous exception of this thread in this frame */
|
|
|
|
if (tstate->exc_type == NULL) {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
tstate->exc_type = Py_None;
|
|
|
|
}
|
1997-05-20 17:06:11 +00:00
|
|
|
tmp_type = frame->f_exc_type;
|
|
|
|
tmp_value = frame->f_exc_value;
|
|
|
|
tmp_tb = frame->f_exc_traceback;
|
1997-05-05 20:56:21 +00:00
|
|
|
Py_XINCREF(tstate->exc_type);
|
|
|
|
Py_XINCREF(tstate->exc_value);
|
|
|
|
Py_XINCREF(tstate->exc_traceback);
|
|
|
|
frame->f_exc_type = tstate->exc_type;
|
|
|
|
frame->f_exc_value = tstate->exc_value;
|
|
|
|
frame->f_exc_traceback = tstate->exc_traceback;
|
1997-05-20 17:06:11 +00:00
|
|
|
Py_XDECREF(tmp_type);
|
|
|
|
Py_XDECREF(tmp_value);
|
|
|
|
Py_XDECREF(tmp_tb);
|
1997-05-05 20:56:21 +00:00
|
|
|
}
|
|
|
|
/* Set new exception for this thread */
|
1997-05-20 17:06:11 +00:00
|
|
|
tmp_type = tstate->exc_type;
|
|
|
|
tmp_value = tstate->exc_value;
|
|
|
|
tmp_tb = tstate->exc_traceback;
|
1997-05-05 20:56:21 +00:00
|
|
|
Py_XINCREF(type);
|
|
|
|
Py_XINCREF(value);
|
|
|
|
Py_XINCREF(tb);
|
|
|
|
tstate->exc_type = type;
|
|
|
|
tstate->exc_value = value;
|
|
|
|
tstate->exc_traceback = tb;
|
1997-05-20 17:06:11 +00:00
|
|
|
Py_XDECREF(tmp_type);
|
|
|
|
Py_XDECREF(tmp_value);
|
|
|
|
Py_XDECREF(tmp_tb);
|
1997-05-05 20:56:21 +00:00
|
|
|
/* For b/w compatibility */
|
|
|
|
PySys_SetObject("exc_type", type);
|
|
|
|
PySys_SetObject("exc_value", value);
|
|
|
|
PySys_SetObject("exc_traceback", tb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-07-22 18:47:25 +00:00
|
|
|
reset_exc_info(PyThreadState *tstate)
|
1997-05-05 20:56:21 +00:00
|
|
|
{
|
|
|
|
PyFrameObject *frame;
|
1997-05-20 17:06:11 +00:00
|
|
|
PyObject *tmp_type, *tmp_value, *tmp_tb;
|
1997-05-05 20:56:21 +00:00
|
|
|
frame = tstate->frame;
|
|
|
|
if (frame->f_exc_type != NULL) {
|
|
|
|
/* This frame caught an exception */
|
1997-05-20 17:06:11 +00:00
|
|
|
tmp_type = tstate->exc_type;
|
|
|
|
tmp_value = tstate->exc_value;
|
|
|
|
tmp_tb = tstate->exc_traceback;
|
1997-05-05 20:56:21 +00:00
|
|
|
Py_XINCREF(frame->f_exc_type);
|
|
|
|
Py_XINCREF(frame->f_exc_value);
|
|
|
|
Py_XINCREF(frame->f_exc_traceback);
|
|
|
|
tstate->exc_type = frame->f_exc_type;
|
|
|
|
tstate->exc_value = frame->f_exc_value;
|
|
|
|
tstate->exc_traceback = frame->f_exc_traceback;
|
1997-05-20 17:06:11 +00:00
|
|
|
Py_XDECREF(tmp_type);
|
|
|
|
Py_XDECREF(tmp_value);
|
|
|
|
Py_XDECREF(tmp_tb);
|
1997-05-05 20:56:21 +00:00
|
|
|
/* For b/w compatibility */
|
|
|
|
PySys_SetObject("exc_type", frame->f_exc_type);
|
|
|
|
PySys_SetObject("exc_value", frame->f_exc_value);
|
|
|
|
PySys_SetObject("exc_traceback", frame->f_exc_traceback);
|
|
|
|
}
|
1997-05-20 17:06:11 +00:00
|
|
|
tmp_type = frame->f_exc_type;
|
|
|
|
tmp_value = frame->f_exc_value;
|
|
|
|
tmp_tb = frame->f_exc_traceback;
|
1997-05-05 20:56:21 +00:00
|
|
|
frame->f_exc_type = NULL;
|
|
|
|
frame->f_exc_value = NULL;
|
|
|
|
frame->f_exc_traceback = NULL;
|
1997-05-20 17:06:11 +00:00
|
|
|
Py_XDECREF(tmp_type);
|
|
|
|
Py_XDECREF(tmp_value);
|
|
|
|
Py_XDECREF(tmp_tb);
|
1997-05-05 20:56:21 +00:00
|
|
|
}
|
|
|
|
|
1996-12-10 18:07:35 +00:00
|
|
|
/* Logic for the raise statement (too complicated for inlining).
|
|
|
|
This *consumes* a reference count to each of its arguments. */
|
2004-04-06 10:11:10 +00:00
|
|
|
static enum why_code
|
2000-07-22 18:47:25 +00:00
|
|
|
do_raise(PyObject *type, PyObject *value, PyObject *tb)
|
1996-12-10 18:07:35 +00:00
|
|
|
{
|
1998-04-09 21:39:57 +00:00
|
|
|
if (type == NULL) {
|
|
|
|
/* Reraise */
|
2004-03-24 22:22:12 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
1998-04-09 21:39:57 +00:00
|
|
|
type = tstate->exc_type == NULL ? Py_None : tstate->exc_type;
|
|
|
|
value = tstate->exc_value;
|
|
|
|
tb = tstate->exc_traceback;
|
|
|
|
Py_XINCREF(type);
|
|
|
|
Py_XINCREF(value);
|
|
|
|
Py_XINCREF(tb);
|
|
|
|
}
|
2001-01-17 15:42:30 +00:00
|
|
|
|
1996-12-10 18:07:35 +00:00
|
|
|
/* We support the following forms of raise:
|
|
|
|
raise <class>, <classinstance>
|
|
|
|
raise <class>, <argument tuple>
|
|
|
|
raise <class>, None
|
|
|
|
raise <class>, <argument>
|
|
|
|
raise <classinstance>, None
|
|
|
|
raise <string>, <object>
|
|
|
|
raise <string>, None
|
|
|
|
|
|
|
|
An omitted second argument is the same as None.
|
|
|
|
|
|
|
|
In addition, raise <tuple>, <anything> is the same as
|
|
|
|
raising the tuple's first item (and it better have one!);
|
|
|
|
this rule is applied recursively.
|
|
|
|
|
|
|
|
Finally, an optional third argument can be supplied, which
|
|
|
|
gives the traceback to be substituted (useful when
|
|
|
|
re-raising an exception after examining it). */
|
|
|
|
|
|
|
|
/* First, check the traceback argument, replacing None with
|
|
|
|
NULL. */
|
1997-04-29 18:18:01 +00:00
|
|
|
if (tb == Py_None) {
|
|
|
|
Py_DECREF(tb);
|
1996-12-10 18:07:35 +00:00
|
|
|
tb = NULL;
|
|
|
|
}
|
|
|
|
else if (tb != NULL && !PyTraceBack_Check(tb)) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
2000-10-24 19:57:45 +00:00
|
|
|
"raise: arg 3 must be a traceback or None");
|
1996-12-10 18:07:35 +00:00
|
|
|
goto raise_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Next, replace a missing value with None */
|
|
|
|
if (value == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
value = Py_None;
|
|
|
|
Py_INCREF(value);
|
1996-12-10 18:07:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Next, repeatedly, replace a tuple exception with its first item */
|
1997-04-29 18:18:01 +00:00
|
|
|
while (PyTuple_Check(type) && PyTuple_Size(type) > 0) {
|
|
|
|
PyObject *tmp = type;
|
|
|
|
type = PyTuple_GET_ITEM(type, 0);
|
|
|
|
Py_INCREF(type);
|
|
|
|
Py_DECREF(tmp);
|
1996-12-10 18:07:35 +00:00
|
|
|
}
|
|
|
|
|
2006-02-27 23:39:10 +00:00
|
|
|
if (PyString_CheckExact(type)) {
|
2002-04-18 18:06:20 +00:00
|
|
|
/* Raising builtin string is deprecated but still allowed --
|
|
|
|
* do nothing. Raising an instance of a new-style str
|
|
|
|
* subclass is right out. */
|
2006-03-01 04:25:17 +00:00
|
|
|
if (PyErr_Warn(PyExc_DeprecationWarning,
|
2006-02-27 23:39:10 +00:00
|
|
|
"raising a string exception is deprecated"))
|
|
|
|
goto raise_error;
|
|
|
|
}
|
2006-03-01 04:25:17 +00:00
|
|
|
else if (PyExceptionClass_Check(type))
|
1997-08-22 21:26:19 +00:00
|
|
|
PyErr_NormalizeException(&type, &value, &tb);
|
|
|
|
|
2006-03-01 04:25:17 +00:00
|
|
|
else if (PyExceptionInstance_Check(type)) {
|
1996-12-10 18:07:35 +00:00
|
|
|
/* Raising an instance. The value should be a dummy. */
|
1997-04-29 18:18:01 +00:00
|
|
|
if (value != Py_None) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
1996-12-10 18:07:35 +00:00
|
|
|
"instance exception may not have a separate value");
|
|
|
|
goto raise_error;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Normalize to raise <class>, <instance> */
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(value);
|
1996-12-10 18:07:35 +00:00
|
|
|
value = type;
|
2006-03-01 04:25:17 +00:00
|
|
|
type = PyExceptionInstance_Class(type);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_INCREF(type);
|
1996-12-10 18:07:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Not something you can raise. You get an exception
|
|
|
|
anyway, just not what you specified :-) */
|
2001-04-27 02:25:33 +00:00
|
|
|
PyErr_Format(PyExc_TypeError,
|
2003-01-10 15:31:15 +00:00
|
|
|
"exceptions must be classes, instances, or "
|
|
|
|
"strings (deprecated), not %s",
|
|
|
|
type->ob_type->tp_name);
|
1996-12-10 18:07:35 +00:00
|
|
|
goto raise_error;
|
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_Restore(type, value, tb);
|
1996-12-10 18:07:35 +00:00
|
|
|
if (tb == NULL)
|
|
|
|
return WHY_EXCEPTION;
|
|
|
|
else
|
|
|
|
return WHY_RERAISE;
|
|
|
|
raise_error:
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_XDECREF(value);
|
|
|
|
Py_XDECREF(type);
|
|
|
|
Py_XDECREF(tb);
|
1996-12-10 18:07:35 +00:00
|
|
|
return WHY_EXCEPTION;
|
|
|
|
}
|
|
|
|
|
2001-06-21 02:49:55 +00:00
|
|
|
/* Iterate v argcnt times and store the results on the stack (via decreasing
|
|
|
|
sp). Return 1 for success, 0 if error. */
|
|
|
|
|
1997-08-25 22:13:04 +00:00
|
|
|
static int
|
2001-06-21 02:49:55 +00:00
|
|
|
unpack_iterable(PyObject *v, int argcnt, PyObject **sp)
|
1997-08-25 22:13:04 +00:00
|
|
|
{
|
2001-06-21 02:49:55 +00:00
|
|
|
int i = 0;
|
|
|
|
PyObject *it; /* iter(v) */
|
1997-08-25 22:13:04 +00:00
|
|
|
PyObject *w;
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2001-06-21 02:49:55 +00:00
|
|
|
assert(v != NULL);
|
|
|
|
|
|
|
|
it = PyObject_GetIter(v);
|
|
|
|
if (it == NULL)
|
|
|
|
goto Error;
|
|
|
|
|
|
|
|
for (; i < argcnt; i++) {
|
|
|
|
w = PyIter_Next(it);
|
|
|
|
if (w == NULL) {
|
|
|
|
/* Iterator done, via error or exhaustion. */
|
|
|
|
if (!PyErr_Occurred()) {
|
|
|
|
PyErr_Format(PyExc_ValueError,
|
|
|
|
"need more than %d value%s to unpack",
|
|
|
|
i, i == 1 ? "" : "s");
|
|
|
|
}
|
|
|
|
goto Error;
|
1997-08-25 22:13:04 +00:00
|
|
|
}
|
|
|
|
*--sp = w;
|
|
|
|
}
|
2001-06-21 02:49:55 +00:00
|
|
|
|
|
|
|
/* We better have exhausted the iterator now. */
|
|
|
|
w = PyIter_Next(it);
|
|
|
|
if (w == NULL) {
|
|
|
|
if (PyErr_Occurred())
|
|
|
|
goto Error;
|
|
|
|
Py_DECREF(it);
|
|
|
|
return 1;
|
1997-08-25 22:13:04 +00:00
|
|
|
}
|
2001-12-03 19:33:25 +00:00
|
|
|
Py_DECREF(w);
|
2001-06-21 02:49:55 +00:00
|
|
|
PyErr_SetString(PyExc_ValueError, "too many values to unpack");
|
1997-08-25 22:13:04 +00:00
|
|
|
/* fall through */
|
2001-06-21 02:49:55 +00:00
|
|
|
Error:
|
1997-08-25 22:30:51 +00:00
|
|
|
for (; i > 0; i--, sp++)
|
|
|
|
Py_DECREF(*sp);
|
2001-06-21 02:49:55 +00:00
|
|
|
Py_XDECREF(it);
|
1997-08-25 22:13:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1992-01-12 02:29:51 +00:00
|
|
|
#ifdef LLTRACE
|
1991-04-04 10:40:29 +00:00
|
|
|
static int
|
2000-07-22 18:47:25 +00:00
|
|
|
prtrace(PyObject *v, char *str)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
|
|
|
printf("%s ", str);
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyObject_Print(v, stdout, 0) != 0)
|
|
|
|
PyErr_Clear(); /* Don't know what else to do */
|
1991-04-04 10:40:29 +00:00
|
|
|
printf("\n");
|
2000-05-04 00:55:17 +00:00
|
|
|
return 1;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1992-03-23 18:19:28 +00:00
|
|
|
static void
|
2001-06-27 19:19:46 +00:00
|
|
|
call_exc_trace(Py_tracefunc func, PyObject *self, PyFrameObject *f)
|
1992-03-23 18:19:28 +00:00
|
|
|
{
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *type, *value, *traceback, *arg;
|
1992-03-23 18:19:28 +00:00
|
|
|
int err;
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_Fetch(&type, &value, &traceback);
|
1992-04-09 14:58:08 +00:00
|
|
|
if (value == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
value = Py_None;
|
|
|
|
Py_INCREF(value);
|
1992-04-09 14:58:08 +00:00
|
|
|
}
|
2003-10-12 19:09:37 +00:00
|
|
|
arg = PyTuple_Pack(3, type, value, traceback);
|
1995-01-02 19:04:15 +00:00
|
|
|
if (arg == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_Restore(type, value, traceback);
|
1995-01-02 19:04:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-06-27 19:19:46 +00:00
|
|
|
err = call_trace(func, self, f, PyTrace_EXCEPTION, arg);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(arg);
|
1995-01-02 19:04:15 +00:00
|
|
|
if (err == 0)
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_Restore(type, value, traceback);
|
1995-01-02 19:04:15 +00:00
|
|
|
else {
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_XDECREF(type);
|
|
|
|
Py_XDECREF(value);
|
|
|
|
Py_XDECREF(traceback);
|
1992-03-23 18:19:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-04 19:26:43 +00:00
|
|
|
static void
|
|
|
|
call_trace_protected(Py_tracefunc func, PyObject *obj, PyFrameObject *frame,
|
2005-09-20 18:34:01 +00:00
|
|
|
int what, PyObject *arg)
|
2001-10-04 19:26:43 +00:00
|
|
|
{
|
|
|
|
PyObject *type, *value, *traceback;
|
|
|
|
int err;
|
|
|
|
PyErr_Fetch(&type, &value, &traceback);
|
2005-09-20 18:34:01 +00:00
|
|
|
err = call_trace(func, obj, frame, what, arg);
|
2001-10-04 19:26:43 +00:00
|
|
|
if (err == 0)
|
|
|
|
PyErr_Restore(type, value, traceback);
|
|
|
|
else {
|
|
|
|
Py_XDECREF(type);
|
|
|
|
Py_XDECREF(value);
|
|
|
|
Py_XDECREF(traceback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1992-03-23 18:19:28 +00:00
|
|
|
static int
|
2001-06-27 19:19:46 +00:00
|
|
|
call_trace(Py_tracefunc func, PyObject *obj, PyFrameObject *frame,
|
|
|
|
int what, PyObject *arg)
|
1992-01-12 02:29:51 +00:00
|
|
|
{
|
2001-06-27 19:19:46 +00:00
|
|
|
register PyThreadState *tstate = frame->f_tstate;
|
|
|
|
int result;
|
|
|
|
if (tstate->tracing)
|
1992-03-23 18:19:28 +00:00
|
|
|
return 0;
|
1997-05-05 20:56:21 +00:00
|
|
|
tstate->tracing++;
|
2001-07-03 23:39:52 +00:00
|
|
|
tstate->use_tracing = 0;
|
2001-06-27 19:19:46 +00:00
|
|
|
result = func(obj, frame, what, arg);
|
2001-07-03 23:39:52 +00:00
|
|
|
tstate->use_tracing = ((tstate->c_tracefunc != NULL)
|
|
|
|
|| (tstate->c_profilefunc != NULL));
|
1997-05-05 20:56:21 +00:00
|
|
|
tstate->tracing--;
|
2001-06-27 19:19:46 +00:00
|
|
|
return result;
|
1992-01-12 02:29:51 +00:00
|
|
|
}
|
|
|
|
|
2003-04-09 19:06:21 +00:00
|
|
|
PyObject *
|
|
|
|
_PyEval_CallTracing(PyObject *func, PyObject *args)
|
|
|
|
{
|
|
|
|
PyFrameObject *frame = PyEval_GetFrame();
|
|
|
|
PyThreadState *tstate = frame->f_tstate;
|
|
|
|
int save_tracing = tstate->tracing;
|
|
|
|
int save_use_tracing = tstate->use_tracing;
|
|
|
|
PyObject *result;
|
|
|
|
|
|
|
|
tstate->tracing = 0;
|
|
|
|
tstate->use_tracing = ((tstate->c_tracefunc != NULL)
|
|
|
|
|| (tstate->c_profilefunc != NULL));
|
|
|
|
result = PyObject_Call(func, args, NULL);
|
|
|
|
tstate->tracing = save_tracing;
|
|
|
|
tstate->use_tracing = save_use_tracing;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-11-08 13:08:46 +00:00
|
|
|
static int
|
2004-04-05 19:36:21 +00:00
|
|
|
maybe_call_line_trace(Py_tracefunc func, PyObject *obj,
|
2004-03-22 19:24:58 +00:00
|
|
|
PyFrameObject *frame, int *instr_lb, int *instr_ub,
|
|
|
|
int *instr_prev)
|
2002-08-15 14:59:02 +00:00
|
|
|
{
|
|
|
|
/* The theory of SET_LINENO-less tracing.
|
2004-04-05 19:36:21 +00:00
|
|
|
|
2002-08-15 14:59:02 +00:00
|
|
|
In a nutshell, we use the co_lnotab field of the code object
|
|
|
|
to tell when execution has moved onto a different line.
|
|
|
|
|
|
|
|
As mentioned above, the basic idea is so set things up so
|
|
|
|
that
|
|
|
|
|
|
|
|
*instr_lb <= frame->f_lasti < *instr_ub
|
|
|
|
|
|
|
|
is true so long as execution does not change lines.
|
|
|
|
|
|
|
|
This is all fairly simple. Digging the information out of
|
|
|
|
co_lnotab takes some work, but is conceptually clear.
|
|
|
|
|
2002-08-30 13:09:51 +00:00
|
|
|
Somewhat harder to explain is why we don't *always* call the
|
|
|
|
line trace function when the above test fails.
|
2002-08-15 14:59:02 +00:00
|
|
|
|
|
|
|
Consider this code:
|
|
|
|
|
|
|
|
1: def f(a):
|
|
|
|
2: if a:
|
|
|
|
3: print 1
|
|
|
|
4: else:
|
|
|
|
5: print 2
|
|
|
|
|
|
|
|
which compiles to this:
|
|
|
|
|
|
|
|
2 0 LOAD_FAST 0 (a)
|
|
|
|
3 JUMP_IF_FALSE 9 (to 15)
|
2004-04-05 19:36:21 +00:00
|
|
|
6 POP_TOP
|
2002-08-15 14:59:02 +00:00
|
|
|
|
|
|
|
3 7 LOAD_CONST 1 (1)
|
2004-04-05 19:36:21 +00:00
|
|
|
10 PRINT_ITEM
|
|
|
|
11 PRINT_NEWLINE
|
2002-08-15 14:59:02 +00:00
|
|
|
12 JUMP_FORWARD 6 (to 21)
|
2004-04-05 19:36:21 +00:00
|
|
|
>> 15 POP_TOP
|
2002-08-15 14:59:02 +00:00
|
|
|
|
|
|
|
5 16 LOAD_CONST 2 (2)
|
2004-04-05 19:36:21 +00:00
|
|
|
19 PRINT_ITEM
|
|
|
|
20 PRINT_NEWLINE
|
2002-08-30 13:09:51 +00:00
|
|
|
>> 21 LOAD_CONST 0 (None)
|
|
|
|
24 RETURN_VALUE
|
2002-08-15 14:59:02 +00:00
|
|
|
|
2002-09-11 15:36:32 +00:00
|
|
|
If 'a' is false, execution will jump to instruction at offset
|
2002-08-15 14:59:02 +00:00
|
|
|
15 and the co_lnotab will claim that execution has moved to
|
|
|
|
line 3. This is at best misleading. In this case we could
|
|
|
|
associate the POP_TOP with line 4, but that doesn't make
|
|
|
|
sense in all cases (I think).
|
|
|
|
|
2002-08-30 13:09:51 +00:00
|
|
|
What we do is only call the line trace function if the co_lnotab
|
|
|
|
indicates we have jumped to the *start* of a line, i.e. if the
|
|
|
|
current instruction offset matches the offset given for the
|
|
|
|
start of a line by the co_lnotab.
|
2002-08-15 14:59:02 +00:00
|
|
|
|
2002-09-11 15:36:32 +00:00
|
|
|
This also takes care of the situation where 'a' is true.
|
2002-08-30 13:09:51 +00:00
|
|
|
Execution will jump from instruction offset 12 to offset 21.
|
|
|
|
Then the co_lnotab would imply that execution has moved to line
|
|
|
|
5, which is again misleading.
|
2002-09-11 15:36:32 +00:00
|
|
|
|
|
|
|
Why do we set f_lineno when tracing? Well, consider the code
|
|
|
|
above when 'a' is true. If stepping through this with 'n' in
|
|
|
|
pdb, you would stop at line 1 with a "call" type event, then
|
|
|
|
line events on lines 2 and 3, then a "return" type event -- but
|
|
|
|
you would be shown line 5 during this event. This is a change
|
|
|
|
from the behaviour in 2.2 and before, and I've found it
|
|
|
|
confusing in practice. By setting and using f_lineno when
|
|
|
|
tracing, one can report a line number different from that
|
|
|
|
suggested by f_lasti on this one occasion where it's desirable.
|
2002-08-15 14:59:02 +00:00
|
|
|
*/
|
|
|
|
|
2002-11-08 13:08:46 +00:00
|
|
|
int result = 0;
|
|
|
|
|
2002-08-30 13:09:51 +00:00
|
|
|
if ((frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub)) {
|
2002-08-15 14:59:02 +00:00
|
|
|
PyCodeObject* co = frame->f_code;
|
2002-09-11 15:36:32 +00:00
|
|
|
int size, addr, line;
|
2002-08-15 14:59:02 +00:00
|
|
|
unsigned char* p;
|
|
|
|
|
2002-08-30 13:09:51 +00:00
|
|
|
size = PyString_GET_SIZE(co->co_lnotab) / 2;
|
|
|
|
p = (unsigned char*)PyString_AS_STRING(co->co_lnotab);
|
2002-08-15 14:59:02 +00:00
|
|
|
|
2002-08-30 13:09:51 +00:00
|
|
|
addr = 0;
|
2002-09-11 15:36:32 +00:00
|
|
|
line = co->co_firstlineno;
|
2002-08-15 14:59:02 +00:00
|
|
|
|
|
|
|
/* possible optimization: if f->f_lasti == instr_ub
|
|
|
|
(likely to be a common case) then we already know
|
|
|
|
instr_lb -- if we stored the matching value of p
|
|
|
|
somwhere we could skip the first while loop. */
|
|
|
|
|
|
|
|
/* see comments in compile.c for the description of
|
|
|
|
co_lnotab. A point to remember: increments to p
|
|
|
|
should come in pairs -- although we don't care about
|
|
|
|
the line increments here, treating them as byte
|
|
|
|
increments gets confusing, to say the least. */
|
|
|
|
|
2002-08-30 13:09:51 +00:00
|
|
|
while (size > 0) {
|
2002-08-15 14:59:02 +00:00
|
|
|
if (addr + *p > frame->f_lasti)
|
|
|
|
break;
|
|
|
|
addr += *p++;
|
2002-10-03 09:53:11 +00:00
|
|
|
if (*p) *instr_lb = addr;
|
2002-09-11 15:36:32 +00:00
|
|
|
line += *p++;
|
2002-08-15 14:59:02 +00:00
|
|
|
--size;
|
|
|
|
}
|
2002-10-03 09:53:11 +00:00
|
|
|
|
2002-09-11 15:36:32 +00:00
|
|
|
if (addr == frame->f_lasti) {
|
|
|
|
frame->f_lineno = line;
|
2004-04-05 19:36:21 +00:00
|
|
|
result = call_trace(func, obj, frame,
|
2002-11-08 13:08:46 +00:00
|
|
|
PyTrace_LINE, Py_None);
|
2002-09-11 15:36:32 +00:00
|
|
|
}
|
2002-10-03 09:53:11 +00:00
|
|
|
|
2002-08-15 14:59:02 +00:00
|
|
|
if (size > 0) {
|
2004-04-10 23:34:17 +00:00
|
|
|
while (--size >= 0) {
|
2002-08-15 14:59:02 +00:00
|
|
|
addr += *p++;
|
|
|
|
if (*p++)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*instr_ub = addr;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*instr_ub = INT_MAX;
|
|
|
|
}
|
|
|
|
}
|
2004-03-22 19:24:58 +00:00
|
|
|
else if (frame->f_lasti <= *instr_prev) {
|
|
|
|
/* jumping back in the same line forces a trace event */
|
2004-04-05 19:36:21 +00:00
|
|
|
result = call_trace(func, obj, frame,
|
2004-03-22 19:24:58 +00:00
|
|
|
PyTrace_LINE, Py_None);
|
|
|
|
}
|
|
|
|
*instr_prev = frame->f_lasti;
|
2002-11-08 13:08:46 +00:00
|
|
|
return result;
|
2002-08-15 14:59:02 +00:00
|
|
|
}
|
|
|
|
|
2001-06-27 19:19:46 +00:00
|
|
|
void
|
|
|
|
PyEval_SetProfile(Py_tracefunc func, PyObject *arg)
|
2001-06-16 21:02:31 +00:00
|
|
|
{
|
2004-03-24 22:22:12 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
2001-06-27 19:19:46 +00:00
|
|
|
PyObject *temp = tstate->c_profileobj;
|
|
|
|
Py_XINCREF(arg);
|
|
|
|
tstate->c_profilefunc = NULL;
|
|
|
|
tstate->c_profileobj = NULL;
|
2005-06-25 07:07:35 +00:00
|
|
|
/* Must make sure that tracing is not ignored if 'temp' is freed */
|
2001-07-03 23:39:52 +00:00
|
|
|
tstate->use_tracing = tstate->c_tracefunc != NULL;
|
2001-06-27 19:19:46 +00:00
|
|
|
Py_XDECREF(temp);
|
|
|
|
tstate->c_profilefunc = func;
|
|
|
|
tstate->c_profileobj = arg;
|
2005-06-25 07:07:35 +00:00
|
|
|
/* Flag that tracing or profiling is turned on */
|
2001-07-03 23:39:52 +00:00
|
|
|
tstate->use_tracing = (func != NULL) || (tstate->c_tracefunc != NULL);
|
2001-06-27 19:19:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PyEval_SetTrace(Py_tracefunc func, PyObject *arg)
|
|
|
|
{
|
2004-03-24 22:22:12 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
2001-06-27 19:19:46 +00:00
|
|
|
PyObject *temp = tstate->c_traceobj;
|
|
|
|
Py_XINCREF(arg);
|
|
|
|
tstate->c_tracefunc = NULL;
|
|
|
|
tstate->c_traceobj = NULL;
|
2005-06-25 07:07:35 +00:00
|
|
|
/* Must make sure that profiling is not ignored if 'temp' is freed */
|
2001-07-03 23:39:52 +00:00
|
|
|
tstate->use_tracing = tstate->c_profilefunc != NULL;
|
2001-06-27 19:19:46 +00:00
|
|
|
Py_XDECREF(temp);
|
|
|
|
tstate->c_tracefunc = func;
|
|
|
|
tstate->c_traceobj = arg;
|
2005-06-25 07:07:35 +00:00
|
|
|
/* Flag that tracing or profiling is turned on */
|
2001-07-03 23:39:52 +00:00
|
|
|
tstate->use_tracing = ((func != NULL)
|
|
|
|
|| (tstate->c_profilefunc != NULL));
|
2001-06-16 21:02:31 +00:00
|
|
|
}
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_GetBuiltins(void)
|
1995-01-09 17:53:26 +00:00
|
|
|
{
|
2003-02-19 15:53:17 +00:00
|
|
|
PyFrameObject *current_frame = PyEval_GetFrame();
|
1995-01-09 17:53:26 +00:00
|
|
|
if (current_frame == NULL)
|
2004-03-24 22:22:12 +00:00
|
|
|
return PyThreadState_GET()->interp->builtins;
|
1995-01-09 17:53:26 +00:00
|
|
|
else
|
|
|
|
return current_frame->f_builtins;
|
|
|
|
}
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_GetLocals(void)
|
1993-03-30 17:46:03 +00:00
|
|
|
{
|
2003-02-19 15:53:17 +00:00
|
|
|
PyFrameObject *current_frame = PyEval_GetFrame();
|
1993-03-30 17:46:03 +00:00
|
|
|
if (current_frame == NULL)
|
|
|
|
return NULL;
|
1997-04-29 18:18:01 +00:00
|
|
|
PyFrame_FastToLocals(current_frame);
|
1993-03-30 17:46:03 +00:00
|
|
|
return current_frame->f_locals;
|
|
|
|
}
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_GetGlobals(void)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2003-02-19 15:53:17 +00:00
|
|
|
PyFrameObject *current_frame = PyEval_GetFrame();
|
1991-04-04 10:40:29 +00:00
|
|
|
if (current_frame == NULL)
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return current_frame->f_globals;
|
|
|
|
}
|
|
|
|
|
2003-02-19 15:53:17 +00:00
|
|
|
PyFrameObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_GetFrame(void)
|
1994-08-30 08:01:59 +00:00
|
|
|
{
|
2004-03-24 22:22:12 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
2003-02-19 15:53:17 +00:00
|
|
|
return _PyThreadState_GetFrame(tstate);
|
1994-08-30 08:01:59 +00:00
|
|
|
}
|
|
|
|
|
1995-01-09 17:53:26 +00:00
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_GetRestricted(void)
|
1995-01-09 17:53:26 +00:00
|
|
|
{
|
2003-02-19 15:53:17 +00:00
|
|
|
PyFrameObject *current_frame = PyEval_GetFrame();
|
1995-01-09 17:53:26 +00:00
|
|
|
return current_frame == NULL ? 0 : current_frame->f_restricted;
|
|
|
|
}
|
|
|
|
|
2001-03-22 02:32:48 +00:00
|
|
|
int
|
2001-07-16 02:29:45 +00:00
|
|
|
PyEval_MergeCompilerFlags(PyCompilerFlags *cf)
|
2001-03-22 02:32:48 +00:00
|
|
|
{
|
2003-02-19 15:53:17 +00:00
|
|
|
PyFrameObject *current_frame = PyEval_GetFrame();
|
2003-02-10 08:21:10 +00:00
|
|
|
int result = cf->cf_flags != 0;
|
2001-07-16 02:29:45 +00:00
|
|
|
|
|
|
|
if (current_frame != NULL) {
|
|
|
|
const int codeflags = current_frame->f_code->co_flags;
|
2001-08-17 20:47:47 +00:00
|
|
|
const int compilerflags = codeflags & PyCF_MASK;
|
|
|
|
if (compilerflags) {
|
2001-07-16 02:29:45 +00:00
|
|
|
result = 1;
|
2001-08-17 20:47:47 +00:00
|
|
|
cf->cf_flags |= compilerflags;
|
2001-07-16 02:29:45 +00:00
|
|
|
}
|
2002-03-22 23:53:36 +00:00
|
|
|
#if 0 /* future keyword */
|
2002-01-01 19:59:11 +00:00
|
|
|
if (codeflags & CO_GENERATOR_ALLOWED) {
|
|
|
|
result = 1;
|
|
|
|
cf->cf_flags |= CO_GENERATOR_ALLOWED;
|
|
|
|
}
|
2002-03-22 23:53:36 +00:00
|
|
|
#endif
|
2001-07-16 02:29:45 +00:00
|
|
|
}
|
|
|
|
return result;
|
2001-03-22 02:32:48 +00:00
|
|
|
}
|
|
|
|
|
1997-05-22 22:26:18 +00:00
|
|
|
int
|
2000-07-22 18:47:25 +00:00
|
|
|
Py_FlushLine(void)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *f = PySys_GetObject("stdout");
|
1997-05-22 22:26:18 +00:00
|
|
|
if (f == NULL)
|
|
|
|
return 0;
|
|
|
|
if (!PyFile_SoftSpace(f, 0))
|
|
|
|
return 0;
|
|
|
|
return PyFile_WriteString("\n", f);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-07-18 14:51:37 +00:00
|
|
|
/* External interface to call any callable object.
|
|
|
|
The arg must be a tuple or NULL. */
|
1991-07-27 21:32:34 +00:00
|
|
|
|
1997-08-30 15:02:50 +00:00
|
|
|
#undef PyEval_CallObject
|
|
|
|
/* for backward compatibility: export this interface */
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_CallObject(PyObject *func, PyObject *arg)
|
1991-07-27 21:32:34 +00:00
|
|
|
{
|
1997-04-29 18:18:01 +00:00
|
|
|
return PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL);
|
1995-07-18 14:51:37 +00:00
|
|
|
}
|
1997-08-30 15:02:50 +00:00
|
|
|
#define PyEval_CallObject(func,arg) \
|
|
|
|
PyEval_CallObjectWithKeywords(func, arg, (PyObject *)NULL)
|
1995-07-18 14:51:37 +00:00
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
PyEval_CallObjectWithKeywords(PyObject *func, PyObject *arg, PyObject *kw)
|
1995-07-18 14:51:37 +00:00
|
|
|
{
|
2001-01-03 23:52:36 +00:00
|
|
|
PyObject *result;
|
1995-07-18 14:51:37 +00:00
|
|
|
|
2006-03-07 15:39:21 +00:00
|
|
|
if (arg == NULL) {
|
1997-04-29 18:18:01 +00:00
|
|
|
arg = PyTuple_New(0);
|
2006-03-07 15:39:21 +00:00
|
|
|
if (arg == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
else if (!PyTuple_Check(arg)) {
|
1997-05-05 20:56:21 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"argument list must be a tuple");
|
1995-07-18 14:51:37 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_INCREF(arg);
|
1995-07-18 14:51:37 +00:00
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
if (kw != NULL && !PyDict_Check(kw)) {
|
1997-05-05 20:56:21 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"keyword list must be a dictionary");
|
2000-04-21 21:17:39 +00:00
|
|
|
Py_DECREF(arg);
|
1995-08-04 04:14:47 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-08-02 04:15:00 +00:00
|
|
|
result = PyObject_Call(func, arg, kw);
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(arg);
|
2001-01-03 23:52:36 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2005-12-10 18:50:16 +00:00
|
|
|
const char *
|
2001-08-02 04:15:00 +00:00
|
|
|
PyEval_GetFuncName(PyObject *func)
|
2001-04-11 13:52:29 +00:00
|
|
|
{
|
|
|
|
if (PyMethod_Check(func))
|
2001-08-02 04:15:00 +00:00
|
|
|
return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func));
|
2001-04-11 13:52:29 +00:00
|
|
|
else if (PyFunction_Check(func))
|
|
|
|
return PyString_AsString(((PyFunctionObject*)func)->func_name);
|
|
|
|
else if (PyCFunction_Check(func))
|
|
|
|
return ((PyCFunctionObject*)func)->m_ml->ml_name;
|
|
|
|
else if (PyClass_Check(func))
|
|
|
|
return PyString_AsString(((PyClassObject*)func)->cl_name);
|
|
|
|
else if (PyInstance_Check(func)) {
|
|
|
|
return PyString_AsString(
|
|
|
|
((PyInstanceObject*)func)->in_class->cl_name);
|
|
|
|
} else {
|
|
|
|
return func->ob_type->tp_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-10 18:50:16 +00:00
|
|
|
const char *
|
2001-08-02 04:15:00 +00:00
|
|
|
PyEval_GetFuncDesc(PyObject *func)
|
2001-04-11 13:52:29 +00:00
|
|
|
{
|
|
|
|
if (PyMethod_Check(func))
|
|
|
|
return "()";
|
|
|
|
else if (PyFunction_Check(func))
|
|
|
|
return "()";
|
|
|
|
else if (PyCFunction_Check(func))
|
|
|
|
return "()";
|
|
|
|
else if (PyClass_Check(func))
|
|
|
|
return " constructor";
|
|
|
|
else if (PyInstance_Check(func)) {
|
|
|
|
return " instance";
|
|
|
|
} else {
|
|
|
|
return " object";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-10 14:33:26 +00:00
|
|
|
static void
|
2002-08-16 18:36:11 +00:00
|
|
|
err_args(PyObject *func, int flags, int nargs)
|
|
|
|
{
|
|
|
|
if (flags & METH_NOARGS)
|
2004-04-05 19:36:21 +00:00
|
|
|
PyErr_Format(PyExc_TypeError,
|
2002-08-23 14:11:35 +00:00
|
|
|
"%.200s() takes no arguments (%d given)",
|
2004-04-05 19:36:21 +00:00
|
|
|
((PyCFunctionObject *)func)->m_ml->ml_name,
|
2002-08-16 18:36:11 +00:00
|
|
|
nargs);
|
|
|
|
else
|
2004-04-05 19:36:21 +00:00
|
|
|
PyErr_Format(PyExc_TypeError,
|
2002-08-23 14:11:35 +00:00
|
|
|
"%.200s() takes exactly one argument (%d given)",
|
2004-04-05 19:36:21 +00:00
|
|
|
((PyCFunctionObject *)func)->m_ml->ml_name,
|
2002-08-16 18:36:11 +00:00
|
|
|
nargs);
|
|
|
|
}
|
|
|
|
|
2005-09-20 18:34:01 +00:00
|
|
|
#define C_TRACE(x, call) \
|
2004-06-25 23:31:06 +00:00
|
|
|
if (tstate->use_tracing && tstate->c_profilefunc) { \
|
|
|
|
if (call_trace(tstate->c_profilefunc, \
|
|
|
|
tstate->c_profileobj, \
|
|
|
|
tstate->frame, PyTrace_C_CALL, \
|
2005-09-20 18:34:01 +00:00
|
|
|
func)) { \
|
|
|
|
x = NULL; \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
x = call; \
|
|
|
|
if (tstate->c_profilefunc != NULL) { \
|
|
|
|
if (x == NULL) { \
|
|
|
|
call_trace_protected(tstate->c_profilefunc, \
|
|
|
|
tstate->c_profileobj, \
|
|
|
|
tstate->frame, PyTrace_C_EXCEPTION, \
|
|
|
|
func); \
|
|
|
|
/* XXX should pass (type, value, tb) */ \
|
|
|
|
} else { \
|
|
|
|
if (call_trace(tstate->c_profilefunc, \
|
|
|
|
tstate->c_profileobj, \
|
|
|
|
tstate->frame, PyTrace_C_RETURN, \
|
|
|
|
func)) { \
|
|
|
|
Py_DECREF(x); \
|
|
|
|
x = NULL; \
|
|
|
|
} \
|
|
|
|
} \
|
2004-03-24 21:57:10 +00:00
|
|
|
} \
|
2004-06-25 23:31:06 +00:00
|
|
|
} \
|
|
|
|
} else { \
|
2005-09-20 18:34:01 +00:00
|
|
|
x = call; \
|
2004-03-24 21:57:10 +00:00
|
|
|
}
|
|
|
|
|
2002-08-16 17:47:26 +00:00
|
|
|
static PyObject *
|
2004-06-08 08:17:44 +00:00
|
|
|
call_function(PyObject ***pp_stack, int oparg
|
|
|
|
#ifdef WITH_TSC
|
|
|
|
, uint64* pintr0, uint64* pintr1
|
|
|
|
#endif
|
|
|
|
)
|
2002-08-16 17:47:26 +00:00
|
|
|
{
|
|
|
|
int na = oparg & 0xff;
|
|
|
|
int nk = (oparg>>8) & 0xff;
|
|
|
|
int n = na + 2 * nk;
|
|
|
|
PyObject **pfunc = (*pp_stack) - n - 1;
|
|
|
|
PyObject *func = *pfunc;
|
|
|
|
PyObject *x, *w;
|
|
|
|
|
2003-02-05 23:13:00 +00:00
|
|
|
/* Always dispatch PyCFunction first, because these are
|
|
|
|
presumed to be the most frequent callable object.
|
2002-08-16 17:47:26 +00:00
|
|
|
*/
|
|
|
|
if (PyCFunction_Check(func) && nk == 0) {
|
|
|
|
int flags = PyCFunction_GET_FLAGS(func);
|
2004-06-25 23:31:06 +00:00
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
2004-06-26 04:34:33 +00:00
|
|
|
|
|
|
|
PCALL(PCALL_CFUNCTION);
|
2002-08-16 18:36:11 +00:00
|
|
|
if (flags & (METH_NOARGS | METH_O)) {
|
|
|
|
PyCFunction meth = PyCFunction_GET_FUNCTION(func);
|
|
|
|
PyObject *self = PyCFunction_GET_SELF(func);
|
2004-03-24 21:57:10 +00:00
|
|
|
if (flags & METH_NOARGS && na == 0) {
|
2005-09-20 18:34:01 +00:00
|
|
|
C_TRACE(x, (*meth)(self,NULL));
|
2004-03-24 21:57:10 +00:00
|
|
|
}
|
2002-08-16 18:36:11 +00:00
|
|
|
else if (flags & METH_O && na == 1) {
|
|
|
|
PyObject *arg = EXT_POP(*pp_stack);
|
2005-09-20 18:34:01 +00:00
|
|
|
C_TRACE(x, (*meth)(self,arg));
|
2002-08-16 18:36:11 +00:00
|
|
|
Py_DECREF(arg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
err_args(func, flags, na);
|
|
|
|
x = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2002-08-16 17:47:26 +00:00
|
|
|
PyObject *callargs;
|
|
|
|
callargs = load_args(pp_stack, na);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(*pintr0);
|
2005-09-20 18:34:01 +00:00
|
|
|
C_TRACE(x, PyCFunction_Call(func,callargs,NULL));
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(*pintr1);
|
2004-04-05 19:36:21 +00:00
|
|
|
Py_XDECREF(callargs);
|
|
|
|
}
|
2002-08-16 17:47:26 +00:00
|
|
|
} else {
|
|
|
|
if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) {
|
|
|
|
/* optimize access to bound methods */
|
|
|
|
PyObject *self = PyMethod_GET_SELF(func);
|
2003-02-05 23:13:00 +00:00
|
|
|
PCALL(PCALL_METHOD);
|
|
|
|
PCALL(PCALL_BOUND_METHOD);
|
2002-08-16 17:47:26 +00:00
|
|
|
Py_INCREF(self);
|
|
|
|
func = PyMethod_GET_FUNCTION(func);
|
|
|
|
Py_INCREF(func);
|
|
|
|
Py_DECREF(*pfunc);
|
|
|
|
*pfunc = self;
|
|
|
|
na++;
|
|
|
|
n++;
|
|
|
|
} else
|
|
|
|
Py_INCREF(func);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(*pintr0);
|
2002-08-16 17:47:26 +00:00
|
|
|
if (PyFunction_Check(func))
|
|
|
|
x = fast_function(func, pp_stack, n, na, nk);
|
2004-04-05 19:36:21 +00:00
|
|
|
else
|
2002-08-16 17:47:26 +00:00
|
|
|
x = do_call(func, pp_stack, na, nk);
|
2005-01-18 15:56:11 +00:00
|
|
|
READ_TIMESTAMP(*pintr1);
|
2002-08-16 17:47:26 +00:00
|
|
|
Py_DECREF(func);
|
|
|
|
}
|
2004-04-05 19:36:21 +00:00
|
|
|
|
2006-02-10 22:51:45 +00:00
|
|
|
/* Clear the stack of the function object and the arguments,
|
2006-03-01 05:32:33 +00:00
|
|
|
in case they weren't consumed already.
|
|
|
|
XXX(twouters) when are they not consumed already?
|
|
|
|
*/
|
2002-08-16 17:47:26 +00:00
|
|
|
while ((*pp_stack) > pfunc) {
|
|
|
|
w = EXT_POP(*pp_stack);
|
|
|
|
Py_DECREF(w);
|
2003-02-05 23:13:00 +00:00
|
|
|
PCALL(PCALL_POP);
|
2002-08-16 17:47:26 +00:00
|
|
|
}
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2002-08-16 18:36:11 +00:00
|
|
|
/* The fast_function() function optimize calls for which no argument
|
2001-01-03 23:52:36 +00:00
|
|
|
tuple is necessary; the objects are passed directly from the stack.
|
2003-02-05 23:13:00 +00:00
|
|
|
For the simplest case -- a function that takes only positional
|
|
|
|
arguments and is called with only positional arguments -- it
|
|
|
|
inlines the most primitive frame setup code from
|
|
|
|
PyEval_EvalCodeEx(), which vastly reduces the checks that must be
|
|
|
|
done before evaluating the frame.
|
2001-01-03 23:52:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-17 15:42:30 +00:00
|
|
|
fast_function(PyObject *func, PyObject ***pp_stack, int n, int na, int nk)
|
2001-01-03 23:52:36 +00:00
|
|
|
{
|
2003-02-05 23:13:00 +00:00
|
|
|
PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func);
|
2001-01-03 23:52:36 +00:00
|
|
|
PyObject *globals = PyFunction_GET_GLOBALS(func);
|
|
|
|
PyObject *argdefs = PyFunction_GET_DEFAULTS(func);
|
|
|
|
PyObject **d = NULL;
|
|
|
|
int nd = 0;
|
|
|
|
|
2003-02-05 23:13:00 +00:00
|
|
|
PCALL(PCALL_FUNCTION);
|
|
|
|
PCALL(PCALL_FAST_FUNCTION);
|
2003-05-31 07:04:16 +00:00
|
|
|
if (argdefs == NULL && co->co_argcount == n && nk==0 &&
|
2003-02-05 23:13:00 +00:00
|
|
|
co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) {
|
|
|
|
PyFrameObject *f;
|
|
|
|
PyObject *retval = NULL;
|
|
|
|
PyThreadState *tstate = PyThreadState_GET();
|
|
|
|
PyObject **fastlocals, **stack;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
PCALL(PCALL_FASTER_FUNCTION);
|
|
|
|
assert(globals != NULL);
|
|
|
|
/* XXX Perhaps we should create a specialized
|
|
|
|
PyFrame_New() that doesn't take locals, but does
|
|
|
|
take builtins without sanity checking them.
|
|
|
|
*/
|
|
|
|
f = PyFrame_New(tstate, co, globals, NULL);
|
|
|
|
if (f == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
fastlocals = f->f_localsplus;
|
|
|
|
stack = (*pp_stack) - n;
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
Py_INCREF(*stack);
|
|
|
|
fastlocals[i] = *stack++;
|
|
|
|
}
|
2005-08-02 00:46:46 +00:00
|
|
|
retval = PyEval_EvalFrameEx(f,0);
|
2003-02-05 23:13:00 +00:00
|
|
|
assert(tstate != NULL);
|
|
|
|
++tstate->recursion_depth;
|
|
|
|
Py_DECREF(f);
|
|
|
|
--tstate->recursion_depth;
|
|
|
|
return retval;
|
|
|
|
}
|
2001-01-03 23:52:36 +00:00
|
|
|
if (argdefs != NULL) {
|
|
|
|
d = &PyTuple_GET_ITEM(argdefs, 0);
|
|
|
|
nd = ((PyTupleObject *)argdefs)->ob_size;
|
|
|
|
}
|
2003-02-05 23:13:00 +00:00
|
|
|
return PyEval_EvalCodeEx(co, globals,
|
|
|
|
(PyObject *)NULL, (*pp_stack)-n, na,
|
|
|
|
(*pp_stack)-2*nk, nk, d, nd,
|
|
|
|
PyFunction_GET_CLOSURE(func));
|
2001-01-03 23:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
2001-01-15 22:14:16 +00:00
|
|
|
update_keyword_args(PyObject *orig_kwdict, int nk, PyObject ***pp_stack,
|
|
|
|
PyObject *func)
|
2001-01-03 23:52:36 +00:00
|
|
|
{
|
|
|
|
PyObject *kwdict = NULL;
|
|
|
|
if (orig_kwdict == NULL)
|
|
|
|
kwdict = PyDict_New();
|
|
|
|
else {
|
|
|
|
kwdict = PyDict_Copy(orig_kwdict);
|
|
|
|
Py_DECREF(orig_kwdict);
|
|
|
|
}
|
|
|
|
if (kwdict == NULL)
|
|
|
|
return NULL;
|
2004-04-10 23:34:17 +00:00
|
|
|
while (--nk >= 0) {
|
2001-01-03 23:52:36 +00:00
|
|
|
int err;
|
|
|
|
PyObject *value = EXT_POP(*pp_stack);
|
|
|
|
PyObject *key = EXT_POP(*pp_stack);
|
|
|
|
if (PyDict_GetItem(kwdict, key) != NULL) {
|
2001-01-17 15:42:30 +00:00
|
|
|
PyErr_Format(PyExc_TypeError,
|
2001-01-15 22:14:16 +00:00
|
|
|
"%.200s%s got multiple values "
|
2001-04-11 13:52:29 +00:00
|
|
|
"for keyword argument '%.200s'",
|
2001-08-02 04:15:00 +00:00
|
|
|
PyEval_GetFuncName(func),
|
|
|
|
PyEval_GetFuncDesc(func),
|
2001-04-11 13:52:29 +00:00
|
|
|
PyString_AsString(key));
|
2001-01-03 23:52:36 +00:00
|
|
|
Py_DECREF(key);
|
|
|
|
Py_DECREF(value);
|
|
|
|
Py_DECREF(kwdict);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
err = PyDict_SetItem(kwdict, key, value);
|
|
|
|
Py_DECREF(key);
|
|
|
|
Py_DECREF(value);
|
|
|
|
if (err) {
|
|
|
|
Py_DECREF(kwdict);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return kwdict;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
update_star_args(int nstack, int nstar, PyObject *stararg,
|
|
|
|
PyObject ***pp_stack)
|
|
|
|
{
|
|
|
|
PyObject *callargs, *w;
|
|
|
|
|
|
|
|
callargs = PyTuple_New(nstack + nstar);
|
|
|
|
if (callargs == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (nstar) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < nstar; i++) {
|
|
|
|
PyObject *a = PyTuple_GET_ITEM(stararg, i);
|
|
|
|
Py_INCREF(a);
|
|
|
|
PyTuple_SET_ITEM(callargs, nstack + i, a);
|
|
|
|
}
|
|
|
|
}
|
2004-04-10 23:34:17 +00:00
|
|
|
while (--nstack >= 0) {
|
2001-01-03 23:52:36 +00:00
|
|
|
w = EXT_POP(*pp_stack);
|
|
|
|
PyTuple_SET_ITEM(callargs, nstack, w);
|
|
|
|
}
|
|
|
|
return callargs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
load_args(PyObject ***pp_stack, int na)
|
|
|
|
{
|
|
|
|
PyObject *args = PyTuple_New(na);
|
|
|
|
PyObject *w;
|
|
|
|
|
|
|
|
if (args == NULL)
|
|
|
|
return NULL;
|
2004-04-10 23:34:17 +00:00
|
|
|
while (--na >= 0) {
|
2001-01-03 23:52:36 +00:00
|
|
|
w = EXT_POP(*pp_stack);
|
|
|
|
PyTuple_SET_ITEM(args, na, w);
|
|
|
|
}
|
|
|
|
return args;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
do_call(PyObject *func, PyObject ***pp_stack, int na, int nk)
|
|
|
|
{
|
|
|
|
PyObject *callargs = NULL;
|
|
|
|
PyObject *kwdict = NULL;
|
|
|
|
PyObject *result = NULL;
|
|
|
|
|
|
|
|
if (nk > 0) {
|
2001-01-15 22:14:16 +00:00
|
|
|
kwdict = update_keyword_args(NULL, nk, pp_stack, func);
|
2001-01-03 23:52:36 +00:00
|
|
|
if (kwdict == NULL)
|
|
|
|
goto call_fail;
|
|
|
|
}
|
|
|
|
callargs = load_args(pp_stack, na);
|
|
|
|
if (callargs == NULL)
|
|
|
|
goto call_fail;
|
2003-02-05 23:13:00 +00:00
|
|
|
#ifdef CALL_PROFILE
|
|
|
|
/* At this point, we have to look at the type of func to
|
|
|
|
update the call stats properly. Do it here so as to avoid
|
|
|
|
exposing the call stats machinery outside ceval.c
|
|
|
|
*/
|
|
|
|
if (PyFunction_Check(func))
|
|
|
|
PCALL(PCALL_FUNCTION);
|
|
|
|
else if (PyMethod_Check(func))
|
|
|
|
PCALL(PCALL_METHOD);
|
|
|
|
else if (PyType_Check(func))
|
|
|
|
PCALL(PCALL_TYPE);
|
|
|
|
else
|
|
|
|
PCALL(PCALL_OTHER);
|
|
|
|
#endif
|
2001-08-02 04:15:00 +00:00
|
|
|
result = PyObject_Call(func, callargs, kwdict);
|
2001-01-03 23:52:36 +00:00
|
|
|
call_fail:
|
|
|
|
Py_XDECREF(callargs);
|
|
|
|
Py_XDECREF(kwdict);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
|
|
|
|
{
|
|
|
|
int nstar = 0;
|
|
|
|
PyObject *callargs = NULL;
|
|
|
|
PyObject *stararg = NULL;
|
|
|
|
PyObject *kwdict = NULL;
|
|
|
|
PyObject *result = NULL;
|
|
|
|
|
|
|
|
if (flags & CALL_FLAG_KW) {
|
|
|
|
kwdict = EXT_POP(*pp_stack);
|
|
|
|
if (!(kwdict && PyDict_Check(kwdict))) {
|
2001-01-15 22:14:16 +00:00
|
|
|
PyErr_Format(PyExc_TypeError,
|
2001-04-11 13:52:29 +00:00
|
|
|
"%s%s argument after ** "
|
|
|
|
"must be a dictionary",
|
2001-08-02 04:15:00 +00:00
|
|
|
PyEval_GetFuncName(func),
|
|
|
|
PyEval_GetFuncDesc(func));
|
2001-01-03 23:52:36 +00:00
|
|
|
goto ext_call_fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags & CALL_FLAG_VAR) {
|
|
|
|
stararg = EXT_POP(*pp_stack);
|
|
|
|
if (!PyTuple_Check(stararg)) {
|
|
|
|
PyObject *t = NULL;
|
|
|
|
t = PySequence_Tuple(stararg);
|
|
|
|
if (t == NULL) {
|
2001-04-11 13:52:29 +00:00
|
|
|
if (PyErr_ExceptionMatches(PyExc_TypeError)) {
|
|
|
|
PyErr_Format(PyExc_TypeError,
|
|
|
|
"%s%s argument after * "
|
|
|
|
"must be a sequence",
|
2001-08-02 04:15:00 +00:00
|
|
|
PyEval_GetFuncName(func),
|
|
|
|
PyEval_GetFuncDesc(func));
|
2001-04-11 13:52:29 +00:00
|
|
|
}
|
2001-01-03 23:52:36 +00:00
|
|
|
goto ext_call_fail;
|
|
|
|
}
|
|
|
|
Py_DECREF(stararg);
|
|
|
|
stararg = t;
|
|
|
|
}
|
|
|
|
nstar = PyTuple_GET_SIZE(stararg);
|
|
|
|
}
|
|
|
|
if (nk > 0) {
|
2001-01-15 22:14:16 +00:00
|
|
|
kwdict = update_keyword_args(kwdict, nk, pp_stack, func);
|
2001-01-03 23:52:36 +00:00
|
|
|
if (kwdict == NULL)
|
|
|
|
goto ext_call_fail;
|
|
|
|
}
|
|
|
|
callargs = update_star_args(na, nstar, stararg, pp_stack);
|
|
|
|
if (callargs == NULL)
|
|
|
|
goto ext_call_fail;
|
2003-02-05 23:13:00 +00:00
|
|
|
#ifdef CALL_PROFILE
|
|
|
|
/* At this point, we have to look at the type of func to
|
|
|
|
update the call stats properly. Do it here so as to avoid
|
|
|
|
exposing the call stats machinery outside ceval.c
|
|
|
|
*/
|
|
|
|
if (PyFunction_Check(func))
|
|
|
|
PCALL(PCALL_FUNCTION);
|
|
|
|
else if (PyMethod_Check(func))
|
|
|
|
PCALL(PCALL_METHOD);
|
|
|
|
else if (PyType_Check(func))
|
|
|
|
PCALL(PCALL_TYPE);
|
|
|
|
else
|
|
|
|
PCALL(PCALL_OTHER);
|
|
|
|
#endif
|
2001-08-02 04:15:00 +00:00
|
|
|
result = PyObject_Call(func, callargs, kwdict);
|
2001-01-03 23:52:36 +00:00
|
|
|
ext_call_fail:
|
|
|
|
Py_XDECREF(callargs);
|
|
|
|
Py_XDECREF(kwdict);
|
|
|
|
Py_XDECREF(stararg);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2001-12-16 19:11:44 +00:00
|
|
|
/* Extract a slice index from a PyInt or PyLong, and store in *pi.
|
2006-02-17 15:57:41 +00:00
|
|
|
Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
|
|
|
|
and silently boost values less than -PY_SSIZE_T_MAX to 0.
|
|
|
|
Return 0 on error, 1 on success.
|
2001-12-16 19:11:44 +00:00
|
|
|
*/
|
2001-12-16 19:44:20 +00:00
|
|
|
/* Note: If v is NULL, return success without storing into *pi. This
|
|
|
|
is because_PyEval_SliceIndex() is called by apply_slice(), which can be
|
|
|
|
called by the SLICE opcode with v and/or w equal to NULL.
|
2001-12-16 19:11:44 +00:00
|
|
|
*/
|
2000-05-08 14:06:50 +00:00
|
|
|
int
|
2006-02-15 17:27:45 +00:00
|
|
|
_PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2001-12-16 19:44:20 +00:00
|
|
|
if (v != NULL) {
|
2006-02-17 15:57:41 +00:00
|
|
|
Py_ssize_t x;
|
2000-02-23 22:18:48 +00:00
|
|
|
if (PyInt_Check(v)) {
|
|
|
|
x = PyInt_AsLong(v);
|
|
|
|
} else if (PyLong_Check(v)) {
|
2006-02-17 15:57:41 +00:00
|
|
|
x = PyInt_AsSsize_t(v);
|
2000-02-23 22:18:48 +00:00
|
|
|
if (x==-1 && PyErr_Occurred()) {
|
|
|
|
PyObject *long_zero;
|
2001-01-17 15:42:30 +00:00
|
|
|
int cmp;
|
2000-02-23 22:18:48 +00:00
|
|
|
|
2001-01-17 15:42:30 +00:00
|
|
|
if (!PyErr_ExceptionMatches(
|
|
|
|
PyExc_OverflowError)) {
|
|
|
|
/* It's not an overflow error, so just
|
2000-02-23 22:18:48 +00:00
|
|
|
signal an error */
|
2000-05-08 14:06:50 +00:00
|
|
|
return 0;
|
2000-02-23 22:18:48 +00:00
|
|
|
}
|
|
|
|
|
2001-01-17 15:42:30 +00:00
|
|
|
/* Clear the OverflowError */
|
|
|
|
PyErr_Clear();
|
|
|
|
|
|
|
|
/* It's an overflow error, so we need to
|
|
|
|
check the sign of the long integer,
|
2006-02-17 15:57:41 +00:00
|
|
|
set the value to PY_SSIZE_T_MAX or
|
|
|
|
-PY_SSIZE_T_MAX, and clear the error. */
|
2000-02-23 22:18:48 +00:00
|
|
|
|
|
|
|
/* Create a long integer with a value of 0 */
|
2001-01-17 15:42:30 +00:00
|
|
|
long_zero = PyLong_FromLong(0L);
|
2001-12-16 19:11:44 +00:00
|
|
|
if (long_zero == NULL)
|
|
|
|
return 0;
|
2000-02-23 22:18:48 +00:00
|
|
|
|
|
|
|
/* Check sign */
|
2001-01-17 15:42:30 +00:00
|
|
|
cmp = PyObject_RichCompareBool(v, long_zero,
|
|
|
|
Py_GT);
|
|
|
|
Py_DECREF(long_zero);
|
|
|
|
if (cmp < 0)
|
|
|
|
return 0;
|
2003-02-27 14:50:34 +00:00
|
|
|
else if (cmp)
|
2006-02-17 15:57:41 +00:00
|
|
|
x = PY_SSIZE_T_MAX;
|
2000-02-23 22:18:48 +00:00
|
|
|
else
|
2006-02-17 15:57:41 +00:00
|
|
|
x = -PY_SSIZE_T_MAX;
|
2000-02-23 22:18:48 +00:00
|
|
|
}
|
|
|
|
} else {
|
1997-05-05 20:56:21 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
2006-02-19 00:12:42 +00:00
|
|
|
"slice indices must be integers or None");
|
2000-05-08 14:06:50 +00:00
|
|
|
return 0;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
1997-05-05 20:56:21 +00:00
|
|
|
*pi = x;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
2000-05-08 14:06:50 +00:00
|
|
|
return 1;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
2001-08-18 17:43:36 +00:00
|
|
|
#undef ISINT
|
|
|
|
#define ISINT(x) ((x) == NULL || PyInt_Check(x) || PyLong_Check(x))
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
static PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
apply_slice(PyObject *u, PyObject *v, PyObject *w) /* return u[v:w] */
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2001-08-18 17:43:36 +00:00
|
|
|
PyTypeObject *tp = u->ob_type;
|
|
|
|
PySequenceMethods *sq = tp->tp_as_sequence;
|
|
|
|
|
|
|
|
if (sq && sq->sq_slice && ISINT(v) && ISINT(w)) {
|
2006-02-17 15:57:41 +00:00
|
|
|
Py_ssize_t ilow = 0, ihigh = PY_SSIZE_T_MAX;
|
2001-08-18 17:43:36 +00:00
|
|
|
if (!_PyEval_SliceIndex(v, &ilow))
|
|
|
|
return NULL;
|
|
|
|
if (!_PyEval_SliceIndex(w, &ihigh))
|
|
|
|
return NULL;
|
|
|
|
return PySequence_GetSlice(u, ilow, ihigh);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyObject *slice = PySlice_New(v, w, NULL);
|
2001-12-03 19:45:06 +00:00
|
|
|
if (slice != NULL) {
|
|
|
|
PyObject *res = PyObject_GetItem(u, slice);
|
|
|
|
Py_DECREF(slice);
|
|
|
|
return res;
|
|
|
|
}
|
2001-08-18 17:43:36 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2001-01-17 15:42:30 +00:00
|
|
|
assign_slice(PyObject *u, PyObject *v, PyObject *w, PyObject *x)
|
|
|
|
/* u[v:w] = x */
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2001-08-18 17:43:36 +00:00
|
|
|
PyTypeObject *tp = u->ob_type;
|
|
|
|
PySequenceMethods *sq = tp->tp_as_sequence;
|
|
|
|
|
|
|
|
if (sq && sq->sq_slice && ISINT(v) && ISINT(w)) {
|
2006-02-17 15:57:41 +00:00
|
|
|
Py_ssize_t ilow = 0, ihigh = PY_SSIZE_T_MAX;
|
2001-08-18 17:43:36 +00:00
|
|
|
if (!_PyEval_SliceIndex(v, &ilow))
|
|
|
|
return -1;
|
|
|
|
if (!_PyEval_SliceIndex(w, &ihigh))
|
|
|
|
return -1;
|
|
|
|
if (x == NULL)
|
|
|
|
return PySequence_DelSlice(u, ilow, ihigh);
|
|
|
|
else
|
|
|
|
return PySequence_SetSlice(u, ilow, ihigh, x);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyObject *slice = PySlice_New(v, w, NULL);
|
|
|
|
if (slice != NULL) {
|
2001-12-03 19:45:06 +00:00
|
|
|
int res;
|
2001-08-18 17:43:36 +00:00
|
|
|
if (x != NULL)
|
2001-12-03 19:45:06 +00:00
|
|
|
res = PyObject_SetItem(u, slice, x);
|
2001-08-18 17:43:36 +00:00
|
|
|
else
|
2001-12-03 19:45:06 +00:00
|
|
|
res = PyObject_DelItem(u, slice);
|
|
|
|
Py_DECREF(slice);
|
|
|
|
return res;
|
2001-08-18 17:43:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
static PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
cmp_outcome(int op, register PyObject *v, register PyObject *w)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2001-01-17 15:42:30 +00:00
|
|
|
int res = 0;
|
1991-04-04 10:40:29 +00:00
|
|
|
switch (op) {
|
2002-01-01 19:59:11 +00:00
|
|
|
case PyCmp_IS:
|
1991-04-04 10:40:29 +00:00
|
|
|
res = (v == w);
|
2003-01-19 05:08:13 +00:00
|
|
|
break;
|
|
|
|
case PyCmp_IS_NOT:
|
|
|
|
res = (v != w);
|
1991-04-04 10:40:29 +00:00
|
|
|
break;
|
2002-01-01 19:59:11 +00:00
|
|
|
case PyCmp_IN:
|
2003-01-19 05:08:13 +00:00
|
|
|
res = PySequence_Contains(w, v);
|
|
|
|
if (res < 0)
|
|
|
|
return NULL;
|
|
|
|
break;
|
2002-01-01 19:59:11 +00:00
|
|
|
case PyCmp_NOT_IN:
|
1998-05-22 00:52:29 +00:00
|
|
|
res = PySequence_Contains(w, v);
|
1991-04-04 10:40:29 +00:00
|
|
|
if (res < 0)
|
|
|
|
return NULL;
|
2003-01-19 05:08:13 +00:00
|
|
|
res = !res;
|
1991-04-04 10:40:29 +00:00
|
|
|
break;
|
2002-01-01 19:59:11 +00:00
|
|
|
case PyCmp_EXC_MATCH:
|
1997-08-22 21:26:19 +00:00
|
|
|
res = PyErr_GivenExceptionMatches(v, w);
|
1991-04-04 10:40:29 +00:00
|
|
|
break;
|
|
|
|
default:
|
2001-01-17 15:42:30 +00:00
|
|
|
return PyObject_RichCompare(v, w, op);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
v = res ? Py_True : Py_False;
|
|
|
|
Py_INCREF(v);
|
1991-04-04 10:40:29 +00:00
|
|
|
return v;
|
|
|
|
}
|
1990-12-20 15:06:42 +00:00
|
|
|
|
2000-08-17 22:55:00 +00:00
|
|
|
static PyObject *
|
|
|
|
import_from(PyObject *v, PyObject *name)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2001-01-12 16:24:03 +00:00
|
|
|
PyObject *x;
|
|
|
|
|
|
|
|
x = PyObject_GetAttr(v, name);
|
|
|
|
if (x == NULL && PyErr_ExceptionMatches(PyExc_AttributeError)) {
|
2000-08-17 22:55:00 +00:00
|
|
|
PyErr_Format(PyExc_ImportError,
|
|
|
|
"cannot import name %.230s",
|
|
|
|
PyString_AsString(name));
|
2001-01-12 16:24:03 +00:00
|
|
|
}
|
2000-08-17 22:55:00 +00:00
|
|
|
return x;
|
|
|
|
}
|
2001-01-17 15:42:30 +00:00
|
|
|
|
2000-08-17 22:55:00 +00:00
|
|
|
static int
|
|
|
|
import_all_from(PyObject *locals, PyObject *v)
|
|
|
|
{
|
2001-01-12 16:24:03 +00:00
|
|
|
PyObject *all = PyObject_GetAttrString(v, "__all__");
|
|
|
|
PyObject *dict, *name, *value;
|
|
|
|
int skip_leading_underscores = 0;
|
|
|
|
int pos, err;
|
|
|
|
|
|
|
|
if (all == NULL) {
|
|
|
|
if (!PyErr_ExceptionMatches(PyExc_AttributeError))
|
|
|
|
return -1; /* Unexpected error */
|
|
|
|
PyErr_Clear();
|
|
|
|
dict = PyObject_GetAttrString(v, "__dict__");
|
|
|
|
if (dict == NULL) {
|
|
|
|
if (!PyErr_ExceptionMatches(PyExc_AttributeError))
|
|
|
|
return -1;
|
|
|
|
PyErr_SetString(PyExc_ImportError,
|
|
|
|
"from-import-* object has no __dict__ and no __all__");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
all = PyMapping_Keys(dict);
|
|
|
|
Py_DECREF(dict);
|
|
|
|
if (all == NULL)
|
|
|
|
return -1;
|
|
|
|
skip_leading_underscores = 1;
|
1995-01-02 19:04:15 +00:00
|
|
|
}
|
2000-08-17 22:55:00 +00:00
|
|
|
|
2001-01-12 16:24:03 +00:00
|
|
|
for (pos = 0, err = 0; ; pos++) {
|
|
|
|
name = PySequence_GetItem(all, pos);
|
|
|
|
if (name == NULL) {
|
|
|
|
if (!PyErr_ExceptionMatches(PyExc_IndexError))
|
|
|
|
err = -1;
|
|
|
|
else
|
|
|
|
PyErr_Clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (skip_leading_underscores &&
|
|
|
|
PyString_Check(name) &&
|
|
|
|
PyString_AS_STRING(name)[0] == '_')
|
|
|
|
{
|
|
|
|
Py_DECREF(name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
value = PyObject_GetAttr(v, name);
|
|
|
|
if (value == NULL)
|
|
|
|
err = -1;
|
|
|
|
else
|
|
|
|
err = PyDict_SetItem(locals, name, value);
|
|
|
|
Py_DECREF(name);
|
|
|
|
Py_XDECREF(value);
|
2000-08-17 22:55:00 +00:00
|
|
|
if (err != 0)
|
2001-01-12 16:24:03 +00:00
|
|
|
break;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
2001-01-12 16:24:03 +00:00
|
|
|
Py_DECREF(all);
|
|
|
|
return err;
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
1990-12-20 15:06:42 +00:00
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
static PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
build_class(PyObject *methods, PyObject *bases, PyObject *name)
|
1991-04-04 10:40:29 +00:00
|
|
|
{
|
2001-09-12 19:19:18 +00:00
|
|
|
PyObject *metaclass = NULL, *result, *base;
|
2001-08-02 04:15:00 +00:00
|
|
|
|
|
|
|
if (PyDict_Check(methods))
|
|
|
|
metaclass = PyDict_GetItemString(methods, "__metaclass__");
|
2001-09-12 19:19:18 +00:00
|
|
|
if (metaclass != NULL)
|
2001-12-06 14:09:56 +00:00
|
|
|
Py_INCREF(metaclass);
|
2001-09-12 19:19:18 +00:00
|
|
|
else if (PyTuple_Check(bases) && PyTuple_GET_SIZE(bases) > 0) {
|
|
|
|
base = PyTuple_GET_ITEM(bases, 0);
|
|
|
|
metaclass = PyObject_GetAttrString(base, "__class__");
|
|
|
|
if (metaclass == NULL) {
|
|
|
|
PyErr_Clear();
|
|
|
|
metaclass = (PyObject *)base->ob_type;
|
|
|
|
Py_INCREF(metaclass);
|
1991-04-04 10:40:29 +00:00
|
|
|
}
|
1990-11-18 17:27:39 +00:00
|
|
|
}
|
2001-09-12 19:19:18 +00:00
|
|
|
else {
|
|
|
|
PyObject *g = PyEval_GetGlobals();
|
|
|
|
if (g != NULL && PyDict_Check(g))
|
|
|
|
metaclass = PyDict_GetItemString(g, "__metaclass__");
|
|
|
|
if (metaclass == NULL)
|
|
|
|
metaclass = (PyObject *) &PyClass_Type;
|
|
|
|
Py_INCREF(metaclass);
|
|
|
|
}
|
|
|
|
result = PyObject_CallFunction(metaclass, "OOO", name, bases, methods);
|
|
|
|
Py_DECREF(metaclass);
|
2004-06-05 06:16:22 +00:00
|
|
|
if (result == NULL && PyErr_ExceptionMatches(PyExc_TypeError)) {
|
|
|
|
/* A type error here likely means that the user passed
|
|
|
|
in a base that was not a class (such the random module
|
|
|
|
instead of the random.random type). Help them out with
|
2004-09-16 16:41:57 +00:00
|
|
|
by augmenting the error message with more information.*/
|
|
|
|
|
|
|
|
PyObject *ptype, *pvalue, *ptraceback;
|
|
|
|
|
|
|
|
PyErr_Fetch(&ptype, &pvalue, &ptraceback);
|
|
|
|
if (PyString_Check(pvalue)) {
|
|
|
|
PyObject *newmsg;
|
|
|
|
newmsg = PyString_FromFormat(
|
|
|
|
"Error when calling the metaclass bases\n %s",
|
|
|
|
PyString_AS_STRING(pvalue));
|
|
|
|
if (newmsg != NULL) {
|
|
|
|
Py_DECREF(pvalue);
|
|
|
|
pvalue = newmsg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PyErr_Restore(ptype, pvalue, ptraceback);
|
2004-06-05 06:16:22 +00:00
|
|
|
}
|
2001-09-12 19:19:18 +00:00
|
|
|
return result;
|
1993-05-19 14:50:45 +00:00
|
|
|
}
|
|
|
|
|
1993-10-18 17:06:59 +00:00
|
|
|
static int
|
2000-07-22 18:47:25 +00:00
|
|
|
exec_statement(PyFrameObject *f, PyObject *prog, PyObject *globals,
|
|
|
|
PyObject *locals)
|
1993-10-18 17:06:59 +00:00
|
|
|
{
|
|
|
|
int n;
|
1997-04-29 18:18:01 +00:00
|
|
|
PyObject *v;
|
1995-07-18 14:51:37 +00:00
|
|
|
int plain = 0;
|
1993-10-18 17:06:59 +00:00
|
|
|
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyTuple_Check(prog) && globals == Py_None && locals == Py_None &&
|
|
|
|
((n = PyTuple_Size(prog)) == 2 || n == 3)) {
|
1993-10-18 17:06:59 +00:00
|
|
|
/* Backward compatibility hack */
|
1997-04-29 18:18:01 +00:00
|
|
|
globals = PyTuple_GetItem(prog, 1);
|
1993-10-18 17:06:59 +00:00
|
|
|
if (n == 3)
|
1997-04-29 18:18:01 +00:00
|
|
|
locals = PyTuple_GetItem(prog, 2);
|
|
|
|
prog = PyTuple_GetItem(prog, 0);
|
1993-10-18 17:06:59 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
if (globals == Py_None) {
|
|
|
|
globals = PyEval_GetGlobals();
|
|
|
|
if (locals == Py_None) {
|
|
|
|
locals = PyEval_GetLocals();
|
1995-07-18 14:51:37 +00:00
|
|
|
plain = 1;
|
|
|
|
}
|
1993-10-18 17:06:59 +00:00
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
else if (locals == Py_None)
|
1993-10-18 17:06:59 +00:00
|
|
|
locals = globals;
|
1997-04-29 18:18:01 +00:00
|
|
|
if (!PyString_Check(prog) &&
|
2000-09-19 21:04:18 +00:00
|
|
|
!PyUnicode_Check(prog) &&
|
1997-04-29 18:18:01 +00:00
|
|
|
!PyCode_Check(prog) &&
|
|
|
|
!PyFile_Check(prog)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
2001-01-17 15:42:30 +00:00
|
|
|
"exec: arg 1 must be a string, file, or code object");
|
2000-10-24 19:57:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!PyDict_Check(globals)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"exec: arg 2 must be a dictionary or None");
|
1993-10-18 17:06:59 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2004-08-02 08:30:07 +00:00
|
|
|
if (!PyMapping_Check(locals)) {
|
1997-04-29 18:18:01 +00:00
|
|
|
PyErr_SetString(PyExc_TypeError,
|
2004-08-02 08:30:07 +00:00
|
|
|
"exec: arg 3 must be a mapping or None");
|
1993-10-18 17:06:59 +00:00
|
|
|
return -1;
|
|
|
|
}
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyDict_GetItemString(globals, "__builtins__") == NULL)
|
1997-05-05 20:56:21 +00:00
|
|
|
PyDict_SetItemString(globals, "__builtins__", f->f_builtins);
|
1997-04-29 18:18:01 +00:00
|
|
|
if (PyCode_Check(prog)) {
|
2001-12-13 19:51:56 +00:00
|
|
|
if (PyCode_GetNumFree((PyCodeObject *)prog) > 0) {
|
|
|
|
PyErr_SetString(PyExc_TypeError,
|
|
|
|
"code object passed to exec may not contain free variables");
|
|
|
|
return -1;
|
|
|
|
}
|
2000-01-12 22:45:54 +00:00
|
|
|
v = PyEval_EvalCode((PyCodeObject *) prog, globals, locals);
|
1993-10-18 17:06:59 +00:00
|
|
|
}
|
2000-01-12 22:45:54 +00:00
|
|
|
else if (PyFile_Check(prog)) {
|
1997-04-29 18:18:01 +00:00
|
|
|
FILE *fp = PyFile_AsFile(prog);
|
|
|
|
char *name = PyString_AsString(PyFile_Name(prog));
|
2001-07-16 02:29:45 +00:00
|
|
|
PyCompilerFlags cf;
|
|
|
|
cf.cf_flags = 0;
|
|
|
|
if (PyEval_MergeCompilerFlags(&cf))
|
2001-03-22 02:47:58 +00:00
|
|
|
v = PyRun_FileFlags(fp, name, Py_file_input, globals,
|
2004-04-05 19:36:21 +00:00
|
|
|
locals, &cf);
|
2001-07-16 02:29:45 +00:00
|
|
|
else
|
2001-03-22 02:47:58 +00:00
|
|
|
v = PyRun_File(fp, name, Py_file_input, globals,
|
2004-04-05 19:36:21 +00:00
|
|
|
locals);
|
1993-10-18 17:06:59 +00:00
|
|
|
}
|
2000-01-12 22:45:54 +00:00
|
|
|
else {
|
2003-02-10 08:21:10 +00:00
|
|
|
PyObject *tmp = NULL;
|
2000-09-19 21:04:18 +00:00
|
|
|
char *str;
|
2001-07-16 02:29:45 +00:00
|
|
|
PyCompilerFlags cf;
|
2003-02-10 08:21:10 +00:00
|
|
|
cf.cf_flags = 0;
|
|
|
|
#ifdef Py_USING_UNICODE
|
|
|
|
if (PyUnicode_Check(prog)) {
|
|
|
|
tmp = PyUnicode_AsUTF8String(prog);
|
|
|
|
if (tmp == NULL)
|
|
|
|
return -1;
|
|
|
|
prog = tmp;
|
|
|
|
cf.cf_flags |= PyCF_SOURCE_IS_UTF8;
|
|
|
|
}
|
|
|
|
#endif
|
2000-09-19 21:04:18 +00:00
|
|
|
if (PyString_AsStringAndSize(prog, &str, NULL))
|
2000-01-12 22:45:54 +00:00
|
|
|
return -1;
|
2001-07-16 02:29:45 +00:00
|
|
|
if (PyEval_MergeCompilerFlags(&cf))
|
2004-04-05 19:36:21 +00:00
|
|
|
v = PyRun_StringFlags(str, Py_file_input, globals,
|
2001-03-22 02:47:58 +00:00
|
|
|
locals, &cf);
|
2001-07-16 02:29:45 +00:00
|
|
|
else
|
2001-03-22 02:47:58 +00:00
|
|
|
v = PyRun_String(str, Py_file_input, globals, locals);
|
2003-02-10 08:21:10 +00:00
|
|
|
Py_XDECREF(tmp);
|
1993-10-18 17:06:59 +00:00
|
|
|
}
|
2000-01-12 22:45:54 +00:00
|
|
|
if (plain)
|
|
|
|
PyFrame_LocalsToFast(f, 0);
|
1995-07-18 14:51:37 +00:00
|
|
|
if (v == NULL)
|
1993-10-18 17:06:59 +00:00
|
|
|
return -1;
|
1997-04-29 18:18:01 +00:00
|
|
|
Py_DECREF(v);
|
1993-10-18 17:06:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1995-02-14 09:42:43 +00:00
|
|
|
|
2001-01-17 15:42:30 +00:00
|
|
|
static void
|
2000-08-30 20:25:01 +00:00
|
|
|
format_exc_check_arg(PyObject *exc, char *format_str, PyObject *obj)
|
|
|
|
{
|
|
|
|
char *obj_str;
|
|
|
|
|
|
|
|
if (!obj)
|
|
|
|
return;
|
|
|
|
|
|
|
|
obj_str = PyString_AsString(obj);
|
|
|
|
if (!obj_str)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PyErr_Format(exc, format_str, obj_str);
|
|
|
|
}
|
1997-01-24 13:49:28 +00:00
|
|
|
|
2004-08-06 18:43:09 +00:00
|
|
|
static PyObject *
|
|
|
|
string_concatenate(PyObject *v, PyObject *w,
|
|
|
|
PyFrameObject *f, unsigned char *next_instr)
|
|
|
|
{
|
|
|
|
/* This function implements 'variable += expr' when both arguments
|
|
|
|
are strings. */
|
|
|
|
|
|
|
|
if (v->ob_refcnt == 2) {
|
|
|
|
/* In the common case, there are 2 references to the value
|
|
|
|
* stored in 'variable' when the += is performed: one on the
|
|
|
|
* value stack (in 'v') and one still stored in the 'variable'.
|
|
|
|
* We try to delete the variable now to reduce the refcnt to 1.
|
|
|
|
*/
|
|
|
|
switch (*next_instr) {
|
|
|
|
case STORE_FAST:
|
|
|
|
{
|
|
|
|
int oparg = PEEKARG();
|
|
|
|
PyObject **fastlocals = f->f_localsplus;
|
|
|
|
if (GETLOCAL(oparg) == v)
|
|
|
|
SETLOCAL(oparg, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STORE_DEREF:
|
|
|
|
{
|
|
|
|
PyObject **freevars = f->f_localsplus + f->f_nlocals;
|
|
|
|
PyObject *c = freevars[PEEKARG()];
|
|
|
|
if (PyCell_GET(c) == v)
|
|
|
|
PyCell_Set(c, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case STORE_NAME:
|
|
|
|
{
|
|
|
|
PyObject *names = f->f_code->co_names;
|
|
|
|
PyObject *name = GETITEM(names, PEEKARG());
|
|
|
|
PyObject *locals = f->f_locals;
|
|
|
|
if (PyDict_CheckExact(locals) &&
|
|
|
|
PyDict_GetItem(locals, name) == v) {
|
|
|
|
if (PyDict_DelItem(locals, name) != 0) {
|
|
|
|
PyErr_Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-07 20:58:32 +00:00
|
|
|
if (v->ob_refcnt == 1 && !PyString_CHECK_INTERNED(v)) {
|
2004-08-06 18:43:09 +00:00
|
|
|
/* Now we own the last reference to 'v', so we can resize it
|
|
|
|
* in-place.
|
|
|
|
*/
|
|
|
|
int v_len = PyString_GET_SIZE(v);
|
|
|
|
int w_len = PyString_GET_SIZE(w);
|
|
|
|
if (_PyString_Resize(&v, v_len + w_len) != 0) {
|
|
|
|
/* XXX if _PyString_Resize() fails, 'v' has been
|
|
|
|
* deallocated so it cannot be put back into 'variable'.
|
|
|
|
* The MemoryError is raised when there is no value in
|
|
|
|
* 'variable', which might (very remotely) be a cause
|
|
|
|
* of incompatibilities.
|
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
/* copy 'w' into the newly allocated area of 'v' */
|
|
|
|
memcpy(PyString_AS_STRING(v) + v_len,
|
|
|
|
PyString_AS_STRING(w), w_len);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* When in-place resizing is not an option. */
|
|
|
|
PyString_Concat(&v, w);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-01-24 13:49:28 +00:00
|
|
|
#ifdef DYNAMIC_EXECUTION_PROFILE
|
|
|
|
|
2001-10-15 20:51:38 +00:00
|
|
|
static PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
getarray(long a[256])
|
1997-01-24 13:49:28 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
PyObject *l = PyList_New(256);
|
|
|
|
if (l == NULL) return NULL;
|
|
|
|
for (i = 0; i < 256; i++) {
|
|
|
|
PyObject *x = PyInt_FromLong(a[i]);
|
|
|
|
if (x == NULL) {
|
|
|
|
Py_DECREF(l);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyList_SetItem(l, i, x);
|
|
|
|
}
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
a[i] = 0;
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *
|
2000-07-22 18:47:25 +00:00
|
|
|
_Py_GetDXProfile(PyObject *self, PyObject *args)
|
1997-01-24 13:49:28 +00:00
|
|
|
{
|
|
|
|
#ifndef DXPAIRS
|
|
|
|
return getarray(dxp);
|
|
|
|
#else
|
|
|
|
int i;
|
|
|
|
PyObject *l = PyList_New(257);
|
|
|
|
if (l == NULL) return NULL;
|
|
|
|
for (i = 0; i < 257; i++) {
|
|
|
|
PyObject *x = getarray(dxpairs[i]);
|
|
|
|
if (x == NULL) {
|
|
|
|
Py_DECREF(l);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyList_SetItem(l, i, x);
|
|
|
|
}
|
|
|
|
return l;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|