2013-11-23 18:49:22 -04:00
|
|
|
#include "Python.h"
|
2023-07-14 14:41:52 -03:00
|
|
|
#include "compile.h"
|
2013-11-23 18:49:22 -04:00
|
|
|
#include "opcode.h"
|
2021-07-29 13:26:53 -03:00
|
|
|
#include "internal/pycore_code.h"
|
2013-11-23 18:49:22 -04:00
|
|
|
|
2014-01-07 16:41:53 -04:00
|
|
|
/*[clinic input]
|
2013-11-23 18:49:22 -04:00
|
|
|
module _opcode
|
2014-01-07 16:41:53 -04:00
|
|
|
[clinic start generated code]*/
|
2014-01-28 09:00:08 -04:00
|
|
|
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=117442e66eb376e6]*/
|
2013-11-23 19:37:55 -04:00
|
|
|
|
2015-04-03 17:53:51 -03:00
|
|
|
#include "clinic/_opcode.c.h"
|
|
|
|
|
2014-01-07 16:41:53 -04:00
|
|
|
/*[clinic input]
|
2013-11-23 18:49:22 -04:00
|
|
|
|
|
|
|
_opcode.stack_effect -> int
|
|
|
|
|
|
|
|
opcode: int
|
2014-02-01 02:03:12 -04:00
|
|
|
oparg: object = None
|
2013-11-23 18:49:22 -04:00
|
|
|
/
|
2018-09-18 03:54:26 -03:00
|
|
|
*
|
|
|
|
jump: object = None
|
2013-11-23 18:49:22 -04:00
|
|
|
|
|
|
|
Compute the stack effect of the opcode.
|
2014-01-07 16:41:53 -04:00
|
|
|
[clinic start generated code]*/
|
2013-11-23 18:49:22 -04:00
|
|
|
|
|
|
|
static int
|
2018-09-18 03:54:26 -03:00
|
|
|
_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg,
|
|
|
|
PyObject *jump)
|
|
|
|
/*[clinic end generated code: output=64a18f2ead954dbb input=461c9d4a44851898]*/
|
2013-11-23 18:49:22 -04:00
|
|
|
{
|
2014-02-01 02:03:12 -04:00
|
|
|
int oparg_int = 0;
|
2018-09-18 03:54:26 -03:00
|
|
|
int jump_int;
|
2023-06-17 13:00:16 -03:00
|
|
|
|
|
|
|
if (oparg != Py_None) {
|
2014-02-01 02:03:12 -04:00
|
|
|
oparg_int = (int)PyLong_AsLong(oparg);
|
2020-09-07 05:48:44 -03:00
|
|
|
if ((oparg_int == -1) && PyErr_Occurred()) {
|
2014-02-01 02:03:12 -04:00
|
|
|
return -1;
|
2020-09-07 05:48:44 -03:00
|
|
|
}
|
2013-11-23 18:49:22 -04:00
|
|
|
}
|
2023-06-17 13:00:16 -03:00
|
|
|
|
2018-09-18 03:54:26 -03:00
|
|
|
if (jump == Py_None) {
|
|
|
|
jump_int = -1;
|
|
|
|
}
|
|
|
|
else if (jump == Py_True) {
|
|
|
|
jump_int = 1;
|
|
|
|
}
|
|
|
|
else if (jump == Py_False) {
|
|
|
|
jump_int = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PyErr_SetString(PyExc_ValueError,
|
|
|
|
"stack_effect: jump must be False, True or None");
|
|
|
|
return -1;
|
|
|
|
}
|
2023-06-17 13:00:16 -03:00
|
|
|
int effect = PyCompile_OpcodeStackEffectWithJump(opcode, oparg_int, jump_int);
|
2013-11-23 18:49:22 -04:00
|
|
|
if (effect == PY_INVALID_STACK_EFFECT) {
|
2023-06-17 13:00:16 -03:00
|
|
|
PyErr_SetString(PyExc_ValueError, "invalid opcode or oparg");
|
|
|
|
return -1;
|
2013-11-23 18:49:22 -04:00
|
|
|
}
|
|
|
|
return effect;
|
|
|
|
}
|
|
|
|
|
2021-07-29 13:26:53 -03:00
|
|
|
/*[clinic input]
|
|
|
|
|
2023-07-14 14:41:52 -03:00
|
|
|
_opcode.is_valid -> bool
|
|
|
|
|
|
|
|
opcode: int
|
|
|
|
|
|
|
|
Return True if opcode is valid, False otherwise.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
_opcode_is_valid_impl(PyObject *module, int opcode)
|
|
|
|
/*[clinic end generated code: output=b0d918ea1d073f65 input=fe23e0aa194ddae0]*/
|
|
|
|
{
|
|
|
|
return PyUnstable_OpcodeIsValid(opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_opcode.has_arg -> bool
|
|
|
|
|
|
|
|
opcode: int
|
|
|
|
|
|
|
|
Return True if the opcode uses its oparg, False otherwise.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
_opcode_has_arg_impl(PyObject *module, int opcode)
|
|
|
|
/*[clinic end generated code: output=7a062d3b2dcc0815 input=93d878ba6361db5f]*/
|
|
|
|
{
|
|
|
|
return PyUnstable_OpcodeIsValid(opcode) &&
|
|
|
|
PyUnstable_OpcodeHasArg(opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_opcode.has_const -> bool
|
|
|
|
|
|
|
|
opcode: int
|
|
|
|
|
|
|
|
Return True if the opcode accesses a constant, False otherwise.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
_opcode_has_const_impl(PyObject *module, int opcode)
|
|
|
|
/*[clinic end generated code: output=c646d5027c634120 input=a6999e4cf13f9410]*/
|
|
|
|
{
|
|
|
|
return PyUnstable_OpcodeIsValid(opcode) &&
|
|
|
|
PyUnstable_OpcodeHasConst(opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_opcode.has_name -> bool
|
|
|
|
|
|
|
|
opcode: int
|
|
|
|
|
|
|
|
Return True if the opcode accesses an attribute by name, False otherwise.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
_opcode_has_name_impl(PyObject *module, int opcode)
|
|
|
|
/*[clinic end generated code: output=b49a83555c2fa517 input=448aa5e4bcc947ba]*/
|
|
|
|
{
|
|
|
|
return PyUnstable_OpcodeIsValid(opcode) &&
|
|
|
|
PyUnstable_OpcodeHasName(opcode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
|
|
|
_opcode.has_jump -> bool
|
|
|
|
|
|
|
|
opcode: int
|
|
|
|
|
|
|
|
Return True if the opcode has a jump target, False otherwise.
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static int
|
|
|
|
_opcode_has_jump_impl(PyObject *module, int opcode)
|
|
|
|
/*[clinic end generated code: output=e9c583c669f1c46a input=35f711274357a0c3]*/
|
|
|
|
{
|
|
|
|
return PyUnstable_OpcodeIsValid(opcode) &&
|
|
|
|
PyUnstable_OpcodeHasJump(opcode);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/*[clinic input]
|
|
|
|
|
2021-07-29 13:26:53 -03:00
|
|
|
_opcode.get_specialization_stats
|
|
|
|
|
|
|
|
Return the specialization stats
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_opcode_get_specialization_stats_impl(PyObject *module)
|
|
|
|
/*[clinic end generated code: output=fcbc32fdfbec5c17 input=e1f60db68d8ce5f6]*/
|
|
|
|
{
|
2021-12-15 11:32:32 -04:00
|
|
|
#ifdef Py_STATS
|
2021-07-29 13:26:53 -03:00
|
|
|
return _Py_GetSpecializationStats();
|
|
|
|
#else
|
|
|
|
Py_RETURN_NONE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-11-23 18:49:22 -04:00
|
|
|
static PyMethodDef
|
|
|
|
opcode_functions[] = {
|
|
|
|
_OPCODE_STACK_EFFECT_METHODDEF
|
2023-07-14 14:41:52 -03:00
|
|
|
_OPCODE_IS_VALID_METHODDEF
|
|
|
|
_OPCODE_HAS_ARG_METHODDEF
|
|
|
|
_OPCODE_HAS_CONST_METHODDEF
|
|
|
|
_OPCODE_HAS_NAME_METHODDEF
|
|
|
|
_OPCODE_HAS_JUMP_METHODDEF
|
2021-07-29 13:26:53 -03:00
|
|
|
_OPCODE_GET_SPECIALIZATION_STATS_METHODDEF
|
2013-11-23 18:49:22 -04:00
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
|
|
|
|
2023-05-05 18:11:27 -03:00
|
|
|
static PyModuleDef_Slot module_slots[] = {
|
|
|
|
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},
|
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
|
2013-11-23 18:49:22 -04:00
|
|
|
static struct PyModuleDef opcodemodule = {
|
|
|
|
PyModuleDef_HEAD_INIT,
|
2020-09-07 05:48:44 -03:00
|
|
|
.m_name = "_opcode",
|
|
|
|
.m_doc = "Opcode support module.",
|
|
|
|
.m_size = 0,
|
2023-05-05 18:11:27 -03:00
|
|
|
.m_methods = opcode_functions,
|
|
|
|
.m_slots = module_slots,
|
2013-11-23 18:49:22 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
PyMODINIT_FUNC
|
|
|
|
PyInit__opcode(void)
|
|
|
|
{
|
2020-09-07 05:48:44 -03:00
|
|
|
return PyModuleDef_Init(&opcodemodule);
|
2013-11-23 18:49:22 -04:00
|
|
|
}
|