Exemplo n.º 1
0
 def name(self):
     """
     Get type name
     """
     return ffi.ret_string(ffi.lib.LLVMPY_GetTypeName(self))
Exemplo n.º 2
0
 def __str__(self):
     return ffi.ret_string(ffi.lib.LLVMPY_PrintType(self))
Exemplo n.º 3
0
 def opcode(self):
     if not self.is_instruction:
         raise ValueError("expected instruction value, got %s" % (self._kind,))
     return ffi.ret_string(ffi.lib.LLVMPY_GetOpcodeName(self))