2015-04-03 17:53:51 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
|
|
|
PyDoc_STRVAR(_opcode_stack_effect__doc__,
|
|
|
|
"stack_effect($module, opcode, oparg=None, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Compute the stack effect of the opcode.");
|
|
|
|
|
|
|
|
#define _OPCODE_STACK_EFFECT_METHODDEF \
|
2017-01-16 20:35:17 -04:00
|
|
|
{"stack_effect", (PyCFunction)_opcode_stack_effect, METH_FASTCALL, _opcode_stack_effect__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static int
|
2016-07-07 11:35:15 -03:00
|
|
|
_opcode_stack_effect_impl(PyObject *module, int opcode, PyObject *oparg);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
_opcode_stack_effect(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
|
|
|
int opcode;
|
|
|
|
PyObject *oparg = Py_None;
|
|
|
|
int _return_value;
|
|
|
|
|
2017-06-10 01:51:48 -03:00
|
|
|
if (!_PyArg_ParseStack(args, nargs, "i|O:stack_effect",
|
|
|
|
&opcode, &oparg)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2015-04-03 17:53:51 -03:00
|
|
|
_return_value = _opcode_stack_effect_impl(module, opcode, oparg);
|
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;
|
|
|
|
}
|
2017-12-15 07:11:11 -04:00
|
|
|
/*[clinic end generated code: output=577a91c9aa5559a9 input=a9049054013a1b77]*/
|