| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:07:38 +00:00
										 |  |  | Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, | 
					
						
							|  |  |  | The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | Centrum or CWI or Corporation for National Research Initiatives or | 
					
						
							|  |  |  | CNRI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior | 
					
						
							|  |  |  | permission. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-10-25 14:44:06 +00:00
										 |  |  | While CWI is the initial source for this software, a modified version | 
					
						
							|  |  |  | is made available by the Corporation for National Research Initiatives | 
					
						
							|  |  |  | (CNRI) at the Internet address ftp://ftp.python.org.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH | 
					
						
							|  |  |  | REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF | 
					
						
							|  |  |  | MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH | 
					
						
							|  |  |  | CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL | 
					
						
							|  |  |  | DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR | 
					
						
							|  |  |  | PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | 
					
						
							|  |  |  | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | 
					
						
							|  |  |  | PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Frame object implementation */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "compile.h"
 | 
					
						
							|  |  |  | #include "frameobject.h"
 | 
					
						
							|  |  |  | #include "opcode.h"
 | 
					
						
							|  |  |  | #include "structmember.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | #define OFF(x) offsetof(PyFrameObject, x)
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct memberlist frame_memberlist[] = { | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	{"f_back",	T_OBJECT,	OFF(f_back),	RO}, | 
					
						
							|  |  |  | 	{"f_code",	T_OBJECT,	OFF(f_code),	RO}, | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:16 +00:00
										 |  |  | 	{"f_builtins",	T_OBJECT,	OFF(f_builtins),RO}, | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	{"f_globals",	T_OBJECT,	OFF(f_globals),	RO}, | 
					
						
							|  |  |  | 	{"f_locals",	T_OBJECT,	OFF(f_locals),	RO}, | 
					
						
							|  |  |  | 	{"f_lasti",	T_INT,		OFF(f_lasti),	RO}, | 
					
						
							|  |  |  | 	{"f_lineno",	T_INT,		OFF(f_lineno),	RO}, | 
					
						
							| 
									
										
										
										
											1995-01-10 10:39:16 +00:00
										 |  |  | 	{"f_restricted",T_INT,		OFF(f_restricted),RO}, | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	{"f_trace",	T_OBJECT,	OFF(f_trace)}, | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 	{"f_exc_type",	T_OBJECT,	OFF(f_exc_type)}, | 
					
						
							|  |  |  | 	{"f_exc_value",	T_OBJECT,	OFF(f_exc_value)}, | 
					
						
							|  |  |  | 	{"f_exc_traceback", T_OBJECT,	OFF(f_exc_traceback)}, | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	{NULL}	/* Sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | frame_getattr(f, name) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	char *name; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	if (strcmp(name, "f_locals") == 0) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		PyFrame_FastToLocals(f); | 
					
						
							|  |  |  | 	return PyMember_Get((char *)f, frame_memberlist, name); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | frame_setattr(f, name, value) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	char *name; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyObject *value; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	return PyMember_Set((char *)f, frame_memberlist, name, value); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | /* Stack frames are allocated and deallocated at a considerable rate.
 | 
					
						
							|  |  |  |    In an attempt to improve the speed of function calls, we maintain a | 
					
						
							|  |  |  |    separate free list of stack frames (just like integers are | 
					
						
							|  |  |  |    allocated in a special way -- see intobject.c).  When a stack frame | 
					
						
							|  |  |  |    is on the free list, only the following members have a meaning: | 
					
						
							|  |  |  | 	ob_type		== &Frametype | 
					
						
							|  |  |  | 	f_back		next item on free list, or NULL | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	f_nlocals	number of locals | 
					
						
							|  |  |  | 	f_stacksize	size of value stack | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  |    Note that the value and block stacks are preserved -- this can save | 
					
						
							|  |  |  |    another malloc() call or two (and two free() calls as well!). | 
					
						
							|  |  |  |    Also note that, unlike for integers, each frame object is a | 
					
						
							|  |  |  |    malloc'ed object in its own right -- it is only the actual calls to | 
					
						
							|  |  |  |    malloc() that we are trying to save here, not the administration. | 
					
						
							|  |  |  |    After all, while a typical program may make millions of calls, a | 
					
						
							|  |  |  |    call depth of more than 20 or 30 is probably already exceptional | 
					
						
							|  |  |  |    unless the program contains run-away recursion.  I hope. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | static PyFrameObject *free_list = NULL; | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | static void | 
					
						
							|  |  |  | frame_dealloc(f) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-02-14 16:27:29 +00:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	PyObject **fastlocals; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Kill all local variables */ | 
					
						
							|  |  |  | 	fastlocals = f->f_localsplus; | 
					
						
							|  |  |  | 	for (i = f->f_nlocals; --i >= 0; ++fastlocals) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		Py_XDECREF(*fastlocals); | 
					
						
							| 
									
										
										
										
											1997-02-14 16:27:29 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	Py_XDECREF(f->f_back); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_code); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_builtins); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_globals); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_locals); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_trace); | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 	Py_XDECREF(f->f_exc_type); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_exc_value); | 
					
						
							|  |  |  | 	Py_XDECREF(f->f_exc_traceback); | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	f->f_back = free_list; | 
					
						
							|  |  |  | 	free_list = f; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyTypeObject PyFrame_Type = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	0, | 
					
						
							|  |  |  | 	"frame", | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	sizeof(PyFrameObject), | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	(destructor)frame_dealloc, /*tp_dealloc*/ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	0,		/*tp_print*/ | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	(getattrfunc)frame_getattr, /*tp_getattr*/ | 
					
						
							|  |  |  | 	(setattrfunc)frame_setattr, /*tp_setattr*/ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	0,		/*tp_compare*/ | 
					
						
							|  |  |  | 	0,		/*tp_repr*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_number*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_sequence*/ | 
					
						
							|  |  |  | 	0,		/*tp_as_mapping*/ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyFrameObject * | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | PyFrame_New(tstate, code, globals, locals) | 
					
						
							|  |  |  | 	PyThreadState *tstate; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyCodeObject *code; | 
					
						
							|  |  |  | 	PyObject *globals; | 
					
						
							|  |  |  | 	PyObject *locals; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 	PyFrameObject *back = tstate->frame; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	static PyObject *builtin_object; | 
					
						
							|  |  |  | 	PyFrameObject *f; | 
					
						
							|  |  |  | 	PyObject *builtins; | 
					
						
							| 
									
										
										
										
											1998-09-25 14:11:46 +00:00
										 |  |  | 	int extras; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-04-04 11:47:41 +00:00
										 |  |  | 	if (builtin_object == NULL) { | 
					
						
							| 
									
										
										
										
											1997-01-18 07:58:41 +00:00
										 |  |  | 		builtin_object = PyString_InternFromString("__builtins__"); | 
					
						
							| 
									
										
										
										
											1995-04-04 11:47:41 +00:00
										 |  |  | 		if (builtin_object == NULL) | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	if ((back != NULL && !PyFrame_Check(back)) || | 
					
						
							|  |  |  | 	    code == NULL || !PyCode_Check(code) || | 
					
						
							|  |  |  | 	    globals == NULL || !PyDict_Check(globals) || | 
					
						
							|  |  |  | 	    (locals != NULL && !PyDict_Check(locals))) { | 
					
						
							|  |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-09-25 14:11:46 +00:00
										 |  |  | 	extras = code->co_stacksize + code->co_nlocals; | 
					
						
							| 
									
										
										
										
											1998-02-19 20:48:26 +00:00
										 |  |  | 	if (back == NULL || back->f_globals != globals) { | 
					
						
							|  |  |  | 		builtins = PyDict_GetItem(globals, builtin_object); | 
					
						
							|  |  |  | 		if (builtins != NULL && PyModule_Check(builtins)) | 
					
						
							|  |  |  | 			builtins = PyModule_GetDict(builtins); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		/* If we share the globals, we share the builtins.
 | 
					
						
							|  |  |  | 		   Save a lookup and a call. */ | 
					
						
							|  |  |  | 		builtins = back->f_builtins; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 	if (builtins != NULL && !PyDict_Check(builtins)) | 
					
						
							|  |  |  | 		builtins = NULL; | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	if (free_list == NULL) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		f = (PyFrameObject *) | 
					
						
							|  |  |  | 			malloc(sizeof(PyFrameObject) + | 
					
						
							|  |  |  | 			       extras*sizeof(PyObject *)); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 		if (f == NULL) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 			return (PyFrameObject *)PyErr_NoMemory(); | 
					
						
							|  |  |  | 		f->ob_type = &PyFrame_Type; | 
					
						
							|  |  |  | 		_Py_NewReference(f); | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		f = free_list; | 
					
						
							|  |  |  | 		free_list = free_list->f_back; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 		if (f->f_nlocals + f->f_stacksize < extras) { | 
					
						
							| 
									
										
										
										
											1997-10-31 20:32:13 +00:00
										 |  |  | 			f = (PyFrameObject *) | 
					
						
							|  |  |  | 				realloc(f, sizeof(PyFrameObject) + | 
					
						
							|  |  |  | 					extras*sizeof(PyObject *)); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 			if (f == NULL) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 				return (PyFrameObject *)PyErr_NoMemory(); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-01-24 04:00:21 +00:00
										 |  |  | 		else | 
					
						
							|  |  |  | 			extras = f->f_nlocals + f->f_stacksize; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		f->ob_type = &PyFrame_Type; | 
					
						
							|  |  |  | 		_Py_NewReference(f); | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 	if (builtins == NULL) { | 
					
						
							| 
									
										
										
										
											1998-02-19 20:48:26 +00:00
										 |  |  | 		/* No builtins!  Make up a minimal one. */ | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 		builtins = PyDict_New(); | 
					
						
							| 
									
										
										
										
											1998-10-19 14:20:20 +00:00
										 |  |  | 		if (builtins == NULL || /* Give them 'None', at least. */ | 
					
						
							|  |  |  | 		    PyDict_SetItemString(builtins, "None", Py_None) < 0) { | 
					
						
							|  |  |  | 			Py_DECREF(f); | 
					
						
							| 
									
										
										
										
											1998-02-19 20:48:26 +00:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											1998-10-19 14:20:20 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		Py_XINCREF(builtins); | 
					
						
							|  |  |  | 	f->f_builtins = builtins; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	Py_XINCREF(back); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	f->f_back = back; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	Py_INCREF(code); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	f->f_code = code; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	Py_INCREF(globals); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	f->f_globals = globals; | 
					
						
							| 
									
										
										
										
											1995-07-26 16:14:30 +00:00
										 |  |  | 	if (code->co_flags & CO_NEWLOCALS) { | 
					
						
							|  |  |  | 		if (code->co_flags & CO_OPTIMIZED) | 
					
						
							|  |  |  | 			locals = NULL; /* Let fast_2_locals handle it */ | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 			locals = PyDict_New(); | 
					
						
							| 
									
										
										
										
											1995-07-26 16:14:30 +00:00
										 |  |  | 			if (locals == NULL) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 				Py_DECREF(f); | 
					
						
							| 
									
										
										
										
											1995-07-26 16:14:30 +00:00
										 |  |  | 				return NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		if (locals == NULL) | 
					
						
							|  |  |  | 			locals = globals; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		Py_INCREF(locals); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	f->f_locals = locals; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	f->f_trace = NULL; | 
					
						
							| 
									
										
										
										
											1997-05-05 20:56:21 +00:00
										 |  |  | 	f->f_exc_type = f->f_exc_value = f->f_exc_traceback = NULL; | 
					
						
							| 
									
										
										
										
											1997-08-02 02:59:08 +00:00
										 |  |  | 	f->f_tstate = tstate; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	f->f_lasti = 0; | 
					
						
							| 
									
										
										
										
											1997-01-24 04:00:21 +00:00
										 |  |  | 	f->f_lineno = code->co_firstlineno; | 
					
						
							| 
									
										
										
										
											1997-08-02 02:59:08 +00:00
										 |  |  | 	f->f_restricted = (builtins != tstate->interp->builtins); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	f->f_iblock = 0; | 
					
						
							|  |  |  | 	f->f_nlocals = code->co_nlocals; | 
					
						
							| 
									
										
										
										
											1997-01-24 04:00:21 +00:00
										 |  |  | 	f->f_stacksize = extras - code->co_nlocals; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	while (--extras >= 0) | 
					
						
							|  |  |  | 		f->f_localsplus[extras] = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	f->f_valuestack = f->f_localsplus + f->f_nlocals; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return f; | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Block management */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyFrame_BlockSetup(f, type, handler, level) | 
					
						
							|  |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	int type; | 
					
						
							|  |  |  | 	int handler; | 
					
						
							|  |  |  | 	int level; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyTryBlock *b; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	if (f->f_iblock >= CO_MAXBLOCKS) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		Py_FatalError("XXX block stack overflow"); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	b = &f->f_blockstack[f->f_iblock++]; | 
					
						
							|  |  |  | 	b->b_type = type; | 
					
						
							|  |  |  | 	b->b_level = level; | 
					
						
							|  |  |  | 	b->b_handler = handler; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyTryBlock * | 
					
						
							|  |  |  | PyFrame_BlockPop(f) | 
					
						
							|  |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyTryBlock *b; | 
					
						
							| 
									
										
										
										
											1995-01-02 19:07:15 +00:00
										 |  |  | 	if (f->f_iblock <= 0) | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		Py_FatalError("XXX block stack underflow"); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	b = &f->f_blockstack[--f->f_iblock]; | 
					
						
							|  |  |  | 	return b; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Convert between "fast" version of locals and dictionary version */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyFrame_FastToLocals(f) | 
					
						
							|  |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	/* Merge fast locals into f->f_locals */ | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyObject *locals, *map; | 
					
						
							|  |  |  | 	PyObject **fast; | 
					
						
							|  |  |  | 	PyObject *error_type, *error_value, *error_traceback; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	int j; | 
					
						
							|  |  |  | 	if (f == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	locals = f->f_locals; | 
					
						
							|  |  |  | 	if (locals == NULL) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		locals = f->f_locals = PyDict_New(); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 		if (locals == NULL) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 			PyErr_Clear(); /* Can't report it :-( */ | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	if (f->f_nlocals == 0) | 
					
						
							| 
									
										
										
										
											1995-07-26 16:14:30 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	map = f->f_code->co_varnames; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	if (!PyDict_Check(locals) || !PyTuple_Check(map)) | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyErr_Fetch(&error_type, &error_value, &error_traceback); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	fast = f->f_localsplus; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	j = PyTuple_Size(map); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	if (j > f->f_nlocals) | 
					
						
							|  |  |  | 		j = f->f_nlocals; | 
					
						
							|  |  |  | 	for (; --j >= 0; ) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		PyObject *key = PyTuple_GetItem(map, j); | 
					
						
							|  |  |  | 		PyObject *value = fast[j]; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		if (value == NULL) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 			PyErr_Clear(); | 
					
						
							|  |  |  | 			if (PyDict_DelItem(locals, key) != 0) | 
					
						
							|  |  |  | 				PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 			if (PyDict_SetItem(locals, key, value) != 0) | 
					
						
							|  |  |  | 				PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyErr_Restore(error_type, error_value, error_traceback); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyFrame_LocalsToFast(f, clear) | 
					
						
							|  |  |  | 	PyFrameObject *f; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	int clear; | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	/* Merge f->f_locals into fast locals */ | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyObject *locals, *map; | 
					
						
							|  |  |  | 	PyObject **fast; | 
					
						
							|  |  |  | 	PyObject *error_type, *error_value, *error_traceback; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	int j; | 
					
						
							|  |  |  | 	if (f == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	locals = f->f_locals; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	map = f->f_code->co_varnames; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:29:16 +00:00
										 |  |  | 	if (locals == NULL || f->f_code->co_nlocals == 0) | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	if (!PyDict_Check(locals) || !PyTuple_Check(map)) | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyErr_Fetch(&error_type, &error_value, &error_traceback); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	fast = f->f_localsplus; | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	j = PyTuple_Size(map); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	if (j > f->f_nlocals) | 
					
						
							|  |  |  | 		j = f->f_nlocals; | 
					
						
							|  |  |  | 	for (; --j >= 0; ) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		PyObject *key = PyTuple_GetItem(map, j); | 
					
						
							|  |  |  | 		PyObject *value = PyDict_GetItem(locals, key); | 
					
						
							| 
									
										
										
										
											1998-05-14 01:49:48 +00:00
										 |  |  | 		Py_XINCREF(value); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 		if (value != NULL || clear) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 			Py_XDECREF(fast[j]); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 			fast[j] = value; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	PyErr_Restore(error_type, error_value, error_traceback); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Clear out the free list */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | PyFrame_Fini() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	while (free_list != NULL) { | 
					
						
							|  |  |  | 		PyFrameObject *f = free_list; | 
					
						
							|  |  |  | 		free_list = free_list->f_back; | 
					
						
							|  |  |  | 		PyMem_DEL(f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |