Lib.Krakatau.ssa.ssa_ops.convert.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of krakatau-lib Show documentation
Show all versions of krakatau-lib Show documentation
Assembler, disassebmler, decompiler and compiler tools library for Java.
from .base import BaseOp
from ..constraints import IntConstraint, FloatConstraint
from . import bitwise_util
class Convert(BaseOp):
def __init__(self, parent, arg, source_ssa, target_ssa):
super(Convert, self).__init__(parent, [arg])
self.source = source_ssa
self.target = target_ssa
self.rval = parent.makeVariable(target_ssa, origin=self)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy