| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-20 19:59:25 +00:00
										 |  |  | #include "code.h"
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | #include "frameobject.h"
 | 
					
						
							|  |  |  | #include "opcode.h"
 | 
					
						
							|  |  |  | #include "structmember.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-18 23:33:35 +00:00
										 |  |  | #undef MIN
 | 
					
						
							|  |  |  | #undef MAX
 | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | #define MIN(a, b) ((a) < (b) ? (a) : (b))
 | 
					
						
							|  |  |  | #define MAX(a, b) ((a) > (b) ? (a) : (b))
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | #define OFF(x) offsetof(PyFrameObject, x)
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 20:46:19 +00:00
										 |  |  | static PyMemberDef 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_lasti",	T_INT,		OFF(f_lasti),	RO}, | 
					
						
							| 
									
										
										
										
											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 * | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | frame_getlocals(PyFrameObject *f, void *closure) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	PyFrame_FastToLocals(f); | 
					
						
							|  |  |  | 	Py_INCREF(f->f_locals); | 
					
						
							|  |  |  | 	return f->f_locals; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-15 14:59:02 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | frame_getlineno(PyFrameObject *f, void *closure) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int lineno; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-11 15:36:32 +00:00
										 |  |  | 	if (f->f_trace) | 
					
						
							|  |  |  | 		lineno = f->f_lineno; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		lineno = PyCode_Addr2Line(f->f_code, f->f_lasti); | 
					
						
							| 
									
										
										
										
											2002-08-15 14:59:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return PyInt_FromLong(lineno); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | /* Setter for f_lineno - you can set f_lineno from within a trace function in
 | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  |  * order to jump to a given line of code, subject to some restrictions.	 Most | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  |  * lines are OK to jump to because they don't make any assumptions about the | 
					
						
							|  |  |  |  * state of the stack (obvious because you could remove the line and the code | 
					
						
							|  |  |  |  * would still work without any stack errors), but there are some constructs | 
					
						
							|  |  |  |  * that limit jumping: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  o Lines with an 'except' statement on them can't be jumped to, because | 
					
						
							|  |  |  |  *    they expect an exception to be on the top of the stack. | 
					
						
							|  |  |  |  *  o Lines that live in a 'finally' block can't be jumped from or to, since | 
					
						
							|  |  |  |  *    the END_FINALLY expects to clean up the stack after the 'try' block. | 
					
						
							|  |  |  |  *  o 'try'/'for'/'while' blocks can't be jumped into because the blockstack | 
					
						
							|  |  |  |  *    needs to be set up before their code runs, and for 'for' loops the | 
					
						
							|  |  |  |  *    iterator needs to be on the stack. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int new_lineno = 0;		/* The new value of f_lineno */ | 
					
						
							|  |  |  | 	int new_lasti = 0;		/* The new value of f_lasti */ | 
					
						
							|  |  |  | 	int new_iblock = 0;		/* The new value of f_iblock */ | 
					
						
							| 
									
										
										
										
											2007-04-13 22:07:33 +00:00
										 |  |  | 	unsigned char *code = NULL;	/* The bytecode for the frame... */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t code_len = 0;	/* ...and its length */ | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	char *lnotab = NULL;		/* Iterating over co_lnotab */ | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t lnotab_len = 0;	/* (ditto) */ | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	int offset = 0;			/* (ditto) */ | 
					
						
							|  |  |  | 	int line = 0;			/* (ditto) */ | 
					
						
							|  |  |  | 	int addr = 0;			/* (ditto) */ | 
					
						
							|  |  |  | 	int min_addr = 0;		/* Scanning the SETUPs and POPs */ | 
					
						
							|  |  |  | 	int max_addr = 0;		/* (ditto) */ | 
					
						
							|  |  |  | 	int delta_iblock = 0;		/* (ditto) */ | 
					
						
							|  |  |  | 	int min_delta_iblock = 0;	/* (ditto) */ | 
					
						
							|  |  |  | 	int min_iblock = 0;		/* (ditto) */ | 
					
						
							|  |  |  | 	int f_lasti_setup_addr = 0;	/* Policing no-jump-into-finally */ | 
					
						
							|  |  |  | 	int new_lasti_setup_addr = 0;	/* (ditto) */ | 
					
						
							|  |  |  | 	int blockstack[CO_MAXBLOCKS];	/* Walking the 'finally' blocks */ | 
					
						
							|  |  |  | 	int in_finally[CO_MAXBLOCKS];	/* (ditto) */ | 
					
						
							|  |  |  | 	int blockstack_top = 0;		/* (ditto) */ | 
					
						
							| 
									
										
										
										
											2007-04-13 22:07:33 +00:00
										 |  |  | 	unsigned char setup_op = 0;	/* (ditto) */ | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* f_lineno must be an integer. */ | 
					
						
							|  |  |  | 	if (!PyInt_Check(p_new_lineno)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"lineno must be an integer"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* You can only do this from within a trace function, not via
 | 
					
						
							|  |  |  | 	 * _getframe or similar hackery. */ | 
					
						
							|  |  |  | 	if (!f->f_trace) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		PyErr_Format(PyExc_ValueError, | 
					
						
							|  |  |  | 			     "f_lineno can only be set by a trace function"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Fail if the line comes before the start of the code block. */ | 
					
						
							|  |  |  | 	new_lineno = (int) PyInt_AsLong(p_new_lineno); | 
					
						
							|  |  |  | 	if (new_lineno < f->f_code->co_firstlineno) { | 
					
						
							|  |  |  | 		PyErr_Format(PyExc_ValueError, | 
					
						
							|  |  |  | 			     "line %d comes before the current code block", | 
					
						
							|  |  |  | 			     new_lineno); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Find the bytecode offset for the start of the given line, or the
 | 
					
						
							|  |  |  | 	 * first code-owning line after it. */ | 
					
						
							| 
									
										
										
										
											2008-06-09 04:58:54 +00:00
										 |  |  | 	PyString_AsStringAndSize(f->f_code->co_lnotab, &lnotab, &lnotab_len); | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	addr = 0; | 
					
						
							|  |  |  | 	line = f->f_code->co_firstlineno; | 
					
						
							|  |  |  | 	new_lasti = -1; | 
					
						
							|  |  |  | 	for (offset = 0; offset < lnotab_len; offset += 2) { | 
					
						
							|  |  |  | 		addr += lnotab[offset]; | 
					
						
							|  |  |  | 		line += lnotab[offset+1]; | 
					
						
							|  |  |  | 		if (line >= new_lineno) { | 
					
						
							|  |  |  | 			new_lasti = addr; | 
					
						
							|  |  |  | 			new_lineno = line; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If we didn't reach the requested line, return an error. */ | 
					
						
							|  |  |  | 	if (new_lasti == -1) { | 
					
						
							|  |  |  | 		PyErr_Format(PyExc_ValueError, | 
					
						
							|  |  |  | 			     "line %d comes after the current code block", | 
					
						
							|  |  |  | 			     new_lineno); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* We're now ready to look at the bytecode. */ | 
					
						
							| 
									
										
										
										
											2008-06-09 04:58:54 +00:00
										 |  |  | 	PyString_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len); | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	min_addr = MIN(new_lasti, f->f_lasti); | 
					
						
							|  |  |  | 	max_addr = MAX(new_lasti, f->f_lasti); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* You can't jump onto a line with an 'except' statement on it -
 | 
					
						
							|  |  |  | 	 * they expect to have an exception on the top of the stack, which | 
					
						
							|  |  |  | 	 * won't be true if you jump to them.  They always start with code | 
					
						
							|  |  |  | 	 * that either pops the exception using POP_TOP (plain 'except:' | 
					
						
							|  |  |  | 	 * lines do this) or duplicates the exception on the stack using | 
					
						
							|  |  |  | 	 * DUP_TOP (if there's an exception type specified).  See compile.c, | 
					
						
							|  |  |  | 	 * 'com_try_except' for the full details.  There aren't any other | 
					
						
							|  |  |  | 	 * cases (AFAIK) where a line's code can start with DUP_TOP or | 
					
						
							|  |  |  | 	 * POP_TOP, but if any ever appear, they'll be subject to the same | 
					
						
							|  |  |  | 	 * restriction (but with a different error message). */ | 
					
						
							|  |  |  | 	if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 		    "can't jump to 'except' line as there's no exception"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* You can't jump into or out of a 'finally' block because the 'try'
 | 
					
						
							|  |  |  | 	 * block leaves something on the stack for the END_FINALLY to clean | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	 * up.	So we walk the bytecode, maintaining a simulated blockstack. | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	 * When we reach the old or new address and it's in a 'finally' block | 
					
						
							|  |  |  | 	 * we note the address of the corresponding SETUP_FINALLY.  The jump | 
					
						
							|  |  |  | 	 * is only legal if neither address is in a 'finally' block or | 
					
						
							|  |  |  | 	 * they're both in the same one.  'blockstack' is a stack of the | 
					
						
							|  |  |  | 	 * bytecode addresses of the SETUP_X opcodes, and 'in_finally' tracks | 
					
						
							|  |  |  | 	 * whether we're in a 'finally' block at each blockstack level. */ | 
					
						
							|  |  |  | 	f_lasti_setup_addr = -1; | 
					
						
							|  |  |  | 	new_lasti_setup_addr = -1; | 
					
						
							|  |  |  | 	memset(blockstack, '\0', sizeof(blockstack)); | 
					
						
							|  |  |  | 	memset(in_finally, '\0', sizeof(in_finally)); | 
					
						
							|  |  |  | 	blockstack_top = 0; | 
					
						
							|  |  |  | 	for (addr = 0; addr < code_len; addr++) { | 
					
						
							|  |  |  | 		unsigned char op = code[addr]; | 
					
						
							|  |  |  | 		switch (op) { | 
					
						
							|  |  |  | 		case SETUP_LOOP: | 
					
						
							|  |  |  | 		case SETUP_EXCEPT: | 
					
						
							|  |  |  | 		case SETUP_FINALLY: | 
					
						
							|  |  |  | 			blockstack[blockstack_top++] = addr; | 
					
						
							|  |  |  | 			in_finally[blockstack_top-1] = 0; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case POP_BLOCK: | 
					
						
							| 
									
										
										
										
											2002-12-19 18:16:57 +00:00
										 |  |  | 			assert(blockstack_top > 0); | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 			setup_op = code[blockstack[blockstack_top-1]]; | 
					
						
							|  |  |  | 			if (setup_op == SETUP_FINALLY) { | 
					
						
							|  |  |  | 				in_finally[blockstack_top-1] = 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				blockstack_top--; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case END_FINALLY: | 
					
						
							|  |  |  | 			/* Ignore END_FINALLYs for SETUP_EXCEPTs - they exist
 | 
					
						
							|  |  |  | 			 * in the bytecode but don't correspond to an actual | 
					
						
							| 
									
										
										
										
											2002-12-19 18:16:57 +00:00
										 |  |  | 			 * 'finally' block.  (If blockstack_top is 0, we must | 
					
						
							|  |  |  | 			 * be seeing such an END_FINALLY.) */ | 
					
						
							|  |  |  | 			if (blockstack_top > 0) { | 
					
						
							|  |  |  | 				setup_op = code[blockstack[blockstack_top-1]]; | 
					
						
							|  |  |  | 				if (setup_op == SETUP_FINALLY) { | 
					
						
							|  |  |  | 					blockstack_top--; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* For the addresses we're interested in, see whether they're
 | 
					
						
							|  |  |  | 		 * within a 'finally' block and if so, remember the address | 
					
						
							|  |  |  | 		 * of the SETUP_FINALLY. */ | 
					
						
							|  |  |  | 		if (addr == new_lasti || addr == f->f_lasti) { | 
					
						
							|  |  |  | 			int i = 0; | 
					
						
							|  |  |  | 			int setup_addr = -1; | 
					
						
							|  |  |  | 			for (i = blockstack_top-1; i >= 0; i--) { | 
					
						
							|  |  |  | 				if (in_finally[i]) { | 
					
						
							|  |  |  | 					setup_addr = blockstack[i]; | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (setup_addr != -1) { | 
					
						
							|  |  |  | 				if (addr == new_lasti) { | 
					
						
							|  |  |  | 					new_lasti_setup_addr = setup_addr; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if (addr == f->f_lasti) { | 
					
						
							|  |  |  | 					f_lasti_setup_addr = setup_addr; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (op >= HAVE_ARGUMENT) { | 
					
						
							|  |  |  | 			addr += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-19 18:16:57 +00:00
										 |  |  | 	/* Verify that the blockstack tracking code didn't get lost. */ | 
					
						
							|  |  |  | 	assert(blockstack_top == 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* After all that, are we jumping into / out of a 'finally' block? */ | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	if (new_lasti_setup_addr != f_lasti_setup_addr) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 			    "can't jump into or out of a 'finally' block"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Police block-jumping (you can't jump into the middle of a block)
 | 
					
						
							|  |  |  | 	 * and ensure that the blockstack finishes up in a sensible state (by | 
					
						
							|  |  |  | 	 * popping any blocks we're jumping out of).  We look at all the | 
					
						
							|  |  |  | 	 * blockstack operations between the current position and the new | 
					
						
							|  |  |  | 	 * one, and keep track of how many blocks we drop out of on the way. | 
					
						
							|  |  |  | 	 * By also keeping track of the lowest blockstack position we see, we | 
					
						
							|  |  |  | 	 * can tell whether the jump goes into any blocks without coming out | 
					
						
							|  |  |  | 	 * again - in that case we raise an exception below. */ | 
					
						
							|  |  |  | 	delta_iblock = 0; | 
					
						
							|  |  |  | 	for (addr = min_addr; addr < max_addr; addr++) { | 
					
						
							|  |  |  | 		unsigned char op = code[addr]; | 
					
						
							|  |  |  | 		switch (op) { | 
					
						
							|  |  |  | 		case SETUP_LOOP: | 
					
						
							|  |  |  | 		case SETUP_EXCEPT: | 
					
						
							|  |  |  | 		case SETUP_FINALLY: | 
					
						
							|  |  |  | 			delta_iblock++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case POP_BLOCK: | 
					
						
							|  |  |  | 			delta_iblock--; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		min_delta_iblock = MIN(min_delta_iblock, delta_iblock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (op >= HAVE_ARGUMENT) { | 
					
						
							|  |  |  | 			addr += 2; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Derive the absolute iblock values from the deltas. */ | 
					
						
							|  |  |  | 	min_iblock = f->f_iblock + min_delta_iblock; | 
					
						
							|  |  |  | 	if (new_lasti > f->f_lasti) { | 
					
						
							|  |  |  | 		/* Forwards jump. */ | 
					
						
							|  |  |  | 		new_iblock = f->f_iblock + delta_iblock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		/* Backwards jump. */ | 
					
						
							|  |  |  | 		new_iblock = f->f_iblock - delta_iblock; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Are we jumping into a block? */ | 
					
						
							|  |  |  | 	if (new_iblock > min_iblock) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, | 
					
						
							|  |  |  | 				"can't jump into the middle of a block"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Pop any blocks that we're jumping out of. */ | 
					
						
							|  |  |  | 	while (f->f_iblock > new_iblock) { | 
					
						
							|  |  |  | 		PyTryBlock *b = &f->f_blockstack[--f->f_iblock]; | 
					
						
							|  |  |  | 		while ((f->f_stacktop - f->f_valuestack) > b->b_level) { | 
					
						
							|  |  |  | 			PyObject *v = (*--f->f_stacktop); | 
					
						
							|  |  |  | 			Py_DECREF(v); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Finally set the new f_lineno and f_lasti and return OK. */ | 
					
						
							|  |  |  | 	f->f_lineno = new_lineno; | 
					
						
							|  |  |  | 	f->f_lasti = new_lasti; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-11 15:36:32 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | frame_gettrace(PyFrameObject *f, void *closure) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject* trace = f->f_trace; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (trace == NULL) | 
					
						
							|  |  |  | 		trace = Py_None; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_INCREF(trace); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return trace; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | frame_settrace(PyFrameObject *f, PyObject* v, void *closure) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* We rely on f_lineno being accurate when f_trace is set. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	PyObject* old_value = f->f_trace; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_XINCREF(v); | 
					
						
							|  |  |  | 	f->f_trace = v; | 
					
						
							| 
									
										
										
										
											2006-04-15 03:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-11 15:36:32 +00:00
										 |  |  | 	if (v != NULL) | 
					
						
							|  |  |  | 		f->f_lineno = PyCode_Addr2Line(f->f_code, f->f_lasti); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_XDECREF(old_value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-12 02:11:18 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | frame_getrestricted(PyFrameObject *f, void *closure) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return PyBool_FromLong(PyFrame_IsRestricted(f)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-20 21:45:26 +00:00
										 |  |  | static PyGetSetDef frame_getsetlist[] = { | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	{"f_locals",	(getter)frame_getlocals, NULL, NULL}, | 
					
						
							| 
									
										
										
										
											2002-12-17 16:15:34 +00:00
										 |  |  | 	{"f_lineno",	(getter)frame_getlineno, | 
					
						
							|  |  |  | 			(setter)frame_setlineno, NULL}, | 
					
						
							| 
									
										
										
										
											2002-09-11 15:36:32 +00:00
										 |  |  | 	{"f_trace",	(getter)frame_gettrace, (setter)frame_settrace, NULL}, | 
					
						
							| 
									
										
										
										
											2006-06-12 02:11:18 +00:00
										 |  |  | 	{"f_restricted",(getter)frame_getrestricted,NULL, NULL}, | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	{0} | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  |    In an attempt to improve the speed of function calls, we: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    1. Hold a single "zombie" frame on each code object. This retains | 
					
						
							|  |  |  |    the allocated and initialised frame object from an invocation of | 
					
						
							|  |  |  |    the code object. The zombie is reanimated the next time we need a | 
					
						
							|  |  |  |    frame object for that code object. Doing this saves the malloc/ | 
					
						
							|  |  |  |    realloc required when using a free_list frame that isn't the | 
					
						
							|  |  |  |    correct size. It also saves some field initialisation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    In zombie mode, no field of PyFrameObject holds a reference, but | 
					
						
							|  |  |  |    the following fields are still valid: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-23 18:32:11 +00:00
										 |  |  |      * ob_type, ob_size, f_code, f_valuestack; | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  |         | 
					
						
							|  |  |  |      * f_locals, f_trace, | 
					
						
							|  |  |  |        f_exc_type, f_exc_value, f_exc_traceback are NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      * f_localsplus does not require re-allocation and | 
					
						
							|  |  |  |        the local variables in f_localsplus are NULL. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    2. We also 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: | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	ob_type		== &Frametype | 
					
						
							|  |  |  | 	f_back		next item on free list, or NULL | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	f_stacksize	size of value stack | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	ob_size		size of localsplus | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  |    Later, PyFrame_MAXFREELIST was added to bound the # of frames saved on | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  |    free_list.  Else programs creating lots of cyclic trash involving | 
					
						
							|  |  |  |    frames could provoke free_list into growing without bound. | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | static PyFrameObject *free_list = NULL; | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  | static int numfree = 0;		/* number of frames currently in free_list */ | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  | /* max value for numfree */ | 
					
						
							|  |  |  | #define PyFrame_MAXFREELIST 200	
 | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-09 05:40:56 +00:00
										 |  |  | frame_dealloc(PyFrameObject *f) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 	PyObject **p, **valuestack; | 
					
						
							|  |  |  | 	PyCodeObject *co; | 
					
						
							| 
									
										
										
										
											1997-02-14 16:27:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	PyObject_GC_UnTrack(f); | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | 	Py_TRASHCAN_SAFE_BEGIN(f) | 
					
						
							| 
									
										
										
										
											1997-02-14 16:27:29 +00:00
										 |  |  | 	/* Kill all local variables */ | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	valuestack = f->f_valuestack; | 
					
						
							|  |  |  | 	for (p = f->f_localsplus; p < valuestack; p++) | 
					
						
							|  |  |  | 		Py_CLEAR(*p); | 
					
						
							| 
									
										
										
										
											1997-02-14 16:27:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-06-18 22:08:13 +00:00
										 |  |  | 	/* Free stack */ | 
					
						
							| 
									
										
										
										
											2001-06-23 05:26:56 +00:00
										 |  |  | 	if (f->f_stacktop != NULL) { | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 		for (p = valuestack; p < f->f_stacktop; p++) | 
					
						
							| 
									
										
										
										
											2001-06-23 05:26:56 +00:00
										 |  |  | 			Py_XDECREF(*p); | 
					
						
							| 
									
										
										
										
											2001-06-18 22:08:13 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-04-15 03:15:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 	Py_XDECREF(f->f_back); | 
					
						
							| 
									
										
										
										
											2002-12-30 22:29:22 +00:00
										 |  |  | 	Py_DECREF(f->f_builtins); | 
					
						
							|  |  |  | 	Py_DECREF(f->f_globals); | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 	Py_CLEAR(f->f_locals); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_trace); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_exc_type); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_exc_value); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_exc_traceback); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	co = f->f_code; | 
					
						
							|  |  |  | 	if (co->co_zombieframe == NULL) | 
					
						
							|  |  |  | 		co->co_zombieframe = f; | 
					
						
							| 
									
										
										
										
											2008-02-06 13:33:44 +00:00
										 |  |  | 	else if (numfree < PyFrame_MAXFREELIST) { | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  | 		++numfree; | 
					
						
							|  |  |  | 		f->f_back = free_list; | 
					
						
							|  |  |  | 		free_list = f; | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 	else  | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  | 		PyObject_GC_Del(f); | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	Py_DECREF(co); | 
					
						
							| 
									
										
										
										
											2000-03-13 16:01:29 +00:00
										 |  |  | 	Py_TRASHCAN_SAFE_END(f) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | static int | 
					
						
							|  |  |  | frame_traverse(PyFrameObject *f, visitproc visit, void *arg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PyObject **fastlocals, **p; | 
					
						
							| 
									
										
										
										
											2006-04-15 03:22:46 +00:00
										 |  |  | 	int i, slots; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Py_VISIT(f->f_back); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_code); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_builtins); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_globals); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_locals); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_trace); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_exc_type); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_exc_value); | 
					
						
							|  |  |  | 	Py_VISIT(f->f_exc_traceback); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* locals */ | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	fastlocals = f->f_localsplus; | 
					
						
							| 
									
										
										
										
											2006-04-15 03:22:46 +00:00
										 |  |  | 	for (i = slots; --i >= 0; ++fastlocals) | 
					
						
							|  |  |  | 		Py_VISIT(*fastlocals); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* stack */ | 
					
						
							|  |  |  | 	if (f->f_stacktop != NULL) { | 
					
						
							|  |  |  | 		for (p = f->f_valuestack; p < f->f_stacktop; p++) | 
					
						
							| 
									
										
										
										
											2006-04-15 03:22:46 +00:00
										 |  |  | 			Py_VISIT(*p); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | frame_clear(PyFrameObject *f) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-04-15 01:02:17 +00:00
										 |  |  | 	PyObject **fastlocals, **p, **oldtop; | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	int i, slots; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-15 03:15:24 +00:00
										 |  |  | 	/* Before anything else, make sure that this frame is clearly marked
 | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	 * as being defunct!  Else, e.g., a generator reachable from this | 
					
						
							|  |  |  | 	 * frame may also point to this frame, believe itself to still be | 
					
						
							|  |  |  | 	 * active, and try cleaning up this frame again. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2006-04-15 03:30:08 +00:00
										 |  |  | 	oldtop = f->f_stacktop; | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	f->f_stacktop = NULL; | 
					
						
							| 
									
										
										
										
											2006-04-15 01:02:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-15 03:30:08 +00:00
										 |  |  | 	Py_CLEAR(f->f_exc_type); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_exc_value); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_exc_traceback); | 
					
						
							|  |  |  | 	Py_CLEAR(f->f_trace); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* locals */ | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	fastlocals = f->f_localsplus; | 
					
						
							| 
									
										
										
										
											2006-04-15 03:30:08 +00:00
										 |  |  | 	for (i = slots; --i >= 0; ++fastlocals) | 
					
						
							| 
									
										
										
										
											2006-04-15 01:02:17 +00:00
										 |  |  | 		Py_CLEAR(*fastlocals); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* stack */ | 
					
						
							| 
									
										
										
										
											2006-04-15 01:02:17 +00:00
										 |  |  | 	if (oldtop != NULL) { | 
					
						
							| 
									
										
										
										
											2006-04-15 03:30:08 +00:00
										 |  |  | 		for (p = f->f_valuestack; p < oldtop; p++) | 
					
						
							| 
									
										
										
										
											2006-04-15 01:02:17 +00:00
										 |  |  | 			Py_CLEAR(*p); | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-10 15:24:04 +00:00
										 |  |  | static PyObject * | 
					
						
							|  |  |  | frame_sizeof(PyFrameObject *f) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Py_ssize_t res, extras, ncells, nfrees; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ncells = PyTuple_GET_SIZE(f->f_code->co_cellvars); | 
					
						
							|  |  |  | 	nfrees = PyTuple_GET_SIZE(f->f_code->co_freevars); | 
					
						
							|  |  |  | 	extras = f->f_code->co_stacksize + f->f_code->co_nlocals + | 
					
						
							|  |  |  | 		 ncells + nfrees; | 
					
						
							| 
									
										
										
										
											2008-10-02 18:33:41 +00:00
										 |  |  | 	/* subtract one as it is already included in PyFrameObject */ | 
					
						
							| 
									
										
										
										
											2008-07-10 15:24:04 +00:00
										 |  |  | 	res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return PyInt_FromSsize_t(res); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(sizeof__doc__, | 
					
						
							|  |  |  | "F.__sizeof__() -> size of F in memory, in bytes"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef frame_methods[] = { | 
					
						
							|  |  |  | 	{"__sizeof__",	(PyCFunction)frame_sizeof,	METH_NOARGS, | 
					
						
							|  |  |  | 	 sizeof__doc__}, | 
					
						
							|  |  |  | 	{NULL,		NULL}	/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyTypeObject PyFrame_Type = { | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  | 	PyVarObject_HEAD_INIT(&PyType_Type, 0) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 	"frame", | 
					
						
							| 
									
										
										
										
											2001-08-29 23:52:17 +00:00
										 |  |  | 	sizeof(PyFrameObject), | 
					
						
							|  |  |  | 	sizeof(PyObject *), | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	(destructor)frame_dealloc,		/* tp_dealloc */ | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	0,					/* tp_print */ | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	0,					/* tp_getattr */ | 
					
						
							|  |  |  | 	0,					/* tp_setattr */ | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	0,					/* tp_compare */ | 
					
						
							|  |  |  | 	0,					/* tp_repr */ | 
					
						
							|  |  |  | 	0,					/* tp_as_number */ | 
					
						
							|  |  |  | 	0,					/* tp_as_sequence */ | 
					
						
							|  |  |  | 	0,					/* tp_as_mapping */ | 
					
						
							|  |  |  | 	0,					/* tp_hash */ | 
					
						
							|  |  |  | 	0,					/* tp_call */ | 
					
						
							|  |  |  | 	0,					/* tp_str */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	PyObject_GenericGetAttr,		/* tp_getattro */ | 
					
						
							|  |  |  | 	PyObject_GenericSetAttr,		/* tp_setattro */ | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	0,					/* tp_as_buffer */ | 
					
						
							| 
									
										
										
										
											2001-08-29 23:52:17 +00:00
										 |  |  | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	0,					/* tp_doc */ | 
					
						
							|  |  |  | 	(traverseproc)frame_traverse,		/* tp_traverse */ | 
					
						
							| 
									
										
										
										
											2001-07-12 13:27:11 +00:00
										 |  |  | 	(inquiry)frame_clear,			/* tp_clear */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	0,					/* tp_richcompare */ | 
					
						
							|  |  |  | 	0,					/* tp_weaklistoffset */ | 
					
						
							|  |  |  | 	0,					/* tp_iter */ | 
					
						
							|  |  |  | 	0,					/* tp_iternext */ | 
					
						
							| 
									
										
										
										
											2008-07-10 15:24:04 +00:00
										 |  |  | 	frame_methods,				/* tp_methods */ | 
					
						
							| 
									
										
										
										
											2001-08-02 04:15:00 +00:00
										 |  |  | 	frame_memberlist,			/* tp_members */ | 
					
						
							|  |  |  | 	frame_getsetlist,			/* tp_getset */ | 
					
						
							|  |  |  | 	0,					/* tp_base */ | 
					
						
							|  |  |  | 	0,					/* tp_dict */ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-30 22:29:22 +00:00
										 |  |  | static PyObject *builtin_object; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 03:42:13 +00:00
										 |  |  | int _PyFrame_Init() | 
					
						
							| 
									
										
										
										
											2002-12-30 22:29:22 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-06-09 04:58:54 +00:00
										 |  |  | 	builtin_object = PyString_InternFromString("__builtins__"); | 
					
						
							| 
									
										
										
										
											2002-12-30 22:29:22 +00:00
										 |  |  | 	return (builtin_object != NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | PyFrameObject * | 
					
						
							| 
									
										
										
										
											2006-04-15 03:15:24 +00:00
										 |  |  | PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals, | 
					
						
							| 
									
										
										
										
											2001-03-13 01:58:22 +00:00
										 |  |  | 	    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
										 |  |  | 	PyFrameObject *f; | 
					
						
							|  |  |  | 	PyObject *builtins; | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 	Py_ssize_t i; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-19 16:54:08 +00:00
										 |  |  | #ifdef Py_DEBUG
 | 
					
						
							|  |  |  | 	if (code == NULL || globals == NULL || !PyDict_Check(globals) || | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 	    (locals != NULL && !PyMapping_Check(locals))) { | 
					
						
							| 
									
										
										
										
											1997-04-29 14:49:28 +00:00
										 |  |  | 		PyErr_BadInternalCall(); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-08-19 16:54:08 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-02-19 20:48:26 +00:00
										 |  |  | 	if (back == NULL || back->f_globals != globals) { | 
					
						
							|  |  |  | 		builtins = PyDict_GetItem(globals, builtin_object); | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 		if (builtins) { | 
					
						
							|  |  |  | 			if (PyModule_Check(builtins)) { | 
					
						
							|  |  |  | 				builtins = PyModule_GetDict(builtins); | 
					
						
							|  |  |  | 				assert(!builtins || PyDict_Check(builtins)); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else if (!PyDict_Check(builtins)) | 
					
						
							|  |  |  | 				builtins = NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (builtins == NULL) { | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 			/* No builtins!	 Make up a minimal one
 | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 			   Give them 'None', at least. */ | 
					
						
							|  |  |  | 			builtins = PyDict_New(); | 
					
						
							| 
									
										
										
										
											2006-04-15 03:15:24 +00:00
										 |  |  | 			if (builtins == NULL || | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 			    PyDict_SetItemString( | 
					
						
							|  |  |  | 				    builtins, "None", Py_None) < 0) | 
					
						
							|  |  |  | 				return NULL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			Py_INCREF(builtins); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-19 20:48:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		/* If we share the globals, we share the builtins.
 | 
					
						
							|  |  |  | 		   Save a lookup and a call. */ | 
					
						
							|  |  |  | 		builtins = back->f_builtins; | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 		assert(builtins != NULL && PyDict_Check(builtins)); | 
					
						
							|  |  |  | 		Py_INCREF(builtins); | 
					
						
							| 
									
										
										
										
											1998-02-19 20:48:26 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 	if (code->co_zombieframe != NULL) { | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		f = code->co_zombieframe; | 
					
						
							|  |  |  | 		code->co_zombieframe = NULL; | 
					
						
							|  |  |  | 		_Py_NewReference((PyObject *)f); | 
					
						
							|  |  |  | 		assert(f->f_code == code); | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	else { | 
					
						
							|  |  |  | 		Py_ssize_t extras, ncells, nfrees; | 
					
						
							|  |  |  | 		ncells = PyTuple_GET_SIZE(code->co_cellvars); | 
					
						
							|  |  |  | 		nfrees = PyTuple_GET_SIZE(code->co_freevars); | 
					
						
							|  |  |  | 		extras = code->co_stacksize + code->co_nlocals + ncells + | 
					
						
							|  |  |  | 		    nfrees; | 
					
						
							|  |  |  | 		if (free_list == NULL) { | 
					
						
							|  |  |  | 		    f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, | 
					
						
							|  |  |  | 			extras); | 
					
						
							|  |  |  | 		    if (f == NULL) { | 
					
						
							|  |  |  | 			    Py_DECREF(builtins); | 
					
						
							|  |  |  | 			    return NULL; | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 		    assert(numfree > 0); | 
					
						
							|  |  |  | 		    --numfree; | 
					
						
							|  |  |  | 		    f = free_list; | 
					
						
							|  |  |  | 		    free_list = free_list->f_back; | 
					
						
							| 
									
										
										
										
											2007-12-19 02:37:44 +00:00
										 |  |  | 		    if (Py_SIZE(f) < extras) { | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 			    f = PyObject_GC_Resize(PyFrameObject, f, extras); | 
					
						
							|  |  |  | 			    if (f == NULL) { | 
					
						
							|  |  |  | 				    Py_DECREF(builtins); | 
					
						
							|  |  |  | 				    return NULL; | 
					
						
							|  |  |  | 			    } | 
					
						
							|  |  |  | 		    } | 
					
						
							|  |  |  | 		    _Py_NewReference((PyObject *)f); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		f->f_code = code; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:32:11 +00:00
										 |  |  | 		extras = code->co_nlocals + ncells + nfrees; | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 		f->f_valuestack = f->f_localsplus + extras; | 
					
						
							|  |  |  | 		for (i=0; i<extras; i++) | 
					
						
							|  |  |  | 			f->f_localsplus[i] = NULL; | 
					
						
							|  |  |  | 		f->f_locals = NULL; | 
					
						
							|  |  |  | 		f->f_trace = NULL; | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		f->f_exc_type = f->f_exc_value = f->f_exc_traceback = NULL; | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-07-21 05:31:02 +00:00
										 |  |  | 	f->f_stacktop = f->f_valuestack; | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 	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); | 
					
						
							|  |  |  | 	Py_INCREF(globals); | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	f->f_globals = globals; | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 	/* Most functions have CO_NEWLOCALS and CO_OPTIMIZED set. */ | 
					
						
							| 
									
										
										
										
											2006-04-15 03:15:24 +00:00
										 |  |  | 	if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 		(CO_NEWLOCALS | CO_OPTIMIZED)) | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 		; /* f_locals = NULL; will be set by PyFrame_FastToLocals() */ | 
					
						
							| 
									
										
										
										
											2003-02-05 22:39:29 +00:00
										 |  |  | 	else if (code->co_flags & CO_NEWLOCALS) { | 
					
						
							|  |  |  | 		locals = PyDict_New(); | 
					
						
							|  |  |  | 		if (locals == NULL) { | 
					
						
							|  |  |  | 			Py_DECREF(f); | 
					
						
							|  |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		f->f_locals = locals; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		f->f_locals = locals; | 
					
						
							| 
									
										
										
										
											1995-07-18 14:30:34 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1997-08-02 02:59:08 +00:00
										 |  |  | 	f->f_tstate = tstate; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-15 14:59:02 +00:00
										 |  |  | 	f->f_lasti = -1; | 
					
						
							| 
									
										
										
										
											1997-01-24 04:00:21 +00:00
										 |  |  | 	f->f_lineno = code->co_firstlineno; | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	f->f_iblock = 0; | 
					
						
							| 
									
										
										
										
											2006-05-23 10:37:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-29 23:52:17 +00:00
										 |  |  | 	_PyObject_GC_TRACK(f); | 
					
						
							| 
									
										
										
										
											1997-01-20 04:20:52 +00:00
										 |  |  | 	return f; | 
					
						
							| 
									
										
										
										
											1992-10-18 18:53:57 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Block management */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 05:40:56 +00:00
										 |  |  | PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level) | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											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 * | 
					
						
							| 
									
										
										
										
											2000-07-09 05:40:56 +00:00
										 |  |  | PyFrame_BlockPop(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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | /* Convert between "fast" version of locals and dictionary version.
 | 
					
						
							|  |  |  |     | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  |    map and values are input arguments.	map is a tuple of strings. | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  |    values is an array of PyObject*.  At index i, map[i] is the name of | 
					
						
							|  |  |  |    the variable with value values[i].  The function copies the first | 
					
						
							|  |  |  |    nmap variable from map/values into dict.  If values[i] is NULL, | 
					
						
							|  |  |  |    the variable is deleted from dict. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If deref is true, then the values being copied are cell variables | 
					
						
							|  |  |  |    and the value is extracted from the cell variable before being put | 
					
						
							|  |  |  |    in dict. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exceptions raised while modifying the dict are silently ignored, | 
					
						
							|  |  |  |    because there is no good way to report them. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-14 17:55:09 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | map_to_dict(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values, | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | 	    int deref) | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t j; | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	assert(PyTuple_Check(map)); | 
					
						
							|  |  |  | 	assert(PyDict_Check(dict)); | 
					
						
							|  |  |  | 	assert(PyTuple_Size(map) >= nmap); | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 	for (j = nmap; --j >= 0; ) { | 
					
						
							| 
									
										
										
										
											2001-12-06 15:48:16 +00:00
										 |  |  | 		PyObject *key = PyTuple_GET_ITEM(map, j); | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 		PyObject *value = values[j]; | 
					
						
							| 
									
										
										
										
											2008-06-09 04:58:54 +00:00
										 |  |  | 		assert(PyString_Check(key)); | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | 		if (deref) { | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 			assert(PyCell_Check(value)); | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 			value = PyCell_GET(value); | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 		if (value == NULL) { | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 			if (PyObject_DelItem(dict, key) != 0) | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 				PyErr_Clear(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 			if (PyObject_SetItem(dict, key, value) != 0) | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 				PyErr_Clear(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | /* Copy values from the "locals" dict into the fast locals.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    dict is an input argument containing string keys representing | 
					
						
							|  |  |  |    variables names and arbitrary PyObject* as values. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  |    map and values are input arguments.	map is a tuple of strings. | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  |    values is an array of PyObject*.  At index i, map[i] is the name of | 
					
						
							|  |  |  |    the variable with value values[i].  The function copies the first | 
					
						
							|  |  |  |    nmap variable from map/values into dict.  If values[i] is NULL, | 
					
						
							|  |  |  |    the variable is deleted from dict. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If deref is true, then the values being copied are cell variables | 
					
						
							|  |  |  |    and the value is extracted from the cell variable before being put | 
					
						
							|  |  |  |    in dict.  If clear is true, then variables in map but not in dict | 
					
						
							|  |  |  |    are set to NULL in map; if clear is false, variables missing in | 
					
						
							|  |  |  |    dict are ignored. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Exceptions raised while modifying the dict are silently ignored, | 
					
						
							|  |  |  |    because there is no good way to report them. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-14 17:55:41 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | dict_to_map(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values, | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | 	    int deref, int clear) | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t j; | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	assert(PyTuple_Check(map)); | 
					
						
							|  |  |  | 	assert(PyDict_Check(dict)); | 
					
						
							|  |  |  | 	assert(PyTuple_Size(map) >= nmap); | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 	for (j = nmap; --j >= 0; ) { | 
					
						
							| 
									
										
										
										
											2001-12-06 15:48:16 +00:00
										 |  |  | 		PyObject *key = PyTuple_GET_ITEM(map, j); | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 		PyObject *value = PyObject_GetItem(dict, key); | 
					
						
							| 
									
										
										
										
											2008-06-09 04:58:54 +00:00
										 |  |  | 		assert(PyString_Check(key)); | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		/* We only care about NULLs if clear is true. */ | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | 		if (value == NULL) { | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 			PyErr_Clear(); | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 			if (!clear) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 		if (deref) { | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 			assert(PyCell_Check(values[j])); | 
					
						
							|  |  |  | 			if (PyCell_GET(values[j]) != value) { | 
					
						
							|  |  |  | 				if (PyCell_Set(values[j], value) < 0) | 
					
						
							|  |  |  | 					PyErr_Clear(); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2007-02-26 18:41:18 +00:00
										 |  |  | 		} else if (values[j] != value) { | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 			Py_XINCREF(value); | 
					
						
							|  |  |  | 			Py_XDECREF(values[j]); | 
					
						
							|  |  |  | 			values[j] = value; | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 		Py_XDECREF(value); | 
					
						
							| 
									
										
										
										
											2001-03-21 16:43:47 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-01-29 22:51:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-09 05:40:56 +00:00
										 |  |  | PyFrame_FastToLocals(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; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	PyCodeObject *co; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t j; | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 	int ncells, nfreevars; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	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; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	co = f->f_code; | 
					
						
							|  |  |  | 	map = co->co_varnames; | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 	if (!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; | 
					
						
							| 
									
										
										
										
											2006-03-20 01:53:23 +00:00
										 |  |  | 	j = PyTuple_GET_SIZE(map); | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	if (j > co->co_nlocals) | 
					
						
							|  |  |  | 		j = co->co_nlocals; | 
					
						
							|  |  |  | 	if (co->co_nlocals) | 
					
						
							| 
									
										
										
										
											2003-10-21 18:10:28 +00:00
										 |  |  | 		map_to_dict(map, j, locals, fast, 0); | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	ncells = PyTuple_GET_SIZE(co->co_cellvars); | 
					
						
							|  |  |  | 	nfreevars = PyTuple_GET_SIZE(co->co_freevars); | 
					
						
							|  |  |  | 	if (ncells || nfreevars) { | 
					
						
							|  |  |  | 		map_to_dict(co->co_cellvars, ncells, | 
					
						
							|  |  |  | 			    locals, fast + co->co_nlocals, 1); | 
					
						
							| 
									
										
										
										
											2007-02-27 16:00:06 +00:00
										 |  |  | 		/* If the namespace is unoptimized, then one of the 
 | 
					
						
							|  |  |  | 		   following cases applies: | 
					
						
							|  |  |  | 		   1. It does not contain free variables, because it | 
					
						
							|  |  |  | 		      uses import * or is a top-level namespace. | 
					
						
							|  |  |  | 		   2. It is a class namespace. | 
					
						
							|  |  |  | 		   We don't want to accidentally copy free variables | 
					
						
							|  |  |  | 		   into the locals dict used by the class. | 
					
						
							|  |  |  | 		*/ | 
					
						
							|  |  |  | 		if (co->co_flags & CO_OPTIMIZED) { | 
					
						
							|  |  |  | 			map_to_dict(co->co_freevars, nfreevars, | 
					
						
							|  |  |  | 				    locals, fast + co->co_nlocals + ncells, 1); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2000-07-09 05:40:56 +00:00
										 |  |  | PyFrame_LocalsToFast(PyFrameObject *f, int clear) | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	PyCodeObject *co; | 
					
						
							| 
									
										
										
										
											2006-02-15 17:27:45 +00:00
										 |  |  | 	Py_ssize_t j; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	int ncells, nfreevars; | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 	if (f == NULL) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	locals = f->f_locals; | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	co = f->f_code; | 
					
						
							|  |  |  | 	map = co->co_varnames; | 
					
						
							| 
									
										
										
										
											2002-04-20 04:46:55 +00:00
										 |  |  | 	if (locals == NULL) | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2004-07-02 06:41:07 +00:00
										 |  |  | 	if (!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; | 
					
						
							| 
									
										
										
										
											2006-03-20 01:53:23 +00:00
										 |  |  | 	j = PyTuple_GET_SIZE(map); | 
					
						
							| 
									
										
										
										
											2006-05-23 18:28:17 +00:00
										 |  |  | 	if (j > co->co_nlocals) | 
					
						
							|  |  |  | 		j = co->co_nlocals; | 
					
						
							|  |  |  | 	if (co->co_nlocals) | 
					
						
							|  |  |  | 	    dict_to_map(co->co_varnames, j, locals, fast, 0, clear); | 
					
						
							|  |  |  | 	ncells = PyTuple_GET_SIZE(co->co_cellvars); | 
					
						
							|  |  |  | 	nfreevars = PyTuple_GET_SIZE(co->co_freevars); | 
					
						
							|  |  |  | 	if (ncells || nfreevars) { | 
					
						
							|  |  |  | 		dict_to_map(co->co_cellvars, ncells, | 
					
						
							|  |  |  | 			    locals, fast + co->co_nlocals, 1, clear); | 
					
						
							| 
									
										
										
										
											2008-07-21 22:00:38 +00:00
										 |  |  | 		/* Same test as in PyFrame_FastToLocals() above. */ | 
					
						
							|  |  |  | 		if (co->co_flags & CO_OPTIMIZED) { | 
					
						
							|  |  |  | 			dict_to_map(co->co_freevars, nfreevars, | 
					
						
							|  |  |  | 			        locals, fast + co->co_nlocals + ncells, 1,  | 
					
						
							|  |  |  | 			        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
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Clear out the free list */ | 
					
						
							| 
									
										
										
										
											2008-02-14 12:47:33 +00:00
										 |  |  | int | 
					
						
							|  |  |  | PyFrame_ClearFreeList(void) | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-14 12:47:33 +00:00
										 |  |  | 	int freelist_size = numfree; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 	while (free_list != NULL) { | 
					
						
							|  |  |  | 		PyFrameObject *f = free_list; | 
					
						
							|  |  |  | 		free_list = free_list->f_back; | 
					
						
							| 
									
										
										
										
											2001-08-29 23:52:17 +00:00
										 |  |  | 		PyObject_GC_Del(f); | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  | 		--numfree; | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2002-04-13 05:21:47 +00:00
										 |  |  | 	assert(numfree == 0); | 
					
						
							| 
									
										
										
										
											2008-02-14 12:47:33 +00:00
										 |  |  | 	return freelist_size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | PyFrame_Fini(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	(void)PyFrame_ClearFreeList(); | 
					
						
							| 
									
										
										
										
											2002-12-30 22:29:22 +00:00
										 |  |  | 	Py_XDECREF(builtin_object); | 
					
						
							|  |  |  | 	builtin_object = NULL; | 
					
						
							| 
									
										
										
										
											1997-08-05 02:09:46 +00:00
										 |  |  | } |