Exemplo n.º 1
0
 def __str__(self):
     raise RuntimeError("oh no you di'int")
     s = uop_to_py(self)
     if not is_jcc(self.op): s += " # %s" % repr(self)
     if self.is_output:
         s += "\n" + uop_to_py_out(self, self.label)
     return s
Exemplo n.º 2
0
 def __str__(self):
     raise RuntimeError("oh no you di'int")
     s = uop_to_py(self)
     if not is_jcc(self.op):
         s += " # %s" % repr(self)
     if self.is_output:
         s += "\n" + uop_to_py_out(self, self.label)
     return s
Exemplo n.º 3
0
def tr(op):
    s = uop_to_py(op)
    if not is_jcc(op.op): s += " # %s" % repr(op)
    if op.is_output:
        s += "\n" + uop_to_py_out(op, "out") 
    return s