instruction.py 文件源码

python
阅读 18 收藏 0 点赞 0 评论 0

项目:bytecode_simplifier 作者: extremecoders-re 项目源码 文件源码
def __init__(self, opcode, arg, size):
        # Numeric code for operation, corresponding to the opcode values
        self.opcode = opcode

        # Numeric argument to operation(if any), otherwise None
        self.arg = arg

        # The size of the instruction including the arguement
        self.size = size

        # Resolved arg value (if known), otherwise same as arg
        self.argval = arg

        # Human readable name for operation
        self.mnemonic = dis.opname[self.opcode]
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号