frameobject.c 26.9 KB
Newer Older
Guido van Rossum's avatar
Guido van Rossum committed
1 2
/* Frame object implementation */

Guido van Rossum's avatar
Guido van Rossum committed
3
#include "Python.h"
Guido van Rossum's avatar
Guido van Rossum committed
4

Jeremy Hylton's avatar
Jeremy Hylton committed
5
#include "code.h"
Guido van Rossum's avatar
Guido van Rossum committed
6 7 8 9
#include "frameobject.h"
#include "opcode.h"
#include "structmember.h"

10 11
#undef MIN
#undef MAX
12 13 14
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))

Guido van Rossum's avatar
Guido van Rossum committed
15
#define OFF(x) offsetof(PyFrameObject, x)
Guido van Rossum's avatar
Guido van Rossum committed
16

17
static PyMemberDef frame_memberlist[] = {
18 19
	{"f_back",	T_OBJECT,	OFF(f_back),	RO},
	{"f_code",	T_OBJECT,	OFF(f_code),	RO},
20
	{"f_builtins",	T_OBJECT,	OFF(f_builtins),RO},
21 22
	{"f_globals",	T_OBJECT,	OFF(f_globals),	RO},
	{"f_lasti",	T_INT,		OFF(f_lasti),	RO},
Guido van Rossum's avatar
Guido van Rossum committed
23 24 25
	{NULL}	/* Sentinel */
};

26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
#define WARN_GET_SET(NAME) \
static PyObject * frame_get_ ## NAME(PyFrameObject *f) { \
	if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
		return NULL; \
	if (f->NAME) { \
		Py_INCREF(f->NAME); \
		return f->NAME; \
	} \
        Py_RETURN_NONE;	\
} \
static int frame_set_ ## NAME(PyFrameObject *f, PyObject *new) { \
	if (PyErr_WarnPy3k(#NAME " has been removed in 3.x", 2) < 0) \
		return -1; \
	if (f->NAME) { \
		Py_CLEAR(f->NAME); \
	} \
        if (new == Py_None) \
            new = NULL; \
	Py_XINCREF(new); \
	f->NAME = new; \
	return 0; \
}


WARN_GET_SET(f_exc_traceback)
WARN_GET_SET(f_exc_type)
WARN_GET_SET(f_exc_value)


Guido van Rossum's avatar
Guido van Rossum committed
55
static PyObject *
56
frame_getlocals(PyFrameObject *f, void *closure)
Guido van Rossum's avatar
Guido van Rossum committed
57
{
58 59 60
	PyFrame_FastToLocals(f);
	Py_INCREF(f->f_locals);
	return f->f_locals;
Guido van Rossum's avatar
Guido van Rossum committed
61 62
}

Michael W. Hudson's avatar
Michael W. Hudson committed
63 64 65 66 67
static PyObject *
frame_getlineno(PyFrameObject *f, void *closure)
{
	int lineno;

68 69 70 71
	if (f->f_trace)
		lineno = f->f_lineno;
	else
		lineno = PyCode_Addr2Line(f->f_code, f->f_lasti);
Michael W. Hudson's avatar
Michael W. Hudson committed
72 73 74 75

	return PyInt_FromLong(lineno);
}

76
/* Setter for f_lineno - you can set f_lineno from within a trace function in
Jeremy Hylton's avatar
Jeremy Hylton committed
77
 * order to jump to a given line of code, subject to some restrictions.	 Most
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
 * 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 */
97
	unsigned char *code = NULL;	/* The bytecode for the frame... */
Martin v. Löwis's avatar
Martin v. Löwis committed
98
	Py_ssize_t code_len = 0;	/* ...and its length */
99
	char *lnotab = NULL;		/* Iterating over co_lnotab */
Martin v. Löwis's avatar
Martin v. Löwis committed
100
	Py_ssize_t lnotab_len = 0;	/* (ditto) */
101 102 103 104 105 106 107 108 109 110 111 112 113
	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) */
114
	unsigned char setup_op = 0;	/* (ditto) */
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142

	/* 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. */
143
	PyString_AsStringAndSize(f->f_code->co_lnotab, &lnotab, &lnotab_len);
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
	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. */
166
	PyString_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len);
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
	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
Jeremy Hylton's avatar
Jeremy Hylton committed
188
	 * up.	So we walk the bytecode, maintaining a simulated blockstack.
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
	 * 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:
211
			assert(blockstack_top > 0);
