2015-04-03 17:53:51 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(_opcode_stack_effect__doc__,
|
2018-09-18 03:54:26 -03:00
|
|
|
"stack_effect($module, opcode, oparg=None, /, *, jump=None)\n"
|
2015-04-03 17:53:51 -03:00
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Compute the stack effect of the opcode.");
|
|
|
|
|
|
|
|
#define _OPCODE_STACK_EFFECT_METHODDEF \
|
2018-11-27 05:27:36 -04:00
|
|
|
{"stack_effect", (PyCFunction)(void(*)(void))_opcode_stack_effect, METH_FASTCALL|METH_KEYWORDS, _opcode_stack_effect__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static int
|
2018-09-18 03:54:26 -03:00
|
|
|
_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg,
|
|
|
|
PyObject *jump);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2018-09-18 03:54:26 -03:00
|
|
|
_opcode_stack_effect(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2018-09-18 03:54:26 -03:00
|
|
|
static const char * const _keywords[] = {"", "", "jump", NULL};
|
|
|
|
static _PyArg_Parser _parser = {"i|O$O:stack_effect", _keywords, 0};
|
2015-04-03 17:53:51 -03:00
|
|
|
int opcode;
|
|
|
|
PyObject *oparg = Py_None;
|
2018-09-18 03:54:26 -03:00
|
|
|
PyObject *jump = Py_None;
|
2015-04-03 17:53:51 -03:00
|
|
|
int _return_value;
|
|
|
|
|
2018-09-18 03:54:26 -03:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
|
|
|
&opcode, &oparg, &jump)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2018-09-18 03:54:26 -03:00
|
|
|
_return_value = _opcode_stack_effect_impl(module, opcode, oparg, jump);
|
2016-06-09 10:16:06 -03:00
|
|
|
if ((_return_value == -1) && PyErr_Occurred()) {
|
2015-04-03 17:53:51 -03:00
|
|
|
goto exit;
|
2016-06-09 10:16:06 -03:00
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = PyLong_FromLong((long)_return_value);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2018-11-27 05:27:36 -04:00
|
|
|
/*[clinic end generated code: output=871941eea3d855c6 input=a9049054013a1b77]*/
|