diff options
| author | AlexSm <[email protected]> | 2024-03-05 10:40:59 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-05 12:40:59 +0300 |
| commit | 1ac13c847b5358faba44dbb638a828e24369467b (patch) | |
| tree | 07672b4dd3604ad3dee540a02c6494cb7d10dc3d /contrib/tools/python3/src/Modules/_opcode.c | |
| parent | ffcca3e7f7958ddc6487b91d3df8c01054bd0638 (diff) | |
Library import 16 (#2433)
Co-authored-by: robot-piglet <[email protected]>
Co-authored-by: deshevoy <[email protected]>
Co-authored-by: robot-contrib <[email protected]>
Co-authored-by: thegeorg <[email protected]>
Co-authored-by: robot-ya-builder <[email protected]>
Co-authored-by: svidyuk <[email protected]>
Co-authored-by: shadchin <[email protected]>
Co-authored-by: robot-ratatosk <[email protected]>
Co-authored-by: innokentii <[email protected]>
Co-authored-by: arkady-e1ppa <[email protected]>
Co-authored-by: snermolaev <[email protected]>
Co-authored-by: dimdim11 <[email protected]>
Co-authored-by: kickbutt <[email protected]>
Co-authored-by: abdullinsaid <[email protected]>
Co-authored-by: korsunandrei <[email protected]>
Co-authored-by: petrk <[email protected]>
Co-authored-by: miroslav2 <[email protected]>
Co-authored-by: serjflint <[email protected]>
Co-authored-by: akhropov <[email protected]>
Co-authored-by: prettyboy <[email protected]>
Co-authored-by: ilikepugs <[email protected]>
Co-authored-by: hiddenpath <[email protected]>
Co-authored-by: mikhnenko <[email protected]>
Co-authored-by: spreis <[email protected]>
Co-authored-by: andreyshspb <[email protected]>
Co-authored-by: dimaandreev <[email protected]>
Co-authored-by: rashid <[email protected]>
Co-authored-by: robot-ydb-importer <[email protected]>
Co-authored-by: r-vetrov <[email protected]>
Co-authored-by: ypodlesov <[email protected]>
Co-authored-by: zaverden <[email protected]>
Co-authored-by: vpozdyayev <[email protected]>
Co-authored-by: robot-cozmo <[email protected]>
Co-authored-by: v-korovin <[email protected]>
Co-authored-by: arikon <[email protected]>
Co-authored-by: khoden <[email protected]>
Co-authored-by: psydmm <[email protected]>
Co-authored-by: robot-javacom <[email protected]>
Co-authored-by: dtorilov <[email protected]>
Co-authored-by: sennikovmv <[email protected]>
Co-authored-by: hcpp <[email protected]>
Diffstat (limited to 'contrib/tools/python3/src/Modules/_opcode.c')
| -rw-r--r-- | contrib/tools/python3/src/Modules/_opcode.c | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/contrib/tools/python3/src/Modules/_opcode.c b/contrib/tools/python3/src/Modules/_opcode.c deleted file mode 100644 index b70d426fa29..00000000000 --- a/contrib/tools/python3/src/Modules/_opcode.c +++ /dev/null @@ -1,115 +0,0 @@ -#include "Python.h" -#include "opcode.h" -#include "internal/pycore_code.h" - -/*[clinic input] -module _opcode -[clinic start generated code]*/ -/*[clinic end generated code: output=da39a3ee5e6b4b0d input=117442e66eb376e6]*/ - -#include "clinic/_opcode.c.h" - -/*[clinic input] - -_opcode.stack_effect -> int - - opcode: int - oparg: object = None - / - * - jump: 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, - PyObject *jump) -/*[clinic end generated code: output=64a18f2ead954dbb input=461c9d4a44851898]*/ -{ - int effect; - int oparg_int = 0; - int jump_int; - 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; - } - 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; - } - effect = PyCompile_OpcodeStackEffectWithJump(opcode, oparg_int, jump_int); - if (effect == PY_INVALID_STACK_EFFECT) { - PyErr_SetString(PyExc_ValueError, - "invalid opcode or oparg"); - return -1; - } - return effect; -} - -/*[clinic input] - -_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]*/ -{ -#ifdef Py_STATS - return _Py_GetSpecializationStats(); -#else - Py_RETURN_NONE; -#endif -} - -static PyMethodDef -opcode_functions[] = { - _OPCODE_STACK_EFFECT_METHODDEF - _OPCODE_GET_SPECIALIZATION_STATS_METHODDEF - {NULL, NULL, 0, NULL} -}; - -static PyModuleDef_Slot module_slots[] = { - {Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED}, - {0, NULL} -}; - -static struct PyModuleDef opcodemodule = { - PyModuleDef_HEAD_INIT, - .m_name = "_opcode", - .m_doc = "Opcode support module.", - .m_size = 0, - .m_methods = opcode_functions, - .m_slots = module_slots, -}; - -PyMODINIT_FUNC -PyInit__opcode(void) -{ - return PyModuleDef_Init(&opcodemodule); -} |
