2021-08-13 10:20:45 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│ vi: set et ft=c ts=4 sts=4 sw=4 fenc=utf-8 :vi │
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Python 3 │
|
|
|
|
│ https://docs.python.org/3/license.html │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2021-08-12 07:42:14 +00:00
|
|
|
#include "third_party/python/Include/compile.h"
|
2021-09-07 18:40:11 +00:00
|
|
|
#include "third_party/python/Include/import.h"
|
2021-08-12 07:42:14 +00:00
|
|
|
#include "third_party/python/Include/longobject.h"
|
|
|
|
#include "third_party/python/Include/modsupport.h"
|
|
|
|
#include "third_party/python/Include/object.h"
|
2021-08-10 17:26:13 +00:00
|
|
|
#include "third_party/python/Include/opcode.h"
|
2021-08-12 07:42:14 +00:00
|
|
|
#include "third_party/python/Include/pyerrors.h"
|
|
|
|
#include "third_party/python/Include/pymacro.h"
|
2021-09-05 08:20:03 +00:00
|
|
|
#include "third_party/python/Include/yoink.h"
|
2021-08-08 04:08:33 +00:00
|
|
|
|
2021-09-05 08:20:03 +00:00
|
|
|
PYTHON_PROVIDE("_opcode");
|
2021-09-07 02:24:10 +00:00
|
|
|
PYTHON_PROVIDE("_opcode.stack_effect");
|
2021-09-05 08:20:03 +00:00
|
|
|
|
2021-08-08 04:08:33 +00:00
|
|
|
/*[clinic input]
|
|
|
|
module _opcode
|
|
|
|
[clinic start generated code]*/
|
|
|
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=117442e66eb376e6]*/
|
|
|
|
|
2021-08-10 17:26:13 +00:00
|
|
|
#include "third_party/python/Modules/clinic/_opcode.inc"
|
2021-08-08 04:08:33 +00:00
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_opcode.stack_effect -> int
|
|
|
|
|
|
|
|
opcode: int
|
|
|
|
oparg: object = None
|
|
|
|
/
|
|
|
|
|
|
|
|
Compute the stack effect of the opcode.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg)
|
|
|
|
/*[clinic end generated code: output=ad39467fa3ad22ce input=2d0a9ee53c0418f5]*/
|
|
|
|
{
|
|
|
|
int effect;
|
|
|
|
int oparg_int = 0;
|
|
|
|
if (HAS_ARG(opcode)) {
|
|
|
|
if (oparg == Py_None) {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"stack_effect: opcode requires oparg but oparg was not specified");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
oparg_int = (int)PyLong_AsLong(oparg);
|
|
|
|
if ((oparg_int == -1) && PyErr_Occurred())
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else if (oparg != Py_None) {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"stack_effect: opcode does not permit oparg but oparg was specified");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
effect = PyCompile_OpcodeStackEffect(opcode, oparg_int);
|
|
|
|
if (effect == PY_INVALID_STACK_EFFECT) {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"invalid opcode or oparg");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static PyMethodDef
|
|
|
|
opcode_functions[] = {
|
|
|
|
_OPCODE_STACK_EFFECT_METHODDEF
|
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static struct PyModuleDef opcodemodule = {
|
|
|
|
PyModuleDef_HEAD_INIT,
|
|
|
|
"_opcode",
|
|
|
|
"Opcode support module.",
|
|
|
|
-1,
|
|
|
|
opcode_functions,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
PyMODINIT_FUNC
|
|
|
|
PyInit__opcode(void)
|
|
|
|
{
|
|
|
|
return PyModule_Create(&opcodemodule);
|
|
|
|
}
|
2021-09-07 18:40:11 +00:00
|
|
|
|
2023-06-17 03:05:24 +00:00
|
|
|
#ifdef __aarch64__
|
|
|
|
_Section(".rodata.pytab.1 //")
|
|
|
|
#else
|
|
|
|
_Section(".rodata.pytab.1")
|
|
|
|
#endif
|
|
|
|
const struct _inittab _PyImport_Inittab__opcode = {
|
2021-09-07 18:40:11 +00:00
|
|
|
"_opcode",
|
|
|
|
PyInit__opcode,
|
|
|
|
};
|