Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_struct.c58 lp_build_name(member_ptr, "%s.%s_ptr", LLVMGetValueName(ptr), name); in lp_build_struct_get_ptr()
75 lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), name); in lp_build_struct_get()
94 LLVMGetValueName(ptr), LLVMGetValueName(index)); in lp_build_array_get_ptr()
112 lp_build_name(res, "%s[%s]", LLVMGetValueName(ptr), LLVMGetValueName(index)); in lp_build_array_get()
143 lp_build_name(res, "%s[%s]", LLVMGetValueName(ptr), LLVMGetValueName(index)); in lp_build_pointer_get()
162 lp_build_name(res, "%s[%s]", LLVMGetValueName(ptr), LLVMGetValueName(index)); in lp_build_pointer_get_unaligned()
Dlp_bld_init.c517 debug_printf("optimizing %s...\n", LLVMGetValueName(func)); in gallivm_optimize_function()
/external/llvm/tools/llvm-c-test/
Dmodule.c85 printf("FunctionDeclaration: %s\n", LLVMGetValueName(f)); in module_list_functions()
92 printf("FunctionDefinition: %s [#bb=%u]\n", LLVMGetValueName(f), in module_list_functions()
104 printf(" calls: %s\n", LLVMGetValueName(callee)); in module_list_functions()
130 LLVMGetValueName(g), s); in module_list_globals()
/external/llvm/bindings/python/llvm/
Dcore.py179 return lib.LLVMGetValueName(self)
355 return lib.LLVMGetValueName(self.__as_value())
539 library.LLVMGetValueName.argtypes = [Value]
540 library.LLVMGetValueName.restype = c_char_p
/external/llvm/include/llvm-c/
DCore.h1171 const char *LLVMGetValueName(LLVMValueRef Val);
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c542 return caml_copy_string(LLVMGetValueName(Val)); in llvm_value_name()
/external/llvm/lib/IR/
DCore.cpp540 const char *LLVMGetValueName(LLVMValueRef Val) { in LLVMGetValueName() function
/external/llvm/bindings/go/llvm/
Dir.go635 func (v Value) Name() string { return C.GoString(C.LLVMGetValueName(v.C)) }