212 213 214 215 216 217 218 219 220 221 222 223
			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
224 225 226 227 228 229 230
			 * '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--;
				}
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
			}
			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;
		}
	}

264 265 266 267
	/* 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? */
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
	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;
}

338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
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;
360

361 362 363 364 365 366 367 368
	if (v != NULL)
		f->f_lineno = PyCode_Addr2Line(f->f_code, f->f_lasti);

	Py_XDECREF(old_value);

	return 0;
}

369 370 371 372 373 374
static PyObject *
frame_getrestricted(PyFrameObject *f, void *closure)
{
	return PyBool_FromLong(PyFrame_IsRestricted(f));
}

375
static PyGetSetDef frame_getsetlist[] = {
376
	{"f_locals",	(getter)frame_getlocals, NULL, NULL},
377 378
	{"f_lineno",	(getter)frame_getlineno,
			(setter)frame_setlineno, NULL},
379
	{"f_trace",	(getter)frame_gettrace, (setter)frame_settrace, NULL},
380
	{"f_restricted",(getter)frame_getrestricted,NULL, NULL},
381 382 383 384 385 386
	{"f_exc_traceback", (getter)frame_get_f_exc_traceback,
	                (setter)frame_set_f_exc_traceback, NULL},
        {"f_exc_type",  (getter)frame_get_f_exc_type,
                        (setter)frame_set_f_exc_type, NULL},
        {"f_exc_value", (getter)frame_get_f_exc_value,
                        (setter)frame_set_f_exc_value, NULL},
387 388
	{0}
};
389

390
/* Stack frames are allocated and deallocated at a considerable rate.
391 392 393 394 395 396 397 398 399 400 401 402
   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:

Richard Jones's avatar
Richard Jones committed
403
     * ob_type, ob_size, f_code, f_valuestack;
404 405 406 407 408 409 410 411 412 413 414
       
     * 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:
415 416
	ob_type		== &Frametype
	f_back		next item on free list, or NULL
417
	f_stacksize	size of value stack
Jeremy Hylton's avatar
Jeremy Hylton committed
418
	ob_size		size of localsplus
419 420 421 422 423 424 425 426
   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.
427

428
   Later, PyFrame_MAXFREELIST was added to bound the # of frames saved on
429 430
   free_list.  Else programs creating lots of cyclic trash involving
   frames could provoke free_list into growing without bound.
431 432
*/

Guido van Rossum's avatar
Guido van Rossum committed
433
static PyFrameObject *free_list = NULL;
434
static int numfree = 0;		/* number of frames currently in free_list */
435 436
/* max value for numfree */
#define PyFrame_MAXFREELIST 200	
437

Guido van Rossum's avatar
Guido van Rossum committed
438
static void
439
frame_dealloc(PyFrameObject *f)
Guido van Rossum's avatar
Guido van Rossum committed
440
{
441 442
	PyObject **p, **valuestack;
	PyCodeObject *co;
443

Jeremy Hylton's avatar
Jeremy Hylton committed
444
	PyObject_GC_UnTrack(f);
445
	Py_TRASHCAN_SAFE_BEGIN(f)
446
	/* Kill all local variables */
Jeremy Hylton's avatar
Jeremy Hylton committed
447 448 449
	valuestack = f->f_valuestack;
	for (p = f->f_localsplus; p < valuestack; p++)
		Py_CLEAR(*p);
450

451
	/* Free stack */
452
	if (f->f_stacktop != NULL) {
453
		for (p = valuestack; p < f->f_stacktop; p++)
454
			Py_XDECREF(*p);
455
	}
456

Guido van Rossum's avatar
Guido van Rossum committed
457
	Py_XDECREF(f->f_back);
458 459
	Py_DECREF(f->f_builtins);
	Py_DECREF(f->f_globals);
460 461 462 463 464 465
	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);

Jeremy Hylton's avatar
Jeremy Hylton committed
466 467 468
	co = f->f_code;
	if (co->co_zombieframe == NULL)
		co->co_zombieframe = f;
469
	else if (numfree < PyFrame_MAXFREELIST) {
470 471 472
		++numfree;
		f->f_back = free_list;
		free_list = f;
Jeremy Hylton's avatar
Jeremy Hylton committed
473
	}
474
	else 
475
		PyObject_GC_Del(f);
476

Jeremy Hylton's avatar
Jeremy Hylton committed
477
	Py_DECREF(co);
478
	Py_TRASHCAN_SAFE_END(f)
