# (C) Copyright 2019, 2020 by Rocky Bernstein # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. """ CPython 3.8 bytecode opcodes This is a like Python 3.9's opcode.py """ from xdis.opcodes.base import( const_op, def_op, finalize_opcodes, init_opdata, rm_op, update_pj3 ) from xdis.opcodes.opcode_36 import ( format_BUILD_MAP_UNPACK_WITH_CALL, format_CALL_FUNCTION_EX, format_CALL_FUNCTION_KW, format_extended_arg36, ) import xdis.opcodes.opcode_38 as opcode_38 version = 3.9 python_implementation = "CPython" l = locals() init_opdata(l, opcode_38, version) # These are removed since 3.8... rm_op(l, "BEGIN_FINALLY", 53) rm_op(l, "WITH_CLEANUP_START", 81) rm_op(l, "WITH_CLEANUP_FINISH", 82) rm_op(l, "END_FINALLY", 88) rm_op(l, "CALL_FINALLY", 162) rm_op(l, "POP_FINALLY", 163) # These are new since Python 3.9 # OP NAME OPCODE POP PUSH #----------------------------------------------- def_op(l, 'RERAISE', 48, 3, 0) def_op(l, 'WITH_EXCEPT_START', 49, 0, 1) def_op(l, 'LOAD_ASSERTION_ERROR', 74, 0, 1) format_MAKE_FUNCTION_arg = opcode_38.format_MAKE_FUNCTION_arg format_value_flags = opcode_38.format_value_flags opcode_arg_fmt = { "BUILD_MAP_UNPACK_WITH_CALL": format_BUILD_MAP_UNPACK_WITH_CALL, "CALL_FUNCTION_KW": format_CALL_FUNCTION_KW, "CALL_FUNCTION_EX": format_CALL_FUNCTION_EX, 'MAKE_FUNCTION': format_MAKE_FUNCTION_arg, 'FORMAT_VALUE': format_value_flags, 'EXTENDED_ARG': format_extended_arg36 } update_pj3(globals(), l) finalize_opcodes(l)