Searched refs:LLVMGetValueName (Results 1 – 6 of 6) sorted by relevance
83 printf("FunctionDeclaration: %s\n", LLVMGetValueName(f)); in llvm_module_list_functions()90 printf("FunctionDefinition: %s [#bb=%u]\n", LLVMGetValueName(f), in llvm_module_list_functions()102 printf(" calls: %s\n", LLVMGetValueName(callee)); in llvm_module_list_functions()128 LLVMGetValueName(g), s); in llvm_module_list_globals()
181 return lib.LLVMGetValueName(self)363 return lib.LLVMGetValueName(self.__as_value())553 library.LLVMGetValueName.argtypes = [Value]554 library.LLVMGetValueName.restype = c_char_p
1746 const char *LLVMGetValueName(LLVMValueRef Val);
701 return caml_copy_string(LLVMGetValueName(Val)); in llvm_value_name()
707 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) }
873 const char *LLVMGetValueName(LLVMValueRef Val) { in LLVMGetValueName() function