tools/python/dex.py [3493:3514]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    num_code_units = 3
    max_regs = 1
    extra_data = "t"

    def __init__(self, inst, code_units):
        Opcode.__init__(self, inst)
        self.reg = inst.get_AA()
        self.branch = inst.get_sint32(1)

    def dump(self, f=sys.stdout, context=None):
        f.write(
            "%s v%u, %8.8x // +%8.8x"
            % (
                self.get_name(),
                self.reg,
                self.inst.get_code_unit_index() + self.branch,
                self.branch,
            )
        )

    def emulate(self, emulator):
        raise ValueError("emulate not supported")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tools/python/dex.py [3519:3540]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    num_code_units = 3
    max_regs = 1
    extra_data = "t"

    def __init__(self, inst, code_units):
        Opcode.__init__(self, inst)
        self.reg = inst.get_AA()
        self.branch = inst.get_sint32(1)

    def dump(self, f=sys.stdout, context=None):
        f.write(
            "%s v%u, %8.8x // +%8.8x"
            % (
                self.get_name(),
                self.reg,
                self.inst.get_code_unit_index() + self.branch,
                self.branch,
            )
        )

    def emulate(self, emulator):
        raise ValueError("emulate not supported")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



