blob: 84483195ab2ad48970ab9802b5581ef56fdb3abd [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{
Victor Stinner41bb43a2013-10-29 01:19:37 +010024 if (PyFrame_FastToLocalsWithError(f) < 0)
25 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000026 Py_INCREF(f->f_locals);
27 return f->f_locals;
Guido van Rossum3f5da241990-12-20 15:06:42 +000028}
29
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +000030int
31PyFrame_GetLineNumber(PyFrameObject *f)
32{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000033 if (f->f_trace)
34 return f->f_lineno;
35 else
36 return PyCode_Addr2Line(f->f_code, f->f_lasti);
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +000037}
38
Michael W. Hudsondd32a912002-08-15 14:59:02 +000039static PyObject *
40frame_getlineno(PyFrameObject *f, void *closure)
41{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000042 return PyLong_FromLong(PyFrame_GetLineNumber(f));
Michael W. Hudsondd32a912002-08-15 14:59:02 +000043}
44
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000045/* Setter for f_lineno - you can set f_lineno from within a trace function in
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000046 * order to jump to a given line of code, subject to some restrictions. Most
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000047 * lines are OK to jump to because they don't make any assumptions about the
48 * state of the stack (obvious because you could remove the line and the code
49 * would still work without any stack errors), but there are some constructs
50 * that limit jumping:
51 *
52 * o Lines with an 'except' statement on them can't be jumped to, because
53 * they expect an exception to be on the top of the stack.
54 * o Lines that live in a 'finally' block can't be jumped from or to, since
55 * the END_FINALLY expects to clean up the stack after the 'try' block.
56 * o 'try'/'for'/'while' blocks can't be jumped into because the blockstack
57 * needs to be set up before their code runs, and for 'for' loops the
58 * iterator needs to be on the stack.
59 */
60static int
61frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
62{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000063 int new_lineno = 0; /* The new value of f_lineno */
64 long l_new_lineno;
65 int overflow;
66 int new_lasti = 0; /* The new value of f_lasti */
67 int new_iblock = 0; /* The new value of f_iblock */
68 unsigned char *code = NULL; /* The bytecode for the frame... */
69 Py_ssize_t code_len = 0; /* ...and its length */
70 unsigned char *lnotab = NULL; /* Iterating over co_lnotab */
71 Py_ssize_t lnotab_len = 0; /* (ditto) */
72 int offset = 0; /* (ditto) */
73 int line = 0; /* (ditto) */
74 int addr = 0; /* (ditto) */
75 int min_addr = 0; /* Scanning the SETUPs and POPs */
76 int max_addr = 0; /* (ditto) */
77 int delta_iblock = 0; /* (ditto) */
78 int min_delta_iblock = 0; /* (ditto) */
79 int min_iblock = 0; /* (ditto) */
80 int f_lasti_setup_addr = 0; /* Policing no-jump-into-finally */
81 int new_lasti_setup_addr = 0; /* (ditto) */
82 int blockstack[CO_MAXBLOCKS]; /* Walking the 'finally' blocks */
83 int in_finally[CO_MAXBLOCKS]; /* (ditto) */
84 int blockstack_top = 0; /* (ditto) */
85 unsigned char setup_op = 0; /* (ditto) */
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000086
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000087 /* f_lineno must be an integer. */
88 if (!PyLong_CheckExact(p_new_lineno)) {
89 PyErr_SetString(PyExc_ValueError,
90 "lineno must be an integer");
91 return -1;
92 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +000093
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000094 /* You can only do this from within a trace function, not via
95 * _getframe or similar hackery. */
96 if (!f->f_trace)
97 {
98 PyErr_Format(PyExc_ValueError,
99 "f_lineno can only be set by a"
100 " line trace function");
101 return -1;
102 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000103
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000104 /* Fail if the line comes before the start of the code block. */
105 l_new_lineno = PyLong_AsLongAndOverflow(p_new_lineno, &overflow);
106 if (overflow
Martin v. Löwisd1a1d1e2007-12-04 22:10:37 +0000107#if SIZEOF_LONG > SIZEOF_INT
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000108 || l_new_lineno > INT_MAX
109 || l_new_lineno < INT_MIN
Martin v. Löwisd1a1d1e2007-12-04 22:10:37 +0000110#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000111 ) {
112 PyErr_SetString(PyExc_ValueError,
113 "lineno out of range");
114 return -1;
115 }
116 new_lineno = (int)l_new_lineno;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000117
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000118 if (new_lineno < f->f_code->co_firstlineno) {
119 PyErr_Format(PyExc_ValueError,
120 "line %d comes before the current code block",
121 new_lineno);
122 return -1;
123 }
124 else if (new_lineno == f->f_code->co_firstlineno) {
125 new_lasti = 0;
126 new_lineno = f->f_code->co_firstlineno;
127 }
128 else {
129 /* Find the bytecode offset for the start of the given
130 * line, or the first code-owning line after it. */
131 char *tmp;
132 PyBytes_AsStringAndSize(f->f_code->co_lnotab,
133 &tmp, &lnotab_len);
134 lnotab = (unsigned char *) tmp;
135 addr = 0;
136 line = f->f_code->co_firstlineno;
137 new_lasti = -1;
138 for (offset = 0; offset < lnotab_len; offset += 2) {
139 addr += lnotab[offset];
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100140 line += (signed char)lnotab[offset+1];
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000141 if (line >= new_lineno) {
142 new_lasti = addr;
143 new_lineno = line;
144 break;
145 }
146 }
147 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000148
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000149 /* If we didn't reach the requested line, return an error. */
150 if (new_lasti == -1) {
151 PyErr_Format(PyExc_ValueError,
152 "line %d comes after the current code block",
153 new_lineno);
154 return -1;
155 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000156
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000157 /* We're now ready to look at the bytecode. */
158 PyBytes_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len);
Victor Stinner640c35c2013-06-04 23:14:37 +0200159 min_addr = Py_MIN(new_lasti, f->f_lasti);
160 max_addr = Py_MAX(new_lasti, f->f_lasti);
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000161
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 /* You can't jump onto a line with an 'except' statement on it -
163 * they expect to have an exception on the top of the stack, which
164 * won't be true if you jump to them. They always start with code
165 * that either pops the exception using POP_TOP (plain 'except:'
166 * lines do this) or duplicates the exception on the stack using
167 * DUP_TOP (if there's an exception type specified). See compile.c,
168 * 'com_try_except' for the full details. There aren't any other
169 * cases (AFAIK) where a line's code can start with DUP_TOP or
170 * POP_TOP, but if any ever appear, they'll be subject to the same
171 * restriction (but with a different error message). */
172 if (code[new_lasti] == DUP_TOP || code[new_lasti] == POP_TOP) {
173 PyErr_SetString(PyExc_ValueError,
174 "can't jump to 'except' line as there's no exception");
175 return -1;
176 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000177
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000178 /* You can't jump into or out of a 'finally' block because the 'try'
179 * block leaves something on the stack for the END_FINALLY to clean
180 * up. So we walk the bytecode, maintaining a simulated blockstack.
181 * When we reach the old or new address and it's in a 'finally' block
182 * we note the address of the corresponding SETUP_FINALLY. The jump
183 * is only legal if neither address is in a 'finally' block or
184 * they're both in the same one. 'blockstack' is a stack of the
185 * bytecode addresses of the SETUP_X opcodes, and 'in_finally' tracks
186 * whether we're in a 'finally' block at each blockstack level. */
187 f_lasti_setup_addr = -1;
188 new_lasti_setup_addr = -1;
189 memset(blockstack, '\0', sizeof(blockstack));
190 memset(in_finally, '\0', sizeof(in_finally));
191 blockstack_top = 0;
Serhiy Storchakaab874002016-09-11 13:48:15 +0300192 for (addr = 0; addr < code_len; addr += sizeof(_Py_CODEUNIT)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000193 unsigned char op = code[addr];
194 switch (op) {
195 case SETUP_LOOP:
196 case SETUP_EXCEPT:
197 case SETUP_FINALLY:
Benjamin Petersone42fb302012-04-18 11:14:31 -0400198 case SETUP_WITH:
Yury Selivanov75445082015-05-11 22:57:16 -0400199 case SETUP_ASYNC_WITH:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000200 blockstack[blockstack_top++] = addr;
201 in_finally[blockstack_top-1] = 0;
202 break;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000203
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 case POP_BLOCK:
205 assert(blockstack_top > 0);
206 setup_op = code[blockstack[blockstack_top-1]];
Yury Selivanov75445082015-05-11 22:57:16 -0400207 if (setup_op == SETUP_FINALLY || setup_op == SETUP_WITH
208 || setup_op == SETUP_ASYNC_WITH) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000209 in_finally[blockstack_top-1] = 1;
210 }
211 else {
212 blockstack_top--;
213 }
214 break;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000215
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000216 case END_FINALLY:
217 /* Ignore END_FINALLYs for SETUP_EXCEPTs - they exist
218 * in the bytecode but don't correspond to an actual
219 * 'finally' block. (If blockstack_top is 0, we must
220 * be seeing such an END_FINALLY.) */
221 if (blockstack_top > 0) {
222 setup_op = code[blockstack[blockstack_top-1]];
Yury Selivanov75445082015-05-11 22:57:16 -0400223 if (setup_op == SETUP_FINALLY || setup_op == SETUP_WITH
224 || setup_op == SETUP_ASYNC_WITH) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000225 blockstack_top--;
226 }
227 }
228 break;
229 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000230
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 /* For the addresses we're interested in, see whether they're
232 * within a 'finally' block and if so, remember the address
233 * of the SETUP_FINALLY. */
234 if (addr == new_lasti || addr == f->f_lasti) {
235 int i = 0;
236 int setup_addr = -1;
237 for (i = blockstack_top-1; i >= 0; i--) {
238 if (in_finally[i]) {
239 setup_addr = blockstack[i];
240 break;
241 }
242 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000243
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000244 if (setup_addr != -1) {
245 if (addr == new_lasti) {
246 new_lasti_setup_addr = setup_addr;
247 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000248
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000249 if (addr == f->f_lasti) {
250 f_lasti_setup_addr = setup_addr;
251 }
252 }
253 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000254 }
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;
Serhiy Storchakaab874002016-09-11 13:48:15 +0300276 for (addr = min_addr; addr < max_addr; addr += sizeof(_Py_CODEUNIT)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000277 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:
Yury Selivanov75445082015-05-11 22:57:16 -0400283 case SETUP_ASYNC_WITH:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 delta_iblock++;
285 break;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000286
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000287 case POP_BLOCK:
288 delta_iblock--;
289 break;
290 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000291
Victor Stinner640c35c2013-06-04 23:14:37 +0200292 min_delta_iblock = Py_MIN(min_delta_iblock, delta_iblock);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000293 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000294
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000295 /* Derive the absolute iblock values from the deltas. */
296 min_iblock = f->f_iblock + min_delta_iblock;
297 if (new_lasti > f->f_lasti) {
298 /* Forwards jump. */
299 new_iblock = f->f_iblock + delta_iblock;
300 }
301 else {
302 /* Backwards jump. */
303 new_iblock = f->f_iblock - delta_iblock;
304 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000305
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000306 /* Are we jumping into a block? */
307 if (new_iblock > min_iblock) {
308 PyErr_SetString(PyExc_ValueError,
309 "can't jump into the middle of a block");
310 return -1;
311 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000312
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000313 /* Pop any blocks that we're jumping out of. */
314 while (f->f_iblock > new_iblock) {
315 PyTryBlock *b = &f->f_blockstack[--f->f_iblock];
316 while ((f->f_stacktop - f->f_valuestack) > b->b_level) {
317 PyObject *v = (*--f->f_stacktop);
318 Py_DECREF(v);
319 }
320 }
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000321
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000322 /* Finally set the new f_lineno and f_lasti and return OK. */
323 f->f_lineno = new_lineno;
324 f->f_lasti = new_lasti;
325 return 0;
Michael W. Hudsoncfd38842002-12-17 16:15:34 +0000326}
327
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000328static PyObject *
329frame_gettrace(PyFrameObject *f, void *closure)
330{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 PyObject* trace = f->f_trace;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000332
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000333 if (trace == NULL)
334 trace = Py_None;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000335
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 Py_INCREF(trace);
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000337
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000338 return trace;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000339}
340
341static int
342frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
343{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000344 /* We rely on f_lineno being accurate when f_trace is set. */
345 f->f_lineno = PyFrame_GetLineNumber(f);
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000346
Serhiy Storchaka64a263a2016-06-04 20:32:36 +0300347 if (v == Py_None)
348 v = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 Py_XINCREF(v);
Serhiy Storchakaec397562016-04-06 09:50:03 +0300350 Py_XSETREF(f->f_trace, v);
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000351
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 return 0;
Michael W. Hudson02ff6a92002-09-11 15:36:32 +0000353}
354
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000355
Guido van Rossum32d34c82001-09-20 21:45:26 +0000356static PyGetSetDef frame_getsetlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000357 {"f_locals", (getter)frame_getlocals, NULL, NULL},
358 {"f_lineno", (getter)frame_getlineno,
359 (setter)frame_setlineno, NULL},
360 {"f_trace", (getter)frame_gettrace, (setter)frame_settrace, NULL},
361 {0}
Tim Peters6d6c1a32001-08-02 04:15:00 +0000362};
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000363
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000364/* Stack frames are allocated and deallocated at a considerable rate.
Thomas Wouters477c8d52006-05-27 19:21:47 +0000365 In an attempt to improve the speed of function calls, we:
366
367 1. Hold a single "zombie" frame on each code object. This retains
368 the allocated and initialised frame object from an invocation of
369 the code object. The zombie is reanimated the next time we need a
370 frame object for that code object. Doing this saves the malloc/
371 realloc required when using a free_list frame that isn't the
372 correct size. It also saves some field initialisation.
373
374 In zombie mode, no field of PyFrameObject holds a reference, but
375 the following fields are still valid:
376
377 * ob_type, ob_size, f_code, f_valuestack;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000378
Thomas Wouters477c8d52006-05-27 19:21:47 +0000379 * f_locals, f_trace,
380 f_exc_type, f_exc_value, f_exc_traceback are NULL;
381
382 * f_localsplus does not require re-allocation and
383 the local variables in f_localsplus are NULL.
384
385 2. We also maintain a separate free list of stack frames (just like
Mark Dickinsond19052c2010-06-27 18:19:09 +0000386 floats are allocated in a special way -- see floatobject.c). When
Thomas Wouters477c8d52006-05-27 19:21:47 +0000387 a stack frame is on the free list, only the following members have
388 a meaning:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 ob_type == &Frametype
390 f_back next item on free list, or NULL
391 f_stacksize size of value stack
392 ob_size size of localsplus
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000393 Note that the value and block stacks are preserved -- this can save
394 another malloc() call or two (and two free() calls as well!).
395 Also note that, unlike for integers, each frame object is a
396 malloc'ed object in its own right -- it is only the actual calls to
397 malloc() that we are trying to save here, not the administration.
398 After all, while a typical program may make millions of calls, a
399 call depth of more than 20 or 30 is probably already exceptional
400 unless the program contains run-away recursion. I hope.
Tim Petersb7ba7432002-04-13 05:21:47 +0000401
Christian Heimes2202f872008-02-06 14:31:34 +0000402 Later, PyFrame_MAXFREELIST was added to bound the # of frames saved on
Tim Petersb7ba7432002-04-13 05:21:47 +0000403 free_list. Else programs creating lots of cyclic trash involving
404 frames could provoke free_list into growing without bound.
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000405*/
406
Guido van Rossum18752471997-04-29 14:49:28 +0000407static PyFrameObject *free_list = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000408static int numfree = 0; /* number of frames currently in free_list */
Christian Heimes2202f872008-02-06 14:31:34 +0000409/* max value for numfree */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000410#define PyFrame_MAXFREELIST 200
Guido van Rossuma9e7dc11992-10-18 18:53:57 +0000411
Victor Stinnerc6944e72016-11-11 02:13:35 +0100412static void _Py_HOT_FUNCTION
Fred Drake1b190b42000-07-09 05:40:56 +0000413frame_dealloc(PyFrameObject *f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000414{
Antoine Pitrou93963562013-05-14 20:37:52 +0200415 PyObject **p, **valuestack;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000416 PyCodeObject *co;
Guido van Rossum7582bfb1997-02-14 16:27:29 +0000417
INADA Naoki5a625d02016-12-24 20:19:08 +0900418 if (_PyObject_GC_IS_TRACKED(f))
419 _PyObject_GC_UNTRACK(f);
420
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000421 Py_TRASHCAN_SAFE_BEGIN(f)
Antoine Pitrou93963562013-05-14 20:37:52 +0200422 /* Kill all local variables */
423 valuestack = f->f_valuestack;
424 for (p = f->f_localsplus; p < valuestack; p++)
425 Py_CLEAR(*p);
426
427 /* Free stack */
428 if (f->f_stacktop != NULL) {
429 for (p = valuestack; p < f->f_stacktop; p++)
430 Py_XDECREF(*p);
431 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000432
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000433 Py_XDECREF(f->f_back);
434 Py_DECREF(f->f_builtins);
435 Py_DECREF(f->f_globals);
436 Py_CLEAR(f->f_locals);
Antoine Pitrou93963562013-05-14 20:37:52 +0200437 Py_CLEAR(f->f_trace);
438 Py_CLEAR(f->f_exc_type);
439 Py_CLEAR(f->f_exc_value);
440 Py_CLEAR(f->f_exc_traceback);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000441
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000442 co = f->f_code;
443 if (co->co_zombieframe == NULL)
444 co->co_zombieframe = f;
445 else if (numfree < PyFrame_MAXFREELIST) {
446 ++numfree;
447 f->f_back = free_list;
448 free_list = f;
449 }
450 else
451 PyObject_GC_Del(f);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000452
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000453 Py_DECREF(co);
454 Py_TRASHCAN_SAFE_END(f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000455}
456
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000457static int
458frame_traverse(PyFrameObject *f, visitproc visit, void *arg)
459{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000460 PyObject **fastlocals, **p;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100461 Py_ssize_t i, slots;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000462
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000463 Py_VISIT(f->f_back);
464 Py_VISIT(f->f_code);
465 Py_VISIT(f->f_builtins);
466 Py_VISIT(f->f_globals);
467 Py_VISIT(f->f_locals);
468 Py_VISIT(f->f_trace);
469 Py_VISIT(f->f_exc_type);
470 Py_VISIT(f->f_exc_value);
471 Py_VISIT(f->f_exc_traceback);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 /* locals */
474 slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars);
475 fastlocals = f->f_localsplus;
476 for (i = slots; --i >= 0; ++fastlocals)
477 Py_VISIT(*fastlocals);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000478
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000479 /* stack */
480 if (f->f_stacktop != NULL) {
481 for (p = f->f_valuestack; p < f->f_stacktop; p++)
482 Py_VISIT(*p);
483 }
484 return 0;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000485}
486
487static void
Antoine Pitrou58720d62013-08-05 23:26:40 +0200488frame_tp_clear(PyFrameObject *f)
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000489{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000490 PyObject **fastlocals, **p, **oldtop;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100491 Py_ssize_t i, slots;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000492
Antoine Pitrou93963562013-05-14 20:37:52 +0200493 /* Before anything else, make sure that this frame is clearly marked
494 * as being defunct! Else, e.g., a generator reachable from this
495 * frame may also point to this frame, believe itself to still be
496 * active, and try cleaning up this frame again.
497 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000498 oldtop = f->f_stacktop;
499 f->f_stacktop = NULL;
Antoine Pitrou58720d62013-08-05 23:26:40 +0200500 f->f_executing = 0;
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000501
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 Py_CLEAR(f->f_exc_type);
503 Py_CLEAR(f->f_exc_value);
504 Py_CLEAR(f->f_exc_traceback);
505 Py_CLEAR(f->f_trace);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000506
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000507 /* locals */
508 slots = f->f_code->co_nlocals + PyTuple_GET_SIZE(f->f_code->co_cellvars) + PyTuple_GET_SIZE(f->f_code->co_freevars);
509 fastlocals = f->f_localsplus;
510 for (i = slots; --i >= 0; ++fastlocals)
511 Py_CLEAR(*fastlocals);
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000512
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000513 /* stack */
514 if (oldtop != NULL) {
515 for (p = f->f_valuestack; p < oldtop; p++)
516 Py_CLEAR(*p);
517 }
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000518}
519
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000520static PyObject *
Antoine Pitrou58720d62013-08-05 23:26:40 +0200521frame_clear(PyFrameObject *f)
522{
523 if (f->f_executing) {
524 PyErr_SetString(PyExc_RuntimeError,
525 "cannot clear an executing frame");
526 return NULL;
527 }
528 if (f->f_gen) {
529 _PyGen_Finalize(f->f_gen);
530 assert(f->f_gen == NULL);
531 }
532 frame_tp_clear(f);
533 Py_RETURN_NONE;
534}
535
536PyDoc_STRVAR(clear__doc__,
537"F.clear(): clear most references held by the frame");
538
539static PyObject *
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000540frame_sizeof(PyFrameObject *f)
541{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000542 Py_ssize_t res, extras, ncells, nfrees;
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000543
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000544 ncells = PyTuple_GET_SIZE(f->f_code->co_cellvars);
545 nfrees = PyTuple_GET_SIZE(f->f_code->co_freevars);
546 extras = f->f_code->co_stacksize + f->f_code->co_nlocals +
547 ncells + nfrees;
548 /* subtract one as it is already included in PyFrameObject */
549 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *);
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000550
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 return PyLong_FromSsize_t(res);
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000552}
553
554PyDoc_STRVAR(sizeof__doc__,
555"F.__sizeof__() -> size of F in memory, in bytes");
556
557static PyMethodDef frame_methods[] = {
Antoine Pitrou58720d62013-08-05 23:26:40 +0200558 {"clear", (PyCFunction)frame_clear, METH_NOARGS,
559 clear__doc__},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 {"__sizeof__", (PyCFunction)frame_sizeof, METH_NOARGS,
561 sizeof__doc__},
562 {NULL, NULL} /* sentinel */
Robert Schuppeniesfbe94c52008-07-14 10:13:31 +0000563};
Neil Schemenauer19cd2922001-07-12 13:27:11 +0000564
Guido van Rossum18752471997-04-29 14:49:28 +0000565PyTypeObject PyFrame_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000566 PyVarObject_HEAD_INIT(&PyType_Type, 0)
567 "frame",
568 sizeof(PyFrameObject),
569 sizeof(PyObject *),
570 (destructor)frame_dealloc, /* tp_dealloc */
571 0, /* tp_print */
572 0, /* tp_getattr */
573 0, /* tp_setattr */
574 0, /* tp_reserved */
575 0, /* tp_repr */
576 0, /* tp_as_number */
577 0, /* tp_as_sequence */
578 0, /* tp_as_mapping */
579 0, /* tp_hash */
580 0, /* tp_call */
581 0, /* tp_str */
582 PyObject_GenericGetAttr, /* tp_getattro */
583 PyObject_GenericSetAttr, /* tp_setattro */
584 0, /* tp_as_buffer */
585 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
586 0, /* tp_doc */
587 (traverseproc)frame_traverse, /* tp_traverse */
Antoine Pitrou58720d62013-08-05 23:26:40 +0200588 (inquiry)frame_tp_clear, /* tp_clear */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000589 0, /* tp_richcompare */
590 0, /* tp_weaklistoffset */
591 0, /* tp_iter */
592 0, /* tp_iternext */
593 frame_methods, /* tp_methods */
594 frame_memberlist, /* tp_members */
595 frame_getsetlist, /* tp_getset */
596 0, /* tp_base */
597 0, /* tp_dict */
Guido van Rossum3f5da241990-12-20 15:06:42 +0000598};
599
Victor Stinner07e9e382013-11-07 22:22:39 +0100600_Py_IDENTIFIER(__builtins__);
Neal Norwitzc91ed402002-12-30 22:29:22 +0000601
Neal Norwitzb2501f42002-12-31 03:42:13 +0000602int _PyFrame_Init()
Neal Norwitzc91ed402002-12-30 22:29:22 +0000603{
Victor Stinner07e9e382013-11-07 22:22:39 +0100604 /* Before, PyId___builtins__ was a string created explicitly in
605 this function. Now there is nothing to initialize anymore, but
606 the function is kept for backward compatibility. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000607 return 1;
Neal Norwitzc91ed402002-12-30 22:29:22 +0000608}
609
Victor Stinnerc6944e72016-11-11 02:13:35 +0100610PyFrameObject* _Py_HOT_FUNCTION
INADA Naoki5a625d02016-12-24 20:19:08 +0900611_PyFrame_New_NoTrack(PyThreadState *tstate, PyCodeObject *code,
612 PyObject *globals, PyObject *locals)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000613{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000614 PyFrameObject *back = tstate->frame;
615 PyFrameObject *f;
616 PyObject *builtins;
617 Py_ssize_t i;
Guido van Rossumf3e85a01997-01-20 04:20:52 +0000618
Michael W. Hudson69734a52002-08-19 16:54:08 +0000619#ifdef Py_DEBUG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000620 if (code == NULL || globals == NULL || !PyDict_Check(globals) ||
621 (locals != NULL && !PyMapping_Check(locals))) {
622 PyErr_BadInternalCall();
623 return NULL;
624 }
Michael W. Hudson69734a52002-08-19 16:54:08 +0000625#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000626 if (back == NULL || back->f_globals != globals) {
Victor Stinner07e9e382013-11-07 22:22:39 +0100627 builtins = _PyDict_GetItemId(globals, &PyId___builtins__);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000628 if (builtins) {
629 if (PyModule_Check(builtins)) {
630 builtins = PyModule_GetDict(builtins);
Victor Stinnerb0b22422012-04-19 00:57:45 +0200631 assert(builtins != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000632 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000633 }
634 if (builtins == NULL) {
635 /* No builtins! Make up a minimal one
636 Give them 'None', at least. */
637 builtins = PyDict_New();
638 if (builtins == NULL ||
639 PyDict_SetItemString(
640 builtins, "None", Py_None) < 0)
641 return NULL;
642 }
643 else
644 Py_INCREF(builtins);
Jeremy Hyltonbd5cbf82003-02-05 22:39:29 +0000645
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000646 }
647 else {
648 /* If we share the globals, we share the builtins.
649 Save a lookup and a call. */
650 builtins = back->f_builtins;
Victor Stinnerb0b22422012-04-19 00:57:45 +0200651 assert(builtins != NULL);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000652 Py_INCREF(builtins);
653 }
654 if (code->co_zombieframe != NULL) {
655 f = code->co_zombieframe;
656 code->co_zombieframe = NULL;
657 _Py_NewReference((PyObject *)f);
658 assert(f->f_code == code);
659 }
660 else {
661 Py_ssize_t extras, ncells, nfrees;
662 ncells = PyTuple_GET_SIZE(code->co_cellvars);
663 nfrees = PyTuple_GET_SIZE(code->co_freevars);
664 extras = code->co_stacksize + code->co_nlocals + ncells +
665 nfrees;
666 if (free_list == NULL) {
667 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type,
668 extras);
669 if (f == NULL) {
670 Py_DECREF(builtins);
671 return NULL;
672 }
673 }
674 else {
675 assert(numfree > 0);
676 --numfree;
677 f = free_list;
678 free_list = free_list->f_back;
679 if (Py_SIZE(f) < extras) {
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +0000680 PyFrameObject *new_f = PyObject_GC_Resize(PyFrameObject, f, extras);
681 if (new_f == NULL) {
682 PyObject_GC_Del(f);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000683 Py_DECREF(builtins);
684 return NULL;
685 }
Kristjan Valur Jonsson85634d72012-05-31 09:37:31 +0000686 f = new_f;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000687 }
688 _Py_NewReference((PyObject *)f);
689 }
Thomas Wouters477c8d52006-05-27 19:21:47 +0000690
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000691 f->f_code = code;
692 extras = code->co_nlocals + ncells + nfrees;
693 f->f_valuestack = f->f_localsplus + extras;
694 for (i=0; i<extras; i++)
695 f->f_localsplus[i] = NULL;
696 f->f_locals = NULL;
697 f->f_trace = NULL;
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;
702 Py_XINCREF(back);
703 f->f_back = back;
704 Py_INCREF(code);
705 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 else if (code->co_flags & CO_NEWLOCALS) {
712 locals = PyDict_New();
713 if (locals == NULL) {
714 Py_DECREF(f);
715 return NULL;
716 }
717 f->f_locals = locals;
718 }
719 else {
720 if (locals == NULL)
721 locals = globals;
722 Py_INCREF(locals);
723 f->f_locals = locals;
724 }
Guido van Rossumf3e85a01997-01-20 04:20:52 +0000725
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000726 f->f_lasti = -1;
727 f->f_lineno = code->co_firstlineno;
728 f->f_iblock = 0;
Antoine Pitrou58720d62013-08-05 23:26:40 +0200729 f->f_executing = 0;
730 f->f_gen = NULL;
Guido van Rossumf3e85a01997-01-20 04:20:52 +0000731
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000732 return f;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000733}
734
INADA Naoki5a625d02016-12-24 20:19:08 +0900735PyFrameObject*
736PyFrame_New(PyThreadState *tstate, PyCodeObject *code,
737 PyObject *globals, PyObject *locals)
738{
739 PyFrameObject *f = _PyFrame_New_NoTrack(tstate, code, globals, locals);
740 if (f)
741 _PyObject_GC_TRACK(f);
742 return f;
743}
744
745
Guido van Rossum3f5da241990-12-20 15:06:42 +0000746/* Block management */
747
748void
Fred Drake1b190b42000-07-09 05:40:56 +0000749PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000750{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000751 PyTryBlock *b;
752 if (f->f_iblock >= CO_MAXBLOCKS)
753 Py_FatalError("XXX block stack overflow");
754 b = &f->f_blockstack[f->f_iblock++];
755 b->b_type = type;
756 b->b_level = level;
757 b->b_handler = handler;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000758}
759
Guido van Rossum18752471997-04-29 14:49:28 +0000760PyTryBlock *
Fred Drake1b190b42000-07-09 05:40:56 +0000761PyFrame_BlockPop(PyFrameObject *f)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000762{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000763 PyTryBlock *b;
764 if (f->f_iblock <= 0)
765 Py_FatalError("XXX block stack underflow");
766 b = &f->f_blockstack[--f->f_iblock];
767 return b;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000768}
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000769
Guido van Rossumd8faa362007-04-27 19:54:29 +0000770/* Convert between "fast" version of locals and dictionary version.
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000771
772 map and values are input arguments. map is a tuple of strings.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000773 values is an array of PyObject*. At index i, map[i] is the name of
774 the variable with value values[i]. The function copies the first
775 nmap variable from map/values into dict. If values[i] is NULL,
776 the variable is deleted from dict.
777
778 If deref is true, then the values being copied are cell variables
779 and the value is extracted from the cell variable before being put
780 in dict.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000781 */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000782
Victor Stinner41bb43a2013-10-29 01:19:37 +0100783static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000784map_to_dict(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000785 int deref)
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000786{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000787 Py_ssize_t j;
788 assert(PyTuple_Check(map));
789 assert(PyDict_Check(dict));
790 assert(PyTuple_Size(map) >= nmap);
791 for (j = nmap; --j >= 0; ) {
792 PyObject *key = PyTuple_GET_ITEM(map, j);
793 PyObject *value = values[j];
794 assert(PyUnicode_Check(key));
Antoine Pitrouacc8cf22014-07-04 20:24:13 -0400795 if (deref && value != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 assert(PyCell_Check(value));
797 value = PyCell_GET(value);
798 }
799 if (value == NULL) {
Victor Stinner41bb43a2013-10-29 01:19:37 +0100800 if (PyObject_DelItem(dict, key) != 0) {
801 if (PyErr_ExceptionMatches(PyExc_KeyError))
802 PyErr_Clear();
803 else
804 return -1;
805 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 }
807 else {
808 if (PyObject_SetItem(dict, key, value) != 0)
Victor Stinner41bb43a2013-10-29 01:19:37 +0100809 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000810 }
811 }
Victor Stinner41bb43a2013-10-29 01:19:37 +0100812 return 0;
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000813}
814
Guido van Rossumd8faa362007-04-27 19:54:29 +0000815/* Copy values from the "locals" dict into the fast locals.
816
817 dict is an input argument containing string keys representing
818 variables names and arbitrary PyObject* as values.
819
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000820 map and values are input arguments. map is a tuple of strings.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000821 values is an array of PyObject*. At index i, map[i] is the name of
822 the variable with value values[i]. The function copies the first
823 nmap variable from map/values into dict. If values[i] is NULL,
824 the variable is deleted from dict.
825
826 If deref is true, then the values being copied are cell variables
827 and the value is extracted from the cell variable before being put
828 in dict. If clear is true, then variables in map but not in dict
829 are set to NULL in map; if clear is false, variables missing in
830 dict are ignored.
831
832 Exceptions raised while modifying the dict are silently ignored,
833 because there is no good way to report them.
834*/
835
Guido van Rossum6b356e72001-04-14 17:55:41 +0000836static void
Martin v. Löwis18e16552006-02-15 17:27:45 +0000837dict_to_map(PyObject *map, Py_ssize_t nmap, PyObject *dict, PyObject **values,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000838 int deref, int clear)
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000839{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000840 Py_ssize_t j;
841 assert(PyTuple_Check(map));
842 assert(PyDict_Check(dict));
843 assert(PyTuple_Size(map) >= nmap);
844 for (j = nmap; --j >= 0; ) {
845 PyObject *key = PyTuple_GET_ITEM(map, j);
846 PyObject *value = PyObject_GetItem(dict, key);
847 assert(PyUnicode_Check(key));
848 /* We only care about NULLs if clear is true. */
849 if (value == NULL) {
850 PyErr_Clear();
851 if (!clear)
852 continue;
853 }
854 if (deref) {
855 assert(PyCell_Check(values[j]));
856 if (PyCell_GET(values[j]) != value) {
857 if (PyCell_Set(values[j], value) < 0)
858 PyErr_Clear();
859 }
860 } else if (values[j] != value) {
861 Py_XINCREF(value);
Serhiy Storchaka48842712016-04-06 09:45:48 +0300862 Py_XSETREF(values[j], value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000863 }
864 Py_XDECREF(value);
865 }
Jeremy Hylton220ae7c2001-03-21 16:43:47 +0000866}
Jeremy Hylton2b724da2001-01-29 22:51:52 +0000867
Victor Stinner41bb43a2013-10-29 01:19:37 +0100868int
869PyFrame_FastToLocalsWithError(PyFrameObject *f)
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000870{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000871 /* Merge fast locals into f->f_locals */
872 PyObject *locals, *map;
873 PyObject **fast;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000874 PyCodeObject *co;
875 Py_ssize_t j;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100876 Py_ssize_t ncells, nfreevars;
Victor Stinner41bb43a2013-10-29 01:19:37 +0100877
878 if (f == NULL) {
879 PyErr_BadInternalCall();
880 return -1;
881 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000882 locals = f->f_locals;
883 if (locals == NULL) {
884 locals = f->f_locals = PyDict_New();
Victor Stinner41bb43a2013-10-29 01:19:37 +0100885 if (locals == NULL)
886 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000887 }
888 co = f->f_code;
889 map = co->co_varnames;
Victor Stinner41bb43a2013-10-29 01:19:37 +0100890 if (!PyTuple_Check(map)) {
891 PyErr_Format(PyExc_SystemError,
892 "co_varnames must be a tuple, not %s",
893 Py_TYPE(map)->tp_name);
894 return -1;
895 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000896 fast = f->f_localsplus;
897 j = PyTuple_GET_SIZE(map);
898 if (j > co->co_nlocals)
899 j = co->co_nlocals;
Victor Stinner41bb43a2013-10-29 01:19:37 +0100900 if (co->co_nlocals) {
901 if (map_to_dict(map, j, locals, fast, 0) < 0)
902 return -1;
903 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000904 ncells = PyTuple_GET_SIZE(co->co_cellvars);
905 nfreevars = PyTuple_GET_SIZE(co->co_freevars);
906 if (ncells || nfreevars) {
Victor Stinner41bb43a2013-10-29 01:19:37 +0100907 if (map_to_dict(co->co_cellvars, ncells,
908 locals, fast + co->co_nlocals, 1))
909 return -1;
910
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000911 /* If the namespace is unoptimized, then one of the
912 following cases applies:
913 1. It does not contain free variables, because it
914 uses import * or is a top-level namespace.
915 2. It is a class namespace.
916 We don't want to accidentally copy free variables
917 into the locals dict used by the class.
918 */
919 if (co->co_flags & CO_OPTIMIZED) {
Victor Stinner41bb43a2013-10-29 01:19:37 +0100920 if (map_to_dict(co->co_freevars, nfreevars,
921 locals, fast + co->co_nlocals + ncells, 1) < 0)
922 return -1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000923 }
924 }
Victor Stinner41bb43a2013-10-29 01:19:37 +0100925 return 0;
926}
927
928void
929PyFrame_FastToLocals(PyFrameObject *f)
930{
931 int res;
932
933 assert(!PyErr_Occurred());
934
935 res = PyFrame_FastToLocalsWithError(f);
936 if (res < 0)
937 PyErr_Clear();
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000938}
939
940void
Fred Drake1b190b42000-07-09 05:40:56 +0000941PyFrame_LocalsToFast(PyFrameObject *f, int clear)
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000942{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 /* Merge f->f_locals into fast locals */
944 PyObject *locals, *map;
945 PyObject **fast;
946 PyObject *error_type, *error_value, *error_traceback;
947 PyCodeObject *co;
948 Py_ssize_t j;
Victor Stinner7a6d7cf2012-10-31 00:37:41 +0100949 Py_ssize_t ncells, nfreevars;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000950 if (f == NULL)
951 return;
952 locals = f->f_locals;
953 co = f->f_code;
954 map = co->co_varnames;
955 if (locals == NULL)
956 return;
957 if (!PyTuple_Check(map))
958 return;
959 PyErr_Fetch(&error_type, &error_value, &error_traceback);
960 fast = f->f_localsplus;
961 j = PyTuple_GET_SIZE(map);
962 if (j > co->co_nlocals)
963 j = co->co_nlocals;
964 if (co->co_nlocals)
965 dict_to_map(co->co_varnames, j, locals, fast, 0, clear);
966 ncells = PyTuple_GET_SIZE(co->co_cellvars);
967 nfreevars = PyTuple_GET_SIZE(co->co_freevars);
968 if (ncells || nfreevars) {
969 dict_to_map(co->co_cellvars, ncells,
970 locals, fast + co->co_nlocals, 1, clear);
971 /* Same test as in PyFrame_FastToLocals() above. */
972 if (co->co_flags & CO_OPTIMIZED) {
973 dict_to_map(co->co_freevars, nfreevars,
974 locals, fast + co->co_nlocals + ncells, 1,
975 clear);
976 }
977 }
978 PyErr_Restore(error_type, error_value, error_traceback);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000979}
Guido van Rossum404b95d1997-08-05 02:09:46 +0000980
981/* Clear out the free list */
Christian Heimesa156e092008-02-16 07:38:31 +0000982int
983PyFrame_ClearFreeList(void)
Guido van Rossum404b95d1997-08-05 02:09:46 +0000984{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000985 int freelist_size = numfree;
986
987 while (free_list != NULL) {
988 PyFrameObject *f = free_list;
989 free_list = free_list->f_back;
990 PyObject_GC_Del(f);
991 --numfree;
992 }
993 assert(numfree == 0);
994 return freelist_size;
Christian Heimesa156e092008-02-16 07:38:31 +0000995}
996
997void
998PyFrame_Fini(void)
999{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001000 (void)PyFrame_ClearFreeList();
Guido van Rossum404b95d1997-08-05 02:09:46 +00001001}
David Malcolm49526f42012-06-22 14:55:41 -04001002
1003/* Print summary info about the state of the optimized allocator */
1004void
1005_PyFrame_DebugMallocStats(FILE *out)
1006{
1007 _PyDebugAllocatorStats(out,
1008 "free PyFrameObject",
1009 numfree, sizeof(PyFrameObject));
1010}
1011