blob: d3b59f1ea6c99cdb504e368aad724cce326cec23 [file] [log] [blame]
Guido van Rossum3f5da241990-12-20 15:06:42 +00001/* Frame object implementation */
2
Guido van Rossum18752471997-04-29 14:49:28 +00003#include "Python.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00004
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00005#include "code.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00006#include "frameobject.h"
7#include "opcode.h"
8#include "structmember.h"
9
Guido van Rossum18752471997-04-29 14:49:28 +000010#define OFF(x) offsetof(PyFrameObject, x)
Guido van Rossum3f5da241990-12-20 15:06:42 +000011
Guido van Rossum6f799372001-09-20 20:46:19 +000012static PyMemberDef frame_memberlist[] = {
Nick Coghlan1f7ce622012-01-13 21:43:40 +100013 {"f_back", T_OBJECT, OFF(f_back), READONLY},
14 {"f_code", T_OBJECT, OFF(f_code), READONLY},
15 {"f_builtins", T_OBJECT, OFF(f_builtins), READONLY},
16 {"f_globals", T_OBJECT, OFF(f_globals), READONLY},
17 {"f_lasti", T_INT, OFF(f_lasti), READONLY},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000018 {NULL} /* Sentinel */
Guido van Rossum3f5da241990-12-20 15:06:42 +000019};
20
Guido van Rossum18752471997-04-29 14:49:28 +000021static PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +000022frame_getlocals(PyFrameObject *f, void *closure)
Guido van Rossum3f5da241990-12-20 15:06:42 +000023{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000024 PyFrame_FastToLocals(f);
25 Py_INCREF(f->f_locals);
26 return f->f_locals;
Guido van Rossum3f5da241990-12-20 15:06:42 +000027}
28
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +000029int
30PyFrame_GetLineNumber(PyFrameObject *f)
31{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000032 if (f->f_trace)
33 return f->f_lineno;
34 else
35 return PyCode_Addr2Line(f->f_code, f->f_lasti);
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +000036}
37
Michael W. Hudsondd32a912002-08-15 14:59:02 +000038static PyObject *
39frame_getlineno(PyFrameObject *f, void *closure)
40{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000041 return PyLong_FromLong(PyFrame_GetLineNumber(f));
Michael W. Hudsondd32a912002-08-15 14:59:02 +000042}
43
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000044/* Setter for f_lineno - you can set f_lineno from within a trace function in
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000045 * order to jump to a given line of code, subject to some restrictions. Most
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000046 * lines are OK to jump to because they don't make any assumptions about the
47 * state of the stack (obvious because you could remove the line and the code
48 * would still work without any stack errors), but there are some constructs
49 * that limit jumping:
50 *
51 * o Lines with an 'except' statement on them can't be jumped to, because
52 * they expect an exception to be on the top of the stack.
53 * o Lines that live in a 'finally' block can't be jumped from or to, since
54 * the END_FINALLY expects to clean up the stack after the 'try' block.
55 * o 'try'/'for'/'while' blocks can't be jumped into because the blockstack
56 * needs to be set up before their code runs, and for 'for' loops the
57 * iterator needs to be on the stack.
58 */
59static int
60frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
61{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 int new_lineno = 0; /* The new value of f_lineno */
63 long l_new_lineno;
64 int overflow;
65 int new_lasti = 0; /* The new value of f_lasti */
66 int new_iblock = 0; /* The new value of f_iblock */
67 unsigned char *code = NULL; /* The bytecode for the frame... */
68 Py_ssize_t code_len = 0; /* ...and its length */
69 unsigned char *lnotab = NULL; /* Iterating over co_lnotab */
70 Py_ssize_t lnotab_len = 0; /* (ditto) */
71 int offset = 0; /* (ditto) */
72 int line = 0; /* (ditto) */
73 int addr = 0; /* (ditto) */
74 int min_addr = 0; /* Scanning the SETUPs and POPs */
75 int max_addr = 0; /* (ditto) */
76 int delta_iblock = 0; /* (ditto) */
77 int min_delta_iblock = 0; /* (ditto) */
78 int min_iblock = 0; /* (ditto) */
79 int f_lasti_setup_addr = 0; /* Policing no-jump-into-finally */
80 int new_lasti_setup_addr = 0; /* (ditto) */
81 int blockstack[CO_MAXBLOCKS]; /* Walking the 'finally' blocks */
82 int in_finally[CO_MAXBLOCKS]; /* (ditto) */
83 int blockstack_top = 0; /* (ditto) */
84 unsigned char setup_op = 0; /* (ditto) */
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000085
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086 /* f_lineno must be an integer. */
87 if (!PyLong_CheckExact(p_new_lineno)) {
88 PyErr_SetString(PyExc_ValueError,
89 "lineno must be an integer");
90 return -1;
91 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000092
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000093 /* You can only do this from within a trace function, not via
94 * _getframe or similar hackery. */
95 if (!f->f_trace)
96 {
97 PyErr_Format(PyExc_ValueError,
98 "f_lineno can only be set by a"
99 " line trace function");
100 return -1;
101 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000102
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000103 /* Fail if the line comes before the start of the code block. */
104 l_new_lineno = PyLong_AsLongAndOverflow(p_new_lineno, &overflow);
105 if (overflow
Martin v. Löwisd1a1d1e2007-12-04 22:10:37 +0000106#if SIZEOF_LONG > SIZEOF_INT
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000107 || l_new_lineno > INT_MAX
108 || l_new_lineno < INT_MIN
Martin v. Löwisd1a1d1e2007-12-04 22:10:37 +0000109#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 ) {
111 PyErr_SetString(PyExc_ValueError,
112 "lineno out of range");
113 return -1;
114 }
115 new_lineno = (int)l_new_lineno;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000116
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000117 if (new_lineno < f->f_code->co_firstlineno) {
118 PyErr_Format(PyExc_ValueError,
119 "line %d comes before the current code block",
120 new_lineno);
121 return -1;
122 }
123 else if (new_lineno == f->f_code->co_firstlineno) {
124 new_lasti = 0;
125 new_lineno = f->f_code->co_firstlineno;
126 }
127 else {
128 /* Find the bytecode offset for the start of the given
129 * line, or the first code-owning line after it. */
130 char *tmp;
131 PyBytes_AsStringAndSize(f->f_code->co_lnotab,
132 &tmp, &lnotab_len);
133 lnotab = (unsigned char *) tmp;
134 addr = 0;
135 line = f->f_code->co_firstlineno;
136 new_lasti = -1;
137 for (offset = 0; offset < lnotab_len; offset += 2) {
138 addr += lnotab[offset];
139 line += lnotab[offset+1];
140 if (line >= new_lineno) {
141 new_lasti = addr;
142 new_lineno = line;
143 break;
144 }
145 }
146 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000147
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000148 /* If we didn't reach the requested line, return an error. */
149 if (new_lasti == -1) {
150 PyErr_Format(PyExc_ValueError,
151 "line %d comes after the current code block",
152 new_lineno);
153 return -1;
154 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000155
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000156 /* We're now ready to look at the bytecode. */
157 PyBytes_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len);
Victor Stinner640c35c2013-06-04 23:14:37 +0200158 min_addr = Py_MIN(new_lasti, f->f_lasti);
159 max_addr = Py_MAX(new_lasti, f->f_lasti);
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000160
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000161 /* You can't jump onto a line with an 'except' statement on it -
162 * they expect to have an exception on the top of the stack, which
163 * won't be true if you jump to them. They always start with code
164 * that either pops the exception using POP_TOP (plain 'except:'
165 * lines do this) or duplicates the exception on the stack using
166 * DUP_TOP (if there's an exception type specified). See compile.c,
167 * 'com_try_except' for the full details. There aren't any other
168 * cases (AFAIK) where a line's code can start with DUP_TOP or
169 * POP_TOP, but if any ever appear, they'll be subject to the same
170 * restriction (but with a different error message). */
171 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) {
172 PyErr_SetString(PyExc_ValueError,
173 "can't jump to 'except' line as there's no exception");
174 return -1;
175 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000176
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000177 /* You can't jump into or out of a 'finally' block because the 'try'
178 * block leaves something on the stack for the END_FINALLY to clean
179 * up. So we walk the bytecode, maintaining a simulated blockstack.
180 * When we reach the old or new address and it's in a 'finally' block
181 * we note the address of the corresponding SETUP_FINALLY. The jump
182 * is only legal if neither address is in a 'finally' block or
183 * they're both in the same one. 'blockstack' is a stack of the
184 * bytecode addresses of the SETUP_X opcodes, and 'in_finally' tracks
185 * whether we're in a 'finally' block at each blockstack level. */
186 f_lasti_setup_addr = -1;
187 new_lasti_setup_addr = -1;
188 memset(blockstack, '\0', sizeof(blockstack));
189 memset(in_finally, '\0', sizeof(in_finally));
190 blockstack_top = 0;
191 for (addr = 0; addr < code_len; addr++) {
192 unsigned char op = code[addr];
193 switch (op) {
194 case SETUP_LOOP:
195 case SETUP_EXCEPT:
196 case SETUP_FINALLY:
Benjamin Petersone42fb302012-04-18 11:14:31 -0400197 case SETUP_WITH:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000198 blockstack[blockstack_top++] = addr;
199 in_finally[blockstack_top-1] = 0;
200 break;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000201
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000202 case POP_BLOCK:
203 assert(blockstack_top > 0);
204 setup_op = code[blockstack[blockstack_top-1]];
Benjamin Petersone42fb302012-04-18 11:14:31 -0400205 if (setup_op == SETUP_FINALLY || setup_op == SETUP_WITH) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000206 in_finally[blockstack_top-1] = 1;
207 }
208 else {
209 blockstack_top--;
210 }
211 break;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000212
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000213 case END_FINALLY:
214 /* Ignore END_FINALLYs for SETUP_EXCEPTs - they exist
215 * in the bytecode but don't correspond to an actual
216 * 'finally' block. (If blockstack_top is 0, we must
217 * be seeing such an END_FINALLY.) */
218 if (blockstack_top > 0) {
219 setup_op = code[blockstack[blockstack_top-1]];
Benjamin Petersone42fb302012-04-18 11:14:31 -0400220 if (setup_op == SETUP_FINALLY || setup_op == SETUP_WITH) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 blockstack_top--;
222 }
223 }
224 break;
225 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000226
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000227 /* For the addresses we're interested in, see whether they're
228 * within a 'finally' block and if so, remember the address
229 * of the SETUP_FINALLY. */
230 if (addr == new_lasti || addr == f->f_lasti) {
231 int i = 0;
232 int setup_addr = -1;
233 for (i = blockstack_top-1; i >= 0; i--) {
234 if (in_finally[i]) {
235 setup_addr = blockstack[i];
236 break;
237 }
238 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000239
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000240 if (setup_addr != -1) {
241 if (addr == new_lasti) {
242 new_lasti_setup_addr = setup_addr;
243 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000244
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000245 if (addr == f->f_lasti) {
246 f_lasti_setup_addr = setup_addr;
247 }
248 }
249 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000250
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000251 if (op >= HAVE_ARGUMENT) {
252 addr += 2;
253 }
254 }
Neal Norwitzee65e222002-12-19 18:16:57 +0000255
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000256 /* Verify that the blockstack tracking code didn't get lost. */
257 assert(blockstack_top == 0);
258
259 /* After all that, are we jumping into / out of a 'finally' block? */
260 if (new_lasti_setup_addr != f_lasti_setup_addr) {
261 PyErr_SetString(PyExc_ValueError,
262 "can't jump into or out of a 'finally' block");
263 return -1;
264 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000265
266
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000267 /* Police block-jumping (you can't jump into the middle of a block)
268 * and ensure that the blockstack finishes up in a sensible state (by
269 * popping any blocks we're jumping out of). We look at all the
270 * blockstack operations between the current position and the new
271 * one, and keep track of how many blocks we drop out of on the way.
272 * By also keeping track of the lowest blockstack position we see, we
273 * can tell whether the jump goes into any blocks without coming out
274 * again - in that case we raise an exception below. */
275 delta_iblock = 0;
276 for (addr = min_addr; addr < max_addr; addr++) {
277 unsigned char op = code[addr];
278 switch (op) {
279 case SETUP_LOOP:
280 case SETUP_EXCEPT:
281 case SETUP_FINALLY:
Benjamin Petersone42fb302012-04-18 11:14:31 -0400282 case SETUP_WITH:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000283 delta_iblock++;
284 break;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000285
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000286 case POP_BLOCK:
287 delta_iblock--;
288 break;
289 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000290
Victor Stinner640c35c2013-06-04 23:14:37 +0200291 min_delta_iblock = Py_MIN(min_delta_iblock, delta_iblock);
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000292
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000293 if (op >= HAVE_ARGUMENT) {
294 addr += 2;
295 }
296 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000297
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000298 /* Derive the absolute iblock values from the deltas. */
299 min_iblock = f->f_iblock + min_delta_iblock;
300 if (new_lasti > f->f_lasti) {
301 /* Forwards jump. */
302 new_iblock = f->f_iblock + delta_iblock;
303 }
304 else {
305 /* Backwards jump. */
306 new_iblock = f->f_iblock - delta_iblock;
307 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000308
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000309 /* Are we jumping into a block? */
310 if (new_iblock > min_iblock) {
311 PyErr_SetString(PyExc_ValueError,
312 "can't jump into the middle of a block");
313 return -1;
314 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000315
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000316 /* Pop any blocks that we're jumping out of. */
317 while (f->f_iblock > new_iblock) {
318 PyTryBlock *b = &f->f_blockstack[--f->f_iblock];
319 while ((f->f_stacktop - f->f_valuestack) > b->b_level) {
320 PyObject *v = (*--f->f_stacktop);
321 Py_DECREF(v);
322 }
323 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000324
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000325 /* Finally set the new f_lineno and f_lasti and return OK. */
326 f->f_lineno = new_lineno;
327 f->f_lasti = new_lasti;
328 return 0;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000329}
330
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000331static PyObject *
332frame_gettrace(PyFrameObject *f, void *closure)
333{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000334 PyObject* trace = f->f_trace;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000335
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 if (trace == NULL)
337 trace = Py_None;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000338
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000339 Py_INCREF(trace);
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000340
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000341 return trace;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000342}
343
344static int
345frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
346{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000347 PyObject* old_value;
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000348
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 /* We rely on f_lineno being accurate when f_trace is set. */
350 f->f_lineno = PyFrame_GetLineNumber(f);
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 old_value = f->f_trace;
353 Py_XINCREF(v);
354 f->f_trace = v;
355 Py_XDECREF(old_value);
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000356
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 return 0;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000358}
359
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000360
Guido van Rossum32d34c82001-09-20 21:45:26 +0000361static PyGetSetDef frame_getsetlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 {"f_locals", (getter)frame_getlocals, NULL, NULL},
363 {"f_lineno", (getter)frame_getlineno,
364 (setter)frame_setlineno, NULL},
365 {"f_trace", (getter)frame_gettrace, (setter)frame_settrace, NULL},
366 {0}
Tim Peters6d6c1a32001-08-02 04:15:00 +0000367};
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000368
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000369/* Stack frames are allocated and deallocated at a considerable rate.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000370 In an attempt to improve the speed of function calls, we:
371
372 1. Hold a single "zombie" frame on each code object. This retains
373 the allocated and initialised frame object from an invocation of
374 the code object. The zombie is reanimated the next time we need a
375 frame object for that code object. Doing this saves the malloc/
376 realloc required when using a free_list frame that isn't the
377 correct size. It also saves some field initialisation.
378
379 In zombie mode, no field of PyFrameObject holds a reference, but
380 the following fields are still valid:
381
382 * ob_type, ob_size, f_code, f_valuestack;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383
Thomas Wouters477c8d52006-05-27 19:21:47 +0000384 * f_locals, f_trace,
385 f_exc_type, f_exc_value, f_exc_traceback are NULL;
386
387 * f_localsplus does not require re-allocation and
388 the local variables in f_localsplus are NULL.
389
390 2. We also maintain a separate free list of stack frames (just like
Mark Dickinsond19052c2010-06-27 18:19:09 +0000391 floats are allocated in a special way -- see floatobject.c). When
Thomas Wouters477c8d52006-05-27 19:21:47 +0000392 a stack frame is on the free list, only the following members have
393 a meaning:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000394 ob_type == &Frametype
395 f_back next item on free list, or NULL
396 f_stacksize size of value stack
397 ob_size size of localsplus
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000398 Note that the value and block stacks are preserved -- this can save
399 another malloc() call or two (and two free() calls as well!).
400 Also note that, unlike for integers, each frame object is a
401 malloc'ed object in its own right -- it is only the actual calls to
402 malloc() that we are trying to save here, not the administration.
403 After all, while a typical program may make millions of calls, a
404 call depth of more than 20 or 30 is probably already exceptional
405 unless the program contains run-away recursion. I hope.
Tim Petersb7ba7432002-04-13 05:21:47 +0000406
Christian Heimes2202f872008-02-06 14:31:34 +0000407 Later, PyFrame_MAXFREELIST was added to bound the # of frames saved on
Tim Petersb7ba7432002-04-13 05:21:47 +0000408 free_list. Else programs creating lots of cyclic trash involving
409 frames could provoke free_list into growing without bound.
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000410*/
411
Guido van Rossum18752471997-04-29 14:49:28 +0000412static PyFrameObject *free_list = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000413static int numfree = 0; /* number of frames currently in free_list */
Christian Heimes2202f872008-02-06 14:31:34 +0000414/* max value for numfree */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000415#define PyFrame_MAXFREELIST 200
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000416
Guido van Rossum3f5da241990-12-20 15:06:42 +0000417static void
Fred Drake1b190b42000-07-09 05:40:56 +0000418frame_dealloc(PyFrameObject *f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000419{
Antoine Pitrou93963562013-05-14 20:37:52 +0200420 PyObject **p, **valuestack;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 PyCodeObject *co;
Guido van Rossum7582bfb1997-02-14 16:27:29 +0000422
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000423 PyObject_GC_UnTrack(f);
424 Py_TRASHCAN_SAFE_BEGIN(f)
Antoine Pitrou93963562013-05-14 20:37:52 +0200425 /* Kill all local variables */
426 valuestack = f->f_valuestack;
427 for (p = f->f_localsplus; p < valuestack; p++)
428 Py_CLEAR(*p);
429
430 /* Free stack */
431 if (f->f_stacktop != NULL) {
432 for (p = valuestack; p < f->f_stacktop; p++)
433 Py_XDECREF(*p);
434 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000436 Py_XDECREF(f->f_back);
437 Py_DECREF(f->f_builtins);
438 Py_DECREF(f->f_globals);
439 Py_CLEAR(f->f_locals);
Antoine Pitrou93963562013-05-14 20:37:52 +0200440 Py_CLEAR(f->f_trace);
441 Py_CLEAR(f->f_exc_type);
442 Py_CLEAR(f->f_exc_value);
443 Py_CLEAR(f->f_exc_traceback);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000444
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000445 co = f->f_code;
446 if (co->co_zombieframe == NULL)
447 co->co_zombieframe = f;
448 else if (numfree < PyFrame_MAXFREELIST) {
449 ++numfree;
450 f->f_back = free_list;
451 free_list = f;
452 }
453 else
454 PyObject_GC_Del(f);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000455
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000456 Py_DECREF(co);
457 Py_TRASHCAN_SAFE_END(f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000458}
459
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000460static int
461frame_traverse(PyFrameObject *f, visitproc visit, void *arg)
462{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000463 PyObject **fastlocals, **p;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100464 Py_ssize_t i, slots;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000465
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000466 Py_VISIT(f->f_back);
467 Py_VISIT(f->f_code);
468 Py_VISIT(f->f_builtins);
469 Py_VISIT(f->f_globals);
470 Py_VISIT(f->f_locals);
471 Py_VISIT(f->f_trace);
472 Py_VISIT(f->f_exc_type);
473 Py_VISIT(f->f_exc_value);
474 Py_VISIT(f->f_exc_traceback);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000475
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 /* locals */
477 slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars);
478 fastlocals = f->f_localsplus;
479 for (i = slots; --i >= 0; ++fastlocals)
480 Py_VISIT(*fastlocals);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000481
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000482 /* stack */
483 if (f->f_stacktop != NULL) {
484 for (p = f->f_valuestack; p < f->f_stacktop; p++)
485 Py_VISIT(*p);
486 }
487 return 0;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000488}
489
490static void
491frame_clear(PyFrameObject *f)
492{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000493 PyObject **fastlocals, **p, **oldtop;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100494 Py_ssize_t i, slots;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000495
Antoine Pitrou93963562013-05-14 20:37:52 +0200496 /* Before anything else, make sure that this frame is clearly marked
497 * as being defunct! Else, e.g., a generator reachable from this
498 * frame may also point to this frame, believe itself to still be
499 * active, and try cleaning up this frame again.
500 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000501 oldtop = f->f_stacktop;
502 f->f_stacktop = NULL;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000503
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000504 Py_CLEAR(f->f_exc_type);
505 Py_CLEAR(f->f_exc_value);
506 Py_CLEAR(f->f_exc_traceback);
507 Py_CLEAR(f->f_trace);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000509 /* locals */
510 slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars);
511 fastlocals = f->f_localsplus;
512 for (i = slots; --i >= 0; ++fastlocals)
513 Py_CLEAR(*fastlocals);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000514
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000515 /* stack */
516 if (oldtop != NULL) {
517 for (p = f->f_valuestack; p < oldtop; p++)
518 Py_CLEAR(*p);
519 }
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000520}
521
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000522static PyObject *
523frame_sizeof(PyFrameObject *f)
524{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000525 Py_ssize_t res, extras, ncells, nfrees;
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000526
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000527 ncells = PyTuple_GET_SIZE(f->f_code->co_cellvars);
528 nfrees = PyTuple_GET_SIZE(f->f_code->co_freevars);
529 extras = f->f_code->co_stacksize + f->f_code->co_nlocals +
530 ncells + nfrees;
531 /* subtract one as it is already included in PyFrameObject */
532 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *);
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000533
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 return PyLong_FromSsize_t(res);
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000535}
536
537PyDoc_STRVAR(sizeof__doc__,
538"F.__sizeof__() -> size of F in memory, in bytes");
539
540static PyMethodDef frame_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000541 {"__sizeof__", (PyCFunction)frame_sizeof, METH_NOARGS,
542 sizeof__doc__},
543 {NULL, NULL} /* sentinel */
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000544};
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000545
Guido van Rossum18752471997-04-29 14:49:28 +0000546PyTypeObject PyFrame_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000547 PyVarObject_HEAD_INIT(&PyType_Type, 0)
548 "frame",
549 sizeof(PyFrameObject),
550 sizeof(PyObject *),
551 (destructor)frame_dealloc, /* tp_dealloc */
552 0, /* tp_print */
553 0, /* tp_getattr */
554 0, /* tp_setattr */
555 0, /* tp_reserved */
556 0, /* tp_repr */
557 0, /* tp_as_number */
558 0, /* tp_as_sequence */
559 0, /* tp_as_mapping */
560 0, /* tp_hash */
561 0, /* tp_call */
562 0, /* tp_str */
563 PyObject_GenericGetAttr, /* tp_getattro */
564 PyObject_GenericSetAttr, /* tp_setattro */
565 0, /* tp_as_buffer */
566 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
567 0, /* tp_doc */
568 (traverseproc)frame_traverse, /* tp_traverse */
569 (inquiry)frame_clear, /* tp_clear */
570 0, /* tp_richcompare */
571 0, /* tp_weaklistoffset */
572 0, /* tp_iter */
573 0, /* tp_iternext */
574 frame_methods, /* tp_methods */
575 frame_memberlist, /* tp_members */
576 frame_getsetlist, /* tp_getset */
577 0, /* tp_base */
578 0, /* tp_dict */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000579};
580
Neal Norwitzc91ed402002-12-30 22:29:22 +0000581static PyObject *builtin_object;
582
Neal Norwitzb2501f42002-12-31 03:42:13 +0000583int _PyFrame_Init()
Neal Norwitzc91ed402002-12-30 22:29:22 +0000584{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000585 builtin_object = PyUnicode_InternFromString("__builtins__");
586 if (builtin_object == NULL)
587 return 0;
588 return 1;
Neal Norwitzc91ed402002-12-30 22:29:22 +0000589}
590
Guido van Rossum18752471997-04-29 14:49:28 +0000591PyFrameObject *
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000592PyFrame_New(PyThreadState *tstate, PyCodeObject *code, PyObject *globals,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000593 PyObject *locals)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000594{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000595 PyFrameObject *back = tstate->frame;
596 PyFrameObject *f;
597 PyObject *builtins;
598 Py_ssize_t i;
Guido van Rossumf3e85a01997-01-20 04:20:52 +0000599
Michael W. Hudson69734a52002-08-19 16:54:08 +0000600#ifdef Py_DEBUG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000601 if (code == NULL || globals == NULL || !PyDict_Check(globals) ||
602 (locals != NULL && !PyMapping_Check(locals))) {
603 PyErr_BadInternalCall();
604 return NULL;
605 }
Michael W. Hudson69734a52002-08-19 16:54:08 +0000606#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000607 if (back == NULL || back->f_globals != globals) {
608 builtins = PyDict_GetItem(globals, builtin_object);
609 if (builtins) {
610 if (PyModule_Check(builtins)) {
611 builtins = PyModule_GetDict(builtins);
Victor Stinnerb0b22422012-04-19 00:57:45 +0200612 assert(builtins != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000613 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000614 }
615 if (builtins == NULL) {
616 /* No builtins! Make up a minimal one
617 Give them 'None', at least. */
618 builtins = PyDict_New();
619 if (builtins == NULL ||
620 PyDict_SetItemString(
621 builtins, "None", Py_None) < 0)
622 return NULL;
623 }
624 else
625 Py_INCREF(builtins);
Jeremy Hyltonbd5cbf82003-02-05 22:39:29 +0000626
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000627 }
628 else {
629 /* If we share the globals, we share the builtins.
630 Save a lookup and a call. */
631 builtins = back->f_builtins;
Victor Stinnerb0b22422012-04-19 00:57:45 +0200632 assert(builtins != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000633 Py_INCREF(builtins);
634 }
635 if (code->co_zombieframe != NULL) {
636 f = code->co_zombieframe;
637 code->co_zombieframe = NULL;
638 _Py_NewReference((PyObject *)f);
639 assert(f->f_code == code);
640 }
641 else {
642 Py_ssize_t extras, ncells, nfrees;
643 ncells = PyTuple_GET_SIZE(code->co_cellvars);
644 nfrees = PyTuple_GET_SIZE(code->co_freevars);
645 extras = code->co_stacksize + code->co_nlocals + ncells +
646 nfrees;
647 if (free_list == NULL) {
648 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type,
649 extras);
650 if (f == NULL) {
651 Py_DECREF(builtins);
652 return NULL;
653 }
654 }
655 else {
656 assert(numfree > 0);
657 --numfree;
658 f = free_list;
659 free_list = free_list->f_back;
660 if (Py_SIZE(f) < extras) {
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +0000661 PyFrameObject *new_f = PyObject_GC_Resize(PyFrameObject, f, extras);
662 if (new_f == NULL) {
663 PyObject_GC_Del(f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000664 Py_DECREF(builtins);
665 return NULL;
666 }
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +0000667 f = new_f;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000668 }
669 _Py_NewReference((PyObject *)f);
670 }
Thomas Wouters477c8d52006-05-27 19:21:47 +0000671
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000672 f->f_code = code;
673 extras = code->co_nlocals + ncells + nfrees;
674 f->f_valuestack = f->f_localsplus + extras;
675 for (i=0; i<extras; i++)
676 f->f_localsplus[i] = NULL;
677 f->f_locals = NULL;
678 f->f_trace = NULL;
679 f->f_exc_type = f->f_exc_value = f->f_exc_traceback = NULL;
680 }
681 f->f_stacktop = f->f_valuestack;
682 f->f_builtins = builtins;
683 Py_XINCREF(back);
684 f->f_back = back;
685 Py_INCREF(code);
686 Py_INCREF(globals);
687 f->f_globals = globals;
688 /* Most functions have CO_NEWLOCALS and CO_OPTIMIZED set. */
689 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) ==
690 (CO_NEWLOCALS | CO_OPTIMIZED))
691 ; /* f_locals = NULL; will be set by PyFrame_FastToLocals() */
692 else if (code->co_flags & CO_NEWLOCALS) {
693 locals = PyDict_New();
694 if (locals == NULL) {
695 Py_DECREF(f);
696 return NULL;
697 }
698 f->f_locals = locals;
699 }
700 else {
701 if (locals == NULL)
702 locals = globals;
703 Py_INCREF(locals);
704 f->f_locals = locals;
705 }
706 f->f_tstate = tstate;
Guido van Rossumf3e85a01997-01-20 04:20:52 +0000707
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000708 f->f_lasti = -1;
709 f->f_lineno = code->co_firstlineno;
710 f->f_iblock = 0;
Guido van Rossumf3e85a01997-01-20 04:20:52 +0000711
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000712 _PyObject_GC_TRACK(f);
713 return f;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000714}
715
Guido van Rossum3f5da241990-12-20 15:06:42 +0000716/* Block management */
717
718void
Fred Drake1b190b42000-07-09 05:40:56 +0000719PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000720{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000721 PyTryBlock *b;
722 if (f->f_iblock >= CO_MAXBLOCKS)
723 Py_FatalError("XXX block stack overflow");
724 b = &f->f_blockstack[f->f_iblock++];
725 b->b_type = type;
726 b->b_level = level;
727 b->b_handler = handler;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000728}
729
Guido van Rossum18752471997-04-29 14:49:28 +0000730PyTryBlock *
Fred Drake1b190b42000-07-09 05:40:56 +0000731PyFrame_BlockPop(PyFrameObject *f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000732{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000733 PyTryBlock *b;
734 if (f->f_iblock <= 0)
735 Py_FatalError("XXX block stack underflow");
736 b = &f->f_blockstack[--f->f_iblock];
737 return b;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000738}
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000739
Guido van Rossumd8faa362007-04-27 19:54:29 +0000740/* Convert between "fast" version of locals and dictionary version.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000741
742 map and values are input arguments. map is a tuple of strings.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000743 values is an array of PyObject*. At index i, map[i] is the name of
744 the variable with value values[i]. The function copies the first
745 nmap variable from map/values into dict. If values[i] is NULL,
746 the variable is deleted from dict.
747
748 If deref is true, then the values being copied are cell variables
749 and the value is extracted from the cell variable before being put
750 in dict.
751
752 Exceptions raised while modifying the dict are silently ignored,
753 because there is no good way to report them.
754 */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000755
Guido van Rossumf68d8e52001-04-14 17:55:09 +0000756static void
Martin v. Löwis18e16552006-02-15 17:27:45 +0000757map_to_dict(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000758 int deref)
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000759{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000760 Py_ssize_t j;
761 assert(PyTuple_Check(map));
762 assert(PyDict_Check(dict));
763 assert(PyTuple_Size(map) >= nmap);
764 for (j = nmap; --j >= 0; ) {
765 PyObject *key = PyTuple_GET_ITEM(map, j);
766 PyObject *value = values[j];
767 assert(PyUnicode_Check(key));
768 if (deref) {
769 assert(PyCell_Check(value));
770 value = PyCell_GET(value);
771 }
772 if (value == NULL) {
773 if (PyObject_DelItem(dict, key) != 0)
774 PyErr_Clear();
775 }
776 else {
777 if (PyObject_SetItem(dict, key, value) != 0)
778 PyErr_Clear();
779 }
780 }
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000781}
782
Guido van Rossumd8faa362007-04-27 19:54:29 +0000783/* Copy values from the "locals" dict into the fast locals.
784
785 dict is an input argument containing string keys representing
786 variables names and arbitrary PyObject* as values.
787
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000788 map and values are input arguments. map is a tuple of strings.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000789 values is an array of PyObject*. At index i, map[i] is the name of
790 the variable with value values[i]. The function copies the first
791 nmap variable from map/values into dict. If values[i] is NULL,
792 the variable is deleted from dict.
793
794 If deref is true, then the values being copied are cell variables
795 and the value is extracted from the cell variable before being put
796 in dict. If clear is true, then variables in map but not in dict
797 are set to NULL in map; if clear is false, variables missing in
798 dict are ignored.
799
800 Exceptions raised while modifying the dict are silently ignored,
801 because there is no good way to report them.
802*/
803
Guido van Rossum6b356e72001-04-14 17:55:41 +0000804static void
Martin v. Löwis18e16552006-02-15 17:27:45 +0000805dict_to_map(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 int deref, int clear)
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000807{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000808 Py_ssize_t j;
809 assert(PyTuple_Check(map));
810 assert(PyDict_Check(dict));
811 assert(PyTuple_Size(map) >= nmap);
812 for (j = nmap; --j >= 0; ) {
813 PyObject *key = PyTuple_GET_ITEM(map, j);
814 PyObject *value = PyObject_GetItem(dict, key);
815 assert(PyUnicode_Check(key));
816 /* We only care about NULLs if clear is true. */
817 if (value == NULL) {
818 PyErr_Clear();
819 if (!clear)
820 continue;
821 }
822 if (deref) {
823 assert(PyCell_Check(values[j]));
824 if (PyCell_GET(values[j]) != value) {
825 if (PyCell_Set(values[j], value) < 0)
826 PyErr_Clear();
827 }
828 } else if (values[j] != value) {
829 Py_XINCREF(value);
830 Py_XDECREF(values[j]);
831 values[j] = value;
832 }
833 Py_XDECREF(value);
834 }
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000835}
Jeremy Hylton2b724da2001-01-29 22:51:52 +0000836
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000837void
Fred Drake1b190b42000-07-09 05:40:56 +0000838PyFrame_FastToLocals(PyFrameObject *f)
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000839{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000840 /* Merge fast locals into f->f_locals */
841 PyObject *locals, *map;
842 PyObject **fast;
843 PyObject *error_type, *error_value, *error_traceback;
844 PyCodeObject *co;
845 Py_ssize_t j;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100846 Py_ssize_t ncells, nfreevars;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000847 if (f == NULL)
848 return;
849 locals = f->f_locals;
850 if (locals == NULL) {
851 locals = f->f_locals = PyDict_New();
852 if (locals == NULL) {
853 PyErr_Clear(); /* Can't report it :-( */
854 return;
855 }
856 }
857 co = f->f_code;
858 map = co->co_varnames;
859 if (!PyTuple_Check(map))
860 return;
861 PyErr_Fetch(&error_type, &error_value, &error_traceback);
862 fast = f->f_localsplus;
863 j = PyTuple_GET_SIZE(map);
864 if (j > co->co_nlocals)
865 j = co->co_nlocals;
866 if (co->co_nlocals)
867 map_to_dict(map, j, locals, fast, 0);
868 ncells = PyTuple_GET_SIZE(co->co_cellvars);
869 nfreevars = PyTuple_GET_SIZE(co->co_freevars);
870 if (ncells || nfreevars) {
871 map_to_dict(co->co_cellvars, ncells,
872 locals, fast + co->co_nlocals, 1);
873 /* If the namespace is unoptimized, then one of the
874 following cases applies:
875 1. It does not contain free variables, because it
876 uses import * or is a top-level namespace.
877 2. It is a class namespace.
878 We don't want to accidentally copy free variables
879 into the locals dict used by the class.
880 */
881 if (co->co_flags & CO_OPTIMIZED) {
882 map_to_dict(co->co_freevars, nfreevars,
883 locals, fast + co->co_nlocals + ncells, 1);
884 }
885 }
886 PyErr_Restore(error_type, error_value, error_traceback);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000887}
888
889void
Fred Drake1b190b42000-07-09 05:40:56 +0000890PyFrame_LocalsToFast(PyFrameObject *f, int clear)
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000891{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000892 /* Merge f->f_locals into fast locals */
893 PyObject *locals, *map;
894 PyObject **fast;
895 PyObject *error_type, *error_value, *error_traceback;
896 PyCodeObject *co;
897 Py_ssize_t j;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100898 Py_ssize_t ncells, nfreevars;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000899 if (f == NULL)
900 return;
901 locals = f->f_locals;
902 co = f->f_code;
903 map = co->co_varnames;
904 if (locals == NULL)
905 return;
906 if (!PyTuple_Check(map))
907 return;
908 PyErr_Fetch(&error_type, &error_value, &error_traceback);
909 fast = f->f_localsplus;
910 j = PyTuple_GET_SIZE(map);
911 if (j > co->co_nlocals)
912 j = co->co_nlocals;
913 if (co->co_nlocals)
914 dict_to_map(co->co_varnames, j, locals, fast, 0, clear);
915 ncells = PyTuple_GET_SIZE(co->co_cellvars);
916 nfreevars = PyTuple_GET_SIZE(co->co_freevars);
917 if (ncells || nfreevars) {
918 dict_to_map(co->co_cellvars, ncells,
919 locals, fast + co->co_nlocals, 1, clear);
920 /* Same test as in PyFrame_FastToLocals() above. */
921 if (co->co_flags & CO_OPTIMIZED) {
922 dict_to_map(co->co_freevars, nfreevars,
923 locals, fast + co->co_nlocals + ncells, 1,
924 clear);
925 }
926 }
927 PyErr_Restore(error_type, error_value, error_traceback);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000928}
Guido van Rossum404b95d1997-08-05 02:09:46 +0000929
930/* Clear out the free list */
Christian Heimesa156e092008-02-16 07:38:31 +0000931int
932PyFrame_ClearFreeList(void)
Guido van Rossum404b95d1997-08-05 02:09:46 +0000933{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000934 int freelist_size = numfree;
935
936 while (free_list != NULL) {
937 PyFrameObject *f = free_list;
938 free_list = free_list->f_back;
939 PyObject_GC_Del(f);
940 --numfree;
941 }
942 assert(numfree == 0);
943 return freelist_size;
Christian Heimesa156e092008-02-16 07:38:31 +0000944}
945
946void
947PyFrame_Fini(void)
948{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000949 (void)PyFrame_ClearFreeList();
950 Py_XDECREF(builtin_object);
951 builtin_object = NULL;
Guido van Rossum404b95d1997-08-05 02:09:46 +0000952}
David Malcolm49526f42012-06-22 14:55:41 -0400953
954/* Print summary info about the state of the optimized allocator */
955void
956_PyFrame_DebugMallocStats(FILE *out)
957{
958 _PyDebugAllocatorStats(out,
959 "free PyFrameObject",
960 numfree, sizeof(PyFrameObject));
961}
962