Guido van Rossum's avatar
Guido van Rossum committed
479 480
}

Neil Schemenauer's avatar
Neil Schemenauer committed
481 482 483 484
static int
frame_traverse(PyFrameObject *f, visitproc visit, void *arg)
{
	PyObject **fastlocals, **p;
485 486 487 488 489 490 491 492 493 494 495
	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);
Neil Schemenauer's avatar
Neil Schemenauer committed
496 497

	/* locals */
498
	slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars);
Neil Schemenauer's avatar
Neil Schemenauer committed
499
	fastlocals = f->f_localsplus;
500 501
	for (i = slots; --i >= 0; ++fastlocals)
		Py_VISIT(*fastlocals);
Neil Schemenauer's avatar
Neil Schemenauer committed
502 503 504 505

	/* stack */
	if (f->f_stacktop != NULL) {
		for (p = f->f_valuestack; p < f->f_stacktop; p++)
506
			Py_VISIT(*p);
Neil Schemenauer's avatar
Neil Schemenauer committed
507 508 509 510 511 512 513
	}
	return 0;
}

static void
frame_clear(PyFrameObject *f)
{
514
	PyObject **fastlocals, **p, **oldtop;
Neil Schemenauer's avatar
Neil Schemenauer committed
515 516
	int i, slots;

517
	/* Before anything else, make sure that this frame is clearly marked
Jeremy Hylton's avatar
Jeremy Hylton committed
518 519 520 521
	 * 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.
	 */
522
	oldtop = f->f_stacktop;
Jeremy Hylton's avatar
Jeremy Hylton committed
523
	f->f_stacktop = NULL;
524

525 526 527 528
	Py_CLEAR(f->f_exc_type);
	Py_CLEAR(f->f_exc_value);
	Py_CLEAR(f->f_exc_traceback);
	Py_CLEAR(f->f_trace);
Neil Schemenauer's avatar
Neil Schemenauer committed
529 530

	/* locals */
531
	slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars);
Neil Schemenauer's avatar
Neil Schemenauer committed
532
	fastlocals = f->f_localsplus;
533
	for (i = slots; --i >= 0; ++fastlocals)
534
		Py_CLEAR(*fastlocals);
Neil Schemenauer's avatar
Neil Schemenauer committed
535 536

	/* stack */
537
	if (oldtop != NULL) {
538
		for (p = f->f_valuestack; p < oldtop; p++)
539
			Py_CLEAR(*p);
Neil Schemenauer's avatar
Neil Schemenauer committed
540 541 542
	}
}

543 544 545 546 547 548 549 550 551
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;
552
	/* subtract one as it is already included in PyFrameObject */
553 554 555 556 557 558 559 560 561 562 563 564 565
	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 */
};
Neil Schemenauer's avatar
Neil Schemenauer committed
566

Guido van Rossum's avatar
Guido van Rossum committed
567
PyTypeObject PyFrame_Type = {
568
	PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossum's avatar
Guido van Rossum committed
569
	"frame",
570 571
	sizeof(PyFrameObject),
	sizeof(PyObject *),
Jeremy Hylton's avatar
Jeremy Hylton committed
572
	(destructor)frame_dealloc,		/* tp_dealloc */
Neil Schemenauer's avatar
Neil Schemenauer committed
573
	0,					/* tp_print */
Jeremy Hylton's avatar
Jeremy Hylton committed
574 575
	0,					/* tp_getattr */
	0,					/* tp_setattr */
Neil Schemenauer's avatar
Neil Schemenauer committed
576 577 578 579 580 581 582 583
	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 */
584 585
	PyObject_GenericGetAttr,		/* tp_getattro */
	PyObject_GenericSetAttr,		/* tp_setattro */
Neil Schemenauer's avatar
Neil Schemenauer committed
586
	0,					/* tp_as_buffer */
587
	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
Jeremy Hylton's avatar
Jeremy Hylton committed
588 589
	0,					/* tp_doc */
	(traverseproc)frame_traverse,		/* tp_traverse */
Neil Schemenauer's avatar
Neil Schemenauer committed
590
	(inquiry)frame_clear,			/* tp_clear */
591 592 593 594
	0,					/* tp_richcompare */
	0,					/* tp_weaklistoffset */
	0,					/* tp_iter */
	0,					/* tp_iternext */
595
	frame_methods,				/* tp_methods */
596 597 598 599
	frame_memberlist,			/* tp_members */
	frame_getsetlist,			/* tp_getset */
	0,					/* tp_base */
	0,					/* tp_dict */
Guido van Rossum's avatar
Guido van Rossum committed
600 601
};

