blob: 6de697ae3fd31c7ed41a5fb4666a71b85066af99 [file] [log] [blame]
Benjamin Peterson1bf494b2016-09-07 11:28:35 -07001#include <stdbool.h>
2
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00003#include "Python.h"
4#include "code.h"
5#include "structmember.h"
6
7#define NAME_CHARS \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00008 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00009
Brett Cannond0600ed2016-09-07 14:30:39 -070010/* Holder for co_extra information */
11typedef struct {
12 Py_ssize_t ce_size;
13 void **ce_extras;
14} _PyCodeObjectExtra;
15
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000016/* all_name_chars(s): true iff all chars in s are valid NAME_CHARS */
17
18static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020019all_name_chars(PyObject *o)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000020{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000021 static char ok_name_char[256];
Serhiy Storchaka09f3d082016-10-04 18:17:22 +030022 static const unsigned char *name_chars = (unsigned char *)NAME_CHARS;
23 const unsigned char *s, *e;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020024
Serhiy Storchaka09f3d082016-10-04 18:17:22 +030025 if (!PyUnicode_Check(o) || PyUnicode_READY(o) == -1 ||
26 !PyUnicode_IS_ASCII(o))
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020027 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000028
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000029 if (ok_name_char[*name_chars] == 0) {
Serhiy Storchaka09f3d082016-10-04 18:17:22 +030030 const unsigned char *p;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000031 for (p = name_chars; *p; p++)
32 ok_name_char[*p] = 1;
33 }
Serhiy Storchaka09f3d082016-10-04 18:17:22 +030034 s = PyUnicode_1BYTE_DATA(o);
35 e = s + PyUnicode_GET_LENGTH(o);
36 while (s != e) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000037 if (ok_name_char[*s++] == 0)
38 return 0;
39 }
40 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000041}
42
43static void
44intern_strings(PyObject *tuple)
45{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000046 Py_ssize_t i;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000047
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000048 for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
49 PyObject *v = PyTuple_GET_ITEM(tuple, i);
50 if (v == NULL || !PyUnicode_CheckExact(v)) {
51 Py_FatalError("non-string found in code slot");
52 }
53 PyUnicode_InternInPlace(&PyTuple_GET_ITEM(tuple, i));
54 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000055}
56
Serhiy Storchaka00a0fc12016-09-30 10:07:26 +030057/* Intern selected string constants */
58static int
59intern_string_constants(PyObject *tuple)
60{
61 int modified = 0;
62 Py_ssize_t i;
63
64 for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
65 PyObject *v = PyTuple_GET_ITEM(tuple, i);
66 if (PyUnicode_CheckExact(v)) {
67 if (all_name_chars(v)) {
68 PyObject *w = v;
69 PyUnicode_InternInPlace(&v);
70 if (w != v) {
71 PyTuple_SET_ITEM(tuple, i, v);
72 modified = 1;
73 }
74 }
75 }
76 else if (PyTuple_CheckExact(v)) {
77 intern_string_constants(v);
78 }
79 else if (PyFrozenSet_CheckExact(v)) {
Yury Selivanovd2fd3592016-11-09 09:42:14 -050080 PyObject *w = v;
Serhiy Storchaka00a0fc12016-09-30 10:07:26 +030081 PyObject *tmp = PySequence_Tuple(v);
82 if (tmp == NULL) {
83 PyErr_Clear();
84 continue;
85 }
86 if (intern_string_constants(tmp)) {
87 v = PyFrozenSet_New(tmp);
88 if (v == NULL) {
89 PyErr_Clear();
90 }
91 else {
92 PyTuple_SET_ITEM(tuple, i, v);
Yury Selivanovd2fd3592016-11-09 09:42:14 -050093 Py_DECREF(w);
Serhiy Storchaka00a0fc12016-09-30 10:07:26 +030094 modified = 1;
95 }
96 }
97 Py_DECREF(tmp);
98 }
99 }
100 return modified;
101}
102
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000103
104PyCodeObject *
Guido van Rossum4f72a782006-10-27 23:31:49 +0000105PyCode_New(int argcount, int kwonlyargcount,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000106 int nlocals, int stacksize, int flags,
107 PyObject *code, PyObject *consts, PyObject *names,
108 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
109 PyObject *filename, PyObject *name, int firstlineno,
110 PyObject *lnotab)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000111{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000112 PyCodeObject *co;
Benjamin Peterson90037602011-06-25 22:54:45 -0500113 unsigned char *cell2arg = NULL;
114 Py_ssize_t i, n_cellvars;
Guido van Rossum00bc0e02007-10-15 02:52:41 +0000115
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 /* Check argument types */
117 if (argcount < 0 || kwonlyargcount < 0 || nlocals < 0 ||
118 code == NULL ||
119 consts == NULL || !PyTuple_Check(consts) ||
120 names == NULL || !PyTuple_Check(names) ||
121 varnames == NULL || !PyTuple_Check(varnames) ||
122 freevars == NULL || !PyTuple_Check(freevars) ||
123 cellvars == NULL || !PyTuple_Check(cellvars) ||
124 name == NULL || !PyUnicode_Check(name) ||
125 filename == NULL || !PyUnicode_Check(filename) ||
126 lnotab == NULL || !PyBytes_Check(lnotab) ||
127 !PyObject_CheckReadBuffer(code)) {
128 PyErr_BadInternalCall();
129 return NULL;
130 }
Victor Stinner7c74de42013-10-10 15:55:14 +0200131
132 /* Ensure that the filename is a ready Unicode string */
133 if (PyUnicode_READY(filename) < 0)
134 return NULL;
135
Benjamin Peterson90037602011-06-25 22:54:45 -0500136 n_cellvars = PyTuple_GET_SIZE(cellvars);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000137 intern_strings(names);
138 intern_strings(varnames);
139 intern_strings(freevars);
140 intern_strings(cellvars);
Serhiy Storchaka00a0fc12016-09-30 10:07:26 +0300141 intern_string_constants(consts);
Benjamin Peterson90037602011-06-25 22:54:45 -0500142 /* Create mapping between cells and arguments if needed. */
143 if (n_cellvars) {
144 Py_ssize_t total_args = argcount + kwonlyargcount +
145 ((flags & CO_VARARGS) != 0) + ((flags & CO_VARKEYWORDS) != 0);
146 Py_ssize_t alloc_size = sizeof(unsigned char) * n_cellvars;
Benjamin Peterson1bf494b2016-09-07 11:28:35 -0700147 bool used_cell2arg = false;
Benjamin Peterson90037602011-06-25 22:54:45 -0500148 cell2arg = PyMem_MALLOC(alloc_size);
149 if (cell2arg == NULL)
150 return NULL;
151 memset(cell2arg, CO_CELL_NOT_AN_ARG, alloc_size);
152 /* Find cells which are also arguments. */
153 for (i = 0; i < n_cellvars; i++) {
154 Py_ssize_t j;
155 PyObject *cell = PyTuple_GET_ITEM(cellvars, i);
156 for (j = 0; j < total_args; j++) {
157 PyObject *arg = PyTuple_GET_ITEM(varnames, j);
158 if (!PyUnicode_Compare(cell, arg)) {
159 cell2arg[i] = j;
Benjamin Peterson1bf494b2016-09-07 11:28:35 -0700160 used_cell2arg = true;
Benjamin Peterson90037602011-06-25 22:54:45 -0500161 break;
162 }
163 }
164 }
165 if (!used_cell2arg) {
166 PyMem_FREE(cell2arg);
167 cell2arg = NULL;
168 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000169 }
Benjamin Peterson90037602011-06-25 22:54:45 -0500170 co = PyObject_NEW(PyCodeObject, &PyCode_Type);
171 if (co == NULL) {
172 if (cell2arg)
173 PyMem_FREE(cell2arg);
174 return NULL;
175 }
176 co->co_argcount = argcount;
177 co->co_kwonlyargcount = kwonlyargcount;
178 co->co_nlocals = nlocals;
179 co->co_stacksize = stacksize;
180 co->co_flags = flags;
181 Py_INCREF(code);
182 co->co_code = code;
183 Py_INCREF(consts);
184 co->co_consts = consts;
185 Py_INCREF(names);
186 co->co_names = names;
187 Py_INCREF(varnames);
188 co->co_varnames = varnames;
189 Py_INCREF(freevars);
190 co->co_freevars = freevars;
191 Py_INCREF(cellvars);
192 co->co_cellvars = cellvars;
193 co->co_cell2arg = cell2arg;
194 Py_INCREF(filename);
195 co->co_filename = filename;
196 Py_INCREF(name);
197 co->co_name = name;
198 co->co_firstlineno = firstlineno;
199 Py_INCREF(lnotab);
200 co->co_lnotab = lnotab;
201 co->co_zombieframe = NULL;
202 co->co_weakreflist = NULL;
Brett Cannon5c4de282016-09-07 11:16:41 -0700203 co->co_extra = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 return co;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000205}
206
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000207PyCodeObject *
208PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno)
209{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000210 static PyObject *emptystring = NULL;
211 static PyObject *nulltuple = NULL;
212 PyObject *filename_ob = NULL;
213 PyObject *funcname_ob = NULL;
214 PyCodeObject *result = NULL;
215 if (emptystring == NULL) {
216 emptystring = PyBytes_FromString("");
217 if (emptystring == NULL)
218 goto failed;
219 }
220 if (nulltuple == NULL) {
221 nulltuple = PyTuple_New(0);
222 if (nulltuple == NULL)
223 goto failed;
224 }
225 funcname_ob = PyUnicode_FromString(funcname);
226 if (funcname_ob == NULL)
227 goto failed;
228 filename_ob = PyUnicode_DecodeFSDefault(filename);
229 if (filename_ob == NULL)
230 goto failed;
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000231
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000232 result = PyCode_New(0, /* argcount */
233 0, /* kwonlyargcount */
234 0, /* nlocals */
235 0, /* stacksize */
236 0, /* flags */
237 emptystring, /* code */
238 nulltuple, /* consts */
239 nulltuple, /* names */
240 nulltuple, /* varnames */
241 nulltuple, /* freevars */
242 nulltuple, /* cellvars */
243 filename_ob, /* filename */
244 funcname_ob, /* name */
245 firstlineno, /* firstlineno */
246 emptystring /* lnotab */
247 );
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000248
249failed:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000250 Py_XDECREF(funcname_ob);
251 Py_XDECREF(filename_ob);
252 return result;
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000253}
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000254
255#define OFF(x) offsetof(PyCodeObject, x)
256
257static PyMemberDef code_memberlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000258 {"co_argcount", T_INT, OFF(co_argcount), READONLY},
259 {"co_kwonlyargcount", T_INT, OFF(co_kwonlyargcount), READONLY},
260 {"co_nlocals", T_INT, OFF(co_nlocals), READONLY},
261 {"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
262 {"co_flags", T_INT, OFF(co_flags), READONLY},
263 {"co_code", T_OBJECT, OFF(co_code), READONLY},
264 {"co_consts", T_OBJECT, OFF(co_consts), READONLY},
265 {"co_names", T_OBJECT, OFF(co_names), READONLY},
266 {"co_varnames", T_OBJECT, OFF(co_varnames), READONLY},
267 {"co_freevars", T_OBJECT, OFF(co_freevars), READONLY},
268 {"co_cellvars", T_OBJECT, OFF(co_cellvars), READONLY},
269 {"co_filename", T_OBJECT, OFF(co_filename), READONLY},
270 {"co_name", T_OBJECT, OFF(co_name), READONLY},
271 {"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY},
272 {"co_lnotab", T_OBJECT, OFF(co_lnotab), READONLY},
273 {NULL} /* Sentinel */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000274};
275
276/* Helper for code_new: return a shallow copy of a tuple that is
277 guaranteed to contain exact strings, by converting string subclasses
278 to exact strings and complaining if a non-string is found. */
279static PyObject*
280validate_and_copy_tuple(PyObject *tup)
281{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000282 PyObject *newtuple;
283 PyObject *item;
284 Py_ssize_t i, len;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000285
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000286 len = PyTuple_GET_SIZE(tup);
287 newtuple = PyTuple_New(len);
288 if (newtuple == NULL)
289 return NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000290
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000291 for (i = 0; i < len; i++) {
292 item = PyTuple_GET_ITEM(tup, i);
293 if (PyUnicode_CheckExact(item)) {
294 Py_INCREF(item);
295 }
296 else if (!PyUnicode_Check(item)) {
297 PyErr_Format(
298 PyExc_TypeError,
299 "name tuples must contain only "
300 "strings, not '%.500s'",
301 item->ob_type->tp_name);
302 Py_DECREF(newtuple);
303 return NULL;
304 }
305 else {
Victor Stinnerbf6e5602011-12-12 01:53:47 +0100306 item = _PyUnicode_Copy(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000307 if (item == NULL) {
308 Py_DECREF(newtuple);
309 return NULL;
310 }
311 }
312 PyTuple_SET_ITEM(newtuple, i, item);
313 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000314
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000315 return newtuple;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000316}
317
318PyDoc_STRVAR(code_doc,
Georg Brandl8c1a50a2009-07-18 09:07:48 +0000319"code(argcount, kwonlyargcount, nlocals, stacksize, flags, codestring,\n\
Georg Brandla1e7e132008-01-26 09:39:23 +0000320 constants, names, varnames, filename, name, firstlineno,\n\
321 lnotab[, freevars[, cellvars]])\n\
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000322\n\
323Create a code object. Not for the faint of heart.");
324
325static PyObject *
326code_new(PyTypeObject *type, PyObject *args, PyObject *kw)
327{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000328 int argcount;
329 int kwonlyargcount;
330 int nlocals;
331 int stacksize;
332 int flags;
333 PyObject *co = NULL;
334 PyObject *code;
335 PyObject *consts;
336 PyObject *names, *ournames = NULL;
337 PyObject *varnames, *ourvarnames = NULL;
338 PyObject *freevars = NULL, *ourfreevars = NULL;
339 PyObject *cellvars = NULL, *ourcellvars = NULL;
340 PyObject *filename;
341 PyObject *name;
342 int firstlineno;
343 PyObject *lnotab;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000344
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000345 if (!PyArg_ParseTuple(args, "iiiiiSO!O!O!UUiS|O!O!:code",
346 &argcount, &kwonlyargcount,
347 &nlocals, &stacksize, &flags,
348 &code,
349 &PyTuple_Type, &consts,
350 &PyTuple_Type, &names,
351 &PyTuple_Type, &varnames,
352 &filename, &name,
353 &firstlineno, &lnotab,
354 &PyTuple_Type, &freevars,
355 &PyTuple_Type, &cellvars))
356 return NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000357
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000358 if (argcount < 0) {
359 PyErr_SetString(
360 PyExc_ValueError,
361 "code: argcount must not be negative");
362 goto cleanup;
363 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000364
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000365 if (kwonlyargcount < 0) {
366 PyErr_SetString(
367 PyExc_ValueError,
368 "code: kwonlyargcount must not be negative");
369 goto cleanup;
370 }
371 if (nlocals < 0) {
372 PyErr_SetString(
373 PyExc_ValueError,
374 "code: nlocals must not be negative");
375 goto cleanup;
376 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000377
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000378 ournames = validate_and_copy_tuple(names);
379 if (ournames == NULL)
380 goto cleanup;
381 ourvarnames = validate_and_copy_tuple(varnames);
382 if (ourvarnames == NULL)
383 goto cleanup;
384 if (freevars)
385 ourfreevars = validate_and_copy_tuple(freevars);
386 else
387 ourfreevars = PyTuple_New(0);
388 if (ourfreevars == NULL)
389 goto cleanup;
390 if (cellvars)
391 ourcellvars = validate_and_copy_tuple(cellvars);
392 else
393 ourcellvars = PyTuple_New(0);
394 if (ourcellvars == NULL)
395 goto cleanup;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000396
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 co = (PyObject *)PyCode_New(argcount, kwonlyargcount,
398 nlocals, stacksize, flags,
399 code, consts, ournames, ourvarnames,
400 ourfreevars, ourcellvars, filename,
401 name, firstlineno, lnotab);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000402 cleanup:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 Py_XDECREF(ournames);
404 Py_XDECREF(ourvarnames);
405 Py_XDECREF(ourfreevars);
406 Py_XDECREF(ourcellvars);
407 return co;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000408}
409
410static void
411code_dealloc(PyCodeObject *co)
412{
Brett Cannon5c4de282016-09-07 11:16:41 -0700413 if (co->co_extra != NULL) {
Dino Viehland2997fec2017-06-12 18:46:35 -0700414 __PyCodeExtraState *state = __PyCodeExtraState_Get();
Brett Cannond0600ed2016-09-07 14:30:39 -0700415 _PyCodeObjectExtra *co_extra = co->co_extra;
Brett Cannon5c4de282016-09-07 11:16:41 -0700416
Brett Cannond0600ed2016-09-07 14:30:39 -0700417 for (Py_ssize_t i = 0; i < co_extra->ce_size; i++) {
Dino Viehland2997fec2017-06-12 18:46:35 -0700418 freefunc free_extra = state->co_extra_freefuncs[i];
Brett Cannon5c4de282016-09-07 11:16:41 -0700419
420 if (free_extra != NULL) {
Brett Cannond0600ed2016-09-07 14:30:39 -0700421 free_extra(co_extra->ce_extras[i]);
Brett Cannon5c4de282016-09-07 11:16:41 -0700422 }
423 }
424
Victor Stinner26daad42017-06-28 02:28:51 +0200425 PyMem_Free(co_extra->ce_extras);
426 PyMem_Free(co_extra);
Brett Cannon5c4de282016-09-07 11:16:41 -0700427 }
428
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000429 Py_XDECREF(co->co_code);
430 Py_XDECREF(co->co_consts);
431 Py_XDECREF(co->co_names);
432 Py_XDECREF(co->co_varnames);
433 Py_XDECREF(co->co_freevars);
434 Py_XDECREF(co->co_cellvars);
435 Py_XDECREF(co->co_filename);
436 Py_XDECREF(co->co_name);
437 Py_XDECREF(co->co_lnotab);
Benjamin Peterson90037602011-06-25 22:54:45 -0500438 if (co->co_cell2arg != NULL)
439 PyMem_FREE(co->co_cell2arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 if (co->co_zombieframe != NULL)
441 PyObject_GC_Del(co->co_zombieframe);
442 if (co->co_weakreflist != NULL)
443 PyObject_ClearWeakRefs((PyObject*)co);
444 PyObject_DEL(co);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000445}
446
447static PyObject *
Martin v. Löwis3bbd2fa2012-07-26 22:23:23 +0200448code_sizeof(PyCodeObject *co, void *unused)
449{
Dong-hee Nadf5df132017-04-20 17:26:25 +0900450 Py_ssize_t res = _PyObject_SIZE(Py_TYPE(co));
451 _PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra*) co->co_extra;
Martin v. Löwis3bbd2fa2012-07-26 22:23:23 +0200452
Martin v. Löwis3bbd2fa2012-07-26 22:23:23 +0200453 if (co->co_cell2arg != NULL && co->co_cellvars != NULL)
Dong-hee Nadf5df132017-04-20 17:26:25 +0900454 res += PyTuple_GET_SIZE(co->co_cellvars) * sizeof(Py_ssize_t);
455
456 if (co_extra != NULL)
457 res += co_extra->ce_size * sizeof(co_extra->ce_extras[0]);
458
Martin v. Löwis3bbd2fa2012-07-26 22:23:23 +0200459 return PyLong_FromSsize_t(res);
460}
461
462static PyObject *
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000463code_repr(PyCodeObject *co)
464{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000465 int lineno;
466 if (co->co_firstlineno != 0)
467 lineno = co->co_firstlineno;
468 else
469 lineno = -1;
470 if (co->co_filename && PyUnicode_Check(co->co_filename)) {
471 return PyUnicode_FromFormat(
Victor Stinneraaa4e9a2011-01-05 03:33:26 +0000472 "<code object %U at %p, file \"%U\", line %d>",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 co->co_name, co, co->co_filename, lineno);
474 } else {
475 return PyUnicode_FromFormat(
Victor Stinneraaa4e9a2011-01-05 03:33:26 +0000476 "<code object %U at %p, file ???, line %d>",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000477 co->co_name, co, lineno);
478 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000479}
480
Victor Stinnerefb24132016-01-22 12:33:12 +0100481PyObject*
482_PyCode_ConstantKey(PyObject *op)
483{
484 PyObject *key;
485
486 /* Py_None and Py_Ellipsis are singleton */
487 if (op == Py_None || op == Py_Ellipsis
488 || PyLong_CheckExact(op)
489 || PyBool_Check(op)
490 || PyBytes_CheckExact(op)
491 || PyUnicode_CheckExact(op)
492 /* code_richcompare() uses _PyCode_ConstantKey() internally */
493 || PyCode_Check(op)) {
494 key = PyTuple_Pack(2, Py_TYPE(op), op);
495 }
496 else if (PyFloat_CheckExact(op)) {
497 double d = PyFloat_AS_DOUBLE(op);
498 /* all we need is to make the tuple different in either the 0.0
499 * or -0.0 case from all others, just to avoid the "coercion".
500 */
501 if (d == 0.0 && copysign(1.0, d) < 0.0)
502 key = PyTuple_Pack(3, Py_TYPE(op), op, Py_None);
503 else
504 key = PyTuple_Pack(2, Py_TYPE(op), op);
505 }
506 else if (PyComplex_CheckExact(op)) {
507 Py_complex z;
508 int real_negzero, imag_negzero;
509 /* For the complex case we must make complex(x, 0.)
510 different from complex(x, -0.) and complex(0., y)
511 different from complex(-0., y), for any x and y.
512 All four complex zeros must be distinguished.*/
513 z = PyComplex_AsCComplex(op);
514 real_negzero = z.real == 0.0 && copysign(1.0, z.real) < 0.0;
515 imag_negzero = z.imag == 0.0 && copysign(1.0, z.imag) < 0.0;
516 /* use True, False and None singleton as tags for the real and imag
517 * sign, to make tuples different */
518 if (real_negzero && imag_negzero) {
519 key = PyTuple_Pack(3, Py_TYPE(op), op, Py_True);
520 }
521 else if (imag_negzero) {
522 key = PyTuple_Pack(3, Py_TYPE(op), op, Py_False);
523 }
524 else if (real_negzero) {
525 key = PyTuple_Pack(3, Py_TYPE(op), op, Py_None);
526 }
527 else {
528 key = PyTuple_Pack(2, Py_TYPE(op), op);
529 }
530 }
531 else if (PyTuple_CheckExact(op)) {
532 Py_ssize_t i, len;
533 PyObject *tuple;
534
535 len = PyTuple_GET_SIZE(op);
536 tuple = PyTuple_New(len);
537 if (tuple == NULL)
538 return NULL;
539
540 for (i=0; i < len; i++) {
541 PyObject *item, *item_key;
542
543 item = PyTuple_GET_ITEM(op, i);
544 item_key = _PyCode_ConstantKey(item);
545 if (item_key == NULL) {
546 Py_DECREF(tuple);
547 return NULL;
548 }
549
550 PyTuple_SET_ITEM(tuple, i, item_key);
551 }
552
Serhiy Storchaka713640c2017-01-24 20:49:26 +0200553 key = PyTuple_Pack(2, tuple, op);
Victor Stinnerefb24132016-01-22 12:33:12 +0100554 Py_DECREF(tuple);
555 }
556 else if (PyFrozenSet_CheckExact(op)) {
557 Py_ssize_t pos = 0;
558 PyObject *item;
559 Py_hash_t hash;
560 Py_ssize_t i, len;
561 PyObject *tuple, *set;
562
563 len = PySet_GET_SIZE(op);
564 tuple = PyTuple_New(len);
565 if (tuple == NULL)
566 return NULL;
567
568 i = 0;
569 while (_PySet_NextEntry(op, &pos, &item, &hash)) {
570 PyObject *item_key;
571
572 item_key = _PyCode_ConstantKey(item);
573 if (item_key == NULL) {
574 Py_DECREF(tuple);
575 return NULL;
576 }
577
578 assert(i < len);
579 PyTuple_SET_ITEM(tuple, i, item_key);
580 i++;
581 }
582 set = PyFrozenSet_New(tuple);
583 Py_DECREF(tuple);
584 if (set == NULL)
585 return NULL;
586
Serhiy Storchaka713640c2017-01-24 20:49:26 +0200587 key = PyTuple_Pack(2, set, op);
Victor Stinnerefb24132016-01-22 12:33:12 +0100588 Py_DECREF(set);
589 return key;
590 }
591 else {
Martin Panter6245cb32016-04-15 02:14:19 +0000592 /* for other types, use the object identifier as a unique identifier
Victor Stinnerefb24132016-01-22 12:33:12 +0100593 * to ensure that they are seen as unequal. */
594 PyObject *obj_id = PyLong_FromVoidPtr(op);
595 if (obj_id == NULL)
596 return NULL;
597
Serhiy Storchaka713640c2017-01-24 20:49:26 +0200598 key = PyTuple_Pack(2, obj_id, op);
Victor Stinnerefb24132016-01-22 12:33:12 +0100599 Py_DECREF(obj_id);
600 }
601 return key;
602}
603
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000604static PyObject *
605code_richcompare(PyObject *self, PyObject *other, int op)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000606{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000607 PyCodeObject *co, *cp;
608 int eq;
Victor Stinnerefb24132016-01-22 12:33:12 +0100609 PyObject *consts1, *consts2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000610 PyObject *res;
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000611
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000612 if ((op != Py_EQ && op != Py_NE) ||
613 !PyCode_Check(self) ||
614 !PyCode_Check(other)) {
Brian Curtindfc80e32011-08-10 20:28:54 -0500615 Py_RETURN_NOTIMPLEMENTED;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000616 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000617
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000618 co = (PyCodeObject *)self;
619 cp = (PyCodeObject *)other;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000620
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000621 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
622 if (eq <= 0) goto unequal;
623 eq = co->co_argcount == cp->co_argcount;
624 if (!eq) goto unequal;
625 eq = co->co_kwonlyargcount == cp->co_kwonlyargcount;
626 if (!eq) goto unequal;
627 eq = co->co_nlocals == cp->co_nlocals;
628 if (!eq) goto unequal;
629 eq = co->co_flags == cp->co_flags;
630 if (!eq) goto unequal;
631 eq = co->co_firstlineno == cp->co_firstlineno;
632 if (!eq) goto unequal;
633 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
634 if (eq <= 0) goto unequal;
Victor Stinnerefb24132016-01-22 12:33:12 +0100635
636 /* compare constants */
637 consts1 = _PyCode_ConstantKey(co->co_consts);
638 if (!consts1)
639 return NULL;
640 consts2 = _PyCode_ConstantKey(cp->co_consts);
641 if (!consts2) {
642 Py_DECREF(consts1);
643 return NULL;
644 }
645 eq = PyObject_RichCompareBool(consts1, consts2, Py_EQ);
646 Py_DECREF(consts1);
647 Py_DECREF(consts2);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000648 if (eq <= 0) goto unequal;
Victor Stinnerefb24132016-01-22 12:33:12 +0100649
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000650 eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ);
651 if (eq <= 0) goto unequal;
652 eq = PyObject_RichCompareBool(co->co_varnames, cp->co_varnames, Py_EQ);
653 if (eq <= 0) goto unequal;
654 eq = PyObject_RichCompareBool(co->co_freevars, cp->co_freevars, Py_EQ);
655 if (eq <= 0) goto unequal;
656 eq = PyObject_RichCompareBool(co->co_cellvars, cp->co_cellvars, Py_EQ);
657 if (eq <= 0) goto unequal;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000658
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000659 if (op == Py_EQ)
660 res = Py_True;
661 else
662 res = Py_False;
663 goto done;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000664
665 unequal:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000666 if (eq < 0)
667 return NULL;
668 if (op == Py_NE)
669 res = Py_True;
670 else
671 res = Py_False;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000672
673 done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000674 Py_INCREF(res);
675 return res;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000676}
677
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000678static Py_hash_t
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000679code_hash(PyCodeObject *co)
680{
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000681 Py_hash_t h, h0, h1, h2, h3, h4, h5, h6;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000682 h0 = PyObject_Hash(co->co_name);
683 if (h0 == -1) return -1;
684 h1 = PyObject_Hash(co->co_code);
685 if (h1 == -1) return -1;
686 h2 = PyObject_Hash(co->co_consts);
687 if (h2 == -1) return -1;
688 h3 = PyObject_Hash(co->co_names);
689 if (h3 == -1) return -1;
690 h4 = PyObject_Hash(co->co_varnames);
691 if (h4 == -1) return -1;
692 h5 = PyObject_Hash(co->co_freevars);
693 if (h5 == -1) return -1;
694 h6 = PyObject_Hash(co->co_cellvars);
695 if (h6 == -1) return -1;
696 h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^
697 co->co_argcount ^ co->co_kwonlyargcount ^
698 co->co_nlocals ^ co->co_flags;
699 if (h == -1) h = -2;
700 return h;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000701}
702
703/* XXX code objects need to participate in GC? */
704
Martin v. Löwis3bbd2fa2012-07-26 22:23:23 +0200705static struct PyMethodDef code_methods[] = {
706 {"__sizeof__", (PyCFunction)code_sizeof, METH_NOARGS},
707 {NULL, NULL} /* sentinel */
708};
709
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000710PyTypeObject PyCode_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000711 PyVarObject_HEAD_INIT(&PyType_Type, 0)
712 "code",
713 sizeof(PyCodeObject),
714 0,
715 (destructor)code_dealloc, /* tp_dealloc */
716 0, /* tp_print */
717 0, /* tp_getattr */
718 0, /* tp_setattr */
719 0, /* tp_reserved */
720 (reprfunc)code_repr, /* tp_repr */
721 0, /* tp_as_number */
722 0, /* tp_as_sequence */
723 0, /* tp_as_mapping */
724 (hashfunc)code_hash, /* tp_hash */
725 0, /* tp_call */
726 0, /* tp_str */
727 PyObject_GenericGetAttr, /* tp_getattro */
728 0, /* tp_setattro */
729 0, /* tp_as_buffer */
730 Py_TPFLAGS_DEFAULT, /* tp_flags */
731 code_doc, /* tp_doc */
732 0, /* tp_traverse */
733 0, /* tp_clear */
734 code_richcompare, /* tp_richcompare */
735 offsetof(PyCodeObject, co_weakreflist), /* tp_weaklistoffset */
736 0, /* tp_iter */
737 0, /* tp_iternext */
Martin v. Löwis3bbd2fa2012-07-26 22:23:23 +0200738 code_methods, /* tp_methods */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000739 code_memberlist, /* tp_members */
740 0, /* tp_getset */
741 0, /* tp_base */
742 0, /* tp_dict */
743 0, /* tp_descr_get */
744 0, /* tp_descr_set */
745 0, /* tp_dictoffset */
746 0, /* tp_init */
747 0, /* tp_alloc */
748 code_new, /* tp_new */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000749};
750
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000751/* Use co_lnotab to compute the line number from a bytecode index, addrq. See
752 lnotab_notes.txt for the details of the lnotab representation.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000753*/
754
755int
756PyCode_Addr2Line(PyCodeObject *co, int addrq)
757{
Victor Stinner0fcab4a2011-01-04 12:59:15 +0000758 Py_ssize_t size = PyBytes_Size(co->co_lnotab) / 2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000759 unsigned char *p = (unsigned char*)PyBytes_AsString(co->co_lnotab);
760 int line = co->co_firstlineno;
761 int addr = 0;
762 while (--size >= 0) {
763 addr += *p++;
764 if (addr > addrq)
765 break;
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100766 line += (signed char)*p;
767 p++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000768 }
769 return line;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000770}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000771
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000772/* Update *bounds to describe the first and one-past-the-last instructions in
773 the same line as lasti. Return the number of that line. */
774int
775_PyCode_CheckLineNumber(PyCodeObject* co, int lasti, PyAddrPair *bounds)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000776{
Victor Stinner0fcab4a2011-01-04 12:59:15 +0000777 Py_ssize_t size;
778 int addr, line;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000779 unsigned char* p;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000780
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000781 p = (unsigned char*)PyBytes_AS_STRING(co->co_lnotab);
782 size = PyBytes_GET_SIZE(co->co_lnotab) / 2;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000783
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000784 addr = 0;
785 line = co->co_firstlineno;
786 assert(line > 0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000787
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000788 /* possible optimization: if f->f_lasti == instr_ub
789 (likely to be a common case) then we already know
790 instr_lb -- if we stored the matching value of p
Raymond Hettinger15f44ab2016-08-30 10:47:49 -0700791 somewhere we could skip the first while loop. */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000792
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000793 /* See lnotab_notes.txt for the description of
794 co_lnotab. A point to remember: increments to p
795 come in (addr, line) pairs. */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000796
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000797 bounds->ap_lower = 0;
798 while (size > 0) {
799 if (addr + *p > lasti)
800 break;
801 addr += *p++;
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100802 if ((signed char)*p)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000803 bounds->ap_lower = addr;
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100804 line += (signed char)*p;
805 p++;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 --size;
807 }
808
809 if (size > 0) {
810 while (--size >= 0) {
811 addr += *p++;
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100812 if ((signed char)*p)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000813 break;
Victor Stinnerf3914eb2016-01-20 12:16:21 +0100814 p++;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000815 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000816 bounds->ap_upper = addr;
817 }
818 else {
819 bounds->ap_upper = INT_MAX;
820 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000821
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000822 return line;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000823}
Brett Cannon5c4de282016-09-07 11:16:41 -0700824
825
826int
827_PyCode_GetExtra(PyObject *code, Py_ssize_t index, void **extra)
828{
Brett Cannon5c4de282016-09-07 11:16:41 -0700829 if (!PyCode_Check(code)) {
830 PyErr_BadInternalCall();
Brett Cannon3788b852016-09-07 12:51:08 -0700831 return -1;
Brett Cannon5c4de282016-09-07 11:16:41 -0700832 }
833
Brett Cannond0600ed2016-09-07 14:30:39 -0700834 PyCodeObject *o = (PyCodeObject*) code;
835 _PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra*) o->co_extra;
Brett Cannon5c4de282016-09-07 11:16:41 -0700836
Brett Cannond0600ed2016-09-07 14:30:39 -0700837
838 if (co_extra == NULL || co_extra->ce_size <= index) {
Dino Viehland2997fec2017-06-12 18:46:35 -0700839 *extra = NULL;
Brett Cannon5c4de282016-09-07 11:16:41 -0700840 return 0;
841 }
842
Brett Cannond0600ed2016-09-07 14:30:39 -0700843 *extra = co_extra->ce_extras[index];
Brett Cannon5c4de282016-09-07 11:16:41 -0700844 return 0;
845}
846
847
848int
849_PyCode_SetExtra(PyObject *code, Py_ssize_t index, void *extra)
850{
Dino Viehland2997fec2017-06-12 18:46:35 -0700851 __PyCodeExtraState *state = __PyCodeExtraState_Get();
Brett Cannon5c4de282016-09-07 11:16:41 -0700852
853 if (!PyCode_Check(code) || index < 0 ||
Dino Viehland2997fec2017-06-12 18:46:35 -0700854 index >= state->co_extra_user_count) {
Brett Cannon5c4de282016-09-07 11:16:41 -0700855 PyErr_BadInternalCall();
Brett Cannon3788b852016-09-07 12:51:08 -0700856 return -1;
Brett Cannon5c4de282016-09-07 11:16:41 -0700857 }
858
Brett Cannond0600ed2016-09-07 14:30:39 -0700859 PyCodeObject *o = (PyCodeObject*) code;
860 _PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra *) o->co_extra;
Brett Cannon5c4de282016-09-07 11:16:41 -0700861
Brett Cannond0600ed2016-09-07 14:30:39 -0700862 if (co_extra == NULL) {
Brian Colemana6e84932017-03-02 22:21:53 +0000863 co_extra = PyMem_Malloc(sizeof(_PyCodeObjectExtra));
864 if (co_extra == NULL) {
Brett Cannon3788b852016-09-07 12:51:08 -0700865 return -1;
Brett Cannon5c4de282016-09-07 11:16:41 -0700866 }
867
Brett Cannond0600ed2016-09-07 14:30:39 -0700868 co_extra->ce_extras = PyMem_Malloc(
Dino Viehland2997fec2017-06-12 18:46:35 -0700869 state->co_extra_user_count * sizeof(void*));
Brett Cannond0600ed2016-09-07 14:30:39 -0700870 if (co_extra->ce_extras == NULL) {
Brian Colemana6e84932017-03-02 22:21:53 +0000871 PyMem_Free(co_extra);
Brett Cannon3788b852016-09-07 12:51:08 -0700872 return -1;
Brett Cannon5c4de282016-09-07 11:16:41 -0700873 }
874
Dino Viehland2997fec2017-06-12 18:46:35 -0700875 co_extra->ce_size = state->co_extra_user_count;
Brett Cannon5c4de282016-09-07 11:16:41 -0700876
Brett Cannond0600ed2016-09-07 14:30:39 -0700877 for (Py_ssize_t i = 0; i < co_extra->ce_size; i++) {
878 co_extra->ce_extras[i] = NULL;
Brett Cannon5c4de282016-09-07 11:16:41 -0700879 }
Brian Colemana6e84932017-03-02 22:21:53 +0000880
881 o->co_extra = co_extra;
Brett Cannon5c4de282016-09-07 11:16:41 -0700882 }
Brett Cannond0600ed2016-09-07 14:30:39 -0700883 else if (co_extra->ce_size <= index) {
Brian Colemana6e84932017-03-02 22:21:53 +0000884 void** ce_extras = PyMem_Realloc(
Dino Viehland2997fec2017-06-12 18:46:35 -0700885 co_extra->ce_extras, state->co_extra_user_count * sizeof(void*));
Brett Cannon5c4de282016-09-07 11:16:41 -0700886
Brian Colemana6e84932017-03-02 22:21:53 +0000887 if (ce_extras == NULL) {
Brett Cannon3788b852016-09-07 12:51:08 -0700888 return -1;
Brett Cannon5c4de282016-09-07 11:16:41 -0700889 }
890
Brian Colemana6e84932017-03-02 22:21:53 +0000891 for (Py_ssize_t i = co_extra->ce_size;
Dino Viehland2997fec2017-06-12 18:46:35 -0700892 i < state->co_extra_user_count;
Brian Colemana6e84932017-03-02 22:21:53 +0000893 i++) {
894 ce_extras[i] = NULL;
Brett Cannon5c4de282016-09-07 11:16:41 -0700895 }
Brian Colemana6e84932017-03-02 22:21:53 +0000896
897 co_extra->ce_extras = ce_extras;
Dino Viehland2997fec2017-06-12 18:46:35 -0700898 co_extra->ce_size = state->co_extra_user_count;
899 }
900
901 if (co_extra->ce_extras[index] != NULL) {
902 freefunc free = state->co_extra_freefuncs[index];
903 if (free != NULL) {
904 free(co_extra->ce_extras[index]);
905 }
Brett Cannon5c4de282016-09-07 11:16:41 -0700906 }
907
Brett Cannond0600ed2016-09-07 14:30:39 -0700908 co_extra->ce_extras[index] = extra;
Brett Cannon5c4de282016-09-07 11:16:41 -0700909 return 0;
910}