1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
#include <Python.h>
#include <structmember.h>
// ----------------------------------------------------
// Part 1: Reproducer of reference counting issue
// https://foss.heptapod.net/pypy/pypy/-/issues/3844
// ----------------------------------------------------
PyObject *heap_type_new(PyTypeObject *tp, PyObject *args,
PyObject *kwds) {
PyObject *obj = PyObject_Malloc(sizeof(PyObject));
memset(obj, 0, sizeof(PyObject));
return PyObject_Init(obj, tp);
}
void heap_type_dealloc(PyObject *self) {
PyTypeObject *tp = Py_TYPE(self);
tp->tp_free(self);
#if PY_VERSION_HEX > 0x03080000
Py_DECREF(tp);
#endif
}
static PyType_Slot heap_type_slots[] = {
{ Py_tp_new, heap_type_new },
{ Py_tp_dealloc, heap_type_dealloc },
{ 0, NULL }
};
static PyType_Spec heap_type_spec = {
.name = "nanobind1.heap_type",
.flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HEAPTYPE,
.slots = heap_type_slots,
.basicsize = (int) sizeof(PyObject),
.itemsize = 0
};
#if PY_VERSION_HEX >= 0x03090000
// ----------------------------------------------------
// Part 2: Reproducer of vector call issue #1
// https://foss.heptapod.net/pypy/pypy/-/issues/3845
// ----------------------------------------------------
typedef struct {
PyObject_HEAD
PyObject* (*vectorcall)(PyObject *, PyObject * const*, size_t, PyObject *);
} callable;
PyObject* my_vectorcall(PyObject *self, PyObject * const* args, size_t nargs,
PyObject *kwnames) {
return PyLong_FromLong(1234);
}
static struct PyMemberDef callable_members[] = {
// Supported starting with Python 3.9
{ "__vectorcalloffset__", T_PYSSIZET,
(Py_ssize_t) offsetof(callable, vectorcall), READONLY, NULL },
{ NULL, 0, 0, 0, NULL }
};
int callable_init(PyObject *self, PyObject *args, PyObject *kwds) {
((callable *) self)->vectorcall = my_vectorcall;
return 0;
}
static PyType_Slot callable_slots[] = {
{ Py_tp_init, (void *) callable_init },
{ Py_tp_members, (void *) callable_members },
{ Py_tp_call, (void *) PyVectorcall_Call },
{ 0, NULL }
};
static PyType_Spec callable_spec = {
.name = "nanobind1.callable",
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_VECTORCALL,
.slots = callable_slots,
.basicsize = (int) sizeof(callable),
.itemsize = 0
};
// ----------------------------------------------------
// Part #3: Reproducer of vector call issue #2
// https://foss.heptapod.net/pypy/pypy/-/issues/3845
// ----------------------------------------------------
static PyObject* call(PyObject* self, PyObject* arg) {
PyObject *value = PyLong_FromLong(1234);
if (!value)
return NULL;
PyObject *args[2] = { NULL, value };
size_t nargsf = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET;
PyObject *result = PyObject_Vectorcall(
arg, args + 1, nargsf, NULL
);
Py_DECREF(value);
return result;
}
struct PyMethodDef nanobind1_methods[] = {
{ "call", (PyCFunction) call, METH_O, NULL },
{ NULL, NULL, 0, NULL},
};
#else
struct PyMethodDef nanobind1_methods[] = {
{ NULL, NULL, 0, NULL},
};
#endif
// ----------------------------------------------------
// Part #4: Reproducer of extended type object issue
// https://foss.heptapod.net/pypy/pypy/-/issues/3847
// ----------------------------------------------------
typedef struct {
PyHeapTypeObject ht;
uint8_t extra[2048];
} ExtendedType;
int metaclass_init(PyObject *self, PyObject *args, PyObject *kwds) {
int rv = PyType_Type.tp_init(self, args, kwds);
// printf("Got to metaclass_init.\n");
if (rv == 0)
memset(((ExtendedType *) self)->extra, 0, 2048);
return rv;
}
static PyType_Slot metaclass_slots[] = {
{ Py_tp_init, (void *) metaclass_init },
{ Py_tp_base, NULL }, /* filled in module init function */
{ 0, NULL }
};
static PyType_Spec metaclass_spec_bad = {
.name = "nanobind1.metaclass_bad",
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.slots = metaclass_slots,
.itemsize = (int) sizeof(ExtendedType)
};
static PyType_Spec metaclass_spec_good = {
.name = "nanobind1.metaclass_good",
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.slots = metaclass_slots,
.basicsize = (int) sizeof(ExtendedType)
};
// ----------------------------------------------------
static PyModuleDef nanobind1_module = {
PyModuleDef_HEAD_INIT,
.m_name = "nanobind1",
.m_doc = "Reproducer for miscellaneous PyPy issues",
.m_size = -1,
.m_methods = nanobind1_methods
};
PyMODINIT_FUNC
PyInit_nanobind1(void)
{
/* done here for MSVC */
metaclass_slots[1].pfunc = &PyType_Type;
PyObject *m = PyModule_Create(&nanobind1_module);
if (m == NULL)
return NULL;
PyObject *heap_type = PyType_FromSpec(&heap_type_spec);
if (!heap_type || PyModule_AddObject(m, "heap_type", heap_type) < 0) {
Py_XDECREF(heap_type);
Py_DECREF(m);
return NULL;
}
#if PY_VERSION_HEX >= 0x03090000
PyObject *callable = PyType_FromSpec(&callable_spec);
if (!callable || PyModule_AddObject(m, "callable", callable) < 0) {
Py_XDECREF(callable);
Py_DECREF(m);
return NULL;
}
#endif
PyObject *metaclass_good = PyType_FromSpec(&metaclass_spec_good);
if (!metaclass_good || PyModule_AddObject(m, "metaclass_good", metaclass_good) < 0) {
Py_XDECREF(metaclass_good);
Py_DECREF(m);
return NULL;
}
PyObject *metaclass_bad = PyType_FromSpec(&metaclass_spec_bad);
if (!metaclass_bad || PyModule_AddObject(m, "metaclass_bad", metaclass_bad) < 0) {
Py_XDECREF(metaclass_bad);
Py_DECREF(m);
return NULL;
}
return m;
}
|