602 603
static PyObject *builtin_object;

604
int _PyFrame_Init()
605
{
606
	builtin_object = PyString_InternFromString("__builtins__");
607 608 609
	return (builtin_object != NULL);
}

Guido van Rossum's avatar
Guido van Rossum committed
610
PyFrameObject *
611
PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals,
612
	    PyObject *locals)
Guido van Rossum's avatar
Guido van Rossum committed
613
{
614
	PyFrameObject *back = tstate->frame;
Guido van Rossum's avatar
Guido van Rossum committed
615 616
	PyFrameObject *f;
	PyObject *builtins;
617
	Py_ssize_t i;
618

619 620
#ifdef Py_DEBUG
	if (code == NULL || globals == NULL || !PyDict_Check(globals) ||
621
	    (locals != NULL && !PyMapping_Check(locals))) {
Guido van Rossum's avatar
Guido van Rossum committed
622
		PyErr_BadInternalCall();
Guido van Rossum's avatar
Guido van Rossum committed
623 624
		return NULL;
	}
625
#endif
626 627
	if (back == NULL || back->f_globals != globals) {
		builtins = PyDict_GetItem(globals, builtin_object);
628 629 630 631 632 633 634 635 636
		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) {
Jeremy Hylton's avatar
Jeremy Hylton committed
637
			/* No builtins!	 Make up a minimal one
638 639
			   Give them 'None', at least. */
			builtins = PyDict_New();
640
			if (builtins == NULL ||
641 642 643 644 645 646 647
			    PyDict_SetItemString(
				    builtins, "None", Py_None) < 0)
				return NULL;
		}
		else
			Py_INCREF(builtins);

648 649 650 651 652
	}
	else {
		/* If we share the globals, we share the builtins.
		   Save a lookup and a call. */
		builtins = back->f_builtins;
653 654
		assert(builtins != NULL && PyDict_Check(builtins));
		Py_INCREF(builtins);
655
	}
656
	if (code->co_zombieframe != NULL) {
Jeremy Hylton's avatar
Jeremy Hylton committed
657 658 659 660
		f = code->co_zombieframe;
		code->co_zombieframe = NULL;
		_Py_NewReference((PyObject *)f);
		assert(f->f_code == code);
661
	}
Jeremy Hylton's avatar
Jeremy Hylton committed
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
	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;
681
		    if (Py_SIZE(f) < extras) {
Jeremy Hylton's avatar
Jeremy Hylton committed
682 683 684 685 686 687 688 689
			    f = PyObject_GC_Resize(PyFrameObject, f, extras);
			    if (f == NULL) {
				    Py_DECREF(builtins);
				    return NULL;
			    }
		    }
		    _Py_NewReference((PyObject *)f);
		}
690 691

		f->f_code = code;
Richard Jones's avatar
Richard Jones committed
692
		extras = code->co_nlocals + ncells + nfrees;
693 694 695 696 697
		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;
Jeremy Hylton's avatar
Jeremy Hylton committed
698
		f->f_exc_type = f->f_exc_value = f->f_exc_traceback = NULL;
699
	}
700
	f->f_stacktop = f->f_valuestack;
701
	f->f_builtins = builtins;
Guido van Rossum's avatar
Guido van Rossum committed
702
	Py_XINCREF(back);
703
	f->f_back = back;
Guido van Rossum's avatar
Guido van Rossum committed
704 705
	Py_INCREF(code);
	Py_INCREF(globals);
706
	f->f_globals = globals;
707
	/* Most functions have CO_NEWLOCALS and CO_OPTIMIZED set. */
708
	if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) ==
709
		(CO_NEWLOCALS | CO_OPTIMIZED))
710
		; /* f_locals = NULL; will be set by PyFrame_FastToLocals() */
711 712 713 714 715
	else if (code->co_flags & CO_NEWLOCALS) {
		locals = PyDict_New();
		if (locals == NULL) {
			Py_DECREF(f);
			return NULL;
716
		}
Jeremy Hylton's avatar
Jeremy Hylton committed
717
		f->f_locals = locals;
718 719 720 721
	}
	else {
		if (locals == NULL)
			locals = globals;
Guido van Rossum's avatar
Guido van Rossum committed
722
		Py_INCREF(locals);
Jeremy Hylton's avatar
Jeremy Hylton committed
723
		f->f_locals = locals;
724
	}
