2016-09-07 15:28:35 -03:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
#include "Python.h"
|
|
|
|
#include "code.h"
|
2019-06-03 09:30:58 -03:00
|
|
|
#include "opcode.h"
|
2020-04-14 21:35:41 -03:00
|
|
|
#include "structmember.h" // PyMemberDef
|
2020-06-22 12:27:35 -03:00
|
|
|
#include "pycore_code.h" // _PyOpcache
|
2020-04-14 09:26:24 -03:00
|
|
|
#include "pycore_interp.h" // PyInterpreterState.co_extra_freefuncs
|
2020-04-14 10:14:01 -03:00
|
|
|
#include "pycore_pystate.h" // _PyInterpreterState_GET()
|
2020-06-22 12:27:35 -03:00
|
|
|
#include "pycore_tuple.h" // _PyTuple_ITEMS()
|
2019-05-24 18:57:23 -03:00
|
|
|
#include "clinic/codeobject.c.h"
|
2005-10-20 16:59:25 -03:00
|
|
|
|
2016-09-07 18:30:39 -03:00
|
|
|
/* Holder for co_extra information */
|
|
|
|
typedef struct {
|
|
|
|
Py_ssize_t ce_size;
|
2017-07-04 09:06:16 -03:00
|
|
|
void *ce_extras[1];
|
2016-09-07 18:30:39 -03:00
|
|
|
} _PyCodeObjectExtra;
|
|
|
|
|
2019-05-24 18:57:23 -03:00
|
|
|
/*[clinic input]
|
|
|
|
class code "PyCodeObject *" "&PyCode_Type"
|
|
|
|
[clinic start generated code]*/
|
|
|
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=78aa5d576683bb4b]*/
|
|
|
|
|
2017-09-08 03:35:53 -03:00
|
|
|
/* all_name_chars(s): true iff s matches [a-zA-Z0-9_]* */
|
2005-10-20 16:59:25 -03:00
|
|
|
static int
|
2011-09-28 02:41:54 -03:00
|
|
|
all_name_chars(PyObject *o)
|
2005-10-20 16:59:25 -03:00
|
|
|
{
|
2016-10-04 12:17:22 -03:00
|
|
|
const unsigned char *s, *e;
|
2011-09-28 02:41:54 -03:00
|
|
|
|
2017-09-08 03:58:51 -03:00
|
|
|
if (!PyUnicode_IS_ASCII(o))
|
2011-09-28 02:41:54 -03:00
|
|
|
return 0;
|
2010-05-09 12:52:27 -03:00
|
|
|
|
2016-10-04 12:17:22 -03:00
|
|
|
s = PyUnicode_1BYTE_DATA(o);
|
|
|
|
e = s + PyUnicode_GET_LENGTH(o);
|
2017-09-07 22:06:23 -03:00
|
|
|
for (; s != e; s++) {
|
2017-09-08 14:35:49 -03:00
|
|
|
if (!Py_ISALNUM(*s) && *s != '_')
|
2010-05-09 12:52:27 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2020-01-27 18:24:13 -04:00
|
|
|
static int
|
2005-10-20 16:59:25 -03:00
|
|
|
intern_strings(PyObject *tuple)
|
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_ssize_t i;
|
|
|
|
|
|
|
|
for (i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
|
|
|
|
PyObject *v = PyTuple_GET_ITEM(tuple, i);
|
|
|
|
if (v == NULL || !PyUnicode_CheckExact(v)) {
|
2020-01-27 18:24:13 -04:00
|
|
|
PyErr_SetString(PyExc_SystemError,
|
|
|
|
"non-string found in code slot");
|
|
|
|
return -1;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2018-11-09 11:56:48 -04:00
|
|
|
PyUnicode_InternInPlace(&_PyTuple_ITEMS(tuple)[i]);
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2020-01-27 18:24:13 -04:00
|
|
|
return 0;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2016-09-30 04:07:26 -03:00
|
|
|
/* Intern selected string constants */
|
|
|
|
static int
|
2020-01-27 18:24:13 -04:00
|
|
|
intern_string_constants(PyObject *tuple, int *modified)
|
2016-09-30 04:07:26 -03:00
|
|
|
{
|
2020-01-27 18:24:13 -04:00
|
|
|
for (Py_ssize_t i = PyTuple_GET_SIZE(tuple); --i >= 0; ) {
|
2016-09-30 04:07:26 -03:00
|
|
|
PyObject *v = PyTuple_GET_ITEM(tuple, i);
|
|
|
|
if (PyUnicode_CheckExact(v)) {
|
2017-09-08 03:58:51 -03:00
|
|
|
if (PyUnicode_READY(v) == -1) {
|
2020-01-27 18:24:13 -04:00
|
|
|
return -1;
|
2017-09-08 03:58:51 -03:00
|
|
|
}
|
2020-01-27 18:24:13 -04:00
|
|
|
|
2016-09-30 04:07:26 -03:00
|
|
|
if (all_name_chars(v)) {
|
|
|
|
PyObject *w = v;
|
|
|
|
PyUnicode_InternInPlace(&v);
|
|
|
|
if (w != v) {
|
|
|
|
PyTuple_SET_ITEM(tuple, i, v);
|
2020-01-27 18:24:13 -04:00
|
|
|
if (modified) {
|
|
|
|
*modified = 1;
|
|
|
|
}
|
2016-09-30 04:07:26 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (PyTuple_CheckExact(v)) {
|
2020-01-27 18:24:13 -04:00
|
|
|
if (intern_string_constants(v, NULL) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-09-30 04:07:26 -03:00
|
|
|
}
|
|
|
|
else if (PyFrozenSet_CheckExact(v)) {
|
2016-11-09 10:42:14 -04:00
|
|
|
PyObject *w = v;
|
2016-09-30 04:07:26 -03:00
|
|
|
PyObject *tmp = PySequence_Tuple(v);
|
|
|
|
if (tmp == NULL) {
|
2020-01-27 18:24:13 -04:00
|
|
|
return -1;
|
2016-09-30 04:07:26 -03:00
|
|
|
}
|
2020-01-27 18:24:13 -04:00
|
|
|
int tmp_modified = 0;
|
|
|
|
if (intern_string_constants(tmp, &tmp_modified) < 0) {
|
|
|
|
Py_DECREF(tmp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (tmp_modified) {
|
2016-09-30 04:07:26 -03:00
|
|
|
v = PyFrozenSet_New(tmp);
|
|
|
|
if (v == NULL) {
|
2020-01-27 18:24:13 -04:00
|
|
|
Py_DECREF(tmp);
|
|
|
|
return -1;
|
2016-09-30 04:07:26 -03:00
|
|
|
}
|
2020-01-27 18:24:13 -04:00
|
|
|
|
|
|
|
PyTuple_SET_ITEM(tuple, i, v);
|
|
|
|
Py_DECREF(w);
|
|
|
|
if (modified) {
|
|
|
|
*modified = 1;
|
2016-09-30 04:07:26 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Py_DECREF(tmp);
|
|
|
|
}
|
|
|
|
}
|
2020-01-27 18:24:13 -04:00
|
|
|
return 0;
|
2016-09-30 04:07:26 -03:00
|
|
|
}
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
PyCodeObject *
|
2019-07-01 07:35:05 -03:00
|
|
|
PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount,
|
|
|
|
int nlocals, int stacksize, int flags,
|
|
|
|
PyObject *code, PyObject *consts, PyObject *names,
|
|
|
|
PyObject *varnames, PyObject *freevars, PyObject *cellvars,
|
|
|
|
PyObject *filename, PyObject *name, int firstlineno,
|
2020-11-12 05:43:29 -04:00
|
|
|
PyObject *linetable)
|
2005-10-20 16:59:25 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
PyCodeObject *co;
|
2016-12-16 13:19:02 -04:00
|
|
|
Py_ssize_t *cell2arg = NULL;
|
2018-07-16 03:10:19 -03:00
|
|
|
Py_ssize_t i, n_cellvars, n_varnames, total_args;
|
2010-05-09 12:52:27 -03:00
|
|
|
|
|
|
|
/* Check argument types */
|
2019-06-01 14:08:04 -03:00
|
|
|
if (argcount < posonlyargcount || posonlyargcount < 0 ||
|
|
|
|
kwonlyargcount < 0 || nlocals < 0 ||
|
|
|
|
stacksize < 0 || flags < 0 ||
|
2019-05-24 18:57:23 -03:00
|
|
|
code == NULL || !PyBytes_Check(code) ||
|
2010-05-09 12:52:27 -03:00
|
|
|
consts == NULL || !PyTuple_Check(consts) ||
|
|
|
|
names == NULL || !PyTuple_Check(names) ||
|
|
|
|
varnames == NULL || !PyTuple_Check(varnames) ||
|
|
|
|
freevars == NULL || !PyTuple_Check(freevars) ||
|
|
|
|
cellvars == NULL || !PyTuple_Check(cellvars) ||
|
|
|
|
name == NULL || !PyUnicode_Check(name) ||
|
|
|
|
filename == NULL || !PyUnicode_Check(filename) ||
|
2020-11-12 05:43:29 -04:00
|
|
|
linetable == NULL || !PyBytes_Check(linetable)) {
|
2010-05-09 12:52:27 -03:00
|
|
|
PyErr_BadInternalCall();
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-10-10 10:55:14 -03:00
|
|
|
|
2019-05-24 18:57:23 -03:00
|
|
|
/* Ensure that strings are ready Unicode string */
|
|
|
|
if (PyUnicode_READY(name) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (PyUnicode_READY(filename) < 0) {
|
2013-10-10 10:55:14 -03:00
|
|
|
return NULL;
|
2019-05-24 18:57:23 -03:00
|
|
|
}
|
2013-10-10 10:55:14 -03:00
|
|
|
|
2020-01-27 18:24:13 -04:00
|
|
|
if (intern_strings(names) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (intern_strings(varnames) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (intern_strings(freevars) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (intern_strings(cellvars) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (intern_string_constants(consts, NULL) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-12-02 21:12:20 -04:00
|
|
|
|
2020-06-10 20:31:22 -03:00
|
|
|
/* Make sure that code is indexable with an int, this is
|
|
|
|
a long running assumption in ceval.c and many parts of
|
|
|
|
the interpreter. */
|
|
|
|
if (PyBytes_GET_SIZE(code) > INT_MAX) {
|
|
|
|
PyErr_SetString(PyExc_OverflowError, "co_code larger than INT_MAX");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-12-02 21:12:20 -04:00
|
|
|
/* Check for any inner or outer closure references */
|
|
|
|
n_cellvars = PyTuple_GET_SIZE(cellvars);
|
|
|
|
if (!n_cellvars && !PyTuple_GET_SIZE(freevars)) {
|
|
|
|
flags |= CO_NOFREE;
|
|
|
|
} else {
|
|
|
|
flags &= ~CO_NOFREE;
|
|
|
|
}
|
|
|
|
|
2018-07-16 03:10:19 -03:00
|
|
|
n_varnames = PyTuple_GET_SIZE(varnames);
|
2019-06-01 14:08:04 -03:00
|
|
|
if (argcount <= n_varnames && kwonlyargcount <= n_varnames) {
|
2018-07-16 03:10:19 -03:00
|
|
|
/* Never overflows. */
|
2019-06-01 14:08:04 -03:00
|
|
|
total_args = (Py_ssize_t)argcount + (Py_ssize_t)kwonlyargcount +
|
2019-04-29 09:36:57 -03:00
|
|
|
((flags & CO_VARARGS) != 0) + ((flags & CO_VARKEYWORDS) != 0);
|
2018-07-16 03:10:19 -03:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
total_args = n_varnames + 1;
|
|
|
|
}
|
|
|
|
if (total_args > n_varnames) {
|
|
|
|
PyErr_SetString(PyExc_ValueError, "code: varnames is too small");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-06-26 00:54:45 -03:00
|
|
|
/* Create mapping between cells and arguments if needed. */
|
|
|
|
if (n_cellvars) {
|
2016-09-07 15:28:35 -03:00
|
|
|
bool used_cell2arg = false;
|
2016-12-16 13:19:02 -04:00
|
|
|
cell2arg = PyMem_NEW(Py_ssize_t, n_cellvars);
|
|
|
|
if (cell2arg == NULL) {
|
|
|
|
PyErr_NoMemory();
|
2011-06-26 00:54:45 -03:00
|
|
|
return NULL;
|
2016-12-16 13:19:02 -04:00
|
|
|
}
|
2011-06-26 00:54:45 -03:00
|
|
|
/* Find cells which are also arguments. */
|
|
|
|
for (i = 0; i < n_cellvars; i++) {
|
|
|
|
Py_ssize_t j;
|
|
|
|
PyObject *cell = PyTuple_GET_ITEM(cellvars, i);
|
2016-12-16 13:19:02 -04:00
|
|
|
cell2arg[i] = CO_CELL_NOT_AN_ARG;
|
2011-06-26 00:54:45 -03:00
|
|
|
for (j = 0; j < total_args; j++) {
|
|
|
|
PyObject *arg = PyTuple_GET_ITEM(varnames, j);
|
2016-12-16 13:19:02 -04:00
|
|
|
int cmp = PyUnicode_Compare(cell, arg);
|
|
|
|
if (cmp == -1 && PyErr_Occurred()) {
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(cell2arg);
|
2016-12-16 13:19:02 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (cmp == 0) {
|
2011-06-26 00:54:45 -03:00
|
|
|
cell2arg[i] = j;
|
2016-09-07 15:28:35 -03:00
|
|
|
used_cell2arg = true;
|
2011-06-26 00:54:45 -03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!used_cell2arg) {
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(cell2arg);
|
2011-06-26 00:54:45 -03:00
|
|
|
cell2arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 19:38:15 -03:00
|
|
|
co = PyObject_New(PyCodeObject, &PyCode_Type);
|
2011-06-26 00:54:45 -03:00
|
|
|
if (co == NULL) {
|
|
|
|
if (cell2arg)
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(cell2arg);
|
2011-06-26 00:54:45 -03:00
|
|
|
return NULL;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2011-06-26 00:54:45 -03:00
|
|
|
co->co_argcount = argcount;
|
2019-04-29 09:36:57 -03:00
|
|
|
co->co_posonlyargcount = posonlyargcount;
|
2011-06-26 00:54:45 -03:00
|
|
|
co->co_kwonlyargcount = kwonlyargcount;
|
|
|
|
co->co_nlocals = nlocals;
|
|
|
|
co->co_stacksize = stacksize;
|
|
|
|
co->co_flags = flags;
|
|
|
|
Py_INCREF(code);
|
|
|
|
co->co_code = code;
|
|
|
|
Py_INCREF(consts);
|
|
|
|
co->co_consts = consts;
|
|
|
|
Py_INCREF(names);
|
|
|
|
co->co_names = names;
|
|
|
|
Py_INCREF(varnames);
|
|
|
|
co->co_varnames = varnames;
|
|
|
|
Py_INCREF(freevars);
|
|
|
|
co->co_freevars = freevars;
|
|
|
|
Py_INCREF(cellvars);
|
|
|
|
co->co_cellvars = cellvars;
|
|
|
|
co->co_cell2arg = cell2arg;
|
|
|
|
Py_INCREF(filename);
|
|
|
|
co->co_filename = filename;
|
|
|
|
Py_INCREF(name);
|
|
|
|
co->co_name = name;
|
|
|
|
co->co_firstlineno = firstlineno;
|
2020-11-12 05:43:29 -04:00
|
|
|
Py_INCREF(linetable);
|
|
|
|
co->co_linetable = linetable;
|
2011-06-26 00:54:45 -03:00
|
|
|
co->co_zombieframe = NULL;
|
|
|
|
co->co_weakreflist = NULL;
|
2016-09-07 15:16:41 -03:00
|
|
|
co->co_extra = NULL;
|
2019-06-03 09:30:58 -03:00
|
|
|
|
|
|
|
co->co_opcache_map = NULL;
|
|
|
|
co->co_opcache = NULL;
|
|
|
|
co->co_opcache_flag = 0;
|
|
|
|
co->co_opcache_size = 0;
|
2010-05-09 12:52:27 -03:00
|
|
|
return co;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2019-07-01 07:35:05 -03:00
|
|
|
PyCodeObject *
|
|
|
|
PyCode_New(int argcount, int kwonlyargcount,
|
|
|
|
int nlocals, int stacksize, int flags,
|
|
|
|
PyObject *code, PyObject *consts, PyObject *names,
|
|
|
|
PyObject *varnames, PyObject *freevars, PyObject *cellvars,
|
|
|
|
PyObject *filename, PyObject *name, int firstlineno,
|
2020-11-12 05:43:29 -04:00
|
|
|
PyObject *linetable)
|
2019-07-01 07:35:05 -03:00
|
|
|
{
|
|
|
|
return PyCode_NewWithPosOnlyArgs(argcount, 0, kwonlyargcount, nlocals,
|
|
|
|
stacksize, flags, code, consts, names,
|
|
|
|
varnames, freevars, cellvars, filename,
|
2020-11-12 05:43:29 -04:00
|
|
|
name, firstlineno, linetable);
|
2019-07-01 07:35:05 -03:00
|
|
|
}
|
|
|
|
|
2019-06-03 09:30:58 -03:00
|
|
|
int
|
|
|
|
_PyCode_InitOpcache(PyCodeObject *co)
|
|
|
|
{
|
|
|
|
Py_ssize_t co_size = PyBytes_Size(co->co_code) / sizeof(_Py_CODEUNIT);
|
|
|
|
co->co_opcache_map = (unsigned char *)PyMem_Calloc(co_size, 1);
|
|
|
|
if (co->co_opcache_map == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
_Py_CODEUNIT *opcodes = (_Py_CODEUNIT*)PyBytes_AS_STRING(co->co_code);
|
|
|
|
Py_ssize_t opts = 0;
|
|
|
|
|
|
|
|
for (Py_ssize_t i = 0; i < co_size;) {
|
|
|
|
unsigned char opcode = _Py_OPCODE(opcodes[i]);
|
|
|
|
i++; // 'i' is now aligned to (next_instr - first_instr)
|
|
|
|
|
2020-10-20 02:22:44 -03:00
|
|
|
// TODO: LOAD_METHOD
|
|
|
|
if (opcode == LOAD_GLOBAL || opcode == LOAD_ATTR) {
|
2019-06-04 12:08:24 -03:00
|
|
|
opts++;
|
|
|
|
co->co_opcache_map[i] = (unsigned char)opts;
|
2019-06-03 09:30:58 -03:00
|
|
|
if (opts > 254) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts) {
|
|
|
|
co->co_opcache = (_PyOpcache *)PyMem_Calloc(opts, sizeof(_PyOpcache));
|
|
|
|
if (co->co_opcache == NULL) {
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(co->co_opcache_map);
|
2019-06-03 09:30:58 -03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(co->co_opcache_map);
|
2019-06-03 09:30:58 -03:00
|
|
|
co->co_opcache_map = NULL;
|
|
|
|
co->co_opcache = NULL;
|
|
|
|
}
|
|
|
|
|
2019-06-11 23:41:16 -03:00
|
|
|
co->co_opcache_size = (unsigned char)opts;
|
2019-06-03 09:30:58 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Merged revisions 72487-72488,72879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
PyCode_NewEmpty:
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
are trying to build an empty code object, usually to put it in a dummy frame
object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
just the filename, function name, and first line number, instead of also
requiring lots of code internals.
........
r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
Issue 5954, PyFrame_GetLineNumber:
Most uses of PyCode_Addr2Line
(http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
the line number of a specified frame, but there's no way to do that directly.
Forcing people to go through the code object makes them know more about the
guts of the interpreter than they should need.
The remaining uses of PyCode_Addr2Line seem to be getting the line from a
traceback (for example,
http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
which is replaced by the tb_lineno field. So we may be able to deprecate
PyCode_Addr2Line entirely for external use.
........
r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
Issue #6042:
lnotab-based tracing is very complicated and isn't documented very well. There
were at least 3 comment blocks purporting to document co_lnotab, and none did a
very good job. This patch unifies them into Objects/lnotab_notes.txt which
tries to completely capture the current state of affairs.
I also discovered that we've attached 2 layers of patches to the basic tracing
scheme. The first layer avoids jumping to instructions that don't start a line,
to avoid problems in if statements and while loops. The second layer
discovered that jumps backward do need to trace at instructions that don't
start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
added a special case for backward jumps within the same line. I replaced these
patches by just treating forward and backward jumps differently.
........
2009-07-21 01:30:03 -03:00
|
|
|
PyCodeObject *
|
|
|
|
PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno)
|
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
static PyObject *emptystring = NULL;
|
|
|
|
static PyObject *nulltuple = NULL;
|
|
|
|
PyObject *filename_ob = NULL;
|
|
|
|
PyObject *funcname_ob = NULL;
|
|
|
|
PyCodeObject *result = NULL;
|
|
|
|
if (emptystring == NULL) {
|
|
|
|
emptystring = PyBytes_FromString("");
|
|
|
|
if (emptystring == NULL)
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
if (nulltuple == NULL) {
|
|
|
|
nulltuple = PyTuple_New(0);
|
|
|
|
if (nulltuple == NULL)
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
funcname_ob = PyUnicode_FromString(funcname);
|
|
|
|
if (funcname_ob == NULL)
|
|
|
|
goto failed;
|
|
|
|
filename_ob = PyUnicode_DecodeFSDefault(filename);
|
|
|
|
if (filename_ob == NULL)
|
|
|
|
goto failed;
|
|
|
|
|
2019-07-01 07:35:05 -03:00
|
|
|
result = PyCode_NewWithPosOnlyArgs(
|
|
|
|
0, /* argcount */
|
2019-04-29 09:36:57 -03:00
|
|
|
0, /* posonlyargcount */
|
2010-05-09 12:52:27 -03:00
|
|
|
0, /* kwonlyargcount */
|
|
|
|
0, /* nlocals */
|
|
|
|
0, /* stacksize */
|
|
|
|
0, /* flags */
|
|
|
|
emptystring, /* code */
|
|
|
|
nulltuple, /* consts */
|
|
|
|
nulltuple, /* names */
|
|
|
|
nulltuple, /* varnames */
|
|
|
|
nulltuple, /* freevars */
|
|
|
|
nulltuple, /* cellvars */
|
|
|
|
filename_ob, /* filename */
|
|
|
|
funcname_ob, /* name */
|
|
|
|
firstlineno, /* firstlineno */
|
2020-11-12 05:43:29 -04:00
|
|
|
emptystring /* linetable */
|
2010-05-09 12:52:27 -03:00
|
|
|
);
|
Merged revisions 72487-72488,72879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
PyCode_NewEmpty:
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
are trying to build an empty code object, usually to put it in a dummy frame
object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
just the filename, function name, and first line number, instead of also
requiring lots of code internals.
........
r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
Issue 5954, PyFrame_GetLineNumber:
Most uses of PyCode_Addr2Line
(http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
the line number of a specified frame, but there's no way to do that directly.
Forcing people to go through the code object makes them know more about the
guts of the interpreter than they should need.
The remaining uses of PyCode_Addr2Line seem to be getting the line from a
traceback (for example,
http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
which is replaced by the tb_lineno field. So we may be able to deprecate
PyCode_Addr2Line entirely for external use.
........
r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
Issue #6042:
lnotab-based tracing is very complicated and isn't documented very well. There
were at least 3 comment blocks purporting to document co_lnotab, and none did a
very good job. This patch unifies them into Objects/lnotab_notes.txt which
tries to completely capture the current state of affairs.
I also discovered that we've attached 2 layers of patches to the basic tracing
scheme. The first layer avoids jumping to instructions that don't start a line,
to avoid problems in if statements and while loops. The second layer
discovered that jumps backward do need to trace at instructions that don't
start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
added a special case for backward jumps within the same line. I replaced these
patches by just treating forward and backward jumps differently.
........
2009-07-21 01:30:03 -03:00
|
|
|
|
|
|
|
failed:
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_XDECREF(funcname_ob);
|
|
|
|
Py_XDECREF(filename_ob);
|
|
|
|
return result;
|
Merged revisions 72487-72488,72879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
PyCode_NewEmpty:
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
are trying to build an empty code object, usually to put it in a dummy frame
object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
just the filename, function name, and first line number, instead of also
requiring lots of code internals.
........
r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
Issue 5954, PyFrame_GetLineNumber:
Most uses of PyCode_Addr2Line
(http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
the line number of a specified frame, but there's no way to do that directly.
Forcing people to go through the code object makes them know more about the
guts of the interpreter than they should need.
The remaining uses of PyCode_Addr2Line seem to be getting the line from a
traceback (for example,
http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
which is replaced by the tb_lineno field. So we may be able to deprecate
PyCode_Addr2Line entirely for external use.
........
r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
Issue #6042:
lnotab-based tracing is very complicated and isn't documented very well. There
were at least 3 comment blocks purporting to document co_lnotab, and none did a
very good job. This patch unifies them into Objects/lnotab_notes.txt which
tries to completely capture the current state of affairs.
I also discovered that we've attached 2 layers of patches to the basic tracing
scheme. The first layer avoids jumping to instructions that don't start a line,
to avoid problems in if statements and while loops. The second layer
discovered that jumps backward do need to trace at instructions that don't
start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
added a special case for backward jumps within the same line. I replaced these
patches by just treating forward and backward jumps differently.
........
2009-07-21 01:30:03 -03:00
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
#define OFF(x) offsetof(PyCodeObject, x)
|
|
|
|
|
|
|
|
static PyMemberDef code_memberlist[] = {
|
2019-04-29 09:36:57 -03:00
|
|
|
{"co_argcount", T_INT, OFF(co_argcount), READONLY},
|
|
|
|
{"co_posonlyargcount", T_INT, OFF(co_posonlyargcount), READONLY},
|
|
|
|
{"co_kwonlyargcount", T_INT, OFF(co_kwonlyargcount), READONLY},
|
|
|
|
{"co_nlocals", T_INT, OFF(co_nlocals), READONLY},
|
|
|
|
{"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
|
|
|
|
{"co_flags", T_INT, OFF(co_flags), READONLY},
|
|
|
|
{"co_code", T_OBJECT, OFF(co_code), READONLY},
|
|
|
|
{"co_consts", T_OBJECT, OFF(co_consts), READONLY},
|
|
|
|
{"co_names", T_OBJECT, OFF(co_names), READONLY},
|
|
|
|
{"co_varnames", T_OBJECT, OFF(co_varnames), READONLY},
|
|
|
|
{"co_freevars", T_OBJECT, OFF(co_freevars), READONLY},
|
|
|
|
{"co_cellvars", T_OBJECT, OFF(co_cellvars), READONLY},
|
|
|
|
{"co_filename", T_OBJECT, OFF(co_filename), READONLY},
|
|
|
|
{"co_name", T_OBJECT, OFF(co_name), READONLY},
|
2020-11-12 05:43:29 -04:00
|
|
|
{"co_firstlineno", T_INT, OFF(co_firstlineno), READONLY},
|
|
|
|
{"co_linetable", T_OBJECT, OFF(co_linetable), READONLY},
|
2010-05-09 12:52:27 -03:00
|
|
|
{NULL} /* Sentinel */
|
2005-10-20 16:59:25 -03:00
|
|
|
};
|
|
|
|
|
2020-11-12 05:43:29 -04:00
|
|
|
static int
|
|
|
|
emit_pair(PyObject **bytes, int *offset, int a, int b)
|
|
|
|
{
|
|
|
|
Py_ssize_t len = PyBytes_GET_SIZE(*bytes);
|
|
|
|
if (*offset + 2 >= len) {
|
|
|
|
if (_PyBytes_Resize(bytes, len * 2) < 0)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
unsigned char *lnotab = (unsigned char *)
|
|
|
|
PyBytes_AS_STRING(*bytes) + *offset;
|
|
|
|
*lnotab++ = a;
|
|
|
|
*lnotab++ = b;
|
|
|
|
*offset += 2;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
emit_delta(PyObject **bytes, int bdelta, int ldelta, int *offset)
|
|
|
|
{
|
|
|
|
while (bdelta > 255) {
|
|
|
|
if (!emit_pair(bytes, offset, 255, 0)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
bdelta -= 255;
|
|
|
|
}
|
|
|
|
while (ldelta > 127) {
|
|
|
|
if (!emit_pair(bytes, offset, bdelta, 127)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
bdelta = 0;
|
|
|
|
ldelta -= 127;
|
|
|
|
}
|
|
|
|
while (ldelta < -128) {
|
|
|
|
if (!emit_pair(bytes, offset, bdelta, -128)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
bdelta = 0;
|
|
|
|
ldelta += 128;
|
|
|
|
}
|
|
|
|
return emit_pair(bytes, offset, bdelta, ldelta);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
code_getlnotab(PyCodeObject *code, void *closure)
|
|
|
|
{
|
|
|
|
PyCodeAddressRange bounds;
|
|
|
|
PyObject *bytes;
|
|
|
|
int table_offset = 0;
|
|
|
|
int code_offset = 0;
|
|
|
|
int line = code->co_firstlineno;
|
|
|
|
bytes = PyBytes_FromStringAndSize(NULL, 64);
|
|
|
|
if (bytes == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
_PyCode_InitAddressRange(code, &bounds);
|
|
|
|
while (PyLineTable_NextAddressRange(&bounds)) {
|
|
|
|
if (bounds.ar_computed_line != line) {
|
|
|
|
int bdelta = bounds.ar_start - code_offset;
|
|
|
|
int ldelta = bounds.ar_computed_line - line;
|
|
|
|
if (!emit_delta(&bytes, bdelta, ldelta, &table_offset)) {
|
|
|
|
Py_DECREF(bytes);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
code_offset = bounds.ar_start;
|
|
|
|
line = bounds.ar_computed_line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_PyBytes_Resize(&bytes, table_offset);
|
|
|
|
return bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PyGetSetDef code_getsetlist[] = {
|
|
|
|
{"co_lnotab", (getter)code_getlnotab, NULL, NULL},
|
|
|
|
{0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
/* Helper for code_new: return a shallow copy of a tuple that is
|
|
|
|
guaranteed to contain exact strings, by converting string subclasses
|
|
|
|
to exact strings and complaining if a non-string is found. */
|
|
|
|
static PyObject*
|
|
|
|
validate_and_copy_tuple(PyObject *tup)
|
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject *newtuple;
|
|
|
|
PyObject *item;
|
|
|
|
Py_ssize_t i, len;
|
|
|
|
|
|
|
|
len = PyTuple_GET_SIZE(tup);
|
|
|
|
newtuple = PyTuple_New(len);
|
|
|
|
if (newtuple == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
item = PyTuple_GET_ITEM(tup, i);
|
|
|
|
if (PyUnicode_CheckExact(item)) {
|
|
|
|
Py_INCREF(item);
|
|
|
|
}
|
|
|
|
else if (!PyUnicode_Check(item)) {
|
|
|
|
PyErr_Format(
|
|
|
|
PyExc_TypeError,
|
|
|
|
"name tuples must contain only "
|
|
|
|
"strings, not '%.500s'",
|
2020-02-06 22:04:21 -04:00
|
|
|
Py_TYPE(item)->tp_name);
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_DECREF(newtuple);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else {
|
2011-12-11 20:53:47 -04:00
|
|
|
item = _PyUnicode_Copy(item);
|
2010-05-09 12:52:27 -03:00
|
|
|
if (item == NULL) {
|
|
|
|
Py_DECREF(newtuple);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PyTuple_SET_ITEM(newtuple, i, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
return newtuple;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2020-07-10 04:12:04 -03:00
|
|
|
/*[clinic input]
|
|
|
|
@classmethod
|
|
|
|
code.__new__ as code_new
|
|
|
|
|
|
|
|
argcount: int
|
|
|
|
posonlyargcount: int
|
|
|
|
kwonlyargcount: int
|
|
|
|
nlocals: int
|
|
|
|
stacksize: int
|
|
|
|
flags: int
|
|
|
|
codestring as code: object(subclass_of="&PyBytes_Type")
|
|
|
|
constants as consts: object(subclass_of="&PyTuple_Type")
|
|
|
|
names: object(subclass_of="&PyTuple_Type")
|
|
|
|
varnames: object(subclass_of="&PyTuple_Type")
|
|
|
|
filename: unicode
|
|
|
|
name: unicode
|
|
|
|
firstlineno: int
|
2020-11-12 05:43:29 -04:00
|
|
|
linetable: object(subclass_of="&PyBytes_Type")
|
2020-07-10 04:12:04 -03:00
|
|
|
freevars: object(subclass_of="&PyTuple_Type", c_default="NULL") = ()
|
|
|
|
cellvars: object(subclass_of="&PyTuple_Type", c_default="NULL") = ()
|
|
|
|
/
|
|
|
|
|
|
|
|
Create a code object. Not for the faint of heart.
|
|
|
|
[clinic start generated code]*/
|
2005-10-20 16:59:25 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-07-10 04:12:04 -03:00
|
|
|
code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount,
|
|
|
|
int kwonlyargcount, int nlocals, int stacksize, int flags,
|
|
|
|
PyObject *code, PyObject *consts, PyObject *names,
|
|
|
|
PyObject *varnames, PyObject *filename, PyObject *name,
|
2020-11-12 05:43:29 -04:00
|
|
|
int firstlineno, PyObject *linetable, PyObject *freevars,
|
2020-07-10 04:12:04 -03:00
|
|
|
PyObject *cellvars)
|
2020-11-12 05:43:29 -04:00
|
|
|
/*[clinic end generated code: output=42c1839b082ba293 input=0ec80da632b99f57]*/
|
2005-10-20 16:59:25 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject *co = NULL;
|
2020-07-10 04:12:04 -03:00
|
|
|
PyObject *ournames = NULL;
|
|
|
|
PyObject *ourvarnames = NULL;
|
|
|
|
PyObject *ourfreevars = NULL;
|
|
|
|
PyObject *ourcellvars = NULL;
|
2010-05-09 12:52:27 -03:00
|
|
|
|
2019-06-01 17:18:48 -03:00
|
|
|
if (PySys_Audit("code.__new__", "OOOiiiiii",
|
|
|
|
code, filename, name, argcount, posonlyargcount,
|
|
|
|
kwonlyargcount, nlocals, stacksize, flags) < 0) {
|
2019-05-23 12:45:22 -03:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
if (argcount < 0) {
|
|
|
|
PyErr_SetString(
|
|
|
|
PyExc_ValueError,
|
|
|
|
"code: argcount must not be negative");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2019-04-29 09:36:57 -03:00
|
|
|
if (posonlyargcount < 0) {
|
|
|
|
PyErr_SetString(
|
|
|
|
PyExc_ValueError,
|
|
|
|
"code: posonlyargcount must not be negative");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
if (kwonlyargcount < 0) {
|
|
|
|
PyErr_SetString(
|
|
|
|
PyExc_ValueError,
|
|
|
|
"code: kwonlyargcount must not be negative");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (nlocals < 0) {
|
|
|
|
PyErr_SetString(
|
|
|
|
PyExc_ValueError,
|
|
|
|
"code: nlocals must not be negative");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ournames = validate_and_copy_tuple(names);
|
|
|
|
if (ournames == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
ourvarnames = validate_and_copy_tuple(varnames);
|
|
|
|
if (ourvarnames == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
if (freevars)
|
|
|
|
ourfreevars = validate_and_copy_tuple(freevars);
|
|
|
|
else
|
|
|
|
ourfreevars = PyTuple_New(0);
|
|
|
|
if (ourfreevars == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
if (cellvars)
|
|
|
|
ourcellvars = validate_and_copy_tuple(cellvars);
|
|
|
|
else
|
|
|
|
ourcellvars = PyTuple_New(0);
|
|
|
|
if (ourcellvars == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
|
2019-07-01 07:35:05 -03:00
|
|
|
co = (PyObject *)PyCode_NewWithPosOnlyArgs(argcount, posonlyargcount,
|
|
|
|
kwonlyargcount,
|
|
|
|
nlocals, stacksize, flags,
|
|
|
|
code, consts, ournames,
|
|
|
|
ourvarnames, ourfreevars,
|
|
|
|
ourcellvars, filename,
|
2020-11-12 05:43:29 -04:00
|
|
|
name, firstlineno, linetable);
|
2020-01-27 18:24:13 -04:00
|
|
|
cleanup:
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_XDECREF(ournames);
|
|
|
|
Py_XDECREF(ourvarnames);
|
|
|
|
Py_XDECREF(ourfreevars);
|
|
|
|
Py_XDECREF(ourcellvars);
|
|
|
|
return co;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
code_dealloc(PyCodeObject *co)
|
|
|
|
{
|
2019-06-03 09:30:58 -03:00
|
|
|
if (co->co_opcache != NULL) {
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(co->co_opcache);
|
2019-06-03 09:30:58 -03:00
|
|
|
}
|
|
|
|
if (co->co_opcache_map != NULL) {
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(co->co_opcache_map);
|
2019-06-03 09:30:58 -03:00
|
|
|
}
|
|
|
|
co->co_opcache_flag = 0;
|
|
|
|
co->co_opcache_size = 0;
|
|
|
|
|
2016-09-07 15:16:41 -03:00
|
|
|
if (co->co_extra != NULL) {
|
2020-04-14 10:14:01 -03:00
|
|
|
PyInterpreterState *interp = _PyInterpreterState_GET();
|
2016-09-07 18:30:39 -03:00
|
|
|
_PyCodeObjectExtra *co_extra = co->co_extra;
|
2016-09-07 15:16:41 -03:00
|
|
|
|
2016-09-07 18:30:39 -03:00
|
|
|
for (Py_ssize_t i = 0; i < co_extra->ce_size; i++) {
|
2017-06-21 18:44:36 -03:00
|
|
|
freefunc free_extra = interp->co_extra_freefuncs[i];
|
2016-09-07 15:16:41 -03:00
|
|
|
|
|
|
|
if (free_extra != NULL) {
|
2016-09-07 18:30:39 -03:00
|
|
|
free_extra(co_extra->ce_extras[i]);
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 21:12:00 -03:00
|
|
|
PyMem_Free(co_extra);
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_XDECREF(co->co_code);
|
|
|
|
Py_XDECREF(co->co_consts);
|
|
|
|
Py_XDECREF(co->co_names);
|
|
|
|
Py_XDECREF(co->co_varnames);
|
|
|
|
Py_XDECREF(co->co_freevars);
|
|
|
|
Py_XDECREF(co->co_cellvars);
|
|
|
|
Py_XDECREF(co->co_filename);
|
|
|
|
Py_XDECREF(co->co_name);
|
2020-11-12 05:43:29 -04:00
|
|
|
Py_XDECREF(co->co_linetable);
|
2011-06-26 00:54:45 -03:00
|
|
|
if (co->co_cell2arg != NULL)
|
2020-12-01 04:56:42 -04:00
|
|
|
PyMem_Free(co->co_cell2arg);
|
2010-05-09 12:52:27 -03:00
|
|
|
if (co->co_zombieframe != NULL)
|
|
|
|
PyObject_GC_Del(co->co_zombieframe);
|
|
|
|
if (co->co_weakreflist != NULL)
|
|
|
|
PyObject_ClearWeakRefs((PyObject*)co);
|
2020-12-01 05:37:39 -04:00
|
|
|
PyObject_Free(co);
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2012-07-26 17:23:23 -03:00
|
|
|
static PyObject *
|
2019-05-24 18:57:23 -03:00
|
|
|
code_sizeof(PyCodeObject *co, PyObject *Py_UNUSED(args))
|
2012-07-26 17:23:23 -03:00
|
|
|
{
|
2017-04-20 04:31:17 -03:00
|
|
|
Py_ssize_t res = _PyObject_SIZE(Py_TYPE(co));
|
|
|
|
_PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra*) co->co_extra;
|
2012-07-26 17:23:23 -03:00
|
|
|
|
2017-07-04 09:06:16 -03:00
|
|
|
if (co->co_cell2arg != NULL && co->co_cellvars != NULL) {
|
2016-12-16 13:19:02 -04:00
|
|
|
res += PyTuple_GET_SIZE(co->co_cellvars) * sizeof(Py_ssize_t);
|
2017-07-04 09:06:16 -03:00
|
|
|
}
|
|
|
|
if (co_extra != NULL) {
|
|
|
|
res += sizeof(_PyCodeObjectExtra) +
|
|
|
|
(co_extra->ce_size-1) * sizeof(co_extra->ce_extras[0]);
|
|
|
|
}
|
2019-06-03 09:30:58 -03:00
|
|
|
if (co->co_opcache != NULL) {
|
|
|
|
assert(co->co_opcache_map != NULL);
|
|
|
|
// co_opcache_map
|
|
|
|
res += PyBytes_GET_SIZE(co->co_code) / sizeof(_Py_CODEUNIT);
|
|
|
|
// co_opcache
|
|
|
|
res += co->co_opcache_size * sizeof(_PyOpcache);
|
|
|
|
}
|
2012-07-26 17:23:23 -03:00
|
|
|
return PyLong_FromSsize_t(res);
|
|
|
|
}
|
|
|
|
|
2019-05-24 18:57:23 -03:00
|
|
|
/*[clinic input]
|
|
|
|
code.replace
|
|
|
|
|
|
|
|
*
|
|
|
|
co_argcount: int(c_default="self->co_argcount") = -1
|
|
|
|
co_posonlyargcount: int(c_default="self->co_posonlyargcount") = -1
|
|
|
|
co_kwonlyargcount: int(c_default="self->co_kwonlyargcount") = -1
|
|
|
|
co_nlocals: int(c_default="self->co_nlocals") = -1
|
|
|
|
co_stacksize: int(c_default="self->co_stacksize") = -1
|
|
|
|
co_flags: int(c_default="self->co_flags") = -1
|
|
|
|
co_firstlineno: int(c_default="self->co_firstlineno") = -1
|
|
|
|
co_code: PyBytesObject(c_default="(PyBytesObject *)self->co_code") = None
|
|
|
|
co_consts: object(subclass_of="&PyTuple_Type", c_default="self->co_consts") = None
|
|
|
|
co_names: object(subclass_of="&PyTuple_Type", c_default="self->co_names") = None
|
|
|
|
co_varnames: object(subclass_of="&PyTuple_Type", c_default="self->co_varnames") = None
|
|
|
|
co_freevars: object(subclass_of="&PyTuple_Type", c_default="self->co_freevars") = None
|
|
|
|
co_cellvars: object(subclass_of="&PyTuple_Type", c_default="self->co_cellvars") = None
|
|
|
|
co_filename: unicode(c_default="self->co_filename") = None
|
|
|
|
co_name: unicode(c_default="self->co_name") = None
|
2020-11-12 05:43:29 -04:00
|
|
|
co_linetable: PyBytesObject(c_default="(PyBytesObject *)self->co_linetable") = None
|
2019-05-24 18:57:23 -03:00
|
|
|
|
2020-01-01 02:11:16 -04:00
|
|
|
Return a copy of the code object with new values for the specified fields.
|
2019-05-24 18:57:23 -03:00
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
code_replace_impl(PyCodeObject *self, int co_argcount,
|
|
|
|
int co_posonlyargcount, int co_kwonlyargcount,
|
|
|
|
int co_nlocals, int co_stacksize, int co_flags,
|
|
|
|
int co_firstlineno, PyBytesObject *co_code,
|
|
|
|
PyObject *co_consts, PyObject *co_names,
|
|
|
|
PyObject *co_varnames, PyObject *co_freevars,
|
|
|
|
PyObject *co_cellvars, PyObject *co_filename,
|
2020-11-12 05:43:29 -04:00
|
|
|
PyObject *co_name, PyBytesObject *co_linetable)
|
|
|
|
/*[clinic end generated code: output=50d77e668d3b449b input=a5f997b173d7f636]*/
|
2019-05-24 18:57:23 -03:00
|
|
|
{
|
|
|
|
#define CHECK_INT_ARG(ARG) \
|
|
|
|
if (ARG < 0) { \
|
|
|
|
PyErr_SetString(PyExc_ValueError, \
|
|
|
|
#ARG " must be a positive integer"); \
|
|
|
|
return NULL; \
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_INT_ARG(co_argcount);
|
|
|
|
CHECK_INT_ARG(co_posonlyargcount);
|
|
|
|
CHECK_INT_ARG(co_kwonlyargcount);
|
|
|
|
CHECK_INT_ARG(co_nlocals);
|
|
|
|
CHECK_INT_ARG(co_stacksize);
|
|
|
|
CHECK_INT_ARG(co_flags);
|
|
|
|
CHECK_INT_ARG(co_firstlineno);
|
|
|
|
|
|
|
|
#undef CHECK_INT_ARG
|
|
|
|
|
2019-11-26 20:27:50 -04:00
|
|
|
if (PySys_Audit("code.__new__", "OOOiiiiii",
|
|
|
|
co_code, co_filename, co_name, co_argcount,
|
|
|
|
co_posonlyargcount, co_kwonlyargcount, co_nlocals,
|
|
|
|
co_stacksize, co_flags) < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-07-01 07:35:05 -03:00
|
|
|
return (PyObject *)PyCode_NewWithPosOnlyArgs(
|
2019-05-24 18:57:23 -03:00
|
|
|
co_argcount, co_posonlyargcount, co_kwonlyargcount, co_nlocals,
|
|
|
|
co_stacksize, co_flags, (PyObject*)co_code, co_consts, co_names,
|
|
|
|
co_varnames, co_freevars, co_cellvars, co_filename, co_name,
|
2020-11-12 05:43:29 -04:00
|
|
|
co_firstlineno, (PyObject*)co_linetable);
|
2019-05-24 18:57:23 -03:00
|
|
|
}
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
static PyObject *
|
|
|
|
code_repr(PyCodeObject *co)
|
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
int lineno;
|
|
|
|
if (co->co_firstlineno != 0)
|
|
|
|
lineno = co->co_firstlineno;
|
|
|
|
else
|
|
|
|
lineno = -1;
|
|
|
|
if (co->co_filename && PyUnicode_Check(co->co_filename)) {
|
|
|
|
return PyUnicode_FromFormat(
|
2011-01-04 23:33:26 -04:00
|
|
|
"<code object %U at %p, file \"%U\", line %d>",
|
2010-05-09 12:52:27 -03:00
|
|
|
co->co_name, co, co->co_filename, lineno);
|
|
|
|
} else {
|
|
|
|
return PyUnicode_FromFormat(
|
2011-01-04 23:33:26 -04:00
|
|
|
"<code object %U at %p, file ???, line %d>",
|
2010-05-09 12:52:27 -03:00
|
|
|
co->co_name, co, lineno);
|
|
|
|
}
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2016-01-22 07:33:12 -04:00
|
|
|
PyObject*
|
|
|
|
_PyCode_ConstantKey(PyObject *op)
|
|
|
|
{
|
|
|
|
PyObject *key;
|
|
|
|
|
2018-04-19 02:28:04 -03:00
|
|
|
/* Py_None and Py_Ellipsis are singletons. */
|
2016-01-22 07:33:12 -04:00
|
|
|
if (op == Py_None || op == Py_Ellipsis
|
|
|
|
|| PyLong_CheckExact(op)
|
|
|
|
|| PyUnicode_CheckExact(op)
|
|
|
|
/* code_richcompare() uses _PyCode_ConstantKey() internally */
|
2018-04-19 02:28:04 -03:00
|
|
|
|| PyCode_Check(op))
|
|
|
|
{
|
|
|
|
/* Objects of these types are always different from object of other
|
|
|
|
* type and from tuples. */
|
|
|
|
Py_INCREF(op);
|
|
|
|
key = op;
|
|
|
|
}
|
|
|
|
else if (PyBool_Check(op) || PyBytes_CheckExact(op)) {
|
|
|
|
/* Make booleans different from integers 0 and 1.
|
|
|
|
* Avoid BytesWarning from comparing bytes with strings. */
|
2016-01-22 07:33:12 -04:00
|
|
|
key = PyTuple_Pack(2, Py_TYPE(op), op);
|
|
|
|
}
|
|
|
|
else if (PyFloat_CheckExact(op)) {
|
|
|
|
double d = PyFloat_AS_DOUBLE(op);
|
|
|
|
/* all we need is to make the tuple different in either the 0.0
|
|
|
|
* or -0.0 case from all others, just to avoid the "coercion".
|
|
|
|
*/
|
|
|
|
if (d == 0.0 && copysign(1.0, d) < 0.0)
|
|
|
|
key = PyTuple_Pack(3, Py_TYPE(op), op, Py_None);
|
|
|
|
else
|
|
|
|
key = PyTuple_Pack(2, Py_TYPE(op), op);
|
|
|
|
}
|
|
|
|
else if (PyComplex_CheckExact(op)) {
|
|
|
|
Py_complex z;
|
|
|
|
int real_negzero, imag_negzero;
|
|
|
|
/* For the complex case we must make complex(x, 0.)
|
|
|
|
different from complex(x, -0.) and complex(0., y)
|
|
|
|
different from complex(-0., y), for any x and y.
|
|
|
|
All four complex zeros must be distinguished.*/
|
|
|
|
z = PyComplex_AsCComplex(op);
|
|
|
|
real_negzero = z.real == 0.0 && copysign(1.0, z.real) < 0.0;
|
|
|
|
imag_negzero = z.imag == 0.0 && copysign(1.0, z.imag) < 0.0;
|
|
|
|
/* use True, False and None singleton as tags for the real and imag
|
|
|
|
* sign, to make tuples different */
|
|
|
|
if (real_negzero && imag_negzero) {
|
|
|
|
key = PyTuple_Pack(3, Py_TYPE(op), op, Py_True);
|
|
|
|
}
|
|
|
|
else if (imag_negzero) {
|
|
|
|
key = PyTuple_Pack(3, Py_TYPE(op), op, Py_False);
|
|
|
|
}
|
|
|
|
else if (real_negzero) {
|
|
|
|
key = PyTuple_Pack(3, Py_TYPE(op), op, Py_None);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
key = PyTuple_Pack(2, Py_TYPE(op), op);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (PyTuple_CheckExact(op)) {
|
|
|
|
Py_ssize_t i, len;
|
|
|
|
PyObject *tuple;
|
|
|
|
|
|
|
|
len = PyTuple_GET_SIZE(op);
|
|
|
|
tuple = PyTuple_New(len);
|
|
|
|
if (tuple == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i=0; i < len; i++) {
|
|
|
|
PyObject *item, *item_key;
|
|
|
|
|
|
|
|
item = PyTuple_GET_ITEM(op, i);
|
|
|
|
item_key = _PyCode_ConstantKey(item);
|
|
|
|
if (item_key == NULL) {
|
|
|
|
Py_DECREF(tuple);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyTuple_SET_ITEM(tuple, i, item_key);
|
|
|
|
}
|
|
|
|
|
2017-01-24 14:49:26 -04:00
|
|
|
key = PyTuple_Pack(2, tuple, op);
|
2016-01-22 07:33:12 -04:00
|
|
|
Py_DECREF(tuple);
|
|
|
|
}
|
|
|
|
else if (PyFrozenSet_CheckExact(op)) {
|
|
|
|
Py_ssize_t pos = 0;
|
|
|
|
PyObject *item;
|
|
|
|
Py_hash_t hash;
|
|
|
|
Py_ssize_t i, len;
|
|
|
|
PyObject *tuple, *set;
|
|
|
|
|
|
|
|
len = PySet_GET_SIZE(op);
|
|
|
|
tuple = PyTuple_New(len);
|
|
|
|
if (tuple == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (_PySet_NextEntry(op, &pos, &item, &hash)) {
|
|
|
|
PyObject *item_key;
|
|
|
|
|
|
|
|
item_key = _PyCode_ConstantKey(item);
|
|
|
|
if (item_key == NULL) {
|
|
|
|
Py_DECREF(tuple);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(i < len);
|
|
|
|
PyTuple_SET_ITEM(tuple, i, item_key);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
set = PyFrozenSet_New(tuple);
|
|
|
|
Py_DECREF(tuple);
|
|
|
|
if (set == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2017-01-24 14:49:26 -04:00
|
|
|
key = PyTuple_Pack(2, set, op);
|
2016-01-22 07:33:12 -04:00
|
|
|
Py_DECREF(set);
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
else {
|
2016-04-14 23:14:19 -03:00
|
|
|
/* for other types, use the object identifier as a unique identifier
|
2016-01-22 07:33:12 -04:00
|
|
|
* to ensure that they are seen as unequal. */
|
|
|
|
PyObject *obj_id = PyLong_FromVoidPtr(op);
|
|
|
|
if (obj_id == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2017-01-24 14:49:26 -04:00
|
|
|
key = PyTuple_Pack(2, obj_id, op);
|
2016-01-22 07:33:12 -04:00
|
|
|
Py_DECREF(obj_id);
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
2006-08-23 21:41:19 -03:00
|
|
|
static PyObject *
|
|
|
|
code_richcompare(PyObject *self, PyObject *other, int op)
|
2005-10-20 16:59:25 -03:00
|
|
|
{
|
2010-05-09 12:52:27 -03:00
|
|
|
PyCodeObject *co, *cp;
|
|
|
|
int eq;
|
2016-01-22 07:33:12 -04:00
|
|
|
PyObject *consts1, *consts2;
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject *res;
|
|
|
|
|
|
|
|
if ((op != Py_EQ && op != Py_NE) ||
|
|
|
|
!PyCode_Check(self) ||
|
|
|
|
!PyCode_Check(other)) {
|
2011-08-10 22:28:54 -03:00
|
|
|
Py_RETURN_NOTIMPLEMENTED;
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
co = (PyCodeObject *)self;
|
|
|
|
cp = (PyCodeObject *)other;
|
|
|
|
|
|
|
|
eq = PyObject_RichCompareBool(co->co_name, cp->co_name, Py_EQ);
|
2019-04-29 09:36:57 -03:00
|
|
|
if (!eq) goto unequal;
|
2010-05-09 12:52:27 -03:00
|
|
|
eq = co->co_argcount == cp->co_argcount;
|
|
|
|
if (!eq) goto unequal;
|
2019-04-29 09:36:57 -03:00
|
|
|
eq = co->co_posonlyargcount == cp->co_posonlyargcount;
|
|
|
|
if (!eq) goto unequal;
|
2010-05-09 12:52:27 -03:00
|
|
|
eq = co->co_kwonlyargcount == cp->co_kwonlyargcount;
|
|
|
|
if (!eq) goto unequal;
|
|
|
|
eq = co->co_nlocals == cp->co_nlocals;
|
|
|
|
if (!eq) goto unequal;
|
|
|
|
eq = co->co_flags == cp->co_flags;
|
|
|
|
if (!eq) goto unequal;
|
|
|
|
eq = co->co_firstlineno == cp->co_firstlineno;
|
|
|
|
if (!eq) goto unequal;
|
|
|
|
eq = PyObject_RichCompareBool(co->co_code, cp->co_code, Py_EQ);
|
|
|
|
if (eq <= 0) goto unequal;
|
2016-01-22 07:33:12 -04:00
|
|
|
|
|
|
|
/* compare constants */
|
|
|
|
consts1 = _PyCode_ConstantKey(co->co_consts);
|
|
|
|
if (!consts1)
|
|
|
|
return NULL;
|
|
|
|
consts2 = _PyCode_ConstantKey(cp->co_consts);
|
|
|
|
if (!consts2) {
|
|
|
|
Py_DECREF(consts1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
eq = PyObject_RichCompareBool(consts1, consts2, Py_EQ);
|
|
|
|
Py_DECREF(consts1);
|
|
|
|
Py_DECREF(consts2);
|
2010-05-09 12:52:27 -03:00
|
|
|
if (eq <= 0) goto unequal;
|
2016-01-22 07:33:12 -04:00
|
|
|
|
2010-05-09 12:52:27 -03:00
|
|
|
eq = PyObject_RichCompareBool(co->co_names, cp->co_names, Py_EQ);
|
|
|
|
if (eq <= 0) goto unequal;
|
|
|
|
eq = PyObject_RichCompareBool(co->co_varnames, cp->co_varnames, Py_EQ);
|
|
|
|
if (eq <= 0) goto unequal;
|
|
|
|
eq = PyObject_RichCompareBool(co->co_freevars, cp->co_freevars, Py_EQ);
|
|
|
|
if (eq <= 0) goto unequal;
|
|
|
|
eq = PyObject_RichCompareBool(co->co_cellvars, cp->co_cellvars, Py_EQ);
|
|
|
|
if (eq <= 0) goto unequal;
|
|
|
|
|
|
|
|
if (op == Py_EQ)
|
|
|
|
res = Py_True;
|
|
|
|
else
|
|
|
|
res = Py_False;
|
|
|
|
goto done;
|
2006-08-24 01:12:18 -03:00
|
|
|
|
|
|
|
unequal:
|
2010-05-09 12:52:27 -03:00
|
|
|
if (eq < 0)
|
|
|
|
return NULL;
|
|
|
|
if (op == Py_NE)
|
|
|
|
res = Py_True;
|
|
|
|
else
|
|
|
|
res = Py_False;
|
2006-08-24 01:12:18 -03:00
|
|
|
|
|
|
|
done:
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_INCREF(res);
|
|
|
|
return res;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2010-10-17 17:54:53 -03:00
|
|
|
static Py_hash_t
|
2005-10-20 16:59:25 -03:00
|
|
|
code_hash(PyCodeObject *co)
|
|
|
|
{
|
2010-10-17 17:54:53 -03:00
|
|
|
Py_hash_t h, h0, h1, h2, h3, h4, h5, h6;
|
2010-05-09 12:52:27 -03:00
|
|
|
h0 = PyObject_Hash(co->co_name);
|
|
|
|
if (h0 == -1) return -1;
|
|
|
|
h1 = PyObject_Hash(co->co_code);
|
|
|
|
if (h1 == -1) return -1;
|
|
|
|
h2 = PyObject_Hash(co->co_consts);
|
|
|
|
if (h2 == -1) return -1;
|
|
|
|
h3 = PyObject_Hash(co->co_names);
|
|
|
|
if (h3 == -1) return -1;
|
|
|
|
h4 = PyObject_Hash(co->co_varnames);
|
|
|
|
if (h4 == -1) return -1;
|
|
|
|
h5 = PyObject_Hash(co->co_freevars);
|
|
|
|
if (h5 == -1) return -1;
|
|
|
|
h6 = PyObject_Hash(co->co_cellvars);
|
|
|
|
if (h6 == -1) return -1;
|
|
|
|
h = h0 ^ h1 ^ h2 ^ h3 ^ h4 ^ h5 ^ h6 ^
|
2019-04-29 09:36:57 -03:00
|
|
|
co->co_argcount ^ co->co_posonlyargcount ^ co->co_kwonlyargcount ^
|
2010-05-09 12:52:27 -03:00
|
|
|
co->co_nlocals ^ co->co_flags;
|
|
|
|
if (h == -1) h = -2;
|
|
|
|
return h;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
|
|
|
|
2020-11-12 05:43:29 -04:00
|
|
|
typedef struct {
|
|
|
|
PyObject_HEAD
|
|
|
|
PyCodeObject *li_code;
|
|
|
|
PyCodeAddressRange li_line;
|
|
|
|
char *li_end;
|
|
|
|
} lineiterator;
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
lineiter_dealloc(lineiterator *li)
|
|
|
|
{
|
|
|
|
Py_DECREF(li->li_code);
|
|
|
|
Py_TYPE(li)->tp_free(li);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
lineiter_next(lineiterator *li)
|
|
|
|
{
|
|
|
|
PyCodeAddressRange *bounds = &li->li_line;
|
|
|
|
if (!PyLineTable_NextAddressRange(bounds)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
PyObject *start = NULL;
|
|
|
|
PyObject *end = NULL;
|
|
|
|
PyObject *line = NULL;
|
|
|
|
PyObject *result = PyTuple_New(3);
|
|
|
|
start = PyLong_FromLong(bounds->ar_start);
|
|
|
|
end = PyLong_FromLong(bounds->ar_end);
|
|
|
|
if (bounds->ar_line < 0) {
|
|
|
|
Py_INCREF(Py_None);
|
|
|
|
line = Py_None;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
line = PyLong_FromLong(bounds->ar_line);
|
|
|
|
}
|
|
|
|
if (result == NULL || start == NULL || end == NULL || line == NULL) {
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
PyTuple_SET_ITEM(result, 0, start);
|
|
|
|
PyTuple_SET_ITEM(result, 1, end);
|
|
|
|
PyTuple_SET_ITEM(result, 2, line);
|
|
|
|
return result;
|
|
|
|
error:
|
|
|
|
Py_XDECREF(start);
|
|
|
|
Py_XDECREF(end);
|
|
|
|
Py_XDECREF(line);
|
|
|
|
Py_XDECREF(result);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyTypeObject LineIterator = {
|
|
|
|
PyVarObject_HEAD_INIT(&PyType_Type, 0)
|
|
|
|
"line_iterator", /* tp_name */
|
|
|
|
sizeof(lineiterator), /* tp_basicsize */
|
|
|
|
0, /* tp_itemsize */
|
|
|
|
/* methods */
|
|
|
|
(destructor)lineiter_dealloc, /* tp_dealloc */
|
|
|
|
0, /* tp_vectorcall_offset */
|
|
|
|
0, /* tp_getattr */
|
|
|
|
0, /* tp_setattr */
|
|
|
|
0, /* tp_as_async */
|
|
|
|
0, /* tp_repr */
|
|
|
|
0, /* tp_as_number */
|
|
|
|
0, /* tp_as_sequence */
|
|
|
|
0, /* tp_as_mapping */
|
|
|
|
0, /* tp_hash */
|
|
|
|
0, /* tp_call */
|
|
|
|
0, /* tp_str */
|
|
|
|
0, /* tp_getattro */
|
|
|
|
0, /* tp_setattro */
|
|
|
|
0, /* tp_as_buffer */
|
|
|
|
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /* tp_flags */
|
|
|
|
0, /* tp_doc */
|
|
|
|
0, /* tp_traverse */
|
|
|
|
0, /* tp_clear */
|
|
|
|
0, /* tp_richcompare */
|
|
|
|
0, /* tp_weaklistoffset */
|
|
|
|
PyObject_SelfIter, /* tp_iter */
|
|
|
|
(iternextfunc)lineiter_next, /* tp_iternext */
|
|
|
|
0, /* tp_methods */
|
|
|
|
0, /* tp_members */
|
|
|
|
0, /* tp_getset */
|
|
|
|
0, /* tp_base */
|
|
|
|
0, /* tp_dict */
|
|
|
|
0, /* tp_descr_get */
|
|
|
|
0, /* tp_descr_set */
|
|
|
|
0, /* tp_dictoffset */
|
|
|
|
0, /* tp_init */
|
|
|
|
0, /* tp_alloc */
|
|
|
|
0, /* tp_new */
|
|
|
|
PyObject_Del, /* tp_free */
|
|
|
|
};
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
code_linesiterator(PyCodeObject *code, PyObject *Py_UNUSED(args))
|
|
|
|
{
|
|
|
|
lineiterator *li = (lineiterator *)PyType_GenericAlloc(&LineIterator, 0);
|
|
|
|
if (li == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
Py_INCREF(code);
|
|
|
|
li->li_code = code;
|
|
|
|
_PyCode_InitAddressRange(code, &li->li_line);
|
|
|
|
return (PyObject *)li;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
retreat(PyCodeAddressRange *bounds)
|
|
|
|
{
|
|
|
|
int ldelta = ((signed char *)bounds->lo_next)[-1];
|
|
|
|
if (ldelta == -128) {
|
|
|
|
ldelta = 0;
|
|
|
|
}
|
|
|
|
bounds->ar_computed_line -= ldelta;
|
|
|
|
bounds->lo_next -= 2;
|
|
|
|
bounds->ar_end = bounds->ar_start;
|
|
|
|
bounds->ar_start -= ((unsigned char *)bounds->lo_next)[-2];
|
|
|
|
ldelta = ((signed char *)bounds->lo_next)[-1];
|
|
|
|
if (ldelta == -128) {
|
|
|
|
bounds->ar_line = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bounds->ar_line = bounds->ar_computed_line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
advance(PyCodeAddressRange *bounds)
|
|
|
|
{
|
|
|
|
bounds->ar_start = bounds->ar_end;
|
|
|
|
int delta = ((unsigned char *)bounds->lo_next)[0];
|
|
|
|
assert (delta < 255);
|
|
|
|
bounds->ar_end += delta;
|
|
|
|
int ldelta = ((signed char *)bounds->lo_next)[1];
|
|
|
|
bounds->lo_next += 2;
|
|
|
|
if (ldelta == -128) {
|
|
|
|
bounds->ar_line = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
bounds->ar_computed_line += ldelta;
|
|
|
|
bounds->ar_line = bounds->ar_computed_line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
at_end(PyCodeAddressRange *bounds) {
|
|
|
|
return ((unsigned char *)bounds->lo_next)[0] == 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyLineTable_PreviousAddressRange(PyCodeAddressRange *range)
|
|
|
|
{
|
|
|
|
if (range->ar_start <= 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
retreat(range);
|
|
|
|
while (range->ar_start == range->ar_end) {
|
|
|
|
assert(range->ar_start > 0);
|
|
|
|
retreat(range);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyLineTable_NextAddressRange(PyCodeAddressRange *range)
|
|
|
|
{
|
|
|
|
if (at_end(range)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
advance(range);
|
|
|
|
while (range->ar_start == range->ar_end) {
|
|
|
|
assert(!at_end(range));
|
|
|
|
advance(range);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
/* XXX code objects need to participate in GC? */
|
|
|
|
|
2012-07-26 17:23:23 -03:00
|
|
|
static struct PyMethodDef code_methods[] = {
|
|
|
|
{"__sizeof__", (PyCFunction)code_sizeof, METH_NOARGS},
|
2020-11-12 05:43:29 -04:00
|
|
|
{"co_lines", (PyCFunction)code_linesiterator, METH_NOARGS},
|
2019-05-24 18:57:23 -03:00
|
|
|
CODE_REPLACE_METHODDEF
|
2012-07-26 17:23:23 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
2005-10-20 16:59:25 -03:00
|
|
|
PyTypeObject PyCode_Type = {
|
2010-05-09 12:52:27 -03:00
|
|
|
PyVarObject_HEAD_INIT(&PyType_Type, 0)
|
|
|
|
"code",
|
|
|
|
sizeof(PyCodeObject),
|
|
|
|
0,
|
|
|
|
(destructor)code_dealloc, /* tp_dealloc */
|
2019-05-30 23:13:39 -03:00
|
|
|
0, /* tp_vectorcall_offset */
|
2010-05-09 12:52:27 -03:00
|
|
|
0, /* tp_getattr */
|
|
|
|
0, /* tp_setattr */
|
2019-05-30 23:13:39 -03:00
|
|
|
0, /* tp_as_async */
|
2010-05-09 12:52:27 -03:00
|
|
|
(reprfunc)code_repr, /* tp_repr */
|
|
|
|
0, /* tp_as_number */
|
|
|
|
0, /* tp_as_sequence */
|
|
|
|
0, /* tp_as_mapping */
|
|
|
|
(hashfunc)code_hash, /* tp_hash */
|
|
|
|
0, /* tp_call */
|
|
|
|
0, /* tp_str */
|
|
|
|
PyObject_GenericGetAttr, /* tp_getattro */
|
|
|
|
0, /* tp_setattro */
|
|
|
|
0, /* tp_as_buffer */
|
|
|
|
Py_TPFLAGS_DEFAULT, /* tp_flags */
|
2020-07-10 04:12:04 -03:00
|
|
|
code_new__doc__, /* tp_doc */
|
2010-05-09 12:52:27 -03:00
|
|
|
0, /* tp_traverse */
|
|
|
|
0, /* tp_clear */
|
|
|
|
code_richcompare, /* tp_richcompare */
|
|
|
|
offsetof(PyCodeObject, co_weakreflist), /* tp_weaklistoffset */
|
|
|
|
0, /* tp_iter */
|
|
|
|
0, /* tp_iternext */
|
2012-07-26 17:23:23 -03:00
|
|
|
code_methods, /* tp_methods */
|
2010-05-09 12:52:27 -03:00
|
|
|
code_memberlist, /* tp_members */
|
2020-11-12 05:43:29 -04:00
|
|
|
code_getsetlist, /* tp_getset */
|
2010-05-09 12:52:27 -03:00
|
|
|
0, /* tp_base */
|
|
|
|
0, /* tp_dict */
|
|
|
|
0, /* tp_descr_get */
|
|
|
|
0, /* tp_descr_set */
|
|
|
|
0, /* tp_dictoffset */
|
|
|
|
0, /* tp_init */
|
|
|
|
0, /* tp_alloc */
|
|
|
|
code_new, /* tp_new */
|
2005-10-20 16:59:25 -03:00
|
|
|
};
|
|
|
|
|
2020-11-12 05:43:29 -04:00
|
|
|
/* Use co_linetable to compute the line number from a bytecode index, addrq. See
|
Merged revisions 72487-72488,72879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
PyCode_NewEmpty:
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
are trying to build an empty code object, usually to put it in a dummy frame
object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
just the filename, function name, and first line number, instead of also
requiring lots of code internals.
........
r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
Issue 5954, PyFrame_GetLineNumber:
Most uses of PyCode_Addr2Line
(http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
the line number of a specified frame, but there's no way to do that directly.
Forcing people to go through the code object makes them know more about the
guts of the interpreter than they should need.
The remaining uses of PyCode_Addr2Line seem to be getting the line from a
traceback (for example,
http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
which is replaced by the tb_lineno field. So we may be able to deprecate
PyCode_Addr2Line entirely for external use.
........
r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
Issue #6042:
lnotab-based tracing is very complicated and isn't documented very well. There
were at least 3 comment blocks purporting to document co_lnotab, and none did a
very good job. This patch unifies them into Objects/lnotab_notes.txt which
tries to completely capture the current state of affairs.
I also discovered that we've attached 2 layers of patches to the basic tracing
scheme. The first layer avoids jumping to instructions that don't start a line,
to avoid problems in if statements and while loops. The second layer
discovered that jumps backward do need to trace at instructions that don't
start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
added a special case for backward jumps within the same line. I replaced these
patches by just treating forward and backward jumps differently.
........
2009-07-21 01:30:03 -03:00
|
|
|
lnotab_notes.txt for the details of the lnotab representation.
|
2005-10-20 16:59:25 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
PyCode_Addr2Line(PyCodeObject *co, int addrq)
|
|
|
|
{
|
2020-11-12 05:43:29 -04:00
|
|
|
if (addrq == -1) {
|
|
|
|
return co->co_firstlineno;
|
|
|
|
}
|
|
|
|
assert(addrq >= 0 && addrq < PyBytes_GET_SIZE(co->co_code));
|
|
|
|
PyCodeAddressRange bounds;
|
|
|
|
_PyCode_InitAddressRange(co, &bounds);
|
|
|
|
return _PyCode_CheckLineNumber(addrq, &bounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PyLineTable_InitAddressRange(char *linetable, int firstlineno, PyCodeAddressRange *range)
|
|
|
|
{
|
|
|
|
range->lo_next = linetable;
|
|
|
|
range->ar_start = -1;
|
|
|
|
range->ar_end = 0;
|
|
|
|
range->ar_computed_line = range->ar_line = firstlineno;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyCode_InitAddressRange(PyCodeObject* co, PyCodeAddressRange *bounds)
|
|
|
|
{
|
|
|
|
char *linetable = PyBytes_AS_STRING(co->co_linetable);
|
|
|
|
PyLineTable_InitAddressRange(linetable, co->co_firstlineno, bounds);
|
|
|
|
return bounds->ar_line;
|
2005-10-20 16:59:25 -03:00
|
|
|
}
|
2006-04-21 07:40:58 -03:00
|
|
|
|
Merged revisions 72487-72488,72879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
PyCode_NewEmpty:
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
are trying to build an empty code object, usually to put it in a dummy frame
object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
just the filename, function name, and first line number, instead of also
requiring lots of code internals.
........
r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
Issue 5954, PyFrame_GetLineNumber:
Most uses of PyCode_Addr2Line
(http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
the line number of a specified frame, but there's no way to do that directly.
Forcing people to go through the code object makes them know more about the
guts of the interpreter than they should need.
The remaining uses of PyCode_Addr2Line seem to be getting the line from a
traceback (for example,
http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
which is replaced by the tb_lineno field. So we may be able to deprecate
PyCode_Addr2Line entirely for external use.
........
r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
Issue #6042:
lnotab-based tracing is very complicated and isn't documented very well. There
were at least 3 comment blocks purporting to document co_lnotab, and none did a
very good job. This patch unifies them into Objects/lnotab_notes.txt which
tries to completely capture the current state of affairs.
I also discovered that we've attached 2 layers of patches to the basic tracing
scheme. The first layer avoids jumping to instructions that don't start a line,
to avoid problems in if statements and while loops. The second layer
discovered that jumps backward do need to trace at instructions that don't
start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
added a special case for backward jumps within the same line. I replaced these
patches by just treating forward and backward jumps differently.
........
2009-07-21 01:30:03 -03:00
|
|
|
/* Update *bounds to describe the first and one-past-the-last instructions in
|
2020-11-12 05:43:29 -04:00
|
|
|
the same line as lasti. Return the number of that line, or -1 if lasti is out of bounds. */
|
Merged revisions 72487-72488,72879 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72487 | jeffrey.yasskin | 2009-05-08 17:51:06 -0400 (Fri, 08 May 2009) | 7 lines
PyCode_NewEmpty:
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New
are trying to build an empty code object, usually to put it in a dummy frame
object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify
just the filename, function name, and first line number, instead of also
requiring lots of code internals.
........
r72488 | jeffrey.yasskin | 2009-05-08 18:23:21 -0400 (Fri, 08 May 2009) | 13 lines
Issue 5954, PyFrame_GetLineNumber:
Most uses of PyCode_Addr2Line
(http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get
the line number of a specified frame, but there's no way to do that directly.
Forcing people to go through the code object makes them know more about the
guts of the interpreter than they should need.
The remaining uses of PyCode_Addr2Line seem to be getting the line from a
traceback (for example,
http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line),
which is replaced by the tb_lineno field. So we may be able to deprecate
PyCode_Addr2Line entirely for external use.
........
r72879 | jeffrey.yasskin | 2009-05-23 19:23:01 -0400 (Sat, 23 May 2009) | 14 lines
Issue #6042:
lnotab-based tracing is very complicated and isn't documented very well. There
were at least 3 comment blocks purporting to document co_lnotab, and none did a
very good job. This patch unifies them into Objects/lnotab_notes.txt which
tries to completely capture the current state of affairs.
I also discovered that we've attached 2 layers of patches to the basic tracing
scheme. The first layer avoids jumping to instructions that don't start a line,
to avoid problems in if statements and while loops. The second layer
discovered that jumps backward do need to trace at instructions that don't
start a line, so it added extra lnotab entries for 'while' and 'for' loops, and
added a special case for backward jumps within the same line. I replaced these
patches by just treating forward and backward jumps differently.
........
2009-07-21 01:30:03 -03:00
|
|
|
int
|
2020-11-12 05:43:29 -04:00
|
|
|
_PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds)
|
2006-04-21 07:40:58 -03:00
|
|
|
{
|
2020-11-12 05:43:29 -04:00
|
|
|
while (bounds->ar_end <= lasti) {
|
|
|
|
if (!PyLineTable_NextAddressRange(bounds)) {
|
|
|
|
return -1;
|
2006-04-21 07:40:58 -03:00
|
|
|
}
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2020-11-12 05:43:29 -04:00
|
|
|
while (bounds->ar_start > lasti) {
|
|
|
|
if (!PyLineTable_PreviousAddressRange(bounds)) {
|
|
|
|
return -1;
|
|
|
|
}
|
2010-05-09 12:52:27 -03:00
|
|
|
}
|
2020-11-12 05:43:29 -04:00
|
|
|
return bounds->ar_line;
|
2006-04-21 07:40:58 -03:00
|
|
|
}
|
2016-09-07 15:16:41 -03:00
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyCode_GetExtra(PyObject *code, Py_ssize_t index, void **extra)
|
|
|
|
{
|
|
|
|
if (!PyCode_Check(code)) {
|
|
|
|
PyErr_BadInternalCall();
|
2016-09-07 16:51:08 -03:00
|
|
|
return -1;
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:30:39 -03:00
|
|
|
PyCodeObject *o = (PyCodeObject*) code;
|
|
|
|
_PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra*) o->co_extra;
|
|
|
|
|
|
|
|
if (co_extra == NULL || co_extra->ce_size <= index) {
|
2017-06-21 18:44:36 -03:00
|
|
|
*extra = NULL;
|
2016-09-07 15:16:41 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:30:39 -03:00
|
|
|
*extra = co_extra->ce_extras[index];
|
2016-09-07 15:16:41 -03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
_PyCode_SetExtra(PyObject *code, Py_ssize_t index, void *extra)
|
|
|
|
{
|
2020-04-14 10:14:01 -03:00
|
|
|
PyInterpreterState *interp = _PyInterpreterState_GET();
|
2016-09-07 15:16:41 -03:00
|
|
|
|
|
|
|
if (!PyCode_Check(code) || index < 0 ||
|
2017-06-21 18:44:36 -03:00
|
|
|
index >= interp->co_extra_user_count) {
|
2016-09-07 15:16:41 -03:00
|
|
|
PyErr_BadInternalCall();
|
2016-09-07 16:51:08 -03:00
|
|
|
return -1;
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:30:39 -03:00
|
|
|
PyCodeObject *o = (PyCodeObject*) code;
|
|
|
|
_PyCodeObjectExtra *co_extra = (_PyCodeObjectExtra *) o->co_extra;
|
2016-09-07 15:16:41 -03:00
|
|
|
|
2017-07-04 09:06:16 -03:00
|
|
|
if (co_extra == NULL || co_extra->ce_size <= index) {
|
|
|
|
Py_ssize_t i = (co_extra == NULL ? 0 : co_extra->ce_size);
|
|
|
|
co_extra = PyMem_Realloc(
|
|
|
|
co_extra,
|
|
|
|
sizeof(_PyCodeObjectExtra) +
|
|
|
|
(interp->co_extra_user_count-1) * sizeof(void*));
|
2017-03-02 06:32:18 -04:00
|
|
|
if (co_extra == NULL) {
|
2016-09-07 16:51:08 -03:00
|
|
|
return -1;
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
2017-07-04 09:06:16 -03:00
|
|
|
for (; i < interp->co_extra_user_count; i++) {
|
2016-09-07 18:30:39 -03:00
|
|
|
co_extra->ce_extras[i] = NULL;
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
2017-06-21 18:44:36 -03:00
|
|
|
co_extra->ce_size = interp->co_extra_user_count;
|
2017-07-04 09:06:16 -03:00
|
|
|
o->co_extra = co_extra;
|
2017-06-21 18:44:36 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (co_extra->ce_extras[index] != NULL) {
|
|
|
|
freefunc free = interp->co_extra_freefuncs[index];
|
|
|
|
if (free != NULL) {
|
|
|
|
free(co_extra->ce_extras[index]);
|
|
|
|
}
|
2016-09-07 15:16:41 -03:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:30:39 -03:00
|
|
|
co_extra->ce_extras[index] = extra;
|
2016-09-07 15:16:41 -03:00
|
|
|
return 0;
|
|
|
|
}
|