blob: 550e28498d20658be44be7d9236f2191837ffc3b [file] [log] [blame]
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00001#include "Python.h"
2#include "code.h"
3#include "structmember.h"
4
5#define NAME_CHARS \
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00006 "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz"
Jeremy Hylton3e0055f2005-10-20 19:59:25 +00007
8/* all_name_chars(s): true iff all chars in s are valid NAME_CHARS */
9
10static int
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020011all_name_chars(PyObject *o)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000012{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000013 static char ok_name_char[256];
14 static unsigned char *name_chars = (unsigned char *)NAME_CHARS;
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020015 PyUnicodeObject *u = (PyUnicodeObject *)o;
16 const unsigned char *s;
17
18 if (!PyUnicode_Check(o) || PyUnicode_READY(u) == -1 ||
19 PyUnicode_MAX_CHAR_VALUE(u) >= 128)
20 return 0;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000021
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000022 if (ok_name_char[*name_chars] == 0) {
23 unsigned char *p;
24 for (p = name_chars; *p; p++)
25 ok_name_char[*p] = 1;
26 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020027 s = PyUnicode_1BYTE_DATA(u);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000028 while (*s) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000029 if (ok_name_char[*s++] == 0)
30 return 0;
31 }
32 return 1;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000033}
34
35static void
36intern_strings(PyObject *tuple)
37{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000038 Py_ssize_t i;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000039
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000040 for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
41 PyObject *v = PyTuple_GET_ITEM(tuple, i);
42 if (v == NULL || !PyUnicode_CheckExact(v)) {
43 Py_FatalError("non-string found in code slot");
44 }
45 PyUnicode_InternInPlace(&PyTuple_GET_ITEM(tuple, i));
46 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000047}
48
49
50PyCodeObject *
Guido van Rossum4f72a782006-10-27 23:31:49 +000051PyCode_New(int argcount, int kwonlyargcount,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000052 int nlocals, int stacksize, int flags,
53 PyObject *code, PyObject *consts, PyObject *names,
54 PyObject *varnames, PyObject *freevars, PyObject *cellvars,
55 PyObject *filename, PyObject *name, int firstlineno,
56 PyObject *lnotab)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +000057{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058 PyCodeObject *co;
Benjamin Peterson90037602011-06-25 22:54:45 -050059 unsigned char *cell2arg = NULL;
60 Py_ssize_t i, n_cellvars;
Guido van Rossum00bc0e02007-10-15 02:52:41 +000061
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000062 /* Check argument types */
63 if (argcount < 0 || kwonlyargcount < 0 || nlocals < 0 ||
64 code == NULL ||
65 consts == NULL || !PyTuple_Check(consts) ||
66 names == NULL || !PyTuple_Check(names) ||
67 varnames == NULL || !PyTuple_Check(varnames) ||
68 freevars == NULL || !PyTuple_Check(freevars) ||
69 cellvars == NULL || !PyTuple_Check(cellvars) ||
70 name == NULL || !PyUnicode_Check(name) ||
71 filename == NULL || !PyUnicode_Check(filename) ||
72 lnotab == NULL || !PyBytes_Check(lnotab) ||
73 !PyObject_CheckReadBuffer(code)) {
74 PyErr_BadInternalCall();
75 return NULL;
76 }
Benjamin Peterson90037602011-06-25 22:54:45 -050077 n_cellvars = PyTuple_GET_SIZE(cellvars);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000078 intern_strings(names);
79 intern_strings(varnames);
80 intern_strings(freevars);
81 intern_strings(cellvars);
82 /* Intern selected string constants */
Benjamin Peterson90037602011-06-25 22:54:45 -050083 for (i = PyTuple_GET_SIZE(consts); --i >= 0; ) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000084 PyObject *v = PyTuple_GetItem(consts, i);
Martin v. Löwisd63a3b82011-09-28 07:41:54 +020085 if (!all_name_chars(v))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000086 continue;
87 PyUnicode_InternInPlace(&PyTuple_GET_ITEM(consts, i));
88 }
Benjamin Peterson90037602011-06-25 22:54:45 -050089 /* Create mapping between cells and arguments if needed. */
90 if (n_cellvars) {
91 Py_ssize_t total_args = argcount + kwonlyargcount +
92 ((flags & CO_VARARGS) != 0) + ((flags & CO_VARKEYWORDS) != 0);
93 Py_ssize_t alloc_size = sizeof(unsigned char) * n_cellvars;
94 int used_cell2arg = 0;
95 cell2arg = PyMem_MALLOC(alloc_size);
96 if (cell2arg == NULL)
97 return NULL;
98 memset(cell2arg, CO_CELL_NOT_AN_ARG, alloc_size);
99 /* Find cells which are also arguments. */
100 for (i = 0; i < n_cellvars; i++) {
101 Py_ssize_t j;
102 PyObject *cell = PyTuple_GET_ITEM(cellvars, i);
103 for (j = 0; j < total_args; j++) {
104 PyObject *arg = PyTuple_GET_ITEM(varnames, j);
105 if (!PyUnicode_Compare(cell, arg)) {
106 cell2arg[i] = j;
107 used_cell2arg = 1;
108 break;
109 }
110 }
111 }
112 if (!used_cell2arg) {
113 PyMem_FREE(cell2arg);
114 cell2arg = NULL;
115 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 }
Benjamin Peterson90037602011-06-25 22:54:45 -0500117 co = PyObject_NEW(PyCodeObject, &PyCode_Type);
118 if (co == NULL) {
119 if (cell2arg)
120 PyMem_FREE(cell2arg);
121 return NULL;
122 }
123 co->co_argcount = argcount;
124 co->co_kwonlyargcount = kwonlyargcount;
125 co->co_nlocals = nlocals;
126 co->co_stacksize = stacksize;
127 co->co_flags = flags;
128 Py_INCREF(code);
129 co->co_code = code;
130 Py_INCREF(consts);
131 co->co_consts = consts;
132 Py_INCREF(names);
133 co->co_names = names;
134 Py_INCREF(varnames);
135 co->co_varnames = varnames;
136 Py_INCREF(freevars);
137 co->co_freevars = freevars;
138 Py_INCREF(cellvars);
139 co->co_cellvars = cellvars;
140 co->co_cell2arg = cell2arg;
141 Py_INCREF(filename);
142 co->co_filename = filename;
143 Py_INCREF(name);
144 co->co_name = name;
145 co->co_firstlineno = firstlineno;
146 Py_INCREF(lnotab);
147 co->co_lnotab = lnotab;
148 co->co_zombieframe = NULL;
149 co->co_weakreflist = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000150 return co;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000151}
152
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000153PyCodeObject *
154PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno)
155{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000156 static PyObject *emptystring = NULL;
157 static PyObject *nulltuple = NULL;
158 PyObject *filename_ob = NULL;
159 PyObject *funcname_ob = NULL;
160 PyCodeObject *result = NULL;
161 if (emptystring == NULL) {
162 emptystring = PyBytes_FromString("");
163 if (emptystring == NULL)
164 goto failed;
165 }
166 if (nulltuple == NULL) {
167 nulltuple = PyTuple_New(0);
168 if (nulltuple == NULL)
169 goto failed;
170 }
171 funcname_ob = PyUnicode_FromString(funcname);
172 if (funcname_ob == NULL)
173 goto failed;
174 filename_ob = PyUnicode_DecodeFSDefault(filename);
175 if (filename_ob == NULL)
176 goto failed;
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000177
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000178 result = PyCode_New(0, /* argcount */
179 0, /* kwonlyargcount */
180 0, /* nlocals */
181 0, /* stacksize */
182 0, /* flags */
183 emptystring, /* code */
184 nulltuple, /* consts */
185 nulltuple, /* names */
186 nulltuple, /* varnames */
187 nulltuple, /* freevars */
188 nulltuple, /* cellvars */
189 filename_ob, /* filename */
190 funcname_ob, /* name */
191 firstlineno, /* firstlineno */
192 emptystring /* lnotab */
193 );
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000194
195failed:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000196 Py_XDECREF(funcname_ob);
197 Py_XDECREF(filename_ob);
198 return result;
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000199}
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000200
201#define OFF(x) offsetof(PyCodeObject, x)
202
203static PyMemberDef code_memberlist[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 {"co_argcount", T_INT, OFF(co_argcount), READONLY},
205 {"co_kwonlyargcount", T_INT, OFF(co_kwonlyargcount), READONLY},
206 {"co_nlocals", T_INT, OFF(co_nlocals), READONLY},
207 {"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
208 {"co_flags", T_INT, OFF(co_flags), READONLY},
209 {"co_code", T_OBJECT, OFF(co_code), READONLY},
210 {"co_consts", T_OBJECT, OFF(co_consts), READONLY},
211 {"co_names", T_OBJECT, OFF(co_names), READONLY},
212 {"co_varnames", T_OBJECT, OFF(co_varnames), READONLY},
213 {"co_freevars", T_OBJECT, OFF(co_freevars), READONLY},
214 {"co_cellvars", T_OBJECT, OFF(co_cellvars), READONLY},
215 {"co_filename", T_OBJECT, OFF(co_filename), READONLY},
216 {"co_name", T_OBJECT, OFF(co_name), READONLY},
217 {"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY},
218 {"co_lnotab", T_OBJECT, OFF(co_lnotab), READONLY},
219 {NULL} /* Sentinel */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000220};
221
222/* Helper for code_new: return a shallow copy of a tuple that is
223 guaranteed to contain exact strings, by converting string subclasses
224 to exact strings and complaining if a non-string is found. */
225static PyObject*
226validate_and_copy_tuple(PyObject *tup)
227{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000228 PyObject *newtuple;
229 PyObject *item;
230 Py_ssize_t i, len;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000231
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000232 len = PyTuple_GET_SIZE(tup);
233 newtuple = PyTuple_New(len);
234 if (newtuple == NULL)
235 return NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000236
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000237 for (i = 0; i < len; i++) {
238 item = PyTuple_GET_ITEM(tup, i);
239 if (PyUnicode_CheckExact(item)) {
240 Py_INCREF(item);
241 }
242 else if (!PyUnicode_Check(item)) {
243 PyErr_Format(
244 PyExc_TypeError,
245 "name tuples must contain only "
246 "strings, not '%.500s'",
247 item->ob_type->tp_name);
248 Py_DECREF(newtuple);
249 return NULL;
250 }
251 else {
Victor Stinnerbf6e5602011-12-12 01:53:47 +0100252 item = _PyUnicode_Copy(item);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000253 if (item == NULL) {
254 Py_DECREF(newtuple);
255 return NULL;
256 }
257 }
258 PyTuple_SET_ITEM(newtuple, i, item);
259 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000260
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000261 return newtuple;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000262}
263
264PyDoc_STRVAR(code_doc,
Georg Brandl8c1a50a2009-07-18 09:07:48 +0000265"code(argcount, kwonlyargcount, nlocals, stacksize, flags, codestring,\n\
Georg Brandla1e7e132008-01-26 09:39:23 +0000266 constants, names, varnames, filename, name, firstlineno,\n\
267 lnotab[, freevars[, cellvars]])\n\
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000268\n\
269Create a code object. Not for the faint of heart.");
270
271static PyObject *
272code_new(PyTypeObject *type, PyObject *args, PyObject *kw)
273{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000274 int argcount;
275 int kwonlyargcount;
276 int nlocals;
277 int stacksize;
278 int flags;
279 PyObject *co = NULL;
280 PyObject *code;
281 PyObject *consts;
282 PyObject *names, *ournames = NULL;
283 PyObject *varnames, *ourvarnames = NULL;
284 PyObject *freevars = NULL, *ourfreevars = NULL;
285 PyObject *cellvars = NULL, *ourcellvars = NULL;
286 PyObject *filename;
287 PyObject *name;
288 int firstlineno;
289 PyObject *lnotab;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000290
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000291 if (!PyArg_ParseTuple(args, "iiiiiSO!O!O!UUiS|O!O!:code",
292 &argcount, &kwonlyargcount,
293 &nlocals, &stacksize, &flags,
294 &code,
295 &PyTuple_Type, &consts,
296 &PyTuple_Type, &names,
297 &PyTuple_Type, &varnames,
298 &filename, &name,
299 &firstlineno, &lnotab,
300 &PyTuple_Type, &freevars,
301 &PyTuple_Type, &cellvars))
302 return NULL;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000303
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000304 if (argcount < 0) {
305 PyErr_SetString(
306 PyExc_ValueError,
307 "code: argcount must not be negative");
308 goto cleanup;
309 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000310
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000311 if (kwonlyargcount < 0) {
312 PyErr_SetString(
313 PyExc_ValueError,
314 "code: kwonlyargcount must not be negative");
315 goto cleanup;
316 }
317 if (nlocals < 0) {
318 PyErr_SetString(
319 PyExc_ValueError,
320 "code: nlocals must not be negative");
321 goto cleanup;
322 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000323
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000324 ournames = validate_and_copy_tuple(names);
325 if (ournames == NULL)
326 goto cleanup;
327 ourvarnames = validate_and_copy_tuple(varnames);
328 if (ourvarnames == NULL)
329 goto cleanup;
330 if (freevars)
331 ourfreevars = validate_and_copy_tuple(freevars);
332 else
333 ourfreevars = PyTuple_New(0);
334 if (ourfreevars == NULL)
335 goto cleanup;
336 if (cellvars)
337 ourcellvars = validate_and_copy_tuple(cellvars);
338 else
339 ourcellvars = PyTuple_New(0);
340 if (ourcellvars == NULL)
341 goto cleanup;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000342
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 co = (PyObject *)PyCode_New(argcount, kwonlyargcount,
344 nlocals, stacksize, flags,
345 code, consts, ournames, ourvarnames,
346 ourfreevars, ourcellvars, filename,
347 name, firstlineno, lnotab);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000348 cleanup:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 Py_XDECREF(ournames);
350 Py_XDECREF(ourvarnames);
351 Py_XDECREF(ourfreevars);
352 Py_XDECREF(ourcellvars);
353 return co;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000354}
355
356static void
357code_dealloc(PyCodeObject *co)
358{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000359 Py_XDECREF(co->co_code);
360 Py_XDECREF(co->co_consts);
361 Py_XDECREF(co->co_names);
362 Py_XDECREF(co->co_varnames);
363 Py_XDECREF(co->co_freevars);
364 Py_XDECREF(co->co_cellvars);
365 Py_XDECREF(co->co_filename);
366 Py_XDECREF(co->co_name);
367 Py_XDECREF(co->co_lnotab);
Benjamin Peterson90037602011-06-25 22:54:45 -0500368 if (co->co_cell2arg != NULL)
369 PyMem_FREE(co->co_cell2arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000370 if (co->co_zombieframe != NULL)
371 PyObject_GC_Del(co->co_zombieframe);
372 if (co->co_weakreflist != NULL)
373 PyObject_ClearWeakRefs((PyObject*)co);
374 PyObject_DEL(co);
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000375}
376
377static PyObject *
378code_repr(PyCodeObject *co)
379{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 int lineno;
381 if (co->co_firstlineno != 0)
382 lineno = co->co_firstlineno;
383 else
384 lineno = -1;
385 if (co->co_filename && PyUnicode_Check(co->co_filename)) {
386 return PyUnicode_FromFormat(
Victor Stinneraaa4e9a2011-01-05 03:33:26 +0000387 "<code object %U at %p, file \"%U\", line %d>",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000388 co->co_name, co, co->co_filename, lineno);
389 } else {
390 return PyUnicode_FromFormat(
Victor Stinneraaa4e9a2011-01-05 03:33:26 +0000391 "<code object %U at %p, file ???, line %d>",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000392 co->co_name, co, lineno);
393 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000394}
395
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000396static PyObject *
397code_richcompare(PyObject *self, PyObject *other, int op)
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000398{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000399 PyCodeObject *co, *cp;
400 int eq;
401 PyObject *res;
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000402
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 if ((op != Py_EQ && op != Py_NE) ||
404 !PyCode_Check(self) ||
405 !PyCode_Check(other)) {
Brian Curtindfc80e32011-08-10 20:28:54 -0500406 Py_RETURN_NOTIMPLEMENTED;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000407 }
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000408
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000409 co = (PyCodeObject *)self;
410 cp = (PyCodeObject *)other;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000411
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000412 eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
413 if (eq <= 0) goto unequal;
414 eq = co->co_argcount == cp->co_argcount;
415 if (!eq) goto unequal;
416 eq = co->co_kwonlyargcount == cp->co_kwonlyargcount;
417 if (!eq) goto unequal;
418 eq = co->co_nlocals == cp->co_nlocals;
419 if (!eq) goto unequal;
420 eq = co->co_flags == cp->co_flags;
421 if (!eq) goto unequal;
422 eq = co->co_firstlineno == cp->co_firstlineno;
423 if (!eq) goto unequal;
424 eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
425 if (eq <= 0) goto unequal;
426 eq = PyObject_RichCompareBool(co->co_consts, cp->co_consts, Py_EQ);
427 if (eq <= 0) goto unequal;
428 eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ);
429 if (eq <= 0) goto unequal;
430 eq = PyObject_RichCompareBool(co->co_varnames, cp->co_varnames, Py_EQ);
431 if (eq <= 0) goto unequal;
432 eq = PyObject_RichCompareBool(co->co_freevars, cp->co_freevars, Py_EQ);
433 if (eq <= 0) goto unequal;
434 eq = PyObject_RichCompareBool(co->co_cellvars, cp->co_cellvars, Py_EQ);
435 if (eq <= 0) goto unequal;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000436
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000437 if (op == Py_EQ)
438 res = Py_True;
439 else
440 res = Py_False;
441 goto done;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000442
443 unequal:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 if (eq < 0)
445 return NULL;
446 if (op == Py_NE)
447 res = Py_True;
448 else
449 res = Py_False;
Guido van Rossumb6bb0c72006-08-24 04:12:18 +0000450
451 done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 Py_INCREF(res);
453 return res;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000454}
455
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000456static Py_hash_t
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000457code_hash(PyCodeObject *co)
458{
Benjamin Peterson8f67d082010-10-17 20:54:53 +0000459 Py_hash_t h, h0, h1, h2, h3, h4, h5, h6;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000460 h0 = PyObject_Hash(co->co_name);
461 if (h0 == -1) return -1;
462 h1 = PyObject_Hash(co->co_code);
463 if (h1 == -1) return -1;
464 h2 = PyObject_Hash(co->co_consts);
465 if (h2 == -1) return -1;
466 h3 = PyObject_Hash(co->co_names);
467 if (h3 == -1) return -1;
468 h4 = PyObject_Hash(co->co_varnames);
469 if (h4 == -1) return -1;
470 h5 = PyObject_Hash(co->co_freevars);
471 if (h5 == -1) return -1;
472 h6 = PyObject_Hash(co->co_cellvars);
473 if (h6 == -1) return -1;
474 h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^
475 co->co_argcount ^ co->co_kwonlyargcount ^
476 co->co_nlocals ^ co->co_flags;
477 if (h == -1) h = -2;
478 return h;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000479}
480
481/* XXX code objects need to participate in GC? */
482
483PyTypeObject PyCode_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000484 PyVarObject_HEAD_INIT(&PyType_Type, 0)
485 "code",
486 sizeof(PyCodeObject),
487 0,
488 (destructor)code_dealloc, /* tp_dealloc */
489 0, /* tp_print */
490 0, /* tp_getattr */
491 0, /* tp_setattr */
492 0, /* tp_reserved */
493 (reprfunc)code_repr, /* tp_repr */
494 0, /* tp_as_number */
495 0, /* tp_as_sequence */
496 0, /* tp_as_mapping */
497 (hashfunc)code_hash, /* tp_hash */
498 0, /* tp_call */
499 0, /* tp_str */
500 PyObject_GenericGetAttr, /* tp_getattro */
501 0, /* tp_setattro */
502 0, /* tp_as_buffer */
503 Py_TPFLAGS_DEFAULT, /* tp_flags */
504 code_doc, /* tp_doc */
505 0, /* tp_traverse */
506 0, /* tp_clear */
507 code_richcompare, /* tp_richcompare */
508 offsetof(PyCodeObject, co_weakreflist), /* tp_weaklistoffset */
509 0, /* tp_iter */
510 0, /* tp_iternext */
511 0, /* tp_methods */
512 code_memberlist, /* tp_members */
513 0, /* tp_getset */
514 0, /* tp_base */
515 0, /* tp_dict */
516 0, /* tp_descr_get */
517 0, /* tp_descr_set */
518 0, /* tp_dictoffset */
519 0, /* tp_init */
520 0, /* tp_alloc */
521 code_new, /* tp_new */
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000522};
523
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000524/* Use co_lnotab to compute the line number from a bytecode index, addrq. See
525 lnotab_notes.txt for the details of the lnotab representation.
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000526*/
527
528int
529PyCode_Addr2Line(PyCodeObject *co, int addrq)
530{
Victor Stinner0fcab4a2011-01-04 12:59:15 +0000531 Py_ssize_t size = PyBytes_Size(co->co_lnotab) / 2;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000532 unsigned char *p = (unsigned char*)PyBytes_AsString(co->co_lnotab);
533 int line = co->co_firstlineno;
534 int addr = 0;
535 while (--size >= 0) {
536 addr += *p++;
537 if (addr > addrq)
538 break;
539 line += *p++;
540 }
541 return line;
Jeremy Hylton3e0055f2005-10-20 19:59:25 +0000542}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000543
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000544/* Update *bounds to describe the first and one-past-the-last instructions in
545 the same line as lasti. Return the number of that line. */
546int
547_PyCode_CheckLineNumber(PyCodeObject* co, int lasti, PyAddrPair *bounds)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000548{
Victor Stinner0fcab4a2011-01-04 12:59:15 +0000549 Py_ssize_t size;
550 int addr, line;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 unsigned char* p;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000552
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000553 p = (unsigned char*)PyBytes_AS_STRING(co->co_lnotab);
554 size = PyBytes_GET_SIZE(co->co_lnotab) / 2;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000555
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 addr = 0;
557 line = co->co_firstlineno;
558 assert(line > 0);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000559
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 /* possible optimization: if f->f_lasti == instr_ub
561 (likely to be a common case) then we already know
562 instr_lb -- if we stored the matching value of p
563 somwhere we could skip the first while loop. */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000564
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 /* See lnotab_notes.txt for the description of
566 co_lnotab. A point to remember: increments to p
567 come in (addr, line) pairs. */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 bounds->ap_lower = 0;
570 while (size > 0) {
571 if (addr + *p > lasti)
572 break;
573 addr += *p++;
574 if (*p)
575 bounds->ap_lower = addr;
576 line += *p++;
577 --size;
578 }
579
580 if (size > 0) {
581 while (--size >= 0) {
582 addr += *p++;
583 if (*p++)
584 break;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000585 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 bounds->ap_upper = addr;
587 }
588 else {
589 bounds->ap_upper = INT_MAX;
590 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000591
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000592 return line;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000593}