725
	f->f_tstate = tstate;
726

Michael W. Hudson's avatar
Michael W. Hudson committed
727
	f->f_lasti = -1;
728
	f->f_lineno = code->co_firstlineno;
729
	f->f_iblock = 0;
730

731
	_PyObject_GC_TRACK(f);
732
	return f;
733 734
}

Guido van Rossum's avatar
Guido van Rossum committed
735 736 737
/* Block management */

void
738
PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level)
Guido van Rossum's avatar
Guido van Rossum committed
739
{
Guido van Rossum's avatar
Guido van Rossum committed
740
	PyTryBlock *b;
741
	if (f->f_iblock >= CO_MAXBLOCKS)
Guido van Rossum's avatar
Guido van Rossum committed
742
		Py_FatalError("XXX block stack overflow");
Guido van Rossum's avatar
Guido van Rossum committed
743 744 745 746 747 748
	b = &f->f_blockstack[f->f_iblock++];
	b->b_type = type;
	b->b_level = level;
	b->b_handler = handler;
}

Guido van Rossum's avatar
Guido van Rossum committed
749
PyTryBlock *
750
PyFrame_BlockPop(PyFrameObject *f)
Guido van Rossum's avatar
Guido van Rossum committed
751
{
Guido van Rossum's avatar
Guido van Rossum committed
752
	PyTryBlock *b;
753
	if (f->f_iblock <= 0)
Guido van Rossum's avatar
Guido van Rossum committed
754
		Py_FatalError("XXX block stack underflow");
Guido van Rossum's avatar
Guido van Rossum committed
755 756 757
	b = &f->f_blockstack[--f->f_iblock];
	return b;
}
758

759 760
/* Convert between "fast" version of locals and dictionary version.
   
Jeremy Hylton's avatar
Jeremy Hylton committed
761
   map and values are input arguments.	map is a tuple of strings.
762 763 764 765 766 767 768 769 770 771 772 773
   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.
 */
774

775
static void
Martin v. Löwis's avatar
Martin v. Löwis committed
776
map_to_dict(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values,
777
	    int deref)
778
{
Martin v. Löwis's avatar
Martin v. Löwis committed
779
	Py_ssize_t j;
Jeremy Hylton's avatar
Jeremy Hylton committed
780 781 782
	assert(PyTuple_Check(map));
	assert(PyDict_Check(dict));
	assert(PyTuple_Size(map) >= nmap);
783
	for (j = nmap; --j >= 0; ) {
784
		PyObject *key = PyTuple_GET_ITEM(map, j);
785
		PyObject *value = values[j];
786
		assert(PyString_Check(key));
787
		if (deref) {
Jeremy Hylton's avatar
Jeremy Hylton committed
788
			assert(PyCell_Check(value));
789
			value = PyCell_GET(value);
Jeremy Hylton's avatar
Jeremy Hylton committed
790
		}
791
		if (value == NULL) {
792
			if (PyObject_DelItem(dict, key) != 0)
793 794 795
				PyErr_Clear();
		}
		else {
796
			if (PyObject_SetItem(dict, key, value) != 0)
797 798 799 800 801
				PyErr_Clear();
		}
	}
}

802 803 804 805 806
/* 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.

Jeremy Hylton's avatar
Jeremy Hylton committed
807
   map and values are input arguments.	map is a tuple of strings.
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
   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.
*/

823
static void
Martin v. Löwis's avatar
Martin v. Löwis committed
824
dict_to_map(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values,
825
	    int deref, int clear)
826
{
Martin v. Löwis's avatar
Martin v. Löwis committed
827
	Py_ssize_t j;
Jeremy Hylton's avatar
Jeremy Hylton committed
828 829 830
	assert(PyTuple_Check(map));
	assert(PyDict_Check(dict));
	assert(PyTuple_Size(map) >= nmap);
831
	for (j = nmap; --j >= 0; ) {
832
		PyObject *key = PyTuple_GET_ITEM(map, j);
833
		PyObject *value = PyObject_GetItem(dict, key);
834
		assert(PyString_Check(key));
Jeremy Hylton's avatar
Jeremy Hylton committed
835
		/* We only care about NULLs if clear is true. */
836
		if (value == NULL) {
837
			PyErr_Clear();
Jeremy Hylton's avatar
Jeremy Hylton committed
838 839 840
			if (!clear)
				continue;
		}
841
		if (deref) {
Jeremy Hylton's avatar
Jeremy Hylton committed
842 843 844 845 846
			assert(PyCell_Check(values[j]));
			if (PyCell_GET(values[j]) != value) {
				if (PyCell_Set(values[j], value) < 0)
					PyErr_Clear();
			}
847
		} else if (values[j] != value) {
Jeremy Hylton's avatar
Jeremy Hylton committed
848 849 850
			Py_XINCREF(value);
			Py_XDECREF(values[j]);
			values[j] = value;
851
		}
852
		Py_XDECREF(value);
853 854
	}
}
855

