Home
last modified time | relevance | path

Searched refs:LLVMGetValueName (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Dmodule.c83 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()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
H A Dcore.py181 return lib.LLVMGetValueName(self)
363 return lib.LLVMGetValueName(self.__as_value())
553 library.LLVMGetValueName.argtypes = [Value]
554 library.LLVMGetValueName.restype = c_char_p
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h1746 const char *LLVMGetValueName(LLVMValueRef Val);
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c701 return caml_copy_string(LLVMGetValueName(Val)); in llvm_value_name()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go707 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp873 const char *LLVMGetValueName(LLVMValueRef Val) { in LLVMGetValueName() function