Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 1 | #include "Python.h" |
| 2 | #include "code.h" |
| 3 | #include "structmember.h" |
| 4 | |
| 5 | #define NAME_CHARS \ |
| 6 | "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz" |
| 7 | |
| 8 | /* all_name_chars(s): true iff all chars in s are valid NAME_CHARS */ |
| 9 | |
| 10 | static int |
| 11 | all_name_chars(unsigned char *s) |
| 12 | { |
| 13 | static char ok_name_char[256]; |
| 14 | static unsigned char *name_chars = (unsigned char *)NAME_CHARS; |
| 15 | |
| 16 | if (ok_name_char[*name_chars] == 0) { |
| 17 | unsigned char *p; |
| 18 | for (p = name_chars; *p; p++) |
| 19 | ok_name_char[*p] = 1; |
| 20 | } |
| 21 | while (*s) { |
| 22 | if (ok_name_char[*s++] == 0) |
| 23 | return 0; |
| 24 | } |
| 25 | return 1; |
| 26 | } |
| 27 | |
| 28 | static void |
| 29 | intern_strings(PyObject *tuple) |
| 30 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 31 | Py_ssize_t i; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 32 | |
| 33 | for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) { |
| 34 | PyObject *v = PyTuple_GET_ITEM(tuple, i); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 35 | if (v == NULL || !PyString_CheckExact(v)) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 36 | Py_FatalError("non-string found in code slot"); |
| 37 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 38 | PyString_InternInPlace(&PyTuple_GET_ITEM(tuple, i)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 39 | } |
| 40 | } |
| 41 | |
| 42 | |
| 43 | PyCodeObject * |
| 44 | PyCode_New(int argcount, int nlocals, int stacksize, int flags, |
| 45 | PyObject *code, PyObject *consts, PyObject *names, |
| 46 | PyObject *varnames, PyObject *freevars, PyObject *cellvars, |
| 47 | PyObject *filename, PyObject *name, int firstlineno, |
| 48 | PyObject *lnotab) |
| 49 | { |
| 50 | PyCodeObject *co; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 51 | Py_ssize_t i; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 52 | /* Check argument types */ |
| 53 | if (argcount < 0 || nlocals < 0 || |
| 54 | code == NULL || |
| 55 | consts == NULL || !PyTuple_Check(consts) || |
| 56 | names == NULL || !PyTuple_Check(names) || |
| 57 | varnames == NULL || !PyTuple_Check(varnames) || |
| 58 | freevars == NULL || !PyTuple_Check(freevars) || |
| 59 | cellvars == NULL || !PyTuple_Check(cellvars) || |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 60 | name == NULL || !PyString_Check(name) || |
| 61 | filename == NULL || !PyString_Check(filename) || |
| 62 | lnotab == NULL || !PyString_Check(lnotab) || |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 63 | !PyObject_CheckReadBuffer(code)) { |
| 64 | PyErr_BadInternalCall(); |
| 65 | return NULL; |
| 66 | } |
| 67 | intern_strings(names); |
| 68 | intern_strings(varnames); |
| 69 | intern_strings(freevars); |
| 70 | intern_strings(cellvars); |
| 71 | /* Intern selected string constants */ |
| 72 | for (i = PyTuple_Size(consts); --i >= 0; ) { |
| 73 | PyObject *v = PyTuple_GetItem(consts, i); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 74 | if (!PyString_Check(v)) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 75 | continue; |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 76 | if (!all_name_chars((unsigned char *)PyString_AS_STRING(v))) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 77 | continue; |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 78 | PyString_InternInPlace(&PyTuple_GET_ITEM(consts, i)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 79 | } |
| 80 | co = PyObject_NEW(PyCodeObject, &PyCode_Type); |
| 81 | if (co != NULL) { |
| 82 | co->co_argcount = argcount; |
| 83 | co->co_nlocals = nlocals; |
| 84 | co->co_stacksize = stacksize; |
| 85 | co->co_flags = flags; |
| 86 | Py_INCREF(code); |
| 87 | co->co_code = code; |
| 88 | Py_INCREF(consts); |
| 89 | co->co_consts = consts; |
| 90 | Py_INCREF(names); |
| 91 | co->co_names = names; |
| 92 | Py_INCREF(varnames); |
| 93 | co->co_varnames = varnames; |
| 94 | Py_INCREF(freevars); |
| 95 | co->co_freevars = freevars; |
| 96 | Py_INCREF(cellvars); |
| 97 | co->co_cellvars = cellvars; |
| 98 | Py_INCREF(filename); |
| 99 | co->co_filename = filename; |
| 100 | Py_INCREF(name); |
| 101 | co->co_name = name; |
| 102 | co->co_firstlineno = firstlineno; |
| 103 | Py_INCREF(lnotab); |
| 104 | co->co_lnotab = lnotab; |
Richard Jones | 7c88dcc | 2006-05-23 10:37:38 +0000 | [diff] [blame] | 105 | co->co_zombieframe = NULL; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 106 | } |
| 107 | return co; |
| 108 | } |
| 109 | |
Jeffrey Yasskin | 1aa4700 | 2009-05-08 21:51:06 +0000 | [diff] [blame] | 110 | PyCodeObject * |
| 111 | PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) |
| 112 | { |
| 113 | static PyObject *emptystring = NULL; |
| 114 | static PyObject *nulltuple = NULL; |
| 115 | PyObject *filename_ob = NULL; |
| 116 | PyObject *funcname_ob = NULL; |
| 117 | PyCodeObject *result = NULL; |
| 118 | if (emptystring == NULL) { |
| 119 | emptystring = PyString_FromString(""); |
| 120 | if (emptystring == NULL) |
| 121 | goto failed; |
| 122 | } |
| 123 | if (nulltuple == NULL) { |
| 124 | nulltuple = PyTuple_New(0); |
| 125 | if (nulltuple == NULL) |
| 126 | goto failed; |
| 127 | } |
| 128 | funcname_ob = PyString_FromString(funcname); |
| 129 | if (funcname_ob == NULL) |
| 130 | goto failed; |
| 131 | filename_ob = PyString_FromString(filename); |
| 132 | if (filename_ob == NULL) |
| 133 | goto failed; |
| 134 | |
| 135 | result = PyCode_New(0, /* argcount */ |
| 136 | 0, /* nlocals */ |
| 137 | 0, /* stacksize */ |
| 138 | 0, /* flags */ |
| 139 | emptystring, /* code */ |
| 140 | nulltuple, /* consts */ |
| 141 | nulltuple, /* names */ |
| 142 | nulltuple, /* varnames */ |
| 143 | nulltuple, /* freevars */ |
| 144 | nulltuple, /* cellvars */ |
| 145 | filename_ob, /* filename */ |
| 146 | funcname_ob, /* name */ |
| 147 | firstlineno, /* firstlineno */ |
| 148 | emptystring /* lnotab */ |
| 149 | ); |
| 150 | |
| 151 | failed: |
| 152 | Py_XDECREF(funcname_ob); |
| 153 | Py_XDECREF(filename_ob); |
| 154 | return result; |
| 155 | } |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 156 | |
| 157 | #define OFF(x) offsetof(PyCodeObject, x) |
| 158 | |
| 159 | static PyMemberDef code_memberlist[] = { |
| 160 | {"co_argcount", T_INT, OFF(co_argcount), READONLY}, |
| 161 | {"co_nlocals", T_INT, OFF(co_nlocals), READONLY}, |
| 162 | {"co_stacksize",T_INT, OFF(co_stacksize), READONLY}, |
| 163 | {"co_flags", T_INT, OFF(co_flags), READONLY}, |
| 164 | {"co_code", T_OBJECT, OFF(co_code), READONLY}, |
| 165 | {"co_consts", T_OBJECT, OFF(co_consts), READONLY}, |
| 166 | {"co_names", T_OBJECT, OFF(co_names), READONLY}, |
| 167 | {"co_varnames", T_OBJECT, OFF(co_varnames), READONLY}, |
| 168 | {"co_freevars", T_OBJECT, OFF(co_freevars), READONLY}, |
| 169 | {"co_cellvars", T_OBJECT, OFF(co_cellvars), READONLY}, |
| 170 | {"co_filename", T_OBJECT, OFF(co_filename), READONLY}, |
| 171 | {"co_name", T_OBJECT, OFF(co_name), READONLY}, |
| 172 | {"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY}, |
| 173 | {"co_lnotab", T_OBJECT, OFF(co_lnotab), READONLY}, |
| 174 | {NULL} /* Sentinel */ |
| 175 | }; |
| 176 | |
| 177 | /* Helper for code_new: return a shallow copy of a tuple that is |
| 178 | guaranteed to contain exact strings, by converting string subclasses |
| 179 | to exact strings and complaining if a non-string is found. */ |
| 180 | static PyObject* |
| 181 | validate_and_copy_tuple(PyObject *tup) |
| 182 | { |
| 183 | PyObject *newtuple; |
| 184 | PyObject *item; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 185 | Py_ssize_t i, len; |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 186 | |
| 187 | len = PyTuple_GET_SIZE(tup); |
| 188 | newtuple = PyTuple_New(len); |
| 189 | if (newtuple == NULL) |
| 190 | return NULL; |
| 191 | |
| 192 | for (i = 0; i < len; i++) { |
| 193 | item = PyTuple_GET_ITEM(tup, i); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 194 | if (PyString_CheckExact(item)) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 195 | Py_INCREF(item); |
| 196 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 197 | else if (!PyString_Check(item)) { |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 198 | PyErr_Format( |
| 199 | PyExc_TypeError, |
| 200 | "name tuples must contain only " |
| 201 | "strings, not '%.500s'", |
| 202 | item->ob_type->tp_name); |
| 203 | Py_DECREF(newtuple); |
| 204 | return NULL; |
| 205 | } |
| 206 | else { |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 207 | item = PyString_FromStringAndSize( |
| 208 | PyString_AS_STRING(item), |
| 209 | PyString_GET_SIZE(item)); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 210 | if (item == NULL) { |
| 211 | Py_DECREF(newtuple); |
| 212 | return NULL; |
| 213 | } |
| 214 | } |
| 215 | PyTuple_SET_ITEM(newtuple, i, item); |
| 216 | } |
| 217 | |
| 218 | return newtuple; |
| 219 | } |
| 220 | |
| 221 | PyDoc_STRVAR(code_doc, |
| 222 | "code(argcount, nlocals, stacksize, flags, codestring, constants, names,\n\ |
| 223 | varnames, filename, name, firstlineno, lnotab[, freevars[, cellvars]])\n\ |
| 224 | \n\ |
| 225 | Create a code object. Not for the faint of heart."); |
| 226 | |
| 227 | static PyObject * |
| 228 | code_new(PyTypeObject *type, PyObject *args, PyObject *kw) |
| 229 | { |
| 230 | int argcount; |
| 231 | int nlocals; |
| 232 | int stacksize; |
| 233 | int flags; |
| 234 | PyObject *co = NULL; |
| 235 | PyObject *code; |
| 236 | PyObject *consts; |
| 237 | PyObject *names, *ournames = NULL; |
| 238 | PyObject *varnames, *ourvarnames = NULL; |
| 239 | PyObject *freevars = NULL, *ourfreevars = NULL; |
| 240 | PyObject *cellvars = NULL, *ourcellvars = NULL; |
| 241 | PyObject *filename; |
| 242 | PyObject *name; |
| 243 | int firstlineno; |
| 244 | PyObject *lnotab; |
| 245 | |
| 246 | if (!PyArg_ParseTuple(args, "iiiiSO!O!O!SSiS|O!O!:code", |
| 247 | &argcount, &nlocals, &stacksize, &flags, |
| 248 | &code, |
| 249 | &PyTuple_Type, &consts, |
| 250 | &PyTuple_Type, &names, |
| 251 | &PyTuple_Type, &varnames, |
| 252 | &filename, &name, |
| 253 | &firstlineno, &lnotab, |
| 254 | &PyTuple_Type, &freevars, |
| 255 | &PyTuple_Type, &cellvars)) |
| 256 | return NULL; |
| 257 | |
| 258 | if (argcount < 0) { |
| 259 | PyErr_SetString( |
| 260 | PyExc_ValueError, |
| 261 | "code: argcount must not be negative"); |
| 262 | goto cleanup; |
| 263 | } |
| 264 | |
| 265 | if (nlocals < 0) { |
| 266 | PyErr_SetString( |
| 267 | PyExc_ValueError, |
| 268 | "code: nlocals must not be negative"); |
| 269 | goto cleanup; |
| 270 | } |
| 271 | |
| 272 | ournames = validate_and_copy_tuple(names); |
| 273 | if (ournames == NULL) |
| 274 | goto cleanup; |
| 275 | ourvarnames = validate_and_copy_tuple(varnames); |
| 276 | if (ourvarnames == NULL) |
| 277 | goto cleanup; |
| 278 | if (freevars) |
| 279 | ourfreevars = validate_and_copy_tuple(freevars); |
| 280 | else |
| 281 | ourfreevars = PyTuple_New(0); |
| 282 | if (ourfreevars == NULL) |
| 283 | goto cleanup; |
| 284 | if (cellvars) |
| 285 | ourcellvars = validate_and_copy_tuple(cellvars); |
| 286 | else |
| 287 | ourcellvars = PyTuple_New(0); |
| 288 | if (ourcellvars == NULL) |
| 289 | goto cleanup; |
| 290 | |
| 291 | co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags, |
| 292 | code, consts, ournames, ourvarnames, |
| 293 | ourfreevars, ourcellvars, filename, |
| 294 | name, firstlineno, lnotab); |
| 295 | cleanup: |
| 296 | Py_XDECREF(ournames); |
| 297 | Py_XDECREF(ourvarnames); |
| 298 | Py_XDECREF(ourfreevars); |
| 299 | Py_XDECREF(ourcellvars); |
| 300 | return co; |
| 301 | } |
| 302 | |
| 303 | static void |
| 304 | code_dealloc(PyCodeObject *co) |
| 305 | { |
| 306 | Py_XDECREF(co->co_code); |
| 307 | Py_XDECREF(co->co_consts); |
| 308 | Py_XDECREF(co->co_names); |
| 309 | Py_XDECREF(co->co_varnames); |
| 310 | Py_XDECREF(co->co_freevars); |
| 311 | Py_XDECREF(co->co_cellvars); |
| 312 | Py_XDECREF(co->co_filename); |
| 313 | Py_XDECREF(co->co_name); |
| 314 | Py_XDECREF(co->co_lnotab); |
Richard Jones | 7c88dcc | 2006-05-23 10:37:38 +0000 | [diff] [blame] | 315 | if (co->co_zombieframe != NULL) |
| 316 | PyObject_GC_Del(co->co_zombieframe); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 317 | PyObject_DEL(co); |
| 318 | } |
| 319 | |
| 320 | static PyObject * |
| 321 | code_repr(PyCodeObject *co) |
| 322 | { |
| 323 | char buf[500]; |
| 324 | int lineno = -1; |
| 325 | char *filename = "???"; |
| 326 | char *name = "???"; |
| 327 | |
| 328 | if (co->co_firstlineno != 0) |
| 329 | lineno = co->co_firstlineno; |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 330 | if (co->co_filename && PyString_Check(co->co_filename)) |
| 331 | filename = PyString_AS_STRING(co->co_filename); |
| 332 | if (co->co_name && PyString_Check(co->co_name)) |
| 333 | name = PyString_AS_STRING(co->co_name); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 334 | PyOS_snprintf(buf, sizeof(buf), |
| 335 | "<code object %.100s at %p, file \"%.300s\", line %d>", |
| 336 | name, co, filename, lineno); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 337 | return PyString_FromString(buf); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | static int |
| 341 | code_compare(PyCodeObject *co, PyCodeObject *cp) |
| 342 | { |
| 343 | int cmp; |
| 344 | cmp = PyObject_Compare(co->co_name, cp->co_name); |
| 345 | if (cmp) return cmp; |
| 346 | cmp = co->co_argcount - cp->co_argcount; |
| 347 | if (cmp) goto normalize; |
| 348 | cmp = co->co_nlocals - cp->co_nlocals; |
| 349 | if (cmp) goto normalize; |
| 350 | cmp = co->co_flags - cp->co_flags; |
| 351 | if (cmp) goto normalize; |
| 352 | cmp = co->co_firstlineno - cp->co_firstlineno; |
| 353 | if (cmp) goto normalize; |
| 354 | cmp = PyObject_Compare(co->co_code, cp->co_code); |
| 355 | if (cmp) return cmp; |
| 356 | cmp = PyObject_Compare(co->co_consts, cp->co_consts); |
| 357 | if (cmp) return cmp; |
| 358 | cmp = PyObject_Compare(co->co_names, cp->co_names); |
| 359 | if (cmp) return cmp; |
| 360 | cmp = PyObject_Compare(co->co_varnames, cp->co_varnames); |
| 361 | if (cmp) return cmp; |
| 362 | cmp = PyObject_Compare(co->co_freevars, cp->co_freevars); |
| 363 | if (cmp) return cmp; |
| 364 | cmp = PyObject_Compare(co->co_cellvars, cp->co_cellvars); |
| 365 | return cmp; |
| 366 | |
| 367 | normalize: |
| 368 | if (cmp > 0) |
| 369 | return 1; |
| 370 | else if (cmp < 0) |
| 371 | return -1; |
| 372 | else |
| 373 | return 0; |
| 374 | } |
| 375 | |
Steven Bethard | 6a644f9 | 2008-03-18 22:08:20 +0000 | [diff] [blame] | 376 | static PyObject * |
| 377 | code_richcompare(PyObject *self, PyObject *other, int op) |
| 378 | { |
| 379 | PyCodeObject *co, *cp; |
| 380 | int eq; |
| 381 | PyObject *res; |
| 382 | |
| 383 | if ((op != Py_EQ && op != Py_NE) || |
| 384 | !PyCode_Check(self) || |
| 385 | !PyCode_Check(other)) { |
| 386 | |
Georg Brandl | d5b635f | 2008-03-25 08:29:14 +0000 | [diff] [blame] | 387 | /* Py3K warning if types are not equal and comparison |
Benjamin Peterson | f19a7b9 | 2008-04-27 18:40:21 +0000 | [diff] [blame] | 388 | isn't == or != */ |
Benjamin Peterson | 9f4f481 | 2008-04-27 03:01:45 +0000 | [diff] [blame] | 389 | if (PyErr_WarnPy3k("code inequality comparisons not supported " |
Benjamin Peterson | f19a7b9 | 2008-04-27 18:40:21 +0000 | [diff] [blame] | 390 | "in 3.x", 1) < 0) { |
Steven Bethard | 6a644f9 | 2008-03-18 22:08:20 +0000 | [diff] [blame] | 391 | return NULL; |
| 392 | } |
| 393 | |
| 394 | Py_INCREF(Py_NotImplemented); |
| 395 | return Py_NotImplemented; |
| 396 | } |
| 397 | |
| 398 | co = (PyCodeObject *)self; |
| 399 | cp = (PyCodeObject *)other; |
| 400 | |
| 401 | eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ); |
| 402 | if (eq <= 0) goto unequal; |
| 403 | eq = co->co_argcount == cp->co_argcount; |
| 404 | if (!eq) goto unequal; |
| 405 | eq = co->co_nlocals == cp->co_nlocals; |
| 406 | if (!eq) goto unequal; |
| 407 | eq = co->co_flags == cp->co_flags; |
| 408 | if (!eq) goto unequal; |
| 409 | eq = co->co_firstlineno == cp->co_firstlineno; |
| 410 | if (!eq) goto unequal; |
| 411 | eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ); |
| 412 | if (eq <= 0) goto unequal; |
| 413 | eq = PyObject_RichCompareBool(co->co_consts, cp->co_consts, Py_EQ); |
| 414 | if (eq <= 0) goto unequal; |
| 415 | eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ); |
| 416 | if (eq <= 0) goto unequal; |
| 417 | eq = PyObject_RichCompareBool(co->co_varnames, cp->co_varnames, Py_EQ); |
| 418 | if (eq <= 0) goto unequal; |
| 419 | eq = PyObject_RichCompareBool(co->co_freevars, cp->co_freevars, Py_EQ); |
| 420 | if (eq <= 0) goto unequal; |
| 421 | eq = PyObject_RichCompareBool(co->co_cellvars, cp->co_cellvars, Py_EQ); |
| 422 | if (eq <= 0) goto unequal; |
| 423 | |
| 424 | if (op == Py_EQ) |
| 425 | res = Py_True; |
| 426 | else |
| 427 | res = Py_False; |
| 428 | goto done; |
| 429 | |
| 430 | unequal: |
| 431 | if (eq < 0) |
| 432 | return NULL; |
| 433 | if (op == Py_NE) |
| 434 | res = Py_True; |
| 435 | else |
| 436 | res = Py_False; |
| 437 | |
| 438 | done: |
| 439 | Py_INCREF(res); |
| 440 | return res; |
| 441 | } |
| 442 | |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 443 | static long |
| 444 | code_hash(PyCodeObject *co) |
| 445 | { |
| 446 | long h, h0, h1, h2, h3, h4, h5, h6; |
| 447 | h0 = PyObject_Hash(co->co_name); |
| 448 | if (h0 == -1) return -1; |
| 449 | h1 = PyObject_Hash(co->co_code); |
| 450 | if (h1 == -1) return -1; |
| 451 | h2 = PyObject_Hash(co->co_consts); |
| 452 | if (h2 == -1) return -1; |
| 453 | h3 = PyObject_Hash(co->co_names); |
| 454 | if (h3 == -1) return -1; |
| 455 | h4 = PyObject_Hash(co->co_varnames); |
| 456 | if (h4 == -1) return -1; |
| 457 | h5 = PyObject_Hash(co->co_freevars); |
| 458 | if (h5 == -1) return -1; |
| 459 | h6 = PyObject_Hash(co->co_cellvars); |
| 460 | if (h6 == -1) return -1; |
| 461 | h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^ |
| 462 | co->co_argcount ^ co->co_nlocals ^ co->co_flags; |
| 463 | if (h == -1) h = -2; |
| 464 | return h; |
| 465 | } |
| 466 | |
| 467 | /* XXX code objects need to participate in GC? */ |
| 468 | |
| 469 | PyTypeObject PyCode_Type = { |
Martin v. Löwis | 6819210 | 2007-07-21 06:55:02 +0000 | [diff] [blame] | 470 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 471 | "code", |
| 472 | sizeof(PyCodeObject), |
| 473 | 0, |
| 474 | (destructor)code_dealloc, /* tp_dealloc */ |
| 475 | 0, /* tp_print */ |
| 476 | 0, /* tp_getattr */ |
| 477 | 0, /* tp_setattr */ |
| 478 | (cmpfunc)code_compare, /* tp_compare */ |
| 479 | (reprfunc)code_repr, /* tp_repr */ |
| 480 | 0, /* tp_as_number */ |
| 481 | 0, /* tp_as_sequence */ |
| 482 | 0, /* tp_as_mapping */ |
| 483 | (hashfunc)code_hash, /* tp_hash */ |
| 484 | 0, /* tp_call */ |
| 485 | 0, /* tp_str */ |
| 486 | PyObject_GenericGetAttr, /* tp_getattro */ |
| 487 | 0, /* tp_setattro */ |
| 488 | 0, /* tp_as_buffer */ |
| 489 | Py_TPFLAGS_DEFAULT, /* tp_flags */ |
| 490 | code_doc, /* tp_doc */ |
| 491 | 0, /* tp_traverse */ |
| 492 | 0, /* tp_clear */ |
Steven Bethard | 6a644f9 | 2008-03-18 22:08:20 +0000 | [diff] [blame] | 493 | code_richcompare, /* tp_richcompare */ |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 494 | 0, /* tp_weaklistoffset */ |
| 495 | 0, /* tp_iter */ |
| 496 | 0, /* tp_iternext */ |
| 497 | 0, /* tp_methods */ |
| 498 | code_memberlist, /* tp_members */ |
| 499 | 0, /* tp_getset */ |
| 500 | 0, /* tp_base */ |
| 501 | 0, /* tp_dict */ |
| 502 | 0, /* tp_descr_get */ |
| 503 | 0, /* tp_descr_set */ |
| 504 | 0, /* tp_dictoffset */ |
| 505 | 0, /* tp_init */ |
| 506 | 0, /* tp_alloc */ |
| 507 | code_new, /* tp_new */ |
| 508 | }; |
| 509 | |
Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 510 | /* Use co_lnotab to compute the line number from a bytecode index, addrq. See |
| 511 | lnotab_notes.txt for the details of the lnotab representation. |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 512 | */ |
| 513 | |
| 514 | int |
| 515 | PyCode_Addr2Line(PyCodeObject *co, int addrq) |
| 516 | { |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 517 | int size = PyString_Size(co->co_lnotab) / 2; |
| 518 | unsigned char *p = (unsigned char*)PyString_AsString(co->co_lnotab); |
Jeremy Hylton | 3e0055f | 2005-10-20 19:59:25 +0000 | [diff] [blame] | 519 | int line = co->co_firstlineno; |
| 520 | int addr = 0; |
| 521 | while (--size >= 0) { |
| 522 | addr += *p++; |
| 523 | if (addr > addrq) |
| 524 | break; |
| 525 | line += *p++; |
| 526 | } |
| 527 | return line; |
| 528 | } |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 529 | |
Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 530 | /* Update *bounds to describe the first and one-past-the-last instructions in |
| 531 | the same line as lasti. Return the number of that line. */ |
| 532 | int |
| 533 | _PyCode_CheckLineNumber(PyCodeObject* co, int lasti, PyAddrPair *bounds) |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 534 | { |
| 535 | int size, addr, line; |
| 536 | unsigned char* p; |
| 537 | |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 538 | p = (unsigned char*)PyString_AS_STRING(co->co_lnotab); |
| 539 | size = PyString_GET_SIZE(co->co_lnotab) / 2; |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 540 | |
| 541 | addr = 0; |
| 542 | line = co->co_firstlineno; |
| 543 | assert(line > 0); |
| 544 | |
| 545 | /* possible optimization: if f->f_lasti == instr_ub |
| 546 | (likely to be a common case) then we already know |
| 547 | instr_lb -- if we stored the matching value of p |
| 548 | somwhere we could skip the first while loop. */ |
| 549 | |
Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 550 | /* See lnotab_notes.txt for the description of |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 551 | co_lnotab. A point to remember: increments to p |
Jeffrey Yasskin | 655d835 | 2009-05-23 23:23:01 +0000 | [diff] [blame] | 552 | come in (addr, line) pairs. */ |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 553 | |
Neal Norwitz | 7e49c6e | 2006-07-12 05:27:46 +0000 | [diff] [blame] | 554 | bounds->ap_lower = 0; |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 555 | while (size > 0) { |
| 556 | if (addr + *p > lasti) |
| 557 | break; |
| 558 | addr += *p++; |
| 559 | if (*p) |
| 560 | bounds->ap_lower = addr; |
| 561 | line += *p++; |
| 562 | --size; |
| 563 | } |
| 564 | |
Jeremy Hylton | a4ebc13 | 2006-04-18 14:47:00 +0000 | [diff] [blame] | 565 | if (size > 0) { |
| 566 | while (--size >= 0) { |
| 567 | addr += *p++; |
| 568 | if (*p++) |
| 569 | break; |
| 570 | } |
| 571 | bounds->ap_upper = addr; |
| 572 | } |
| 573 | else { |
| 574 | bounds->ap_upper = INT_MAX; |
| 575 | } |
| 576 | |
| 577 | return line; |
| 578 | } |