856
void
857
PyFrame_FastToLocals(PyFrameObject *f)
858
{
859
	/* Merge fast locals into f->f_locals */
Guido van Rossum's avatar
Guido van Rossum committed
860 861 862
	PyObject *locals, *map;
	PyObject **fast;
	PyObject *error_type, *error_value, *error_traceback;
863
	PyCodeObject *co;
Martin v. Löwis's avatar
Martin v. Löwis committed
864
	Py_ssize_t j;
Jeremy Hylton's avatar
Jeremy Hylton committed
865
	int ncells, nfreevars;
866 867
	if (f == NULL)
		return;
868 869
	locals = f->f_locals;
	if (locals == NULL) {
Guido van Rossum's avatar
Guido van Rossum committed
870
		locals = f->f_locals = PyDict_New();
871
		if (locals == NULL) {
Guido van Rossum's avatar
Guido van Rossum committed
872
			PyErr_Clear(); /* Can't report it :-( */
873 874 875
			return;
		}
	}
876 877
	co = f->f_code;
	map = co->co_varnames;
878
	if (!PyTuple_Check(map))
879
		return;
Guido van Rossum's avatar
Guido van Rossum committed
880
	PyErr_Fetch(&error_type, &error_value, &error_traceback);
881
	fast = f->f_localsplus;
882
	j = PyTuple_GET_SIZE(map);
883 884 885
	if (j > co->co_nlocals)
		j = co->co_nlocals;
	if (co->co_nlocals)
Jeremy Hylton's avatar
Jeremy Hylton committed
886
		map_to_dict(map, j, locals, fast, 0);
887 888 889 890 891
	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);
Jeremy Hylton's avatar
Jeremy Hylton committed
892 893 894 895 896 897 898 899 900 901 902 903
		/* 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);
		}
904
	}
Guido van Rossum's avatar
Guido van Rossum committed
905
	PyErr_Restore(error_type, error_value, error_traceback);
906 907 908
}

void
909
PyFrame_LocalsToFast(PyFrameObject *f, int clear)
910
{
911
	/* Merge f->f_locals into fast locals */
Guido van Rossum's avatar
Guido van Rossum committed
912 913 914
	PyObject *locals, *map;
	PyObject **fast;
	PyObject *error_type, *error_value, *error_traceback;
915
	PyCodeObject *co;
Martin v. Löwis's avatar
Martin v. Löwis committed
916
	Py_ssize_t j;
917
	int ncells, nfreevars;
918 919 920
	if (f == NULL)
		return;
	locals = f->f_locals;
921 922
	co = f->f_code;
	map = co->co_varnames;
923
	if (locals == NULL)
924
		return;
925
	if (!PyTuple_Check(map))
926
		return;
Guido van Rossum's avatar
Guido van Rossum committed
927
	PyErr_Fetch(&error_type, &error_value, &error_traceback);
928
	fast = f->f_localsplus;
929
	j = PyTuple_GET_SIZE(map);
930 931 932 933 934 935 936 937 938
	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);
939 940 941 942 943 944
		/* 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);
		}
945
	}
Guido van Rossum's avatar
Guido van Rossum committed
946
	PyErr_Restore(error_type, error_value, error_traceback);
947
}
948 949

/* Clear out the free list */
950 951
int
PyFrame_ClearFreeList(void)
952
{
953 954
	int freelist_size = numfree;
	
955 956 957
	while (free_list != NULL) {
		PyFrameObject *f = free_list;
		free_list = free_list->f_back;
958
		PyObject_GC_Del(f);
959
		--numfree;
960
	}
961
	assert(numfree == 0);
962 963 964 965 966 967 968
	return freelist_size;
}

void
PyFrame_Fini(void)
{
	(void)PyFrame_ClearFreeList();
969 970
	Py_XDECREF(builtin_object);
	builtin_object = NULL;
971
}