| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105 |
- # Copyright (c) 2015-2020, 2022-2024 by Rocky Bernstein
- # Copyright (c) 2005 by Dan Pascu <dan@windowmaker.org>
- # Copyright (c) 2000-2002 by hartmut Goebel <h.goebel@crazy-compilers.com>
- #
- # 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 3 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, see <http://www.gnu.org/licenses/>.
- """
- Python 3.7 bytecode scanner/deparser base.
- Also, we *modify* the instruction sequence to assist deparsing code.
- For example:
- - we add "COME_FROM" instructions to help in figuring out
- conditional branching and looping.
- - LOAD_CONSTs are classified further into the type of thing
- they load:
- lambda's, genexpr's, {dict,set,list} comprehension's,
- - PARAMETER counts appended {CALL,MAKE}_FUNCTION, BUILD_{TUPLE,SET,SLICE}
- Finally we save token information.
- """
- import sys
- from typing import Any, Dict, List, Set, Tuple
- import xdis
- # Get all the opcodes into globals
- import xdis.opcodes.opcode_37 as op3
- from xdis import Instruction, instruction_size, iscode
- from xdis.bytecode import _get_const_info
- from decompyle3.scanner import Scanner, Token
- globals().update(op3.opmap)
- CONST_COLLECTIONS = ("CONST_LIST", "CONST_SET", "CONST_DICT")
- class Scanner37Base(Scanner):
- def __init__(
- self, version: Tuple[int, int], show_asm=None, debug="", is_pypy=False
- ):
- super(Scanner37Base, self).__init__(version, show_asm, is_pypy)
- self.offset2tok_index = None
- self.debug = debug
- # True is code is from PyPy
- self.is_pypy = is_pypy
- # Bytecode converted into instruction
- self.insts = []
- # Create opcode classification sets
- # Note: super initialization above initializes self.opc
- # Ops that start SETUP_ ... We will COME_FROM with these names
- # Some blocks and END_ statements. And they can start
- # a new statement
- if self.version < (3, 8):
- setup_ops = [
- self.opc.SETUP_LOOP,
- self.opc.SETUP_EXCEPT,
- self.opc.SETUP_FINALLY,
- ]
- self.setup_ops_no_loop = frozenset(setup_ops) - frozenset(
- [self.opc.SETUP_LOOP]
- )
- else:
- setup_ops = [self.opc.SETUP_FINALLY]
- self.setup_ops_no_loop = frozenset(setup_ops)
- # Add back these opcodes which help us detect "break" and
- # "continue" statements via parsing.
- self.opc.BREAK_LOOP = 80
- self.opc.CONTINUE_LOOP = 119
- pass
- setup_ops.append(self.opc.SETUP_WITH)
- self.setup_ops = frozenset(setup_ops)
- self.pop_jump_tf = frozenset([self.opc.PJIF, self.opc.PJIT])
- self.not_continue_follow = ("END_FINALLY", "POP_BLOCK")
- # Opcodes that can start a statement.
- statement_opcodes = [
- self.opc.POP_BLOCK,
- self.opc.STORE_FAST,
- self.opc.DELETE_FAST,
- self.opc.STORE_DEREF,
- self.opc.STORE_GLOBAL,
- self.opc.DELETE_GLOBAL,
- self.opc.STORE_NAME,
- self.opc.DELETE_NAME,
- self.opc.STORE_ATTR,
- self.opc.DELETE_ATTR,
- self.opc.STORE_SUBSCR,
- self.opc.POP_TOP,
- self.opc.DELETE_SUBSCR,
- self.opc.END_FINALLY,
- self.opc.RETURN_VALUE,
- self.opc.RAISE_VARARGS,
- self.opc.PRINT_EXPR,
- self.opc.JUMP_ABSOLUTE,
- # These are phony for 3.8+
- self.opc.BREAK_LOOP,
- self.opc.CONTINUE_LOOP,
- ]
- self.statement_opcodes = frozenset(statement_opcodes) | self.setup_ops_no_loop
- # Opcodes that can start a "store" non-terminal.
- # FIXME: JUMP_ABSOLUTE is weird. What's up with that?
- self.designator_ops = frozenset(
- [
- self.opc.STORE_FAST,
- self.opc.STORE_NAME,
- self.opc.STORE_GLOBAL,
- self.opc.STORE_DEREF,
- self.opc.STORE_ATTR,
- self.opc.STORE_SUBSCR,
- self.opc.UNPACK_SEQUENCE,
- self.opc.JUMP_ABSOLUTE,
- self.opc.UNPACK_EX,
- ]
- )
- self.jump_if_pop = frozenset(
- [self.opc.JUMP_IF_FALSE_OR_POP, self.opc.JUMP_IF_TRUE_OR_POP]
- )
- self.pop_jump_if_pop = frozenset(
- [
- self.opc.JUMP_IF_FALSE_OR_POP,
- self.opc.JUMP_IF_TRUE_OR_POP,
- self.opc.POP_JUMP_IF_TRUE,
- self.opc.POP_JUMP_IF_FALSE,
- ]
- )
- # Not really a set, but still classification-like
- self.statement_opcode_sequences = [
- (self.opc.POP_JUMP_IF_FALSE, self.opc.JUMP_FORWARD),
- (self.opc.POP_JUMP_IF_FALSE, self.opc.JUMP_ABSOLUTE),
- (self.opc.POP_JUMP_IF_TRUE, self.opc.JUMP_FORWARD),
- (self.opc.POP_JUMP_IF_TRUE, self.opc.JUMP_ABSOLUTE),
- ]
- # FIXME: remove this and use instead info from xdis.
- # Opcodes that take a variable number of arguments
- # (expr's)
- varargs_ops = {
- self.opc.BUILD_LIST,
- self.opc.BUILD_TUPLE,
- self.opc.BUILD_SET,
- self.opc.BUILD_SLICE,
- self.opc.BUILD_MAP,
- self.opc.UNPACK_SEQUENCE,
- self.opc.RAISE_VARARGS,
- }
- varargs_ops.add(self.opc.CALL_METHOD)
- varargs_ops |= {
- self.opc.BUILD_SET_UNPACK,
- self.opc.BUILD_MAP_UNPACK,
- self.opc.BUILD_LIST_UNPACK,
- self.opc.BUILD_TUPLE_UNPACK,
- }
- varargs_ops.add(self.opc.BUILD_CONST_KEY_MAP)
- # Below is in bit order, "default = bit 0, closure = bit 3
- self.MAKE_FUNCTION_FLAGS = tuple(
- """
- default keyword-only annotation closure""".split()
- )
- self.varargs_ops = frozenset(varargs_ops)
- # FIXME: remove the above in favor of:
- # self.varargs_ops = frozenset(self.opc.hasvargs)
- return
- def bound_collection_from_tokens(
- self, tokens: list, next_tokens: list, t: Token, i: int, collection_type: str
- ):
- count = t.attr
- assert isinstance(count, int)
- assert count <= i
- if collection_type == "CONST_DICT":
- # constant dictionaries work via BUILD_CONST_KEY_MAP and
- # handle the values() like sets and lists.
- # However, the keys() are an LOAD_CONST of the keys.
- # adjust offset to account for this
- count += 1
- # For small lists don't bother
- if count < 5:
- return next_tokens + [t]
- collection_start = i - count
- for j in range(collection_start, i):
- if tokens[j].kind not in (
- "LOAD_CODE",
- "LOAD_CONST",
- "LOAD_FAST",
- "LOAD_GLOBAL",
- "LOAD_NAME",
- "LOAD_STR",
- ):
- return next_tokens + [t]
- collection_enum = CONST_COLLECTIONS.index(collection_type)
- # If we get here, all instructions before tokens[i] are LOAD_CONST, and
- # we can add a boundary marker and change LOAD_CONST to something else.
- new_tokens = next_tokens[:-count]
- start_offset = tokens[collection_start].offset
- new_tokens.append(
- Token(
- opname="COLLECTION_START",
- attr=collection_enum,
- pattr=collection_type,
- offset=f"{start_offset}_0",
- has_arg=True,
- opc=self.opc,
- has_extended_arg=False,
- optype=None,
- )
- )
- for j in range(collection_start, i):
- new_tokens.append(
- Token(
- opname="ADD_VALUE",
- attr=tokens[j].attr,
- pattr=tokens[j].pattr,
- offset=tokens[j].offset,
- has_arg=True,
- linestart=tokens[j].linestart,
- opc=self.opc,
- has_extended_arg=False,
- optype=tokens[j].optype,
- )
- )
- new_tokens.append(
- Token(
- opname=f"BUILD_{collection_type}",
- attr=t.attr,
- pattr=t.pattr,
- offset=t.offset,
- has_arg=t.has_arg,
- linestart=t.linestart,
- opc=t.opc,
- has_extended_arg=False,
- )
- )
- return new_tokens
- def ingest(self, co, classname=None, code_objects={}, show_asm=None):
- """Create "tokens" the bytecode of a Python code object. Largely these
- are the opcode name, but in some cases that has been modified to make parsing
- easier.
- returning a list of decompyle3s Token's.
- Some transformations are made to assist the deparsing grammar:
- - various types of LOAD_CONST's are categorized in terms of what they load
- - COME_FROM instructions are added to assist parsing control structures
- - operands with stack argument counts or flag masks are appended to the
- opcode name, e.g.:
- * BUILD_LIST, BUILD_SET
- * MAKE_FUNCTION and FUNCTION_CALLS append the number of positional
- arguments
- - EXTENDED_ARGS instructions are removed
- Also, when we encounter certain tokens, we add them to a set
- which will cause custom grammar rules. Specifically, variable
- arg tokens like MAKE_FUNCTION or BUILD_LIST cause specific
- rules for the specific number of arguments they take./src/external-vcs/github/rocky/python-decompile3
- """
- def tokens_append(j, token):
- tokens.append(token)
- self.offset2tok_index[token.offset] = j
- j += 1
- assert j == len(tokens)
- return j
- if not show_asm:
- show_asm = self.show_asm
- bytecode = self.build_instructions(co)
- if show_asm in ("both", "before"):
- print("\n# ---- disassembly:")
- bytecode.disassemble_bytes(
- co.co_code,
- varnames=co.co_varnames,
- names=co.co_names,
- constants=co.co_consts,
- cells=bytecode._cell_names,
- linestarts=bytecode._linestarts,
- asm_format="extended",
- filename=co.co_filename,
- show_source=True,
- first_line_number=co.co_firstlineno,
- )
- # "customize" is in the process of going away here
- customize = {}
- if self.is_pypy:
- customize["PyPy"] = 0
- # Scan for assertions. Later we will
- # turn 'LOAD_GLOBAL' to 'LOAD_ASSERT'.
- # 'LOAD_ASSERT' is used in assert statements.
- self.load_asserts = set()
- # list of tokens/instructions
- tokens = []
- self.offset2tok_index = {}
- n = len(self.insts)
- for i, inst in enumerate(self.insts):
- # We need to detect the difference between:
- # raise AssertionError
- # and
- # assert ...
- # If we have:
- # POP_JUMP_IF_TRUE
- # LOAD_GLOBAL AssertionError
- # RAISE_VARARGS
- # then we have an "assert" statement.
- # then we have a "raise" statement
- assert_can_follow = inst.opname.startswith("POP_JUMP_IF_") and i + 2 < n
- if assert_can_follow:
- load_global_inst = self.insts[i + 1]
- if (
- load_global_inst.opname == "LOAD_GLOBAL"
- and load_global_inst.argval == "AssertionError"
- and inst.argval is not None
- ):
- raise_inst = self.get_inst(self.prev_op[inst.argval])
- if raise_inst.opname.startswith("RAISE_VARARGS"):
- self.load_asserts.add(load_global_inst.offset)
- pass
- pass
- pass
- # Operand values in Python wordcode are small. As a result,
- # there are these EXTENDED_ARG instructions - way more than
- # before 3.6. These parsing a lot of pain.
- last_continue = None
- # To simplify things we want to untangle this. We also
- # do this loop before we compute jump targets.
- for i, inst in enumerate(self.insts):
- # One artifact of the "too-small" operand problem, is that
- # some backward jumps, are turned into forward jumps to another
- # "extended arg" backward jump to the same location.
- if inst.opname == "JUMP_FORWARD":
- jump_inst = self.get_inst(inst.argval)
- if jump_inst.has_extended_arg and jump_inst.opname.startswith("JUMP"):
- # Create a combination of the jump-to instruction and
- # this one. Keep the position information of this instruction,
- # but the operator and operand properties come from the other
- # instruction
- self.insts[i] = Instruction(
- is_jump_target=inst.is_jump_target,
- starts_line=inst.starts_line,
- offset=inst.offset,
- opname=jump_inst.opname,
- opcode=jump_inst.opcode,
- has_arg=jump_inst.has_arg,
- arg=jump_inst.arg,
- argval=jump_inst.argval,
- argrepr=jump_inst.argrepr,
- tos_str=None,
- positions=None,
- optype=jump_inst.optype,
- inst_size=jump_inst.inst_size,
- has_extended_arg=inst.has_extended_arg,
- start_offset=None,
- )
- # Get jump targets
- # Format: {target offset: [jump offsets]}
- jump_targets = self.find_jump_targets(show_asm)
- # print("XXX2", jump_targets)
- last_op_was_break = False
- j = 0
- for i, inst in enumerate(self.insts):
- argval = inst.argval
- op = inst.opcode
- if inst.opname == "EXTENDED_ARG":
- # FIXME: The EXTENDED_ARG is used to signal annotation
- # parameters
- if i + 1 < n and self.insts[i + 1].opcode != self.opc.MAKE_FUNCTION:
- continue
- if inst.offset in jump_targets:
- jump_idx = 0
- # We want to process COME_FROMs to the same offset to be in
- # *descending* offset order, so we have the larger range or
- # biggest instruction interval last. (I think they are sorted
- # in increasing order, but for safety we sort them). That way,
- # specific COME_FROM tags will match up properly. For example,
- # a "loop" with an "if" nested in it should have the "loop" tag
- # last so the grammar rule matches that properly.
- for jump_offset in sorted(jump_targets[inst.offset], reverse=True):
- come_from_name = "COME_FROM"
- opname = self.opname_for_offset(jump_offset)
- if opname == "EXTENDED_ARG":
- k = xdis.next_offset(op, self.opc, jump_offset)
- opname = self.opname_for_offset(k)
- if opname.startswith("SETUP_"):
- come_from_type = opname[len("SETUP_") :]
- come_from_name = "COME_FROM_%s" % come_from_type
- pass
- elif inst.offset in self.except_targets:
- come_from_name = "COME_FROM_EXCEPT_CLAUSE"
- j = tokens_append(
- j,
- Token(
- opname=come_from_name,
- attr=jump_offset,
- pattr=repr(jump_offset),
- offset="%s_%s" % (inst.offset, jump_idx),
- has_arg=True,
- opc=self.opc,
- has_extended_arg=False,
- optype=inst.optype,
- ),
- )
- jump_idx += 1
- pass
- pass
- pattr = inst.argrepr
- opname = inst.opname
- if op in self.opc.CONST_OPS:
- const = argval
- if iscode(const):
- if const.co_name == "<lambda>":
- assert opname == "LOAD_CONST"
- opname = "LOAD_LAMBDA"
- elif const.co_name == "<genexpr>":
- opname = "LOAD_GENEXPR"
- elif const.co_name == "<dictcomp>":
- opname = "LOAD_DICTCOMP"
- elif const.co_name == "<setcomp>":
- opname = "LOAD_SETCOMP"
- elif const.co_name == "<listcomp>":
- opname = "LOAD_LISTCOMP"
- else:
- opname = "LOAD_CODE"
- # verify() uses 'pattr' for comparison, since 'attr'
- # now holds Code(const) and thus can not be used
- # for comparison (todo: think about changing this)
- # pattr = 'code_object @ 0x%x %s->%s' %\
- # (id(const), const.co_filename, const.co_name)
- pattr = "<code_object " + const.co_name + ">"
- elif isinstance(const, str):
- opname = "LOAD_STR"
- else:
- if isinstance(inst.arg, int) and inst.arg < len(co.co_consts):
- argval, _ = _get_const_info(inst.arg, co.co_consts)
- # Why don't we use _ above for "pattr" rather than "const"?
- # This *is* a little hoaky, but we have to coordinate with
- # other parts like n_LOAD_CONST in pysource.py for example.
- pattr = const
- pass
- elif opname == "IMPORT_NAME":
- if "." in inst.argval:
- opname = "IMPORT_NAME_ATTR"
- pass
- elif opname == "LOAD_FAST" and argval == ".0":
- # Used as the parameter of a list expression
- opname = "LOAD_ARG"
- elif opname in ("MAKE_FUNCTION", "MAKE_CLOSURE"):
- flags = argval
- # FIXME: generalize this
- if flags == 8:
- opname = "MAKE_FUNCTION_CLOSURE"
- elif flags == 9:
- opname = "MAKE_FUNCTION_CLOSURE_POS"
- else:
- opname = f"MAKE_FUNCTION_{flags}"
- attr = []
- for flag in self.MAKE_FUNCTION_FLAGS:
- bit = flags & 1
- attr.append(bit)
- flags >>= 1
- attr = attr[:4] # remove last value: attr[5] == False
- j = tokens_append(
- j,
- Token(
- opname=opname,
- attr=attr,
- pattr=pattr,
- offset=inst.offset,
- linestart=inst.starts_line,
- op=op,
- has_arg=inst.has_arg,
- opc=self.opc,
- has_extended_arg=inst.has_extended_arg,
- optype=inst.optype,
- ),
- )
- continue
- elif op in self.varargs_ops:
- pos_args = argval
- if self.is_pypy and not pos_args and opname == "BUILD_MAP":
- opname = "BUILD_MAP_n"
- else:
- opname = "%s_%d" % (opname, pos_args)
- elif self.is_pypy and opname == "JUMP_IF_NOT_DEBUG":
- # The value in the dict is in special cases in semantic actions, such
- # as JUMP_IF_NOT_DEBUG. The value is not used in these cases, so we put
- # in arbitrary value 0.
- customize[opname] = 0
- elif opname == "UNPACK_EX":
- # FIXME: try with scanner and parser by
- # changing argval
- before_args = argval & 0xFF
- after_args = (argval >> 8) & 0xFF
- pattr = "%d before vararg, %d after" % (before_args, after_args)
- argval = (before_args, after_args)
- opname = "%s_%d+%d" % (opname, before_args, after_args)
- elif op == self.opc.JUMP_ABSOLUTE:
- # Refine JUMP_ABSOLUTE further in into:
- #
- # * "JUMP_LOOP" - which are used in loops. This is sometimes
- # found at the end of a looping construct
- # * "BREAK_LOOP" - which are used to break loops.
- # * "CONTINUE" - jumps which may appear in a "continue" statement.
- # It is okay to confuse this with JUMP_LOOP. The
- # grammar should tolerate this.
- # * "JUMP_FORWARD - forward jumps that are not BREAK_LOOP jumps.
- #
- # The loop-type and continue-type jumps will help us
- # classify loop boundaries The continue-type jumps
- # help us get "continue" statements with would
- # otherwise be turned into a "pass" statement because
- # JUMPs are sometimes ignored in rules as just
- # boundary overhead. Again, in comprehensions we might
- # sometimes classify JUMP_LOOP as CONTINUE, but that's
- # okay since grammar rules should tolerate that.
- pattr = argval
- target = inst.argval
- if target <= inst.offset:
- next_opname = self.insts[i + 1].opname
- # 'Continue's include jumps to loops that are not
- # and the end of a block which follow with
- # POP_BLOCK and COME_FROM_LOOP. If the
- # JUMP_ABSOLUTE is to a FOR_ITER, and it is
- # followed by another JUMP_FORWARD then we'll take
- # it as a "continue".
- next_inst = self.insts[i + 1]
- is_continue = self.insts[
- self.offset2inst_index[target]
- ].opname == "FOR_ITER" and next_inst.opname in (
- "JUMP_FORWARD",
- "JUMP_ABSOLUTE",
- )
- if self.version < (3, 8) and (
- is_continue
- or (
- inst.offset in self.stmts
- and (
- inst.starts_line
- and next_opname not in self.not_continue_follow
- )
- )
- ):
- opname = "CONTINUE"
- else:
- # "continue" versus "break_loop" dectction is more complicated
- # because "continue" to an outer loop is really a "break loop"
- opname = "JUMP_LOOP"
- # FIXME: this is a hack to catch stuff like:
- # if x: continue
- # the "continue" is not on a new line.
- #
- # Another situation is where we have
- # for method in methods:
- # for B in method:
- # if c:
- # return
- # break # A "continue" but not the innermost one
- if tokens[-1].kind == "JUMP_LOOP" and tokens[-1].attr <= argval:
- if tokens[-2].kind == "BREAK_LOOP":
- del tokens[-1]
- j -= 1
- else:
- # "intern" is used because we are
- # changing the *previous* token. A
- # POP_TOP suggests a "break" rather
- # than a "continue"?
- if tokens[-2] == "POP_TOP" and (
- is_continue and next_inst.argval != tokens[-1].attr
- ):
- tokens[-1].kind = sys.intern("BREAK_LOOP")
- else:
- tokens[-1].kind = sys.intern("CONTINUE")
- last_continue = tokens[-1]
- pass
- pass
- pass
- elif (
- last_continue is not None
- and tokens[-1].kind == "JUMP_LOOP"
- and last_continue.attr <= tokens[-1].attr
- and last_continue.offset > tokens[-1].attr
- ):
- # Handle mis-characterized "CONTINUE"
- # We have a situation like:
- # loop ... for or while)
- # loop
- # if ...: # code below starts here
- # break # not continue
- #
- # POP_JUMP_IF_FALSE_LOOP # to outer loop
- # JUMP_LOOP # to inner loop
- # ...
- # JUMP_LOOP # to outer loop
- tokens[-2].kind = sys.intern("BREAK_LOOP")
- pass
- if last_op_was_break and opname == "CONTINUE":
- last_op_was_break = False
- continue
- pass
- else:
- opname = "JUMP_FORWARD"
- elif opname.startswith("POP_JUMP_IF_") and not inst.jumps_forward():
- opname += "_LOOP"
- elif inst.offset in self.load_asserts:
- opname = "LOAD_ASSERT"
- last_op_was_break = opname == "BREAK_LOOP"
- j = tokens_append(
- j,
- Token(
- opname=opname,
- attr=argval,
- pattr=pattr,
- offset=inst.offset,
- linestart=inst.starts_line,
- op=op,
- has_arg=inst.has_arg,
- opc=self.opc,
- has_extended_arg=inst.has_extended_arg,
- tos_str=inst.tos_str,
- start_offset=inst.start_offset,
- ),
- )
- if opname == "CONTINUE":
- last_continue = tokens[-1]
- pass
- if show_asm in ("both", "after") and self.version < (3, 8):
- print("\n# ---- tokenization:")
- # FIXME: t.format() is changing tokens!
- for t in tokens.copy():
- print(t.format(line_prefix=""))
- print()
- return tokens, customize
- def find_jump_targets(self, debug: str) -> dict:
- """
- Detect all offsets in a byte code which are jump targets
- where we might insert a COME_FROM instruction.
- Return the list of offsets.
- Return the list of offsets. An instruction can be jumped
- to in from multiple instructions.
- """
- code = self.code
- n = len(code)
- self.structs = [{"type": "root", "start": 0, "end": n - 1}]
- # All loop entry points
- self.loops: List[int] = []
- # Map fixed jumps to their real destination
- self.fixed_jumps: Dict[int, int] = {}
- self.except_targets = {}
- self.ignore_if: Set[int] = set()
- self.build_statement_indices()
- # Containers filled by detect_control_flow()
- self.not_continue: Set[int] = set()
- self.return_end_ifs: Set[int] = set()
- self.setup_loop_targets = {} # target given setup_loop offset
- self.setup_loops = {} # setup_loop offset given target
- targets = {}
- for i, inst in enumerate(self.insts):
- offset = inst.offset
- op = inst.opcode
- # FIXME: this code is going to get removed.
- # Determine structures and fix jumps in Python versions
- # since 2.3
- self.detect_control_flow(offset, i)
- if inst.has_arg:
- # FIXME: fix grammar so we don't have to exclude FOR_ITER
- if inst.is_jump() and op != self.opc.FOR_ITER:
- label = inst.argval
- else:
- label = self.fixed_jumps.get(offset)
- if label is not None and label != -1:
- targets[label] = targets.get(label, []) + [offset]
- elif op == self.opc.END_FINALLY and offset in self.fixed_jumps:
- label = self.fixed_jumps[offset]
- targets[label] = targets.get(label, []) + [offset]
- pass
- pass # for loop
- # DEBUG:
- if debug in ("both", "after"):
- import pprint as pp
- pp.pprint(self.structs)
- return targets
- def build_statement_indices(self):
- code = self.code
- start = 0
- end = codelen = len(code)
- # Compose preliminary list of indices with statements,
- # using plain statement opcodes
- prelim = self.inst_matches(start, end, self.statement_opcodes)
- # Initialize final container with statements with
- # preliminary data
- stmts = self.stmts = set(prelim)
- # Same for opcode sequences
- pass_stmts = set()
- for sequence in self.statement_opcode_sequences:
- for i in self.op_range(start, end - (len(sequence) + 1)):
- match = True
- for elem in sequence:
- if elem != code[i]:
- match = False
- break
- i += instruction_size(code[i], self.opc)
- if match is True:
- i = self.prev_op[i]
- stmts.add(i)
- pass_stmts.add(i)
- # Initialize statement list with the full data we've gathered so far
- if pass_stmts:
- stmt_offset_list = list(stmts)
- stmt_offset_list.sort()
- else:
- stmt_offset_list = prelim
- # 'List-map' which contains offset of start of
- # next statement, when op offset is passed as index
- self.next_stmt = slist = []
- last_stmt_offset = -1
- i = 0
- # Go through all statement offsets
- for stmt_offset in stmt_offset_list:
- # Process absolute jumps, but do not remove 'pass' statements
- # from the set
- if (
- code[stmt_offset] == self.opc.JUMP_ABSOLUTE
- and stmt_offset not in pass_stmts
- ):
- # If absolute jump occurs in forward direction or it takes off from the
- # same line as previous statement, this is not a statement
- # FIXME: 0 isn't always correct
- target = self.get_target(stmt_offset)
- if (
- target > stmt_offset
- or self.lines[last_stmt_offset].l_no == self.lines[stmt_offset].l_no
- ):
- stmts.remove(stmt_offset)
- continue
- # Scan back bytecode ops till we encounter non-JUMP_ABSOLUTE op
- j = self.prev_op[stmt_offset]
- while code[j] == self.opc.JUMP_ABSOLUTE and j > 0:
- j = self.prev_op[j]
- # If we got here, then it's list comprehension which
- # is not a statement too
- if code[j] == self.opc.LIST_APPEND:
- stmts.remove(stmt_offset)
- continue
- # Exclude ROT_TWO + POP_TOP
- elif (
- code[stmt_offset] == self.opc.POP_TOP
- and code[self.prev_op[stmt_offset]] == self.opc.ROT_TWO
- ):
- stmts.remove(stmt_offset)
- continue
- # Exclude FOR_ITER + designators
- elif code[stmt_offset] in self.designator_ops:
- j = self.prev_op[stmt_offset]
- while code[j] in self.designator_ops:
- j = self.prev_op[j]
- if code[j] == self.opc.FOR_ITER:
- stmts.remove(stmt_offset)
- continue
- # Add to list another list with offset of current statement,
- # equal to length of previous statement
- slist += [stmt_offset] * (stmt_offset - i)
- last_stmt_offset = stmt_offset
- i = stmt_offset
- # Finish filling the list for last statement
- slist += [codelen] * (codelen - len(slist))
- def detect_control_flow(self, offset: int, inst_index: int):
- """
- Detect type of block structures and their boundaries to fix optimized jumps
- in python2.3+
- """
- code = self.code
- inst = self.insts[inst_index]
- op = inst.opcode
- # Detect parent structure
- parent: Dict[str, Any] = self.structs[0]
- start: int = parent["start"]
- end: int = parent["end"]
- # Pick innermost parent for our offset
- for struct in self.structs:
- current_start = struct["start"]
- current_end = struct["end"]
- if (current_start <= offset < current_end) and (
- current_start >= start and current_end <= end
- ):
- start = current_start
- end = current_end
- parent = struct
- if self.version < (3, 8) and op == self.opc.SETUP_LOOP:
- # We categorize loop types: 'for', 'while', 'while 1' with
- # possibly suffixes '-loop' and '-else'
- # Try to find the jump_back instruction of the loop.
- # It could be a return instruction.
- start += inst.inst_size
- target = self.get_target(offset)
- end = self.restrict_to_parent(target, parent)
- self.setup_loops[target] = offset
- if target != end:
- self.fixed_jumps[offset] = end
- (line_no, next_line_byte) = self.lines[offset]
- jump_back = self.last_instr(
- start, end, self.opc.JUMP_ABSOLUTE, next_line_byte, False
- )
- if jump_back:
- jump_forward_offset = xdis.next_offset(
- code[jump_back], self.opc, jump_back
- )
- else:
- jump_forward_offset = None
- return_val_offset1 = self.prev[self.prev[end]]
- if (
- jump_back
- and jump_back != self.prev_op[end]
- and self.is_jump_forward(jump_forward_offset)
- ):
- if code[self.prev_op[end]] == self.opc.RETURN_VALUE or (
- code[self.prev_op[end]] == self.opc.POP_BLOCK
- and code[return_val_offset1] == self.opc.RETURN_VALUE
- ):
- jump_back = None
- if not jump_back:
- # loop suite ends in return
- jump_back = self.last_instr(start, end, self.opc.RETURN_VALUE)
- if not jump_back:
- return
- jb_inst = self.get_inst(jump_back)
- jump_back = self.next_offset(jb_inst.opcode, jump_back)
- if_offset = None
- if code[self.prev_op[next_line_byte]] not in self.pop_jump_tf:
- if_offset = self.prev[next_line_byte]
- if if_offset:
- loop_type = "while"
- self.ignore_if.add(if_offset)
- else:
- loop_type = "for"
- target = next_line_byte
- end = xdis.next_offset(code[jump_back], self.opc, jump_back)
- else:
- if self.get_target(jump_back) >= next_line_byte:
- jump_back = self.last_instr(
- start, end, self.opc.JUMP_ABSOLUTE, start, False
- )
- jb_inst = self.get_inst(jump_back)
- jb_next_offset = self.next_offset(jb_inst.opcode, jump_back)
- if end > jb_next_offset and self.is_jump_forward(end):
- if self.is_jump_forward(jb_next_offset):
- if self.get_target(jb_next_offset) == self.get_target(end):
- self.fixed_jumps[offset] = jb_next_offset
- end = jb_next_offset
- elif target < offset:
- self.fixed_jumps[offset] = jb_next_offset
- end = jb_next_offset
- target = self.get_target(jump_back)
- if code[target] in (self.opc.FOR_ITER, self.opc.GET_ITER):
- loop_type = "for"
- else:
- loop_type = "while"
- test = self.prev_op[next_line_byte]
- if test == offset:
- loop_type = "while 1"
- elif self.code[test] in self.opc.JUMP_OPs:
- self.ignore_if.add(test)
- test_target = self.get_target(test)
- if test_target > (jump_back + 3):
- jump_back = test_target
- self.not_continue.add(jump_back)
- self.loops.append(target)
- self.structs.append(
- {"type": loop_type + "-loop", "start": target, "end": jump_back}
- )
- after_jump_offset = xdis.next_offset(code[jump_back], self.opc, jump_back)
- if after_jump_offset != end:
- self.structs.append(
- {
- "type": loop_type + "-else",
- "start": after_jump_offset,
- "end": end,
- }
- )
- elif op in self.pop_jump_tf:
- target = inst.argval
- self.fixed_jumps[offset] = target
- # FIXME: consider removing the test on 3.8.
- elif self.version >= (3, 8) and inst.is_jump():
- self.fixed_jumps[offset] = inst.argval
- elif self.version < (3, 8) and op == self.opc.SETUP_EXCEPT:
- target = self.get_target(offset)
- end = self.restrict_to_parent(target, parent)
- self.fixed_jumps[offset] = end
- elif self.version < (3, 8) and op == self.opc.POP_EXCEPT:
- next_offset = xdis.next_offset(op, self.opc, offset)
- target = self.get_target(next_offset)
- if target > next_offset:
- next_op = code[next_offset]
- if (
- self.opc.JUMP_ABSOLUTE == next_op
- and self.opc.END_FINALLY
- != code[xdis.next_offset(next_op, self.opc, next_offset)]
- ):
- self.fixed_jumps[next_offset] = target
- self.except_targets[target] = next_offset
- elif op == self.opc.SETUP_FINALLY:
- target = self.get_target(offset)
- end = self.restrict_to_parent(target, parent)
- self.fixed_jumps[offset] = end
- elif op in self.jump_if_pop:
- target = self.get_target(offset)
- if target > offset:
- unop_target = self.last_instr(
- offset, target, self.opc.JUMP_FORWARD, target
- )
- if unop_target and code[unop_target + 3] != self.opc.ROT_TWO:
- self.fixed_jumps[offset] = unop_target
- else:
- self.fixed_jumps[offset] = self.restrict_to_parent(target, parent)
- pass
- pass
- else:
- # 3.5+ has Jump optimization which too often causes RETURN_VALUE to get
- # misclassified as RETURN_END_IF. Handle that here.
- # In RETURN_VALUE, JUMP_ABSOLUTE, RETURN_VALUE is never RETURN_END_IF
- if op == self.opc.RETURN_VALUE:
- next_offset = xdis.next_offset(op, self.opc, offset)
- if next_offset < len(code) and (
- code[next_offset] == self.opc.JUMP_ABSOLUTE
- and offset in self.return_end_ifs
- ):
- self.return_end_ifs.remove(offset)
- pass
- pass
- elif op == self.opc.JUMP_FORWARD:
- # If we have:
- # JUMP_FORWARD x, [non-jump, insns], RETURN_VALUE, x:
- # then RETURN_VALUE is not RETURN_END_IF
- rtarget = self.get_target(offset)
- rtarget_prev = self.prev[rtarget]
- if (
- code[rtarget_prev] == self.opc.RETURN_VALUE
- and rtarget_prev in self.return_end_ifs
- ):
- i = rtarget_prev
- while i != offset:
- if code[i] in [op3.JUMP_FORWARD, op3.JUMP_ABSOLUTE]:
- return
- i = self.prev[i]
- self.return_end_ifs.remove(rtarget_prev)
- pass
- return
- def next_except_jump(self, start):
- """
- Return the next jump that was generated by an except SomeException:
- construct in a try...except...else clause or None if not found.
- """
- if self.code[start] == self.opc.DUP_TOP:
- except_match = self.first_instr(
- start, len(self.code), self.opc.POP_JUMP_IF_FALSE
- )
- if except_match:
- jmp = self.prev_op[self.get_target(except_match)]
- self.ignore_if.add(except_match)
- self.not_continue.add(jmp)
- return jmp
- count_END_FINALLY = 0
- count_SETUP_ = 0
- for i in self.op_range(start, len(self.code)):
- op = self.code[i]
- if op == self.opc.END_FINALLY:
- if count_END_FINALLY == count_SETUP_:
- assert self.code[self.prev_op[i]] in frozenset(
- [
- self.opc.JUMP_ABSOLUTE,
- self.opc.JUMP_FORWARD,
- self.opc.RETURN_VALUE,
- ]
- )
- self.not_continue.add(self.prev_op[i])
- return self.prev_op[i]
- count_END_FINALLY += 1
- elif op in self.setup_opts_no_loop:
- count_SETUP_ += 1
- if __name__ == "__main__":
- from xdis.version_info import PYTHON_VERSION_TRIPLE, version_tuple_to_str
- if PYTHON_VERSION_TRIPLE[:2] >= (3, 7):
- import inspect
- my_co = inspect.currentframe().f_code # type: ignore
- my_tokens, customize = Scanner37Base(PYTHON_VERSION_TRIPLE).ingest(my_co)
- for my_token in my_tokens:
- print(my_token)
- else:
- print(
- "Need to be Python 3.7..3.8 to demo; "
- f"I am version {version_tuple_to_str()}."
- )
- pass
|